3 ################################################################################
6 # A parser for Privoxy log messages. For incomplete documentation run
7 # perldoc privoxy-log-parser(.pl), for fancy screenshots see:
9 # https://www.fabiankeil.de/sourcecode/privoxy-log-parser/
12 # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting
13 # - create fancy statistics
14 # - grep through Privoxy sources to find unsupported log messages
15 # - hunt down substitutions that match content from variables which
16 # can contain stuff like ()?'[]
17 # - replace $h{'foo'} with h('foo') where possible
18 # - hunt down XXX comments instead of just creating them
19 # - add example log lines for every regex and mark them up for
21 # - Handle incomplete input without Perl warning about undefined variables.
22 # - Use generic highlighting function that takes a regex and the
24 # - Add --compress and --decompress options.
26 # Copyright (c) 2007-2022 Fabian Keil <fk@fabiankeil.de>
28 # Permission to use, copy, modify, and distribute this software for any
29 # purpose with or without fee is hereby granted, provided that the above
30 # copyright notice and this permission notice appear in all copies.
32 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
33 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
34 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
35 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
36 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
37 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
38 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
39 ################################################################################
46 PRIVOXY_LOG_PARSER_VERSION => '0.9.5',
47 # Feel free to mess with these ...
48 DEFAULT_BACKGROUND => 'black', # Choose registered colour (like 'black')
49 DEFAULT_TEXT_COLOUR => 'white', # Choose registered colour (like 'black')
50 HEADER_DEFAULT_COLOUR => 'yellow',
51 REGISTER_HEADERS_WITH_THE_SAME_COLOUR => 1,
53 CLI_OPTION_DETECT_INACTIVITY => 0,
54 CLI_OPTION_DEFAULT_TO_HTML_OUTPUT => 0,
55 CLI_OPTION_TITLE => 'Privoxy-Log-Parser in da house',
56 CLI_OPTION_INACTIVITY_THRESHOLD => 100,
57 CLI_OPTION_KEEP_DATE => 0,
58 CLI_OPTION_NO_EMBEDDED_CSS => 0,
59 CLI_OPTION_NO_MSECS => 0,
60 CLI_OPTION_NO_SYNTAX_HIGHLIGHTING => 0,
61 CLI_OPTION_SHORTEN_THREAD_IDS => 0,
62 CLI_OPTION_SHOW_INEFFECTIVE_FILTERS => 0,
63 CLI_OPTION_STATISTICS => 0,
64 CLI_OPTION_STRICT_CHECKS => 0,
65 CLI_OPTION_UNBREAK_LINES_ONLY => 0,
66 CLI_OPTION_URL_STATISTICS_THRESHOLD => 0,
67 CLI_OPTION_PASSED_REQUEST_STATISTICS_THRESHOLD => 0,
68 CLI_OPTION_HOST_STATISTICS_THRESHOLD => 0,
69 CLI_OPTION_SHOW_COMPLETE_REQUEST_DISTRIBUTION => 0,
71 SUPPRESS_SUCCEEDED_FILTER_ADDITIONS => 1,
73 SHOW_FILTER_READIN_IN => 0,
74 SUPPRESS_EMPTY_LINES => 1,
75 SUPPRESS_SUCCESSFUL_CONNECTIONS => 1,
76 SUPPRESS_GIF_NOT_CHANGED => 1,
77 SUPPRESS_NEED_TO_DE_CHUNK_FIRST => 1,
79 DEBUG_HEADER_REGISTERING => 0,
80 DEBUG_HEADER_HIGHLIGHTING => 0,
83 DEBUG_SUPPRESS_LOG_MESSAGES => 0,
85 PUNISH_MISSING_LOG_KNOWLEDGE_WITH_DEATH => 0,
86 PUNISH_MISSING_HIGHLIGHT_KNOWLEDGE_WITH_DEATH => 1,
88 LOG_UNPARSED_LINES_TO_EXTRA_FILE => 0,
89 ERROR_LOG_FILE => '/var/log/privoxy-log-parser',
91 # You better leave these alone unless you know what you're doing.
92 COLOUR_RESET => "\033[0;0m",
96 # For performance reasons, these are global.
99 my %req; # request data from previous lines
104 my $thread_colour_index = 0;
105 my $header_colour_index = 0;
106 my $time_colour_index = 0;
108 my $no_special_header_highlighting;
111 my $header_highlight_regex = '';
113 my $html_output_mode;
115 my $no_msecs_mode; # XXX: should probably be removed
116 my $shorten_thread_ids;
119 sub prepare_our_stuff() {
121 # Syntax Higlight hash
123 'red', 'green', 'brown', 'blue', 'purple', 'cyan',
124 'light_gray', 'light_red', 'light_green', 'yellow',
125 'light_blue', 'pink', 'light_cyan', 'white'
132 Filter => 'purple', # XXX: Used?
133 'Re-Filter' => 'purple',
135 Request => 'light_cyan',
137 CGI => 'light_green',
139 Error => 'light_red',
141 'Fatal error' => 'light_red',
142 'Gif-Deanimate' => 'blue',
144 Writing => 'light_green',
145 Received => 'yellow',
147 # ----------------------
150 request_ => 'brown', # host+path but no protocol
151 'ip-address' => 'yellow',
154 Truncation => 'light_red',
156 Timestamp => 'brown',
157 Crunching => 'light_red',
158 crunched => 'light_red',
159 'Request-Line' => 'pink',
161 destination => 'yellow',
162 'http-version' => 'pink',
163 'crunch-pattern' => 'pink',
168 'program-name' => 'cyan',
171 warning => 'light_red',
172 debug => 'light_red',
176 'status-message' => 'light_cyan',
177 'status-code' => 'yellow',
178 'invalid-request' => 'light_red',
180 error => 'light_red',
181 'rewritten-URL' => 'light_red',
182 'pcrs-delimiter' => 'light_red',
183 'ignored' => 'light_red',
184 'action-bits-update' => 'light_red',
185 'http-downgrade' => 'light_red',
186 'configuration-line' => 'red',
187 'content-type' => 'yellow',
188 'HOST' => HEADER_DEFAULT_COLOUR,
189 'tls-version' => 'pink',
190 'cipher-suite' => 'light_cyan',
195 # Header colours need their own hash so the keys can be accessed properly
197 # Prefilled with headers that should not appear with default header colours
198 Cookie => 'light_red',
199 'Set-Cookie' => 'light_red',
200 Warning => 'light_red',
201 Default => HEADER_DEFAULT_COLOUR,
204 # Crunch reasons need their own hash as well
206 'Unsupported HTTP feature' => 'light_red',
207 Blocked => 'light_red',
208 Untrusted => 'light_red',
209 Redirected => 'green',
210 'CGI Call' => 'white',
211 'DNS failure' => 'red',
212 'Forwarding failed' => 'light_red',
213 'Connection failure' => 'light_red',
214 'Out of memory (may mask other reasons)' => 'light_red',
215 'No reason recorded' => 'light_red',
218 @time_colours = ('white', 'light_gray');
220 # Translate highlight strings into highlight code
221 prepare_highlight_hash(\%header_colours);
222 prepare_highlight_hash(\%reason_colours);
223 prepare_highlight_hash(\%h);
224 prepare_colour_array(\@all_colours);
225 prepare_colour_array(\@time_colours);
232 ###############################################################
233 # Takes a colour string and returns an ANSI escape sequence
234 # (unless --no-syntax-highlighting is used).
235 # XXX: The Rolling Stones reference has to go.
236 ###############################################################
240 return "" if cli_option_is_set('no-syntax-highlighting');
282 my $bg_code = get_background();
284 our $default = default_colours();
286 if (defined($text{$colour})) {
287 $colour_code = ESCAPE;
288 $colour_code .= $text{$colour};
290 $colour_code .= $light{$colour} ? "1" : "2";
292 $colour_code .= $bg_code;
294 debug_message $colour . " is \'" . $colour_code . $colour . $default . "\'" if DEBUG_PAINT_IT;
296 } elsif ($colour =~ /reset/) {
298 $colour_code = default_colours();
302 die "What's $colour supposed to mean?\n";
308 sub get_semantic_html_markup($) {
309 ###############################################################
310 # Takes a string and returns a span element
311 ###############################################################
316 if ($type =~ /Standard/) {
320 $code = '<span title="' . $type . '" class="' . $type . '">';
326 sub cli_option_is_set($) {
329 my $cli_option = shift;
331 die "Unknown CLI option: $cli_option" unless defined $cli_options{$cli_option};
333 return $cli_options{$cli_option};
336 sub get_html_title() {
339 return $cli_options{'title'};
343 sub init_css_colours() {
351 purple => "F06", # XXX: wrong
352 cyan => "F09", # XXX: wrong
357 light_green => "33F",
366 sub get_css_colour($) {
371 die "What's $colour supposed to mean?\n" unless defined($css_colours{$colour});
373 return '#' . $css_colours{$colour};
376 sub get_css_line($) {
381 $css_line .= '.' . lc($class) . ' {'; # XXX: lc() shouldn't be necessary
382 die "What's $class supposed to mean?\n" unless defined($h_colours{$class});
383 $css_line .= 'color:' . get_css_colour($h_colours{$class}) . ';';
384 $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
385 $css_line .= '}' . "\n";
390 sub get_css_line_for_colour($) {
395 $css_line .= '.' . lc($colour) . ' {'; # XXX: lc() shouldn't be necessary
396 $css_line .= 'color:' . get_css_colour($colour) . ';';
397 $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
398 $css_line .= '}' . "\n";
403 # XXX: Wrong solution
404 sub get_missing_css_lines() {
408 $css_line .= '.' . 'default' . ' {';
409 $css_line .= 'color:' . HEADER_DEFAULT_COLOUR . ';';
410 $css_line .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
411 $css_line .= '}' . "\n";
418 our %css_colours; #XXX: Wrong solution
422 $css .= '.privoxy-log {';
423 $css .= 'color:' . get_css_colour(DEFAULT_TEXT_COLOUR) . ';';
424 $css .= 'background-color:' . get_css_colour(DEFAULT_BACKGROUND) . ';';
427 foreach my $key (keys %h_colours) {
429 next if ($h_colours{$key} =~ m/reset/); #XXX: Wrong solution.
430 $css .= get_css_line($key);
434 foreach my $colour (keys %css_colours) {
436 $css .= get_css_line_for_colour($colour);
440 $css .= get_missing_css_lines(); #XXX: Wrong solution
449 if (cli_option_is_set('html-output')) {
451 my $title = get_html_title();
453 $intro .= '<html><head>';
454 $intro .= '<title>' . $title . '</title>';
455 $intro .= '<style>' . get_css() . '</style>' unless cli_option_is_set('no-embedded-css');
456 $intro .= '</head><body>';
457 $intro .= '<h1>' . $title . '</h1><p class="privoxy-log">';
467 if (cli_option_is_set('html-output')) {
469 $outro = '</p></body></html>';
476 return cli_option_is_set('html-output') ? "<br>\n" : "\n";
479 sub get_colour_html_markup($) {
480 ###############################################################
481 # Takes a colour string a span element. XXX: WHAT?
482 # XXX: This function shouldn't be necessary, the
483 # markup should always be semantically correct.
484 ###############################################################
489 if ($type =~ /Standard/) {
492 $code = '<span class="' . lc($type) . '">';
498 sub default_colours() {
501 return reset_colours();
508 sub reset_colours() {
509 return ESCAPE . "0m";
512 sub set_background($) {
528 if (defined($backgrounds{$colour})) {
529 $bg_code = $backgrounds{$colour};
531 die "Invalid background colour: " . $colour;
535 sub get_background() {
539 sub prepare_highlight_hash($) {
542 foreach my $key (keys %$ref) {
543 $$ref{$key} = $html_output_mode ?
544 get_semantic_html_markup($key) :
545 paint_it($$ref{$key});
549 sub prepare_colour_array($) {
552 foreach my $i (0 ... @$ref - 1) {
553 $$ref[$i] = $html_output_mode ?
554 get_colour_html_markup($$ref[$i]) :
559 sub found_unknown_content($) {
564 return unless cli_option_is_set('strict-checks');
566 return if ($unknown =~ /\[too long, truncated\]$/);
568 $message = "found_unknown_content: Don't know how to highlight: ";
569 # Break line so the log file can later be parsed as Privoxy log file again
570 $message .= '"' . $unknown . '"' . " in:\n";
571 $message .= $req{$t}{'log-message'};
572 debug_message($message);
573 log_parse_error($req{$t}{'log-message'});
575 die "Unworthy content parser" if PUNISH_MISSING_LOG_KNOWLEDGE_WITH_DEATH;
578 sub log_parse_error($) {
582 if (LOG_UNPARSED_LINES_TO_EXTRA_FILE) {
583 open(my $errorlog_fd, ">>", ERROR_LOG_FILE) || die "Writing " . ERROR_LOG_FILE . " failed";
584 print $errorlog_fd $message;
589 sub debug_message(@) {
592 print $h{'debug'} . "@message" . $h{'Standard'} . "\n";
595 ################################################################################
596 # highlighter functions that aren't loglevel-specific
597 ################################################################################
601 # Get highlight marker
602 my $highlight = shift; # XXX: Stupid name;
606 if (defined($highlight)) {
608 $result = $h{$highlight};
612 $message = "h: Don't recognize highlighter $highlight.";
613 debug_message($message);
614 log_parser_error($message);
615 die "Unworthy highlighter function" if PUNISH_MISSING_HIGHLIGHT_KNOWLEDGE_WITH_DEATH;
621 sub highlight_known_headers($) {
625 debug_message("Searching $content for things to highlight.") if DEBUG_HEADER_HIGHLIGHTING;
627 if ($content =~ m/(?<=\s)($header_highlight_regex):/) {
629 $content =~ s@(?<=[\s|'])($header)(?=:)@$header_colours{$header}$1$h{'Standard'}@ig;
630 debug_message("Highlighted '$header' in '$content'") if DEBUG_HEADER_HIGHLIGHTING;
636 sub highlight_matched_request_line($$) {
638 my $result = shift; # XXX: Stupid name;
640 if ($result =~ m@(.*)($regex)(.*)@) {
641 $result = $1 . highlight_request_line($2) . $3
646 sub highlight_request_line($) {
649 my ($method, $url, $http_version);
651 #GET http://images.sourceforge.net/sfx/icon_warning.gif HTTP/1.1
652 if ($rl =~ m/Invalid request/ or $rl =~ m/Failed reading chunked client body/) {
654 $rl = h('invalid-request') . $rl . h('Standard');
656 } elsif ($rl =~ m/^([-\w]+) (.*) (HTTP\/\d+\.\d+)/) {
658 # XXX: might not match in case of HTTP method fuzzing.
659 # XXX: save these: ($method, $path, $http_version) = ($1, $2, $3);
660 $rl =~ s@^(\w+)@$h{'method'}$1$h{'Standard'}@;
661 if ($rl =~ /http:\/\//) {
662 $rl = highlight_matched_url($rl, '[^\s]*(?=\sHTTP)');
664 $rl = highlight_matched_pattern($rl, 'request_', '[^\s]*(?=\sHTTP)');
667 $rl =~ s@(HTTP\/\d\.\d)$@$h{'http-version'}$1$h{'Standard'}@;
669 } elsif ($rl =~ m/\.\.\. \[too long, truncated\]$/) {
671 $rl =~ s@^(\w+)@$h{'method'}$1$h{'Standard'}@;
672 $rl = highlight_matched_url($rl, '[^\s]*(?=\.\.\.)');
674 } elsif ($rl =~ m/^ $/) {
676 $rl = h('error') . "No request line specified!" . h('Standard');
680 debug_message ("Can't parse request line: $rl");
687 sub highlight_response_line($) {
690 my ($http_version, $status_code, $status_message);
695 # TODO: Mark different status codes differently
697 if ($rl =~ m/((?:HTTP\/\d\.\d|ICY)) (\d+) (.*)/) {
698 ($http_version, $status_code, $status_message) = ($1, $2, $3);
700 debug_message ("Can't parse response line: $rl") and die 'Fix this';
703 # Rebuild highlighted
705 $rl .= h('http-version') . $http_version . h('Standard');
707 $rl .= h('status-code') . $status_code . h('Standard');
709 $rl .= h('status-message') . $status_message . h('Standard');
714 sub highlight_matched_url($$) {
716 my $result = shift; # XXX: Stupid name;
719 #print "Got $result, regex ($regex)\n";
721 if ($result =~ m@(.*?)($regex)(.*)@) {
722 $result = $1 . highlight_url($2) . $3;
723 #print "Now the result is $result\n";
729 sub highlight_matched_host($$) {
731 my ($result, $regex) = @_; # XXX: result ist stupid name;
733 if ($result =~ m@(.*?)($regex)(.*)@) {
734 $result = $1 . $h{host} . $2 . $h{Standard} . $3;
740 sub highlight_matched_pattern($$$) {
742 my $result = shift; # XXX: Stupid name;
746 die "Unknown key $key" unless defined $h{$key};
748 if ($result =~ m@(.*?)($regex)(.*)@) {
749 $result = $1 . h($key) . $2 . h('Standard') . $3;
755 sub highlight_matched_path($$) {
757 my $result = shift; # XXX: Stupid name;
760 if ($result =~ m@(.*?)($regex)(.*)@) {
761 $result = $1 . h('path') . $2 . h('Standard') . $3;
767 sub highlight_url($) {
771 if ($html_output_mode) {
773 $url = '<a href="' . $url . '">' . $url . '</a>';
777 $url = h('URL') . $url . h('Standard');
784 sub update_header_highlight_regex($) {
787 my $headers = join ('|', keys %header_colours);
789 $header_highlight_regex = qr/$headers/;
790 print "Registering '$header'\n" if DEBUG_HEADER_HIGHLIGHTING;
793 ################################################################################
794 # loglevel-specific highlighter functions
795 ################################################################################
797 sub handle_loglevel_header($) {
801 if ($c =~ /^scan:/) {
803 if ($c =~ m/^scan: ([^: ]+):/) {
805 # Register new headers
806 # scan: Accept: image/png,image/*;q=0.8,*/*;q=0.5
808 if (!defined($header_colours{$header}) and $header =~ /^[\d\w-]*$/) {
809 debug_message "Registering previously unknown header $1" if DEBUG_HEADER_REGISTERING;
811 if (REGISTER_HEADERS_WITH_THE_SAME_COLOUR) {
812 $header_colours{$header} = $header_colours{'Default'};
814 $header_colours{$header} = $all_colours[$header_colour_index % @all_colours];
815 $header_colour_index++;
817 update_header_highlight_regex($header);
820 } elsif ($c =~ m/^(scan: )(\w+ .+ HTTP\/\d\.\d)/) {
822 # scan: GET http://p.p/ HTTP/1.1
823 $c = $1 . highlight_request_line($2);
825 } elsif ($c =~ m/^(scan: )((?:HTTP\/\d\.\d|ICY) (\d+) (.*))/) {
827 # scan: HTTP/1.1 200 OK
828 $req{$t}{'response_line'} = $2;
829 $req{$t}{'status_code'} = $3;
830 $req{$t}{'status_message'} = $4;
831 $c = $1 . highlight_response_line($req{$t}{'response_line'});
834 } elsif ($c =~ m/^Crunching (?:server|client) header: .* \(contains: ([^\)]*)\)/) {
836 # Crunching server header: Set-Cookie: trac_form_token=d5308c34e16d15e9e301a456; (contains: Cookie:)
837 $c =~ s@(?<=contains: )($1)@$h{'crunch-pattern'}$1$h{'Standard'}@;
838 $c =~ s@(Crunching)@$h{$1}$1$h{'Standard'}@;
840 } elsif ($c =~ m/^New host is: ([^\s]*)\./) {
842 # New host is: trac.vidalia-project.net. Crunching Referer: http://www.vidalia-project.net/!
843 $c = highlight_matched_host($c, '(?<=New host is: )[^\s]+(?=\.)');
844 $c = highlight_matched_url($c, '(?<=Crunching Referer: )[^\s!]+');
846 } elsif ($c =~ m/^Text mode enabled by force. (Take cover)!/) {
848 # Text mode enabled by force. Take cover!
849 $c =~ s@($1)@$h{'warning'}$1$h{'Standard'}@;
851 } elsif ($c =~ m/^(New HTTP Request-Line: )(.*)/) {
853 # New HTTP Request-Line: GET http://www.privoxy.org/ HTTP/1.1
854 $c = $1 . highlight_request_line($2);
856 } elsif ($c =~ m/^Adjust(ed)? Content-Length to \d+/) {
858 # Adjusted Content-Length to 2132
859 # Adjust Content-Length to 33533
860 $c =~ s@(?<=Content-Length to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
861 $c = highlight_known_headers($c);
863 } elsif ($c =~ m/^Destination extracted from "Host:" header. New request URL:/) {
865 # Destination extracted from "Host:" header. New request URL: http://www.cccmz.de/~ridcully/blog/
866 $c = highlight_matched_url($c, '(?<=New request URL: ).*');
868 } elsif ($c =~ m/^Couldn\'t parse:/) {
870 # XXX: These should probable be logged with LOG_LEVEL_ERROR
871 # Couldn't parse: If-Modified-Since: Wed, 21 Mar 2007 16:34:50 GMT (crunching!)
872 # Couldn't parse: at, 24 Mar 2007 13:46:21 GMT in If-Modified-Since: Sat, 24 Mar 2007 13:46:21 GMT (crunching!)
873 $c =~ s@^(Couldn\'t parse)@$h{'error'}$1$h{'Standard'}@;
875 } elsif ($c =~ /^Tagger \'([^\']*)\' added tag \'([^\']*)\'/ or
876 $c =~ m/^Adding tag \'([^\']*)\' created by header tagger \'([^\']*)\'/) {
878 # Adding tag 'GET request' created by header tagger 'method-man' (XXX: no longer used)
879 # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. No action bit update necessary.
880 # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. Action bits updated accordingly.
882 # XXX: Save tag and tagger
884 $c =~ s@(?<=^Tagger \')([^\']*)@$h{'tagger'}$1$h{'Standard'}@;
885 $c =~ s@(?<=added tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
886 $c =~ s@(?<=Action bits )(updated)@$h{'action-bits-update'}$1$h{'Standard'}@;
887 $no_special_header_highlighting = 1;
889 } elsif ($c =~ /^Tagger \'([^\']*)\' didn['']t add tag \'([^\']*)\'/) {
891 # Tagger 'revalidation' didn't add tag 'REVALIDATION-REQUEST'. Tag already present
892 # XXX: Save tag and tagger
894 $c =~ s@(?<=^Tagger \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
895 $c =~ s@(?<=didn['']t add tag \')([^\']*)@$h{'tagger'}$1$h{'Standard'}@;
897 } elsif ($c =~ m/^(?:scan:|Randomiz|addh:|Adding:|Removing:|Referer:|Modified:|Accept-Language header|[Cc]ookie)/
898 or $c =~ m/^(Text mode is already enabled|Denied request with NULL byte|Replaced:|add-unique:)/
899 or $c =~ m/^(Crunched (incoming|outgoing) cookie|Suppressed offer|Accepted the client)/
900 or $c =~ m/^(addh-unique|Referer forged to)/
901 or $c =~ m/^Downgraded answer to HTTP\/1.0/
902 or $c =~ m/^Parameter: \+hide-referrer\{[^\}]*\} is a bad idea, but I don\'t care./
903 or $c =~ m/^Referer (?:overwritten|replaced) with: Referer: / #XXX: should this be highlighted?
904 or $c =~ m/^Referer crunched!/
905 or $c =~ m/^crunched x-forwarded-for!/
906 or $c =~ m/^crunched From!/
907 or $c =~ m/^ modified$/
908 or $c =~ m/^Content filtering is enabled. Crunching:/
909 or $c =~ m/^force-text-mode overruled the client/
910 or $c =~ m/^Server time in the future\./
911 or $c =~ m/^content-disposition header crunched and replaced with:/i
912 or $c =~ m/^Reducing white space in /
913 or $c =~ m/^Ignoring single quote in /
914 or $c =~ m/^Converting tab to space in /
915 or $c =~ m/A HTTP\/1\.1 response without/
916 or $c =~ m/Disabled filter mode on behalf of the client/
917 or $c =~ m/Keeping the (?:server|client) header /
918 or $c =~ m/Content modified with no Content-Length header set/
919 or $c =~ m/^Appended client IP address to/
920 or $c =~ m/^Removing 'Connection: close' to imply keep-alive./
921 or $c =~ m/^keep-alive support is disabled/
922 or $c =~ m/^Continue hack in da house/
923 or $c =~ m/^Merged multiple header lines to:/
924 or $c =~ m/^Added header: /
925 or $c =~ m/^Enlisting (?:sorted|left-over) header/
926 or $c =~ m/^Multiple Content-Type headers detected. Removing and ignoring: Content-Type:/
929 # XXX: Some of these may need highlighting
931 # Modified: User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; pl-PL; rv:1.8.1.1) Gecko/20070214 Firefox/2.0.0.1
932 # Accept-Language header crunched and replaced with: Accept-Language: pl-pl
933 # cookie 'Set-Cookie: eZSessionCookie=07bfec287c197440d299f81580593c3d; \
934 # expires=Thursday, 12-Apr-07 15:16:18 GMT; path=/' send by \
935 # http://wirres.net/article/articleview/4265/1/6/ appears to be using time format 1 (XXX: gone with the wind)
936 # Cookie rewritten to a temporary one: Set-Cookie: NSC_gffe-iuuq-mc-wtfswfs=8efb33a53660;path=/
937 # Text mode is already enabled
938 # Denied request with NULL byte(s) turned into line break(s)
939 # Replaced: 'Connection: Yo, home to Bel Air' with 'Connection: close'
940 # addh-unique: Host: people.freebsd.org
941 # Suppressed offer to compress content
942 # Crunched incoming cookie -- yum!
943 # Accepted the client's request to fetch without filtering.
944 # Crunched outgoing cookie: Cookie: PREF=ID=6cf0abd347b30262:TM=1173357617:LM=1173357617:S=jZypyyJ7LPiwFi1_
945 # addh-unique: Host: subkeys.pgp.net:11371
946 # Referer forged to: Referer: http://10.0.0.1/
947 # Downgraded answer to HTTP/1.0
948 # Parameter: +hide-referrer{pille-palle} is a bad idea, but I don't care.
949 # Referer overwritten with: Referer: pille-palle
950 # Referer replaced with: Referer: pille-palle
951 # crunched x-forwarded-for!
953 # modified # XXX: pretty stupid log message
954 # Content filtering is enabled. Crunching: 'Range: 1234-5678' to prevent range-mismatch problems
955 # force-text-mode overruled the client's request to fetch without filtering!
956 # Server time in the future.
957 # content-disposition header crunched and replaced with: content-disposition: filename=baz
958 # Content-Disposition header crunched and replaced with: content-disposition: filename=baz
959 # Reducing white space in 'X-LWS-Test: "This is quoted" this is not "this is " but " this again is not'
960 # Ignoring single quote in 'X-LWS-Test: "This is quoted" this is not "this is " but " this again is not'
961 # Converting tab to space in 'X-LWS-Test: "This is quoted" this is not "this is " but "\
963 # A HTTP/1.1 response without Connection header implies keep-alive.
964 # Disabled filter mode on behalf of the client.
965 # Keeping the server header 'Connection: keep-alive' around.
966 # Keeping the client header 'Connection: close' around. The connection will not be kept alive.
967 # Keeping the client header 'Connection: keep-alive' around. The connection will be kept alive if possible.
968 # Content modified with no Content-Length header set. Creating a fake one for adjustment later on.
969 # Appended client IP address to X-Forwarded-For: 10.0.0.2, 10.0.0.1
970 # Removing 'Connection: close' to imply keep-alive.
971 # keep-alive support is disabled. Crunching: Keep-Alive: 300.
972 # Continue hack in da house.
973 # Merged multiple header lines to: 'X-FORWARDED-PROTO: http X-HOST: 127.0.0.1'
974 # Added header: Content-Encoding: deflate
975 # Enlisting sorted header User-Agent: Mozilla/5.0 (X11; SunOS i86pc; rv:10.0.3) Gecko/20100101 Firefox/10.0.3
976 # Enlisting left-over header Connection: close
977 # Multiple Content-Type headers detected. Removing and ignoring: Content-Type: text/html
979 } elsif ($c =~ m/^scanning headers for:/) {
981 return '' unless SHOW_SCAN_INTRO;
983 } elsif ($c =~ m/^[Cc]runch(ing|ed)|crumble crunched:/) {
984 # crunched User-Agent!
985 # Crunching: Content-Encoding: gzip
987 $c =~ s@(Crunching|crunched)@$h{$1}$1$h{'Standard'}@;
989 } elsif ($c =~ m/^Offending request data with NULL bytes turned into \'°\' characters:/) {
991 # Offending request data with NULL bytes turned into '°' characters: °°n°°(°°°
993 $c = h('warning') . $c . h('Standard');
995 } elsif ($c =~ m/^(Transforming \")(.*?)(\" to \")(.*?)(\")/) {
997 # Transforming "Proxy-Authenticate: Basic realm="Correos Proxy Server"" to\
998 # "Proxy-Authenticate: Basic realm="Correos Proxy Server""
1000 $c =~ s@(?<=^Transforming \")(.*)(?=\" to)@$h{'Header'}$1$h{'Standard'}@;
1001 $c =~ s@(?<=to \")(.*)(?=\")@$h{'Header'}$1$h{'Standard'}@;
1003 } elsif ($c =~ m/^Removing empty header/) {
1005 # Removing empty header
1008 } elsif ($c =~ m/^Content-Type: .* not replaced/) {
1010 # Content-Type: application/octet-stream not replaced. It doesn't look like text.\
1011 # Enable force-text-mode if you know what you're doing.
1012 # XXX: Could highlight more here.
1013 $c =~ s@(?<=^Content-Type: )(.*)(?= not replaced)@$h{'content-type'}$1$h{'Standard'}@;
1015 } elsif ($c =~ m/^(Server|Client) keep-alive timeout is/) {
1017 # Server keep-alive timeout is 5. Sticking with 10.
1018 # Client keep-alive timeout is 20. Sticking with 10.
1020 $c =~ s@(?<=timeout is )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1021 $c =~ s@(?<=Sticking with )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1023 } elsif ($c =~ m/^Reducing keep-alive timeout/) {
1025 # Reducing keep-alive timeout from 60 to 10.
1027 $c =~ s@(?<= from )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1028 $c =~ s@(?<= to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1030 } elsif ($c =~ m/^Killed all-caps Host header line: HOST:/) {
1032 # Killed all-caps Host header line: HOST: bestproxydb.com
1033 $c = highlight_matched_host($c, '(?<=HOST: )[^\s]+');
1034 $c = highlight_matched_pattern($c, 'HOST', 'HOST');
1038 found_unknown_content($c);
1042 unless ($c =~ m/^Transforming/) {
1043 $c = highlight_known_headers($c) unless $no_special_header_highlighting;
1049 sub handle_loglevel_re_filter($) {
1051 my $content = shift;
1055 if ($c =~ m/^(?:re_)?filtering ([^\s]+) \(size (\d+)\) with (?:filter )?\'?([^\s]+?)\'? produced (\d+) hits \(new size (\d+)\)/) {
1057 # XXX: only the second version gets highlighted properly.
1058 # re_filtering www.lfk.de/favicon.ico (size 209) with filter untrackable-hulk produced 0 hits (new size 209).
1059 # filtering aci.blogg.de/ (size 37988) with 'blogg.de' produced 3 hits (new size 38057)
1060 $req{$t}{'content_source'} = $1;
1061 $req{$t}{'content_size'} = $2;
1062 $req{$t}{'content_filter'} = $3;
1063 $req{$t}{'content_hits'} = $4;
1064 $req{$t}{'new_content_size'} = $5;
1065 $req{$t}{'content_size_change'} = $req{$t}{'new_content_size'} - $req{$t}{'content_size'};
1066 #return '' if ($req{$t}{'content_hits'} == 0 && !cli_option_is_set('show-ineffective-filters'));
1067 if ($req{$t}{'content_hits'} == 0 and
1068 not (cli_option_is_set('show-ineffective-filters')
1069 or ($req{$t}{'content_filter'} =~ m/^privoxy-filter-test$/))) {
1073 $c =~ s@(?<=\(size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1074 $c =~ s@(?<=\(new size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1075 $c =~ s@(?<=produced )(\d+)(?= hits)@$h{'Number'}$1$h{'Standard'}@;
1077 $c =~ s@([^\s]+?)(\'? produced)@$h{'filter'}$1$h{'Standard'}$2@;
1078 $c = highlight_matched_host($c, '(?<=filtering )[^\s]+');
1081 $c .= "(" . $h{'Number'};
1082 $c .= "+" if ($req{$t}{'content_size_change'} >= 0);
1083 $c .= $req{$t}{'content_size_change'} . $h{'Standard'} . ")";
1086 } elsif ($c =~ m/^filtering request body from client /) {
1088 # filtering request body from client 127.0.0.1 (size 958) with 'null-filter' produced 0 hits (new size 958).
1090 $c =~ s@(?<=from client )([^\s]+)@$h{'ip-address'}$1$h{'Standard'}@;
1091 $c =~ s@(?<=\(size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1092 $c =~ s@([^\s]+?)(\'? produced)@$h{'filter'}$1$h{'Standard'}$2@;
1093 $c =~ s@(?<=\(new size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1094 $c =~ s@(?<=produced )(\d+)(?= hits)@$h{'Number'}$1$h{'Standard'}@;
1097 } elsif ($c =~ /\.{3}$/
1098 and $c =~ m/^(?:re_)?filtering \'?(.*?)\'? \(size (\d*)\) with (?:filter )?\'?([^\s]*?)\'? ?\.{3}$/) {
1100 # Used by Privoxy 3.0.5 and 3.0.6:
1102 # Used by Privoxy 3.0.7:
1103 # filtering 'Connection: close' (size 17) with 'generic-content-ads' ...
1105 $req{$t}{'filtered_header'} = $1;
1106 $req{$t}{'old_header_size'} = $2;
1107 $req{$t}{'header_filter_name'} = $3;
1109 unless (cli_option_is_set('show-ineffective-filters') or
1110 $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/) {
1113 $content =~ s@(?<=\(size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1114 $content =~ s@($req{$t}{'header_filter_name'})@$h{'filter'}$1$h{'Standard'}@;
1116 } elsif ($c =~ m/^ ?\.\.\. ?produced (\d*) hits \(new size (\d*)\)\./) {
1118 # ...produced 0 hits (new size 23).
1119 #... produced 1 hits (new size 54).
1121 $req{$t}{'header_filter_hits'} = $1;
1122 $req{$t}{'new_header_size'} = $2;
1124 unless (cli_option_is_set('show-ineffective-filters') or
1125 (defined($req{$t}{'header_filter_name'}) and
1126 $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/)) {
1128 if ($req{$t}{'header_filter_hits'} == 0 and
1129 not (defined($req{$t}{'header_filter_name'}) and
1130 $req{$t}{'header_filter_name'} =~ m/^privoxy-filter-test$/)) {
1133 # Reformat including information from the intro
1134 $c = "'" . h('filter') . $req{$t}{'header_filter_name'} . h('Standard') . "'";
1136 # XXX: Hide behind constant, it may be interesting if LOG_LEVEL_HEADER isn't enabled as well.
1137 # $c .= $req{$t}{'filtered_header'} . " ";
1138 $c .= h('Number') . $req{$t}{'header_filter_hits'}. h('Standard');
1139 $c .= ($req{$t}{'header_filter_hits'} == 1) ? " time, " : " times, ";
1141 if ($req{$t}{'old_header_size'} != $req{$t}{'new_header_size'}) {
1143 $c .= "changing size from ";
1144 $c .= h('Number') . $req{$t}{'old_header_size'} . h('Standard');
1146 $c .= h('Number') . $req{$t}{'new_header_size'} . h('Standard');
1151 $c .= "keeping the size at " . $req{$t}{'old_header_size'};
1155 # Highlight from last line (XXX: What?)
1156 # $c =~ s@(?<=produced )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1157 # $c =~ s@($req{$t}{'header_filter_name'})@$h{'filter'}$1$h{'Standard'}@;
1162 $c =~ s@(?<=produced )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1163 $c =~ s@(?<=new size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1168 } elsif ($c =~ m/^(Tagger|Filter) ([^\s]*) has empty joblist. Nothing to do./) {
1170 # Filter privoxy-filter-test has empty joblist. Nothing to do.
1171 # Tagger variable-test has empty joblist. Nothing to do.
1173 $content =~ s@(?<=$1 )([^\s]*)@$h{'filter'}$1$h{'Standard'}@;
1175 } elsif ($c =~ m/^De-chunking successful. Shrunk from (\d+) to (\d+)/) {
1177 $req{$t}{'chunked-size'} = $1;
1178 $req{$t}{'dechunked-size'} = $2;
1179 $req{$t}{'dechunk-change'} = $req{$t}{'dechunked-size'} - $req{$t}{'chunked-size'};
1181 $content .= " (" . h('Number') . $req{$t}{'dechunk-change'} . h('Standard') . ")";
1183 $content =~ s@(?<=from )($req{$t}{'chunked-size'})@$h{'Number'}$1$h{'Standard'}@;
1184 $content =~ s@(?<=to )($req{$t}{'dechunked-size'})@$h{'Number'}$1$h{'Standard'}@;
1186 } elsif ($c =~ m/^Decompression successful. Old size: (\d+), new size: (\d+)./) {
1188 # Decompression successful. Old size: 670, new size: 1166.
1190 $req{$t}{'size-compressed'} = $1;
1191 $req{$t}{'size-decompressed'} = $2;
1192 $req{$t}{'decompression-gain'} = $req{$t}{'size-decompressed'} - $req{$t}{'size-compressed'};
1194 $content =~ s@(?<=Old size: )($req{$t}{'size-compressed'})@$h{'Number'}$1$h{'Standard'}@;
1195 $content =~ s@(?<=new size: )($req{$t}{'size-decompressed'})@$h{'Number'}$1$h{'Standard'}@;
1197 # XXX: Create sub get_percentage()
1198 if ($req{$t}{'size-decompressed'}) {
1199 $req{$t}{'decompression-gain-percent'} =
1200 $req{$t}{'decompression-gain'} / $req{$t}{'size-decompressed'} * 100;
1202 $content .= " (saved: ";
1203 #$content .= h('Number') . $req{$t}{'decompression-gain'} . h('Standard');
1205 $content .= h('Number') . sprintf("%.2f%%", $req{$t}{'decompression-gain-percent'}) . h('Standard');
1209 } elsif ($c =~ m/^(Need to de-chunk first)/) {
1211 # Need to de-chunk first
1212 return '' if SUPPRESS_NEED_TO_DE_CHUNK_FIRST;
1214 } elsif ($c =~ m/^(Adding (?:dynamic )?re_filter job)/) {
1216 return '' if (SUPPRESS_SUCCEEDED_FILTER_ADDITIONS && m/succeeded/);
1218 # Adding re_filter job ...
1219 # Adding dynamic re_filter job s@^(?:\w*)\s+.*\s+HTTP/\d\.\d\s*@IP-ADDRESS: $origin@D\
1220 # to filter client-ip-address succeeded.
1222 } elsif ($c =~ m/^Compressed content from /) {
1224 # Compressed content from 29258 to 8630 bytes. Compression level: 3
1225 $content =~ s@(?<=from )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1226 $content =~ s@(?<=to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1227 $content =~ s@(?<=level: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1229 } elsif ($c =~ m/^Reading in filter/) {
1231 return '' unless SHOW_FILTER_READIN_IN;
1233 } elsif ($c =~ m/^Decompression didn't result/) {
1235 # Decompression didn't result in any content.
1237 # Nothing to highlight.
1241 found_unknown_content($content);
1248 sub handle_loglevel_tagging($) {
1252 if ($c =~ /^Tagger \'([^\']*)\' added tag \'([^\']*)\'/ or
1253 $c =~ m/^Adding tag \'([^\']*)\' created by header tagger \'([^\']*)\'/) {
1255 # Adding tag 'GET request' created by header tagger 'method-man' (XXX: no longer used)
1256 # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. No action bit update necessary.
1257 # Tagger 'revalidation' added tag 'REVALIDATION-REQUEST'. Action bits updated accordingly.
1259 # XXX: Save tag and tagger
1261 $c =~ s@(?<=^Tagger \')([^\']*)@$h{'tagger'}$1$h{'Standard'}@;
1262 $c =~ s@(?<=added tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
1263 $c =~ s@(?<=Action bits )(updated)@$h{'action-bits-update'}$1$h{'Standard'}@;
1265 } elsif ($c =~ /^Enlisting tag/) {
1267 # Enlisting tag 'forward-directly' for client 127.0.0.1.
1269 $c =~ s@(?<=tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
1270 $c = highlight_matched_host($c, '[^\s]+(?=\.$)');
1272 } elsif ($c =~ /^Tag/) {
1274 # Tag 'change-tor-socks-port' for client 127.0.0.1 expired 1 seconds ago. Deleting it.
1276 $c =~ s@(?<=Tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
1277 $c =~ s@(?<=expired )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1278 $c = highlight_matched_host($c, '(?<=client )[^\s]+');
1280 } elsif ($c =~ /^Evaluating/) {
1282 # Evaluating tag 'change-tor-socks-port' for client 127.0.0.1. End of life 1613162302.
1284 $c =~ s@(?<=tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
1285 $c = highlight_matched_host($c, '(?<=client )[^\s]+(?=\.)');
1286 $c =~ s@(?<=life )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1288 } elsif ($c =~ /^Client tag/) {
1290 # Client tag 'forward-directly' matches
1292 $c =~ s@(?<=tag \')([^\']*)@$h{'tag'}$1$h{'Standard'}@;
1299 sub handle_loglevel_redirect($) {
1303 if ($c =~ m/^Decoding "([^""]*)"/) {
1305 $req{$t}{'original-destination'} = $1;
1306 $c = highlight_matched_path($c, '(?<=Decoding ")[^"]*');
1309 } elsif ($c =~ m/^Checking/) {
1311 # Checking /_ylt=A0geu.Z76BRGR9k/**http://search.yahoo.com/search?p=view+odb+presentation+on+freebsd\
1312 # &ei=UTF-8&xargs=0&pstart=1&fr=moz2&b=11 for redirects.
1314 # TODO: Change colour if really url-decoded
1315 $req{$t}{'decoded-original-destination'} = $1;
1316 $c = highlight_matched_path($c, '(?<=Checking ")[^"]*');
1319 } elsif ($c =~ m/^pcrs command "([^""]*)" changed /) {
1321 # pcrs command "s@&from=rss@@" changed \
1322 # "http://it.slashdot.org/article.pl?sid=07/03/02/1657247&from=rss"\
1323 # to "http://it.slashdot.org/article.pl?sid=07/03/02/1657247" (1 hit).
1324 $c =~ s@(?<=pcrs command )"([^""]*)"@$h{'filter'}$1$h{'Standard'}@;
1325 $c = highlight_matched_url($c, '(?<=changed ")[^""]*');
1326 $c =~ s@(?<=changed )"([^""]*)"@$1@; # Remove quotes
1327 $c = highlight_matched_url($c, '(?<=to ")[^""]*');
1328 $c =~ s@(?<=to )"([^""]*)"@$1@; # Remove quotes
1329 $c =~ s@(\d+)(?= hits?)@$h{'hits'}$1$h{'Standard'}@;
1331 } elsif ($c =~ m/^pcrs command "([^""]*)" didn\'t change/) {
1333 # pcrs command "s@^http://([^.]+?)/?$@http://www.bing.com/search?q=$1@" didn't \
1334 # change "http://www.example.org/".
1335 $c =~ s@(?<=pcrs command )"([^""]*)"@$h{'filter'}$1$h{'Standard'}@;
1336 $c = highlight_matched_url($c, '(?<=change ")[^""]*');
1338 } elsif ($c =~ m/(^New URL is: )(.*)/) {
1340 # New URL is: http://it.slashdot.org/article.pl?sid=07/03/04/1511210
1341 # XXX: Use URL highlighter
1343 $c = $1 . h('rewritten-URL') . $2 . h('Standard');
1345 } elsif ($c =~ m/No pcrs command recognized, assuming that/) {
1346 # No pcrs command recognized, assuming that "http://config.privoxy.org/user-manual/favicon.png"\
1347 # is already properly formatted.
1348 # XXX: assume the same?
1349 $c = highlight_matched_url($c, '(?<=assuming that \")[^"]*');
1351 } elsif ($c =~ m/^Percent-encoding redirect/) {
1353 # Percent-encoding redirect URL: http://www.example.org/\x02
1354 $c = highlight_matched_url($c, '(?<=redirect URL: ).*');
1356 } elsif ($c =~ m/^Rewrite detected:/) {
1358 # Rewrite detected: GET http://10.0.0.2:88/blah.txt HTTP/1.1
1359 # Rewrite detected: GET https://www.electrobsd.org/CommonJS/ajax/libs/jquery/3.4.1/jquery.min.js HTTP/1.1
1360 $c = highlight_matched_request_line($c, '(?<=^Rewrite detected: ).*');
1362 } elsif ($c =~ m/^Rewritten request line results in downgrade to http/) {
1364 # Rewritten request line results in downgrade to http
1365 $c =~ s@(downgrade)@$h{'http-downgrade'}$1$h{'Standard'}@;
1369 found_unknown_content($c);
1376 sub handle_loglevel_gif_deanimate($) {
1378 my $content = shift;
1380 if ($content =~ m/Success! GIF shrunk from (\d+) bytes to (\d+)\./) {
1382 my $bytes_from = $1;
1384 # Gif-Deanimate: Success! GIF shrunk from 205 bytes to 133.
1385 $content =~ s@$bytes_from@$h{'Number'}$bytes_from$h{'Standard'}@;
1386 # XXX: Do we need g in case of ($1 == $2)?
1387 $content =~ s@$bytes_to@$h{'Number'}$bytes_to$h{'Standard'}@;
1389 } elsif ($content =~ m/GIF (not) changed/) {
1391 # Gif-Deanimate: GIF not changed.
1392 return '' if SUPPRESS_GIF_NOT_CHANGED;
1393 $content =~ s@($1)@$h{'not'}$1$h{'Standard'}@;
1395 } elsif ($content =~ m/^failed! \(gif parsing\)/) {
1397 # failed! (gif parsing)
1398 # XXX: Replace this error message with something less stupid
1399 $content =~ s@(failed!)@$h{'error'}$1$h{'Standard'}@;
1401 } elsif ($content =~ m/^Need to de-chunk first/) {
1403 # Need to de-chunk first
1404 return '' if SUPPRESS_NEED_TO_DE_CHUNK_FIRST;
1406 } elsif ($content =~ m/^(?:No GIF header found|failed while parsing)/) {
1408 # No GIF header found (XXX: Did I ever commit this?)
1409 # failed while parsing 195 134747048 (XXX: never committed)
1411 # Ignore these for now
1415 found_unknown_content($content);
1422 sub handle_loglevel_request($) {
1424 my $content = shift;
1426 if ($content =~ m/crunch! /) {
1428 # config.privoxy.org/send-stylesheet crunch! (CGI Call)
1430 # Highlight crunch reasons
1431 foreach my $reason (keys %reason_colours) {
1432 $content =~ s@\(($reason)\)@$reason_colours{$reason}($1)$h{'Standard'}@g;
1434 # Highlight request URL domain and ditch 'crunch!'
1435 $content = highlight_matched_pattern($content, 'request_', '[^ ]*(?= crunch!)');
1436 $content =~ s@ crunch!@@;
1438 } elsif ($content =~ m/\[too long, truncated\]$/) {
1440 # config.privoxy.org/edit-actions-submit?f=3&v=1176116716&s=7&Submit=Submit[...]&filter... [too long, truncated]
1441 $content = highlight_matched_pattern($content, 'request_', '^.*(?=\.\.\. \[too long, truncated\]$)');
1443 } elsif ($content =~ m/(.*)/) { # XXX: Pretty stupid
1445 # trac.vidalia-project.net/wiki/Volunteer?format=txt
1446 $content = h('request_') . $content . h('Standard');
1450 found_unknown_content($content);
1457 sub handle_loglevel_crunch($) {
1459 my $content = shift;
1461 # Highlight crunch reason
1462 foreach my $reason (keys %reason_colours) {
1463 # Crunch: Blocked: https://capture.condenastdigital.com/track?_o=cne&[...]&dim2=%7B%22adBlocked%[...]
1464 $content =~ s@($reason)@$reason_colours{$reason}$1$h{'Standard'}@;
1467 if ($content =~ m/\[too long, truncated\]$/) {
1469 # Blocked: config.privoxy.org/edit-actions-submit?f=3&v=1176116716&s=7&Submit=Submit\
1470 # [...]&filter... [too long, truncated]
1471 $content = highlight_matched_pattern($content, 'request_', '^.*(?=\.\.\. \[too long, truncated\]$)');
1473 } elsif ($content =~ m/Certificate error:/) {
1475 # Certificate error: ASN date error, current date after: https://expired.badssl.com/
1476 $content = highlight_matched_pattern($content, 'request_', 'https://.*');
1480 # Blocked: http://ads.example.org/
1481 $content = highlight_matched_pattern($content, 'request_', '(?<=: ).*');
1487 sub handle_loglevel_connect($) {
1491 if ($c =~ m/^via [^\s]+ to: [^\s]+/) {
1493 # Connect: via 10.0.0.1:8123 to: www.example.org.noconnect
1495 $c = highlight_matched_host($c, '(?<=via )[^\s]+');
1496 $c = highlight_matched_host($c, '(?<=to: )[^\s]+');
1498 } elsif ($c =~ m/^connect to: .* failed: .*/) {
1500 # connect to: www.example.org.noconnect failed: Operation not permitted
1502 $c = highlight_matched_host($c, '(?<=connect to: )[^\s]+');
1504 $c =~ s@(?<=failed: )(.*)@$h{'error'}$1$h{'Standard'}@;
1506 } elsif ($c =~ m/^to ([^\s]*)( successful)?$/) {
1508 # Connect: to www.nzherald.co.nz successful
1509 # Connect: to archiv.radiotux.de
1511 return '' if SUPPRESS_SUCCESSFUL_CONNECTIONS;
1512 $c = highlight_matched_host($c, '(?<=to )[^\s]+');
1514 } elsif ($c =~ m/^to ([^\s]*)$/) {
1516 # Connect: to lists.sourceforge.net:443
1518 $c = highlight_matched_host($c, '(?<=to )[^\s]+');
1520 } elsif ($c =~ m/^[Aa]ccepted connection from .*/ or
1524 # Accepted connection from 10.0.0.1 on socket 5
1525 # Privoxy between 3.0.20 and 3.0.6:
1526 # accepted connection from 10.0.0.1( on socket 5)?
1527 # Privoxy 3.0.6 and earlier just say:
1529 $c = highlight_matched_host($c, '(?<=connection from )[^ ]*');
1530 $c = highlight_matched_pattern($c, 'Number', '(?<=socket )\d+');
1532 } elsif ($c =~ m/^Closing client socket/) {
1534 # Closing client socket 5. Keep-alive: 0, Socket alive: 1. Data available: 0.
1535 # Privoxy 3.0.20 and later
1536 # Closing client socket 8. Keep-alive: 1. Socket alive: 0. Data available: 0. \
1537 # Configuration file change detected: 0. Requests received: 11.
1539 $c = highlight_matched_pattern($c, 'Number', '(?<=socket )\d+');
1540 $c = highlight_matched_pattern($c, 'Number', '(?<=Keep-alive: )\d+');
1541 $c = highlight_matched_pattern($c, 'Number', '(?<=Socket alive: )\d+');
1542 $c = highlight_matched_pattern($c, 'Number', '(?<=available: )\d+');
1543 $c = highlight_matched_pattern($c, 'Number', '(?<=detected: )\d+');
1544 $c = highlight_matched_pattern($c, 'Number', '(?<=received: )\d+');
1546 } elsif ($c =~ m/^write header to: .* failed:/) {
1548 # write header to: 10.0.0.1 failed: Broken pipe
1550 $c = highlight_matched_host($c, '(?<=write header to: )[^\s]*');
1551 $c =~ s@(?<=failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1553 } elsif ($c =~ m/^write header to client failed:/) {
1555 # write header to client failed: Broken pipe
1557 $c =~ s@(?<=failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1559 } elsif ($c =~ m/^socks4_connect:/) {
1561 # socks4_connect: SOCKS request rejected or failed.
1562 $c =~ s@(?<=socks4_connect: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1564 } elsif ($c =~ m/^Listening for new connections/ or
1565 $c =~ m/^accept connection/) {
1567 # Privoxy versions above 3.0.6 say:
1568 # Listening for new connections ...
1569 # earlier versions say:
1570 # accept connection ...
1573 } elsif ($c =~ m/^accept failed:/) {
1575 $c =~ s@(?<=accept failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
1577 } elsif ($c =~ m/^Overriding forwarding settings/) {
1579 # Overriding forwarding settings based on 'forward 10.0.0.1:8123'
1580 $c =~ s@(?<=based on \')(.*)(?=\')@$h{'configuration-line'}$1$h{'Standard'}@;
1582 } elsif ($c =~ m/^Denying suspicious CONNECT request from/) {
1584 # Denying suspicious CONNECT request from 10.0.0.1
1585 $c = highlight_matched_host($c, '(?<=from )[^\s]+'); # XXX: not an URL
1587 } elsif ($c =~ m/^socks5_connect:/) {
1589 $c =~ s@(?<=socks5_connect: )(.*)@$h{'error'}$1$h{'Standard'}@;
1591 } elsif ($c =~ m/^Created new connection to/) {
1593 # Created new connection to www.privoxy.org:80 on socket 11.
1594 $c = highlight_matched_host($c, '(?<=connection to )[^\s]+');
1595 $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1597 } elsif ($c =~ m/^Found reusable socket/) {
1599 # Found reusable socket 9 for www.privoxy.org:80 in slot 0.
1601 # Found reusable socket 8 for www.privoxy.org:80 in slot 2.\
1602 # Timestamp made 0 seconds ago. Timeout: 1. Latency: 0.
1603 $c =~ s@(?<=Found reusable socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1604 $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1605 $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1606 $c =~ s@(?<=made )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1607 $c =~ s@(?<=Timeout: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1608 $c =~ s@(?<=Latency: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1610 } elsif ($c =~ m/^Marking open socket/) {
1612 # Marking open socket 9 for www.privoxy.org:80 in slot 0 as unused.
1613 $c =~ s@(?<=Marking open socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1614 $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1615 $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1617 } elsif ($c =~ m/^No reusable/) {
1619 # No reusable socket for addons.mozilla.org:443 found. Opening a new one.
1620 $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1622 } elsif ($c =~ m/^(Remembering|Forgetting) socket/) {
1624 # Remembering socket 13 for www.privoxy.org:80 in slot 0.
1625 # Forgetting socket 38 for www.privoxy.org:80 in slot 5.
1627 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1628 $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1629 $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1631 } elsif ($c =~ m/^Socket \d+ (already|closed)/) {
1633 # Socket 16 already forgotten or never remembered.
1634 # Socket 9 closed while waiting for client headers
1635 $c =~ s@(?<=Socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1637 } elsif ($c =~ m/^The connection to/) {
1639 # The connection to www.privoxy.org:80 in slot 6 timed out. Closing socket 19. Timeout is: 61.
1641 # The connection to 1.bp.blogspot.com:80 in slot 0 timed out. Closing socket 5.\
1642 # Timeout is: 1. Assumed latency: 4.
1643 # The connection to 10.0.0.1:80 in slot 0 is no longer usable. Closing socket 4.
1644 $c = highlight_matched_host($c, '(?<=connection to )[^\s]+');
1645 $c =~ s@(?<=in slot )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1646 $c =~ s@(?<=Closing socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1647 $c =~ s@(?<=Timeout is: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1648 $c =~ s@(?<=Assumed latency: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1650 } elsif ($c =~ m/^Stopped waiting for the request line/ or
1651 $c =~ m/^No request line on socket \d+ received in time/ or
1652 $c =~ m/^The client side of the connection on socket \d/) {
1654 # Stopped waiting for the request line. Timeout: 121.
1655 # Privoxy 3.0.19 and later:
1656 # No request line on socket 5 received in time. Timeout: 1.
1657 # The client side of the connection on socket 5 got closed \
1658 # without sending a complete request line.
1659 $c =~ s@(?<=Timeout: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1660 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1662 } elsif ($c =~ m/^Waiting for \d/) {
1664 # Waiting for 1 connections to timeout.
1665 $c =~ s@(?<=^Waiting for )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1667 } elsif ($c =~ m/^Initialized/) {
1669 # Initialized 20 socket slots.
1670 $c =~ s@(?<=Initialized )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1672 } elsif ($c =~ m/^Done reading from server/) {
1674 # Done reading from server. Expected content length: 24892. \
1675 # Actual content length: 24892. Most recently received: 4412.
1677 # Done reading from server. Expected content length: 24892. \
1678 # Actual content length: 24892. Bytes most recently read: 4412.
1679 # Done reading from server. Content length: 6018 as expected. \
1680 # Bytes most recently read: 294.
1681 $c =~ s@(?<=ontent length: )(\d+)@$h{'Number'}$1$h{'Standard'}@g;
1682 $c =~ s@(?<=received: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1683 $c =~ s@(?<=read: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1685 } elsif ($c =~ m/^Continuing buffering (?:server )?headers/) {
1687 # Continuing buffering headers. byte_count: 19. header_offset: 517. len: 536.
1688 $c =~ s@(?<=byte_count: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1689 $c =~ s@(?<=header_offset: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1690 $c =~ s@(?<=len: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1691 # 3.0.15 up to 3.0.19:
1692 # Continuing buffering headers. Bytes most recently read: 498.
1693 $c =~ s@(?<=read: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1695 # Continuing buffering server headers from socket 5. Bytes most recently read: 498.
1696 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1698 } elsif ($c =~ m/^Received \d+ bytes while/) {
1700 # Received 206 bytes while expecting 12103.
1701 $c =~ s@(?<=Received )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1702 $c =~ s@(?<=expecting )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1704 } elsif ($c =~ m/^(Rejecting c|C)onnection from/) {
1706 # Connection from 81.163.28.218 dropped due to ACL
1707 # Rejecting connection from 178.63.152.227. Maximum number of connections reached.
1708 # Connection from 192.168.2.1 on 127.0.1.1:8118 (socket 3) dropped due to ACL
1709 $c = highlight_matched_host($c, '(?<=onnection from )[\d.:]+');
1710 $c = highlight_matched_host($c, '(?<=on )[\d.:]+');
1711 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1713 } elsif ($c =~ m/^(?:Reusing|Closing) server socket / or
1714 $c =~ m/^No additional client request/) {
1716 # Reusing server socket 4. Opened for 10.0.0.1.
1717 # Closing server socket 2. Opened for 10.0.0.1.
1718 # No additional client request received in time. \
1719 # Closing server socket 4, initially opened for 10.0.0.1.
1720 # No additional client request received in time on socket 29.
1721 # Privoxy 3.0.20 and later
1722 # Reusing server socket 7 connected to www.privoxy.org. Total requests: 2.
1723 # Closing server socket 6 connected to d.asset.soup.io. Keep-alive: 0.\
1724 # Tainted: 1. Socket alive: 1. Timeout: 60. Configuration file change detected: 0.
1725 # Reusing server socket 35 connected to nl.wikipedia.org. Requests already sent: 5.
1727 $c =~ s@(?<= socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1728 $c = highlight_matched_host($c, '(?<=for )[^\s]+(?=\.)');
1729 $c = highlight_matched_host($c, '(?<=connected to )[^\s]+(?=\.)');
1730 for my $number_pattern ('requests', 'Keep-alive', 'Tainted', ' alive', 'Timeout', 'detected') {
1731 $c = highlight_matched_pattern($c, 'Number', '(?<='. $number_pattern . ': )\d+');
1733 $c =~ s@(?<=already sent: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1735 } elsif ($c =~ m/^Connected to /) {
1737 # Connected to tor-jail[10.0.0.2]:9050.
1739 $c = highlight_matched_host($c, '(?<=\[)[^\]]+');
1740 $c = highlight_matched_host($c, '(?<=Connected to )[^\[\s]+');
1741 $c =~ s@(?<=\]:)(\d+)@$h{'Number'}$1$h{'Standard'}@;
1743 } elsif ($c =~ m/^Could not connect to /) {
1745 # Could not connect to [10.0.0.1]:80.
1747 $c = highlight_matched_host($c, '(?<=\[)[^\]]+');
1748 $c =~ s@(?<=\]:)(\d+)@$h{'Number'}$1$h{'Standard'}@;
1750 } elsif ($c =~ m/^Waiting for the next client request/ or
1751 $c =~ m/^The connection on server socket/ or
1752 $c =~ m/^Client request (?:\d+ )?(?:arrived in time|has been pipelined) /) {
1754 # Waiting for the next client request on socket 3. Keeping the server \
1755 # socket 12 to a.fsdn.com open.
1756 # The connection on server socket 6 to upload.wikimedia.org isn't reusable. Closing.
1757 # Privoxy 3.0.20 and later:
1758 # Client request 4 arrived in time on socket 7.
1759 # Used by Privoxy 3.0.18 and 3.0.19:
1760 # Client request arrived in time on socket 21.
1761 # Used by earlier version:
1762 # Client request arrived in time or the client closed the connection on socket 12.
1763 # Client request 8 has been pipelined on socket 7 and the socket is still alive.
1765 $c =~ s@(?<=request )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1766 $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1767 $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1768 $c = highlight_matched_host($c, '(?<=to )[^\s]+');
1770 } elsif ($c =~ m/^Marking the server socket/) {
1772 # Marking the server socket 7 tainted.
1774 $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1776 } elsif ($c =~ m/^Reduced expected bytes to /) {
1778 # Reduced expected bytes to 0 to account for the 1542 ones we already got.
1779 $c =~ s@(?<=bytes to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1780 $c =~ s@(?<=for the )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1782 } elsif ($c =~ m/^The client closed socket /) {
1784 # The client closed socket 2 while the server socket 4 is still open.
1785 $c =~ s@(?<=closed socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1786 $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1788 } elsif ($c =~ m/^Expected client content length set /) {
1790 # Expected client content length set to 667325411 after reading 4999 bytes.
1791 $c =~ s@(?<=set to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1792 $c =~ s@(?<=reading )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1794 } elsif ($c =~ m/^Reducing expected bytes to /) {
1796 # Reducing expected bytes to 0. Marking the server socket tainted after throwing 4 bytes away.
1797 $c =~ s@(?<=bytes to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1798 $c =~ s@(?<=after throwing )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1800 } elsif ($c =~ m/^Waiting for up to /) {
1802 # Waiting for up to 4999 bytes from the client.
1803 $c =~ s@(?<=up to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1805 } elsif ($c =~ m/^Optimistically sending /) {
1807 # Optimistically sending 318 bytes of client headers intended for www.privoxy.org
1808 # Optimistically sending 318 bytes of client headers intended for www.privoxy.org.
1809 $c =~ s@(?<=sending )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1811 $c = highlight_matched_host($c, '[^\s]+(?=\.)');
1813 $c = highlight_matched_host($c, '(?<=for )[^\s]+');
1816 } elsif ($c =~ m/^Stopping to watch the client socket/) {
1818 # Stopping to watch the client socket. There's already another request waiting.
1819 # Privoxy 3.0.20 and later:
1820 # Stopping to watch the client socket 5. There's already another request waiting.
1821 $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1823 } elsif ($c =~ m/^Drained \d+ bytes before closing/) {
1825 # Drained 180 bytes before closing socket 6
1826 $c =~ s@(?<=Drained )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1827 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1829 } elsif ($c =~ m/^Tainting client socket/ or
1830 $c =~ m/^Failed to shutdown socket/) {
1832 # Tainting client socket 7 due to unread data.
1833 # Failed to shutdown socket 11: Connection reset by peer
1835 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1837 } elsif ($c =~ m/^Shifting \d+ pipelined bytes/) {
1839 # Shifting 360 pipelined bytes by 360 bytes
1840 $c =~ s@(?<=Shifting )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1841 $c =~ s@(?<=by )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1843 } elsif ($c =~ m/^Flushed (\d+) bytes of request body while expecting (\d+)/) {
1845 # Flushed 30 bytes of request body while expecting 30
1846 $c =~ s@(?<=Flushed )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1847 $c =~ s@(?<=expecting )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1849 } elsif ($c =~ m/^Performing the TLS\/SSL handshake with client. Hash of host:/) {
1851 # Performing the TLS/SSL handshake with client. Hash of host: bab5296b25e256c7b06b92b17b56bcae
1852 $c = highlight_matched_host($c, '(?<=Hash of host: ).+');
1854 } elsif ($c =~ m/^Forwarding \d+ bytes of encrypted POST data/) {
1856 # Forwarding 1954 bytes of encrypted POST data
1857 $c =~ s@(?<=Forwarding )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1859 } elsif ($c =~ m/^Forwarded the last \d+ bytes/) {
1861 # Forwarded the last 1954 bytes
1862 $c =~ s@(?<=the last )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1864 } elsif ($c =~ m/^Waiting for the next client connection. Currently active threads:/) {
1866 # Waiting for the next client connection. Currently active threads: 30
1867 $c =~ s@(?<=threads: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1869 } elsif ($c =~ m/^Data arrived in time on client socket/) {
1871 # Data arrived in time on client socket 6. Requests so far: 3
1872 $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1873 $c =~ s@(?<=Requests so far: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1875 } elsif ($c =~ m/^Dropping the client connection on socket/) {
1877 # Dropping the client connection on socket 71. The server connection has not been established yet.
1878 # Dropping the client connection on socket 23 with server socket 24 connected to \
1879 # www.reddit.com. The forwarder has changed.
1880 $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1881 $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1882 $c = highlight_matched_host($c, '(?<=connected to )[^ ]+(?=\.)');
1884 } elsif ($c =~ m/^The client socket \d+ has become unusable while the server/) {
1886 # The client socket 16 has become unusable while the server socket 24 is still open.
1887 $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1888 $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1890 } elsif ($c =~ m/^The last \d+ bytes of the request body have been read/) {
1892 # The last 12078 bytes of the request body have been read
1893 $c =~ s@(?<=The last )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1895 } elsif ($c =~ m/^Flushed \d+ bytes of request body/) {
1897 # Flushed 3153 bytes of request body
1898 $c =~ s@(?<=Flushed )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1900 } elsif ($c =~ m/^Complete client request followed by/) {
1902 # Complete client request followed by 59 bytes of pipelined data received.
1903 $c =~ s@(?<=followed by )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1905 } elsif ($c =~ m/^The peer notified us that the connection on socket/) {
1907 # The peer notified us that the connection on socket 11 is going to be closed
1908 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1910 } elsif ($c =~ m/^Client socket \d is no longer usable/) {
1912 # Client socket 7 is no longer usable. The server socket has been closed.
1913 $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1915 } elsif ($c =~ m/^Socket timeout \d+ reached/) {
1917 # Socket timeout 3 reached: http://127.0.0.1:20000/no-filter/chunked-content/36
1918 $c =~ s@(?<=timeout )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1919 $c = highlight_matched_url($c, "(?<=reached: ).*")
1921 } elsif ($c =~ m/^Prepared to read up to /) {
1923 # Prepared to read up to 157 bytes of encrypted request body from the client.
1924 $c =~ s@(?<=up to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1926 } elsif ($c =~ m/^Forwarding \d+ bytes /) {
1928 # Forwarding 157 bytes of encrypted request body.
1929 $c =~ s@(?<=Forwarding )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1931 } elsif ($c =~ m/^Buffering encrypted client body/) {
1933 # Buffering encrypted client body. Prepared to read up to 2236 bytes.
1934 $c =~ s@(?<=up to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1936 } elsif ($c =~ m/^The last \d+ bytes of the encrypted request body have been read/) {
1938 # The last 6945 bytes of the encrypted request body have been read.
1939 $c =~ s@(?<=The last )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1941 } elsif ($c =~ m/^Reducing the chunk offset from/) {
1943 # Reducing the chunk offset from 1096654 to 32704 after discarding 1063950 bytes to make room in the buffer.
1944 # Reducing the chunk offset from 16219 to 128 after flushing 16091 bytes.
1945 $c =~ s@(?<=\d to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1946 $c =~ s@(?<=offset from )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1947 $c =~ s@(?<=after discarding )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1948 $c =~ s@(?<=after flushing )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1950 } elsif ($c =~ m/^Client socket \d+ is no longer usable/) {
1952 # Client socket 21 is no longer usable. The server socket has been closed.
1953 $c =~ s@(?<=Client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
1955 } elsif ($c =~ m/^(Client|Server) successfully connected over/) {
1957 # Server successfully connected over TLSv1.3 (TLS_AES_256_GCM_SHA384).
1958 # Client successfully connected over TLSv1.3 (TLS_AES_128_GCM_SHA256).
1959 $c =~ s@(?<=connected over )(TLSv\d\.\d)@$h{'tls-version'}$1$h{'Standard'}@;
1960 $c =~ s@(?<=\()([^)]+)@$h{'cipher-suite'}$1$h{'Standard'}@;
1962 } elsif ($c =~ m/^Looks like we / or
1963 $c =~ m/^Unsetting keep-alive flag/ or
1964 $c =~ m/^No connections to wait/ or
1965 $c =~ m/^Complete client request received/ or
1966 $c =~ m/^Possible pipeline attempt detected./ or
1967 $c =~ m/^POST request detected. The connection will not be kept alive./ or
1968 $c =~ m/^The server still wants to talk, but the client hung up on us./ or
1969 $c =~ m/^The server didn't specify how long the connection will stay open/ or
1970 $c =~ m/^There might be a request body. The connection will not be kept alive/ or
1971 $c =~ m/^There better be a request body./ or
1972 $c =~ m/^Done reading from the client\.$/) {
1974 # Looks like we reached the end of the last chunk. We better stop reading.
1975 # Looks like we read the end of the last chunk together with the server \
1976 # headers. We better stop reading.
1977 # Looks like we got the last chunk together with the server headers. \
1978 # We better stop reading.
1979 # Unsetting keep-alive flag.
1980 # No connections to wait for left.
1981 # Client request arrived in time or the client closed the connection.
1982 # Complete client request received
1983 # Possible pipeline attempt detected. The connection will not be \
1984 # kept alive and we will only serve the first request.
1985 # POST request detected. The connection will not be kept alive.
1986 # The server still wants to talk, but the client hung up on us.
1987 # The server didn't specify how long the connection will stay open. Assume it's only a second.
1988 # There might be a request body. The connection will not be kept alive.
1989 # Privoxy 3.0.20 and later
1990 # There better be a request body.
1991 # Done reading from the client.
1995 found_unknown_content($c);
2003 sub handle_loglevel_info($) {
2007 if ($c =~ m/^Rewrite detected:/) {
2009 # Rewrite detected: GET http://10.0.0.2:88/blah.txt HTTP/1.1
2010 $c = highlight_matched_request_line($c, '(?<=^Rewrite detected: ).*');
2012 } elsif ($c =~ m/^Decompress(ing deflated|ion didn)/ or
2013 $c =~ m/^Compressed content detected/ or
2014 $c =~ m/^SDCH-compressed content detected/ or
2017 # Decompressing deflated iob: 117
2018 # Decompression didn't result in any content.
2019 # Compressed content detected, content filtering disabled. Consider recompiling Privoxy\
2020 # with zlib support or enable the prevent-compression action.
2021 # SDCH-compressed content detected, content filtering disabled.\
2022 # Consider suppressing SDCH offers made by the client.
2023 # Tagger 'complete-url' created empty tag. Ignored.
2027 } elsif ($c =~ m/^(Re)?loading configuration file /) {
2029 # loading configuration file '/usr/local/etc/privoxy/config':
2030 # Reloading configuration file '/usr/local/etc/privoxy/config'
2031 $c =~ s@(?<=loading configuration file \')([^\']*)@$h{'file'}$1$h{'Standard'}@;
2033 } elsif ($c =~ m/^Loading (actions|filter|trust) file: /) {
2035 # Loading actions file: /usr/local/etc/privoxy/default.action
2036 # Loading filter file: /usr/local/etc/privoxy/default.filter
2037 # Loading trust file: /usr/local/etc/privoxy/trust
2039 $c =~ s@(?<= file: )(.*)$@$h{'file'}$1$h{'Standard'}@;
2041 } elsif ($c =~ m/^exiting by signal/) {
2043 # exiting by signal 15 .. bye
2044 $c =~ s@(?<=exiting by signal )(\d+)@$h{'signal'}$1$h{'Standard'}@;
2046 } elsif ($c =~ m/^Privoxy version/) {
2048 # Privoxy version 3.0.7
2049 $c =~ s@(?<=^Privoxy version )(\d+\.\d+\.\d+)$@$h{'version'}$1$h{'Standard'}@;
2051 } elsif ($c =~ m/^Program name: /) {
2053 # Program name: /usr/local/sbin/privoxy
2054 $c =~ s@(?<=Program name: )(.*)@$h{'program-name'}$1$h{'Standard'}@;
2056 } elsif ($c =~ m/^Listening on port /) {
2058 # Listening on port 8118 on IP address 10.0.0.1
2059 $c =~ s@(?<=Listening on port )(\d+)@$h{'port'}$1$h{'Standard'}@;
2060 $c =~ s@(?<=on IP address )(.*)@$h{'ip-address'}$1$h{'Standard'}@;
2062 } elsif ($c =~ m/^\(Re-\)Open(?:ing)? logfile/) {
2064 # (Re-)Open logfile /var/log/privoxy/privoxy.log
2065 $c =~ s@(?<=Open logfile )(.*)@$h{'file'}$1$h{'Standard'}@;
2067 } elsif ($c =~ m/^(Request from|Malformed server response detected)/) {
2069 # Request from 10.0.0.1 denied. limit-connect{,} doesn't allow CONNECT requests to port 443.
2070 # Request from 10.0.0.1 marked for blocking. limit-connect{,} doesn't allow CONNECT requests to port 443.
2072 # Request from 10.0.0.1 marked for blocking. limit-connect{0} doesn't allow CONNECT requests to www.example.org:443
2073 # Malformed server response detected. Downgrading to HTTP/1.0 impossible.
2075 $c =~ s@(?<=Request from )([^\s]*)@$h{'ip-address'}$1$h{'Standard'}@;
2076 $c =~ s@(denied|blocking)@$h{'warning'}$1$h{'Standard'}@;
2077 $c =~ s@(CONNECT)@$h{'method'}$1$h{'Standard'}@;
2078 $c =~ s@(?<=to port )(\d+)@$h{'port'}$1$h{'Standard'}@;
2079 $c =~ s@(?<=to )([^\s]+)@$h{'request_'}$1$h{'Standard'}@;
2081 } elsif ($c =~ m/^Status code/) {
2083 # Status code 304 implies no body.
2084 $c =~ s@(?<=Status code )(\d+)@$h{'status-code'}$1$h{'Standard'}@;
2086 } elsif ($c =~ m/^Method/) {
2088 # Method HEAD implies no body.
2089 $c =~ s@(?<=Method )([^\s]+)@$h{'method'}$1$h{'Standard'}@;
2091 } elsif ($c =~ m/^Buffer limit reached while extending /) {
2093 # Buffer limit reached while extending the buffer (iob). Needed: 4197470. Limit: 4194304
2094 $c =~ s@(?<=Needed: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2095 $c =~ s@(?<=Limit: )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2097 } elsif ($c =~ m/^File modification detected: /) {
2099 # File modification detected: /usr/local/etc/privoxy/user-agent.action
2100 $c =~ s@(?<= detected: )(.*)$@$h{'file'}$1$h{'Standard'}@;
2102 } elsif ($c =~ m/^No logfile configured/ or
2103 $c =~ m/^Malformerd HTTP headers detected and MS IIS5 hack enabled/ or
2104 $c =~ m/^Invalid \"chunked\" transfer/ or
2105 $c =~ m/^Support for/ or
2106 $c =~ m/^Flushing header and buffers/ or
2107 $c =~ m/^Can not resolve/
2110 # No logfile configured. Please enable it before reporting any problems.
2111 # Malformerd HTTP headers detected and MS IIS5 hack enabled. Expect an invalid \
2112 # response or even no response at all.
2113 # No logfile configured. Logging disabled.
2114 # Invalid "chunked" transfer encoding detected and ignored.
2115 # Support for 'Connection: keep-alive' is experimental, incomplete and\
2116 # known not to work properly in some situations.
2117 # Flushing header and buffers. Stepping back from filtering.
2118 # Can not resolve doesnotexist: hostname nor servname provided, or not known
2122 found_unknown_content($c);
2129 sub handle_loglevel_cgi($) {
2133 if ($c =~ m/^Granting access to/) {
2135 #Granting access to http://config.privoxy.org/send-stylesheet, referrer http://p.p/ is trustworthy.
2137 } elsif ($c =~ m/^Substituting: s(.)/) {
2139 # Substituting: s/@else-not-FEATURE_ZLIB@.*@endif-FEATURE_ZLIB@//sigTU
2140 # XXX: prone to span several lines
2143 #$c =~ s@(?<=failed: )(.*)@$h{'error'}$1$h{'Standard'}@;
2144 $c =~ s@(?!<=\\)($delimiter)@$h{'pcrs-delimiter'}$1$h{'Standard'}@g; # XXX: Too aggressive
2145 #$c =~ s@(?!<=\\)($1)@$h{'pcrs-delimiter'}$1$h{'Standard'}@g;
2151 sub handle_loglevel_force($) {
2155 if ($c =~ m/^Ignored force prefix in request:/) {
2157 # Ignored force prefix in request: "GET http://10.0.0.1/PRIVOXY-FORCE/block HTTP/1.1"
2158 $c =~ s@^(Ignored)@$h{'ignored'}$1$h{'Standard'}@;
2159 $c = highlight_matched_request_line($c, '(?<=request: ")[^"]*');
2161 } elsif ($c =~ m/^Enforcing request:/) {
2163 # Enforcing request: "GET http://10.0.0.1/block HTTP/1.1".
2164 $c = highlight_matched_request_line($c, '(?<=request: ")[^"]*');
2168 found_unknown_content($c);
2175 sub handle_loglevel_error($) {
2179 if ($c =~ m/^(?:Empty|No) server or forwarder response received on socket \d+\./) {
2181 # Empty server or forwarder response received on socket 4.
2182 # Empty server or forwarder response received on socket 3. \
2183 # Closing client socket 15 without sending data.
2184 # Used by Privoxy 3.0.18 and later:
2185 # No server or forwarder response received on socket 8. \
2186 # Closing client socket 10 without sending data.
2188 $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2189 $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2191 } elsif ($c =~ m/^Didn't receive data in time:/) {
2193 # Didn't receive data in time: a.fsdn.com:443
2194 $c =~ s@(?<=in time: )(.*)@$h{'destination'}$1$h{'Standard'}@;
2196 } elsif ($c =~ m/^Sending data on socket \d+ over TLS/) {
2198 # Sending data on socket 33 over TLS/SSL failed: no TLS/SSL errors detected
2199 $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2201 } elsif ($c =~ m/^Chunk size \d+ exceeds buffered data left/) {
2203 # Chunk size 291 exceeds buffered data left. Already digested 69894 of 69957 buffered bytes.
2204 $c =~ s@(?<=size )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2205 $c =~ s@(?<=digested )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2206 $c =~ s@(?<=of )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2208 } elsif ($c =~ m/^The socks connection timed out after/) {
2210 # The socks connection timed out after 60 seconds.
2211 $c =~ s@(?<=after )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2214 # XXX: There are probably more messages that deserve highlighting.
2219 sub handle_loglevel_received($) {
2223 if ($c =~ m/^TLS from socket/) {
2224 # TLS from socket 3: \x16\xda\xe2\xa2;\x0d\x0a
2226 $c =~ s@(?<=TLS from socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2228 } elsif ($c =~ m/^from socket/) {
2229 # from socket 3: HEAD http://p.p/ HTTP/1.1\x0d\x0aHost: p.p\x0d\x0aUser-Agent: curl/7.85.0\x0d\x0aAccept: */*\x0d\x0aProxy-Connection: Keep-Alive\x0d\x0a\x0d\x0a
2231 $c =~ s@(?<=from socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2237 sub handle_loglevel_writing($) {
2241 if ($c =~ m/^to socket/) {
2242 # to socket 11: HTTP/1.1 200 Connection established\x0d\x0a\x0d\x0a
2244 $c =~ s@(?<=to socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2246 } elsif ($c =~ m/^TLS on socket /) {
2247 # TLS on socket 9: o~\xfcS[\xfa\x8f\xd6\x96\xe6_\xc7$\x1b[...]
2249 $c =~ s@(?<=TLS on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
2255 sub handle_loglevel_ignore($) {
2259 sub gather_loglevel_clf_stats($) {
2261 my $content = shift;
2262 my ($method, $resource, $http_version, $status_code, $size);
2266 # +0200] "GET https://www.youtube.com/watch?v=JmcA9LIIXWw HTTP/1.1" 200 68004
2267 # +0200] "VERSION-CONTROL http://p.p/ HTTP/1.1" 200 2787
2268 $content =~ m/^[+-]\d{4}\] "([^ ]+) (.+) (HTTP\/\d\.\d)" (\d+) (\d+)/;
2275 $stats{requests_clf}++;
2277 unless (defined $method) {
2278 # +0200] "Invalid request" 400 0
2279 return if ($content =~ m/^[+-]\d{4}\] "Invalid request"/);
2280 # +0100] "Failed reading chunked client body" 400 0
2281 return if ($content =~ m/^[+-]\d{4}\] "Failed reading chunked client body"/);
2282 # +0100] "GET https://securepubads.g.doubleclick.net/gampad/ads?gd[...]... [too long, truncated]
2283 if ($content =~ m/\[too long, truncated\]$/) {
2284 print("Skipped LOG_LEVEL_CLF message that got truncated by Privoxy. Statistics will be inprecise.\n");
2286 print("Failed to parse: $content\n");
2290 $stats{'method'}{$method}++;
2291 if ($cli_options{'url-statistics-threshold'} != 0) {
2292 $stats{'resource'}{$resource}++;
2294 $stats{'http-version'}{$http_version}++;
2296 if ($cli_options{'host-statistics-threshold'} != 0) {
2297 $resource =~ m@(?:https?://)?([^/]+)/?@;
2298 $stats{'hosts'}{$1}++;
2300 $stats{'content-size-total'} += $size;
2301 $stats{'status-code'}{$status_code}++;
2304 sub gather_loglevel_request_stats($$) {
2305 my $request_url = shift;
2311 if ($cli_options{'passed-request-statistics-threshold'} != 0) {
2312 # If the request get blocked we'll decrement
2313 # in gather_loglevel_crunch_stats()
2315 $stats{'passed-request-url'}{$request_url}++;
2319 sub gather_loglevel_crunch_stats($$) {
2327 if ($c =~ m/^Redirected:/) {
2328 # Redirected: http://www.example.org/http://p.p/
2329 $stats{'fast-redirections'}++;
2331 } elsif ($c =~ m/^Blocked:/) {
2332 # Blocked: blogger.googleusercontent.com:443
2333 $stats{'blocked'}++;
2335 } elsif ($c =~ m/^Connection timeout:/) {
2336 # Connection timeout: http://c.tile.openstreetmap.org/18/136116/87842.png
2337 $stats{'connection-timeout'}++;
2339 } elsif ($c =~ m/^Connection failure:/) {
2340 # Connection failure: http://127.0.0.1:8080/
2341 $stats{'connection-failure'}++;
2343 if ($cli_options{'passed-request-statistics-threshold'} != 0) {
2344 $c =~ m/^[^:]+: (.*)/;
2345 if ($stats{'passed-request-url'}{$1}) {
2346 $stats{'passed-request-url'}{$1}-- ;
2347 if ($stats{'passed-request-url'}{$1} == 0) {
2348 delete($stats{'passed-request-url'}{$1});
2355 sub gather_loglevel_error_stats($$) {
2362 if ($c =~ m/^Empty server or forwarder response received on socket \d+./) {
2364 # Empty server or forwarder response received on socket 4.
2365 $stats{'empty-responses'}++;
2366 if ($thread_data{$thread}{'new_connection'}) {
2367 $stats{'empty-responses-on-new-connections'}++;
2369 $stats{'empty-responses-on-reused-connections'}++;
2374 sub gather_loglevel_connect_stats($$) {
2376 my ($c, $thread) = @_;
2380 if ($c =~ m/^via ([^\s]+) to: [^\s]+/) {
2382 # Connect: via 10.0.0.1:8123 to: www.example.org.noconnect
2383 $thread_data{$thread}{'forwarder'} = $1; # XXX: is this missue?
2385 } elsif ($c =~ m/^to ([^\s]*)$/) {
2387 # Connect: to lists.sourceforge.net:443
2389 $thread_data{$thread}{'forwarder'} = 'direct connection';
2391 } elsif ($c =~ m/^Created new connection to/) {
2393 # Created new connection to www.privoxy.org:80 on socket 11.
2395 $thread_data{$thread}{'new_connection'} = 1;
2397 } elsif ($c =~ m/^Reusing server socket \d./ or
2398 $c =~ m/^Found reusable socket/) {
2400 # Reusing server socket 4. Opened for 10.0.0.1.
2401 # Found reusable socket 9 for www.privoxy.org:80 in slot 0.
2403 $thread_data{$thread}{'new_connection'} = 0;
2404 $stats{'reused-connections'}++;
2406 } elsif ($c =~ m/^Closing client socket \d+. .* Requests received: (\d+)\.$/) {
2408 # Closing client socket 12. Keep-alive: 1. Socket alive: 1. Data available: 0. \
2409 # Configuration file change detected: 0. Requests received: 14.
2411 $stats{'client-requests-on-connection'}{$1}++;
2412 $stats{'closed-client-connections'}++;
2416 sub gather_loglevel_header_stats($$) {
2418 my ($c, $thread) = @_;
2422 if ($c =~ m/^A HTTP\/1\.1 response without/ or
2423 $c =~ m/^Keeping the server header 'Connection: keep-alive' around./)
2425 # A HTTP/1.1 response without Connection header implies keep-alive.
2426 # Keeping the server header 'Connection: keep-alive' around.
2427 $stats{'server-keep-alive'}++;
2436 'server-keep-alive' => 0,
2437 'reused-connections' => 0,
2438 'empty-responses' => 0,
2439 'empty-responses-on-new-connections' => 0,
2440 'empty-responses-on-reused-connections' => 0,
2441 'fast-redirections' => 0,
2443 'connection-failure' => 0,
2444 'connection-timeout' => 0,
2445 'reused-connections' => 0,
2446 'server-keep-alive' => 0,
2447 'closed-client-connections' => 0,
2448 'content-size-total' => 0,
2450 $stats{'client-requests-on-connection'}{1} = 0;
2453 sub get_percentage($$) {
2457 # If small is 0 the percentage is always 0%.
2458 # Make sure it works even if big is 0 as well.
2459 return "0.00%" if ($small eq 0);
2461 # Prevent division by zero.
2462 # XXX: Is this still supposed to be reachable?
2463 return "NaN" if ($big eq 0);
2465 return sprintf("%.2f%%", $small / $big * 100);
2472 my $new_connections = $stats{requests} - $stats{crunches} - $stats{'reused-connections'};
2473 my $client_requests_checksum = 0;
2476 if ($stats{requests_clf} && $stats{requests}
2477 && $stats{requests_clf} != $stats{requests}) {
2478 print "Inconsistent request counts: " . $stats{requests} . "/" . $stats{requests_clf} . "\n";
2481 # To get the total number of requests we can use either the number
2482 # of Common-Log-Format lines or the number of "Request:" messages.
2483 # We prefer the number of CLF lines if available because using
2484 # it works when analysing old log files from Privoxy versions before 3.0.29.
2485 # In Privoxy 3.0.28 and earlier "Request:" messages excluded
2486 # crunched messages.
2487 $requests_total = $stats{requests_clf} ? $stats{requests_clf} : $stats{requests};
2489 if ($requests_total eq 0) {
2490 print "No requests yet.\n";
2494 print "Client requests total: " . $requests_total . "\n";
2495 if ($stats{crunches}) {
2496 my $outgoing_requests = $requests_total - $stats{crunches};
2497 print "Crunches: " . $stats{crunches} . " (" .
2498 get_percentage($requests_total, $stats{crunches}) . ")\n";
2499 print "Blocks: " . $stats{'blocked'} . " (" .
2500 get_percentage($requests_total, $stats{'blocked'}) . ")\n";
2501 print "Fast redirections: " . $stats{'fast-redirections'} . " (" .
2502 get_percentage($requests_total, $stats{'fast-redirections'}) . ")\n";
2503 print "Connection timeouts: " . $stats{'connection-timeout'} . " (" .
2504 get_percentage($requests_total, $stats{'connection-timeout'}) . ")\n";
2505 print "Connection failures: " . $stats{'connection-failure'} . " (" .
2506 get_percentage($requests_total, $stats{'connection-failure'}) . ")\n";
2507 print "Outgoing requests: " . $outgoing_requests . " (" .
2508 get_percentage($requests_total, $outgoing_requests) . ")\n";
2510 print "No crunches detected. Is 'debug 1024' enabled?\n";
2513 print "Server keep-alive offers: " . $stats{'server-keep-alive'} . " (" .
2514 get_percentage($requests_total, $stats{'server-keep-alive'}) . ")\n";
2515 print "New outgoing connections: " . $new_connections . " (" .
2516 get_percentage($requests_total, $new_connections) . ")\n";
2517 print "Reused server connections: " . $stats{'reused-connections'} . " (" .
2518 get_percentage($requests_total, $stats{'reused-connections'}) .
2519 "; server offers accepted: " .
2520 get_percentage($stats{'server-keep-alive'}, $stats{'reused-connections'}) . ")\n";
2521 print "Empty responses: " . $stats{'empty-responses'} . " (" .
2522 get_percentage($requests_total, $stats{'empty-responses'}) . ")\n";
2523 print "Empty responses on new connections: "
2524 . $stats{'empty-responses-on-new-connections'} . " (" .
2525 get_percentage($requests_total, $stats{'empty-responses-on-new-connections'})
2527 print "Empty responses on reused connections: " .
2528 $stats{'empty-responses-on-reused-connections'} . " (" .
2529 get_percentage($requests_total, $stats{'empty-responses-on-reused-connections'}) .
2531 print "Client connections: " . $stats{'closed-client-connections'} . "\n";
2532 if ($stats{'content-size-total'}) {
2533 print "Bytes of content transferred to the client: " . $stats{'content-size-total'} . "\n";
2535 my $lines_printed = 0;
2536 print "Client requests per connection distribution:\n";
2537 foreach my $client_requests (sort {
2538 $stats{'client-requests-on-connection'}{$b} <=> $stats{'client-requests-on-connection'}{$a}}
2539 keys %{$stats{'client-requests-on-connection'}
2542 my $count = $stats{'client-requests-on-connection'}{$client_requests};
2543 $client_requests_checksum += $count * $client_requests;
2544 if ($cli_options{'show-complete-request-distribution'} or ($lines_printed < 10)) {
2545 printf "%8d: %d\n", $count, $client_requests;
2549 unless ($cli_options{'show-complete-request-distribution'}) {
2550 printf "Enable --show-complete-request-distribution to get less common numbers as well.\n";
2552 # Due to log rotation we may not have a complete picture for all the requests
2553 printf "Improperly accounted requests: ~%d\n", abs($requests_total - $client_requests_checksum);
2555 if (exists $stats{method}) {
2556 print "Method distribution:\n";
2557 foreach my $method (sort {$stats{'method'}{$b} <=> $stats{'method'}{$a}} keys %{$stats{'method'}}) {
2558 printf "%8d : %-8s\n", $stats{'method'}{$method}, $method;
2561 print "Method distribution unknown. No CLF message parsed yet. Is 'debug 512' enabled?\n";
2563 if (exists $stats{'http-version'}) {
2564 print "Client HTTP versions:\n";
2565 foreach my $http_version (sort {$stats{'http-version'}{$b} <=> $stats{'http-version'}{$a}} keys %{$stats{'http-version'}}) {
2566 printf "%8d : %-8s\n", $stats{'http-version'}{$http_version}, $http_version;
2569 print "HTTP version distribution unknown. No CLF message parsed yet. Is 'debug 512' enabled?\n";
2571 if (exists $stats{'status-code'}) {
2572 print "HTTP status codes according to 'debug 512' (status codes sent by the server may differ):\n";
2573 foreach my $status_code (sort {$stats{'status-code'}{$b} <=> $stats{'status-code'}{$a}} keys %{$stats{'status-code'}}) {
2574 printf "%8d : %-8d\n", $stats{'status-code'}{$status_code}, $status_code;
2577 print "Status code distribution unknown. No CLF message parsed yet. Is 'debug 512' enabled?\n";
2580 if ($cli_options{'url-statistics-threshold'} == 0) {
2581 print "URL statistics are disabled. Increase --url-statistics-threshold to enable them.\n";
2583 print "Requested URLs:\n";
2584 foreach my $resource (sort {$stats{'resource'}{$b} <=> $stats{'resource'}{$a}} keys %{$stats{'resource'}}) {
2585 if ($stats{'resource'}{$resource} < $cli_options{'url-statistics-threshold'}) {
2586 print "Skipped statistics for URLs below the treshold.\n";
2589 printf "%d : %s\n", $stats{'resource'}{$resource}, $resource;
2593 if ($cli_options{'passed-request-statistics-threshold'} == 0) {
2594 print "Passed request statistics are disabled. Increase --passed-request-statistics-threshold to enable them.\n";
2596 print "Requested requests that were passed:\n";
2597 foreach my $passed_url (sort {$stats{'passed-request-url'}{$b} <=> $stats{'passed-request-url'}{$a}}
2598 keys %{$stats{'passed-request-url'}}) {
2599 if ($stats{'passed-request-url'}{$passed_url} < $cli_options{'passed-request-statistics-threshold'}) {
2600 print "Skipped statistics for passed URLs below the treshold.\n";
2603 printf "%d : %s\n", $stats{'passed-request-url'}{$passed_url}, $passed_url;
2606 if ($cli_options{'host-statistics-threshold'} == 0) {
2607 print "Host statistics are disabled. Increase --host-statistics-threshold to enable them.\n";
2609 print "Requested Hosts:\n";
2610 foreach my $host (sort {$stats{'hosts'}{$b} <=> $stats{'hosts'}{$a}} keys %{$stats{'hosts'}}) {
2611 if ($stats{'hosts'}{$host} < $cli_options{'host-statistics-threshold'}) {
2612 print "Skipped statistics for Hosts below the treshold.\n";
2615 printf "%d : %s\n", $stats{'hosts'}{$host}, $host;
2621 ################################################################################
2622 # Functions that actually print stuff
2623 ################################################################################
2625 sub print_clf_message() {
2627 our ($ip, $timestamp, $request_line, $status_code, $size);
2630 return if DEBUG_SUPPRESS_LOG_MESSAGES;
2632 # Rebuild highlighted
2633 $output .= $h{'Number'} . $ip . $h{'Standard'};
2635 $output .= "[" . $h{'Timestamp'} . $timestamp . $h{'Standard'} . "]";
2637 $output .= "\"" . highlight_request_line("$request_line") . "\"";
2639 $output .= $h{'Status'} . $status_code . $h{'Standard'};
2641 $output .= $h{'Number'} . $size . $h{'Standard'};
2642 $output .= $line_end;
2647 sub print_non_clf_message($) {
2649 my $content = shift;
2650 my $date_string = $keep_date_mode ? $req{$t}{'day'} . ' ' : '';
2651 my $msec_string = $no_msecs_mode ? '' : '.' . $req{$t}{'msecs'};
2652 my $line_start = $html_output_mode ? '' : $h{"Standard"};
2654 return if DEBUG_SUPPRESS_LOG_MESSAGES;
2658 . $time_colours[$time_colour_index % 2]
2659 . $req{$t}{'time-stamp'}
2661 . $h{Standard} . " "
2662 . $thread_colours{$t}
2666 . $h{$req{$t}{'log-level'}}
2667 . $req{$t}{'log-level'}
2674 sub shorten_thread_id($) {
2676 my $thread_id = shift;
2678 our %short_thread_ids;
2681 unless (defined $short_thread_ids{$thread_id}) {
2682 $short_thread_ids{$thread_id} = sprintf "%.3d", $max_threadid++;
2685 return $short_thread_ids{$thread_id}
2690 my ($day, $time_stamp, $thread, $log_level, $content, $c, $msecs);
2692 my $last_thread = 0;
2693 my $last_timestamp = 0;
2694 my $filters_that_did_nothing;
2697 $time_colour = paint_it('white');
2699 my %log_level_handlers = (
2700 'Re-Filter' => \&handle_loglevel_re_filter,
2701 'Header' => \&handle_loglevel_header,
2702 'Connect' => \&handle_loglevel_connect,
2703 'Redirect' => \&handle_loglevel_redirect,
2704 'Request' => \&handle_loglevel_request,
2705 'Crunch' => \&handle_loglevel_crunch,
2706 'Gif-Deanimate' => \&handle_loglevel_gif_deanimate,
2707 'Info' => \&handle_loglevel_info,
2708 'CGI' => \&handle_loglevel_cgi,
2709 'Force' => \&handle_loglevel_force,
2710 'Error' => \&handle_loglevel_error,
2711 'Fatal error' => \&handle_loglevel_ignore,
2712 'Writing' => \&handle_loglevel_writing,
2713 'Received' => \&handle_loglevel_received,
2714 'Tagging' => \&handle_loglevel_tagging,
2715 'Actions' => \&handle_loglevel_ignore,
2716 'Unknown log level' => \&handle_loglevel_ignore,
2721 if (m/^(\d{4}-\d{2}-\d{2}|\w{3} \d{2}) (\d\d:\d\d:\d\d)\.?(\d+)? (?:Privoxy\()?([^\)\s]*)[\)]? ([\w -]*): (.*?)\r?$/) {
2722 $thread = $t = ($shorten_thread_ids) ? shorten_thread_id($4) : $4;
2723 $req{$t}{'day'} = $day = $1;
2724 $req{$t}{'time-stamp'} = $time_stamp = $2;
2725 $req{$t}{'msecs'} = $msecs = $3 ? $3 : 0; # Only the cool kids have micro second resolution;
2726 $req{$t}{'log-level'} = $log_level = $5;
2727 $req{$t}{'content'} = $content = $c = $6;
2728 $req{$t}{'log-message'} = $_;
2729 $no_special_header_highlighting = 0;
2731 if (defined($log_level_handlers{$log_level})) {
2733 $content = $log_level_handlers{$log_level}($content);
2737 die "No handler found for log level \"$log_level\"\n";
2740 # Highlight Truncations
2741 if (length($_) > 4000) {
2742 $content =~ s@(too long, truncated)]$@$h{'Truncation'}$1$h{'Standard'}]@g;
2745 next unless $content;
2747 # Register threads to keep the colour constant
2748 if (!defined($thread_colours{$thread})) {
2749 $thread_colours{$thread} = $all_colours[$thread_colour_index % @all_colours];
2750 $thread_colour_index++;
2753 # Switch timestamp colour if timestamps differ
2754 if (($msecs ne $last_msecs) || ($time_stamp ne $last_timestamp)) {
2755 debug_message("Tick tack!") if DEBUG_TICKS;
2756 $time_colour = $time_colours[$time_colour_index % 2];
2757 $time_colour_index++;
2758 $last_msecs = $msecs;
2759 $last_timestamp = $time_stamp;
2762 $last_thread = $thread;
2764 print_non_clf_message($content);
2766 } elsif (m/^((?:\d+\.\d+\.\d+\.\d+|[:\d]+)) - - \[(.*)\] "(.*)" (\d+) (\d+)/) {
2768 # LOG_LEVEL_CLF lines look like this
2769 # 61.152.239.32 - - [04/Mar/2007:18:28:23 +0100] "GET \
2770 # http://ad.yieldmanager.com/imp?z=1&Z=120x600&s=109339&u=http%3A%2F%2Fwww.365loan.co.uk%2F&r=1\
2771 # HTTP/1.1" 403 1730
2772 our ($ip, $timestamp, $request_line, $status_code, $size) = ($1, $2, $3, $4, $5);
2774 print_clf_message();
2778 # Some Privoxy log messages span more than one line,
2779 # usually to dump lots of content that doesn't need any syntax highlighting.
2780 # XXX: add mechanism to forward these lines to the right handler anyway.
2782 unless (DEBUG_SUPPRESS_LOG_MESSAGES or (SUPPRESS_EMPTY_LINES and m/^\s+$/)) {
2783 print and print get_line_end(); # unless (SUPPRESS_EMPTY_LINES and m/^\s+$/);
2791 my ($day, $time_stamp, $thread, $log_level, $content);
2792 my $strict_checks = cli_option_is_set('strict-checks');
2793 my %log_level_handlers = (
2794 'Connect:' => \&gather_loglevel_connect_stats,
2795 'Crunch:' => \&gather_loglevel_crunch_stats,
2796 'Error:' => \&gather_loglevel_error_stats,
2797 'Header:' => \&gather_loglevel_header_stats,
2798 'Request:' => \&gather_loglevel_request_stats,
2800 my %ignored_log_levels = (
2801 'Actions:' => \&handle_loglevel_ignore,
2802 'CGI:' => \&handle_loglevel_ignore,
2803 'Fatal error:' => \&handle_loglevel_ignore,
2804 'Force:' => \&handle_loglevel_ignore,
2805 'Gif-Deanimate:' => \&handle_loglevel_ignore,
2806 'Info:' => \&handle_loglevel_ignore,
2807 'Re-Filter:' => \&handle_loglevel_ignore,
2808 'Received:' => \&handle_loglevel_ignore,
2809 'Redirect:' => \&handle_loglevel_ignore,
2810 'Unknown log level:' => \&handle_loglevel_ignore,
2811 'Writing:' => \&handle_loglevel_ignore,
2812 'Tagging:' => \&handle_loglevel_ignore,
2816 (undef, $time_stamp, $thread, $log_level, $content) = split(/ /, $_, 5);
2819 next if (not defined($log_level));
2821 if ($time_stamp eq "-") {
2823 gather_loglevel_clf_stats($content);
2825 } elsif (defined($log_level_handlers{$log_level})) {
2827 $content = $log_level_handlers{$log_level}($content, $thread);
2829 } elsif ($strict_checks and not defined($ignored_log_levels{$log_level})) {
2831 die "No handler found for: $_";
2839 # Convert a timestamp like 18:07:28.733 into milliseconds
2840 sub time_stamp_to_msecs($) {
2841 my $time_stamp = shift;
2843 if ($time_stamp =~ /(\d\d):(\d\d):(\d\d)\.(\d{3})/) {
2844 my ($hours, $minutes, $seconds, $msecs) = ($1, $2, $3, $4);
2846 $msecs += $seconds * 1000;
2847 $msecs += $minutes * 1000 * 60;
2848 $msecs += $hours * 1000 * 60 * 60;
2855 sub inactivity_detection_loop() {
2858 my ($date, $time_stamp, $thread, $log_level, $content);
2859 my ($msecs, $previous_msecs, $inactivity);
2860 my $inactivity_threshold = $cli_options{'inactivity-threshold'};
2862 my $log_messages_out_of_order = 0;
2865 ($date, $time_stamp, $thread, $log_level, $content) = split(/ /, $_, 5);
2867 next if (not defined($log_level));
2868 next if ($time_stamp eq "-");
2869 $msecs = time_stamp_to_msecs($time_stamp);
2870 unless (defined $msecs) {
2871 print "Failed to convert $time_stamp into milliseconds\n";
2875 unless (defined $previous_msecs) {
2876 $previous_msecs = $msecs;
2877 $previous_date = $date;
2881 $inactivity = $msecs - $previous_msecs;
2882 if ($inactivity < 0) {
2883 # This can happen if there's a high load in which case
2884 # a Privoxy thread may be moved off schedule between
2885 # getting the timestamp for the log message and actually
2887 $log_messages_out_of_order++;
2889 if ($inactivity > $inactivity_threshold) {
2890 if ($previous_date eq $date) {
2891 print "Detected inactivity: $inactivity msecs\n";
2893 # While we could include the date in the timestamp
2894 # we currently don't.
2895 print "Detected date change. Timestamp difference ignored.\n";
2899 $previous_msecs = $msecs;
2900 $previous_date = $date;
2902 if ($log_messages_out_of_order) {
2903 print "At least $log_messages_out_of_order messages were written out of the chronological order.\n";
2904 print "This can result in false positives. Consider sorting the log first.\n";
2908 sub unbreak_lines_only_loop() {
2909 my $log_messages_reached = 0;
2913 # Log level other than LOG_LEVEL_CLF?
2914 if (m/^(\d{4}-\d{2}-\d{2}|\w{3} \d{2}) (\d\d:\d\d:\d\d)\.?(\d+)? (?:Privoxy\()?([^\)\s]*)[\)]? ([\w -]*): (.*?)\r?$/ or
2916 m/^((?:\d+\.\d+\.\d+\.\d+)) - - \[(.*)\] "(.*)" (\d+) (\d+)/) {
2917 $log_messages_reached = 1;
2922 $_ = "\n". $_ if /^(?:\d+\.\d+\.\d+\.\d+)/;
2927 print "\n" unless $log_messages_reached;
2932 sub VersionMessage {
2933 my $version_message;
2935 $version_message .= 'Privoxy-Log-Parser ' . PRIVOXY_LOG_PARSER_VERSION . "\n";
2936 $version_message .= 'https://www.fabiankeil.de/sourcecode/privoxy-log-parser/' . "\n";
2938 print $version_message;
2941 sub get_cli_options() {
2943 our %cli_options = (
2944 'detect-inactivity' => CLI_OPTION_DETECT_INACTIVITY,
2945 'inactivity-threshold' => CLI_OPTION_INACTIVITY_THRESHOLD,
2946 'html-output' => CLI_OPTION_DEFAULT_TO_HTML_OUTPUT,
2947 'title' => CLI_OPTION_TITLE,
2948 'keep-date' => CLI_OPTION_KEEP_DATE,
2949 'no-syntax-highlighting' => CLI_OPTION_NO_SYNTAX_HIGHLIGHTING,
2950 'no-embedded-css' => CLI_OPTION_NO_EMBEDDED_CSS,
2951 'no-msecs' => CLI_OPTION_NO_MSECS,
2952 'shorten-thread-ids' => CLI_OPTION_SHORTEN_THREAD_IDS,
2953 'show-ineffective-filters' => CLI_OPTION_SHOW_INEFFECTIVE_FILTERS,
2954 'statistics' => CLI_OPTION_STATISTICS,
2955 'strict-checks' => CLI_OPTION_STRICT_CHECKS,
2956 'url-statistics-threshold' => CLI_OPTION_URL_STATISTICS_THRESHOLD,
2957 'unbreak-lines-only' => CLI_OPTION_UNBREAK_LINES_ONLY,
2958 'host-statistics-threshold'=> CLI_OPTION_HOST_STATISTICS_THRESHOLD,
2959 'passed-request-statistics-threshold' => CLI_OPTION_PASSED_REQUEST_STATISTICS_THRESHOLD,
2960 'show-complete-request-distribution' => CLI_OPTION_SHOW_COMPLETE_REQUEST_DISTRIBUTION,
2964 'detect-inactivity' => \$cli_options{'detect-inactivity'},
2965 'inactivity-threshold=i' => \$cli_options{'inactivity-threshold'},
2966 'html-output' => \$cli_options{'html-output'},
2967 'title' => \$cli_options{'title'},
2968 'keep-date' => \$cli_options{'keep-date'},
2969 'no-syntax-highlighting' => \$cli_options{'no-syntax-highlighting'},
2970 'no-embedded-css' => \$cli_options{'no-embedded-css'},
2971 'no-msecs' => \$cli_options{'no-msecs'},
2972 'shorten-thread-ids' => \$cli_options{'shorten-thread-ids'},
2973 'show-ineffective-filters' => \$cli_options{'show-ineffective-filters'},
2974 'statistics' => \$cli_options{'statistics'},
2975 'strict-checks' => \$cli_options{'strict-checks'},
2976 'unbreak-lines-only' => \$cli_options{'unbreak-lines-only'},
2977 'url-statistics-threshold=i'=> \$cli_options{'url-statistics-threshold'},
2978 'host-statistics-threshold=i'=> \$cli_options{'host-statistics-threshold'},
2979 'passed-request-statistics-threshold=i' => \$cli_options{'passed-request-statistics-threshold'},
2980 'show-complete-request-distribution' => \$cli_options{'show-complete-request-distribution'},
2981 'version' => sub { VersionMessage && exit(0) },
2985 $html_output_mode = cli_option_is_set('html-output');
2986 $no_msecs_mode = cli_option_is_set('no-msecs');
2987 $keep_date_mode = cli_option_is_set('keep-date');
2988 $shorten_thread_ids = cli_option_is_set('shorten-thread-ids');
2989 $line_end = get_line_end();
3000 Options and their default values if they have any:
3001 [--detect-innactivity]
3002 [--inactivity-threshold $cli_options{'inactivity-threshold'}]
3003 [--host-statistics-threshold $cli_options{'host-statistics-threshold'}]
3007 [--no-syntax-highlighting]
3008 [--shorten-thread-ids]
3009 [--show-ineffective-filters]
3010 [--show-complete-request-distribution]
3012 [--unbreak-lines-only]
3013 [--url-statistics-threshold $cli_options{'url-statistics-threshold'}]
3014 [--passed-request-statistics-threshold $cli_options{'passed-request-statistics-threshold'}]
3015 [--title $cli_options{'title'}]
3017 see "perldoc $0" for more information
3023 ################################################################################
3025 ################################################################################
3029 set_background(DEFAULT_BACKGROUND);
3030 prepare_our_stuff();
3032 # XXX: should explicitly reject incompatible argument combinations
3033 if (cli_option_is_set('unbreak-lines-only')) {
3034 unbreak_lines_only_loop();
3035 } elsif (cli_option_is_set('statistics')) {
3037 } elsif (cli_option_is_set('detect-inactivity')) {
3038 inactivity_detection_loop();
3050 B<privoxy-log-parser> - A parser and syntax-highlighter for Privoxy log messages
3054 B<privoxy-log-parser> [B<--detect-inactivity>] [B<--inactivity-threshold msecs>]
3056 [B<--no-msecs>] [B<--no-syntax-higlighting>] [B<--statistics>]
3057 [B<--shorten-thread-ids>] [B<--show-ineffective-filters>]
3058 [B<--url-statistics-threshold>] [B<--version>]
3062 B<privoxy-log-parser> reads Privoxy log messages and
3064 - syntax-highlights recognized lines,
3066 - reformats some of them for easier comprehension,
3068 - filters out less useful messages, and
3070 - (in some cases) calculates additional information,
3071 like the compression ratio or how a filter affected
3074 With B<privoxy-log-parser> you should be able to increase Privoxy's log level
3075 without getting confused by the resulting amount of output. For example for
3076 "debug 64" B<privoxy-log-parser> will (by default) only show messages that
3077 affect the content. If a filter doesn't cause any hits, B<privoxy-log-parser>
3078 will hide the "filter foo caused 0 hits" message.
3082 [B<--detect-inactivity>] Instead of syntax highlighting, detect periods
3083 of log inactivity of more than the amount of milliseconds specified with
3084 the B<--inactivity-threshold> option. Mainly useful for debugging.
3086 [B<--host-statistics-threshold>] Only show the request count for a host
3087 if it's above or equal to the given threshold. If the threshold is 0, host
3088 statistics are disabled.
3090 [B<--html-output>] Use HTML and CSS when syntax highlighting. If this option is
3091 omitted, ANSI escape sequences are used unless B<--no-syntax-highlighting> is active.
3092 This option is only intended to make embedding log excerpts in web pages easier.
3093 It does not escape any input!
3095 [B<--inactivity-threshold msecs>] Specifies the number of milliseconds between
3096 log messages to consider inactivity when running in [B<--detect-inactivity>]
3099 [B<--keep-date>] Don't remove the date when printing highlighted log messages.
3100 Useful when parsing multiple log files at once.
3102 [B<--no-msecs>] Don't expect millisecond resolution
3104 [B<--no-syntax-highlighting>] Disable syntax-highlighting. Useful when
3105 the filtered output is piped into less in which case the ANSI control
3106 codes don't work, or if the terminal itself doesn't support the control
3109 [B<--passed-request-statistics-threshold>] Only show the request count for
3110 a passed requests if it's above or equal to the given threshold. If the
3111 threshold is 0, passed request statistics are disabled.
3113 [B<--shorten-thread-ids>] Shorten the thread ids to a three-digit decimal number.
3114 Note that the mapping from thread ids to shortened ids is created at run-time
3115 and thus varies with the input.
3117 [B<--show-ineffective-filters>] Don't suppress log lines for filters
3118 that didn't modify the content.
3120 [B<--show-complete-request-distribution>] Show the complete client request
3121 distribution in the B<--statistics> output. Without this option only the
3122 ten most common numbers are shown.
3124 [B<--statistics>] Gather various statistics instead of syntax highlighting
3125 log messages. This is an experimental feature, if the results look wrong
3126 they very well might be. Also note that the results are pretty much guaranteed
3127 to be incorrect if Privoxy and Privoxy-Log-Parser aren't in sync.
3129 [B<--strict-checks>] When generating statistics, look more careful at the
3130 input data and abort if it is unexpected, even if it doesn't affect the
3131 results. Significantly slows the parsing down and is not expected to catch
3132 any problems that matter.
3133 When highlighting, print warnings in case of unknown messages which can't be
3134 properly highlighted.
3136 [B<--unbreak-lines-only>] Tries to fix lines that got messed up by a broken or
3137 interestingly configured mail client and thus are no longer recognized properly.
3138 Only fixes some breakage, but may be good enough or at least better than nothing.
3139 Doesn't do anything else, so you probably want to pipe the output into
3140 B<privoxy-log-parser> again.
3142 [B<--url-statistics-threshold>] Only show the request count for a resource
3143 if it's above or equal to the given threshold. If the threshold is 0, URL
3144 statistics are disabled.
3146 [B<--version>] Print version and exit.
3150 To monitor a log file:
3152 tail -F /usr/jails/privoxy-jail/var/log/privoxy/privoxy.log | B<privoxy-log-parser>
3154 Replace '-F' with '-f' if your tail implementation lacks '-F' support
3155 or if the log won't get rotated anyway. The log file location depends
3156 on your system (Doh!).
3158 To monitor Privoxy without having it write to a log file:
3160 privoxy --no-daemon /usr/jails/privoxy-jail/usr/local/etc/privoxy/config 2>&1 | B<privoxy-log-parser>
3162 Again, the config file location depends on your system. Output redirection
3163 depends on your shell, the above works with bourne shells.
3165 To read a processed Privoxy log file from top to bottom, letting the content
3166 scroll by slightly faster than you can read:
3168 B<privoxy-log-parser> < /usr/jails/privoxy-jail/var/log/privoxy/privoxy.log
3170 This is probably only useful to fill screens in the background of haxor movies.
3174 Syntax highlighting with ANSI escape sequences will look strange
3175 if your background color isn't black.
3177 Some messages aren't recognized yet and will not be fully highlighted.
3179 B<privoxy-log-parser> is developed with Privoxy 3.0.7 or later in mind,
3180 using earlier Privoxy versions will probably result in an increased amount
3181 of unrecognized log lines.
3183 Privoxy's log files tend to be rather large. If you use HTML
3184 highlighting some browsers can't handle them, get confused and
3185 will eventually crash because of segmentation faults or unexpected
3186 exceptions. This is a problem in the browser and not B<privoxy-log-parser>'s
3191 Many settings can't be controlled through command line options yet.
3199 Fabian Keil <fk@fabiankeil.de>