public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Eitelwein <michael@eitelwein.net>
To: development@lists.ipfire.org
Subject: [PATCH 2/5] Fix regex to extract firewall chain for ipv6 in showrequestfrom*.dat
Date: Sun, 10 Jan 2016 18:36:04 +0100	[thread overview]
Message-ID: <56929684.8040005@eitelwein.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 3902 bytes --]

If bridged ipv6 is used, $iface is taken from PHYSIN
In the log line the order of fields is "... IN=XY OUT=XY PHYSIN=XY ..."

Signed-off-by: Michael Eitelwein <michael(a)eitelwein.net>

---
  html/cgi-bin/logs.cgi/showrequestfromcountry.dat | 8 ++++----
  html/cgi-bin/logs.cgi/showrequestfromip.dat      | 2 +-
  html/cgi-bin/logs.cgi/showrequestfromport.dat    | 2 +-
  3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
index 0784ab9..07bf864 100644
--- a/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
+++ b/html/cgi-bin/logs.cgi/showrequestfromcountry.dat
@@ -181,7 +181,7 @@ if (!$skip)
              elsif($srcaddr ne '') {
                  # or srcaddr matches country code
                  my $ccode = $gi->country_code_by_name($srcaddr);
-                if($ccode eq $country){
+                if($ccode eq uc($country)){
                      $log[$lines] = $_;
                      $lines++;
                  }
@@ -221,7 +221,7 @@ if ($multifile) {
                      elsif (($_ =~ /SRC\=(([\d]{1,3})(\.([\d]{1,3})){3})/) or ($_ =~ /SRC\=(([0-9a-fA-F]{0,4})(\:([0-9a-fA-F]{0,4})){2,7})/)) {
                        my $srcaddr=$1;
                        my $ccode = $gi->country_code_by_name($srcaddr);
-                      if($ccode eq $country){
+                      if($ccode eq uc($country)){
                          # or srcaddr matches country code
                          $log[$lines] = $_;
                          $lines++;
@@ -351,7 +351,7 @@ foreach $_ (@slice)
      if($iface ne $country) {
        $ccode = $gi->country_code_by_name($srcaddr);
      }
-    if($iface eq $country || $ccode eq $country) {
+    if($iface eq $country || $ccode eq uc($country)) {
        my $chain = '';
        my $in = '-'; my $out = '-';
        my $srcaddr = ''; my $dstaddr = '';
@@ -359,7 +359,7 @@ foreach $_ (@slice)
        my $srcport = ''; my $dstport = '';

        # If ipv6 uses bridge, the use PHYSIN otherwise use IN
-      if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(PHYSIN=.*)$/) {}
+      if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)(PHYSIN=.*)$/) {}
        elsif ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)$/) {}
        my $timestamp = $1; my $chain = $2; my $packet = $3;
        $timestamp =~ /(...) (..) (..:..:..)/;
diff --git a/html/cgi-bin/logs.cgi/showrequestfromip.dat b/html/cgi-bin/logs.cgi/showrequestfromip.dat
index 94e795c..3611c19 100644
--- a/html/cgi-bin/logs.cgi/showrequestfromip.dat
+++ b/html/cgi-bin/logs.cgi/showrequestfromip.dat
@@ -303,7 +303,7 @@ foreach $_ (@slice)
      my $srcport = ''; my $dstport = '';

      # If ipv6 uses bridge, the use PHYSIN, otherwise use IN
-        if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(PHYSIN=.*)$/) {}
+        if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)(PHYSIN=.*)$/) {}
          elsif ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)$/) {}
      my $timestamp = $1; my $chain = $2; my $packet = $3;
      $timestamp =~ /(...) (..) (..:..:..)/;
diff --git a/html/cgi-bin/logs.cgi/showrequestfromport.dat b/html/cgi-bin/logs.cgi/showrequestfromport.dat
index af7779a..d735c7b 100644
--- a/html/cgi-bin/logs.cgi/showrequestfromport.dat
+++ b/html/cgi-bin/logs.cgi/showrequestfromport.dat
@@ -308,7 +308,7 @@ foreach $_ (@slice)
      my $srcport = ''; my $dstport = '';

          # If ipv6 uses bridge, the use PHYSIN, otherwise use IN
-    if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(PHYSIN=.*)$/) {}
+    if ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)(PHYSIN=.*)$/) {}
          elsif ($_ =~ /(^.* ..:..:..) [\w\-]+ kernel:(.*)(IN=.*)$/) {}
      my $timestamp = $1; my $chain = $2; my $packet = $3;
      $timestamp =~ /(...) (..) (..:..:..)/;
-- 
1.9.1


                 reply	other threads:[~2016-01-10 17:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56929684.8040005@eitelwein.net \
    --to=michael@eitelwein.net \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox