]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - config/outgoingfw/outgoingfw.pl
Some little bugfixes to current codebase
[people/pmueller/ipfire-2.x.git] / config / outgoingfw / outgoingfw.pl
index a20e34da30fda9f8a06972d1d8e044605c759bda..58c97bc585d7c5fcd28b23b60f639d49653e8c44 100644 (file)
@@ -1,7 +1,8 @@
+#!/usr/bin/perl
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2005-2010  IPTifre Team                                       #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -36,7 +37,6 @@ my @configline = ();
 my $p2pentry = "";
 my @p2ps = ();
 my @p2pline = ();
-my @proto = ();
 my $CMD = "";
 my $P2PSTRING = "";
 
@@ -45,8 +45,6 @@ my $DEBUG = 0;
 my $configfile = "/var/ipfire/outgoing/rules";
 my $p2pfile = "/var/ipfire/outgoing/p2protocols";
 
-&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
-
 ### Values that have to be initialized
 $outfwsettings{'ACTION'} = '';
 $outfwsettings{'VALID'} = 'yes';
@@ -65,19 +63,26 @@ $outfwsettings{'DISPLAY_DPORT'} = '';
 $outfwsettings{'DISPLAY_SMAC'} = '';
 $outfwsettings{'DISPLAY_SIP'} = '';
 $outfwsettings{'POLICY'} = 'MODE0';
+
+my @SOURCE = "";
 my $SOURCE = "";
 my $DESTINATION = "";
+my @PROTO = "";
 my $PROTO = "";
 my $DPORT = "";
 my $DEV = "";
 my $MAC = "";
 my $POLICY = "";
 my $DO = "";
+my $DAY = "";
 
 # read files
 &General::readhash("${General::swroot}/outgoing/settings", \%outfwsettings);
 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
 
+$netsettings{'RED_DEV'}=`cat /var/ipfire/red/iface`;
+$netsettings{'RED_IP'}=`cat /var/ipfire/red/local-ipaddress`;
+
 open( FILE, "< $configfile" ) or die "Unable to read $configfile";
 @configs = <FILE>;
 close FILE;
@@ -89,7 +94,7 @@ if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
 } elsif ( $outfwsettings{'POLICY'} eq 'MODE2' ) {
        $outfwsettings{'STATE'} = "DENY";
        $POLICY = "ACCEPT";
-       $DO = "DROP";
+       $DO = "DROP -m comment --comment 'DROP_OUTGOINGFW'";
 }
 
 ### Initialize IPTables
