xref: /freebsd/usr.bin/ktrace/subr.c (revision 596ee234ef4537e71f030e13598ecbe73ee697bb)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1988, 1993
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes  * are met:
109b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes  *    without specific prior written permission.
189b50d902SRodney W. Grimes  *
199b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes  * SUCH DAMAGE.
309b50d902SRodney W. Grimes  */
319b50d902SRodney W. Grimes 
329b50d902SRodney W. Grimes #include <sys/param.h>
339b50d902SRodney W. Grimes #include <sys/file.h>
349b50d902SRodney W. Grimes #include <sys/proc.h>
359b50d902SRodney W. Grimes #include <sys/time.h>
366004362eSDavid Schultz #include <sys/uio.h>
379b50d902SRodney W. Grimes #include <sys/ktrace.h>
380bff6132SJames Raynard 
39821df508SXin LI #include <stdio.h>
40821df508SXin LI 
419b50d902SRodney W. Grimes #include "ktrace.h"
429b50d902SRodney W. Grimes 
43ebdb213bSDavid Malone void timevaladd(struct timeval *, struct timeval *);
44ebdb213bSDavid Malone void timevalsub(struct timeval *, struct timeval *);
45ebdb213bSDavid Malone void timevalfix(struct timeval *);
46ebdb213bSDavid Malone 
47ebdb213bSDavid Malone int
4801588bbdSMark Murray getpoints(char *s)
499b50d902SRodney W. Grimes {
509b50d902SRodney W. Grimes 	int facs = 0;
519b50d902SRodney W. Grimes 
529b50d902SRodney W. Grimes 	while (*s) {
539b50d902SRodney W. Grimes 		switch(*s) {
549b50d902SRodney W. Grimes 		case 'c':
559b50d902SRodney W. Grimes 			facs |= KTRFAC_SYSCALL | KTRFAC_SYSRET;
569b50d902SRodney W. Grimes 			break;
57c601ad8eSDag-Erling Smørgrav 		case 'i':
58c601ad8eSDag-Erling Smørgrav 			facs |= KTRFAC_GENIO;
59c601ad8eSDag-Erling Smørgrav 			break;
6035818d2eSJohn Baldwin 		case 'f':
6135818d2eSJohn Baldwin 			facs |= KTRFAC_FAULT | KTRFAC_FAULTEND;
6235818d2eSJohn Baldwin 			break;
639b50d902SRodney W. Grimes 		case 'n':
649b50d902SRodney W. Grimes 			facs |= KTRFAC_NAMEI;
659b50d902SRodney W. Grimes 			break;
66c601ad8eSDag-Erling Smørgrav 		case 'p':
67c601ad8eSDag-Erling Smørgrav 			facs |= KTRFAC_CAPFAIL;
689b50d902SRodney W. Grimes 			break;
699b50d902SRodney W. Grimes 		case 's':
709b50d902SRodney W. Grimes 			facs |= KTRFAC_PSIG;
719b50d902SRodney W. Grimes 			break;
7260e15db9SDag-Erling Smørgrav 		case 't':
73*596ee234SMark Johnston 			facs |= KTRFAC_STRUCT | KTRFAC_STRUCT_ARRAY;
7460e15db9SDag-Erling Smørgrav 			break;
7509ac2438SPoul-Henning Kamp 		case 'u':
7609ac2438SPoul-Henning Kamp 			facs |= KTRFAC_USER;
7709ac2438SPoul-Henning Kamp 			break;
789b50d902SRodney W. Grimes 		case 'w':
799b50d902SRodney W. Grimes 			facs |= KTRFAC_CSW;
809b50d902SRodney W. Grimes 			break;
81a56be37eSJohn Baldwin 		case 'y':
82a56be37eSJohn Baldwin 			facs |= KTRFAC_SYSCTL;
83a56be37eSJohn Baldwin 			break;
8465a4daeaSArtem Hevorhian 		case 'a':
8565a4daeaSArtem Hevorhian 		        facs |= KTRFAC_ARGS;
8665a4daeaSArtem Hevorhian 			break;
8765a4daeaSArtem Hevorhian 		case 'e':
8865a4daeaSArtem Hevorhian 		        facs |= KTRFAC_ENVS;
8965a4daeaSArtem Hevorhian 			break;
909b50d902SRodney W. Grimes 		case '+':
919b50d902SRodney W. Grimes 			facs |= DEF_POINTS;
929b50d902SRodney W. Grimes 			break;
939b50d902SRodney W. Grimes 		default:
949b50d902SRodney W. Grimes 			return (-1);
959b50d902SRodney W. Grimes 		}
969b50d902SRodney W. Grimes 		s++;
979b50d902SRodney W. Grimes 	}
989b50d902SRodney W. Grimes 	return (facs);
999b50d902SRodney W. Grimes }
1009b50d902SRodney W. Grimes 
101ebdb213bSDavid Malone void
10201588bbdSMark Murray timevaladd(struct timeval *t1, struct timeval *t2)
1039b50d902SRodney W. Grimes {
1049b50d902SRodney W. Grimes 	t1->tv_sec += t2->tv_sec;
1059b50d902SRodney W. Grimes 	t1->tv_usec += t2->tv_usec;
1069b50d902SRodney W. Grimes 	timevalfix(t1);
1079b50d902SRodney W. Grimes }
1089b50d902SRodney W. Grimes 
109ebdb213bSDavid Malone void
11001588bbdSMark Murray timevalsub(struct timeval *t1, struct timeval *t2)
1119b50d902SRodney W. Grimes {
1129b50d902SRodney W. Grimes 	t1->tv_sec -= t2->tv_sec;
1139b50d902SRodney W. Grimes 	t1->tv_usec -= t2->tv_usec;
1149b50d902SRodney W. Grimes 	timevalfix(t1);
1159b50d902SRodney W. Grimes }
1169b50d902SRodney W. Grimes 
117ebdb213bSDavid Malone void
11801588bbdSMark Murray timevalfix(struct timeval *t1)
1199b50d902SRodney W. Grimes {
1209b50d902SRodney W. Grimes 	if (t1->tv_usec < 0) {
1219b50d902SRodney W. Grimes 		t1->tv_sec--;
1229b50d902SRodney W. Grimes 		t1->tv_usec += 1000000;
1239b50d902SRodney W. Grimes 	}
1249b50d902SRodney W. Grimes 	if (t1->tv_usec >= 1000000) {
1259b50d902SRodney W. Grimes 		t1->tv_sec++;
1269b50d902SRodney W. Grimes 		t1->tv_usec -= 1000000;
1279b50d902SRodney W. Grimes 	}
1289b50d902SRodney W. Grimes }
129