-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathutils.c
2079 lines (1895 loc) · 62.4 KB
/
utils.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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (C) 1999-2022 Marc Huber (Marc.Huber@web.de)
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. The end-user documentation included with the redistribution, if
any, must include the following acknowledgment:
This product includes software developed by Marc Huber
(Marc.Huber@web.de).
Alternately, this acknowledgment may appear in the software
itself, if and wherever such third-party acknowledgments normally
appear.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 ITS AUTHOR 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 "headers.h"
#include "misc/buffer.h"
static const char rcsid[] __attribute__((used)) = "$Id$";
int tac_exit(int status)
{
report(NULL, LOG_DEBUG, ~0, "exit status=%d", status);
exit(status);
}
static void create_dirs(char *path)
{
char *p = path;
while ((p = strchr(p + 1, '/'))) {
*p = 0;
mkdir(path, config.mask | ((0111) & (config.mask >> 2)));
*p = '/';
}
}
static int tac_lockfd(int lockfd)
{
static struct flock flock = {.l_type = F_WRLCK,.l_whence = SEEK_SET };
return fcntl(lockfd, F_SETLK, &flock);
}
static int tac_unlockfd(int lockfd)
{
static struct flock flock = {.l_type = F_UNLCK,.l_whence = SEEK_SET };
return fcntl(lockfd, F_SETLK, &flock);
}
struct logfile {
TAC_NAME_ATTRIBUTES;
char *dest; /* log file dest specification */
char *dest2; /* secondary dest specification for syslog */
struct context_logfile *ctx; /* current log context */
void (*log_write)(struct logfile *, char *, size_t);
void (*log_flush)(struct logfile *);
int syslog_priority;
sockaddr_union *syslog_src;
sockaddr_union syslog_dst;
sockaddr_union syslog_dst2;
int sock;
int sock2;
time_t last;
struct log_item *acct;
struct log_item *access;
struct log_item *author;
struct log_item *conn;
struct log_item *rad_access;
struct log_item *rad_acct;
str_t syslog_ident;
str_t priority;
str_t *separator; // ${FS}
struct log_item *prefix;
struct log_item *postfix;
unsigned int logsequence;
BISTATE(flag_syslog);
BISTATE(flag_sync);
BISTATE(flag_pipe);
BISTATE(flag_staticpath);
BISTATE(flag_udp_spoof);
BISTATE(warned);
enum token timestamp_format;
size_t buf_limit;
};
static void log_start(struct logfile *, struct context_logfile *);
static void logdied(pid_t pid __attribute__((unused)), struct context_logfile *ctx, int status __attribute__((unused)))
{
if (ctx) {
io_close(common_data.io, ctx->fd);
ctx->lf->ctx = NULL;
if (ctx->buf) {
log_start(ctx->lf, ctx);
io_set_o(common_data.io, ctx->fd);
}
}
}
static void logdied_handler(struct context_logfile *ctx, int cur __attribute__((unused)))
{
io_child_ign(ctx->pid);
logdied(ctx->pid, ctx, 0);
}
static void logwrite_retry(struct context_logfile *ctx, int cur __attribute__((unused)))
{
io_sched_del(common_data.io, ctx, (void *) logwrite_retry);
io_set_o(common_data.io, ctx->fd);
}
static void logwrite(struct context_logfile *ctx, int cur)
{
struct buffer *b = ctx->buf;
if (b) {
if (!ctx->lf->flag_pipe && tac_lockfd(cur)) {
io_clr_o(common_data.io, cur);
io_sched_add(common_data.io, ctx, (void *) logwrite_retry, 1, 0);
return;
}
if (!ctx->lf->flag_pipe)
lseek(cur, 0, SEEK_END);
while (b) {
ssize_t len = write(cur, b->buf + b->offset,
b->length - b->offset);
if (len < 0 && errno == EAGAIN) {
if (!ctx->lf->flag_pipe)
tac_unlockfd(cur);
io_clr_o(common_data.io, cur);
io_sched_add(common_data.io, ctx, (void *) logwrite_retry, 1, 0);
return;
}
if (len < 0) {
logdied_handler(ctx, cur);
} else {
off_t o = (off_t) len;
ctx->buf = buffer_release(ctx->buf, &o);
if (!ctx->buf && ctx->dying) {
if (!ctx->lf->flag_pipe)
tac_unlockfd(cur);
io_clr_o(common_data.io, cur);
io_close(common_data.io, cur);
ctx->lf->ctx = NULL;
free(ctx);
return;
}
}
b = ctx->buf;
}
if (!ctx->lf->flag_pipe)
tac_unlockfd(cur);
}
io_clr_o(common_data.io, cur);
}
static void logwrite_sync(struct context_logfile *ctx, int cur)
{
while (ctx->buf) {
struct iovec v[10];
int count = 10;
buffer_setv(ctx->buf, v, &count, buffer_getlen(ctx->buf));
if (count) {
ssize_t l = writev(cur, v, count);
off_t o = (off_t) l;
if (l < 0) {
//FIXME. Disk full, probably.
return;
}
ctx->buf = buffer_release(ctx->buf, &o);
}
}
}
static struct context_logfile *new_context_logfile(char *path)
{
struct context_logfile *ctx;
int len;
if (!path)
path = "";
len = strlen(path);
ctx = calloc(1, sizeof(struct context_logfile) + len);
memcpy(ctx->path, path, len);
return ctx;
}
static void log_start(struct logfile *lf, struct context_logfile *deadctx)
{
char newpath[PATH_MAX + 1];
char *path = NULL;
int cur = -1;
if (deadctx) {
path = deadctx->path;
} else if (!lf->flag_syslog) {
if (lf->flag_staticpath) {
path = lf->dest;
} else {
time_t dummy = (time_t) io_now.tv_sec;
struct tm *tm = localtime(&dummy);
if (!strftime(newpath, sizeof(newpath), lf->dest, tm)) {
report(NULL, LOG_DEBUG, ~0, "strftime failed for %s", lf->dest);
return;
}
path = newpath;
if (lf->ctx && strcmp(path, lf->ctx->path)) {
if (lf->flag_sync) {
while (lf->ctx->buf) {
struct iovec v[10];
int count = 10;
size_t len = buffer_getlen(lf->ctx->buf);
buffer_setv(lf->ctx->buf, v, &count, len);
if (count) {
off_t o = writev(lf->ctx->fd, v, count);
if (o > 0)
lf->ctx->buf = buffer_release(lf->ctx->buf, &o);
}
}
close(lf->ctx->fd);
free(lf->ctx);
lf->ctx = NULL;
} else {
if (lf->ctx->buf == NULL) {
if (lf->ctx->fd > -1)
io_close(common_data.io, lf->ctx->fd);
free(lf->ctx);
lf->ctx = NULL;
} else {
lf->ctx->dying = 1;
lf->ctx = NULL;
}
}
}
}
}
if (!lf->ctx) {
if (lf->last + 5 > io_now.tv_sec) {
if (lf->warned == BISTATE_NO)
report(NULL, LOG_INFO, ~0, "\"%s\" respawning too fast", lf->dest);
lf->warned = BISTATE_YES;
return;
}
lf->warned = BISTATE_NO;
lf->last = io_now.tv_sec;
if (lf->flag_pipe) {
int fds[2], flags;
pid_t pid;
if (pipe(fds)) {
report(NULL, LOG_DEBUG, ~0, "pipe (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
return;
}
switch ((pid = io_child_fork((void (*)(pid_t, void *, int)) logdied, deadctx))) {
case 0:
// io_destroy(common_data.io, NULL);
close(fds[1]);
if (fds[0]) {
dup2(fds[0], 0);
close(fds[0]);
}
/*
* Casting NULL to (char *) NULL to avoid GCC warnings
* observed on OpenBSD ...
*/
execl("/bin/sh", "sh", "-c", path, (char *) NULL);
execl("/usr/bin/sh", "sh", "-c", path, (char *) NULL);
report(NULL, LOG_DEBUG, ~0, "execl (%s, ...) (%s:%d)", path, __FILE__, __LINE__);
exit(EX_OSERR);
case -1:
report(NULL, LOG_DEBUG, ~0, "fork (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
break;
default:
close(fds[0]);
flags = fcntl(fds[1], F_GETFD, 0) | FD_CLOEXEC;
fcntl(fds[1], F_SETFD, flags);
cur = fds[1];
if (deadctx)
lf->ctx = deadctx;
else {
lf->ctx = new_context_logfile(path);
io_child_set(pid, (void (*)(pid_t, void *, int))
logdied, (void *) lf->ctx);
}
lf->ctx->pid = pid;
}
} else if (lf->flag_syslog) {
lf->ctx = new_context_logfile(NULL);
lf->flag_sync = 1;
openlog(lf->syslog_ident.txt, 0, lf->syslog_priority & ~7);
} else {
cur = open(path, O_CREAT | O_WRONLY | O_APPEND, config.mask);
if (cur < 0 && errno != EACCES) {
create_dirs(path);
cur = open(path, O_CREAT | O_WRONLY | O_APPEND, config.mask);
}
if (cur > -1 && !lf->ctx)
lf->ctx = new_context_logfile(path);
}
if (lf->ctx) {
lf->ctx->fd = cur;
lf->ctx->lf = lf;
if (cur > -1 && !lf->flag_sync) {
io_register(common_data.io, cur, lf->ctx);
io_set_cb_h(common_data.io, cur, (void *) logdied_handler);
io_set_cb_e(common_data.io, cur, (void *) logdied_handler);
io_set_cb_o(common_data.io, cur, (void *) logwrite);
fcntl(cur, F_SETFL, O_NONBLOCK);
}
}
}
}
static void log_write_async(struct logfile *lf, char *buf, size_t len)
{
if (lf->ctx) {
if (lf->buf_limit > 0 && buffer_getlen(lf->ctx->buf) > lf->buf_limit)
lf->ctx->buf = buffer_free_all(lf->ctx->buf);
lf->ctx->buf = buffer_write(lf->ctx->buf, buf, len);
io_set_o(common_data.io, lf->ctx->fd);
}
}
static void log_write_common(struct logfile *lf, char *buf, size_t len)
{
if (lf->ctx) {
if (lf->buf_limit > 0 && buffer_getlen(lf->ctx->buf) > lf->buf_limit)
lf->ctx->buf = buffer_free_all(lf->ctx->buf);
lf->ctx->buf = buffer_write(lf->ctx->buf, buf, len);
}
}
static int is_print(char *text, size_t len, size_t *wlen)
{
/* Returns TRUE for printable one-byte characters and valid
* UTF-8 multi-byte characters. An alternative would be to
* use iswprint(3), but I didn't get that to work correctly.
*/
*wlen = 0;
if (len > 0 && ((*text & 0x80) == 0x00)) {
*wlen = 1;
return isprint(*text);
}
if (len > 1 && (*text & 0xE0) == 0xC0)
*wlen = 2;
else if (len > 2 && (*text & 0xF0) == 0xE0)
*wlen = 3;
else if (len > 3 && (*text & 0xF8) == 0xF0)
*wlen = 4;
else
return 0;
for (size_t i = 1; i < *wlen; i++) {
text++;
if ((*text & 0xC0) != 0x80)
return 0;
}
return -1;
}
static void log_flush_async(struct logfile *lf __attribute__((unused)))
{
}
static void log_flush_syslog(struct logfile *lf __attribute__((unused)))
{
if (lf->ctx && lf->ctx->buf) {
off_t len = (off_t) buffer_getlen(lf->ctx->buf);
syslog(lf->syslog_priority, "%.*s", (int) len, lf->ctx->buf->buf + lf->ctx->buf->offset);
lf->ctx->buf = buffer_release(lf->ctx->buf, &len);
}
}
static void log_flush_syslog_udp(struct logfile *lf __attribute__((unused)))
{
if (lf->ctx && lf->ctx->buf) {
off_t len = (off_t) buffer_getlen(lf->ctx->buf);
int r = -1;
#define ISAF(A,AF) (lf->syslog_ ## A.sa.sa_family == AF)
if (ISAF(dst, AF_UNIX))
r = send(lf->sock, lf->ctx->buf->buf + lf->ctx->buf->offset, (int) len, 0);
if (r < 0 && lf->syslog_src)
r = sendto_spoof(lf->syslog_src, &lf->syslog_dst, lf->ctx->buf->buf + lf->ctx->buf->offset, (size_t) len);
if (r < 0 && lf->syslog_src)
r = sendto_spoof(lf->syslog_src, &lf->syslog_dst2, lf->ctx->buf->buf + lf->ctx->buf->offset, (size_t) len);
if (r < 0)
r = sendto(lf->sock, lf->ctx->buf->buf + lf->ctx->buf->offset, (int) len, 0, &lf->syslog_dst.sa, su_len(&lf->syslog_dst));
if (r < 0)
report(NULL, LOG_DEBUG, ~0, "send/sendto (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
lf->ctx->buf = buffer_release(lf->ctx->buf, &len);
}
}
static void log_flush_sync(struct logfile *lf)
{
logwrite_sync(lf->ctx, lf->ctx->fd);
}
int logs_flushed(tac_realm *r)
{
if (r->logdestinations) {
for (rb_node_t * rbn = RB_first(r->logdestinations); rbn; rbn = RB_next(rbn)) {
struct logfile *lf = RB_payload(rbn, struct logfile *);
if (!lf->flag_pipe && !lf->flag_sync && lf->ctx && buffer_getlen(lf->ctx->buf))
return 0;
}
}
if (r->realms) {
for (rb_node_t * rbn = RB_first(r->realms); rbn; rbn = RB_next(rbn)) {
if (!logs_flushed(RB_payload(rbn, tac_realm *)))
return 0;
}
}
return -1;
}
struct log_item *parse_log_format(struct sym *, mem_t *);
struct log_item *parse_log_format_inline(char *format, char *file, int line)
{
struct sym sym = {.filename = file,.line = line };
sym.in = sym.tin = format;
sym.len = sym.tlen = strlen(sym.in);
sym_init(&sym);
return parse_log_format(&sym, NULL);
}
void parse_log(struct sym *sym, tac_realm *r)
{
static struct log_item *access_log = NULL;
static struct log_item *author_log = NULL;
static struct log_item *acct_log = NULL;
static struct log_item *conn_log = NULL;
static struct log_item *rad_access_log = NULL;
static struct log_item *rad_acct_log = NULL;
static struct log_item *file_pre = NULL;
static struct log_item *file_post = NULL;
static struct log_item *syslog_pre = NULL;
static struct log_item *syslog_post = NULL;
static struct log_item *syslog3_pre = NULL;
static struct log_item *syslog3_post = NULL;
static str_t syslog_fs = { "|", 1 };
static str_t file_fs = { "\t", 1 };
struct logfile *lf = calloc(1, sizeof(struct logfile));
if (sym->code == S_equal)
sym_get(sym);
str_set(&lf->name, strdup(sym->buf), 0);
sym_get(sym);
if (r->logdestinations && RB_search(r->logdestinations, lf))
parse_error(sym, "log destination '%s' already defined", lf->name);
lf->dest = "syslog";
str_set(&lf->syslog_ident, "tacplus", 0);
lf->syslog_priority = common_data.syslog_level | common_data.syslog_facility;
lf->sock = -1;
lf->sock2 = -1;
lf->buf_limit = 64000;
if (sym->code == S_openbra) {
sym_get(sym);
while (sym->code != S_closebra) {
switch (sym->code) {
case S_authentication:
case S_access:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->access = parse_log_format(sym, NULL);
continue;
case S_authorization:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->author = parse_log_format(sym, NULL);
continue;
case S_accounting:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->acct = parse_log_format(sym, NULL);
continue;
case S_connection:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->conn = parse_log_format(sym, NULL);
continue;
case S_radius_access:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->rad_access = parse_log_format(sym, NULL);
continue;
case S_radius_accounting:
sym_get(sym);
parse(sym, S_format);
parse(sym, S_equal);
lf->rad_acct = parse_log_format(sym, NULL);
continue;
case S_destination:
sym_get(sym);
parse(sym, S_equal);
lf->dest = strdup(sym->buf);
sym_get(sym);
if (sym->code == S_comma) {
sym_get(sym);
lf->dest2 = strdup(sym->buf);
sym_get(sym);
}
continue;
case S_syslog:
sym_get(sym);
switch (sym->code) {
case S_facility:
sym_get(sym);
parse(sym, S_equal);
lf->syslog_priority &= 7;
lf->syslog_priority |= get_syslog_facility(sym->buf);
sym_get(sym);
continue;
case S_level:
case S_severity:
sym_get(sym);
parse(sym, S_equal);
lf->syslog_priority &= ~7;
lf->syslog_priority |= get_syslog_level(sym->buf);
sym_get(sym);
continue;
case S_ident:
sym_get(sym);
parse(sym, S_equal);
str_set(&lf->syslog_ident, strdup(sym->buf), 0);
sym_get(sym);
continue;
case S_source:
sym_get(sym);
parse(sym, S_spoofing);
parse(sym, S_equal);
lf->flag_udp_spoof = parse_bool(sym) ? 1 : 0;
continue;
default:
parse_error_expect(sym, S_facility, S_severity, S_ident, S_unknown, S_source);
}
case S_timestamp:
sym_get(sym);
parse(sym, S_equal);
switch (sym->code) {
case S_RFC3164:
case S_RFC5424:
lf->timestamp_format = sym->code;
sym_get(sym);
break;
default:
parse_error_expect(sym, S_RFC3164, S_RFC5424, S_unknown);
}
continue;
case S_prefix:
sym_get(sym);
parse(sym, S_equal);
lf->prefix = parse_log_format(sym, NULL);
sym_get(sym);
continue;
case S_postfix:
sym_get(sym);
parse(sym, S_equal);
lf->postfix = parse_log_format(sym, NULL);
continue;
case S_FS:
case S_separator:
sym_get(sym);
parse(sym, S_equal);
lf->separator = calloc(1, sizeof(str_t));
str_set(lf->separator, strdup(sym->buf), 0);
sym_get(sym);
continue;
case S_buffer:
sym_get(sym);
parse(sym, S_limit);
parse(sym, S_equal);
lf->buf_limit = parse_int(sym);
continue;
default:
parse_error_expect(sym, S_destination, S_syslog, S_access, S_authorization, S_accounting, S_connection, S_closebra,
S_prefix, S_postfix, S_separator, S_radius_access, S_radius_accounting, S_timestamp, S_buffer, S_unknown);
}
}
sym_get(sym);
}
char buf[10];
size_t buf_len = snprintf(buf, sizeof(buf), "%d", lf->syslog_priority);
str_set(&lf->priority, strdup(buf), buf_len);
if (!access_log) {
#define PR "\"" // inline parsing prefix/suffix
#define S "${nas}${FS}${user}${FS}${port}${FS}${nac}${FS}${accttype}${FS}${service}${FS}${cmd}"
acct_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
#define S "${nas}${FS}${user}${FS}${port}${FS}${nac}${FS}${profile}${FS}${result}${FS}${service}${FS}${cmd}"
author_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
#define S "${nas}${FS}${user}${FS}${port}${FS}${nac}${FS}${action} ${hint}"
access_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
#define S "${accttype}${FS}${conn.protocol}${FS}${peer.address}${FS}${peer.port}${FS}${server.address}${FS}${server.port}${FS}${tls.conn.version}${FS}${tls.peer.cert.issuer}${FS}${tls.peer.cert.subject}"
conn_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
#define S "${nas}${FS}${user}${FS}${port}${FS}${nac}${FS}${accttype}${FS}${action} ${hint}${FS}${args, }${FS}${rargs, }"
rad_access_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
#define S "${nas}${FS}${user}${FS}${port}${FS}${nac}${FS}${accttype}${FS}${service}${FS}${args, }"
rad_acct_log = parse_log_format_inline(PR S PR, __FILE__, __LINE__);
#undef S
file_pre = parse_log_format_inline(PR "${TIMESTAMP} " PR, __FILE__, __LINE__);
file_post = parse_log_format_inline(PR "\n" PR, __FILE__, __LINE__);
syslog_pre = parse_log_format_inline(PR "<${priority}>${TIMESTAMP} ${hostname} ${ident}[${pid}]: ${msgid}${FS}" PR, __FILE__, __LINE__);
syslog_post = parse_log_format_inline(PR "" PR, __FILE__, __LINE__);
syslog3_post = parse_log_format_inline(PR "" PR, __FILE__, __LINE__);
syslog3_pre = parse_log_format_inline(PR "${msgid}${FS}" PR, __FILE__, __LINE__);
#undef PR
}
if (!lf->acct)
lf->acct = acct_log;
if (!lf->author)
lf->author = author_log;
if (!lf->access)
lf->access = access_log;
if (!lf->conn)
lf->conn = conn_log;
if (!lf->rad_access)
lf->rad_access = rad_access_log;
if (!lf->rad_acct)
lf->rad_acct = rad_acct_log;
switch (lf->dest[0]) {
case '/':
lf->flag_staticpath = (strchr(lf->dest, '%') == NULL);
lf->flag_pipe = 0;
lf->flag_sync = 0;
lf->log_write = &log_write_async;
lf->log_flush = &log_flush_async;
break;
case '>':
lf->dest++;
lf->log_write = &log_write_common;
lf->log_flush = &log_flush_sync;
lf->flag_sync = BISTATE_YES;
break;
case '|':
lf->dest++;
lf->flag_pipe = BISTATE_YES;
lf->log_write = &log_write_async;
lf->log_flush = &log_flush_async;
break;
default:
if (!lf->separator)
lf->separator = &syslog_fs;
if (lf->timestamp_format == S_unknown)
lf->timestamp_format = S_RFC3164;
if (!strcmp(lf->dest, codestring[S_syslog].txt)) {
if (!lf->prefix)
lf->prefix = syslog3_pre;
if (!lf->postfix)
lf->postfix = syslog3_post;
lf->flag_syslog = BISTATE_YES;
lf->log_write = &log_write_common;
lf->log_flush = &log_flush_syslog;
} else if (!su_pton_p(&lf->syslog_dst, lf->dest, 514)) {
if (!lf->prefix)
lf->prefix = syslog_pre;
if (!lf->postfix)
lf->postfix = syslog_post;
lf->flag_syslog = BISTATE_YES;
lf->log_write = &log_write_common;
lf->log_flush = &log_flush_syslog_udp;
if ((lf->sock = su_socket(lf->syslog_dst.sa.sa_family, SOCK_DGRAM, 0)) < 0) {
report(NULL, LOG_DEBUG, ~0, "su_socket (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
free(lf); // FIXME -- the free(lf) calls here don't free everything
return;
}
fcntl(lf->sock, F_SETFD, fcntl(lf->sock, F_GETFD, 0) | FD_CLOEXEC);
if (lf->dest2 && !su_pton_p(&lf->syslog_dst2, lf->dest2, 514)) {
if ((lf->sock2 = su_socket(lf->syslog_dst2.sa.sa_family, SOCK_DGRAM, 0)) < 0) {
report(NULL, LOG_DEBUG, ~0, "su_socket (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
close(lf->sock);
free(lf);
return;
}
}
if (lf->sock2 > -1)
fcntl(lf->sock, F_SETFD, fcntl(lf->sock2, F_GETFD, 0) | FD_CLOEXEC);
if (ISAF(dst, AF_UNIX) && su_connect(lf->sock, &lf->syslog_dst)) {
report(NULL, LOG_DEBUG, ~0, "su_connect (%s:%d): %s", __FILE__, __LINE__, strerror(errno));
close(lf->sock);
free(lf);
return;
}
} else {
report(NULL, LOG_INFO, ~0, "parse error (%s:%d): '%s' doesn't look like a valid log destination", __FILE__, __LINE__, lf->dest);
free(lf);
return;
}
}
if (!lf->separator)
lf->separator = &file_fs;
if (!lf->prefix)
lf->prefix = file_pre;
if (!lf->postfix)
lf->postfix = file_post;
if (!r->logdestinations)
r->logdestinations = RB_tree_new(compare_name, NULL);
RB_insert(r->logdestinations, lf);
}
void log_add(struct sym *sym, rb_tree_t **rbtp, char *s, tac_realm *r)
{
if (!*rbtp)
*rbtp = RB_tree_new(compare_name, NULL);
struct logfile lf = {.name.txt = s,.name.len = strlen(s) };
while (r) {
if (r->logdestinations) {
struct logfile *res = NULL;
if ((res = RB_lookup(r->logdestinations, &lf))) {
RB_insert(*rbtp, res);
return;
}
}
r = r->parent;
}
parse_error(sym, "log destination '%s' not found", s);
}
struct log_item *parse_log_format(struct sym *sym, mem_t *mem)
{
struct log_item *start = NULL;
struct log_item **li = &start;
char *n;
char *in = mem_strdup(mem, sym->buf);
while (*in) {
*li = mem_alloc(mem, sizeof(struct log_item));
if (!start)
start = *li;
if ((n = strstr(in, "${"))) {
char *sep;
*n = 0;
if (n != in) {
(*li)->token = S_string;
(*li)->text = in;
li = &(*li)->next;
*li = mem_alloc(mem, sizeof(struct log_item));
}
n += 2;
in = n;
n = strchr(in, '}');
if (!n)
parse_error(sym, "closing bracket not found");
*n = 0;
n++;
for (sep = in; sep < n && *sep != ','; sep++);
if (sep != n) {
*sep++ = 0;
str_set(&(*li)->separator, sep, 0);
}
(*li)->token = keycode(in);
switch ((*li)->token) {
case S_cmd:
case S_args:
case S_rargs:
if (!(*li)->separator.txt)
str_set(&(*li)->separator, " ", 1);
case S_nas:
case S_nac:
case S_client:
case S_clientdns:
case S_clientname:
case S_clientaddress:
case S_context:
case S_conn_protocol:
case S_conn_transport:
case S_devicedns:
case S_devicename:
case S_deviceaddress:
case S_proxy:
case S_peer:
case S_peer_address:
case S_peer_port:
case S_user:
case S_user_original:
case S_profile:
case S_service:
case S_result:
case S_deviceport:
case S_port:
case S_type:
case S_hint:
case S_host:
case S_device:
case S_hostname:
case S_server_name:
case S_server_address:
case S_server_port:
case S_msgid:
case S_accttype:
case S_priority:
case S_action:
case S_privlvl:
case S_authen_action:
case S_authen_type:
case S_authen_service:
case S_authen_method:
case S_message:
case S_umessage:
case S_rule:
case S_path:
case S_uid:
case S_gid:
case S_gids:
case S_home:
case S_root:
case S_shell:
case S_memberof:
case S_dn:
case S_custom_0:
case S_custom_1:
case S_custom_2:
case S_custom_3:
case S_vrf:
case S_realm:
case S_label:
case S_identity_source:
case S_tls_conn_version:
case S_tls_conn_cipher:
case S_tls_peer_cert_issuer:
case S_tls_peer_cert_subject:
case S_tls_conn_cipher_strength:
case S_tls_peer_cn:
case S_tls_psk_identity:
case S_ssh_key_hash:
case S_ssh_key_id:
case S_tls_conn_sni:
case S_tls_peer_cert_sha1:
case S_tls_peer_cert_sha256:
case S_nacname:
case S_nasname:
case S_mavis_latency:
case S_session_id:
case S_logsequence:
case S_pid:
case S_ident:
case S_PASSWORD:
case S_RESPONSE:
case S_PASSWORD_OLD:
case S_PASSWORD_NEW:
case S_PASSWORD_ABORT:
case S_PASSWORD_AGAIN:
case S_PASSWORD_NOMATCH:
case S_PASSWORD_MINREQ:
case S_PERMISSION_DENIED:
case S_ENABLE_PASSWORD:
case S_PASSWORD_CHANGE_DIALOG:
case S_PASSWORD_CHANGED:
case S_BACKEND_FAILED:
case S_CHANGE_PASSWORD:
case S_ACCOUNT_EXPIRES:
case S_PASSWORD_EXPIRED:
case S_PASSWORD_EXPIRES:
case S_PASSWORD_INCORRECT:
case S_RESPONSE_INCORRECT:
case S_USERNAME:
case S_USER_ACCESS_VERIFICATION:
case S_DENIED_BY_ACL:
case S_AUTHFAIL_BANNER:
case S_TIMESTAMP:
case S_FS:
break;
case S_config_file:
(*li)->token = S_string;
(*li)->text = mem_strdup(mem, sym->filename);
break;
case S_config_line:
{
char buf[20];
snprintf(buf, sizeof(buf), "%d", sym->line);
(*li)->token = S_string;
(*li)->text = mem_strdup(mem, buf);
}
break;
default:
parse_error(sym, "log variable '%s' is not recognized", in);
}
in = n;
} else {
(*li)->token = S_string;
(*li)->text = in;
break;
}
li = &(*li)->next;
}
sym_get(sym);
if (!start) {
static struct log_item li = {.token = S_string,.text = "" };
start = &li;
}
return start;
}
static size_t ememcpy(char *dest, char *src, size_t n, size_t remaining)
{
size_t res = 0;
size_t wlen;
while (n && remaining - res > 10) {
if (*src == '\\') {
*dest++ = *src;
*dest++ = *src;
res += 2;
src++, n--;
} else if (is_print(src, remaining, &wlen)) {
while (wlen > 0) {
*dest = *src;
dest++, src++, wlen--, res++, n--;
}
} else {
*dest++ = '\\';
*dest++ = '0' + (7 & ((*src & 0xff) >> 6));
*dest++ = '0' + (7 & ((*src & 0xff) >> 3));
*dest++ = '0' + (7 & *src);
res += 4;
src++, n--;
}
}
return res;
}
static str_t *eval_log_format_user(tac_session *session, struct context *ctx __attribute__((unused)), struct logfile *lf __attribute__((unused)))
{
if (session)
return &session->username;
return NULL;
}
static str_t *eval_log_format_user_original(tac_session *session, struct context *ctx __attribute__((unused)), struct logfile *lf __attribute__((unused)))
{
if (session)
return &session->username_orig;
return NULL;
}
static str_t *eval_log_format_profile(tac_session *session, struct context *ctx __attribute__((unused)), struct logfile *lf __attribute__((unused)))
{
if (session && session->profile)
return &session->profile->name;
return NULL;
}