forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goaccess.c
1022 lines (887 loc) · 23.6 KB
/
goaccess.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
/**
* goaccess.c -- main log analyzer
* Copyright (C) 2009-2014 by Gerardo Orellana <[email protected]>
* GoAccess - An Ncurses apache weblog analyzer & interactive viewer
*
* 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.
*
* A copy of the GNU General Public License is attached to this
* source distribution for its full text.
*
* Visit http://goaccess.prosoftcorp.com for new releases.
*/
#define _LARGEFILE_SOURCE
#define _LARGEFILE64_SOURCE
#define _FILE_OFFSET_BITS 64
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <locale.h>
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <pthread.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
#ifdef HAVE_LIBTOKYOCABINET
#include "tcabdb.h"
#else
#include "glibht.h"
#endif
#ifdef HAVE_LIBGEOIP
#include "geolocation.h"
#endif
#include "csv.h"
#include "error.h"
#include "gdashboard.h"
#include "gdns.h"
#include "json.h"
#include "options.h"
#include "output.h"
#include "util.h"
static WINDOW *header_win, *main_win;
GConf conf = { 0 };
int active_gdns = 0;
static GDash *dash;
static GHolder *holder;
static GLog *logger;
GSpinner *parsing_spinner;
/* *INDENT-OFF* */
static GScroll gscroll = {
{
{0, 0}, /* visitors {scroll, offset} */
{0, 0}, /* requests {scroll, offset} */
{0, 0}, /* req static {scroll, offset} */
{0, 0}, /* not found {scroll, offset} */
{0, 0}, /* hosts {scroll, offset} */
{0, 0}, /* os {scroll, offset} */
{0, 0}, /* browsers {scroll, offset} */
{0, 0}, /* visit times {scroll, offset} */
{0, 0}, /* referrers {scroll, offset} */
{0, 0}, /* ref sites {scroll, offset} */
{0, 0}, /* keywords {scroll, offset} */
#ifdef HAVE_LIBGEOIP
{0, 0}, /* geolocation {scroll, offset} */
#endif
{0, 0}, /* status {scroll, offset} */
},
0, /* current module */
0, /* main dashboard scroll */
0, /* expanded flag */
};
/* *INDENT-ON* */
static void
house_keeping (void)
{
#if defined(TCB_BTREE) || defined(TCB_MEMHASH)
GModule module;
#endif
#ifndef TCB_BTREE
if (conf.list_agents)
free_agent_list ();
#endif
/* REVERSE DNS THREAD */
pthread_mutex_lock (&gdns_thread.mutex);
/* kill dns pthread */
active_gdns = 0;
free_holder (&holder);
gdns_free_queue ();
/* free uniqmap */
#if defined(TCB_BTREE) || defined(TCB_MEMHASH)
for (module = 0; module < TOTAL_MODULES; module++) {
free_db_key (get_storage_metric (module, MTRC_UNIQMAP));
}
#endif
free_storage ();
pthread_mutex_unlock (&gdns_thread.mutex);
/* DASHBOARD */
if (dash && !conf.output_html) {
free_dashboard (dash);
reset_find ();
}
/* GEOLOCATION */
#ifdef HAVE_LIBGEOIP
if (geo_location_data != NULL)
GeoIP_delete (geo_location_data);
#endif
/* LOGGER */
free (logger);
/* CONFIGURATION */
if (conf.debug_log) {
LOG_DEBUG (("Bye.\n"));
dbg_log_close ();
}
free_cmd_args ();
}
/* allocate memory for an instance of holder */
static void
allocate_holder_by_module (GModule module)
{
#if defined(TCB_BTREE) || defined(TCB_MEMHASH)
TCADB *ht = NULL;
#else
GHashTable *ht;
#endif
GRawData *raw_data;
unsigned int ht_size = 0;
/* extract data from the corresponding hash table */
ht = get_storage_metric (module, MTRC_HITS);
ht_size = get_ht_size (ht);
raw_data = parse_raw_data (ht, ht_size, module);
load_holder_data (raw_data, holder + module, module, module_sort[module]);
}
/* allocate memory for an instance of holder */
static void
allocate_holder (void)
{
#if defined(TCB_BTREE) || defined(TCB_MEMHASH)
TCADB *ht = NULL;
#else
GHashTable *ht;
#endif
GModule module;
GRawData *raw_data;
unsigned int ht_size = 0;
holder = new_gholder (TOTAL_MODULES);
for (module = 0; module < TOTAL_MODULES; module++) {
/* extract data from the corresponding hits hash table */
ht = get_storage_metric (module, MTRC_HITS);
ht_size = get_ht_size (ht);
raw_data = parse_raw_data (ht, ht_size, module);
load_holder_data (raw_data, holder + module, module, module_sort[module]);
}
}
/* allocate memory for an instance of dashboard */
static void
allocate_data (void)
{
GModule module;
int col_data = get_num_collapsed_data_rows ();
int size = 0;
dash = new_gdash ();
for (module = 0; module < TOTAL_MODULES; module++) {
if (ignore_panel (module))
continue;
switch (module) {
case VISITORS:
dash->module[module].head =
(!conf.ignore_crawlers ? VISIT_HEAD INCLUDE_BOTS : VISIT_HEAD);
break;
case REQUESTS:
dash->module[module].head = REQUE_HEAD;
break;
case REQUESTS_STATIC:
dash->module[module].head = STATI_HEAD;
break;
case NOT_FOUND:
dash->module[module].head = FOUND_HEAD;
break;
case HOSTS:
dash->module[module].head = HOSTS_HEAD;
break;
case OS:
dash->module[module].head = OPERA_HEAD;
break;
case BROWSERS:
dash->module[module].head = BROWS_HEAD;
break;
case VISIT_TIMES:
dash->module[module].head = VTIME_HEAD;
break;
case REFERRERS:
dash->module[module].head = REFER_HEAD;
break;
case REFERRING_SITES:
dash->module[module].head = SITES_HEAD;
break;
case KEYPHRASES:
dash->module[module].head = KEYPH_HEAD;
break;
#ifdef HAVE_LIBGEOIP
case GEO_LOCATION:
dash->module[module].head = GEOLO_HEAD;
break;
#endif
case STATUS_CODES:
dash->module[module].head = CODES_HEAD;
break;
}
size = holder[module].idx;
if (gscroll.expanded && module == gscroll.current) {
size = size > MAX_CHOICES ? MAX_CHOICES : holder[module].idx;
} else {
size = holder[module].idx > col_data ? col_data : holder[module].idx;
}
dash->module[module].alloc_data = size; /* data allocated */
dash->module[module].ht_size = holder[module].ht_size; /* hash table size */
dash->module[module].idx_data = 0;
dash->module[module].pos_y = 0;
if (gscroll.expanded && module == gscroll.current)
dash->module[module].dash_size = DASH_EXPANDED;
else
dash->module[module].dash_size = DASH_COLLAPSED;
dash->total_alloc += dash->module[module].dash_size;
pthread_mutex_lock (&gdns_thread.mutex);
load_data_to_dash (&holder[module], dash, module, &gscroll);
pthread_mutex_unlock (&gdns_thread.mutex);
}
}
/* render all windows */
static void
render_screens (void)
{
int row, col, chg = 0;
getmaxyx (stdscr, row, col);
term_size (main_win);
generate_time ();
chg = logger->process - logger->offset;
draw_header (stdscr, "", "%s", row - 1, 0, col, 0, 0);
wattron (stdscr, COLOR_PAIR (COL_WHITE));
mvaddstr (row - 1, 1, "[F1]Help [O]pen detail view");
mvprintw (row - 1, 30, "%d - %s", chg, asctime (now_tm));
mvaddstr (row - 1, col - 21, "[Q]uit GoAccess");
mvprintw (row - 1, col - 5, "%s", GO_VERSION);
wattroff (stdscr, COLOR_PAIR (COL_WHITE));
refresh ();
/* call general stats header */
display_general (header_win, conf.ifile, logger);
wrefresh (header_win);
/* display active label based on current module */
update_active_module (header_win, gscroll.current);
display_content (main_win, logger, dash, &gscroll);
}
/* collapse the current expanded module */
static void
collapse_current_module (void)
{
if (!gscroll.expanded)
return;
gscroll.expanded = 0;
reset_scroll_offsets (&gscroll);
free_dashboard (dash);
allocate_data ();
render_screens ();
}
static void
disabled_panel_msg (GModule module)
{
const char *lbl = module_to_label (module);
int row, col;
getmaxyx (stdscr, row, col);
draw_header (stdscr, lbl, "'%s' panel is disabled", row - 1, 0, col,
WHITE_RED, 0);
}
static void
set_module_to (GScroll * scrll, GModule module)
{
if (ignore_panel (module)) {
disabled_panel_msg (module);
return;
}
/* reset expanded module */
collapse_current_module ();
scrll->current = module;
render_screens ();
}
static void
scroll_to_first_line (void)
{
if (!gscroll.expanded)
gscroll.dash = 0;
else {
gscroll.module[gscroll.current].scroll = 0;
gscroll.module[gscroll.current].offset = 0;
}
}
static void
scroll_to_last_line (void)
{
int exp_size = get_num_expanded_data_rows ();
int scrll, offset;
if (!gscroll.expanded)
gscroll.dash = dash->total_alloc - real_size_y;
else {
scrll = offset = 0;
scrll = dash->module[gscroll.current].idx_data - 1;
if (scrll >= exp_size && scrll >= offset + exp_size)
offset = scrll < exp_size - 1 ? 0 : scrll - exp_size + 1;
gscroll.module[gscroll.current].scroll = scrll;
gscroll.module[gscroll.current].offset = offset;
}
}
static void
load_ip_agent_list (void)
{
int type_ip = 0;
/* make sure we have a valid IP */
int sel = gscroll.module[gscroll.current].scroll;
GDashData item = dash->module[HOSTS].data[sel];
if (!invalid_ipaddr (item.metrics->data, &type_ip))
load_agent_list (main_win, item.metrics->data);
}
static void
expand_current_module (void)
{
if (gscroll.expanded && gscroll.current == HOSTS) {
load_ip_agent_list ();
return;
}
if (gscroll.expanded)
return;
reset_scroll_offsets (&gscroll);
gscroll.expanded = 1;
free_holder_by_module (&holder, gscroll.current);
free_dashboard (dash);
allocate_holder_by_module (gscroll.current);
allocate_data ();
}
static void
expand_on_mouse_click (void)
{
int ok_mouse;
MEVENT event;
ok_mouse = getmouse (&event);
if (!conf.mouse_support || ok_mouse != OK)
return;
if (event.bstate & BUTTON1_CLICKED) {
/* ignore header/footer clicks */
if (event.y < MAX_HEIGHT_HEADER || event.y == LINES - 1)
return;
if (set_module_from_mouse_event (&gscroll, dash, event.y))
return;
reset_scroll_offsets (&gscroll);
gscroll.expanded = 1;
free_holder_by_module (&holder, gscroll.current);
free_dashboard (dash);
allocate_holder_by_module (gscroll.current);
allocate_data ();
render_screens ();
}
}
static void
scroll_down_expanded_module (void)
{
int exp_size = get_num_expanded_data_rows ();
int *scroll_ptr, *offset_ptr;
scroll_ptr = &gscroll.module[gscroll.current].scroll;
offset_ptr = &gscroll.module[gscroll.current].offset;
if (!gscroll.expanded)
return;
if (*scroll_ptr >= dash->module[gscroll.current].idx_data - 1)
return;
++(*scroll_ptr);
if (*scroll_ptr >= exp_size && *scroll_ptr >= *offset_ptr + exp_size)
++(*offset_ptr);
}
static void
scroll_up_dashboard (void)
{
gscroll.dash--;
}
static void
page_up_module (void)
{
int exp_size = get_num_expanded_data_rows ();
int *scroll_ptr, *offset_ptr;
scroll_ptr = &gscroll.module[gscroll.current].scroll;
offset_ptr = &gscroll.module[gscroll.current].offset;
if (!gscroll.expanded)
return;
/* decrease scroll and offset by exp_size */
*scroll_ptr -= exp_size;
if (*scroll_ptr < 0)
*scroll_ptr = 0;
if (*scroll_ptr < *offset_ptr)
*offset_ptr -= exp_size;
if (*offset_ptr <= 0)
*offset_ptr = 0;
}
static void
page_down_module (void)
{
int exp_size = get_num_expanded_data_rows ();
int *scroll_ptr, *offset_ptr;
scroll_ptr = &gscroll.module[gscroll.current].scroll;
offset_ptr = &gscroll.module[gscroll.current].offset;
if (!gscroll.expanded)
return;
*scroll_ptr += exp_size;
if (*scroll_ptr >= dash->module[gscroll.current].idx_data - 1)
*scroll_ptr = dash->module[gscroll.current].idx_data - 1;
if (*scroll_ptr >= exp_size && *scroll_ptr >= *offset_ptr + exp_size)
*offset_ptr += exp_size;
if (*offset_ptr + exp_size >= dash->module[gscroll.current].idx_data - 1)
*offset_ptr = dash->module[gscroll.current].idx_data - exp_size;
if (*scroll_ptr < exp_size - 1)
*offset_ptr = 0;
}
static void
scroll_up_expanded_module (void)
{
int *scroll_ptr, *offset_ptr;
scroll_ptr = &gscroll.module[gscroll.current].scroll;
offset_ptr = &gscroll.module[gscroll.current].offset;
if (!gscroll.expanded)
return;
if (*scroll_ptr <= 0)
return;
--(*scroll_ptr);
if (*scroll_ptr < *offset_ptr)
--(*offset_ptr);
}
static void
render_search_dialog (int search)
{
if (render_find_dialog (main_win, &gscroll))
return;
pthread_mutex_lock (&gdns_thread.mutex);
search = perform_next_find (holder, &gscroll);
pthread_mutex_unlock (&gdns_thread.mutex);
if (search != 0)
return;
free_dashboard (dash);
allocate_data ();
render_screens ();
}
static void
search_next_match (int search)
{
pthread_mutex_lock (&gdns_thread.mutex);
search = perform_next_find (holder, &gscroll);
pthread_mutex_unlock (&gdns_thread.mutex);
if (search != 0)
return;
free_dashboard (dash);
allocate_data ();
render_screens ();
}
static void
perform_tail_follow (uint64_t * size1)
{
uint64_t size2 = 0;
char buf[LINE_BUFFER];
FILE *fp = NULL;
if (logger->piping)
return;
size2 = file_size (conf.ifile);
/* file hasn't changed */
if (size2 == *size1)
return;
if (!(fp = fopen (conf.ifile, "r")))
FATAL ("Unable to read log file %s.", strerror (errno));
if (!fseeko (fp, *size1, SEEK_SET))
while (fgets (buf, LINE_BUFFER, fp) != NULL)
parse_log (&logger, buf, -1);
fclose (fp);
*size1 = size2;
pthread_mutex_lock (&gdns_thread.mutex);
free_holder (&holder);
pthread_cond_broadcast (&gdns_thread.not_empty);
pthread_mutex_unlock (&gdns_thread.mutex);
free_dashboard (dash);
allocate_holder ();
allocate_data ();
term_size (main_win);
render_screens ();
usleep (200000); /* 0.2 seconds */
}
static int
next_module (void)
{
gscroll.current++;
if (gscroll.current == TOTAL_MODULES)
gscroll.current = 0;
if (ignore_panel (gscroll.current)) {
disabled_panel_msg (gscroll.current);
return 1;
}
return 0;
}
static int
previous_module (void)
{
if (gscroll.current == 0)
gscroll.current = TOTAL_MODULES - 1;
else
gscroll.current--;
if (ignore_panel (gscroll.current)) {
disabled_panel_msg (gscroll.current);
return 1;
}
return 0;
}
static void
window_resize (void)
{
endwin ();
refresh ();
werase (header_win);
werase (main_win);
werase (stdscr);
term_size (main_win);
refresh ();
render_screens ();
}
static void
render_sort_dialog (void)
{
load_sort_win (main_win, gscroll.current, &module_sort[gscroll.current]);
pthread_mutex_lock (&gdns_thread.mutex);
free_holder (&holder);
pthread_cond_broadcast (&gdns_thread.not_empty);
pthread_mutex_unlock (&gdns_thread.mutex);
free_dashboard (dash);
allocate_holder ();
allocate_data ();
render_screens ();
}
static void
get_keys (void)
{
int search = 0;
int c, quit = 1;
uint64_t size1 = 0;
if (!logger->piping)
size1 = file_size (conf.ifile);
while (quit) {
c = wgetch (stdscr);
switch (c) {
case 'q': /* quit */
if (!gscroll.expanded) {
quit = 0;
break;
}
collapse_current_module ();
break;
case KEY_F (1):
case '?':
case 'h':
load_help_popup (main_win);
render_screens ();
break;
case 49: /* 1 */
/* reset expanded module */
set_module_to (&gscroll, VISITORS);
break;
case 50: /* 2 */
/* reset expanded module */
set_module_to (&gscroll, REQUESTS);
break;
case 51: /* 3 */
/* reset expanded module */
set_module_to (&gscroll, REQUESTS_STATIC);
break;
case 52: /* 4 */
/* reset expanded module */
set_module_to (&gscroll, NOT_FOUND);
break;
case 53: /* 5 */
/* reset expanded module */
set_module_to (&gscroll, HOSTS);
break;
case 54: /* 6 */
/* reset expanded module */
set_module_to (&gscroll, OS);
break;
case 55: /* 7 */
/* reset expanded module */
set_module_to (&gscroll, BROWSERS);
break;
case 56: /* 8 */
/* reset expanded module */
set_module_to (&gscroll, VISIT_TIMES);
break;
case 57: /* 9 */
/* reset expanded module */
set_module_to (&gscroll, REFERRERS);
break;
case 48: /* 0 */
/* reset expanded module */
set_module_to (&gscroll, REFERRING_SITES);
break;
case 33: /* shift + 1 */
/* reset expanded module */
set_module_to (&gscroll, KEYPHRASES);
break;
case 34: /* Shift + 2 */
/* reset expanded module */
#ifdef HAVE_LIBGEOIP
set_module_to (&gscroll, GEO_LOCATION);
#else
set_module_to (&gscroll, STATUS_CODES);
#endif
break;
#ifdef HAVE_LIBGEOIP
case 35: /* Shift + 3 */
/* reset expanded module */
set_module_to (&gscroll, STATUS_CODES);
break;
#endif
case 9: /* TAB */
/* reset expanded module */
collapse_current_module ();
if (next_module () == 0)
render_screens ();
break;
case 353: /* Shift TAB */
/* reset expanded module */
collapse_current_module ();
if (previous_module () == 0)
render_screens ();
break;
case 'g': /* g = top */
scroll_to_first_line ();
display_content (main_win, logger, dash, &gscroll);
break;
case 'G': /* G = down */
scroll_to_last_line ();
display_content (main_win, logger, dash, &gscroll);
break;
/* expand dashboard module */
case KEY_RIGHT:
case 0x0a:
case 0x0d:
case 32: /* ENTER */
case 79: /* o */
case 111: /* O */
case KEY_ENTER:
expand_current_module ();
display_content (main_win, logger, dash, &gscroll);
break;
case KEY_DOWN: /* scroll main dashboard */
if ((gscroll.dash + real_size_y) < (unsigned) dash->total_alloc) {
gscroll.dash++;
display_content (main_win, logger, dash, &gscroll);
}
break;
case KEY_MOUSE: /* handles mouse events */
expand_on_mouse_click ();
break;
case 106: /* j - DOWN expanded module */
scroll_down_expanded_module ();
display_content (main_win, logger, dash, &gscroll);
break;
/* scroll up main_win */
case KEY_UP:
if (gscroll.dash > 0) {
scroll_up_dashboard ();
display_content (main_win, logger, dash, &gscroll);
}
break;
case 2: /* ^ b - page up */
case 339: /* ^ PG UP */
page_up_module ();
display_content (main_win, logger, dash, &gscroll);
break;
case 6: /* ^ f - page down */
case 338: /* ^ PG DOWN */
page_down_module ();
display_content (main_win, logger, dash, &gscroll);
break;
case 107: /* k - UP expanded module */
scroll_up_expanded_module ();
display_content (main_win, logger, dash, &gscroll);
break;
case 'n':
search_next_match (search);
break;
case '/':
render_search_dialog (search);
break;
case 99: /* c */
if (conf.no_color)
break;
load_schemes_win (main_win);
free_dashboard (dash);
allocate_data ();
render_screens ();
break;
case 115: /* s */
render_sort_dialog ();
break;
case 269:
case KEY_RESIZE:
window_resize ();
break;
default:
perform_tail_follow (&size1);
break;
}
}
}
static void
set_general_stats (void)
{
verify_formats ();
logger->process = logger->invalid = logger->exclude_ip = 0;
#ifdef TCB_BTREE
logger->exclude_ip = get_uint_from_str_key (ht_general_stats, "exclude_ip");
logger->invalid = get_uint_from_str_key (ht_general_stats, "failed_requests");
logger->process = get_uint_from_str_key (ht_general_stats, "total_requests");
logger->resp_size = get_uint_from_str_key (ht_general_stats, "bandwidth");
if (logger->resp_size > 0)
conf.bandwidth = 1;
#endif
}
#ifdef HAVE_LIBGEOIP
static void
init_geoip (void)
{
/* open custom city GeoIP database */
if (conf.geoip_database != NULL)
geo_location_data = geoip_open_db (conf.geoip_database);
/* fall back to legacy GeoIP database */
else
geo_location_data = GeoIP_new (conf.geo_db);
}
#endif
static void
standard_output (void)
{
/* CSV */
if (conf.output_format && strcmp ("csv", conf.output_format) == 0)
output_csv (logger, holder);
/* JSON */
else if (conf.output_format && strcmp ("json", conf.output_format) == 0)
output_json (logger, holder);
/* HTML */
else
output_html (logger, holder);
}
static void
curses_output (void)
{
allocate_data ();
if (!conf.skip_term_resolver)
gdns_thread_create ();
render_screens ();
get_keys ();
attroff (COLOR_PAIR (COL_WHITE));
/* restore tty modes and reset
* terminal into non-visual mode */
endwin ();
}
static void
set_locale (void)
{
char *loc_ctype;
loc_ctype = getenv ("LC_CTYPE");
if (loc_ctype != NULL)
setlocale (LC_CTYPE, loc_ctype);
else if ((loc_ctype = getenv ("LC_ALL")))
setlocale (LC_CTYPE, loc_ctype);
else
setlocale (LC_CTYPE, "");
}
static void
parse_cmd_line (int argc, char **argv)
{
read_option_args (argc, argv);
if (!isatty (STDOUT_FILENO) || conf.output_format != NULL)
conf.output_html = 1;
if (conf.ifile != NULL && !isatty (STDIN_FILENO) && !conf.output_html)
cmd_help ();
if (conf.ifile == NULL && isatty (STDIN_FILENO) && conf.output_format == NULL)
cmd_help ();
set_default_static_files ();
}
#if defined(__GLIBC__)
static void
setup_signal_handlers (void)
{
struct sigaction act;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
act.sa_handler = sigsegv_handler;
sigaction (SIGSEGV, &act, NULL);
}
#endif
int
main (int argc, char **argv)
{
int quit = 0;
#if defined(__GLIBC__)
setup_signal_handlers ();
#endif
/* command line/config options */
verify_global_config (argc, argv);
parse_conf_file (&argc, &argv);
parse_cmd_line (argc, argv);
/* initialize storage */
init_storage ();
/* setup to use the current locale */
set_locale ();
#ifdef HAVE_LIBGEOIP
init_geoip ();
#endif
/* init logger */
logger = init_log ();
set_signal_data (logger);
/* init parsing spinner */
parsing_spinner = new_gspinner ();
parsing_spinner->process = &logger->process;
/* outputting to stdout */
if (conf.output_html) {
ui_spinner_create (parsing_spinner);
goto out;
}
/* init curses */
set_input_opts ();
if (conf.no_color || has_colors () == FALSE) {
conf.color_scheme = NO_COLOR;
conf.no_color = 1;
} else {
start_color ();
}
init_colors ();
init_windows (&header_win, &main_win);
set_curses_spinner (parsing_spinner);
/* configuration dialog */
if (isatty (STDIN_FILENO) && (conf.log_format == NULL || conf.load_conf_dlg)) {
refresh ();
quit = render_confdlg (logger, parsing_spinner);
}
/* straight parsing */
else {
ui_spinner_create (parsing_spinner);
}
out:
/* main processing event */
time (&start_proc);
if (conf.load_from_disk)
set_general_stats ();
else if (!quit && parse_log (&logger, NULL, -1))
FATAL ("Error while processing file");
logger->offset = logger->process;
/* no valid entries to process from the log */
if (logger->process == 0)