Accept and ignore:
[privoxy.git] / tools / privoxy-log-parser.pl
1 #!/usr/bin/perl
2
3 ################################################################################
4 # privoxy-log-parser
5 #
6 # A parser for Privoxy log messages. For incomplete documentation run
7 # perldoc privoxy-log-parser(.pl), for fancy screenshots see:
8 #
9 # http://www.fabiankeil.de/sourcecode/privoxy-log-parser/
10 #
11 # $Id: privoxy-log-parser.pl,v 1.120 2008/11/04 17:33:28 fk Exp $
12 #
13 # TODO:
14 #       - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting
15 #       - create fancy statistics
16 #       - grep through Privoxy sources to find unsupported log messages
17 #       - hunt down substitutions that match content from variables which
18 #         can contain stuff like ()?'[]
19 #       - replace $h{'foo'} with h('foo') where possible
20 #       - hunt down XXX comments instead of just creating them
21 #       - add example log lines for every regex and mark them up for
22 #         regression testing
23 #       - Handle incomplete input without Perl warning about undefined variables.
24 #       - Use generic highlighting function that takes a regex and the
25 #         hash key as input.
26 #
27 # Copyright (c) 2007-2008 Fabian Keil <fk@fabiankeil.de>
28 #
29 # Permission to use, copy, modify, and distribute this software for any
30 # purpose with or without fee is hereby granted, provided that the above
31 # copyright notice and this permission notice appear in all copies.
32 #
33 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
34 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
35 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
36 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
37 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
38 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
39 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 ################################################################################
41
42 use strict;
43 use warnings;
44 use Getopt::Long;
45
46 use constant {
47     PRIVOXY_LOG_PARSER_VERSION => '0.4',
48     # Feel free to mess with these ...
49     DEFAULT_BACKGROUND => 'black',  # Choose registered colour (like 'black')
50     DEFAULT_TEXT_COLOUR => 'white', # Choose registered colour (like 'black')
51     HEADER_DEFAULT_COLOUR => 'yellow',
52     REGISTER_HEADERS_WITH_THE_SAME_COLOUR => 1,
53
54     CLI_OPTION_DEFAULT_TO_HTML_OUTPUT => 0,
55     CLI_OPTION_TITLE => 'Privoxy-Log-Parser in da house',
56     CLI_OPTION_NO_EMBEDDED_CSS => 0,
57     CLI_OPTION_NO_MSECS => 0,
58     CLI_OPTION_NO_SYNTAX_HIGHLIGHTING => 0,
59     CLI_OPTION_ERROR_LOG_FILE => '/var/log/privoxy-log.log',
60     CLI_OPTION_SHOW_INEFFECTIVE_FILTERS => 0,
61     CLI_OPTION_ACCEPT_UNKNOWN_MESSAGES => 0,
62     CLI_OPTION_STATISTIC => 0,
63
64     SUPPRESS_SUCCEEDED_FILTER_ADDITIONS => 1,
65     SHOW_SCAN_INTRO => 0,
66     SHOW_FILTER_READIN_IN => 0,
67     SUPPRESS_EMPTY_LINES => 1,
68     SUPPRESS_SUCCESSFUL_CONNECTIONS => 1,
69     SUPPRESS_ACCEPTED_CONNECTIONS => 1,
70     SUPPRESS_GIF_NOT_CHANGED => 1,
71     SUPPRESS_NEED_TO_DE_CHUNK_FIRST => 1,
72
73     DEBUG_HEADER_REGISTERING => 0,
74     DEBUG_HEADER_HIGHLIGHTING => 0,
75     DEBUG_TICKS => 0,
76     DEBUG_PAINT_IT => 0,
77     DEBUG_SUPPRESS_LOG_MESSAGES => 0,
78
79     PUNISH_MISSING_LOG_KNOWLEDGE_WITH_DEATH => 0,
80     PUNISH_MISSING_HIGHLIGHT_KNOWLEDGE_WITH_DEATH => 1,
81
82     LOG_UNPARSED_LINES_TO_EXTRA_FILE => 0,
83
84     # You better leave these alone unless you know what you're doing.
85     COLOUR_RESET      => "\033[0;0m",
86     ESCAPE => "\033[",
87 };
88
89 sub prepare_our_stuff () {
90
91     # Syntax Higlight hash
92     our @all_colours = (
93         'red', 'green', 'brown', 'blue', 'purple', 'cyan',
94         'light_gray', 'light_red', 'light_green', 'yellow',
95         'light_blue', 'pink', 'light_cyan', 'white'
96     );
97
98     our %h = (
99         # LOG_LEVEL
100         Info            => 'blue',
101         Header          => 'green',
102         Filter          => 'purple', # XXX: Used?
103         'Re-Filter'     => 'purple',
104         Connect         => 'brown',
105         Request         => 'light_cyan',
106         CGI             => 'light_green',
107         Redirect        => 'cyan',
108         Error           => 'light_red',
109         'Fatal error'   => 'light_red',
110         'Gif-Deanimate' => 'blue',
111         Force           => 'red',
112         Writing         => 'light_green',
113         # ----------------------
114         URL                  => 'yellow',
115         path                 => 'brown',
116         request_             => 'brown', # host+path but no protocol
117         'ip-address'         => 'yellow',
118         Number               => 'yellow',
119         Standard             => 'reset',
120         Truncation           => 'light_red',
121         Status               => 'brown',
122         Timestamp            => 'brown',
123         Crunching            => 'light_red',
124         crunched             => 'light_red',
125         'Request-Line'       => 'pink',
126         method               => 'purple',
127         destination          => 'yellow',
128         'http-version'       => 'pink',
129         'crunch-pattern'     => 'pink',
130         not                  => 'brown',
131         file                 => 'brown',
132         signal               => 'yellow',
133         version              => 'green',
134         'program-name'       => 'cyan',
135         port                 => 'red',
136         host                 => 'red',
137         warning              => 'light_red',
138         debug                => 'light_red',
139         filter               => 'green',
140         tag                  => 'green',
141         tagger               => 'green',
142         'status-message'     => 'light_cyan',
143         'status-code'        => 'yellow',
144         'invalid-request'    => 'light_red',
145         'hits'               => 'yellow',
146         error                => 'light_red',
147         'rewritten-URL'      => 'light_red',
148         'pcrs-delimiter'     => 'light_red',
149         'ignored'            => 'light_red',
150         'action-bits-update' => 'light_red',
151         'configuration-line' => 'red',
152         'content-type'       => 'yellow',
153     );
154
155     our %h_colours = %h;
156
157     # Header colours need their own hash so the keys can be accessed properly
158     our %header_colours = (
159         # Prefilled with headers that should not appear with default header colours
160         Cookie => 'light_red',
161         'Set-Cookie' => 'light_red',
162         Warning => 'light_red',
163         Default => HEADER_DEFAULT_COLOUR,
164     );
165
166     # Crunch reasons need their own hash as well
167     our %reason_colours = (
168         'Unsupported HTTP feature'               => 'light_red',
169         Blocked                                  => 'light_red',
170         Untrusted                                => 'light_red',
171         Redirected                               => 'green', 
172         'CGI Call'                               => 'white',
173         'DNS failure'                            => 'red',
174         'Forwarding failed'                      => 'light_red',
175         'Connection failure'                     => 'light_red',
176         'Out of memory (may mask other reasons)' => 'light_red',
177         'No reason recorded'                     => 'light_red',
178     );
179
180     our @time_colours = ('white', 'light_gray');
181
182     # Translate highlight strings into highlight code
183     prepare_highlight_hash(\%header_colours);
184     prepare_highlight_hash(\%reason_colours);
185     prepare_highlight_hash(\%h);
186     prepare_colour_array(\@all_colours);
187     prepare_colour_array(\@time_colours);
188     init_css_colours();
189 }
190
191 sub paint_it ($) {
192 ###############################################################
193 # Takes a colour string and returns an ANSI escape sequence
194 # (unless --no-syntax-highlighting is used).
195 # XXX: The Rolling Stones reference has to go.
196 ###############################################################
197
198     my $colour = shift @_;
199
200     return "" if cli_option_is_set('no-syntax-highlighting');
201
202     my %light = (
203         black       => 0,    
204         red         => 0,   
205         green       => 0,  
206         brown       => 0, 
207         blue        => 0,   
208         purple      => 0, 
209         cyan        => 0,  
210         light_gray  => 0,
211         gray        => 0,
212         dark_gray   => 1,
213         light_red   => 1,
214         light_green => 1,
215         yellow      => 1,
216         light_blue  => 1,
217         pink        => 1,
218         light_cyan  => 1,
219         white       => 1,
220     );
221
222     my %text = (
223         black       => 30,    
224         red         => 31,   
225         green       => 32,  
226         brown       => 33, 
227         blue        => 34,   
228         purple      => 35, 
229         cyan        => 36,  
230         gray        => 37,
231         light_gray  => 37,
232         dark_gray   => 30,
233         light_red   => 31,
234         light_green => 32,
235         yellow      => 33,
236         light_blue  => 34,
237         pink        => 35,
238         light_cyan  => 36,
239         white       => 37,
240     );
241
242     my $bg_code = get_background();
243     my $colour_code;
244     our $default = default_colours();
245
246     if (defined($text{$colour})) {
247         $colour_code  = ESCAPE;
248         $colour_code .= $text{$colour};
249         $colour_code .= ";";
250         $colour_code .= $light{$colour} ? "1" : "2";
251         $colour_code .= ";";
252         $colour_code .= $bg_code; 
253         $colour_code .= "m";
254         debug_message $colour . " is \'" . $colour_code . $colour . $default . "\'" if DEBUG_PAINT_IT; 
255
256     } elsif ($colour =~ /reset/) {
257
258         $colour_code = default_colours();
259
260     } else {
261
262         die "What's $colour supposed to mean?\n"; 
263     }
264
265     return $colour_code;
266 }
267
268
269 sub get_semantic_html_markup ($) {
270 ###############################################################
271 # Takes a string and returns a span element
272 ###############################################################
273
274     my $type = shift @_;
275     my $code;
276
277     if ($type =~ /Standard/) {
278         $code = '</span>';
279     } else {
280         $type = lc($type);
281         $code = '<span title="' . $type . '" class="' . $type . '">';
282     }
283
284     return $code;
285 }
286
287 sub cli_option_is_set ($) {
288
289     our %cli_options;
290     my $cli_option = shift;
291
292     die "Unknown CLI option: $cli_option" unless defined $cli_options{$cli_option};
293
294     return $cli_options{$cli_option};
295 }
296
297 sub get_html_title () {
298
299     our %cli_options;
300     return $cli_options{'title'};
301
302 }
303
304 sub init_css_colours() {
305
306     our %css_colours = (
307         black       => "000",    
308         red         => "F00",   
309         green       => "0F0",  
310         brown       => "C90", 
311         blue        => "0F0",   
312         purple      => "F06", # XXX: wrong  
313         cyan        => "F09", # XXX: wrong  
314         light_gray  => "999",
315         gray        => "333",
316         dark_gray   => "222",
317         light_red   => "F33",
318         light_green => "33F",
319         yellow      => "FF0",
320         light_blue  => "30F",
321         pink        => "F0F",
322         light_cyan  => "66F",
323         white       => "FFF",
324     );
325 }
326
327 sub get_css_colour ($) {
328
329    our %css_colours;
330    my $colour = shift;
331
332    die "What's $colour supposed to mean?\n" unless defined($css_colours{$colour}); 
333
334    return '#' . $css_colours{$colour};
335 }
336
337 sub get_css_line ($) {
338
339     our %h_colours;
340
341     my $class = shift;
342     my $css_line;
343
344     $css_line .= '.' . lc($class) . ' {'; # XXX: lc() shouldn't be necessary
345     die "What's $class supposed to mean?\n" unless defined($h_colours{$class}); 
346     $css_line .= 'color:' . get_css_colour($h_colours{$class}) . ';';
347     $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
348     $css_line .= '}' . "\n"; 
349
350     return $css_line;
351 }
352
353 sub get_css_line_for_colour ($) {
354
355     our %h_colours;
356
357     my $colour = shift;
358     my $css_line;
359
360     $css_line .= '.' . lc($colour) . ' {'; # XXX: lc() shouldn't be necessary
361     $css_line .= 'color:' . get_css_colour($colour) . ';';
362     $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
363     $css_line .= '}' . "\n"; 
364
365     return $css_line;
366 }
367
368 # XXX: Wrong solution
369 sub get_missing_css_lines () {
370
371     my $css_line;
372
373     $css_line .= '.' . 'default' . ' {'; # XXX: lc() shouldn't be necessary
374     $css_line .= 'color:' . HEADER_DEFAULT_COLOUR . ';';
375     $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
376     $css_line .= '}' . "\n"; 
377
378     return $css_line;
379 }
380
381 sub get_css () {
382
383     our %h_colours;
384     our %css_colours; #XXX: Wrong solution
385
386     my $css = '';
387
388     $css .= '.privoxy-log {';
389     $css .= 'color:' . get_css_colour(DEFAULT_TEXT_COLOUR) . ';';
390     $css .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
391     $css .= '}' . "\n"; 
392  
393     foreach my $key (keys %h_colours) {
394
395         next if ($h_colours{$key} =~ m/reset/); #XXX: Wrong solution.
396         $css .= get_css_line($key);
397
398     }
399
400     foreach my $colour (keys %css_colours) {
401
402         $css .= get_css_line_for_colour($colour);
403
404     }
405
406     $css .= get_missing_css_lines(); #XXX: Wrong solution
407
408     return $css;
409 }
410
411 sub print_intro () {
412
413     my $intro = '';
414
415     if (cli_option_is_set('html-output')) {
416
417         my $title = get_html_title();
418
419         $intro .= '<html><head>';
420         $intro .= '<title>' . $title . '</title>';
421         $intro .= '<style>' . get_css() . '</style>' unless cli_option_is_set('no-embedded-css');
422         $intro .= '</head><body>';
423         $intro .= '<h1>' . $title . '</h1><p class="privoxy-log">';
424
425         print $intro;
426     }
427 }
428
429 sub print_outro () {
430
431     my $outro = '';
432
433     if (cli_option_is_set('html-output')) {
434
435         $outro = '</p></body></html>';
436         print $outro;
437
438     }
439 }
440
441
442 sub get_line_end () {
443
444     my $line_end = "\n";
445
446     $line_end = '<br>' . $line_end if cli_option_is_set('html-output');
447
448     return $line_end;
449 }
450
451 sub get_colour_html_markup ($) {
452 ###############################################################
453 # Takes a colour string a span element. XXX: WHAT?
454 # XXX: This function shouldn't be necessary, the
455 # markup should always be semantically correct.
456 ###############################################################
457
458     my $type = shift @_;
459     my $code;
460
461     if ($type =~ /Standard/) {
462         $code = '</span>';
463     } else {
464         $code = '<span class="' . lc($type) . '">';
465     }
466
467     return $code;
468 }
469
470
471 sub default_colours () {
472     # XXX: Properly
473     our $bg_code;
474     return reset_colours();
475 }
476
477 sub show_colours () {
478     # XXX: Implement
479 }
480
481 sub reset_colours () {
482     return ESCAPE . "0m";
483 }
484
485 sub set_background ($){
486
487     my $colour = shift;
488     our $bg_code;
489     my %backgrounds = (
490               black       => "40",    
491               red         => "41",   
492               green       => "42",  
493               brown       => "43", 
494               blue        => "44",   
495               magenta     => "45",  
496               cyan        => "46",
497               white       => "47",  
498               default     => "49",  
499     );
500     
501     if (defined($backgrounds{$colour})) {
502         $bg_code = $backgrounds{$colour};
503     } else {
504         die "Invalid background colour: " . $colour;
505     }
506 }
507
508 sub get_background (){
509     return our $bg_code;
510 }
511
512 sub prepare_highlight_hash ($) {
513     my $ref = shift;
514
515     if (!cli_option_is_set('html-output')) {
516
517         foreach my $key (keys %$ref) {
518             $$ref{$key} = paint_it($$ref{$key}); 
519         }
520
521     } else {
522
523         foreach my $key (keys %$ref) {
524             $$ref{$key} = get_semantic_html_markup($key); 
525         }
526
527     } 
528 }
529
530 sub prepare_colour_array ($) {
531     my $ref = shift;
532
533     if (!cli_option_is_set('html-output')) {
534
535         foreach my $i (0 ... @$ref - 1) {
536             $$ref[$i] = paint_it($$ref[$i]); 
537         } 
538
539     } else {
540
541         foreach my $i (0 ... @$ref - 1) {
542             $$ref[$i] = get_colour_html_markup($$ref[$i]);
543         } 
544
545     }
546 }
547
548 sub found_unknown_content ($) {
549
550     my $unknown = shift;
551     my $message;
552
553     our %req;
554     our $t;
555
556     return if cli_option_is_set('accept-unknown-messages');
557
558     return if ($unknown =~ /\[too long, truncated\]$/);
559
560     $message = "found_unknown_content: Don't know how to highlight: ";
561     # Break line so the log file can later be parsed as Privoxy log file again
562     $message .= '"' . $unknown . '"' . " in:\n";
563     $message .= $req{$t}{'log-message'};
564     debug_message($message);
565     log_parse_error($req{$t}{'log-message'});
566
567     die "Unworthy content parser" if PUNISH_MISSING_LOG_KNOWLEDGE_WITH_DEATH;
568 }
569
570 sub log_parse_error ($) {
571
572     my $message = shift;
573
574     if (LOG_UNPARSED_LINES_TO_EXTRA_FILE) {
575         open(ERRORLOG, ">>" . ERROR_LOG_FILE) || die "Writing " . ERROR_LOG_FILE . " failed";
576         print ERRORLOG $message;
577         close(ERRORLOG);
578     }
579 }
580
581 sub debug_message (@) {
582     my @message = @_;
583     our %h;
584
585     print $h{'debug'} . "@message" . $h{'Standard'} . "\n";
586 }
587
588 ################################################################################
589 # highlighter functions that aren't loglevel-specific 
590 ################################################################################
591
592 sub h ($) {
593
594     # Get highlight marker
595     our %h;
596     my $highlight = shift; # XXX: Stupid name;
597     my $result = '';
598     my $message;
599
600     if (defined($highlight)) {
601
602         $result = $h{$highlight};
603
604     } else {
605
606         $message = "h: Don't recognize highlighter $highlight.";
607         debug_message($message);
608         log_parser_error($message);
609         die "Unworthy highlighter function" if PUNISH_MISSING_HIGHLIGHT_KNOWLEDGE_WITH_DEATH;
610     }
611    
612     return $result;
613 }
614
615 sub highlight_known_headers ($) {
616
617     my $content = shift;
618     our %header_colours;
619     our %h;
620     my $headers = join ('|', keys %header_colours);
621
622     debug_message("Searching $content for things to highlight.") if DEBUG_HEADER_HIGHLIGHTING;
623
624     if ($content =~ m/(?<=\s)($headers):/) {
625         my $header = $1;
626         $content =~ s@(?<=[\s|'])($header)(?=:)@$header_colours{$header}$1$h{'Standard'}@ig;
627         debug_message("Highlighted $content") if DEBUG_HEADER_HIGHLIGHTING;
628     }
629
630     return $content;
631 }
632
633 sub highlight_matched_request_line ($$) {
634
635     my $result = shift; # XXX: Stupid name;
636     my $regex = shift;
637     if ($result =~ m@(.*)($regex)(.*)@) {
638         $result = $1 . highlight_request_line($2) . $3
639     }
640     return $result;
641 }
642
643 sub highlight_request_line ($) {
644
645     my $rl = shift;
646     my ($method, $url, $http_version);
647     our %h;
648
649     #GET http://images.sourceforge.net/sfx/icon_warning.gif HTTP/1.1
650     if ($rl =~ m/Invalid request/) {
651
652         $rl = h('invalid-request') . $rl . h('Standard');
653
654     } elsif ($rl =~ m/^([-\w]+) (.*) (HTTP\/\d\.\d)/) {
655
656         # XXX: might not match in case of HTTP method fuzzing.
657         # XXX: save these: ($method, $path, $http_version) = ($1, $2, $3);
658         $rl =~ s@^(\w+)@$h{'method'}$1$h{'Standard'}@;
659         if ($rl =~ /http:\/\//) {
660             $rl = highlight_matched_url($rl, '[^\s]*(?=\sHTTP)');
661         } else {
662             $rl = highlight_matched_pattern($rl, 'request_', '[^\s]*(?=\sHTTP)');
663         }
664
665         $rl =~ s@(HTTP\/\d\.\d)$@$h{'http-version'}$1$h{'Standard'}@;
666
667     } elsif ($rl =~ m/\.\.\. \[too long, truncated\]$/) {
668
669         $rl =~ s@^(\w+)@$h{'method'}$1$h{'Standard'}@;
670         $rl = highlight_matched_url($rl, '[^\s]*(?=\.\.\.)');
671
672     } elsif ($rl =~ m/^ $/) {
673
674         $rl = h('error') . "No request line specified!" . h('Standard');
675
676     } else {
677
678         debug_message ("Can't parse request line: $rl");
679
680     }
681
682     return $rl;
683 }
684
685 sub highlight_response_line ($) {
686
687     my $rl = shift;
688     my ($http_version, $status_code, $status_message);
689
690     #HTTP/1.1 200 OK
691     #ICY 200 OK
692
693     # TODO: Mark different status codes differently
694
695     if ($rl =~ m/((?:HTTP\/\d\.\d|ICY)) (\d+) (.*)/) {
696         ($http_version, $status_code, $status_message) = ($1, $2, $3);
697     } else {
698         debug_message ("Can't parse response line: $rl") and die 'Fix this';
699     }
700
701     # Rebuild highlighted
702     $rl= "";
703     $rl .= h('http-version') . $http_version . h('Standard');
704     $rl .= " ";
705     $rl .= h('status-code') . $status_code . h('Standard');
706     $rl .= " ";
707     $rl .= h('status-message') . $status_message . h('Standard');
708
709     return $rl;
710 }
711
712 sub highlight_matched_url ($$) {
713
714     my $result = shift; # XXX: Stupid name;
715     my $regex = shift;
716
717     #print "Got $result, regex ($regex)\n";
718
719     if ($result =~ m@(.*?)($regex)(.*)@) {
720         $result = $1 . highlight_url($2) . $3;
721         #print "Now the result is $result\n";
722     }
723
724     return $result;
725 }
726
727 sub highlight_matched_host ($$) {
728
729     my $result = shift; # XXX: Stupid name;
730     my $regex = shift;
731
732     if ($result =~ m@(.*?)($regex)(.*)@) {
733         $result = $1 . h('host') . $2 . h('Standard') . $3;
734     }
735
736     return $result;
737 }
738
739 sub highlight_matched_pattern ($$$) {
740
741     our %h;
742     my $result = shift; # XXX: Stupid name;
743     my $key = shift;
744     my $regex = shift;
745
746     die "Unknown key $key" unless defined $h{$key};
747
748     if ($result =~ m@(.*?)($regex)(.*)@) {
749         $result = $1 . h($key) . $2 . h('Standard') . $3;
750     }
751
752     return $result;
753 }
754
755
756 sub highlight_matched_path ($$) {
757
758     my $result = shift; # XXX: Stupid name;
759     my $regex = shift;
760
761     if ($result =~ m@(.*?)($regex)(.*)@) {
762         $result = $1 . h('path') . $2 . h('Standard') . $3;
763     }
764
765     return $result;
766 }
767
768
769 sub highlight_url ($) {
770
771     my $url = shift;
772
773     if (cli_option_is_set('html-output')) {
774
775         $url = '<a href="' . $url . '">' . $url . '</a>';
776
777     } else {
778
779         $url = h('URL') . $url . h('Standard');
780
781     }
782
783     return $url;
784 }
785
786 ################################################################################
787 # loglevel-specific highlighter functions
788 ################################################################################
789
790 sub handle_loglevel_header ($) {
791
792     my $content = shift;
793     my $c = $content;
794     our $t;
795     our %req;
796     our %h;
797     our %header_colours;
798     our @all_colours;
799     our $header_colour_index;
800     our $no_special_header_highlighting;
801
802     # Register new headers
803     # scan: Accept: image/png,image/*;q=0.8,*/*;q=0.5
804     if ($c =~ m/^scan: ((?>[^:]+)):/) {
805         my $header = $1;
806         if (!defined($header_colours{$header})) {
807             debug_message "Registering previously unknown header $1" if DEBUG_HEADER_REGISTERING;
808
809             if (REGISTER_HEADERS_WITH_THE_SAME_COLOUR) {
810                 $header_colours{$header} =  $header_colours{'Default'};
811             } else {
812                 $header_colours{$header} = $all_colours[$header_colour_index % @all_colours];
813                 $header_colour_index++;
814             }
815         }
816     }
817
818     if ($c =~ m/^scan: ((\w*) (.*) (HTTP\/\d\.\d))/) {
819
820             # Client request line
821             # Save for statistics (XXX: Not implemented yet)
822             $req{$t}{'method'} = $2;
823             $req{$t}{'destination'} = $3;
824             $req{$t}{'http-version'} = $4;
825
826             $content = highlight_request_line($1);
827
828     } elsif ($c =~ m/^(scan: )((?:HTTP\/\d\.\d|ICY) (\d+) (.*))/) {
829
830             # Server response line
831             $req{$t}{'response_line'} = $2;
832             $req{$t}{'status_code'} = $3;
833             $req{$t}{'status_message'} = $4;
834             $content = $1 . highlight_response_line($req{$t}{'response_line'});
835
836     } elsif ($c =~ m/^Crunching (?:server|client) header: .* \(contains: ([^\)]*)\)/) {
837
838         # Crunching server header: Set-Cookie: trac_form_token=d5308c34e16d15e9e301a456; (contains: Cookie:)
839         $content =~ s@(?<=contains: )($1)@$h{'crunch-pattern'}$1$h{'Standard'}@;
840         $content =~ s@(Crunching)@$h{$1}$1$h{'Standard'}@;    
841
842     } elsif ($c =~ m/^New host is: ([^\s]*)\./) {
843
844         # New host is: trac.vidalia-project.net. Crunching Referer: http://www.vidalia-project.net/
845         $c = highlight_matched_host($c, '(?<=New host is: )[^\s]+');
846         $content = highlight_matched_url($c, '(?<=Crunching Referer: )[^\s]+');
847
848     } elsif ($c =~ m/^Text mode enabled by force. (Take cover)!/) {
849
850         # Text mode enabled by force. Take cover!
851         $content =~ s@($1)@$h{'warning'}$1$h{'Standard'}@;
852
853     } elsif ($c =~ m/^(New HTTP Request-Line: )(.*)/) {
854
855         # New HTTP Request-Line: GET http://www.privoxy.org/ HTTP/1.1
856         $content = $1 . highlight_request_line($2);
857
858     } elsif ($c =~ m/^Adjust(ed)? Content-Length to \d+/) {
859
860         # Adjusted Content-Length to 2132
861         # Adjust Content-Length to 33533
862         $content =~ s@(?<=Content-Length to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
863         $content = highlight_known_headers($content);
864
865     } elsif ($c =~ m/^Destination extracted from "Host:" header. New request URL:/) {
866
867         # Destination extracted from "Host:" header. New request URL: http://www.cccmz.de/~ridcully/blog/
868         $content = highlight_matched_url($content, '(?<=New request URL: ).*');
869
870     } elsif ($c =~ m/^Couldn\'t parse:/) {
871
872         # XXX: These should probable be logged with LOG_LEVEL_ERROR
873         # Couldn't parse: If-Modified-Since: Wed, 21 Mar 2007 16:34:50 GMT (crunching!)
874         # Couldn't parse: at, 24 Mar 2007 13:46:21 GMT in If-Modified-Since: Sat, 24 Mar 2007 13:46:21 GMT (crunching!)
875         $content =~ s@^(Couldn\'t parse)@$h{'error'}$1$h{'Standard'}@;
876
877     } elsif ($c =~ /^Tagger \'([^\']*)\' added tag \'([^\']*)\'/ or
878              $c =~ m/^Adding tag \'([^\']*)\' created by header tagger \'([^\']*)\'/) {
879
880         # Adding tag 'GET request' created by header tagger 'method-man' (XXX: no longer used)
881         # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. No action bit update necessary.
882         # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. Action bits updated accordingly.
883
884         # XXX: Save tag and tagger
885
886         $content =~ s@(?<=^Tagger \')([^\']*)@$h{'tagger'}$1$h{'Standard'}@;
887         $content =~ s@(?<=added tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
888         $content =~ s@(?<=Action bits )(updated)@$h{'action-bits-update'}$1$h{'Standard'}@;
889         $no_special_header_highlighting = 1;
890
891     } elsif ($c =~ /^Tagger \'([^\']*)\' didn['']t add tag \'([^\']*)\'/) {
892
893         # Tagger 'revalidation' didn't add tag 'REVALIDATION-REQUEST'. Tag already present
894         # XXX: Save tag and tagger
895
896         $content =~ s@(?<=^Tagger \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
897         $content =~ s@(?<=didn['']t add tag \')([^\']*)@$h{'tagger'}$1$h{'Standard'}@;
898
899     } elsif ($c =~ m/^(?:scan:|Randomiz|addh:|Adding:|Removing:|Referer:|Modified:|Accept-Language header|[Cc]ookie)/
900           or $c =~ m/^(Text mode is already enabled|Denied request with NULL byte|Replaced:|add-unique:)/
901           or $c =~ m/^(Crunched (incoming|outgoing) cookie|Suppressed offer|Accepted the client)/
902           or $c =~ m/^(addh-unique|Referer forged to)/
903           or $c =~ m/^Downgraded answer to HTTP\/1.0/
904           or $c =~ m/^Parameter: \+hide-referrer\{[^\}]*\} is a bad idea, but I don\'t care./
905           or $c =~ m/^Referer (?:overwritten|replaced) with: Referer: / #XXX: should this be highlighted?
906           or $c =~ m/^Referer crunched!/
907           or $c =~ m/^crunched x-forwarded-for!/
908           or $c =~ m/^crunched From!/
909           or $c =~ m/^ modified$/
910           or $c =~ m/^Content filtering is enabled. Crunching:/
911           or $c =~ m/^force-text-mode overruled the client/
912           or $c =~ m/^Server time in the future\./
913           or $c =~ m/^content-disposition header crunched and replaced with:/i
914           or $c =~ m/^Reducing white space in /
915           or $c =~ m/^Ignoring single quote in /
916           or $c =~ m/^Converting tab to space in /
917           or $c =~ m/A HTTP\/1\.1 response without/
918             )
919     {
920         # XXX: Some of these may need highlighting
921
922         # Modified: User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; pl-PL; rv:1.8.1.1) Gecko/20070214 Firefox/2.0.0.1
923         # Accept-Language header crunched and replaced with: Accept-Language: pl-pl
924         # cookie 'Set-Cookie: eZSessionCookie=07bfec287c197440d299f81580593c3d; \
925         #  expires=Thursday, 12-Apr-07 15:16:18 GMT; path=/' send by \
926         #  http://wirres.net/article/articleview/4265/1/6/ appears to be using time format 1 (XXX: gone with the wind)
927         # Cookie rewritten to a temporary one: Set-Cookie: NSC_gffe-iuuq-mc-wtfswfs=8efb33a53660;path=/
928         # Text mode is already enabled
929         # Denied request with NULL byte(s) turned into line break(s)
930         # Replaced: 'Connection: Yo, home to Bel Air' with 'Connection: close'
931         # addh-unique: Host: people.freebsd.org
932         # Suppressed offer to compress content
933         # Crunched incoming cookie -- yum!
934         # Accepted the client's request to fetch without filtering.
935         # Crunched outgoing cookie: Cookie: PREF=ID=6cf0abd347b30262:TM=1173357617:LM=1173357617:S=jZypyyJ7LPiwFi1_
936         # addh-unique: Host: subkeys.pgp.net:11371
937         # Referer forged to: Referer: http://10.0.0.1/
938         # Downgraded answer to HTTP/1.0
939         # Parameter: +hide-referrer{pille-palle} is a bad idea, but I don't care.
940         # Referer overwritten with: Referer: pille-palle
941         # Referer replaced with: Referer: pille-palle
942         # crunched x-forwarded-for!
943         # crunched From!
944         #  modified # XXX: pretty stupid log message
945         # Content filtering is enabled. Crunching: 'Range: 1234-5678' to prevent range-mismatch problems
946         # force-text-mode overruled the client's request to fetch without filtering!
947         # Server time in the future.
948         # content-disposition header crunched and replaced with: content-disposition: filename=baz
949         # Content-Disposition header crunched and replaced with: content-disposition: filename=baz
950         # Reducing white space in 'X-LWS-Test: "This  is  quoted" this is not "this  is  " but " this again   is  not'
951         # Ignoring single quote in 'X-LWS-Test: "This  is  quoted" this is not "this  is  " but "  this again   is  not'
952         # Converting tab to space in 'X-LWS-Test:   "This  is  quoted" this   is  not "this  is  "  but  "\
953         #  this again   is  not'
954         # A HTTP/1.1 response without Connection header implies keep-alive.
955
956     } elsif ($c =~ m/^scanning headers for:/) {
957
958         return '' unless SHOW_SCAN_INTRO;
959
960     } elsif ($c =~ m/^[Cc]runch(ing|ed)|crumble crunched:/) {
961         # crunched User-Agent!
962         # Crunching: Content-Encoding: gzip
963
964         $content =~ s@(Crunching|crunched)@$h{$1}$1$h{'Standard'}@;
965
966     } elsif ($c =~ m/^Offending request data with NULL bytes turned into \'°\' characters:/) {
967         
968         # Offending request data with NULL bytes turned into '°' characters: Â°Â°n°°(°°°
969
970         $content = h('warning') . $content . h('Standard');
971  
972     } elsif ($c =~ m/^(Transforming \")(.*?)(\" to \")(.*?)(\")/) {
973
974         # Transforming "Proxy-Authenticate: Basic realm="Correos Proxy Server"" to\
975         #  "Proxy-Authenticate: Basic realm="Correos Proxy Server""
976
977        $content =~ s@(?<=^Transforming \")(.*)(?=\" to)@$h{'Header'}$1$h{'Standard'}@;
978        $content =~ s@(?<=to \")(.*)(?=\")@$h{'Header'}$1$h{'Standard'}@;
979
980     } elsif ($c =~ m/^Removing empty header/) {
981
982         # Removing empty header
983         # Ignore for now
984
985     } elsif ($c =~ m/^Content-Type: .* not replaced/) {
986
987         # Content-Type: application/octet-stream not replaced. It doesn't look like text.\
988         #  Enable force-text-mode if you know what you're doing.
989         # XXX: Could highlight more here.
990         $content =~ s@(?<=^Content-Type: )(.*)(?= not replaced)@$h{'content-type'}$1$h{'Standard'}@;
991
992     } else {
993
994         found_unknown_content($content);
995     }
996
997     # Highlight headers   
998     unless ($c =~ m/^Transforming/) {
999         $content = highlight_known_headers($content) unless $no_special_header_highlighting;
1000     }
1001
1002     return $content;
1003 }
1004
1005 sub handle_loglevel_re_filter ($) {
1006
1007     my $content = shift;
1008     my $c = $content;
1009     my $key;
1010     our $t;
1011     our %req;
1012     our %h;
1013     our %header_colours;
1014     our @all_colours;
1015     our $header_colour_index;
1016
1017     if ($c =~ /\.{3}$/
1018         and $c =~ m/^(?:re_)?filtering \'?(.*?)\'? \(size (\d*)\) with (?:filter )?\'?([^\s]*?)\'? ?\.{3}$/) {
1019
1020         # Used by Privoxy 3.0.5 and 3.0.6:
1021         # XXX: Fill in ...
1022         # Used by Privoxy 3.0.7:
1023         # filtering 'Connection: close' (size 17) with 'generic-content-ads' ...
1024
1025         $req{$t}{'filtered_header'} = $1;
1026         $req{$t}{'old_header_size'} = $2;
1027         $req{$t}{'header_filter_name'} = $3;
1028
1029         unless (cli_option_is_set('show-ineffective-filters') or
1030                 $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/) {
1031             return '';
1032         }
1033         $content =~ s@(?<=\(size )(\d+)@$h{'Number'}$1$h{'Standard'}@;   
1034         $content =~ s@($req{$t}{'header_filter_name'})@$h{'filter'}$1$h{'Standard'}@;
1035
1036     } elsif ($c =~ m/^ ?\.\.\. ?produced (\d*) hits \(new size (\d*)\)\./) {
1037
1038         # ...produced 0 hits (new size 23).
1039         #... produced 1 hits (new size 54).
1040
1041         $req{$t}{'header_filter_hits'} = $1;
1042         $req{$t}{'new_header_size'} = $2;
1043
1044         unless (cli_option_is_set('show-ineffective-filters') or
1045                 (defined($req{$t}{'header_filter_name'}) and
1046                  $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/)) {
1047
1048             if ($req{$t}{'header_filter_hits'} == 0 and
1049                 not (defined($req{$t}{'header_filter_name'}) and
1050                  $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/)) {
1051                 return ''; 
1052             }
1053             # Reformat including information from the intro
1054             $c = "'" . h('filter') . $req{$t}{'header_filter_name'} . h('Standard') . "'";
1055             $c .= " hit ";
1056             # XXX: Hide behind constant, it may be interesting if LOG_LEVEL_HEADER isn't enabled as well.
1057             # $c .= $req{$t}{'filtered_header'} . " ";
1058             $c .= h('Number') . $req{$t}{'header_filter_hits'}. h('Standard');
1059             $c .= ($req{$t}{'header_filter_hits'} == 1) ? " time, " : " times, ";
1060
1061             if ($req{$t}{'old_header_size'} !=  $req{$t}{'new_header_size'}) {
1062
1063                 $c .= "changing size from ";
1064                 $c .=  h('Number') . $req{$t}{'old_header_size'} . h('Standard');
1065                 $c .= " to ";
1066                 $c .= h('Number') . $req{$t}{'new_header_size'} . h('Standard');
1067                 $c .= ".";
1068
1069             } else {
1070
1071                 $c .= "keeping the size at " . $req{$t}{'old_header_size'};
1072
1073             }
1074
1075             # Highlight from last line (XXX: What?)
1076             # $c =~ s@(?<=produced )(\d+)@$h{'Number'}$1$h{'Standard'}@;   
1077             # $c =~ s@($req{$t}{'header_filter_name'})@$h{'filter'}$1$h{'Standard'}@;
1078
1079         } else {
1080
1081            # XXX: Untested
1082            $c =~ s@(?<=produced )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1083            $c =~ s@(?<=new size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1084
1085         }
1086         $content = $c;
1087
1088     } elsif ($c =~ m/^(Tagger|Filter) ([^\s]*) has empty joblist. Nothing to do./) {
1089
1090         # Filter privoxy-filter-test has empty joblist. Nothing to do.
1091         # Tagger variable-test has empty joblist. Nothing to do.
1092
1093         $content =~ s@(?<=$1 )([^\s]*)@$h{'filter'}$1$h{'Standard'}@;
1094
1095     } elsif ($c =~ m/^(?:re_)?filtering ([^\s]+) \(size (\d+)\) with (?:filter )?\'?([^\s]+?)\'? produced (\d+) hits \(new size (\d+)\)/) {
1096
1097         # XXX: only the second version gets highlighted properly.
1098         # re_filtering www.lfk.de/favicon.ico (size 209) with filter untrackable-hulk produced 0 hits (new size 209).
1099         # filtering aci.blogg.de/ (size 37988) with 'blogg.de' produced 3 hits (new size 38057)
1100         $req{$t}{'content_source'} = $1;
1101         $req{$t}{'content_size'}   = $2;
1102         $req{$t}{'content_filter'} = $3;
1103         $req{$t}{'content_hits'}   = $4;
1104         $req{$t}{'new_content_size'} = $5;
1105         $req{$t}{'content_size_change'} = $req{$t}{'new_content_size'} - $req{$t}{'content_size'};
1106         #return '' if ($req{$t}{'content_hits'} == 0 && !cli_option_is_set('show-ineffective-filters'));
1107         if ($req{$t}{'content_hits'} == 0 and
1108             not (cli_option_is_set('show-ineffective-filters')
1109                  or ($req{$t}{'content_filter'} =~ m/^privoxy-filter-test$/))) {
1110                 return ''; 
1111         }
1112
1113         $c =~ s@(?<=\(size )(\d+)\)(?= with)@$h{'Number'}$1$h{'Standard'}@;
1114         $c =~ s@(?<=\(new size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1115         $c =~ s@(?<=produced )(\d+)(?= hits)@$h{'Number'}$1$h{'Standard'}@;
1116
1117         $c =~ s@([^\s]+?)(\'? produced)@$h{'filter'}$1$h{'Standard'}$2@;
1118         $c = highlight_matched_host($c, '(?<=filtering )[^\s]+');
1119
1120         $c =~ s@\.$@ @;
1121         $c .= "(" . $h{'Number'};
1122         $c .= "+" if ($req{$t}{'content_size_change'} >= 0);
1123         $c .= $req{$t}{'content_size_change'} . $h{'Standard'} . ")";
1124         $content = $c;
1125
1126     } elsif ($c =~ m/^De-chunking successful. Shrunk from (\d+) to (\d+)/) {
1127
1128         $req{$t}{'chunked-size'} = $1;
1129         $req{$t}{'dechunked-size'} = $2;
1130         $req{$t}{'dechunk-change'} = $req{$t}{'dechunked-size'} - $req{$t}{'chunked-size'};
1131
1132         $content .= " (" . h('Number') . $req{$t}{'dechunk-change'} . h('Standard') . ")";
1133
1134         $content =~ s@(?<=from )($req{$t}{'chunked-size'})@$h{'Number'}$1$h{'Standard'}@;
1135         $content =~ s@(?<=to )($req{$t}{'dechunked-size'})@$h{'Number'}$1$h{'Standard'}@;
1136
1137     } elsif ($c =~ m/^Decompression successful. Old size: (\d+), new size: (\d+)./) {
1138
1139         # Decompression successful. Old size: 670, new size: 1166.
1140
1141         $req{$t}{'size-compressed'} = $1;
1142         $req{$t}{'size-decompressed'} = $2;
1143         $req{$t}{'decompression-gain'} = $req{$t}{'size-decompressed'} - $req{$t}{'size-compressed'};
1144
1145         $content =~ s@(?<=Old size: )($req{$t}{'size-compressed'})@$h{'Number'}$1$h{'Standard'}@;
1146         $content =~ s@(?<=new size: )($req{$t}{'size-decompressed'})@$h{'Number'}$1$h{'Standard'}@;
1147
1148         # XXX: Create sub get_percentage()
1149         if ($req{$t}{'size-decompressed'}) {
1150             $req{$t}{'decompression-gain-percent'} =
1151                 $req{$t}{'decompression-gain'} / $req{$t}{'size-decompressed'} * 100;
1152
1153             $content .= " (saved: ";
1154             #$content .= h('Number') . $req{$t}{'decompression-gain'} . h('Standard');
1155             #$content .= "/";
1156             $content .= h('Number') . sprintf("%.2f%%", $req{$t}{'decompression-gain-percent'}) . h('Standard');
1157             $content .= ")";
1158         }
1159
1160     } elsif ($c =~ m/^(Need to de-chunk first)/) {
1161
1162         # Need to de-chunk first
1163         return '' if SUPPRESS_NEED_TO_DE_CHUNK_FIRST;
1164
1165     } elsif ($c =~ m/^(Adding (?:dynamic )?re_filter job)/) {
1166
1167         return ''  if (SUPPRESS_SUCCEEDED_FILTER_ADDITIONS && m/succeeded/);
1168
1169         # Adding re_filter job ...
1170         # Adding dynamic re_filter job s@^(?:\w*)\s+.*\s+HTTP/\d\.\d\s*@IP-ADDRESS: $origin@D\
1171         #  to filter client-ip-address succeeded.
1172
1173     } elsif ($c =~ m/^Reading in filter/) {
1174
1175         return '' unless SHOW_FILTER_READIN_IN;
1176
1177     } else {
1178
1179         found_unknown_content($content);
1180
1181     }
1182
1183     return $content;
1184 }
1185
1186
1187 sub handle_loglevel_redirect ($) {
1188
1189     my $c = shift;
1190     our $t;
1191     our %req;
1192     our %h;
1193
1194     if ($c =~ m/^Decoding "([^""]*)"/) {
1195
1196          $req{$t}{'original-destination'} = $1;
1197          $c = highlight_matched_path($c, '(?<=Decoding ")[^"]*');
1198          $c =~ s@\"@@g;
1199
1200     } elsif ($c =~ m/^Checking/) {
1201
1202          # Checking /_ylt=A0geu.Z76BRGR9k/**http://search.yahoo.com/search?p=view+odb+presentation+on+freebsd\
1203          #  &ei=UTF-8&xargs=0&pstart=1&fr=moz2&b=11 for redirects.
1204
1205          # TODO: Change colour if really url-decoded
1206          $req{$t}{'decoded-original-destination'} = $1;
1207          $c = highlight_matched_path($c, '(?<=Checking ")[^"]*');
1208          $c =~ s@\"@@g;
1209
1210     } elsif ($c =~ m/^pcrs command "([^""]*)" changed "([^""]*)" to "([^""]*)" \((\d+) hits?\)/) {
1211
1212         # pcrs command "s@&from=rss@@" changed "http://it.slashdot.org/article.pl?sid=07/03/02/1657247&from=rss"\
1213         #  to "http://it.slashdot.org/article.pl?sid=07/03/02/1657247" (1 hit).
1214
1215         my ($pcrs_command, $url_before, $url_after, $hits) = ($1, $2, $3, $4); # XXX: save these?
1216
1217         $c =~ s@(?<=pcrs command )"([^""]*)"@$h{'filter'}$1$h{'Standard'}@;
1218         $c = highlight_matched_url($c, '(?<=changed ")[^""]*');
1219         $c =~ s@(?<=changed )"([^""]*)"@$1@; # Remove quotes
1220         $c = highlight_matched_url($c, '(?<=to ")[^""]*');
1221         $c =~ s@(?<=to )"([^""]*)"@$1@; # Remove quotes
1222         $c =~ s@(\d+)(?= hits?)@$h{'hits'}$1$h{'Standard'}@;
1223
1224     } elsif ($c =~ m/(^New URL is: )(.*)/) {
1225
1226         # New URL is: http://it.slashdot.org/article.pl?sid=07/03/04/1511210
1227         # XXX: Use URL highlighter
1228         # XXX: Save?
1229         $c = $1 . h('rewritten-URL') . $2 . h('Standard');
1230
1231     } elsif ($c =~ m/No pcrs command recognized, assuming that/) {
1232         # No pcrs command recognized, assuming that "http://config.privoxy.org/user-manual/favicon.png"\
1233         #  is already properly formatted.
1234         # XXX: assume the same?
1235         $c = highlight_matched_url($c, '(?<=assuming that \")[^"]*');
1236
1237     } else {
1238
1239         found_unknown_content($c);
1240
1241     }
1242
1243     return $c;
1244 }
1245
1246 sub handle_loglevel_gif_deanimate ($) {
1247
1248     my $content = shift;
1249     our $t;
1250     our %req;
1251     our %h;
1252
1253     if ($content =~ m/Success! GIF shrunk from (\d+) bytes to (\d+)\./) {
1254
1255         my $bytes_from = $1;
1256         my $bytes_to = $2;
1257         # Gif-Deanimate: Success! GIF shrunk from 205 bytes to 133.
1258         $content =~ s@$bytes_from@$h{'Number'}$bytes_from$h{'Standard'}@;
1259         # XXX: Do we need g in case of ($1 == $2)?
1260         $content =~ s@$bytes_to@$h{'Number'}$bytes_to$h{'Standard'}@;
1261
1262     } elsif ($content =~ m/GIF (not) changed/) {
1263
1264         # Gif-Deanimate: GIF not changed.
1265         return '' if SUPPRESS_GIF_NOT_CHANGED;
1266         $content =~ s@($1)@$h{'not'}$1$h{'Standard'}@;
1267
1268     } elsif ($content =~ m/^failed! \(gif parsing\)/) {
1269
1270         # failed! (gif parsing)
1271         # XXX: Replace this error message with something less stupid 
1272         $content =~ s@(failed!)@$h{'error'}$1$h{'Standard'}@;
1273
1274     } elsif ($content =~ m/^Need to de-chunk first/) {
1275
1276         # Need to de-chunk first
1277         return '' if SUPPRESS_NEED_TO_DE_CHUNK_FIRST;
1278
1279     } elsif ($content =~ m/^(?:No GIF header found|failed while parsing)/) {
1280
1281         # No GIF header found (XXX: Did I ever commit this?)
1282         # failed while parsing 195 134747048 (XXX: never commited)
1283
1284         # Ignore these for now
1285
1286     } else {
1287
1288         found_unknown_content($content);
1289
1290     }
1291
1292     return $content;
1293 }
1294
1295
1296 sub handle_loglevel_request ($) {
1297
1298     my $content = shift;
1299     our $t;
1300     our %req;
1301     our %h;
1302     our %reason_colours;
1303
1304     if ($content =~ m/crunch! /) {
1305
1306         # config.privoxy.org/send-stylesheet crunch! (CGI Call)
1307
1308         # Highlight crunch reasons
1309         foreach my $reason (keys %reason_colours) {
1310             $content =~ s@\(($reason)\)@$reason_colours{$reason}($1)$h{'Standard'}@g;
1311         }
1312         # Highlight request URL domain and ditch 'crunch!'
1313         $content = highlight_matched_pattern($content, 'request_', '[^ ]*(?= crunch!)');
1314         $content =~ s@ crunch!@@;
1315
1316     } elsif ($content =~ m/\[too long, truncated\]$/) {
1317
1318         # config.privoxy.org/edit-actions-submit?f=3&v=1176116716&s=7&Submit=Submit[...]&filter... [too long, truncated]
1319         $content = highlight_matched_pattern($content, 'request_', '^.*(?=\.\.\. \[too long, truncated\]$)');
1320
1321     } elsif ($content =~ m/(.*)/) { # XXX: Pretty stupid
1322
1323         # trac.vidalia-project.net/wiki/Volunteer?format=txt
1324         $content = h('request_') . $content . h('Standard');
1325
1326     } else {  # XXX: Nop
1327
1328         found_unknown_content($content);
1329
1330     }
1331             
1332     return $content;
1333 }
1334
1335 sub handle_loglevel_connect ($) {
1336
1337     my $c = shift;
1338     our $t;
1339     our %req;
1340     our %h;
1341
1342     if ($c =~ m/via [^\s]+ to: [^\s]+/) {
1343
1344         # Connect: via 10.0.0.1:8123 to: www.example.org.noconnect
1345
1346         $c = highlight_matched_host($c, '(?<=via )[^\s]+');
1347         $c = highlight_matched_host($c, '(?<=to: )[^\s]+');
1348
1349     } elsif ($c =~ m/connect to: .* failed: .*/) {
1350
1351         # connect to: www.example.org.noconnect failed: Operation not permitted
1352
1353         $c = highlight_matched_host($c, '(?<=connect to: )[^\s]+');
1354
1355         $c =~ s@(?<=failed: )(.*)@$h{'error'}$1$h{'Standard'}@;
1356
1357     } elsif ($c =~ m/to ([^\s]*) successful$/) {
1358
1359         # Connect: to www.nzherald.co.nz successful
1360
1361         return '' if SUPPRESS_SUCCESSFUL_CONNECTIONS;
1362         $c = highlight_matched_host($c, '(?<=to )[^\s]+');
1363
1364     } elsif ($c =~ m/to ([^\s]*)$/) {
1365
1366         # Connect: to lists.sourceforge.net:443
1367
1368         $c = highlight_matched_host($c, '(?<=to )[^\s]+');
1369
1370     } elsif ($c =~ m/^accepted connection from .*/ or
1371              $c =~ m/^OK/) {
1372
1373         # accepted connection from 10.0.0.1
1374         # Privoxy 3.0.6 and earlier just say:
1375         # OK
1376         return '' if SUPPRESS_ACCEPTED_CONNECTIONS;
1377         $c = highlight_matched_host($c, '(?<=connection from ).*');
1378
1379     } elsif ($c =~ m/^write header to: .* failed:/) {
1380
1381         # write header to: 10.0.0.1 failed: Broken pipe
1382
1383         $c = highlight_matched_host($c, '(?<=write header to: )[^\s]*');
1384         $c =~ s@(?<=failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1385
1386     } elsif ($c =~ m/^write header to client failed:/) {
1387
1388         # write header to client failed: Broken pipe
1389         # XXX: Stil in use?
1390         $c =~ s@(?<=failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1391
1392     } elsif ($c =~ m/^socks4_connect:/) {
1393
1394         # socks4_connect: SOCKS request rejected or failed.
1395         $c =~ s@(?<=socks4_connect: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1396
1397     } elsif ($c =~ m/^Listening for new connections/ or
1398              $c =~ m/^accept connection/) {
1399         # XXX: Highlight?
1400         # Privoxy versions above 3.0.6 say:
1401         # Listening for new connections ...
1402         # earlier versions say:
1403         # accept connection ...
1404         return '';
1405
1406     } elsif ($c =~ m/^accept failed:/) {
1407
1408         $c =~ s@(?<=accept failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1409
1410     } elsif ($c =~ m/^Overriding forwarding settings/) {
1411
1412         # Overriding forwarding settings based on 'forward 10.0.0.1:8123'
1413         $c =~ s@(?<=based on \')(.*)(?=\')@$h{'configuration-line'}$1$h{'Standard'}@;
1414
1415     } elsif ($c =~ m/^Denying suspicious CONNECT request from/) {
1416
1417         # Denying suspicious CONNECT request from 10.0.0.1
1418         $c = highlight_matched_host($c, '(?<=from )[^\s]+'); # XXX: not an URL
1419
1420     } elsif ($c =~ m/^socks5_connect:/) {
1421     
1422         $c =~ s@(?<=socks5_connect: )(.*)@$h{'error'}$1$h{'Standard'}@;
1423
1424     } elsif ($c =~ m/^Found reusable socket/) {
1425
1426         # Found reusable socket 9 for www.privoxy.org:80 in slot 0.
1427         $c =~ s@(?<=Found reusable socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1428         $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1429         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1430
1431     } elsif ($c =~ m/^Marking open socket/) {
1432
1433         # Marking open socket 9 for www.privoxy.org:80 in slot 0 as unused.
1434         $c =~ s@(?<=Marking open socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1435         $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1436         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1437
1438     } elsif ($c =~ m/^No reusable/) {
1439
1440         # No reusable socket for addons.mozilla.org:443 found. Opening a new one.
1441         $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1442
1443     } elsif ($c =~ m/^(Remembering|Forgetting) socket/) {
1444
1445         # Remembering socket 13 for www.privoxy.org:80 in slot 0.
1446         # Forgetting socket 38 for www.privoxy.org:80 in slot 5.
1447         $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1448         $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1449         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1450
1451     } elsif ($c =~ m/^Socket/) {
1452
1453         # Socket 18 for www.privoxy.org:80 in slot 0 is no longer usable. Closing.
1454         # Socket 16 already forgotten or never remembered.
1455         $c =~ s@(?<=Socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1456         $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1457         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1458
1459     } elsif ($c =~ m/^The connection to/) {
1460
1461         # The connection to www.privoxy.org:80 in slot 0 timed out. Closing.
1462         $c = highlight_matched_host($c, '(?<=connection to )[^\s]+');
1463         $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1464
1465     } elsif ($c =~ m/^Initialized/) {
1466
1467         # Initialized 20 socket slots.
1468         $c =~ s@(?<=Initialized )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1469
1470     } elsif ($c =~ m/^Done reading from server/) {
1471
1472         # Done reading from server. Expected content length: 24892. \
1473         #  Actual content length: 24892. Most recently received: 4412.
1474         $c =~ s@(?<=Expected content length: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1475         $c =~ s@(?<=Actual content length: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1476         $c =~ s@(?<=received: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1477
1478     } elsif ($c =~ m/^Looks like we reached/ or
1479              $c =~ m/^Unsetting keep-alive flag/) {
1480
1481         # Looks like we reached the end of the last chunk. We better stop reading.
1482         # Unsetting keep-alive flag.
1483
1484     } else {
1485
1486         found_unknown_content($c);
1487
1488     }
1489             
1490     return $c;
1491 }
1492
1493
1494 sub handle_loglevel_info ($) {
1495
1496     my $c = shift;
1497     our $t;
1498     our %req;
1499     our %h;
1500  
1501     if ($c =~ m/^Rewrite detected:/) {
1502
1503         # Rewrite detected: GET http://10.0.0.2:88/blah.txt HTTP/1.1
1504         $c = highlight_matched_request_line($c, '(?<=^Rewrite detected: ).*');
1505
1506     } elsif ($c =~ m/^Decompress(ing deflated|ion didn)/ or
1507              $c =~ m/^Compressed content detected/ or
1508              $c =~ m/^Tagger/
1509             ) {
1510         # Decompressing deflated iob: 117
1511         # Decompression didn't result in any content.
1512         # Compressed content detected, content filtering disabled. Consider recompiling Privoxy\
1513         #  with zlib support or enable the prevent-compression action.
1514         # Tagger 'complete-url' created empty tag. Ignored.
1515
1516         # Ignored for now
1517
1518     } elsif ($c =~ m/^(Re)?loading configuration file /) {
1519
1520         # loading configuration file '/usr/local/etc/privoxy/config':
1521         # Reloading configuration file '/usr/local/etc/privoxy/config'
1522         $c =~ s@(?<=loading configuration file \')([^\']*)@$h{'file'}$1$h{'Standard'}@;
1523
1524     } elsif ($c =~ m/^exiting by signal/) {
1525         
1526         # exiting by signal 15 .. bye
1527         $c =~ s@(?<=exiting by signal )(\d+)@$h{'signal'}$1$h{'Standard'}@;
1528
1529     } elsif ($c =~ m/^Privoxy version/) {
1530         
1531         # Privoxy version 3.0.7
1532         $c =~ s@(?<=^Privoxy version )(\d+\.\d+\.\d+)$@$h{'version'}$1$h{'Standard'}@;
1533
1534     } elsif ($c =~ m/^Program name: /) {
1535
1536         # Program name: /usr/local/sbin/privoxy
1537         $c =~ s@(?<=Program name: )(.*)@$h{'program-name'}$1$h{'Standard'}@;
1538
1539     } elsif ($c =~ m/^Listening on port /) {
1540
1541         # Listening on port 8118 on IP address 10.0.0.1
1542         $c =~ s@(?<=Listening on port )(\d+)@$h{'port'}$1$h{'Standard'}@;
1543         $c =~ s@(?<=on IP address )(.*)@$h{'ip-address'}$1$h{'Standard'}@;
1544
1545     } elsif ($c =~ m/^\(Re-\)Open(?:ing)? logfile/) {
1546
1547         # (Re-)Open logfile /var/log/privoxy/privoxy.log
1548         $c =~ s@(?<=Open logfile )(.*)@$h{'file'}$1$h{'Standard'}@;
1549
1550     } elsif ($c =~ m/^(Request from|Malformed server response detected)/) {
1551
1552         # Request from 10.0.0.1 denied. limit-connect{,} doesn't allow CONNECT requests to port 443.
1553         # Request from 10.0.0.1 marked for blocking. limit-connect{,} doesn't allow CONNECT requests to port 443.
1554         # Malformed server response detected. Downgrading to HTTP/1.0 impossible.
1555
1556         $c =~ s@(?<=Request from )([^\s]*)@$h{'ip-address'}$1$h{'Standard'}@;
1557         $c =~ s@(denied|blocking)@$h{'warning'}$1$h{'Standard'}@;
1558         $c =~ s@(CONNECT)@$h{'method'}$1$h{'Standard'}@;
1559         $c =~ s@(?<=to port )(\d+)@$h{'port'}$1$h{'Standard'}@;
1560
1561     } elsif ($c =~ m/^Status code/) {
1562
1563         # Status code 304 implies no body.
1564         $c =~ s@(?<=Status code )(\d+)@$h{'status-code'}$1$h{'Standard'}@;
1565
1566     } elsif ($c =~ m/^Method/) {
1567
1568         # Method HEAD implies no body.
1569         $c =~ s@(?<=Method )([^\s]+)@$h{'method'}$1$h{'Standard'}@;
1570
1571     } elsif ($c =~ m/^No logfile configured/ or
1572              $c =~ m/^Malformerd HTTP headers detected and MS IIS5 hack enabled/ or
1573              $c =~ m/^Invalid \"chunked\" transfer/ or
1574              $c =~ m/^Support for/
1575              ) {
1576
1577         # No logfile configured. Please enable it before reporting any problems.
1578         # Malformerd HTTP headers detected and MS IIS5 hack enabled. Expect an invalid \
1579         #  response or even no response at all.
1580         # No logfile configured. Logging disabled.
1581         # Invalid "chunked" transfer encoding detected and ignored.
1582         # Support for 'Connection: keep-alive' is experimental, incomplete and\
1583         #  known not to work properly in some situations.
1584
1585     } else {
1586
1587         found_unknown_content($c);
1588
1589     }
1590
1591     return $c;
1592 }
1593
1594 sub handle_loglevel_cgi ($) {
1595
1596     my $c = shift;
1597     our $t;
1598     our %req;
1599     our %h;
1600
1601     if ($c =~ m/^Granting access to/) {
1602       
1603         #Granting access to http://config.privoxy.org/send-stylesheet, referrer http://p.p/ is trustworthy.
1604
1605     } elsif ($c =~ m/^Substituting: s(.)/) {
1606       
1607         # Substituting: s/@else-not-FEATURE_ZLIB@.*@endif-FEATURE_ZLIB@//sigTU
1608         # XXX: prone to span several lines
1609
1610         my $delimiter = $1;
1611         #$c =~ s@(?<=failed: )(.*)@$h{'error'}$1$h{'Standard'}@;
1612         $c =~ s@(?!<=\\)($delimiter)@$h{'pcrs-delimiter'}$1$h{'Standard'}@g; # XXX: Too aggressive
1613         #$c =~ s@(?!<=\\)($1)@$h{'pcrs-delimiter'}$1$h{'Standard'}@g;
1614     }
1615
1616     return $c;
1617 }
1618
1619 sub handle_loglevel_force ($) {
1620
1621     my $c = shift;
1622     our $t;
1623     our %req;
1624     our %h;
1625
1626     if ($c =~ m/^Ignored force prefix in request:/) {
1627       
1628         # Ignored force prefix in request: "GET http://10.0.0.1/PRIVOXY-FORCE/block HTTP/1.1"
1629         $c =~ s@^(Ignored)@$h{'ignored'}$1$h{'Standard'}@;
1630         $c = highlight_matched_request_line($c, '(?<=request: ")[^"]*');
1631
1632     } elsif ($c =~ m/^Enforcing request:/) {
1633       
1634         # Enforcing request: "GET http://10.0.0.1/block HTTP/1.1".
1635         $c = highlight_matched_request_line($c, '(?<=request: ")[^"]*');
1636
1637     } else {
1638
1639         found_unknown_content($c);
1640
1641     }
1642
1643     return $c;
1644 }
1645
1646 sub handle_loglevel_ignore ($) {
1647     return shift;
1648 }
1649
1650 ################################################################################
1651 # Functions that actually print stuff
1652 ################################################################################
1653
1654 sub print_clf_message () {
1655
1656     our ($ip, $timestamp, $request_line, $status_code, $size);
1657     our %h;
1658     my $output = '';
1659
1660     return if DEBUG_SUPPRESS_LOG_MESSAGES;
1661
1662     # Rebuild highlighted
1663     $output .= $h{'Number'} . $ip . $h{'Standard'};
1664     $output .= " - - ";
1665     $output .= "[" . $h{'Timestamp'} . $timestamp . $h{'Standard'} . "]";
1666     $output .= " ";
1667     $output .= "\"" . highlight_request_line("$request_line") . "\"";
1668     $output .= " ";
1669     $output .= $h{'Status'} . $status_code . $h{'Standard'};
1670     $output .= " ";
1671     $output .= $h{'Number'} . $size . $h{'Standard'};
1672     $output .= get_line_end();
1673
1674     print $output;
1675 }
1676
1677 sub print_non_clf_message ($) {
1678
1679     our %req;
1680     our %thread_colours;
1681     our %h;
1682     our $t;
1683     our $time_colour_index;
1684     our @time_colours;
1685     my $output;
1686     my $content = shift;
1687     my ($day, $time_stamp, $msecs, $thread, $log_level)
1688      = ($req{$t}{'day'}, $req{$t}{'time-stamp'}, $req{$t}{'msecs'}, $t, $req{$t}{'log-level'} );
1689
1690     return if DEBUG_SUPPRESS_LOG_MESSAGES;
1691
1692     $output .= $h{"Standard"} unless cli_option_is_set('html-output');
1693     #    $output .= "$day ";
1694     $output .= $time_colours[$time_colour_index % 2]; 
1695
1696     $output .= $time_stamp;
1697     $output .= ".$msecs" unless cli_option_is_set('no-msecs');
1698     $output .= $h{"Standard"};
1699     $output .= " ";
1700     $output .= $thread_colours{$thread} if (defined($thread_colours{$thread}));
1701     $output .= $thread;
1702     $output .= $h{"Standard"} . " ";
1703     $output .= $h{$log_level} if (defined($h{$log_level}));
1704     $output .= $log_level;
1705     $output .= $h{"Standard"} . ": ";
1706     $output .= "$content";
1707     $output .= get_line_end();
1708
1709     print $output;
1710 }
1711
1712 sub parse_loop () {
1713
1714     our $t;
1715     our %req; # request data from previous lines
1716     our %h;
1717     our %thread_colours;
1718     our @all_colours;
1719     our @time_colours;
1720     our $thread_colour_index = 0;
1721     our $header_colour_index = 0;
1722     our $time_colour_index = 0;
1723
1724     my ($day, $time_stamp, $thread, $log_level, $content, $c, $msecs);
1725     my $last_msecs  = 0;
1726     my $last_thread = 0;
1727     my $last_timestamp = 0;
1728     my $output;
1729     my $filters_that_did_nothing;
1730     my $key;
1731     my $time_colour;
1732     our $no_special_header_highlighting;
1733     $time_colour = paint_it('white');
1734     my %log_level_count;
1735
1736     my %log_level_handlers = (
1737         'Re-Filter'     => \&handle_loglevel_re_filter,
1738         'Header'        => \&handle_loglevel_header,
1739         'Connect'       => \&handle_loglevel_connect,
1740         'Redirect'      => \&handle_loglevel_redirect,
1741         'Request'       => \&handle_loglevel_request,
1742         'Gif-Deanimate' => \&handle_loglevel_gif_deanimate,
1743         'Info'          => \&handle_loglevel_info,
1744         'CGI'           => \&handle_loglevel_cgi,
1745         'Force'         => \&handle_loglevel_force,
1746         'Error'         => \&handle_loglevel_ignore,
1747         'Fatal error'   => \&handle_loglevel_ignore,
1748         'Writing'       => \&handle_loglevel_ignore,
1749     );
1750
1751     while (<>) {
1752  
1753         $output = '';
1754
1755         if (m/^(\w{3} \d{2}) (\d\d:\d\d:\d\d)\.?(\d+)? (?:Privoxy\(([^\)]*)\)) ([\w -]*): (.*)$/) {
1756             # XXX: Put in req hash?
1757             $day = $1;
1758             $time_stamp = $2;
1759             $msecs = $3 ? $3 : 0; # Only the cool kids have micro second resolution
1760             $log_level = $5;
1761             $content = $c = $6;
1762             $thread = $t = $4;
1763
1764             $req{$t}{'day'} = $day;
1765             $req{$t}{'time-stamp'} = $time_stamp;
1766             $req{$t}{'msecs'} = $msecs; # Only the cool kids have micro second resolution;
1767             $req{$t}{'log-level'} = $log_level;
1768             $req{$t}{'content'} = $content;
1769             $req{$t}{'log-message'} = $_;
1770             $no_special_header_highlighting = 0;
1771
1772             $log_level_count{$log_level}++;
1773
1774             if (defined($log_level_handlers{$log_level})) {
1775
1776                 $content = $log_level_handlers{$log_level}($content);
1777
1778             } else {
1779
1780                 die "No handler found for log level \"$log_level\"\n";
1781
1782             }
1783
1784             # Highlight Truncations    
1785             if (m/\.\.\. \[(too long, truncated)/) {
1786                 $content =~ s@($1)@$h{'Truncation'}$1$h{'Standard'}@g;
1787             }
1788
1789             next unless $content;
1790
1791             # Register threads to keep the colour constant
1792             if (!defined($thread_colours{$thread})) {
1793                 $thread_colours{$thread} = $all_colours[$thread_colour_index % @all_colours];
1794                 $thread_colour_index++;
1795             }
1796
1797             # Switch timestamp colour if timestamps differ
1798             if ($msecs != $last_msecs || !($time_stamp =~ m/$last_timestamp/)) {
1799                debug_message("Tick tack!") if DEBUG_TICKS;
1800                $time_colour = $time_colours[$time_colour_index % 2]; 
1801                $time_colour_index++
1802             }
1803
1804             $last_msecs = $msecs;
1805             $last_thread = $thread;
1806             $last_timestamp = $time_stamp;
1807
1808             print_non_clf_message($content);
1809
1810         } elsif (m/^(\d+\.\d+\.\d+\.\d+) - - \[(.*)\] "(.*)" (\d+) (\d+)/) {
1811
1812             # LOG_LEVEL_CLF lines look like this
1813             # 61.152.239.32 - - [04/Mar/2007:18:28:23 +0100] "GET \
1814             #  http://ad.yieldmanager.com/imp?z=1&Z=120x600&s=109339&u=http%3A%2F%2Fwww.365loan.co.uk%2F&r=1\
1815             #  HTTP/1.1" 403 1730
1816             our ($ip, $timestamp, $request_line, $status_code, $size) = ($1, $2, $3, $4, $5);
1817
1818             print_clf_message();
1819     
1820         } else {
1821
1822             # Some Privoxy log messages span more than one line,
1823             # usually to dump lots of content that doesn't need any syntax highlighting.
1824             # XXX: add mechanism to forward these lines to the right handler anyway.
1825             chomp();
1826             unless (DEBUG_SUPPRESS_LOG_MESSAGES or (SUPPRESS_EMPTY_LINES and m/^\s+$/)) {
1827                 print and print get_line_end(); # unless (SUPPRESS_EMPTY_LINES and m/^\s+$/);
1828             }
1829         }
1830     }
1831
1832     if (cli_option_is_set('statistic')) {
1833         foreach (keys %log_level_count) {
1834             print $_ . ": " . $log_level_count{$_} . " ";
1835         }
1836     }
1837 }
1838
1839 sub VersionMessage {
1840     my $version_message;
1841
1842     $version_message .= 'Privoxy-Log-Parser ' . PRIVOXY_LOG_PARSER_VERSION  . "\n";
1843     $version_message .= 'Copyright (C) 2007-2008 Fabian Keil <fk@fabiankeil.de>' . "\n";
1844     $version_message .= 'http://www.fabiankeil.de/sourcecode/privoxy-log-parser/' . "\n";
1845
1846     print $version_message;
1847 }
1848
1849 sub get_cli_options () {
1850
1851     our %cli_options = (
1852         'html-output'              => CLI_OPTION_DEFAULT_TO_HTML_OUTPUT,
1853         'title'                    => CLI_OPTION_TITLE,
1854         'no-syntax-highlighting'   => CLI_OPTION_NO_SYNTAX_HIGHLIGHTING,
1855         'no-embedded-css'          => CLI_OPTION_NO_EMBEDDED_CSS,
1856         'no-msecs'                 => CLI_OPTION_NO_MSECS,
1857         'show-ineffective-filters' => CLI_OPTION_SHOW_INEFFECTIVE_FILTERS,
1858         'accept-unknown-messages'  => CLI_OPTION_ACCEPT_UNKNOWN_MESSAGES,
1859         'statistic'                => CLI_OPTION_STATISTIC,
1860     ); 
1861
1862     GetOptions (
1863         'html-output'              => \$cli_options{'html-output'},
1864         'title'                    => \$cli_options{'title'},
1865         'no-syntax-highlighting'   => \$cli_options{'no-syntax-highlighting'},
1866         'no-embedded-css'          => \$cli_options{'no-embedded-css'},
1867         'no-msecs'                 => \$cli_options{'no-msecs'},
1868         'show-ineffective-filters' => \$cli_options{'show-ineffective-filters'},
1869         'accept-unknown-messages'  => \$cli_options{'accept-unknown-messages'},
1870         'statistic'                => \$cli_options{'statistic'},
1871         'version'                  => sub { VersionMessage && exit(0) }
1872    );
1873 }
1874
1875
1876
1877 ################################################################################
1878 # main
1879 ################################################################################
1880 sub main () {
1881
1882     get_cli_options();
1883     set_background(DEFAULT_BACKGROUND);
1884     prepare_our_stuff();
1885
1886     print_intro();
1887
1888     parse_loop();
1889
1890     print_outro();
1891 }
1892
1893 main();
1894
1895 =head1 NAME
1896
1897 B<privoxy-log-parser> - A parser and syntax-highlighter for Privoxy log messages
1898
1899 =head1 SYNOPSIS
1900
1901 B<privoxy-log-parser> [B<--accept-unknown-messages>] [B<--html-output>]
1902 [B<--no-msecs>] [B<--no-syntax-higlighting>] [B<--show-ineffective-filters>]
1903 [B<--version>]
1904
1905 =head1 DESCRIPTION
1906
1907 B<privoxy-log-parser> reads Privoxy log messages and
1908
1909 - syntax-highlights recognized lines,
1910
1911 - reformats some of them for easier comprehension,
1912
1913 - filters out less useful messages, and
1914
1915 - (in some cases) calculates additional information,
1916   like the compression ratio or how a filter affected
1917   the content size.
1918  
1919 With B<privoxy-log-parser> you should be able to increase Privoxy's log level
1920 without getting confused by the resulting amount of output. For example for
1921 "debug 64" B<privoxy-log-parser> will (by default) only show messages that
1922 affect the content. If a filter doesn't cause any hits, B<privoxy-log-parser>
1923 will hide the "filter foo caused 0 hits" message.
1924
1925 =head1 OPTIONS
1926
1927 [B<--accept-unknown-messages>] Don't print warnings in case of unknown messages,
1928 just don't highlight them.
1929
1930 [B<--html-output>] Use HTML and CSS for the syntax highlighting. If this option is
1931 omitted, ANSI escape sequences are used unless B<--no-syntax-highlighting> is active.
1932 This option is only intended to make embedding log excerpts in web pages easier.
1933 It does not excape any input!
1934
1935 [B<--no-msecs>] Don't expect milisecond resolution
1936
1937 [B<--no-syntax-highlighting>] Disable syntax-highlighting. Useful when
1938 the filtered output is piped into less in which case the ANSI control
1939 codes don't work, or if the terminal itself doesn't support the control
1940 codes.
1941
1942 [B<--show-ineffective-filters>] Don't suppress log lines for filters
1943 that didn't modify the content.
1944
1945 [B<--version>] Print version and exit.
1946
1947 =head1 EXAMPLES
1948
1949 To monitor a log file:
1950
1951 tail -F /usr/jails/privoxy-jail/var/log/privoxy/privoxy.log | B<privoxy-log-parser>
1952
1953 Replace '-F' with '-f' if your tail implementation lacks '-F' support
1954 or if the log won't get rotated anyway. The log file location depends
1955 on your system (Doh!).
1956
1957 To monitor Privoxy without having it write to a log file:
1958
1959 privoxy --no-daemon /usr/jails/privoxy-jail/usr/local/etc/privoxy/config 2>&1 | B<privoxy-log-parser>
1960
1961 Again, the config file location depends on your system. Output redirection
1962 depends on your shell, the above works with bourne shells.
1963
1964 To read a processed Privoxy log file from top to bottom, letting the content
1965 scroll by slightly faster than you can read:
1966
1967 B<privoxy-log-parser> < /usr/jails/privoxy-jail/var/log/privoxy/privoxy.log
1968
1969 This is probably only useful to fill screens in the background of haxor movies.
1970
1971 =head1 CAVEATS
1972
1973 Syntax highlighting with ANSI escape sequences will look strange
1974 if your background color isn't black.
1975
1976 Some messages aren't recognized yet and will not be fully highlighted.
1977
1978 B<privoxy-log-parser> is developed with Privoxy 3.0.7 or later in mind,
1979 using earlier Privoxy versions will probably result in an increased amount
1980 of unrecognized log lines.
1981
1982 Privoxy's log files tend to be rather large. If you use HTML
1983 highlighting some browsers can't handle them, get confused and
1984 will eventually crash because of segmentation faults or unexpected
1985 exceptions. This is a problem in the browser and not B<privoxy-log-parser>'s
1986 fault.
1987
1988 =head1 BUGS
1989
1990 Many settings can't be controlled through command line options yet.
1991
1992 =head1 SEE ALSO
1993
1994 privoxy(1)
1995
1996 =head1 AUTHOR
1997
1998 Fabian Keil <fk@fabiankeil.de>
1999
2000 =cut