forked from openbsm/bsmtrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.c
201 lines (187 loc) · 5.67 KB
/
log.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*-
* Copyright (c) 2007 Aaron L. Meihm
* Copyright (c) 2007 Christian S.J. Peron
* All rights reserved.
*
* $Id$
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
*/
#define SYSLOG_NAMES
#include "includes.h"
#undef SYSLOG_NAMES
void
log_init_dir(void)
{
char logpath[128];
struct stat sb;
if (opts.lflag == NULL)
return;
if (opts.Bflag != 0 && opts.lflag == NULL) {
bsmtrace_fatal("-l directory must be specified for -B\n");
}
if (stat(opts.lflag, &sb) == -1) {
bsmtrace_fatal("stat: logging directory: %s: %s\n",
opts.lflag, strerror(errno));
}
if ((sb.st_mode & S_IFDIR) == 0) {
bsmtrace_fatal("%s: is not a directory\n", opts.lflag);
}
if (access(opts.lflag, W_OK | R_OK | X_OK) != 0) {
bsmtrace_fatal("%s: invalid permissions\n", opts.lflag);
}
(void) sprintf(logpath, "%s/bsmtrace.log", opts.lflag);
opts.logfd = open(logpath, O_APPEND | O_WRONLY | O_CREAT);
if (opts.logfd == -1) {
bsmtrace_fatal("open: %s failed: %s\n", logpath,
strerror(errno));
}
debug_printf("logging directory and file initialized: %s\n",
logpath);
}
static char *
parse_bsm_generic(struct bsm_sequence *bs, struct bsm_record_data *br)
{
char message[128 + NAME_MAX];
char *basename;
u_int subj;
if (strcmp(opts.aflag, "-") == 0)
basename = "stdin";
else {
basename = strrchr(opts.aflag, '/');
basename = (basename == NULL) ? opts.aflag : basename + 1;
}
if ((bs->bs_seq_flags & BSM_SEQUENCE_PARENT) != 0) {
subj = bsm_get_subj(bs, br);
bs->bs_first_match = br->br_sec;
} else
subj = bs->bs_subj.bs_dyn_subj;
(void) snprintf(message, sizeof(message),
"%d.%d state machine: %s subject: auid %d "
"completed: duration %d seconds priority: %d "
"source: %s\n",
br->br_sec, br->br_usec, bs->bs_label,
subj, br->br_sec - bs->bs_first_match, bs->bs_priority, basename);
return (strdup(message));
}
int
log_bsm_stderr(struct bsm_sequence *bs, struct bsm_record_data *br)
{
char *ptr;
ptr = parse_bsm_generic(bs, br);
if (ptr == NULL)
return (-1);
(void) fputs(ptr, stderr);
free(ptr);
return (0);
}
int
log_bsm_syslog(struct bsm_sequence *bs, struct bsm_record_data *br)
{
char *ptr;
ptr = parse_bsm_generic(bs, br);
if (ptr == NULL)
return (-1);
/*
* NB: re-visit the facility and priority here.
*/
syslog(LOG_AUTH | LOG_NOTICE, "%s", ptr);
free(ptr);
return (0);
}
int
log_bsm_txt_file(struct bsm_sequence *bs, struct bsm_record_data *br)
{
ssize_t cc;
char *ptr;
size_t s;
ptr = parse_bsm_generic(bs, br);
if (ptr == NULL)
return (-1);
s = strlen(ptr);
cc = write(opts.logfd, ptr, s);
if (cc == -1) {
bsmtrace_fatal("failed to write log data: %s\n",
strerror(errno));
free(ptr);
return (-1);
}
if (cc != s) {
bsmtrace_warn("partial write for log data?\n");
}
debug_printf("wrote %lld bytes to logfile\n", cc);
free(ptr);
return (0);
}
int
log_bsm_file(struct bsm_sequence *bs, struct bsm_record_data *br)
{
char path[MAXPATHLEN], dir[MAXPATHLEN];
struct stat sb;
int fd, error;
struct bsm_state *bm;
char *src_basename;
if (strcmp(opts.aflag, "-") == 0)
src_basename = "stdin";
else {
src_basename = strrchr(opts.aflag, '/');
src_basename = (src_basename == NULL) ? opts.aflag : src_basename + 1;
}
(void) snprintf(dir, MAXPATHLEN,
"%s/%s", opts.lflag, bs->bs_label);
error = stat(dir, &sb);
if (error < 0 && errno == ENOENT) {
if (mkdir(dir, S_IRWXU) < 0)
bsmtrace_fatal("mkdir failed: %s", dir);
} else if (error < 0)
bsmtrace_fatal("stat failed");
(void) sprintf(path, "%s/%d.%d.%lu",
dir, br->br_sec, br->br_usec, random());
fd = open(path, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
if (fd < 0)
bsmtrace_fatal("open: %s: %s", path, strerror(errno));
/*
* The logic here becomes a bit complex. We need to check to see if
* this is a single state sequence, and if it is, log the BSM record
* data attached to the bsm_record_data structure. Otherwise, the we
* are dealing with a dynamic sequence, and the records are attached to
* each individual state.
*/
syslog(LOG_AUTH | LOG_NOTICE,
"%u.%u sequence %s match evidence file: %s source: %s",
br->br_sec, br->br_usec,
bs->bs_label,
path,
src_basename);
if ((bs->bs_seq_flags & BSM_SEQUENCE_PARENT) != 0) {
if (write(fd, br->br_raw, br->br_raw_len) < 0)
bsmtrace_fatal("write failed");
(void) close(fd);
return (0);
}
TAILQ_FOREACH(bm, &bs->bs_mhead, bm_glue)
if (write(fd, bm->bm_raw, bm->bm_raw_len) < 0)
bsmtrace_fatal("write failed");
(void) close(fd);
return (0);
}