@@ -110,74 +115,111 @@ if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
 
 foreach $configentry (sort @configs)
 {
-       $SOURCE = "";
+       @SOURCE = "";
        $DESTINATION = "";
        $PROTO = "";
        $DPORT = "";
        $DEV = "";
        $MAC = "";
        @configline = split( /\;/, $configentry );
+
        if ($outfwsettings{'STATE'} eq $configline[0]) {
                if ($configline[2] eq 'green') {
-                       $SOURCE = "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
+                       @SOURCE = ("$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}");
                        $DEV = $netsettings{'GREEN_DEV'};
+               } elsif ($configline[2] eq 'red') {
+                       @SOURCE = ("$netsettings{'RED_IP'}");
+                       $DEV = "";
                } elsif ($configline[2] eq 'blue') {
-                       $SOURCE = "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}";
+                       @SOURCE = ("$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}");
                        $DEV = $netsettings{'BLUE_DEV'};
                } elsif ($configline[2] eq 'orange') {
-                       $SOURCE = "$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}";
+                       @SOURCE = ("$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}");
                        $DEV = $netsettings{'ORANGE_DEV'};
+               } elsif ($configline[2] eq 'ipsec') {
+                       @SOURCE = "";
+                       $DEV = "ipsec+";
+               } elsif ($configline[2] eq 'ovpn') {
+                       @SOURCE = "";
+                       $DEV = "tun+";
                } elsif ($configline[2] eq 'ip') {
-                       $SOURCE = "$configline[5]";
+                       @SOURCE = ("$configline[5]");
                        $DEV = "";
-               } else  {
-                       $SOURCE = "0/0";
+               } elsif ($configline[2] eq 'all') {
+                       @SOURCE = ("0/0");
+                       $DEV = "";
+               } else {
+                       if ( -e "/var/ipfire/outgoing/groups/ipgroups/$configline[2]" )
+                       {
+                               @SOURCE = `cat /var/ipfire/outgoing/groups/ipgroups/$configline[2]`;
+                       }
                        $DEV = "";
                }
 
                if ($configline[7]) { $DESTINATION = "$configline[7]"; } else { $DESTINATION = "0/0"; }
                
                if ($configline[3] eq 'tcp') {
-                       @proto = ("tcp");
+                       @PROTO = ("tcp");
                } elsif ($configline[3] eq 'udp') {
-                       @proto = ("udp");
+                       @PROTO  = ("udp");
+               } elsif ($configline[3] eq 'esp') {
+                       @PROTO = ("esp");
+               } elsif ($configline[3] eq 'gre') {
+                       @PROTO = ("gre");
                } else {
-                       @proto = ("tcp", "udp");
+                       @PROTO = ("tcp","udp");
                }
-               
-               foreach $PROTO (@proto) {
-                       $CMD = "/sbin/iptables -A OUTGOINGFW -s $SOURCE -d $DESTINATION -p $PROTO";
-       
-                       if ($configline[8]) {
-                               $DPORT = "$configline[8]";
-                               $CMD = "$CMD --dport $DPORT";
-                       }
-                       
-                       if ($DEV) {
-                               $CMD = "$CMD -i $DEV";
-                       }
-       
-                       if ($configline[6]) {
-                               $MAC = "$configline[6]";
-                               $CMD = "$CMD -m mac --mac-source $MAC";
-                       }
-                       
-                       $CMD = "$CMD -o $netsettings{'RED_DEV'}";
 
-                       if ($configline[9] eq "aktiv") {
+               foreach $PROTO (@PROTO){
+                       foreach $SOURCE (@SOURCE) {
+                               $SOURCE =~ s/\s//gi;
+
+                                if ( $SOURCE eq "" ){next;}
+
+                               $CMD = "/sbin/iptables -A OUTGOINGFW -s $SOURCE -d $DESTINATION -p $PROTO";
+
+                                if ($configline[8] && ( $configline[3] ne 'esp' || $configline[3] ne 'gre') ) {
+                                       $DPORT = "$configline[8]";
+                                       $CMD = "$CMD -m multiport --destination-port $DPORT";
+                                }
+
+                                if ($DEV) {
+                                       $CMD = "$CMD -i $DEV";
+                               }
+
+                               if ($configline[6]) {
+                                       $MAC = "$configline[6]";
+                                       $CMD = "$CMD -m mac --mac-source $MAC";
+                               }
+
+                               if ($configline[17] && $configline[18]) {
+                                       if ($configline[10]){$DAY = "Mon,"}
+                                       if ($configline[11]){$DAY .= "Tue,"}
+                                       if ($configline[12]){$DAY .= "Wed,"}
+                                       if ($configline[13]){$DAY .= "Thu,"}
+                                       if ($configline[14]){$DAY .= "Fri,"}
+                                       if ($configline[15]){$DAY .= "Sat,"}
+                                       if ($configline[16]){$DAY .= "Sun"}
+                                       $CMD = "$CMD -m time --timestart $configline[17] --timestop $configline[18] --weekdays $DAY";
+                               }
+
+                               $CMD = "$CMD -o $netsettings{'RED_DEV'}";
+
+                               if ($configline[9] eq "aktiv") {
+                                       if ($DEBUG) {
+                                               print "$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'\n";
+                                       } else {
+                                               system("$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'");
+                                       }
+                               }
+
                                if ($DEBUG) {
-                                       print "$CMD -m state --state NEW -m limit --limit 10/minute -j LOG --log-prefix 'OUTGOINGFW '\n";
+                                       print "$CMD -j $DO\n";
                                } else {
-                                       system("$CMD -m state --state NEW -m limit --limit 10/minute -j LOG --log-prefix 'OUTGOINGFW '");
+                                       system("$CMD -j $DO");
                                }
                        }
-                       
-                       if ($DEBUG) {
-                               print "$CMD -j $DO\n";
-                       } else {
-                               system("$CMD -j $DO");
-                       }
-    }
+               }
        }
 }
 
@@ -212,10 +254,19 @@ if ($P2PSTRING) {
 }
 
 if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
-       $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -j DROP";
+        if ( $outfwsettings{'MODE1LOG'} eq 'on' ) {
+                       $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'";
+               if ($DEBUG) {
+                       print "$CMD\n";
+               } else {
+                       system("$CMD");
+               }
+        }
+
+       $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -j DROP -m comment --comment 'DROP_OUTGOINGFW'";
        if ($DEBUG) {
                print "$CMD\n";
        } else {
                system("$CMD");
        }
-}
+}
\ No newline at end of file