forked from daveolson53/audisp-tacplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
audisp-tacplus.c
652 lines (582 loc) · 20 KB
/
audisp-tacplus.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
/*
* Copyright 2014, 2015, 2016, 2017 Cumulus Networks, Inc. All rights reserved.
* Based on audisp-example.c by Steve Grubb <[email protected]>
* Copyright 2009 Red Hat Inc., Durham, North Carolina.
* All Rights Reserved.
*
* TACACS+ work based on pam_tacplus.c
* Copyright (C) 2010, Pawel Krawczyk <[email protected]> and
* Jeroen Nijhof <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: [email protected]>
*
* This audisp plugin is used for TACACS+ accounting of commands
* being run by users known to the TACACS+ servers
* It uses libsimple_tacacct to communicate with the TACACS+ servers
* It uses the same configuration file format as the libnss_tacplus
* plugin (but uses the file /etc/audisp/audisp-tacplus.conf to
* follow the audisp conventions).
*
* You can test it by running commands similar to:
* ausearch --start today --raw > test.log
* ./audisp-tacplus < test.log
*
* Excluding some init/destroy items you might need to add to main, the
* event_handler function is the main place that you would modify to do
* things specific to your plugin.
*
*/
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <signal.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <libaudit.h>
#include <auparse.h>
#include <tacplus/libtac.h>
#include <tacplus/map_tacplus_user.h>
#define _VMAJ 1
#define _VMIN 0
#define _VPATCH 0
/* Global Data */
static volatile int stop = 0;
static volatile int hup = 0;
static auparse_state_t *au = NULL;
static unsigned connected_ok;
char *configfile = "/etc/audisp/audisp-tac_plus.conf";
/* Local declarations */
static void handle_event(auparse_state_t *au,
auparse_cb_event_t cb_event_type, void *user_data);
/*
* SIGTERM handler
*/
static void
term_handler(int sig __attribute__ ((unused)))
{
stop = 1;
}
/*
* SIGHUP handler: re-read config
*/
static void
hup_handler(int sig __attribute__ ((unused)))
{
hup = 1;
}
typedef struct {
struct addrinfo *addr;
char *key;
} tacplus_server_t;
/* set from configuration file parsing */
static tacplus_server_t tac_srv[TAC_PLUS_MAXSERVERS];
static int tac_srv_no, tac_key_no;
static char tac_service[64];
static char tac_protocol[64];
static char vrfname[64];
static int debug = 0;
static int acct_all; /* send accounting to all servers, not just 1st */
static const char *progname = "audisp-tacplus"; /* for syslogs and errors */
static void
audisp_tacplus_config(char *cfile, int level)
{
FILE *conf;
char lbuf[256];
conf = fopen(cfile, "r");
if(conf == NULL) {
syslog(LOG_WARNING, "%s: can't open config file %s: %m",
progname, cfile);
return;
}
while(fgets(lbuf, sizeof lbuf, conf)) {
if(*lbuf == '#' || isspace(*lbuf))
continue; /* skip comments, white space lines, etc. */
strtok(lbuf, " \t\n\r\f"); /* terminate buffer at first whitespace */
if(!strncmp(lbuf, "include=", 8)) {
/*
* allow include files, useful for centralizing tacacs
* server IP address and secret.
*/
if(lbuf[8]) /* else treat as empty config */
audisp_tacplus_config(&lbuf[8], level+1);
}
else if(!strncmp(lbuf, "debug=", 6))
debug = strtoul(lbuf+6, NULL, 0);
else if(!strncmp(lbuf, "acct_all=", 9))
acct_all = strtoul(lbuf+9, NULL, 0);
else if(!strncmp(lbuf, "vrf=", 4))
tac_xstrcpy(vrfname, lbuf + 4, sizeof(vrfname));
else if(!strncmp(lbuf, "service=", 8))
tac_xstrcpy(tac_service, lbuf + 8, sizeof(tac_service));
else if(!strncmp(lbuf, "protocol=", 9))
tac_xstrcpy(tac_protocol, lbuf + 9, sizeof(tac_protocol));
else if(!strncmp(lbuf, "login=", 6))
tac_xstrcpy(tac_login, lbuf + 6, sizeof(tac_login));
else if (!strncmp (lbuf, "timeout=", 8)) {
tac_timeout = (int)strtoul(lbuf+8, NULL, 0);
if (tac_timeout < 0) /* explict neg values disable poll() use */
tac_timeout = 0;
else /* poll() only used if timeout is explictly set */
tac_readtimeout_enable = 1;
}
else if(!strncmp(lbuf, "secret=", 7)) {
int i;
/* no need to complain if too many on this one */
if(tac_key_no < TAC_PLUS_MAXSERVERS) {
if((tac_srv[tac_key_no].key = strdup(lbuf+7)))
tac_key_no++;
else
syslog(LOG_ERR, "%s: unable to copy server secret %s",
__FUNCTION__, lbuf+7);
}
/* handle case where 'secret=' was given after a 'server='
* parameter, fill in the current secret */
for(i = tac_srv_no-1; i >= 0; i--) {
if (tac_srv[i].key)
continue;
tac_srv[i].key = strdup(lbuf+7);
}
}
else if(!strncmp(lbuf, "server=", 7)) {
if(tac_srv_no < TAC_PLUS_MAXSERVERS) {
struct addrinfo hints, *servers, *server;
int rv;
char *port, server_buf[sizeof lbuf];
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC; /* use IPv4 or IPv6, whichever */
hints.ai_socktype = SOCK_STREAM;
strcpy(server_buf, lbuf + 7);
port = strchr(server_buf, ':');
if(port != NULL) {
*port = '\0';
port++;
}
if((rv = getaddrinfo(server_buf, (port == NULL) ?
"49" : port, &hints, &servers)) == 0) {
for(server = servers; server != NULL &&
tac_srv_no < TAC_PLUS_MAXSERVERS;
server = server->ai_next) {
tac_srv[tac_srv_no].addr = server;
/* use current key, if our index not yet set */
if(tac_key_no && !tac_srv[tac_srv_no].key)
tac_srv[tac_srv_no].key =
strdup(tac_srv[tac_key_no-1].key);
tac_srv_no++;
}
}
else {
syslog(LOG_ERR,
"skip invalid server: %s (getaddrinfo: %s)",
server_buf, gai_strerror(rv));
}
}
else {
syslog(LOG_ERR, "maximum number of servers (%d) exceeded, "
"skipping", TAC_PLUS_MAXSERVERS);
}
}
else if(debug) /* ignore unrecognized lines, unless debug on */
syslog(LOG_WARNING, "%s: unrecognized parameter: %s",
progname, lbuf);
}
if(level == 0 && (!tac_service[0] || tac_srv_no == 0))
syslog(LOG_ERR, "%s version %d.%d.%d: missing tacacs fields in file %s, %d servers",
progname, _VMAJ, _VMIN, _VPATCH, configfile, tac_srv_no);
if(debug) {
int n;
syslog(LOG_NOTICE, "%s version %d.%d.%d tacacs service=%s", progname,
_VMAJ, _VMIN, _VPATCH, tac_service);
for(n = 0; n < tac_srv_no; n++)
syslog(LOG_DEBUG, "%s: tacacs server[%d] { addr=%s, key='%s' }",
progname, n, tac_ntop(tac_srv[n].addr->ai_addr),
tac_srv[n].key);
}
fclose(conf);
}
static void
reload_config(void)
{
int i, nservers;
hup = 0;
/* reset the config variables that we use, freeing memory where needed */
nservers = tac_srv_no;
tac_srv_no = 0;
tac_key_no = 0;
vrfname[0] = '\0';
tac_service[0] = '\0';
tac_protocol[0] = '\0';
tac_login[0] = '\0';
debug = 0;
acct_all = 0;
tac_timeout = 0;
for(i = 0; i < nservers; i++) {
if(tac_srv[i].key) {
free(tac_srv[i].key);
tac_srv[i].key = NULL;
}
tac_srv[i].addr = NULL;
}
connected_ok = 0; /* reset connected state (for possible vrf) */
audisp_tacplus_config(configfile, 0);
}
int
main(int argc, char *argv[])
{
char tmp[MAX_AUDIT_MESSAGE_LENGTH+1];
struct sigaction sa;
/* if there is an argument, it is an alternate configuration file */
if(argc > 1)
configfile = argv[1];
reload_config();
/* Register sighandlers */
sa.sa_flags = 0;
sigemptyset(&sa.sa_mask);
/* Set handler for the ones we care about */
sa.sa_handler = term_handler;
sigaction(SIGTERM, &sa, NULL);
sa.sa_handler = hup_handler;
sigaction(SIGHUP, &sa, NULL);
/* Initialize the auparse library */
au = auparse_init(AUSOURCE_FEED, 0);
if(au == NULL) {
syslog(LOG_ERR, "exitting due to auparse init errors");
return -1;
}
auparse_add_callback(au, handle_event, NULL, NULL);
do {
/* Load configuration */
if(hup) {
syslog(LOG_NOTICE, "%s re-initializing configuration", progname);
reload_config();
}
/*
* Now the event loop. For some reason, audisp doesn't send
* us the ANOM_ABEND until flushed by another event. and it
* therefore has the timestamp of the next event. I can't find
* any parameters to affect that.
*/
while(fgets(tmp, MAX_AUDIT_MESSAGE_LENGTH, stdin) &&
hup==0 && stop==0) {
auparse_feed(au, tmp, strnlen(tmp,
MAX_AUDIT_MESSAGE_LENGTH));
}
if(feof(stdin))
break;
} while(stop == 0);
syslog(LOG_DEBUG, "finishing");
/* Flush any accumulated events from queue */
auparse_flush_feed(au);
auparse_destroy(au);
return 0;
}
int
send_acct_msg(int tac_fd, int type, char *user, char *tty, char *host,
char *cmd, uint16_t taskid)
{
char buf[128];
struct tac_attrib *attr;
int retval;
struct areply re;
attr=(struct tac_attrib *)tac_xcalloc(1, sizeof(struct tac_attrib));
snprintf(buf, sizeof buf, "%lu", (unsigned long)time(NULL));
tac_add_attrib(&attr, "start_time", buf);
snprintf(buf, sizeof buf, "%hu", taskid);
tac_add_attrib(&attr, "task_id", buf);
tac_add_attrib(&attr, "service", tac_service);
if(tac_protocol[0])
tac_add_attrib(&attr, "protocol", tac_protocol);
tac_add_attrib(&attr, "cmd", (char*)cmd);
re.msg = NULL;
retval = tac_acct_send(tac_fd, type, user, tty, host, attr);
if(retval < 0)
syslog(LOG_WARNING, "send of accounting msg failed: %m");
else if(tac_acct_read(tac_fd, &re) != TAC_PLUS_ACCT_STATUS_SUCCESS ) {
syslog(LOG_WARNING, "accounting msg response failed: %m");
retval = -1;
}
tac_free_attrib(&attr);
if(re.msg != NULL)
free(re.msg);
return retval >= 0 ? 0 : 1;
}
/*
* Send the accounting record to the TACACS+ server.
*
* We have to make a new connection each time, because libtac is single threaded
* (doesn't support multiple connects at the same time due to use of globals)),
* and doesn't have support for persistent connections.
*/
static void
send_tacacs_acct(char *user, char *tty, char *host, char *cmdmsg, int type,
uint16_t task_id)
{
int retval, srv_i, srv_fd;
for(srv_i = 0; srv_i < tac_srv_no; srv_i++) {
srv_fd = tac_connect_single(tac_srv[srv_i].addr, tac_srv[srv_i].key,
NULL, vrfname[0]?vrfname:NULL);
if(srv_fd < 0) {
syslog(LOG_WARNING, "connection to %s failed (%d) to send"
" accounting record: %m",
tac_ntop(tac_srv[srv_i].addr->ai_addr), srv_fd);
continue;
}
retval = send_acct_msg(srv_fd, type, user, tty, host, cmdmsg, task_id);
if(retval)
syslog(LOG_WARNING, "error sending accounting record to %s: %m",
tac_ntop(tac_srv[srv_i].addr->ai_addr));
close(srv_fd);
if(!retval) {
connected_ok = 1;
if(!acct_all)
break; /* only send to first responding server */
}
}
}
/*
* encapsulate the field lookup, and rewind if needed,
* rather than repeating at each call.
*/
static const char *get_field(auparse_state_t *au, const char *field)
{
const char *str;
if(!(str=auparse_find_field(au, field))) {
auparse_first_field(au);
if(!(str=auparse_find_field(au, field))) {
/* sometimes auparse_first_field() isn't enough, depending
* on earlier lookup order. */
auparse_first_record(au);
if(!(str=auparse_find_field(au, field)))
return NULL;
}
}
return str;
}
/* find an audit field, and return the value for numeric fields.
* return 1 if OK (field found and is numeric), otherwise 0.
* It is somewhat smart, in that it will try from current position in case code
* is written "knowing" field order; if not found will rewind and try again.
*/
static unsigned long
get_auval(auparse_state_t *au, const char *field, int *val)
{
int rv;
if(!get_field(au, field))
return 0;
rv = auparse_get_field_int(au);
if(rv == -1 && errno)
return 0;
*val = rv;
return 1;
}
/*
* Get the audit record for exec system calls, and send it off to the
* tacacs+ server. Lookup the original tacacs username first.
* This just gets us the starts of commands, not the stop, which would
* require matching up the exit system call. For now, don't bother.
* Maybe add some caching of usernames at some point.
* Both auid and sessionid have to be valid for us to do accounting.
* We don't bother with really long cmd names or really long arg lists,
* we stop at 240 characters, because the longest field tacacs+ can handle
* is 255 characters, and some of the accounting doesn't seem to work
* if right at full length.
*/
static void get_acct_record(auparse_state_t *au, int type)
{
int val, i, llen, tlen, freeloguser=0;
int acct_type;
pid_t pid;
uint16_t taskno;
unsigned argc=0, session=0, auid;
char *auser = NULL, *loguser, *tty = NULL, *host = NULL;
char *cmd = NULL, *ausyscall = NULL;
char logbuf[240], *logptr, *logbase;
if(get_field(au, "syscall"))
ausyscall = (char *)auparse_interpret_field(au);
/* exec calls are START of commands, exit (including exit_group) are STOP */
if(ausyscall && !strncmp(ausyscall, "exec", 4)) {
acct_type = TAC_PLUS_ACCT_FLAG_START;
}
else if(ausyscall && !strncmp(ausyscall, "exit", 4)) {
acct_type = TAC_PLUS_ACCT_FLAG_STOP;
}
else if(type == AUDIT_ANOM_ABEND) {
acct_type = TAC_PLUS_ACCT_FLAG_STOP;
}
else /* not a system call we care about */
return;
auid = session = val = 0;
if(get_auval(au, "auid", &val))
auid = (unsigned)val;
if(auid == 0 || auid == (unsigned)-1) {
/* we have to have auid for tacplus mapping */
return;
}
if(get_auval(au, "ses", &val))
session = (unsigned)val;
if(session == 0 || session == (unsigned)-1) {
/* we have to have session for tacplus mapping */
return;
}
if(get_auval(au, "pid", &val)) {
/*
* Use pid so start and stop have matching taskno. If pids wrap
* in 16 bit space, we might have a collsion, but that's unlikely,
* and with 16 bits, it could happen no matter what we do.
*/
pid = (pid_t)val;
taskno = (uint16_t) pid;
}
else /* should never happen, if it does, records won't match */
taskno = tac_magic();
if(get_field(au, "auid")) {
auser = (char *)auparse_interpret_field(au);
}
if(!auser) {
auser="unknown";
}
if(get_field(au, "tty"))
tty = (char *)auparse_interpret_field(au);
auparse_first_field(au);
/*
* pass NULL as the name lookup because we must have an auid and session
* match in order to qualify as a tacacs session accounting record. With
* the NSS library, the username in auser will likely already be the login
* name.
*/
loguser = lookup_logname(NULL, auid, session, &host, NULL);
if(!loguser) {
char *user = NULL;
if(auser) {
user = auser;
}
else {
auparse_first_field(au);
if(auparse_find_field(au, "uid")) {
user = (char *)auparse_interpret_field(au);
}
}
if(!user)
return; /* must be an invalid record */
loguser = user;
}
else {
freeloguser = 1;
}
if(get_field(au, "exe"))
cmd = (char *)auparse_interpret_field(au);
if(get_auval(au, "argc", &val))
argc = (int)val;
/*
* could also grab "exe", since it can in theory
* be different, and besides gives full path, so not ambiguous,
* but not for now.
*/
logbase = logptr = logbuf;
tlen = 0;
if(cmd) {
i = 1; /* don't need argv[0], show full executable */
llen = snprintf(logptr, sizeof logbuf - tlen, "%s", cmd);
if(llen >= sizeof logbuf) {
llen = sizeof logbuf - 1;
}
logptr += llen;
tlen = llen;
}
else
i = 0; /* show argv[0] */
for(; i<argc && tlen < sizeof logbuf; i++) {
char anum[13];
snprintf(anum, sizeof anum, "a%u", i);
if(get_field(au, anum)) { /* should always be true */
llen = snprintf(logptr, sizeof logbuf - tlen,
"%s%s", i?" ":"", auparse_interpret_field(au));
if(llen >= (sizeof logbuf - tlen)) {
llen = sizeof logbuf - tlen;
break;
}
logptr += llen;
tlen += llen;
}
}
/*
* Put exit status after command name, the argument to exit is in a0
* for exit syscall; duplicates part of arg loop below
* This won't ever happen for processes that terminate on signals,
* including SIGSEGV, unfortunately. ANOM_ABEND would be perfect,
* but it doesn't always happen, at least in jessie.
*/
if(acct_type == TAC_PLUS_ACCT_FLAG_STOP && argc == 0) {
llen = 0;
if(get_field(au, "a0")) {
llen = snprintf(logptr, sizeof logbuf - tlen,
" exit=%d", auparse_get_field_int(au));
}
else if(get_auval(au, "sig", &val)) {
llen = snprintf(logptr, sizeof logbuf - tlen,
" exitsig=%d", (int)val);
}
logptr += llen;
tlen += llen;
}
/*
* loguser is always set, we bail if not. For ANOM_ABEND, tty may be
* unknown, and in some cases, host may be not be set.
*/
send_tacacs_acct(loguser, tty?tty:"UNK", host?host:"UNK", logbase, acct_type, taskno);
if(host)
free(host);
if(freeloguser)
free(loguser);
}
/*
* This function receives a single complete event at a time from the auparse
* library. This is where the main analysis code would be added.
*/
static void
handle_event(auparse_state_t *au, auparse_cb_event_t cb_event_type,
void *user_data __attribute__ ((unused)))
{
int type, num=0;
if(cb_event_type != AUPARSE_CB_EVENT_READY) {
return;
}
/* Loop through the records in the event looking for one to process.
* We use physical record number because we may search around and
* move the cursor accidentally skipping a record.
*/
while(auparse_goto_record_num(au, num) > 0) {
type = auparse_get_type(au);
/*
* we are only writing TACACS account records for syslog exec
* records. login, etc. are handled through pam_tacplus
*/
switch(type) {
case AUDIT_SYSCALL:
case AUDIT_ANOM_ABEND:
get_acct_record(au, type);
break;
default:
// for doublechecking dump_whole_record(au);
break;
}
num++;
}
}