xref: /freebsd/contrib/openbsm/bin/praudit/praudit.c (revision 41758b263bd99bc7f07072e3ee0cca7836b23778)
1 /*
2  * Copyright (c) 2004 Apple Computer, Inc.
3  * Copyright (c) 2006 Martin Voros
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR
22  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  *
30  * $P4: //depot/projects/trustedbsd/openbsm/bin/praudit/praudit.c#11 $
31  */
32 
33 /*
34  * Tool used to parse audit records conforming to the BSM structure.
35  */
36 
37 /*
38  * praudit [-lpx] [-r | -s] [-d del] [file ...]
39  */
40 
41 #include <bsm/libbsm.h>
42 
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <unistd.h>
46 
47 extern char	*optarg;
48 extern int	 optind, optopt, opterr,optreset;
49 
50 static char	*del = ",";	/* Default delimiter. */
51 static int	 oneline = 0;
52 static int	 raw = 0;
53 static int	 shortfrm = 0;
54 static int	 partial = 0;
55 static int	 xml = 0;
56 
57 static void
58 usage(void)
59 {
60 
61 	fprintf(stderr, "usage: praudit [-lpx] [-r | -s] [-d del] "
62 	    "[file ...]\n");
63 	exit(1);
64 }
65 
66 /*
67  * Token printing for each token type .
68  */
69 static int
70 print_tokens(FILE *fp)
71 {
72 	u_char *buf;
73 	tokenstr_t tok;
74 	int reclen;
75 	int bytesread;
76 
77 	/* Allow tail -f | praudit to work. */
78 	if (partial) {
79 		u_char type = 0;
80 		/* Record must begin with a header token. */
81 		do {
82 			type = fgetc(fp);
83 		} while(type != AU_HEADER_32_TOKEN);
84 		ungetc(type, fp);
85 	}
86 
87 	while ((reclen = au_read_rec(fp, &buf)) != -1) {
88 		bytesread = 0;
89 		while (bytesread < reclen) {
90 			/* Is this an incomplete record? */
91 			if (-1 == au_fetch_tok(&tok, buf + bytesread,
92 			    reclen - bytesread))
93 				break;
94 			if (xml)
95 				au_print_tok_xml(stdout, &tok, del, raw,
96 				    shortfrm);
97 			else
98 				au_print_tok(stdout, &tok, del, raw,
99 				    shortfrm);
100 			bytesread += tok.len;
101 			if (oneline) {
102 				if (!xml)
103 					printf("%s", del);
104 			} else
105 				printf("\n");
106 		}
107 		free(buf);
108 		if (oneline)
109 			printf("\n");
110 	}
111 	return (0);
112 }
113 
114 int
115 main(int argc, char **argv)
116 {
117 	int ch;
118 	int i;
119 	FILE *fp;
120 
121 	while ((ch = getopt(argc, argv, "d:lprsx")) != -1) {
122 		switch(ch) {
123 		case 'd':
124 			del = optarg;
125 			break;
126 
127 		case 'l':
128 			oneline = 1;
129 			break;
130 
131 		case 'p':
132 			partial = 1;
133 			break;
134 
135 		case 'r':
136 			if (shortfrm)
137 				usage();	/* Exclusive from shortfrm. */
138 			raw = 1;
139 			break;
140 
141 		case 's':
142 			if (raw)
143 				usage();	/* Exclusive from raw. */
144 			shortfrm = 1;
145 			break;
146 
147 		case 'x':
148 			xml = 1;
149 			break;
150 
151 		case '?':
152 		default:
153 			usage();
154 		}
155 	}
156 
157 	if (xml)
158 		au_print_xml_header(stdout);
159 
160 	/* For each of the files passed as arguments dump the contents. */
161 	if (optind == argc) {
162 		print_tokens(stdin);
163 		return (1);
164 	}
165 	for (i = optind; i < argc; i++) {
166 		fp = fopen(argv[i], "r");
167 		if ((fp == NULL) || (print_tokens(fp) == -1))
168 			perror(argv[i]);
169 		if (fp != NULL)
170 			fclose(fp);
171 	}
172 
173 	if (xml)
174 		au_print_xml_footer(stdout);
175 
176 	return (1);
177 }
178