]>
git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/firewall/convert-outgoingfw
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2013 Alexander Marx <amarx@ipfire.org> #
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. #
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. #
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/>. #
20 ###############################################################################
22 # This script converts old groups and firewallrules #
23 # to the new one. This is a 3-step process. #
24 # STEP1: convert groups ->LOG /var/log/converters #
25 # STEP2: convert rules ->LOG /var/log/converters #
26 # STEP3: convert P2P rules #
28 ###############################################################################
30 require '/var/ipfire/general-functions.pl';
36 my $ipgrouppath = "${General::swroot}/outgoing/groups/ipgroups/";
37 my $macgrouppath = "${General::swroot}/outgoing/groups/macgroups/";
38 my $outgoingrules = "${General::swroot}/outgoing/rules";
39 my $outfwsettings = "${General::swroot}/outgoing/settings";
40 my $host = "Converted ";
41 my $confighosts = "${General::swroot}/fwhosts/customhosts";
42 my $confignets = "${General::swroot}/fwhosts/customnetworks";
43 my $configgroups = "${General::swroot}/fwhosts/customgroups";
44 my $ovpnsettings = "${General::swroot}/ovpn/settings";
45 my $ovpnconfig = "${General::swroot}/ovpn/ovpnconfig";
46 my $ccdconfig = "${General::swroot}/ovpn/ccd.conf";
47 my $fwdfwconfig = "${General::swroot}/firewall/config";
48 my $outfwconfig = "${General::swroot}/firewall/outgoing";
49 my $fwdfwsettings = "${General::swroot}/firewall/settings";
50 my @ipgroups = qx(ls
$ipgrouppath);
51 my @macgroups = qx(ls
$macgrouppath);
64 my %ovpnSettings = ();
65 my @active= ('Aktiv', 'aktiv', 'Active', 'Activo', 'Actif', 'Actief', 'Aktywne', 'Активен', 'Aktif');
66 &General
::readhash
("${General::swroot}/ovpn/settings", \
%ovpnSettings);
67 &General
::readhash
($outfwsettings,\
%outsettings);
68 &General
::readhash
("${General::swroot}/ethernet/settings", \
%ownnet);
69 #ONLY RUN if /var/ipfire/outgoing exists
70 if ( -d
"/var/ipfire/outgoing"){
75 system("/usr/local/bin/firewallctrl");
78 if(! -d
"/var/log/converters"){ mkdir("/var/log/converters");}
79 if( -f
"/var/log/converters/groups-convert.log"){rmtree
("var/log/converters");}
80 open (LOG
, ">/var/log/converters/groups-convert.log") or die $!;
82 foreach my $group (@ipgroups){
85 print LOG
"\n$now Processing IP-GROUP: $group...\n";
86 open (DATEI
, "<$ipgrouppath/$group");
88 foreach my $ip (@zeilen){
91 print LOG
"$now Check IP $ip from Group $group ";
92 my $val=&check_ip
($ip);
94 push(@hostarray,$val.",ip");
95 print LOG
"$now -> OK\n";
98 print LOG
"$now -> IP \"$ip\" from group $group not converted (invalid IP) \n";
102 &new_hostgrp
($group,'ip');
108 #MAC Group processing
109 foreach my $group (@macgroups){
111 print LOG
"\nProcessing MAC-GROUP: $group...\n";
112 open (DATEI
, "<$macgrouppath/$group");
113 my @zeilen = <DATEI
>;
114 foreach my $mac (@zeilen){
117 print LOG
"$now Checking MAC $mac from group $group ";
119 if(&General
::validmac
($mac)){
123 push(@hostarray,$val.",mac");
124 print LOG
"$now -> OK\n";
127 print LOG
"$now -> Mac $mac from group $group not converted (invalid MAC)\n";
131 &new_hostgrp
($group,'mac');
141 #ip with subnet in decimal
142 if($adr =~ m/^(\d\d?\d?).(\d\d?\d?).(\d\d?\d?).(\d\d?\d?)\/(\d
{1,2})$/){
143 $adr=int($1).".".int($2).".".int($3).".".int($4);
144 my $b = &General
::iporsubtodec
($5);
146 }elsif($adr =~ /^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
147 $adr=int($1).".".int($2).".".int($3).".".int($4);
148 if(&General
::validip
($adr)){
149 $a=$adr."/255.255.255.255";
152 if(&General
::validipandmask
($adr)){
153 $a=&General
::iporsubtodec
($adr);
159 &General
::readhasharray
($confighosts,\
%hosts);
160 &General
::readhasharray
($confignets,\
%nets);
161 &General
::readhasharray
($configgroups,\
%groups);
164 my $name; #"converted"
166 my $name3; #custom host/custom net
167 foreach my $adr (@hostarray){
169 my ($ip,$type) = split(",",$adr);
170 my ($ippart,$subnet) = split("/",$ip);
171 my ($byte1,$byte2,$byte3,$byte4) = split(/\./,$subnet);
173 print LOG
"Processing SINGLE HOST $ippart/$subnet from group $grp\n";
174 if(!&check_host
($ip)){
175 my $key = &General
::findhasharraykey
(\
%hosts);
177 $name2=$name.$ippart;
178 $name3="Custom Host";
179 $hosts{$key}[0] = $name2;
180 $hosts{$key}[1] = $type;
181 $hosts{$key}[2] = $ip;
182 $hosts{$key}[3] = '';
184 print LOG
"->Host (IP) $ip added to custom hosts\n"
186 print LOG
"->Host (IP) $ip already exists in custom hosts\n";
188 $name2=$name.$ippart;
189 foreach my $key (sort keys %hosts){
190 if($hosts{$key}[0] eq $name2){
195 $name2=$name.$ippart;
196 $name3="Custom Host";
198 }elsif($byte4 < '255'){
199 print LOG
"Processing NETWORK $ippart/$subnet from Group $grp\n";
200 if(!&check_net
($ippart,$subnet)){
201 #Check if this network is one one of IPFire internal networks
202 if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($ippart,$ownnet{'GREEN_NETADDRESS'},$ownnet{'GREEN_NETMASK'}))
205 $name3='Standard Network';
206 }elsif (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($ippart,$ownnet{'ORANGE_NETADDRESS'},$ownnet{'ORANGE_NETMASK'}))
209 $name3='Standard Network';
210 }elsif (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($ippart,$ownnet{'BLUE_NETADDRESS'},$ownnet{'BLUE_NETMASK'}))
213 $name3='Standard Network';
214 }elsif ($ippart eq '0.0.0.0')
217 $name3='Standard Network';
218 }elsif(defined($ovpnSettings{'DOVPN_SUBNET'}) && "$ippart/".&General
::iporsubtodec
($subnet) eq $ovpnSettings{'DOVPN_SUBNET'})
220 $name2='OpenVPN-Dyn';
221 $name3='Standard Network';
223 my $netkey = &General
::findhasharraykey
(\
%nets);
225 $name2=$name.$ippart;
226 $name3="Custom Network";
227 $nets{$netkey}[0] = $name2;
228 $nets{$netkey}[1] = $ippart;
229 $nets{$netkey}[2] = $subnet;
230 $nets{$netkey}[3] = '';
231 $nets{$netkey}[4] = 1;
232 print LOG
"->Network $ippart/$subnet added to custom networks\n";
235 print LOG
"Network $ippart already exists in custom networks\n";
237 $name2=$name.$ippart;
238 foreach my $key (sort keys %nets){
239 if($nets{$key}[0] eq $name2){
244 $name2=$name.$ippart;
245 $name3="Custom Network";
248 if($name2 && !&check_grp
($grp,$name2)){
249 my $grpkey = &General
::findhasharraykey
(\
%groups);
250 $groups{$grpkey}[0] = $grp;
251 $groups{$grpkey}[1] = '';
252 $groups{$grpkey}[2] = $name2;
253 $groups{$grpkey}[3] = $name3;
254 $groups{$grpkey}[4] = 0;
255 print LOG
"->$name2 added to group $grp\n";
257 }elsif($run eq 'mac'){
259 my ($mac,$type) = split(",",$adr);
260 print LOG
"Processing HOST (MAC) $mac\n";
261 if(!&check_host
($mac)){
262 my $key = &General
::findhasharraykey
(\
%hosts);
265 $name3="Custom Host";
266 $hosts{$key}[0] = $name2;
267 $hosts{$key}[1] = $type;
268 $hosts{$key}[2] = $mac;
269 $hosts{$key}[3] = '';
271 print LOG
"->Host (MAC) $mac added to custom hosts\n";
273 print LOG
"->Host (MAC) $mac already exists in custom hosts \n";
276 foreach my $key (sort keys %hosts){
277 if($hosts{$key}[0] eq $name2){
283 $name3="Custom Host";
285 if($name2 && !&check_grp
($grp,$name2)){
286 my $grpkey = &General
::findhasharraykey
(\
%groups);
287 $groups{$grpkey}[0] = $grp;
288 $groups{$grpkey}[1] = '';
289 $groups{$grpkey}[2] = $name2;
290 $groups{$grpkey}[3] = $name3;
291 $groups{$grpkey}[4] = 0;
292 print LOG
"->$name2 added to group $grp\n";
297 &General
::writehasharray
($confighosts,\
%hosts);
298 &General
::writehasharray
($configgroups,\
%groups);
299 &General
::writehasharray
($confignets,\
%nets);
305 foreach my $key (sort keys %hosts)
307 if($hosts{$key}[2] eq $ip)
318 foreach my $key (sort keys %nets)
320 if($nets{$key}[1] eq $ip && $nets{$key}[2] eq $sub)
331 foreach my $key (sort keys %groups)
333 if($groups{$key}[0] eq $grp && $groups{$key}[2] eq $value)
342 my ($type,$action,$active,$grp1,$source,$grp2,$useport,$port,$prot,$grp3,$target,$remark,$log,$time,$time_mon,$time_tue,$time_wed,$time_thu,$time_fri,$time_sat,$time_sun,$time_from,$time_to);
344 if( -f
"/var/log/converters/outgoingfw-convert.log"){unlink ("/var/log/converters/outgoingfw-convert.log");}
345 open (LOG
, ">/var/log/converters/outgoingfw-convert.log") or die $!;
347 &General
::readhash
($fwdfwsettings,\
%fwdsettings);
348 if ($outsettings{'POLICY'} eq 'MODE1'){
349 $fwdsettings{'POLICY'}='MODE1';
350 $fwdsettings{'POLICY1'}='MODE2';
354 $fwdsettings{'POLICY'}='MODE2';
355 $fwdsettings{'POLICY1'}='MODE2';
359 &General
::writehash
($fwdfwsettings,\
%fwdsettings);
360 open (DATEI
, "<$outgoingrules");
362 foreach my $rule (@lines)
367 print LOG
"$now processing: $rule\n";
369 @configline = split( /\;/, $rule );
371 if($configline[0] eq $type){
372 #some variables we can use from old config
373 if($configline[1] eq 'on'){ $active='ON';}else{$active='';}
374 if($configline[3] eq 'all' && $configline[8] ne ''){
377 }elsif($configline[3] eq 'all' && $configline[8] eq ''){
380 push(@prot,$configline[3]);
382 if($configline[4] ne ''){
383 $configline[4] =~ s/,/;/g;
384 $remark = $configline[4];
386 #find all "active" tags in all language files and check them against the old config
389 $logging='1' if ($_ eq $configline[9]);
391 if($logging eq '1' ){ $log='ON';}else{$log='';}
392 if($configline[10] eq 'on' && $configline[11] eq 'on' && $configline[12] eq 'on' && $configline[13] eq 'on' && $configline[14] eq 'on' && $configline[15] eq 'on' && $configline[16] eq 'on'){
393 if($configline[17] eq '00:00' && $configline[18] eq '00:00'){
401 $time_mon=$configline[10];
402 $time_tue=$configline[11];
403 $time_wed=$configline[12];
404 $time_thu=$configline[13];
405 $time_fri=$configline[14];
406 $time_sat=$configline[15];
407 $time_sun=$configline[16];
408 $time_from=$configline[17];
409 $time_to=$configline[18];
410 ############################################################
412 if ($configline[2] eq 'green') {
415 }elsif ($configline[2] eq 'orange') {
418 }elsif ($configline[2] eq 'red') {
421 &General
::readhash
($fwdfwsettings,\
%fwdsettings);
422 $fwdsettings{'POLICY1'}=$outsettings{'POLICY'};
423 $fwdsettings{'POLICY'}=$outsettings{'POLICY'};
424 &General
::writehash
($fwdfwsettings,\
%fwdsettings);
425 }elsif ($configline[2] eq 'blue') {
428 }elsif ($configline[2] eq 'ipsec') {
429 print LOG
"$now -> Rule not converted, ipsec+ interface is obsolet since IPFire 2.7 \n";
431 }elsif ($configline[2] eq 'ovpn') {
432 print LOG
"$now ->Creating networks/groups for OpenVPN...\n";
434 $grp1='cust_grp_src';
436 }elsif ($configline[2] eq 'ip') {
437 my $z=&check_ip
($configline[5]);
439 my ($ipa,$subn) = split("/",$z);
440 $subn=&General
::iporsubtocidr
($subn);
442 $source="$ipa/$subn";
444 print LOG
"$now -> Rule not converted, missing/invalid source ip \"$configline[5]\"\n";
447 }elsif ($configline[2] eq 'mac') {
448 if(&General
::validmac
($configline[6])){
450 $source=$configline[6];
452 print LOG
"$now -> Rule not converted, invalid MAC \"$configline[6]\" \n";
455 }elsif ($configline[2] eq 'all') {
459 foreach my $key (sort keys %groups){
460 if($groups{$key}[0] eq $configline[2]){
461 $grp1='cust_grp_src';
462 $source=$configline[2];
465 if ($grp1 eq '' || $source eq ''){
466 print LOG
"$now -> Rule not converted, no valid source recognised\n";
469 ############################################################
471 if($configline[7] ne ''){
472 my $address=&check_ip
($configline[7]);
474 my ($dip,$dsub) = split("/",$address);
475 $dsub=&General
::iporsubtocidr
($dsub);
477 $target="$dip/$dsub";
479 my $getwebsiteip=&get_ip_from_domain
($configline[7]);
482 $target=$getwebsiteip;
483 $remark.=" $configline[7]";
485 print LOG
"$now -> Rule not converted, invalid domain \"$configline[7]\"\n";
493 if($configline[8] ne '' && $configline[3] ne 'gre' && $configline[3] ne 'esp'){
495 my @parts=split(",",$configline[8]);
498 if (!($_ =~ /^(\d+)\:(\d+)$/)) {
499 if(&General
::validport
($_)){
504 print LOG
"$now -> Rule not converted, invalid destination Port \"$configline[8]\"\n";
508 my ($a1,$a2) = split(/\:/,$_);
509 if (&General
::validport
($a1) && &General
::validport
($a2) && $a1 < $a2){
511 push (@values,"$a1:$a2");
514 print LOG
"$now -> Rule not converted, invalid destination Port \"$configline[8]\"\n";
519 $port=join("|",@values);
524 print LOG
"-> Rule not converted because not for Firewall mode $outsettings{'POLICY'} (we are only converting for actual mode)\n";
526 &General
::readhasharray
($fwdfwconfig,\
%fwconfig);
527 &General
::readhasharray
($outfwconfig,\
%fwconfigout);
530 foreach my $protocol (@prot){
532 if ($source eq 'IPFire'){
537 $protocol=uc($protocol);
538 print LOG
"$now -> Converted: $action,$chain,$active,$grp1,$source,$grp2,$target,,,,,$useport,$protocol,,$grp3,$port,$remark,$log,$time,$time_mon,$time_tue,$time_wed,$time_thu,$time_fri,$time_sat,$time_sun,$time_from,$time_to\n";
539 #Put rules into system....
540 ###########################
541 #check for double rules
542 foreach my $key (sort keys %fwconfig){
543 if("$action,$chain,$active,$grp1,$source,$grp2,$target,,,,,$useport,$protocol,,$grp3,$port,$remark,$log,$time,$time_mon,$time_tue,$time_wed,$time_thu,$time_fri,$time_sat,$time_sun,$time_from,$time_to"
544 eq "$fwconfig{$key}[0],$fwconfig{$key}[1],$fwconfig{$key}[2],$fwconfig{$key}[3],$fwconfig{$key}[4],$fwconfig{$key}[5],$fwconfig{$key}[6],,,,,$fwconfig{$key}[11],$fwconfig{$key}[12],,$fwconfig{$key}[14],$fwconfig{$key}[15],$fwconfig{$key}[16],$fwconfig{$key}[17],$fwconfig{$key}[18],$fwconfig{$key}[19],$fwconfig{$key}[20],$fwconfig{$key}[21],$fwconfig{$key}[22],$fwconfig{$key}[23],$fwconfig{$key}[24],$fwconfig{$key}[25],$fwconfig{$key}[26],$fwconfig{$key}[27]"){
550 #increase groupcounter
552 if($grp1 eq 'cust_grp_src'){
553 foreach my $key (sort keys %groups){
554 if($groups{$key}[0] eq $source){
560 &General
::writehasharray
($configgroups,\
%groups);
563 if ($chain eq 'FORWARDFW'){
564 my $key = &General
::findhasharraykey
(\
%fwconfig);
565 $fwconfig{$key}[0] = $action;
566 $fwconfig{$key}[1] = $chain;
567 $fwconfig{$key}[2] = $active;
568 $fwconfig{$key}[3] = $grp1;
569 $fwconfig{$key}[4] = $source;
570 $fwconfig{$key}[5] = $grp2;
571 $fwconfig{$key}[6] = $target;
572 $fwconfig{$key}[11] = $useport;
573 $fwconfig{$key}[12] = $protocol;
574 $fwconfig{$key}[14] = $grp3;
575 $fwconfig{$key}[15] = $port;
576 $fwconfig{$key}[16] = $remark;
577 $fwconfig{$key}[17] = $log;
578 $fwconfig{$key}[18] = $time;
579 $fwconfig{$key}[19] = $time_mon;
580 $fwconfig{$key}[20] = $time_tue;
581 $fwconfig{$key}[21] = $time_wed;
582 $fwconfig{$key}[22] = $time_thu;
583 $fwconfig{$key}[23] = $time_fri;
584 $fwconfig{$key}[24] = $time_sat;
585 $fwconfig{$key}[25] = $time_sun;
586 $fwconfig{$key}[26] = $time_from;
587 $fwconfig{$key}[27] = $time_to;
588 $fwconfig{$key}[28] = '';
589 $fwconfig{$key}[29] = 'ALL';
590 $fwconfig{$key}[30] = '';
591 $fwconfig{$key}[31] = 'dnat';
593 my $key = &General
::findhasharraykey
(\
%fwconfigout);
594 $fwconfigout{$key}[0] = $action;
595 $fwconfigout{$key}[1] = $chain;
596 $fwconfigout{$key}[2] = $active;
597 $fwconfigout{$key}[3] = $grp1;
598 $fwconfigout{$key}[4] = $source;
599 $fwconfigout{$key}[5] = $grp2;
600 $fwconfigout{$key}[6] = $target;
601 $fwconfigout{$key}[11] = $useport;
602 $fwconfigout{$key}[12] = $protocol;
603 $fwconfigout{$key}[14] = $grp3;
604 $fwconfigout{$key}[15] = $port;
605 $fwconfigout{$key}[16] = $remark;
606 $fwconfigout{$key}[17] = $log;
607 $fwconfigout{$key}[18] = $time;
608 $fwconfigout{$key}[19] = $time_mon;
609 $fwconfigout{$key}[20] = $time_tue;
610 $fwconfigout{$key}[21] = $time_wed;
611 $fwconfigout{$key}[22] = $time_thu;
612 $fwconfigout{$key}[23] = $time_fri;
613 $fwconfigout{$key}[24] = $time_sat;
614 $fwconfigout{$key}[25] = $time_sun;
615 $fwconfigout{$key}[26] = $time_from;
616 $fwconfigout{$key}[27] = $time_to;
617 $fwconfigout{$key}[28] = '';
618 $fwconfigout{$key}[29] = 'ALL';
619 $fwconfigout{$key}[30] = '';
620 $fwconfigout{$key}[31] = 'dnat';
622 &General
::writehasharray
($fwdfwconfig,\
%fwconfig);
623 &General
::writehasharray
($outfwconfig,\
%fwconfigout);
631 sub get_ip_from_domain
636 my ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname($web);
638 $resolvedip=inet_ntoa
($addrs[0]);
646 &General
::readhasharray
($confighosts,\
%hosts);
647 &General
::readhasharray
($confignets,\
%nets);
648 &General
::readhasharray
($configgroups,\
%groups);
649 &General
::readhasharray
($ovpnconfig,\
%configovpn);
650 &General
::readhasharray
($ccdconfig,\
%ccdconf);
651 &General
::readhash
($ovpnsettings,\
%settingsovpn);
654 if($settingsovpn{'DOVPN_SUBNET'}){
655 my ($net,$subnet)=split("/",$settingsovpn{'DOVPN_SUBNET'});
656 push (@ovpnnets,"$net,$subnet,dynamic");
657 print LOG
"$now ->found dynamic OpenVPN net\n";
659 foreach my $key (sort keys %ccdconf){
660 my ($net,$subnet)=split("/",$ccdconf{$key}[1]);
661 $subnet=&General
::iporsubtodec
($subnet);
662 push (@ovpnnets,"$net,$subnet,$ccdconf{$key}[0]");
663 print LOG
"$now ->found OpenVPN static net $net/$subnet\n";
665 foreach my $key (sort keys %configovpn){
666 if ($configovpn{$key}[3] eq 'net'){
667 my ($net,$subnet)=split("/",$configovpn{$key}[27]);
668 push (@ovpnnets,"$net,$subnet,$configovpn{$key}[2]");
669 print LOG
"$now ->found OpenVPN $net/$subnet $configovpn{$key}[2]\n";
672 #add ovpn nets to customnetworks/groups
673 foreach my $line (@ovpnnets){
675 my ($net,$subnet,$name) = split(",",$line);
676 if (!&check_net
($net,$subnet)){
677 my $netkey = &General
::findhasharraykey
(\
%nets);
678 $name2=$name."(ovpn)".$net;
679 $name3="Custom Network";
680 $nets{$netkey}[0] = $name2;
681 $nets{$netkey}[1] = $net;
682 $nets{$netkey}[2] = $subnet;
683 $nets{$netkey}[3] = '';
684 $nets{$netkey}[4] = 1;
685 print LOG
"$now ->added $name2 $net/$subnet to customnetworks\n";
687 print LOG
"-> Custom Network with same IP already exist \"$net/$subnet\" (you can ignore this, if this run was manual from shell)\n";
690 my $grpkey = &General
::findhasharraykey
(\
%groups);
691 $groups{$grpkey}[0] = "ovpn";
692 $groups{$grpkey}[1] = '';
693 $groups{$grpkey}[2] = $name2;
694 $groups{$grpkey}[3] = "Custom Network";
695 $groups{$grpkey}[4] = 0;
696 print LOG
"$now ->added $name2 to customgroup ovpn\n";
701 &General
::writehasharray
($confighosts,\
%hosts);
702 &General
::writehasharray
($configgroups,\
%groups);
703 &General
::writehasharray
($confignets,\
%nets);
704 print LOG
"$now ->finished OVPN\n";
708 copy
("/var/ipfire/outgoing/p2protocols","/var/ipfire/firewall/p2protocols");
709 chmod oct('0777'), '/var/ipfire/firewall/p2protocols';