]> git.ipfire.org Git - ipfire-2.x.git/blob - config/outgoingfw/outgoingfw.pl
Merge branch 'master' of ssh://arne_f@git.ipfire.org/pub/git/ipfire-2.x
[ipfire-2.x.git] / config / outgoingfw / outgoingfw.pl
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2011 IPFire Team #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22
23 use strict;
24 # enable only the following on debugging purpose
25 #use warnings;
26
27 require '/var/ipfire/general-functions.pl';
28 require "${General::swroot}/lang.pl";
29
30 my %outfwsettings = ();
31 my %checked = ();
32 my %selected= () ;
33 my %netsettings = ();
34 my $errormessage = "";
35 my $configentry = "";
36 my @configs = ();
37 my @configline = ();
38 my $p2pentry = "";
39 my @p2ps = ();
40 my @p2pline = ();
41 my $CMD = "";
42 my $P2PSTRING = "";
43
44 my $DEBUG = 0;
45
46 my $configfile = "/var/ipfire/outgoing/rules";
47 my $p2pfile = "/var/ipfire/outgoing/p2protocols";
48
49 ### Values that have to be initialized
50 $outfwsettings{'ACTION'} = '';
51 $outfwsettings{'VALID'} = 'yes';
52 $outfwsettings{'EDIT'} = 'no';
53 $outfwsettings{'NAME'} = '';
54 $outfwsettings{'SNET'} = '';
55 $outfwsettings{'SIP'} = '';
56 $outfwsettings{'SPORT'} = '';
57 $outfwsettings{'SMAC'} = '';
58 $outfwsettings{'DIP'} = '';
59 $outfwsettings{'DPORT'} = '';
60 $outfwsettings{'PROT'} = '';
61 $outfwsettings{'STATE'} = '';
62 $outfwsettings{'DISPLAY_DIP'} = '';
63 $outfwsettings{'DISPLAY_DPORT'} = '';
64 $outfwsettings{'DISPLAY_SMAC'} = '';
65 $outfwsettings{'DISPLAY_SIP'} = '';
66 $outfwsettings{'POLICY'} = 'MODE0';
67
68 my @SOURCE = "";
69 my $SOURCE = "";
70 my $DESTINATION = "";
71 my @PROTO = "";
72 my $PROTO = "";
73 my $DPORT = "";
74 my $DEV = "";
75 my $MAC = "";
76 my $POLICY = "";
77 my $DO = "";
78 my $DAY = "";
79
80 # read files
81 &General::readhash("${General::swroot}/outgoing/settings", \%outfwsettings);
82 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
83
84 $netsettings{'RED_DEV'}=`cat /var/ipfire/red/iface`;
85 $netsettings{'RED_IP'}=`cat /var/ipfire/red/local-ipaddress`;
86
87 open( FILE, "< $configfile" ) or die "Unable to read $configfile";
88 @configs = <FILE>;
89 close FILE;
90
91 if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
92 $outfwsettings{'STATE'} = "ALLOW";
93 $POLICY = "DROP";
94 $DO = "ACCEPT";
95 } elsif ( $outfwsettings{'POLICY'} eq 'MODE2' ) {
96 $outfwsettings{'STATE'} = "DENY";
97 $POLICY = "ACCEPT";
98 $DO = "DROP -m comment --comment 'DROP_OUTGOINGFW '";
99 }
100
101 ### Initialize IPTables
102 system("/sbin/iptables --flush OUTGOINGFW >/dev/null 2>&1");
103 system("/sbin/iptables --delete-chain OUTGOINGFW >/dev/null 2>&1");
104 system("/sbin/iptables -N OUTGOINGFW >/dev/null 2>&1");
105
106 system("/sbin/iptables --flush OUTGOINGFWMAC >/dev/null 2>&1");
107 system("/sbin/iptables --delete-chain OUTGOINGFWMAC >/dev/null 2>&1");
108 system("/sbin/iptables -N OUTGOINGFWMAC >/dev/null 2>&1");
109
110 if ( $outfwsettings{'POLICY'} eq 'MODE0' ) {
111 exit 0
112 }
113
114 if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
115 $CMD = "/sbin/iptables -A OUTGOINGFW -m state --state ESTABLISHED,RELATED -j ACCEPT";
116 if ($DEBUG) { print "$CMD\n"; } else { system("$CMD"); }
117 $CMD = "/sbin/iptables -A OUTGOINGFWMAC -m state --state ESTABLISHED,RELATED -j ACCEPT";
118 if ($DEBUG) { print "$CMD\n"; } else { system("$CMD"); }
119 $CMD = "/sbin/iptables -A OUTGOINGFW -p icmp -j ACCEPT";
120 if ($DEBUG) { print "$CMD\n"; } else { system("$CMD"); }
121 $CMD = "/sbin/iptables -A OUTGOINGFWMAC -p icmp -j ACCEPT";
122 if ($DEBUG) { print "$CMD\n"; } else { system("$CMD"); }
123 }
124
125 foreach $configentry (sort @configs)
126 {
127 @SOURCE = "";
128 $DESTINATION = "";
129 $PROTO = "";
130 $DPORT = "";
131 $DEV = "";
132 $MAC = "";
133 @configline = split( /\;/, $configentry );
134
135 if ($outfwsettings{'STATE'} eq $configline[0]) {
136 if ($configline[2] eq 'green') {
137 @SOURCE = ("$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}");
138 $DEV = $netsettings{'GREEN_DEV'};
139 } elsif ($configline[2] eq 'red') {
140 @SOURCE = ("$netsettings{'RED_IP'}");
141 $DEV = "";
142 } elsif ($configline[2] eq 'blue') {
143 @SOURCE = ("$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}");
144 $DEV = $netsettings{'BLUE_DEV'};
145 } elsif ($configline[2] eq 'orange') {
146 @SOURCE = ("$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}");
147 $DEV = $netsettings{'ORANGE_DEV'};
148 } elsif ($configline[2] eq 'ipsec') {
149 @SOURCE = "";
150 $DEV = "ipsec+";
151 } elsif ($configline[2] eq 'ovpn') {
152 @SOURCE = "";
153 $DEV = "tun+";
154 } elsif ($configline[2] eq 'ip') {
155 @SOURCE = ("$configline[5]");
156 $DEV = "";
157 } elsif ($configline[2] eq 'mac') {
158 @SOURCE = ("$configline[6]");
159 $DEV = "";
160 } elsif ($configline[2] eq 'all') {
161 @SOURCE = ("0/0");
162 $DEV = "";
163 } else {
164 if ( -e "/var/ipfire/outgoing/groups/ipgroups/$configline[2]" ) {
165 @SOURCE = `cat /var/ipfire/outgoing/groups/ipgroups/$configline[2]`;
166 } elsif ( -e "/var/ipfire/outgoing/groups/macgroups/$configline[2]" ) {
167 @SOURCE = `cat /var/ipfire/outgoing/groups/macgroups/$configline[2]`;
168 $configline[2] = "mac";
169 }
170 $DEV = "";
171 }
172
173 if ($configline[7]) { $DESTINATION = "$configline[7]"; } else { $DESTINATION = "0/0"; }
174
175 if ($configline[3] eq 'tcp') {
176 @PROTO = ("tcp");
177 } elsif ($configline[3] eq 'udp') {
178 @PROTO = ("udp");
179 } elsif ($configline[3] eq 'esp') {
180 @PROTO = ("esp");
181 } elsif ($configline[3] eq 'gre') {
182 @PROTO = ("gre");
183 } else {
184 @PROTO = ("tcp","udp");
185 }
186
187 foreach $PROTO (@PROTO){
188 foreach $SOURCE (@SOURCE) {
189 $SOURCE =~ s/\s//gi;
190
191 if ( $SOURCE eq "" || $configline[1] eq "" ){next;}
192
193 if ( ( $configline[6] ne "" || $configline[2] eq 'mac' ) && $configline[2] ne 'all'){
194 $SOURCE =~ s/[^a-zA-Z0-9]/:/gi;
195 $CMD = "/sbin/iptables -A OUTGOINGFWMAC -m mac --mac-source $SOURCE -d $DESTINATION -p $PROTO";
196 } else {
197 $CMD = "/sbin/iptables -A OUTGOINGFW -s $SOURCE -d $DESTINATION -p $PROTO";
198 }
199
200 if ($configline[8] && ( $configline[3] ne 'esp' || $configline[3] ne 'gre') ) {
201 $DPORT = "$configline[8]";
202 $CMD = "$CMD -m multiport --destination-port $DPORT";
203 }
204
205 if ($DEV) {
206 $CMD = "$CMD -i $DEV";
207 }
208
209 if ($configline[17] && $configline[18]) {
210 $DAY = "";
211 if ($configline[10]){$DAY = "Mon,"}
212 if ($configline[11]){$DAY .= "Tue,"}
213 if ($configline[12]){$DAY .= "Wed,"}
214 if ($configline[13]){$DAY .= "Thu,"}
215 if ($configline[14]){$DAY .= "Fri,"}
216 if ($configline[15]){$DAY .= "Sat,"}
217 if ($configline[16]){$DAY .= "Sun"}
218 $CMD = "$CMD -m time --timestart $configline[17] --timestop $configline[18] --weekdays $DAY";
219 }
220
221 $CMD = "$CMD -o $netsettings{'RED_DEV'}";
222
223 if ( $configline[9] eq $Lang::tr{'aktiv'} && $outfwsettings{'POLICY'} eq 'MODE1' ) {
224 if ($DEBUG) {
225 print "$CMD -m limit --limit 10/minute -j LOG --log-prefix 'LOG_OUTGOINGFW '\n";
226 } else {
227 system("$CMD -m limit --limit 10/minute -j LOG --log-prefix 'LOG_OUTGOINGFW '");
228 }
229 } elsif ( $configline[9] eq $Lang::tr{'aktiv'} && $outfwsettings{'POLICY'} eq 'MODE2' ) {
230 if ($DEBUG) {
231 print "$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '\n";
232 } else {
233 system("$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '");
234 }
235 }
236
237 if ($DEBUG) {
238 print "$CMD -j $DO\n";
239 } else {
240 system("$CMD -j $DO");
241 }
242 }
243 }
244 }
245 }
246
247 ### Do the P2P-Stuff here
248 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
249 @p2ps = <FILE>;
250 close FILE;
251
252 $CMD = "/sbin/iptables -A OUTGOINGFW -m ipp2p";
253
254 foreach $p2pentry (sort @p2ps)
255 {
256 @p2pline = split( /\;/, $p2pentry );
257 if ( $outfwsettings{'POLICY'} eq 'MODE2' ) {
258 $DO = "DROP";
259 if ("$p2pline[2]" eq "off") {
260 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
261 }
262 } else {
263 $DO = "ACCEPT";
264 if ("$p2pline[2]" eq "on") {
265 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
266 }
267 }
268 }
269 if ($P2PSTRING) {
270 if ($DEBUG) {
271 print "$CMD $P2PSTRING -j $DO\n";
272 } else {
273 system("$CMD $P2PSTRING -j $DO");
274 }
275 }
276
277 if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
278 if ( $outfwsettings{'MODE1LOG'} eq 'on' ) {
279 $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '";
280 if ($DEBUG) {
281 print "$CMD\n";
282 } else {
283 system("$CMD");
284 }
285 }
286
287 $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -j DROP -m comment --comment 'DROP_OUTGOINGFW '";
288 if ($DEBUG) {
289 print "$CMD\n";
290 } else {
291 system("$CMD");
292 }
293 }