forked from droe/sslsplit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.c
1844 lines (1670 loc) · 45 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
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
/*-
* SSLsplit - transparent SSL/TLS interception
* https://www.roe.ch/SSLsplit
*
* Copyright (c) 2009-2019, Daniel Roethlisberger <[email protected]>.
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER 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 COPYRIGHT HOLDER 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.
*/
#include "log.h"
#include "logger.h"
#include "sys.h"
#include "attrib.h"
#include "privsep.h"
#include "defaults.h"
#include "logpkt.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <syslog.h>
#include <assert.h>
#include <sys/stat.h>
#include <netinet/in.h>
/*
* Centralized logging code multiplexing thread access to the logger based
* logging in separate threads. Some log types are switchable to different
* backends, such as syslog and stderr.
*/
/*
* Common code for all logs.
*/
static proxy_ctx_t *proxy_ctx = NULL;
void
log_exceptcb(void)
{
if (proxy_ctx) {
proxy_loopbreak(proxy_ctx, -1);
proxy_ctx = NULL;
}
}
/*
* Error log.
* Switchable between stderr and syslog.
* Uses logger thread.
*/
static logger_t *err_log = NULL;
static int err_shortcut_logger = 0;
static int err_mode = LOG_ERR_MODE_STDERR;
static ssize_t
log_err_writecb(UNUSED void *fh, UNUSED unsigned long ctl,
const void *buf, size_t sz)
{
switch (err_mode) {
case LOG_ERR_MODE_STDERR:
return fwrite(buf, sz - 1, 1, stderr);
case LOG_ERR_MODE_SYSLOG:
syslog(LOG_ERR, "%s", (const char *)buf);
return sz;
}
return -1;
}
int
log_err_printf(const char *fmt, ...)
{
va_list ap;
char *buf;
int rv;
va_start(ap, fmt);
rv = vasprintf(&buf, fmt, ap);
va_end(ap);
if (rv < 0)
return -1;
if (err_shortcut_logger) {
return logger_write_freebuf(err_log, NULL, 0,
buf, strlen(buf) + 1);
} else {
log_err_writecb(NULL, 0, (unsigned char*)buf, strlen(buf) + 1);
free(buf);
}
return 0;
}
void
log_err_mode(int mode)
{
err_mode = mode;
}
/*
* Debug log. Redirects logging to error log.
* Switchable between error log or no logging.
* Uses the error log logger thread.
*/
static int dbg_mode = LOG_DBG_MODE_NONE;
int
log_dbg_write_free(void *buf, size_t sz)
{
if (dbg_mode == LOG_DBG_MODE_NONE)
return 0;
if (err_shortcut_logger) {
return logger_write_freebuf(err_log, NULL, 0, buf, sz);
} else {
log_err_writecb(NULL, 0, buf, sz);
free(buf);
}
return 0;
}
int
log_dbg_print_free(char *s)
{
return log_dbg_write_free(s, strlen(s) + 1);
}
int
log_dbg_printf(const char *fmt, ...)
{
va_list ap;
char *buf;
int rv;
if (dbg_mode == LOG_DBG_MODE_NONE)
return 0;
va_start(ap, fmt);
rv = vasprintf(&buf, fmt, ap);
va_end(ap);
if (rv < 0)
return -1;
return log_dbg_print_free(buf);
}
void
log_dbg_mode(int mode)
{
dbg_mode = mode;
}
/*
* Master key log. Logs master keys in SSLKEYLOGFILE format.
* Uses a logger thread.
*/
logger_t *masterkey_log = NULL;
static int masterkey_fd = -1;
static char *masterkey_fn = NULL;
static int masterkey_clisock = -1;
static int
log_masterkey_preinit(const char *logfile)
{
masterkey_fd = open(logfile, O_WRONLY|O_APPEND|O_CREAT, DFLT_FILEMODE);
if (masterkey_fd == -1) {
log_err_printf("Failed to open '%s' for writing: %s (%i)\n",
logfile, strerror(errno), errno);
return -1;
}
masterkey_fn = strdup(logfile);
if (!masterkey_fn) {
close(masterkey_fd);
masterkey_fd = -1;
return -1;
}
return 0;
}
static int
log_masterkey_reopencb(void)
{
close(masterkey_fd);
masterkey_fd = privsep_client_openfile(masterkey_clisock,
masterkey_fn,
0);
if (masterkey_fd == -1) {
log_err_printf("Failed to open '%s' for writing: %s\n",
masterkey_fn, strerror(errno));
free(masterkey_fn);
masterkey_fn = NULL;
return -1;
}
return 0;
}
/*
* Do the actual write to the open master key log file descriptor.
*/
static ssize_t
log_masterkey_writecb(UNUSED void *fh, UNUSED unsigned long ctl,
const void *buf, size_t sz)
{
if (write(masterkey_fd, buf, sz) == -1) {
log_err_printf("Warning: Failed to write to masterkey log:"
" %s\n", strerror(errno));
return -1;
}
return sz;
}
static void
log_masterkey_fini(void)
{
close(masterkey_fd);
}
/*
* Connection log. Logs a one-liner to a file-based connection log.
* Uses a logger thread.
*/
logger_t *connect_log = NULL;
static int connect_fd = -1;
static char *connect_fn = NULL;
static int connect_clisock = -1;
static int
log_connect_preinit(const char *logfile)
{
connect_fd = open(logfile, O_WRONLY|O_APPEND|O_CREAT, DFLT_FILEMODE);
if (connect_fd == -1) {
log_err_printf("Failed to open '%s' for writing: %s (%i)\n",
logfile, strerror(errno), errno);
return -1;
}
connect_fn = strdup(logfile);
if (!connect_fn) {
close(connect_fd);
connect_fd = -1;
return -1;
}
return 0;
}
static int
log_connect_reopencb(void)
{
close(connect_fd);
connect_fd = privsep_client_openfile(connect_clisock,
connect_fn,
0);
if (connect_fd == -1) {
log_err_printf("Failed to open '%s' for writing: %s\n",
connect_fn, strerror(errno));
free(connect_fn);
connect_fn = NULL;
return -1;
}
return 0;
}
/*
* Do the actual write to the open connection log file descriptor.
* We prepend a timestamp here, which means that timestamps are slightly
* delayed from the time of actual logging. Since we only have second
* resolution that should not make any difference.
*/
static ssize_t
log_connect_writecb(UNUSED void *fh, UNUSED unsigned long ctl,
const void *buf, size_t sz)
{
char timebuf[32];
time_t epoch;
struct tm *utc;
size_t n;
time(&epoch);
utc = gmtime(&epoch);
n = strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S UTC ", utc);
if (n == 0) {
log_err_printf("Error from strftime(): buffer too small\n");
return -1;
}
if ((write(connect_fd, timebuf, n) == -1) ||
(write(connect_fd, buf, sz) == -1)) {
log_err_printf("Warning: Failed to write to connect log: %s\n",
strerror(errno));
return -1;
}
return sz;
}
static void
log_connect_fini(void)
{
close(connect_fd);
}
/*
* Content log.
* Logs connection content to either a single file or a directory containing
* per-connection logs.
* Uses a logger thread; the actual logging happens in a separate thread.
* To ensure ordering of requests (open, write, ..., close), logging for a
* single connection must happen from a single thread.
* This is guaranteed by the current pxythr architecture.
*/
#define PREPFLAG_REQUEST 1
#define PREPFLAG_EOF 2
typedef struct log_content_file_ctx {
union {
struct {
char *header_req;
char *header_resp;
} single;
struct {
int fd;
char *filename;
} dir;
struct {
int fd;
char *filename;
} spec;
} u;
} log_content_file_ctx_t;
typedef struct log_content_pcap_ctx {
union {
struct {
int fd;
char *filename;
} dir;
struct {
int fd;
char *filename;
} spec;
} u;
logpkt_ctx_t state;
} log_content_pcap_ctx_t;
#ifndef WITHOUT_MIRROR
typedef struct log_content_mirror_ctx {
logpkt_ctx_t state;
} log_content_mirror_ctx_t;
#endif /* !WITHOUT_MIRROR */
static int content_file_clisock = -1;
static logger_t *content_file_log = NULL;
static int content_pcap_clisock = -1;
static logger_t *content_pcap_log = NULL;
static uint8_t content_pcap_src_ether[ETHER_ADDR_LEN] = {
0x02, 0x00, 0x00, 0x11, 0x11, 0x11};
static uint8_t content_pcap_dst_ether[ETHER_ADDR_LEN] = {
0x02, 0x00, 0x00, 0x22, 0x22, 0x22};
#ifndef WITHOUT_MIRROR
static logger_t *content_mirror_log = NULL;
static libnet_t *content_mirror_libnet = NULL;
static size_t content_mirror_mtu = 0;
static uint8_t content_mirror_src_ether[ETHER_ADDR_LEN];
static uint8_t content_mirror_dst_ether[ETHER_ADDR_LEN];
#endif /* !WITHOUT_MIRROR */
/*
* Split a pathname into static LHS (including final slashes) and dynamic RHS.
* Returns -1 on error, 0 on success.
* On success, fills in lhs and rhs with newly allocated buffers that must
* be freed by the caller.
*/
int
log_content_split_pathspec(const char *path, char **lhs, char **rhs)
{
const char *p, *q, *r;
p = strchr(path, '%');
/* at first % or EOS */
/* skip % if next char is % (and implicitly not \0) */
while (p && p[1] == '%') {
p = strchr(p + 2, '%');
}
/* at first % that is not %%, or at EOS */
if (!p || !p[1]) {
/* EOS: no % that is not %% in path */
p = path + strlen(path);
}
/* at first hot % or at '\0' */
/* find last / before % */
for (r = q = strchr(path, '/'); q && (q < p); q = strchr(q + 1, '/')) {
r = q;
}
if (!(p = r)) {
/* no / found, use dummy ./ as LHS */
*lhs = strdup("./");
if (!*lhs)
return -1;
*rhs = strdup(path);
if (!*rhs) {
free(*lhs);
return -1;
}
return 0;
}
/* at last / terminating the static part of path */
p++; /* skip / */
*lhs = malloc(p - path + 1 /* for terminating null */);
if (!*lhs)
return -1;
memcpy(*lhs, path, p - path);
(*lhs)[p - path] = '\0';
*rhs = strdup(p);
if (!*rhs) {
free(*lhs);
return -1;
}
return 0;
}
/*
* Generate a log path based on the given log spec.
* Returns an allocated buffer which must be freed by caller, or NULL on error.
*/
#define PATH_BUF_INC 1024
static char * MALLOC NONNULL(1,2,3)
log_content_format_pathspec(const char *logspec,
char *srchost, char *srcport,
char *dsthost, char *dstport,
char *exec_path, char *user, char *group)
{
/* set up buffer to hold our generated file path */
size_t path_buflen = PATH_BUF_INC;
char *path_buf = malloc(path_buflen);
if (path_buf == NULL) {
log_err_printf("failed to allocate path buffer\n");
return NULL;
}
/* initialize the buffer as an empty C string */
path_buf[0] = '\0';
/* iterate over format specifiers */
size_t path_len = 0;
for (const char *p = logspec; *p != '\0'; p++) {
const char *elem = NULL;
size_t elem_len = 0;
const char iso8601[] = "%Y%m%dT%H%M%SZ";
char timebuf[24]; /* sized for ISO 8601 format */
char addrbuf[INET6_ADDRSTRLEN + 8]; /* [host]:port */
/* parse the format string and generate the next path element */
switch (*p) {
case '%':
p++;
/* handle format specifiers. */
switch (*p) {
case '\0':
/* unexpected eof; backtrack and discard
* invalid format spec */
p--;
elem_len = 0;
break;
case '%':
elem = p;
elem_len = 1;
break;
case 'd':
if (snprintf(addrbuf, sizeof(addrbuf),
"%s,%s", dsthost, dstport) < 0) {
addrbuf[0] = '?';
addrbuf[1] = '\0';
}
elem = addrbuf;
elem_len = strlen(addrbuf);
break;
case 'D':
elem = dsthost;
elem_len = strlen(dsthost);
break;
case 'p':
elem = dstport;
elem_len = strlen(dstport);
break;
case 's':
if (snprintf(addrbuf, sizeof(addrbuf),
"%s,%s", srchost, srcport) < 0) {
addrbuf[0] = '?';
addrbuf[1] = '\0';
}
elem = addrbuf;
elem_len = strlen(addrbuf);
break;
case 'S':
elem = srchost;
elem_len = strlen(srchost);
break;
case 'q':
elem = srcport;
elem_len = strlen(srcport);
break;
case 'x':
if (exec_path) {
char *match = exec_path;
while ((match = strchr(match, '/')) != NULL) {
match++;
elem = match;
}
elem_len = elem ? strlen(elem) : 0;
} else {
elem_len = 0;
}
break;
case 'X':
elem = exec_path;
elem_len = exec_path ? strlen(exec_path) : 0;
break;
case 'u':
elem = user;
elem_len = user ? strlen(user) : 0;
break;
case 'g':
elem = group;
elem_len = group ? strlen(group) : 0;
break;
case 'T': {
time_t epoch;
struct tm *utc;
time(&epoch);
utc = gmtime(&epoch);
strftime(timebuf, sizeof(timebuf), iso8601, utc);
elem = timebuf;
elem_len = sizeof(timebuf);
break;
}}
break;
default:
elem = p;
elem_len = 1;
break;
}
if (elem_len > 0) {
/* growing the buffer to fit elem_len + terminating \0 */
if (path_buflen - path_len < elem_len + 1) {
/* Grow in PATH_BUF_INC chunks.
* Note that the use of `PATH_BUF_INC' provides
* our guaranteed space for a trailing '\0' */
path_buflen += elem_len + PATH_BUF_INC;
char *newbuf = realloc(path_buf, path_buflen);
if (newbuf == NULL) {
log_err_printf("failed to reallocate"
" path buffer\n");
free(path_buf);
return NULL;
}
path_buf = newbuf;
}
strncat(path_buf, elem, elem_len);
path_len += elem_len;
}
}
/* apply terminating NUL */
assert(path_buflen > path_len);
path_buf[path_len] = '\0';
return path_buf;
}
#undef PATH_BUF_INC
/*
* log_content_ctx_t is preallocated by the caller (part of connection ctx).
*/
int
log_content_open(log_content_ctx_t *ctx, opts_t *opts,
const struct sockaddr *srcaddr, socklen_t srcaddrlen,
const struct sockaddr *dstaddr, socklen_t dstaddrlen,
char *srchost, char *srcport,
char *dsthost, char *dstport,
char *exec_path, char *user, char *group)
{
char timebuf[24];
time_t epoch;
struct tm *utc;
char *dsthost_clean = NULL;
char *srchost_clean = NULL;
if (ctx->file || ctx->pcap
#ifndef WITHOUT_MIRROR
|| ctx->mirror
#endif /* !WITHOUT_MIRROR */
)
return 0; /* does this actually happen? */
if (opts->contentlog_isdir || opts->contentlog_isspec ||
opts->pcaplog_isdir || opts->pcaplog_isspec) {
if (opts->contentlog_isdir || opts->pcaplog_isdir) {
if (time(&epoch) == -1) {
log_err_printf("Failed to get time\n");
goto errout;
}
if ((utc = gmtime(&epoch)) == NULL) {
log_err_printf("Failed to convert time:"
" %s (%i)\n",
strerror(errno), errno);
goto errout;
}
if (!strftime(timebuf, sizeof(timebuf),
"%Y%m%dT%H%M%SZ", utc)) {
log_err_printf("Failed to format time:"
" %s (%i)\n",
strerror(errno), errno);
goto errout;
}
}
srchost_clean = sys_ip46str_sanitize(srchost);
if (!srchost_clean) {
log_err_printf("Failed to sanitize srchost\n");
goto errout;
}
dsthost_clean = sys_ip46str_sanitize(dsthost);
if (!dsthost_clean) {
log_err_printf("Failed to sanitize dsthost\n");
free(srchost_clean);
goto errout;
}
}
if (opts->contentlog) {
ctx->file = malloc(sizeof(log_content_file_ctx_t));
if (!ctx->file)
goto errout;
memset(ctx->file, 0, sizeof(log_content_file_ctx_t));
if (opts->contentlog_isdir) {
/* per-connection-file content log (-S) */
if (asprintf(&ctx->file->u.dir.filename,
"%s/%s-%s,%s-%s,%s.log",
opts->contentlog, timebuf,
srchost_clean, srcport,
dsthost_clean, dstport) < 0) {
log_err_printf("Failed to format filename:"
" %s (%i)\n",
strerror(errno), errno);
goto errout;
}
} else if (opts->contentlog_isspec) {
/* per-connection-file content log with logspec (-F) */
ctx->file->u.spec.filename =
log_content_format_pathspec(opts->contentlog,
srchost_clean,
srcport,
dsthost_clean,
dstport,
exec_path,
user, group);
if (!ctx->file->u.spec.filename) {
goto errout;
}
} else {
/* single-file content log (-L) */
if (asprintf(&ctx->file->u.single.header_req,
"[%s]:%s -> [%s]:%s",
srchost, srcport, dsthost, dstport) < 0) {
goto errout;
}
if (asprintf(&ctx->file->u.single.header_resp,
"[%s]:%s -> [%s]:%s",
dsthost, dstport, srchost, srcport) < 0) {
free(ctx->file->u.single.header_req);
goto errout;
}
}
}
if (opts->pcaplog) {
ctx->pcap = malloc(sizeof(log_content_pcap_ctx_t));
if (!ctx->pcap)
goto errout;
memset(ctx->pcap, 0, sizeof(log_content_pcap_ctx_t));
logpkt_ctx_init(&ctx->pcap->state, NULL, 0,
content_pcap_src_ether, content_pcap_dst_ether,
srcaddr, srcaddrlen, dstaddr, dstaddrlen);
if (opts->pcaplog_isdir) {
/* per-connection-file pcap log (-Y) */
if (asprintf(&ctx->pcap->u.dir.filename,
"%s/%s-%s,%s-%s,%s.pcap",
opts->pcaplog, timebuf,
srchost_clean, srcport,
dsthost_clean, dstport) < 0) {
log_err_printf("Failed to format filename:"
" %s (%i)\n",
strerror(errno), errno);
goto errout;
}
} else if (opts->pcaplog_isspec) {
/* per-connection-file pcap log with logspec (-y) */
ctx->pcap->u.spec.filename =
log_content_format_pathspec(opts->pcaplog,
srchost_clean,
srcport,
dsthost_clean,
dstport,
exec_path,
user, group);
if (!ctx->pcap->u.spec.filename) {
goto errout;
}
}
}
#ifndef WITHOUT_MIRROR
if (opts->mirrorif) {
ctx->mirror = malloc(sizeof(log_content_mirror_ctx_t));
if (!ctx->mirror)
goto errout;
memset(ctx->mirror, 0, sizeof(log_content_mirror_ctx_t));
logpkt_ctx_init(&ctx->mirror->state,
content_mirror_libnet,
content_mirror_mtu,
content_mirror_src_ether,
content_mirror_dst_ether,
srcaddr, srcaddrlen, dstaddr, dstaddrlen);
}
#endif /* !WITHOUT_MIRROR */
/* submit open events */
if (ctx->file) {
if (logger_open(content_file_log, ctx->file) == -1)
goto errout;
}
if (ctx->pcap) {
if (logger_open(content_pcap_log, ctx->pcap) == -1)
goto errout;
}
#ifndef WITHOUT_MIRROR
if (ctx->mirror) {
if (logger_open(content_mirror_log, ctx->mirror) == -1)
goto errout;
}
#endif /* !WITHOUT_MIRROR */
if (srchost_clean)
free(srchost_clean);
if (dsthost_clean)
free(dsthost_clean);
return 0;
errout:
if (srchost_clean)
free(srchost_clean);
if (dsthost_clean)
free(dsthost_clean);
if (ctx->file)
free(ctx->file);
if (ctx->pcap) {
free(ctx->pcap);
}
if (ctx->mirror) {
free(ctx->mirror);
}
memset(ctx, 0, sizeof(log_content_ctx_t));
return -1;
}
/*
* On failure, lb is not freed.
*/
int
log_content_submit(log_content_ctx_t *ctx, logbuf_t *lb, int is_request)
{
unsigned long prepflags = 0;
logbuf_t *lbpcap, *lbmirror;
if (is_request)
prepflags |= PREPFLAG_REQUEST;
lb = logbuf_make_contiguous(lb);
if (!lb)
return -1;
lbpcap = lbmirror = lb;
if (content_file_log) {
if (content_pcap_log) {
lbpcap = logbuf_new_deepcopy(lb, 1);
if (!lbpcap)
goto errout;
}
#ifndef WITHOUT_MIRROR
if (content_mirror_log) {
lbmirror = logbuf_new_deepcopy(lb, 1);
if (!lbmirror)
goto errout;
}
} else if (content_pcap_log && content_mirror_log) {
lbmirror = logbuf_new_deepcopy(lb, 1);
if (!lbmirror)
goto errout;
#endif /* !WITHOUT_MIRROR */
}
if (content_pcap_log) {
if (logger_submit(content_pcap_log, ctx->pcap,
prepflags, lbpcap) == -1) {
goto errout;
}
lbpcap = NULL;
}
#ifndef WITHOUT_MIRROR
if (content_mirror_log) {
if (logger_submit(content_mirror_log, ctx->mirror,
prepflags, lbmirror) == -1) {
goto errout;
}
lbmirror = NULL;
}
#endif /* !WITHOUT_MIRROR */
if (content_file_log) {
if (logger_submit(content_file_log, ctx->file,
prepflags, lb) == -1) {
return -1;
}
}
return 0;
errout:
if (lbpcap && lbpcap != lb)
logbuf_free(lbpcap);
if (lbmirror && lbmirror != lb)
logbuf_free(lbmirror);
return -1;
}
int
log_content_close(log_content_ctx_t *ctx, int by_requestor)
{
unsigned long prepflags = PREPFLAG_EOF;
unsigned long ctl;
if (by_requestor) {
prepflags |= PREPFLAG_REQUEST;
ctl = LBFLAG_IS_REQ;
} else {
ctl = LBFLAG_IS_RESP;
}
/* We call submit an empty log buffer in order to give the content log
* a chance to insert an EOF footer to be logged before actually
* closing the file. The logger_close() call will actually close the
* log. Some logs prefer to use the close callback for logging the
* close event to the log. */
if (content_file_log && ctx->file) {
if (logger_submit(content_file_log, ctx->file,
prepflags, NULL) == -1) {
return -1;
}
if (logger_close(content_file_log, ctx->file, ctl) == -1) {
return -1;
}
ctx->file = NULL;
}
if (content_pcap_log && ctx->pcap) {
if (logger_submit(content_pcap_log, ctx->pcap,
prepflags, NULL) == -1) {
return -1;
}
if (logger_close(content_pcap_log, ctx->pcap, ctl) == -1) {
return -1;
}
ctx->pcap = NULL;
}
#ifndef WITHOUT_MIRROR
if (content_mirror_log && ctx->mirror) {
if (logger_submit(content_mirror_log, ctx->mirror,
prepflags, NULL) == -1) {
return -1;
}
if (logger_close(content_mirror_log, ctx->mirror, ctl) == -1) {
return -1;
}
ctx->mirror = NULL;
}
#endif /* !WITHOUT_MIRROR */
return 0;
}
/*
* Log-type specific code.
*
* The init/fini functions are executed globally in the main thread.
* Callback functions are executed in the logger thread.
*/
static int
log_content_file_dir_opencb(void *fh)
{
log_content_file_ctx_t *ctx = fh;
if ((ctx->u.dir.fd = privsep_client_openfile(content_file_clisock,
ctx->u.dir.filename,
0)) == -1) {
log_err_printf("Opening logdir file '%s' failed: %s (%i)\n",
ctx->u.dir.filename,
strerror(errno), errno);
return -1;
}
return 0;
}
static void
log_content_file_dir_closecb(void *fh, UNUSED unsigned long ctl)
{
log_content_file_ctx_t *ctx = fh;
if (ctx->u.dir.filename)
free(ctx->u.dir.filename);
if (ctx->u.dir.fd != 1)
close(ctx->u.dir.fd);
free(ctx);
}
static ssize_t
log_content_file_dir_writecb(void *fh, UNUSED unsigned long ctl,
const void *buf, size_t sz)
{
log_content_file_ctx_t *ctx = fh;
if (write(ctx->u.dir.fd, buf, sz) == -1) {
log_err_printf("Warning: Failed to write to content log: %s\n",
strerror(errno));
return -1;
}
return sz;
}
static int
log_content_file_spec_opencb(void *fh)
{
log_content_file_ctx_t *ctx = fh;
if ((ctx->u.spec.fd = privsep_client_openfile(content_file_clisock,
ctx->u.spec.filename,
1)) == -1) {
log_err_printf("Opening logspec file '%s' failed: %s (%i)\n",
ctx->u.spec.filename, strerror(errno), errno);
return -1;
}
return 0;
}
static void
log_content_file_spec_closecb(void *fh, UNUSED unsigned long ctl)
{
log_content_file_ctx_t *ctx = fh;
if (ctx->u.spec.filename)
free(ctx->u.spec.filename);
if (ctx->u.spec.fd != -1)
close(ctx->u.spec.fd);
free(ctx);
}