]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/firewall/rules.pl
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[people/teissler/ipfire-2.x.git] / config / firewall / rules.pl
CommitLineData
2a81ab0d
AM
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5bee9a9d 5# Copyright (C) 2013 Alexander Marx <amarx@ipfire.org> #
2a81ab0d
AM
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###############################################################################
2a81ab0d 21
2a81ab0d 22use strict;
472136c9 23use Time::Local;
2a81ab0d
AM
24no warnings 'uninitialized';
25
26# enable only the following on debugging purpose
27#use warnings;
28#use CGI::Carp 'fatalsToBrowser';
29
30my %fwdfwsettings=();
31my %defaultNetworks=();
32my %configfwdfw=();
33my %color=();
34my %icmptypes=();
35my %ovpnSettings=();
36my %customgrp=();
37our %sourcehash=();
38our %targethash=();
39my @timeframe=();
40my %configinputfw=();
5d7faa45 41my %configoutgoingfw=();
a6edca5a 42my %confignatfw=();
2a81ab0d
AM
43my %aliases=();
44my @DPROT=();
36196d0d 45my @p2ps=();
2a81ab0d
AM
46require '/var/ipfire/general-functions.pl';
47require "${General::swroot}/lang.pl";
73372ed4 48require "/usr/lib/firewall/firewall-lib.pl";
2a81ab0d 49
6d8eb5de
AM
50my $configfwdfw = "${General::swroot}/firewall/config";
51my $configinput = "${General::swroot}/firewall/input";
52my $configoutgoing = "${General::swroot}/firewall/outgoing";
53my $p2pfile = "${General::swroot}/firewall/p2protocols";
2a81ab0d 54my $configgrp = "${General::swroot}/fwhosts/customgroups";
210ee67b 55my $netsettings = "${General::swroot}/ethernet/settings";
86a921ee
AM
56my $errormessage = '';
57my $orange = '';
58my $green = '';
59my $blue = '';
2a81ab0d 60my ($TYPE,$PROT,$SPROT,$DPROT,$SPORT,$DPORT,$TIME,$TIMEFROM,$TIMETILL,$SRC_TGT);
86a921ee
AM
61my $CHAIN = "FORWARDFW";
62my $conexists = 'off';
a211fee3 63my $command = 'iptables --wait -A';
86a921ee
AM
64my $dnat ='';
65my $snat ='';
66
6d8eb5de 67&General::readhash("${General::swroot}/firewall/settings", \%fwdfwsettings);
210ee67b 68&General::readhash("$netsettings", \%defaultNetworks);
2a81ab0d
AM
69&General::readhasharray($configfwdfw, \%configfwdfw);
70&General::readhasharray($configinput, \%configinputfw);
5d7faa45 71&General::readhasharray($configoutgoing, \%configoutgoingfw);
2a81ab0d
AM
72&General::readhasharray($configgrp, \%customgrp);
73&General::get_aliases(\%aliases);
74
ddcec9d3
AM
75#check if we have an internetconnection
76open (CONN,"/var/ipfire/red/iface");
77my $con = <CONN>;
78close(CONN);
79if (-f "/var/ipfire/red/active"){
80 $conexists='on';
81}
a6edca5a
AM
82open (CONN1,"/var/ipfire/red/local-ipaddress");
83my $redip = <CONN1>;
84close(CONN1);
86a921ee
AM
85#################
86# DEBUG/TEST #
87#################
dc21519f 88my $MODE=0; # 0 - normal operation
14bcb9a2
AM
89 # 1 - print configline and rules to console
90 #
86a921ee 91#################
2a81ab0d
AM
92my $param=shift;
93
94if($param eq 'flush'){
95 if ($MODE eq '1'){
96 print " Flushing chains...\n";
97 }
98 &flush;
99}else{
100 if ($MODE eq '1'){
101 print " Flushing chains...\n";
102 }
103 &flush;
104 if ($MODE eq '1'){
105 print " Preparing rules...\n";
106 }
107 &preparerules;
108 if($MODE eq '0'){
109 if ($fwdfwsettings{'POLICY'} eq 'MODE1'){
af49e367 110 &p2pblock;
86a921ee 111 system ("/usr/sbin/firewall-policy");
2a81ab0d 112 }elsif($fwdfwsettings{'POLICY'} eq 'MODE2'){
6adcf156 113 &p2pblock;
5d7faa45 114 system ("/usr/sbin/firewall-policy");
674f4e9d 115 system ("/etc/sysconfig/firewall.local reload");
2a81ab0d
AM
116 }
117 }
118}
2a81ab0d
AM
119sub flush
120{
a211fee3
MT
121 system ("iptables --wait -F FORWARDFW");
122 system ("iptables --wait -F INPUTFW");
123 system ("iptables --wait -F OUTGOINGFW");
124 system ("iptables --wait -t nat -F NAT_DESTINATION");
125 system ("iptables --wait -t nat -F NAT_SOURCE");
86a921ee 126}
2a81ab0d
AM
127sub preparerules
128{
6d8eb5de 129 if (! -z "${General::swroot}/firewall/config"){
2a81ab0d
AM
130 &buildrules(\%configfwdfw);
131 }
6d8eb5de 132 if (! -z "${General::swroot}/firewall/input"){
2a81ab0d
AM
133 &buildrules(\%configinputfw);
134 }
6d8eb5de 135 if (! -z "${General::swroot}/firewall/outgoing"){
5d7faa45
AM
136 &buildrules(\%configoutgoingfw);
137 }
2a81ab0d
AM
138}
139sub buildrules
140{
141 my $hash=shift;
b5269091 142 my $STAG;
a6edca5a
AM
143 my $natip;
144 my $snatport;
145 my $fireport;
bc912c6e 146 my $nat;
98cee89f 147 my $fwaccessdport;
c12392c0 148 my $natchain;
2aeb4b25 149 my $icmptype;
992394d5 150 foreach my $key (sort {$a <=> $b} keys %$hash){
ff4770c7 151 next if (($$hash{$key}[6] eq 'RED' || $$hash{$key}[6] eq 'RED1') && $conexists eq 'off' );
a211fee3 152 $command="iptables --wait -A";
a6edca5a 153 if ($$hash{$key}[28] eq 'ON'){
a211fee3 154 $command='iptables --wait -t nat -A';
08e1c65d 155 $natip=&get_nat_ip($$hash{$key}[29],$$hash{$key}[31]);
a6edca5a 156 if($$hash{$key}[31] eq 'dnat'){
bc912c6e 157 $nat='DNAT';
98cee89f
AM
158 if ($$hash{$key}[30] =~ /\|/){
159 $$hash{$key}[30]=~ tr/|/,/;
160 $fireport='-m multiport --dport '.$$hash{$key}[30];
161 }else{
162 $fireport='--dport '.$$hash{$key}[30] if ($$hash{$key}[30]>0);
163 }
a6edca5a 164 }else{
bc912c6e 165 $nat='SNAT';
a6edca5a
AM
166 }
167 }
b5269091 168 $STAG='';
2a81ab0d
AM
169 if($$hash{$key}[2] eq 'ON'){
170 #get source ip's
171 if ($$hash{$key}[3] eq 'cust_grp_src'){
992394d5 172 foreach my $grp (sort {$a <=> $b} keys %customgrp){
2a81ab0d
AM
173 if($customgrp{$grp}[0] eq $$hash{$key}[4]){
174 &get_address($customgrp{$grp}[3],$customgrp{$grp}[2],"src");
175 }
176 }
177 }else{
178 &get_address($$hash{$key}[3],$$hash{$key}[4],"src");
179 }
180 #get target ip's
181 if ($$hash{$key}[5] eq 'cust_grp_tgt'){
992394d5 182 foreach my $grp (sort {$a <=> $b} keys %customgrp){
2a81ab0d
AM
183 if($customgrp{$grp}[0] eq $$hash{$key}[6]){
184 &get_address($customgrp{$grp}[3],$customgrp{$grp}[2],"tgt");
185 }
186 }
a0fb1099 187 }elsif($$hash{$key}[5] eq 'ipfire' ){
05d4f131
AM
188 if($$hash{$key}[6] eq 'GREEN'){
189 $targethash{$key}[0]=$defaultNetworks{'GREEN_ADDRESS'};
190 }
191 if($$hash{$key}[6] eq 'BLUE'){
192 $targethash{$key}[0]=$defaultNetworks{'BLUE_ADDRESS'};
193 }
194 if($$hash{$key}[6] eq 'ORANGE'){
195 $targethash{$key}[0]=$defaultNetworks{'ORANGE_ADDRESS'};
196 }
8762442c
AM
197 if($$hash{$key}[6] eq 'ALL'){
198 $targethash{$key}[0]='0.0.0.0/0';
199 }
690b0bd7 200 if($$hash{$key}[6] eq 'RED' || $$hash{$key}[6] eq 'RED1'){
ff4770c7 201 open(FILE, "/var/ipfire/red/local-ipaddress")or die "Couldn't open local-ipaddress";
2a81ab0d
AM
202 $targethash{$key}[0]= <FILE>;
203 close(FILE);
204 }else{
205 foreach my $alias (sort keys %aliases){
206 if ($$hash{$key}[6] eq $alias){
207 $targethash{$key}[0]=$aliases{$alias}{'IPT'};
208 }
209 }
210 }
211 }else{
212 &get_address($$hash{$key}[5],$$hash{$key}[6],"tgt");
213 }
2a81ab0d
AM
214 ##get source prot and port
215 $SRC_TGT='SRC';
2a81ab0d
AM
216 $SPORT = &get_port($hash,$key);
217 $SRC_TGT='';
14f7cb87 218
2a81ab0d
AM
219 ##get target prot and port
220 $DPROT=&get_prot($hash,$key);
14f7cb87 221
a4c7bf6b 222 if ($DPROT eq ''){$DPROT=' ';}
2a81ab0d 223 @DPROT=split(",",$DPROT);
14f7cb87 224
2a81ab0d
AM
225 #get time if defined
226 if($$hash{$key}[18] eq 'ON'){
472136c9
AM
227 my ($time1,$time2,$daylight);
228 my $daylight=$$hash{$key}[28];
229 $time1=&get_time($$hash{$key}[26],$daylight);
230 $time2=&get_time($$hash{$key}[27],$daylight);
2a81ab0d
AM
231 if($$hash{$key}[19] ne ''){push (@timeframe,"Mon");}
232 if($$hash{$key}[20] ne ''){push (@timeframe,"Tue");}
233 if($$hash{$key}[21] ne ''){push (@timeframe,"Wed");}
234 if($$hash{$key}[22] ne ''){push (@timeframe,"Thu");}
235 if($$hash{$key}[23] ne ''){push (@timeframe,"Fri");}
236 if($$hash{$key}[24] ne ''){push (@timeframe,"Sat");}
237 if($$hash{$key}[25] ne ''){push (@timeframe,"Sun");}
238 $TIME=join(",",@timeframe);
86a921ee 239
472136c9
AM
240 $TIMEFROM="--timestart $time1 ";
241 $TIMETILL="--timestop $time2 ";
a0f267b9 242 $TIME="-m time --weekdays $TIME $TIMEFROM $TIMETILL";
2a81ab0d 243 }
86a921ee 244 if ($MODE eq '1'){
2a81ab0d
AM
245 print "NR:$key ";
246 foreach my $i (0 .. $#{$$hash{$key}}){
247 print "$i: $$hash{$key}[$i] ";
248 }
249 print "\n";
250 print"##################################\n";
251 #print rules to console
2a81ab0d
AM
252 foreach my $DPROT (@DPROT){
253 $DPORT = &get_port($hash,$key,$DPROT);
82b837cf
AM
254 if ($DPROT ne 'TCP' && $DPROT ne 'UDP' && $DPROT ne 'ICMP' ){
255 $DPORT='';
256 }
a4c7bf6b 257 $PROT=$DPROT;
3af3ecd3 258 $PROT="-p $PROT" if ($PROT ne '' && $PROT ne ' ');
2a81ab0d
AM
259 foreach my $a (sort keys %sourcehash){
260 foreach my $b (sort keys %targethash){
d334d7cb
AM
261 next if ($targethash{$b}[0] eq 'none');
262 $STAG='';
d7dc9718 263 if ($sourcehash{$a}[0] ne $targethash{$b}[0] && $targethash{$b}[0] ne 'none' || $sourcehash{$a}[0] eq '0.0.0.0/0.0.0.0'){
6e62882d 264 if($DPROT ne ''){
5d7faa45 265 if(substr($sourcehash{$a}[0], 3, 3) ne 'mac' && $sourcehash{$a}[0] ne ''){ $STAG="-s";}
cdb3536b 266 #Process ICMP RULE
8cb1afc8
AM
267 if(substr($DPORT, 2, 4) eq 'icmp'){
268 my @icmprule= split(",",substr($DPORT, 12,));
269 foreach (@icmprule){
2aeb4b25
AM
270 $icmptype="--icmp-type ";
271 if ($_ eq "BLANK") {
272 $icmptype="";
273 $_="";
274 }
8cb1afc8 275 if ($$hash{$key}[17] eq 'ON'){
2aeb4b25 276 print "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $icmptype $_ $TIME -j LOG\n";
8cb1afc8 277 }
2aeb4b25 278 print "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $icmptype $_ $TIME -j $$hash{$key}[0]\n";
8cb1afc8 279 }
cdb3536b 280 #PROCESS DNAT RULE (Portforward)
28640b73 281 }elsif($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'dnat'){
c12392c0 282 $natchain='NAT_DESTINATION';
28640b73 283 if ($$hash{$key}[17] eq 'ON'){
cdb3536b 284 print "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j LOG --log-prefix 'DNAT' \n";
28640b73 285 }
28640b73 286 my ($ip,$sub) =split("/",$targethash{$b}[0]);
f0befbc3
AM
287 #Process NAT with servicegroup used
288 if ($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'dnat' && $$hash{$key}[14] eq 'cust_srvgrp'){
525204e0 289 print "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j $nat --to-destination $ip $DPORT\n";
f0befbc3
AM
290 $fwaccessdport=$DPORT;
291 }else{
525204e0 292 print "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j $nat --to-destination $ip$DPORT\n";
f0befbc3
AM
293 $DPORT =~ s/\-/:/g;
294 if ($DPORT){
295 $fwaccessdport="--dport ".substr($DPORT,1,);
296 }elsif(! $DPORT && $$hash{$key}[30] ne ''){
297 if ($$hash{$key}[30]=~m/|/i){
298 $$hash{$key}[30] =~ s/\|/,/g;
299 $fwaccessdport="-m multiport --dport $$hash{$key}[30]";
300 }else{
301 $fwaccessdport="--dport $$hash{$key}[30]";
302 }
98cee89f
AM
303 }
304 }
97bf45e5 305 print "iptables --wait -A FORWARDFW $PROT $STAG $sourcehash{$a}[0] -d $ip $fwaccessdport $TIME -j $$hash{$key}[0]\n";
c12392c0 306 next;
cdb3536b 307 #PROCESS SNAT RULE
08e1c65d 308 }elsif($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'snat'){
c12392c0 309 $natchain='NAT_SOURCE';
cdb3536b
AM
310 if ($$hash{$key}[17] eq 'ON' ){
311 print "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG --log-prefix 'SNAT' \n";
312 }
525204e0 313 print "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $nat --to-source $natip\n";
2a81ab0d 314 }
cdb3536b 315 #PROCESS EVERY OTHER RULE (If NOT ICMP, else the rule would be applied double)
93c2de1c 316 if ($PROT ne '-p ICMP'){
cdb3536b
AM
317 if ($$hash{$key}[17] eq 'ON' && $$hash{$key}[28] ne 'ON'){
318 print "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG\n";
319 }
a211fee3 320 print "iptables --wait -A $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $$hash{$key}[0]\n";
93c2de1c 321 }
cdb3536b 322 #PROCESS Prot ICMP and type = All ICMP-Types
86a921ee 323 if ($PROT eq '-p ICMP' && $$hash{$key}[9] eq 'All ICMP-Types'){
cdb3536b
AM
324 if ($$hash{$key}[17] eq 'ON' && $$hash{$key}[28] ne 'ON'){
325 print "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG\n";
326 }
a211fee3 327 print "iptables --wait -A $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $$hash{$key}[0]\n";
86a921ee
AM
328 }
329 }
2a81ab0d
AM
330 }
331 }
332 }
333 print"\n";
334 }
2a81ab0d
AM
335 }elsif($MODE eq '0'){
336 foreach my $DPROT (@DPROT){
337 $DPORT = &get_port($hash,$key,$DPROT);
a4c7bf6b 338 $PROT=$DPROT;
3af3ecd3 339 $PROT="-p $PROT" if ($PROT ne '' && $PROT ne ' ');
82b837cf
AM
340 if ($DPROT ne 'TCP' && $DPROT ne'UDP' && $DPROT ne 'ICMP' ){
341 $DPORT='';
342 }
2a81ab0d
AM
343 foreach my $a (sort keys %sourcehash){
344 foreach my $b (sort keys %targethash){
d334d7cb
AM
345 next if ($targethash{$b}[0] eq 'none');
346 $STAG='';
d7dc9718 347 if ($sourcehash{$a}[0] ne $targethash{$b}[0] && $targethash{$b}[0] ne 'none' || $sourcehash{$a}[0] eq '0.0.0.0/0.0.0.0'){
6e62882d 348 if($DPROT ne ''){
5d7faa45 349 if(substr($sourcehash{$a}[0], 3, 3) ne 'mac' && $sourcehash{$a}[0] ne ''){ $STAG="-s";}
93c2de1c 350 #Process ICMP RULE
8cb1afc8
AM
351 if(substr($DPORT, 2, 4) eq 'icmp'){
352 my @icmprule= split(",",substr($DPORT, 12,));
353 foreach (@icmprule){
2aeb4b25
AM
354 $icmptype="--icmp-type ";
355 if ($_ eq "BLANK") {
356 $icmptype="";
357 $_="";
358 }
8cb1afc8 359 if ($$hash{$key}[17] eq 'ON'){
2aeb4b25 360 system ("$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $icmptype $_ $TIME -j LOG");
8cb1afc8 361 }
2aeb4b25 362 system ("$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $icmptype $_ $TIME -j $$hash{$key}[0]");
a6edca5a 363 }
93c2de1c 364 #PROCESS DNAT RULE (Portforward)
a6edca5a 365 }elsif($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'dnat'){
c12392c0 366 $natchain='NAT_DESTINATION';
a6edca5a 367 if ($$hash{$key}[17] eq 'ON'){
cdb3536b 368 system "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j LOG --log-prefix 'DNAT' \n";
8cb1afc8 369 }
a6edca5a 370 my ($ip,$sub) =split("/",$targethash{$b}[0]);
f0befbc3
AM
371 #Process NAT with servicegroup used
372 if ($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'dnat' && $$hash{$key}[14] eq 'cust_srvgrp'){
525204e0 373 system "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j $nat --to-destination $ip $DPORT\n";
f0befbc3
AM
374 $fwaccessdport=$DPORT;
375 }else{
525204e0 376 system "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT $natip $fireport $TIME -j $nat --to-destination $ip$DPORT\n";
f0befbc3
AM
377 $DPORT =~ s/\-/:/g;
378 if ($DPORT){
379 $fwaccessdport="--dport ".substr($DPORT,1,);
380 }elsif(! $DPORT && $$hash{$key}[30] ne ''){
381 if ($$hash{$key}[30]=~m/|/i){
382 $$hash{$key}[30] =~ s/\|/,/g;
383 $fwaccessdport="-m multiport --dport $$hash{$key}[30]";
384 }else{
385 $fwaccessdport="--dport $$hash{$key}[30]";
386 }
98cee89f
AM
387 }
388 }
97bf45e5 389 system "iptables --wait -A FORWARDFW $PROT $STAG $sourcehash{$a}[0] -d $ip $fwaccessdport $TIME -j $$hash{$key}[0]\n";
c12392c0 390 next;
93c2de1c 391 #PROCESS SNAT RULE
a6edca5a 392 }elsif($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'snat'){
c12392c0 393 $natchain='NAT_SOURCE';
cdb3536b
AM
394 if ($$hash{$key}[17] eq 'ON' ){
395 system "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG --log-prefix 'SNAT' \n";
396 }
525204e0 397 system "$command $natchain $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $nat --to-source $natip\n";
c12392c0 398 }
93c2de1c
AM
399 #PROCESS EVERY OTHER RULE (If NOT ICMP, else the rule would be applied double)
400 if ($PROT ne '-p ICMP'){
cdb3536b
AM
401 if ($$hash{$key}[17] eq 'ON' && $$hash{$key}[28] ne 'ON'){
402 system "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG\n";
403 }
a211fee3 404 system "iptables --wait -A $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $$hash{$key}[0]\n";
93c2de1c 405 }
86a921ee
AM
406 #PROCESS Prot ICMP and type = All ICMP-Types
407 if ($PROT eq '-p ICMP' && $$hash{$key}[9] eq 'All ICMP-Types'){
cdb3536b
AM
408 if ($$hash{$key}[17] eq 'ON' && $$hash{$key}[28] ne 'ON'){
409 system "$command $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j LOG\n";
410 }
a211fee3 411 system "iptables --wait -A $$hash{$key}[1] $PROT $STAG $sourcehash{$a}[0] $SPORT -d $targethash{$b}[0] $DPORT $TIME -j $$hash{$key}[0]\n";
86a921ee
AM
412 }
413 }
2a81ab0d
AM
414 }
415 }
416 }
2a81ab0d
AM
417 }
418 }
419 }
420 %sourcehash=();
421 %targethash=();
422 undef $TIME;
423 undef $TIMEFROM;
424 undef $TIMETILL;
a6edca5a 425 undef $fireport;
2a81ab0d
AM
426 }
427}
a6edca5a
AM
428sub get_nat_ip
429{
430 my $val=shift;
08e1c65d 431 my $type=shift;
a6edca5a
AM
432 my $result;
433 if($val eq 'RED' || $val eq 'GREEN' || $val eq 'ORANGE' || $val eq 'BLUE'){
434 $result=$defaultNetworks{$val.'_ADDRESS'};
435 }elsif($val eq 'ALL'){
436 $result='-i '.$con;
08e1c65d 437 }elsif($val eq 'Default IP' && $type eq 'dnat'){
a6edca5a 438 $result='-d '.$redip;
08e1c65d
AM
439 }elsif($val eq 'Default IP' && $type eq 'snat'){
440 $result=$redip;
a6edca5a
AM
441 }else{
442 foreach my $al (sort keys %aliases){
08e1c65d 443 if($val eq $al && $type eq 'dnat'){
a6edca5a 444 $result='-d '.$aliases{$al}{'IPT'};
08e1c65d
AM
445 }elsif($val eq $al && $type eq 'snat'){
446 $result=$aliases{$al}{'IPT'};
a6edca5a
AM
447 }
448 }
449 }
450 return $result;
451}
472136c9
AM
452sub get_time
453{
454 my $val=shift;
455 my $val1=shift;
456 my $time;
457 my $minutes;
458 my $ruletime;
459 $minutes = &utcmin($val);
460 $ruletime = $minutes + &time_get_utc($val);
461 if ($ruletime < 0){$ruletime +=1440;}
462 if ($ruletime > 1440){$ruletime -=1440;}
463 $time=sprintf "%02d:%02d", $ruletime / 60, $ruletime % 60;
464 return $time;
465}
466sub time_get_utc
467{
468 # Calculates the UTCtime from a given time
469 my $val=shift;
470 my @localtime=localtime(time);
471 my @gmtime=gmtime(time);
472 my $diff = ($gmtime[2]*60+$gmtime[1]%60)-($localtime[2]*60+$localtime[1]%60);
473 return $diff;
474}
475sub utcmin
476{
477 my $ruletime=shift;
478 my ($hrs,$min) = split(":",$ruletime);
479 my $newtime = $hrs*60+$min;
480 return $newtime;
481}
36196d0d
AM
482sub p2pblock
483{
484 my $P2PSTRING;
485 my $DO;
486 open( FILE, "< $p2pfile" ) or die "Unable to read $p2pfile";
487 @p2ps = <FILE>;
488 close FILE;
489 my $CMD = "-m ipp2p";
490 foreach my $p2pentry (sort @p2ps) {
491 my @p2pline = split( /\;/, $p2pentry );
8d1beadc
AM
492 if ( $fwdfwsettings{'POLICY'} eq 'MODE1' ) {
493 $DO = "ACCEPT";
5238a871 494 if ("$p2pline[2]" eq "on") {
36196d0d
AM
495 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
496 }
8d1beadc 497 }else {
36196d0d 498 $DO = "RETURN";
5238a871 499 if ("$p2pline[2]" eq "off") {
36196d0d
AM
500 $P2PSTRING = "$P2PSTRING --$p2pline[1]";
501 }
502 }
503 }
504 if ($MODE eq 1){
505 if($P2PSTRING){
a211fee3 506 print"/sbin/iptables --wait -A FORWARDFW $CMD $P2PSTRING -j $DO\n";
36196d0d
AM
507 }
508 }else{
509 if($P2PSTRING){
a211fee3 510 system("/sbin/iptables --wait -A FORWARDFW $CMD $P2PSTRING -j $DO");
36196d0d
AM
511 }
512 }
513}
2a81ab0d
AM
514sub get_address
515{
516 my $base=shift; #source of checking ($configfwdfw{$key}[x] or groupkey
517 my $base2=shift;
518 my $type=shift; #src or tgt
519 my $hash;
520 if ($type eq 'src'){
86a921ee 521 $hash=\%sourcehash;
2a81ab0d
AM
522 }else{
523 $hash=\%targethash;
524 }
525 my $key = &General::findhasharraykey($hash);
526 if($base eq 'src_addr' || $base eq 'tgt_addr' ){
b5269091
AM
527 if (&General::validmac($base2)){
528 $$hash{$key}[0] = "-m mac --mac-source $base2";
529 }else{
530 $$hash{$key}[0] = $base2;
531 }
2a81ab0d 532 }elsif($base eq 'std_net_src' || $base eq 'std_net_tgt' || $base eq 'Standard Network'){
ddcec9d3 533 $$hash{$key}[0]=&fwlib::get_std_net_ip($base2,$con);
2a81ab0d
AM
534 }elsif($base eq 'cust_net_src' || $base eq 'cust_net_tgt' || $base eq 'Custom Network'){
535 $$hash{$key}[0]=&fwlib::get_net_ip($base2);
536 }elsif($base eq 'cust_host_src' || $base eq 'cust_host_tgt' || $base eq 'Custom Host'){
537 $$hash{$key}[0]=&fwlib::get_host_ip($base2,$type);
538 }elsif($base eq 'ovpn_net_src' || $base eq 'ovpn_net_tgt' || $base eq 'OpenVPN static network'){
539 $$hash{$key}[0]=&fwlib::get_ovpn_net_ip($base2,1);
540 }elsif($base eq 'ovpn_host_src' ||$base eq 'ovpn_host_tgt' || $base eq 'OpenVPN static host'){
541 $$hash{$key}[0]=&fwlib::get_ovpn_host_ip($base2,33);
542 }elsif($base eq 'ovpn_n2n_src' ||$base eq 'ovpn_n2n_tgt' || $base eq 'OpenVPN N-2-N'){
6fab5bca 543 $$hash{$key}[0]=&fwlib::get_ovpn_n2n_ip($base2,11);
2a81ab0d
AM
544 }elsif($base eq 'ipsec_net_src' || $base eq 'ipsec_net_tgt' || $base eq 'IpSec Network'){
545 $$hash{$key}[0]=&fwlib::get_ipsec_net_ip($base2,11);
a0fb1099
AM
546 }elsif($base eq 'ipfire_src' ){
547 if($base2 eq 'GREEN'){
548 $$hash{$key}[0]=$defaultNetworks{'GREEN_ADDRESS'};
549 }
550 if($base2 eq 'BLUE'){
551 $$hash{$key}[0]=$defaultNetworks{'BLUE_ADDRESS'};
552 }
553 if($base2 eq 'ORANGE'){
554 $$hash{$key}[0]=$defaultNetworks{'ORANGE_ADDRESS'};
555 }
556 if($base2 eq 'ALL'){
557 $$hash{$key}[0]='0.0.0.0/0';
558 }
559 if($base2 eq 'RED' || $base2 eq 'RED1'){
a8d1d049 560 open(FILE, "/var/ipfire/red/local-ipaddress")or die "Couldn't open local-ipaddress";
a0fb1099
AM
561 $$hash{$key}[0]= <FILE>;
562 close(FILE);
563 }else{
564 foreach my $alias (sort keys %aliases){
565 if ($base2 eq $alias){
566 $$hash{$key}[0]=$aliases{$alias}{'IPT'};
567 }
568 }
569 }
2a81ab0d
AM
570 }
571}
572sub get_prot
573{
574 my $hash=shift;
575 my $key=shift;
a4c7bf6b
AM
576 #check AH,GRE,ESP or ICMP
577 if ($$hash{$key}[7] ne 'ON' && $$hash{$key}[11] ne 'ON'){
578 return "$$hash{$key}[8]";
579 }
580 if ($$hash{$key}[7] eq 'ON' || $$hash{$key}[11] eq 'ON'){
581 #check if servicegroup or service
582 if($$hash{$key}[14] eq 'cust_srv'){
2a81ab0d 583 return &fwlib::get_srv_prot($$hash{$key}[15]);
2a81ab0d
AM
584 }elsif($$hash{$key}[14] eq 'cust_srvgrp'){
585 return &fwlib::get_srvgrp_prot($$hash{$key}[15]);
a4c7bf6b
AM
586 }elsif (($$hash{$key}[10] ne '' || $$hash{$key}[15] ne '') && $$hash{$key}[8] eq ''){ #when ports are used and prot set to "all"
587 return "TCP,UDP";
588 }elsif (($$hash{$key}[10] ne '' || $$hash{$key}[15] ne '') && ($$hash{$key}[8] eq 'TCP' || $$hash{$key}[8] eq 'UDP')){ #when ports are used and prot set to "tcp" or "udp"
589 return "$$hash{$key}[8]";
590 }elsif (($$hash{$key}[10] eq '' && $$hash{$key}[15] eq '') && $$hash{$key}[8] ne 'ICMP'){ #when ports are NOT used and prot NOT set to "ICMP"
591 return "$$hash{$key}[8]";
592 }else{
593 return "$$hash{$key}[8]";
2a81ab0d
AM
594 }
595 }
98cee89f
AM
596 #DNAT
597 if ($SRC_TGT eq '' && $$hash{$key}[31] eq 'dnat' && $$hash{$key}[11] eq '' && $$hash{$key}[12] ne ''){
fadcfb73 598 return "$$hash{$key}[8]";
98cee89f 599 }
2a81ab0d
AM
600}
601sub get_port
602{
603 my $hash=shift;
604 my $key=shift;
605 my $prot=shift;
14bcb9a2 606 #Get manual defined Ports from SOURCE
2a81ab0d
AM
607 if ($$hash{$key}[7] eq 'ON' && $SRC_TGT eq 'SRC'){
608 if ($$hash{$key}[10] ne ''){
8f0b047b 609 $$hash{$key}[10] =~ s/\|/,/g;
93a5f4a5
AM
610 if(index($$hash{$key}[10],",") > 0){
611 return "-m multiport --sport $$hash{$key}[10] ";
612 }else{
a6edca5a
AM
613 if($$hash{$key}[28] ne 'ON' || ($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'snat') ||($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'dnat') ){
614 return "--sport $$hash{$key}[10] ";
615 }else{
616 return ":$$hash{$key}[10]";
617 }
93a5f4a5 618 }
2a81ab0d 619 }
14bcb9a2 620 #Get manual ports from TARGET
2a81ab0d 621 }elsif($$hash{$key}[11] eq 'ON' && $SRC_TGT eq ''){
2a81ab0d
AM
622 if($$hash{$key}[14] eq 'TGT_PORT'){
623 if ($$hash{$key}[15] ne ''){
8f0b047b 624 $$hash{$key}[15] =~ s/\|/,/g;
93a5f4a5
AM
625 if(index($$hash{$key}[15],",") > 0){
626 return "-m multiport --dport $$hash{$key}[15] ";
627 }else{
a6edca5a
AM
628 if($$hash{$key}[28] ne 'ON' || ($$hash{$key}[28] eq 'ON' && $$hash{$key}[31] eq 'snat') ){
629 return "--dport $$hash{$key}[15] ";
630 }else{
829697d0 631 $$hash{$key}[15] =~ s/\:/-/g;
653a71b9 632 return ":$$hash{$key}[15]";
a6edca5a 633 }
93a5f4a5 634 }
2a81ab0d 635 }
14bcb9a2 636 #Get ports defined in custom Service (firewall-groups)
2a81ab0d
AM
637 }elsif($$hash{$key}[14] eq 'cust_srv'){
638 if ($prot ne 'ICMP'){
653a71b9 639 if($$hash{$key}[31] eq 'dnat' && $$hash{$key}[28] eq 'ON'){
14bcb9a2
AM
640 my $ports =&fwlib::get_srv_port($$hash{$key}[15],1,$prot);
641 $ports =~ s/\:/-/g;
642 return ":".$ports
6be32fe5
AM
643 }else{
644 return "--dport ".&fwlib::get_srv_port($$hash{$key}[15],1,$prot);
645 }
e6e9a811
AM
646 }elsif($prot eq 'ICMP' && $$hash{$key}[11] eq 'ON'){ #When PROT is ICMP and "use targetport is checked, this is an icmp-service
647 return "--icmp-type ".&fwlib::get_srv_port($$hash{$key}[15],3,$prot);
2a81ab0d 648 }
14bcb9a2 649 #Get ports from services which are used in custom servicegroups (firewall-groups)
2a81ab0d
AM
650 }elsif($$hash{$key}[14] eq 'cust_srvgrp'){
651 if ($prot ne 'ICMP'){
652 return &fwlib::get_srvgrp_port($$hash{$key}[15],$prot);
653 }
654 elsif($prot eq 'ICMP'){
655 return &fwlib::get_srvgrp_port($$hash{$key}[15],$prot);
656 }
2a81ab0d
AM
657 }
658 }
a4c7bf6b
AM
659 #CHECK ICMP
660 if ($$hash{$key}[7] ne 'ON' && $$hash{$key}[11] ne 'ON' && $SRC_TGT eq ''){
661 if($$hash{$key}[9] ne '' && $$hash{$key}[9] ne 'All ICMP-Types'){
662 return "--icmp-type $$hash{$key}[9] ";
663 }elsif($$hash{$key}[9] eq 'All ICMP-Types'){
664 return;
665 }
666 }
2a81ab0d 667}