-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
settings.c
1009 lines (882 loc) · 26.8 KB
/
settings.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
/**
* settings.c -- goaccess configuration
* ______ ___
* / ____/___ / | _____________ __________
* / / __/ __ \/ /| |/ ___/ ___/ _ \/ ___/ ___/
* / /_/ / /_/ / ___ / /__/ /__/ __(__ |__ )
* \____/\____/_/ |_\___/\___/\___/____/____/
*
* The MIT License (MIT)
* Copyright (c) 2009-2024 Gerardo Orellana <hello @ goaccess.io>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include "settings.h"
#include "error.h"
#include "gkhash.h"
#include "labels.h"
#include "pdjson.h"
#include "util.h"
#include "xmalloc.h"
static char **nargv;
static int nargc = 0;
/* *INDENT-OFF* */
static const GEnum LOGTYPE[] = {
{"COMBINED" , COMBINED} ,
{"VCOMBINED" , VCOMBINED} ,
{"COMMON" , COMMON} ,
{"VCOMMON" , VCOMMON} ,
{"W3C" , W3C} ,
{"CLOUDFRONT" , CLOUDFRONT} ,
{"CLOUDSTORAGE" , CLOUDSTORAGE} ,
{"AWSELB" , AWSELB} ,
{"SQUID" , SQUID} ,
{"AWSS3" , AWSS3} ,
{"CADDY" , CADDY} ,
{"AWSALB" , AWSALB} ,
{"TRAEFIKCLF" , TRAEFIKCLF} ,
};
static const GPreConfLog logs = {
"%h %^[%d:%t %^] \"%r\" %s %b \"%R\" \"%u\"", /* NCSA */
"%v:%^ %h %^[%d:%t %^] \"%r\" %s %b \"%R\" \"%u\"", /* NCSA + VHost */
"%h %^[%d:%t %^] \"%r\" %s %b", /* CLF */
"%v:%^ %h %^[%d:%t %^] \"%r\" %s %b", /* CLF+VHost */
"%d %t %^ %m %U %q %^ %^ %h %u %R %s %^ %^ %L", /* W3C */
"%d\\t%t\\t%^\\t%b\\t%h\\t%m\\t%v\\t%U\\t%s\\t%R\\t%u\\t%q\\t%^\\t%C\\t%^\\t%^\\t%^\\t%^\\t%T\\t%^\\t%K\\t%k\\t%^\\t%H\\t%^", /* CloudFront */
"\"%x\",\"%h\",%^,%^,\"%m\",\"%U\",\"%s\",%^,\"%b\",\"%D\",%^,\"%R\",\"%u\"", /* Cloud Storage */
"%^ %dT%t.%^ %^ %h:%^ %^ %^ %T %^ %s %^ %^ %b \"%r\" \"%u\" %k %K %^ \"%^\" \"%v\"", /* AWS Elastic Load Balancing */
"%^ %^ %^ %v %^: %x.%^ %~%L %h %^/%s %b %m %U", /* Squid Native */
"%^ %v [%d:%t %^] %h %^\"%r\" %s %^ %b %^ %L %^ \"%R\" \"%u\"", /* Amazon S3 */
/* Caddy JSON */
"{ \"ts\": \"%x.%^\", \"request\": { \"client_ip\": \"%h\", \"proto\":"
"\"%H\", \"method\": \"%m\", \"host\": \"%v\", \"uri\": \"%U\", \"headers\": {"
"\"User-Agent\": [\"%u\"], \"Referer\": [\"%R\"] }, \"tls\": { \"cipher_suite\":"
"\"%k\", \"proto\": \"%K\" } }, \"duration\": \"%T\", \"size\": \"%b\","
"\"status\": \"%s\", \"resp_headers\": { \"Content-Type\": [\"%M\"] } }",
"%^ %dT%t.%^ %v %h:%^ %^ %^ %T %^ %s %^ %^ %b \"%r\" \"%u\" %k %K %^", /* Amazon ALB */
"%h - %e [%d:%t %^] \"%r\" %s %b \"%R\" \"%u\" %^ \"%v\" \"%U\" %Lms" /* Traefik's CLF flavor with header */
};
static const GPreConfTime times = {
"%H:%M:%S",
"%f", /* Cloud Storage (usec) */
"%s", /* Squid (sec) */
};
static const GPreConfDate dates = {
"%d/%b/%Y", /* Apache */
"%Y-%m-%d", /* W3C */
"%f", /* Cloud Storage (usec) */
"%s", /* Squid (sec) */
};
/* *INDENT-ON* */
/* Ignore the following options */
static const char *const ignore_cmd_opts[] = {
"help",
"storage",
"version",
};
/* Determine if the given command line option needs to be ignored.
*
* If needs to be ignored, 1 is returned.
* If not within the list of ignored command line options, 0 is returned. */
static int
in_ignore_cmd_opts (const char *val) {
size_t i;
for (i = 0; i < ARRAY_SIZE (ignore_cmd_opts); i++) {
if (strstr (val, ignore_cmd_opts[i]) != NULL)
return 1;
}
return 0;
}
/* Get the location of the configuration file.
*
* By default, it attempts to read it from the user supplied path, else it will
* try to open the global config file path (sysconfdir) or from the HOME
* environment variable (~/.goaccessrc).
*
* On success, the path to the configuration file is returned. */
char *
get_config_file_path (void) {
char *upath = NULL, *gpath = NULL, *rpath = NULL;
/* determine which config file to open, default or custom */
if (conf.iconfigfile != NULL) {
rpath = realpath (conf.iconfigfile, NULL);
if (rpath == NULL)
FATAL ("Unable to open the specified config file. %s", strerror (errno));
return rpath;
}
/* first attempt to use the user's config file, e.g., ~/.goaccessrc */
upath = get_user_config ();
/* failure, e.g. if the file does not exist */
if ((rpath = realpath (upath, NULL)) != NULL) {
free (upath);
return rpath;
}
LOG_DEBUG (("Unable to find user's config file %s %s", upath, strerror (errno)));
free (upath);
/* otherwise, fallback to global config file, e.g.,%sysconfdir%/goaccess.conf */
gpath = get_global_config ();
if ((rpath = realpath (gpath, NULL)) != NULL && conf.load_global_config) {
free (gpath);
return rpath;
}
LOG_DEBUG (("Unable to find global config file %s %s", gpath, strerror (errno)));
free (gpath);
return NULL;
}
/* Use predefined static files when no config file is used. Note that
* the order in which are listed is from the most to the least common
* (most cases). */
void
set_default_static_files (void) {
size_t i;
const char *const exts[] = {
".css",
".js ",
".jpg",
".png",
".gif",
".ico",
".jpeg",
".pdf",
".txt",
".csv",
".mpeg",
".mpg",
".swf",
".woff",
".woff2",
".xls",
".xlsx",
".doc ",
".docx",
".ppt ",
".pptx",
".zip",
".mp3",
".mp4",
".exe",
".iso ",
".gz ",
".rar ",
".svg ",
".bmp ",
".tar ",
".tgz ",
".tiff",
".tif ",
".ttf ",
".flv ",
".avi",
};
if (conf.static_file_idx > 0)
return;
/* If a configuration file is used and, if no static-file extensions are provided, do not set the default static-file extensions. */
if (conf.iconfigfile != NULL && conf.static_file_idx == 0) {
return;
}
for (i = 0; i < ARRAY_SIZE (exts); i++) {
if (conf.static_file_max_len < strlen (exts[i]))
conf.static_file_max_len = strlen (exts[i]);
conf.static_files[conf.static_file_idx++] = exts[i];
}
}
/* Clean malloc'd log/date/time escaped formats. */
void
free_formats (void) {
free (conf.log_format);
free (conf.date_format);
free (conf.date_num_format);
free (conf.spec_date_time_format);
free (conf.spec_date_time_num_format);
free (conf.time_format);
free (conf.date_time_format);
}
/* Clean malloc'd command line arguments. */
void
free_cmd_args (void) {
int i;
if (nargc == 0)
return;
for (i = 0; i < nargc; i++)
free (nargv[i]);
free (nargv);
free (conf.iconfigfile);
}
/* Append extra value to argv */
static void
append_to_argv (int *argc, char ***argv, char *val) {
char **_argv = xrealloc (*argv, (*argc + 2) * sizeof (*_argv));
_argv[*argc] = val;
_argv[*argc + 1] = (char *) '\0';
(*argc)++;
*argv = _argv;
}
/* Parses the configuration file to feed getopt_long.
*
* On error, ENOENT error code is returned.
* On success, 0 is returned and config file enabled options are appended to
* argv. */
int
parse_conf_file (int *argc, char ***argv) {
char line[MAX_LINE_CONF + 1];
char *path = NULL, *val, *opt, *p;
FILE *file;
int i, n = 0;
size_t idx;
/* assumes program name is on argv[0], though, it is not guaranteed */
append_to_argv (&nargc, &nargv, xstrdup (*argv[0] ? : PACKAGE_NAME));
/* determine which config file to open, default or custom */
path = get_config_file_path ();
if (path == NULL)
return ENOENT;
/* could not open conf file, if so prompt conf dialog */
if ((file = fopen (path, "r")) == NULL) {
free (path);
return ENOENT;
}
while (fgets (line, sizeof line, file) != NULL) {
while (line[0] == ' ' || line[0] == '\t')
memmove (line, line + 1, strlen (line));
n++;
if (line[0] == '\n' || line[0] == '\r' || line[0] == '#')
continue;
/* key */
idx = strcspn (line, " \t");
if (strlen (line) == idx)
FATAL ("Malformed config key at line: %d", n);
line[idx] = '\0';
/* make old config options backwards compatible by
* substituting underscores with dashes */
while ((p = strpbrk (line, "_")) != NULL)
*p = '-';
/* Ignore the following options when reading the config file */
if (in_ignore_cmd_opts (line))
continue;
/* value */
val = line + (idx + 1);
idx = strspn (val, " \t");
if (strlen (line) == idx)
FATAL ("Malformed config value at line: %d", n);
val = val + idx;
val = trim_str (val);
if (strcmp ("false", val) == 0)
continue;
/* set it as command line options */
opt = xmalloc (snprintf (NULL, 0, "--%s", line) + 1);
sprintf (opt, "--%s", line);
append_to_argv (&nargc, &nargv, opt);
if (strcmp ("true", val) != 0)
append_to_argv (&nargc, &nargv, xstrdup (val));
}
/* give priority to command line arguments */
for (i = 1; i < *argc; i++)
append_to_argv (&nargc, &nargv, xstrdup ((char *) (*argv)[i]));
*argc = nargc;
*argv = (char **) nargv;
fclose (file);
if (conf.iconfigfile == NULL)
conf.iconfigfile = xstrdup (path);
free (path);
return 0;
}
/* Get the enumerated log format given its equivalent format string.
* The case in the format string does not matter.
*
* On error, -1 is returned.
* On success, the enumerated format is returned. */
static int
get_log_format_item_enum (const char *str) {
int ret;
char *upstr;
ret = str2enum (LOGTYPE, ARRAY_SIZE (LOGTYPE), str);
if (ret >= 0)
return ret;
/* uppercase the input string and try again */
upstr = strtoupper (xstrdup (str));
ret = str2enum (LOGTYPE, ARRAY_SIZE (LOGTYPE), upstr);
free (upstr);
return ret;
}
/* Determine the selected log format from the config file or command line
* option.
*
* On error, -1 is returned.
* On success, the index of the matched item is returned. */
size_t
get_selected_format_idx (void) {
if (conf.log_format == NULL)
return (size_t) -1;
if (strcmp (conf.log_format, logs.common) == 0)
return COMMON;
else if (strcmp (conf.log_format, logs.vcommon) == 0)
return VCOMMON;
else if (strcmp (conf.log_format, logs.combined) == 0)
return COMBINED;
else if (strcmp (conf.log_format, logs.vcombined) == 0)
return VCOMBINED;
else if (strcmp (conf.log_format, logs.w3c) == 0)
return W3C;
else if (strcmp (conf.log_format, logs.cloudfront) == 0)
return CLOUDFRONT;
else if (strcmp (conf.log_format, logs.cloudstorage) == 0)
return CLOUDSTORAGE;
else if (strcmp (conf.log_format, logs.awselb) == 0)
return AWSELB;
else if (strcmp (conf.log_format, logs.squid) == 0)
return SQUID;
else if (strcmp (conf.log_format, logs.awss3) == 0)
return AWSS3;
else if (strcmp (conf.log_format, logs.caddy) == 0)
return CADDY;
else if (strcmp (conf.log_format, logs.awsalb) == 0)
return AWSALB;
else if (strcmp (conf.log_format, logs.traefikclf) == 0)
return TRAEFIKCLF;
else
return (size_t) -1;
}
/* Determine the selected log format from the config file or command line
* option.
*
* On error, NULL is returned.
* On success, an allocated string containing the log format is returned. */
char *
get_selected_format_str (size_t idx) {
char *fmt = NULL;
switch (idx) {
case COMBINED:
fmt = alloc_string (logs.combined);
break;
case VCOMBINED:
fmt = alloc_string (logs.vcombined);
break;
case COMMON:
fmt = alloc_string (logs.common);
break;
case VCOMMON:
fmt = alloc_string (logs.vcommon);
break;
case W3C:
fmt = alloc_string (logs.w3c);
break;
case CLOUDFRONT:
fmt = alloc_string (logs.cloudfront);
break;
case CLOUDSTORAGE:
fmt = alloc_string (logs.cloudstorage);
break;
case AWSELB:
fmt = alloc_string (logs.awselb);
break;
case SQUID:
fmt = alloc_string (logs.squid);
break;
case AWSS3:
fmt = alloc_string (logs.awss3);
break;
case CADDY:
fmt = alloc_string (logs.caddy);
break;
case AWSALB:
fmt = alloc_string (logs.awsalb);
break;
case TRAEFIKCLF:
fmt = alloc_string (logs.traefikclf);
break;
}
return fmt;
}
/* Determine the selected date format from the config file or command line
* option.
*
* On error, NULL is returned.
* On success, an allocated string containing the date format is returned. */
char *
get_selected_date_str (size_t idx) {
char *fmt = NULL;
switch (idx) {
case COMMON:
case VCOMMON:
case COMBINED:
case VCOMBINED:
case AWSS3:
case TRAEFIKCLF:
fmt = alloc_string (dates.apache);
break;
case AWSELB:
case AWSALB:
case CLOUDFRONT:
case W3C:
fmt = alloc_string (dates.w3c);
break;
case CLOUDSTORAGE:
fmt = alloc_string (dates.usec);
break;
case SQUID:
case CADDY:
fmt = alloc_string (dates.sec);
break;
}
return fmt;
}
/* Determine the selected time format from the config file or command line
* option.
*
* On error, NULL is returned.
* On success, an allocated string containing the time format is returned. */
char *
get_selected_time_str (size_t idx) {
char *fmt = NULL;
switch (idx) {
case AWSELB:
case AWSALB:
case CLOUDFRONT:
case COMBINED:
case COMMON:
case VCOMBINED:
case VCOMMON:
case W3C:
case AWSS3:
case TRAEFIKCLF:
fmt = alloc_string (times.fmt24);
break;
case CLOUDSTORAGE:
fmt = alloc_string (times.usec);
break;
case SQUID:
case CADDY:
fmt = alloc_string (times.sec);
break;
}
return fmt;
}
/* Determine if the log/date/time were set, otherwise exit the program
* execution. */
const char *
verify_formats (void) {
if (conf.time_format == NULL || *conf.time_format == '\0')
return ERR_FORMAT_NO_TIME_FMT;
if (conf.date_format == NULL || *conf.date_format == '\0')
return ERR_FORMAT_NO_DATE_FMT;
if (conf.log_format == NULL || *conf.log_format == '\0')
return ERR_FORMAT_NO_LOG_FMT;
return NULL;
}
/* A wrapper function to concat the given specificity to the date
* format. */
static char *
append_spec_date_format (const char *date_format, const char *spec_format) {
char *s = xmalloc (snprintf (NULL, 0, "%s%s", date_format, spec_format) + 1);
sprintf (s, "%s%s", date_format, spec_format);
return s;
}
/* Iterate over the given format and clean unwanted chars and keep all
* date/time specifiers such as %b%Y%d%M%S.
*
* On error NULL is returned.
* On success, a clean format containing only date/time specifiers is
* returned. */
static char *
clean_date_time_format (const char *format) {
char *fmt = NULL, *pr = NULL, *pw = NULL;
int special = 0;
if (format == NULL || *format == '\0')
return NULL;
fmt = xstrdup (format);
pr = fmt;
pw = fmt;
while (*pr) {
*pw = *pr++;
if (*pw == '%' || special) {
special = !special;
pw++;
}
}
*pw = '\0';
return fmt;
}
/* Determine if the given specifier character is an abbreviated type
* of date.
*
* If it is, 1 is returned, otherwise, 0 is returned. */
static int
is_date_abbreviated (const char *fdate) {
if (strpbrk (fdate, "cDF"))
return 1;
return 0;
}
/* A wrapper to extract time specifiers from a time format.
*
* On error NULL is returned.
* On success, a clean format containing only time specifiers is
* returned. */
static char *
set_format_time (void) {
char *ftime = NULL;
if (has_timestamp (conf.date_format) || !strcmp ("%T", conf.time_format))
ftime = xstrdup ("%H%M%S");
else
ftime = clean_date_time_format (conf.time_format);
return ftime;
}
/* A wrapper to extract date specifiers from a date format.
*
* On error NULL is returned.
* On success, a clean format containing only date specifiers is
* returned. */
static char *
set_format_date (void) {
char *fdate = NULL;
if (has_timestamp (conf.date_format))
fdate = xstrdup ("%Y%m%d");
else
fdate = clean_date_time_format (conf.date_format);
return fdate;
}
/* Once we have a numeric date format, we attempt to read the time
* format and construct a date_time numeric specificity format (if any
* specificity is given). The result may look like Ymd[HM].
*
* On success, the numeric date time specificity format is set. */
static void
set_spec_date_time_num_format (void) {
char *buf = NULL, *tf = set_format_time ();
const char *df = conf.date_num_format;
if (!df || !tf) {
free (tf);
return;
}
if (conf.date_spec_hr == 1 && strchr (tf, 'H'))
buf = append_spec_date_format (df, "%H");
else if (conf.date_spec_hr == 2 && strchr (tf, 'M'))
buf = append_spec_date_format (df, "%H%M");
else
buf = xstrdup (df);
conf.spec_date_time_num_format = buf;
free (tf);
}
/* Set a human-readable specificity date and time format.
*
* On success, the human-readable date time specificity format is set. */
static void
set_spec_date_time_format (void) {
char *buf = NULL;
const char *fmt = conf.spec_date_time_num_format;
int buflen = 0, flen = 0;
if (!fmt)
return;
flen = (strlen (fmt) * 2) + 1;
buf = xcalloc (flen, sizeof (char));
if (strchr (fmt, 'd'))
buflen += snprintf (buf + buflen, flen - buflen, "%%d/");
if (strchr (fmt, 'm'))
buflen += snprintf (buf + buflen, flen - buflen, "%%b/");
if (strchr (fmt, 'Y'))
buflen += snprintf (buf + buflen, flen - buflen, "%%Y");
if (strchr (fmt, 'H'))
buflen += snprintf (buf + buflen, flen - buflen, ":%%H");
if (strchr (fmt, 'M'))
buflen += snprintf (buf + buflen, flen - buflen, ":%%M");
conf.spec_date_time_format = buf;
}
/* Normalize the date format from the date format given by the user to
* Ymd so it can be sorted out properly afterwards.
*
* On error or unable to determine the format, 1 is returned.
* On success, the numeric date format as Ymd is set and 0 is
* returned. */
static int
set_date_num_format (void) {
char *fdate = NULL, *buf = NULL;
int buflen = 0, flen = 0;
fdate = set_format_date ();
if (!fdate)
return 1;
if (is_date_abbreviated (fdate)) {
free (fdate);
conf.date_num_format = xstrdup ("%Y%m%d");
return 0;
}
flen = strlen (fdate) + 1;
flen = MAX (MIN_DATENUM_FMT_LEN, flen); /* at least %Y%m%d + 1 */
buf = xcalloc (flen, sizeof (char));
/* always add a %Y */
buflen += snprintf (buf + buflen, flen - buflen, "%%Y");
if (strpbrk (fdate, "hbmBf*"))
buflen += snprintf (buf + buflen, flen - buflen, "%%m");
if (strpbrk (fdate, "def*"))
buflen += snprintf (buf + buflen, flen - buflen, "%%d");
conf.date_num_format = buf;
free (fdate);
return buflen == 0 ? 1 : 0;
}
/* Determine if we have a valid JSON format */
int
is_json_log_format (const char *fmt) {
enum json_type t = JSON_ERROR;
json_stream json;
json_open_string (&json, fmt);
/* ensure we use strict JSON when determining if we're using a JSON format */
json_set_streaming (&json, false);
do {
t = json_next (&json);
switch (t) {
case JSON_ERROR:
json_close (&json);
return 0;
default:
break;
}
} while (t != JSON_DONE && t != JSON_ERROR);
json_close (&json);
return 1;
}
/* Delete the given key from a nested object key or empty the key. */
static void
dec_json_key (char *key, int has_dot) {
if (!key || has_dot < 0)
return;
/* Designed to iterate has_dot + 1 times */
/* if has_dot is 2, the loop will run three times (when i is 0, 1, and 2). Each
* iteration of the loop removes one dot from the end of the key string.
* Therefore, if has_dot is 2, it will remove up to three dots from the end of
* the key string. */
for (int i = 0; i <= has_dot; i++) {
char *last_dot = strrchr (key, '.');
if (last_dot)
*last_dot = '\0';
else {
*key = '\0';
return;
}
}
}
/* Given a JSON string, parse it and call the given function pointer after each
* value.
*
* On error, a non-zero value is returned.
* On success, 0 is returned. */
int
parse_json_string (void *ptr_data, const char *str, int (*cb) (void *, char *, char *)) {
char *key = NULL, *val = NULL;
enum json_type ctx = JSON_ERROR, t = JSON_ERROR;
int ret = 0, has_dot = 0;
size_t len = 0, level = 0;
json_stream json;
json_open_string (&json, str);
do {
t = json_next (&json);
switch (t) {
case JSON_OBJECT:
if (key == NULL)
key = xstrdup ("");
break;
case JSON_ARRAY_END:
case JSON_OBJECT_END:
dec_json_key (key, 0);
break;
case JSON_TRUE:
val = xstrdup ("true");
if (!key || (ret = (*cb) (ptr_data, key, val)))
goto clean;
ctx = json_get_context (&json, &level);
if (ctx != JSON_ARRAY)
dec_json_key (key, 0);
free (val);
val = NULL;
break;
case JSON_FALSE:
val = xstrdup ("false");
if (!key || (ret = (*cb) (ptr_data, key, val)))
goto clean;
ctx = json_get_context (&json, &level);
if (ctx != JSON_ARRAY)
dec_json_key (key, 0);
free (val);
val = NULL;
break;
case JSON_NULL:
val = xstrdup ("-");
if (!key || (ret = (*cb) (ptr_data, key, val)))
goto clean;
ctx = json_get_context (&json, &level);
if (ctx != JSON_ARRAY)
dec_json_key (key, 0);
free (val);
val = NULL;
break;
case JSON_STRING:
case JSON_NUMBER:
ctx = json_get_context (&json, &level);
/* key */
if ((level % 2) != 0 && ctx != JSON_ARRAY) {
/* check if key contains a dot, to account for it on dec_json_key */
has_dot = count_matches (json_get_string (&json, &len), '.');
if (strlen (key) != 0)
append_str (&key, ".");
append_str (&key, json_get_string (&json, &len));
}
/* val */
else if (key && (ctx == JSON_ARRAY || ((level % 2) == 0 && ctx != JSON_ARRAY))) {
val = xstrdup (json_get_string (&json, &len));
if (!key || (ret = (*cb) (ptr_data, key, val)))
goto clean;
if (ctx != JSON_ARRAY)
dec_json_key (key, has_dot);
free (val);
val = NULL;
}
break;
case JSON_ERROR:
ret = -1;
goto clean;
break;
default:
break;
}
} while (t != JSON_DONE && t != JSON_ERROR);
clean:
free (val);
free (key);
json_close (&json);
return ret;
}
/* If specificity is supplied, then determine which value we need to
* append to the date format. */
void
set_spec_date_format (void) {
if (verify_formats ())
return;
if (conf.is_json_log_format) {
if (parse_json_string (NULL, conf.log_format, ht_insert_json_logfmt) == -1)
FATAL ("Invalid JSON log format. Verify the syntax.");
}
if (conf.date_num_format)
free (conf.date_num_format);
if (conf.spec_date_time_format)
free (conf.spec_date_time_format);
if (conf.spec_date_time_num_format)
free (conf.spec_date_time_num_format);
if (set_date_num_format () == 0) {
set_spec_date_time_num_format ();
set_spec_date_time_format ();
}
}
/* Attempt to set the date format given a command line option
* argument. The supplied optarg can be either an actual format string
* or the enumerated value such as VCOMBINED */
void
set_date_format_str (const char *oarg) {
char *fmt = NULL;
int type = get_log_format_item_enum (oarg);
/* free date format if it was previously set by set_log_format_str() */
if (conf.date_format)
free (conf.date_format);
/* type not found, use whatever was given by the user then */
if (type == -1) {
conf.date_format = unescape_str (oarg);
return;
}
/* attempt to get the format string by the enum value */
if ((fmt = get_selected_date_str (type)) == NULL) {
LOG_DEBUG (("Unable to set date format from enum: %s\n", oarg));
return;
}
conf.date_format = fmt;
}
/* Attempt to set the time format given a command line option
* argument. The supplied optarg can be either an actual format string
* or the enumerated value such as VCOMBINED */
void
set_time_format_str (const char *oarg) {
char *fmt = NULL;
int type = get_log_format_item_enum (oarg);
/* free time format if it was previously set by set_log_format_str() */
if (conf.time_format)
free (conf.time_format);
/* type not found, use whatever was given by the user then */
if (type == -1) {
conf.time_format = unescape_str (oarg);
return;
}
/* attempt to get the format string by the enum value */
if ((fmt = get_selected_time_str (type)) == NULL) {
LOG_DEBUG (("Unable to set time format from enum: %s\n", oarg));
return;
}
conf.time_format = fmt;
}
/* Determine if some global flags were set through log-format. */
static void
contains_specifier (void) {
conf.serve_usecs = conf.bandwidth = 0; /* flag */
if (!conf.log_format)
return;
if (strstr (conf.log_format, "%b"))
conf.bandwidth = 1; /* flag */
if (strstr (conf.log_format, "%D"))
conf.serve_usecs = 1; /* flag */
if (strstr (conf.log_format, "%T"))
conf.serve_usecs = 1; /* flag */
if (strstr (conf.log_format, "%L"))
conf.serve_usecs = 1; /* flag */
}
/* Attempt to set the log format given a command line option argument.
* The supplied optarg can be either an actual format string or the
* enumerated value such as VCOMBINED */
void
set_log_format_str (const char *oarg) {
char *fmt = NULL;
int type = get_log_format_item_enum (oarg);
/* free log format if it was previously set */
if (conf.log_format)
free (conf.log_format);
if (type == -1 && is_json_log_format (oarg)) {
conf.is_json_log_format = 1;
conf.log_format = unescape_str (oarg);
contains_specifier (); /* set flag */
return;
}
/* type not found, use whatever was given by the user then */
if (type == -1) {
conf.log_format = unescape_str (oarg);
contains_specifier (); /* set flag */
return;
}
/* attempt to get the format string by the enum value */
if ((fmt = get_selected_format_str (type)) == NULL) {
LOG_DEBUG (("Unable to set log format from enum: %s\n", oarg));
return;
}
if (is_json_log_format (fmt))
conf.is_json_log_format = 1;