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