]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/forwardfw.cgi
Forward Firewall: Design changes
[people/teissler/ipfire-2.x.git] / html / cgi-bin / forwardfw.cgi
CommitLineData
2a81ab0d
AM
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2012 #
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# Hi folks! I hope this code is useful for all. I needed something to handle #
23# my VPN Connections in a comfortable way. As a prerequisite i needed #
24# something that makes sure the vpn roadwarrior are able to have a fixed #
25# ip-address. So i developed the ccd extension for the vpn server. #
26# #
27# Now that the ccd extension is ready i am able to develop the main request. #
28# Any feedback is appreciated. #
29# #
c7043621 30#Copymaster #
2a81ab0d
AM
31###############################################################################
32
33use strict;
eff2dbf8 34use Sort::Naturally;
2a81ab0d
AM
35no warnings 'uninitialized';
36# enable only the following on debugging purpose
37#use warnings;
38#use CGI::Carp 'fatalsToBrowser';
39
40require '/var/ipfire/general-functions.pl';
41require "${General::swroot}/lang.pl";
42require "${General::swroot}/header.pl";
43require "${General::swroot}/forward/bin/firewall-lib.pl";
44
45unless (-d "${General::swroot}/forward") { system("mkdir ${General::swroot}/forward"); }
46unless (-e "${General::swroot}/forward/settings") { system("touch ${General::swroot}/forward/settings"); }
47unless (-e "${General::swroot}/forward/config") { system("touch ${General::swroot}/forward/config"); }
48unless (-e "${General::swroot}/forward/input") { system("touch ${General::swroot}/forward/input"); }
c7043621 49unless (-e "${General::swroot}/forward/outgoing") { system("touch ${General::swroot}/forward/outgoing"); }
2669161d 50unless (-e "${General::swroot}/forward/nat") { system("touch ${General::swroot}/forward/nat"); }
2a81ab0d
AM
51
52my %fwdfwsettings=();
53my %selected=() ;
54my %defaultNetworks=();
55my %netsettings=();
56my %customhost=();
57my %customgrp=();
58my %customnetworks=();
59my %customservice=();
60my %customservicegrp=();
61my %ccdnet=();
62my %customnetwork=();
63my %ccdhost=();
64my %configfwdfw=();
65my %configinputfw=();
c7043621 66my %configoutgoingfw=();
2a81ab0d
AM
67my %ipsecconf=();
68my %color=();
69my %mainsettings=();
70my %checked=();
71my %icmptypes=();
72my %ovpnsettings=();
73my %ipsecsettings=();
74my %aliases=();
15add1c8 75my %optionsfw=();
2669161d 76my %ifaces=();
c7043621 77
2af92cf5 78my $VERSION='0.9.9.9';
2a81ab0d
AM
79my $color;
80my $confignet = "${General::swroot}/fwhosts/customnetworks";
81my $confighost = "${General::swroot}/fwhosts/customhosts";
82my $configgrp = "${General::swroot}/fwhosts/customgroups";
83my $configsrv = "${General::swroot}/fwhosts/customservices";
84my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
85my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
86my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
87my $configipsec = "${General::swroot}/vpn/config";
88my $configipsecrw = "${General::swroot}/vpn/settings";
89my $configfwdfw = "${General::swroot}/forward/config";
90my $configinput = "${General::swroot}/forward/input";
c7043621 91my $configoutgoing = "${General::swroot}/forward/outgoing";
2a81ab0d 92my $configovpn = "${General::swroot}/ovpn/settings";
15add1c8 93my $fwoptions = "${General::swroot}/optionsfw/settings";
2669161d 94my $ifacesettings = "${General::swroot}/ethernet/settings";
2a81ab0d
AM
95my $errormessage='';
96my $hint='';
97my $ipgrp="${General::swroot}/outgoing/groups";
15add1c8 98my $tdcolor='';
515863e2 99my $checkorange='';
b3f4a4ef 100my @protocols;
2a81ab0d
AM
101&General::readhash("${General::swroot}/forward/settings", \%fwdfwsettings);
102&General::readhash("${General::swroot}/main/settings", \%mainsettings);
103&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
15add1c8 104&General::readhash($fwoptions, \%optionsfw);
2669161d 105&General::readhash($ifacesettings, \%ifaces);
931e1fed
AM
106&General::readhash("$configovpn", \%ovpnsettings);
107&General::readhash("$configipsecrw", \%ipsecsettings);
108&General::readhasharray("$configipsec", \%ipsecconf);
2a81ab0d
AM
109&Header::showhttpheaders();
110&Header::getcgihash(\%fwdfwsettings);
111&Header::openpage($Lang::tr{'fwdfw menu'}, 1, '');
112&Header::openbigbox('100%', 'center',$errormessage);
113#### ACTION #####
114
2a81ab0d
AM
115if ($fwdfwsettings{'ACTION'} eq 'saverule')
116{
117 &General::readhasharray("$configfwdfw", \%configfwdfw);
118 &General::readhasharray("$configinput", \%configinputfw);
5d7faa45 119 &General::readhasharray("$configoutgoing", \%configoutgoingfw);
2a81ab0d
AM
120 $errormessage=&checksource;
121 if(!$errormessage){&checktarget;}
122 if(!$errormessage){&checkrule;}
a60dbb4b 123
515863e2
AM
124 #check if manual ip (source) is orange network
125 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
126 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
127 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
128 $checkorange='on';
129 }
130 }
131 #check useless rules
132 if( ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq 'ORANGE' || $checkorange eq 'on') && $fwdfwsettings{'grp2'} eq 'ipfire'){
133 $errormessage.=$Lang::tr{'fwdfw useless rule'}."<br>";
134 }
c7043621
AM
135 #check if we try to break rules
136 if( $fwdfwsettings{$fwdfwsettings{'grp1'}} eq 'IPFire' && $fwdfwsettings{'grp2'} eq 'ipfire'){
137 $errormessage.=$Lang::tr{'fwdfw err same'};
138 }
2a81ab0d 139 #INPUT part
c12392c0 140 if($fwdfwsettings{'grp2'} eq 'ipfire' && $fwdfwsettings{$fwdfwsettings{'grp1'}} ne 'ORANGE'){
5de39dea 141 $fwdfwsettings{'config'}=$configinput;
2a81ab0d 142 $fwdfwsettings{'chain'} = 'INPUTFW';
70d38e50 143 my $maxkey=&General::findhasharraykey(\%configinputfw);
2a81ab0d 144 #check if we have an identical rule already
70d38e50 145 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
2da264ec 146 foreach my $key (sort keys %configinputfw){
ac9e77e3
AM
147 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'}, $fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'}, $fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'}, $fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'}, $fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'}, $fwdfwsettings{'TIME'}, $fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
148 eq "$configinputfw{$key}[0], $configinputfw{$key}[2], $configinputfw{$key}[3],$configinputfw{$key}[4], $configinputfw{$key}[5],$configinputfw{$key}[6], $configinputfw{$key}[7], $configinputfw{$key}[8],$configinputfw{$key}[9], $configinputfw{$key}[10], $configinputfw{$key}[11],$configinputfw{$key}[12], $configinputfw{$key}[13], $configinputfw{$key}[14],$configinputfw{$key}[15], $configinputfw{$key}[17],$configinputfw{$key}[18],$configinputfw{$key}[19], $configinputfw{$key}[20], $configinputfw{$key}[21], $configinputfw{$key}[22], $configinputfw{$key}[23], $configinputfw{$key}[24], $configinputfw{$key}[25], $configinputfw{$key}[26], $configinputfw{$key}[27], $configinputfw{$key}[28], $configinputfw{$key}[29], $configinputfw{$key}[30], $configinputfw{$key}[31]"){
2da264ec 149 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
25dd450c 150 if ($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on'){
02da9f7b 151 $errormessage='';
15add1c8 152 }elsif($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark($fwdfwsettings{'ruleremark'})){
61068ee1 153 $errormessage=$Lang::tr{'fwdfw err remark'}."<br>";
02da9f7b
AM
154 }
155 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
156 $fwdfwsettings{'nosave'} = 'on';
157 }
2da264ec 158 }
62fc8511 159 }
2da264ec 160 }
70d38e50
AM
161 #check Rulepos on new Rule
162 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
163 $fwdfwsettings{'oldrulenumber'}=$maxkey;
164 foreach my $key (sort keys %configinputfw){
ac9e77e3
AM
165 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'}, $fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'}, $fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'}, $fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'}, $fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'}, $fwdfwsettings{'TIME'}, $fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
166 eq "$configinputfw{$key}[0], $configinputfw{$key}[2], $configinputfw{$key}[3],$configinputfw{$key}[4], $configinputfw{$key}[5],$configinputfw{$key}[6], $configinputfw{$key}[7], $configinputfw{$key}[8],$configinputfw{$key}[9], $configinputfw{$key}[10], $configinputfw{$key}[11],$configinputfw{$key}[12], $configinputfw{$key}[13], $configinputfw{$key}[14],$configinputfw{$key}[15], $configinputfw{$key}[17],$configinputfw{$key}[18],$configinputfw{$key}[19], $configinputfw{$key}[20], $configinputfw{$key}[21], $configinputfw{$key}[22], $configinputfw{$key}[23], $configinputfw{$key}[24], $configinputfw{$key}[25], $configinputfw{$key}[26], $configinputfw{$key}[27], $configinputfw{$key}[28], $configinputfw{$key}[29], $configinputfw{$key}[30], $configinputfw{$key}[31]"){
70d38e50
AM
167 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
168 }
169 }
170 }
992394d5 171 #check if we just close a rule
2669161d 172 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
992394d5
AM
173 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
174 $errormessage='';
175 $fwdfwsettings{'nosave2'} = 'on';
176 }
177 }
62fc8511
AM
178 &checkcounter($fwdfwsettings{'oldgrp1a'},$fwdfwsettings{'oldgrp1b'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}});
179 if ($fwdfwsettings{'nobase'} ne 'on'){
180 &checkcounter($fwdfwsettings{'oldgrp2a'},$fwdfwsettings{'oldgrp2b'},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}});
181 }
182 if($fwdfwsettings{'oldusesrv'} eq '' && $fwdfwsettings{'USESRV'} eq 'ON'){
183 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
184 }elsif ($fwdfwsettings{'USESRV'} eq '' && $fwdfwsettings{'oldusesrv'} eq 'ON') {
185 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},0,0);
186 }elsif ($fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldgrp3b'} ne $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'updatefwrule'} eq 'on'){
187 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
188 }
992394d5
AM
189 if($fwdfwsettings{'nosave2'} ne 'on'){
190 &saverule(\%configinputfw,$configinput);
191 }
a0fb1099
AM
192 }elsif($fwdfwsettings{'grp1'} eq 'ipfire_src' ){
193 # OUTGOING PART
c7043621
AM
194 $fwdfwsettings{'config'}=$configoutgoing;
195 $fwdfwsettings{'chain'} = 'OUTGOINGFW';
196 my $maxkey=&General::findhasharraykey(\%configoutgoingfw);
197 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
198 foreach my $key (sort keys %configoutgoingfw){
ac9e77e3
AM
199 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'}, $fwdfwsettings{'grp1'}, $fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'}, $fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'}, $fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'}, $fwdfwsettings{'USESRV'}, $fwdfwsettings{'TGT_PROT'}, $fwdfwsettings{'ICMP_TGT'}, $fwdfwsettings{'grp3'}, $fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'}, $fwdfwsettings{'TIME'}, $fwdfwsettings{'TIME_MON'}, $fwdfwsettings{'TIME_TUE'}, $fwdfwsettings{'TIME_WED'}, $fwdfwsettings{'TIME_THU'}, $fwdfwsettings{'TIME_FRI'}, $fwdfwsettings{'TIME_SAT'}, $fwdfwsettings{'TIME_SUN'}, $fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'}, $fwdfwsettings{'USE_NAT'}, $fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'}, $fwdfwsettings{'nat'}"
200 eq "$configoutgoingfw{$key}[0], $configoutgoingfw{$key}[2],$configoutgoingfw{$key}[3],$configoutgoingfw{$key}[4], $configoutgoingfw{$key}[5],$configoutgoingfw{$key}[6], $configoutgoingfw{$key}[7], $configoutgoingfw{$key}[8],$configoutgoingfw{$key}[9], $configoutgoingfw{$key}[10],$configoutgoingfw{$key}[11],$configoutgoingfw{$key}[12],$configoutgoingfw{$key}[13],$configoutgoingfw{$key}[14],$configoutgoingfw{$key}[15], $configoutgoingfw{$key}[17],$configoutgoingfw{$key}[18],$configoutgoingfw{$key}[19],$configoutgoingfw{$key}[20],$configoutgoingfw{$key}[21],$configoutgoingfw{$key}[22],$configoutgoingfw{$key}[23],$configoutgoingfw{$key}[24],$configoutgoingfw{$key}[25],$configoutgoingfw{$key}[26],$configoutgoingfw{$key}[27],$configoutgoingfw{$key}[28],$configoutgoingfw{$key}[29], $configoutgoingfw{$key}[30],$configoutgoingfw{$key}[31]"){
c7043621 201 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
25dd450c 202 if ($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on'){
c7043621 203 $errormessage='';
15add1c8 204 }elsif($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark($fwdfwsettings{'ruleremark'})){
c7043621
AM
205 $errormessage=$Lang::tr{'fwdfw err remark'}."<br>";
206 }
207 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
208 $fwdfwsettings{'nosave'} = 'on';
209 }
210 }
211 }
212 }
213 #check Rulepos on new Rule
214 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
5d7faa45 215 print"CHECK OUTGOING DOPPELTE REGEL<br>";
c7043621
AM
216 $fwdfwsettings{'oldrulenumber'}=$maxkey;
217 foreach my $key (sort keys %configoutgoingfw){
ac9e77e3
AM
218 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'}, $fwdfwsettings{'grp1'}, $fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'}, $fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'}, $fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'}, $fwdfwsettings{'USESRV'}, $fwdfwsettings{'TGT_PROT'}, $fwdfwsettings{'ICMP_TGT'}, $fwdfwsettings{'grp3'}, $fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'}, $fwdfwsettings{'TIME'}, $fwdfwsettings{'TIME_MON'}, $fwdfwsettings{'TIME_TUE'}, $fwdfwsettings{'TIME_WED'}, $fwdfwsettings{'TIME_THU'}, $fwdfwsettings{'TIME_FRI'}, $fwdfwsettings{'TIME_SAT'}, $fwdfwsettings{'TIME_SUN'}, $fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'}, $fwdfwsettings{'USE_NAT'}, $fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'}, $fwdfwsettings{'nat'}"
219 eq "$configoutgoingfw{$key}[0], $configoutgoingfw{$key}[2],$configoutgoingfw{$key}[3],$configoutgoingfw{$key}[4], $configoutgoingfw{$key}[5],$configoutgoingfw{$key}[6], $configoutgoingfw{$key}[7], $configoutgoingfw{$key}[8],$configoutgoingfw{$key}[9], $configoutgoingfw{$key}[10],$configoutgoingfw{$key}[11],$configoutgoingfw{$key}[12],$configoutgoingfw{$key}[13],$configoutgoingfw{$key}[14],$configoutgoingfw{$key}[15], $configoutgoingfw{$key}[17],$configoutgoingfw{$key}[18],$configoutgoingfw{$key}[19],$configoutgoingfw{$key}[20],$configoutgoingfw{$key}[21],$configoutgoingfw{$key}[22],$configoutgoingfw{$key}[23],$configoutgoingfw{$key}[24],$configoutgoingfw{$key}[25],$configoutgoingfw{$key}[26],$configoutgoingfw{$key}[27],$configoutgoingfw{$key}[28],$configoutgoingfw{$key}[29], $configoutgoingfw{$key}[30],$configoutgoingfw{$key}[31]"){
c7043621
AM
220 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
221 }
222 }
223 }
224 #check if we just close a rule
2669161d 225 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
c7043621
AM
226 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
227 $fwdfwsettings{'nosave2'} = 'on';
228 $errormessage='';
229 }
230 }
231 #increase counters
232 &checkcounter($fwdfwsettings{'oldgrp1a'},$fwdfwsettings{'oldgrp1b'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}});
233 &checkcounter($fwdfwsettings{'oldgrp2a'},$fwdfwsettings{'oldgrp2b'},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}});
234 if($fwdfwsettings{'oldusesrv'} eq '' && $fwdfwsettings{'USESRV'} eq 'ON'){
235 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
236 }elsif ($fwdfwsettings{'USESRV'} eq '' && $fwdfwsettings{'oldusesrv'} eq 'ON') {
237 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},0,0);
238 }elsif ($fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldgrp3b'} ne $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'updatefwrule'} eq 'on'){
239 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
240 }
241 if ($fwdfwsettings{'nobase'} eq 'on'){
242 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
243 }
244 if ($fwdfwsettings{'nosave2'} ne 'on'){
245 &saverule(\%configoutgoingfw,$configoutgoing);
246 }
2a81ab0d 247 }else{
27f4a6b1 248 #FORWARD PART
5de39dea 249 $fwdfwsettings{'config'}=$configfwdfw;
2a81ab0d 250 $fwdfwsettings{'chain'} = 'FORWARDFW';
70d38e50 251 my $maxkey=&General::findhasharraykey(\%configfwdfw);
2da264ec
AM
252 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
253 #check if we have an identical rule already
254 foreach my $key (sort keys %configfwdfw){
ac9e77e3
AM
255 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
256 eq "$configfwdfw{$key}[0], $configfwdfw{$key}[2], $configfwdfw{$key}[3], $configfwdfw{$key}[4], $configfwdfw{$key}[5], $configfwdfw{$key}[6], $configfwdfw{$key}[7], $configfwdfw{$key}[8], $configfwdfw{$key}[9], $configfwdfw{$key}[10], $configfwdfw{$key}[11], $configfwdfw{$key}[12], $configfwdfw{$key}[13], $configfwdfw{$key}[14],$configfwdfw{$key}[15], $configfwdfw{$key}[18],$configfwdfw{$key}[19], $configfwdfw{$key}[20], $configfwdfw{$key}[21], $configfwdfw{$key}[22], $configfwdfw{$key}[23], $configfwdfw{$key}[24], $configfwdfw{$key}[25], $configfwdfw{$key}[26], $configfwdfw{$key}[27], $configfwdfw{$key}[28], $configfwdfw{$key}[29], $configfwdfw{$key}[30], $configfwdfw{$key}[31]"){
2da264ec 257 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
25dd450c 258 if ($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' ){
02da9f7b 259 $errormessage='';
15add1c8 260 }elsif($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark($fwdfwsettings{'ruleremark'})){
61068ee1 261 $errormessage=$Lang::tr{'fwdfw err remark'}."<br>";
02da9f7b
AM
262 }
263 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
264 $fwdfwsettings{'nosave'} = 'on';
ac9e77e3 265 print "uzlputz neu time:$fwdfwsettings{'TIME'} alt:$configfwdfw{$key}[18]";
02da9f7b 266 }
2da264ec
AM
267 }
268 }
2a81ab0d 269 }
70d38e50
AM
270 #check Rulepos on new Rule
271 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
272 $fwdfwsettings{'oldrulenumber'}=$maxkey;
273 foreach my $key (sort keys %configfwdfw){
ac9e77e3
AM
274 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
275 eq "$configfwdfw{$key}[0], $configfwdfw{$key}[2], $configfwdfw{$key}[3], $configfwdfw{$key}[4], $configfwdfw{$key}[5], $configfwdfw{$key}[6], $configfwdfw{$key}[7], $configfwdfw{$key}[8], $configfwdfw{$key}[9], $configfwdfw{$key}[10], $configfwdfw{$key}[11], $configfwdfw{$key}[12], $configfwdfw{$key}[13], $configfwdfw{$key}[14],$configfwdfw{$key}[15], $configfwdfw{$key}[18],$configfwdfw{$key}[19], $configfwdfw{$key}[20], $configfwdfw{$key}[21], $configfwdfw{$key}[22], $configfwdfw{$key}[23], $configfwdfw{$key}[24], $configfwdfw{$key}[25], $configfwdfw{$key}[26], $configfwdfw{$key}[27], $configfwdfw{$key}[28], $configfwdfw{$key}[29], $configfwdfw{$key}[30], $configfwdfw{$key}[31]"){
70d38e50
AM
276 $errormessage.=$Lang::tr{'fwdfw err ruleexists'};
277 }
278 }
279 }
992394d5 280 #check if we just close a rule
533a2da3 281 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
992394d5
AM
282 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
283 $fwdfwsettings{'nosave2'} = 'on';
284 $errormessage='';
285 }
286 }
2a81ab0d
AM
287 #increase counters
288 &checkcounter($fwdfwsettings{'oldgrp1a'},$fwdfwsettings{'oldgrp1b'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}});
2a81ab0d 289 &checkcounter($fwdfwsettings{'oldgrp2a'},$fwdfwsettings{'oldgrp2b'},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}});
2a81ab0d
AM
290 if($fwdfwsettings{'oldusesrv'} eq '' && $fwdfwsettings{'USESRV'} eq 'ON'){
291 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
292 }elsif ($fwdfwsettings{'USESRV'} eq '' && $fwdfwsettings{'oldusesrv'} eq 'ON') {
293 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},0,0);
294 }elsif ($fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldgrp3b'} ne $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'updatefwrule'} eq 'on'){
295 &checkcounter($fwdfwsettings{'oldgrp3a'},$fwdfwsettings{'oldgrp3b'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
296 }
2a81ab0d
AM
297 if ($fwdfwsettings{'nobase'} eq 'on'){
298 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
299 }
992394d5
AM
300 if ($fwdfwsettings{'nosave2'} ne 'on'){
301 &saverule(\%configfwdfw,$configfwdfw);
302 }
2a81ab0d
AM
303 }
304 if ($errormessage){
305 &newrule;
306 }else{
992394d5
AM
307 if($fwdfwsettings{'nosave2'} ne 'on'){
308 &rules;
309 }
2a81ab0d
AM
310 &base;
311 }
2a81ab0d 312}
2a81ab0d
AM
313if ($fwdfwsettings{'ACTION'} eq $Lang::tr{'fwdfw newrule'})
314{
315 &newrule;
316}
317if ($fwdfwsettings{'ACTION'} eq $Lang::tr{'fwdfw toggle'})
318{
319 my %togglehash=();
320 &General::readhasharray($fwdfwsettings{'config'}, \%togglehash);
321 foreach my $key (sort keys %togglehash){
322 if ($key eq $fwdfwsettings{'key'}){
323 if ($togglehash{$key}[2] eq 'ON'){$togglehash{$key}[2]='';}else{$togglehash{$key}[2]='ON';}
324 }
325 }
326 &General::writehasharray($fwdfwsettings{'config'}, \%togglehash);
327 &rules;
328 &base;
329}
330if ($fwdfwsettings{'ACTION'} eq $Lang::tr{'fwdfw togglelog'})
331{
332 my %togglehash=();
333 &General::readhasharray($fwdfwsettings{'config'}, \%togglehash);
334 foreach my $key (sort keys %togglehash){
335 if ($key eq $fwdfwsettings{'key'}){
336 if ($togglehash{$key}[17] eq 'ON'){$togglehash{$key}[17]='';}else{$togglehash{$key}[17]='ON';}
337 }
338 }
339 &General::writehasharray($fwdfwsettings{'config'}, \%togglehash);
340 &rules;
341 &base;
342}
343if ($fwdfwsettings{'ACTION'} eq $Lang::tr{'fwdfw reread'})
344{
345 &reread_rules;
346 &base;
347}
348if ($fwdfwsettings{'ACTION'} eq 'editrule')
349{
350 $fwdfwsettings{'updatefwrule'}='on';
351 &newrule;
352}
353if ($fwdfwsettings{'ACTION'} eq 'deleterule')
354{
355 &deleterule;
356}
357if ($fwdfwsettings{'ACTION'} eq 'moveup')
358{
359 &pos_up;
360 &base;
361}
362if ($fwdfwsettings{'ACTION'} eq 'movedown')
363{
364 &pos_down;
365 &base;
366}
367if ($fwdfwsettings{'ACTION'} eq 'copyrule')
368{
369 $fwdfwsettings{'copyfwrule'}='on';
2a81ab0d
AM
370 &newrule;
371}
372if ($fwdfwsettings{'ACTION'} eq '')
373{
374 &base;
375}
376### Functions ####
8013bd0a 377sub addrule
2a81ab0d 378{
8013bd0a
AM
379 &error;
380 if (-f "${General::swroot}/forward/reread"){
a0fb1099 381 print "<table border='1' rules='groups' bgcolor='lightgreen' width='100%'><form method='post'><td><div style='font-size:11pt; font-weight: bold;vertical-align: middle; '><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}' style='font-face: Comic Sans MS; color: green; font-weight: bold; font-size: 14pt;'>&nbsp &nbsp $Lang::tr{'fwhost reread'}</div</td></tr></table></form><br>";
2a81ab0d 382 }
e1eef9d5 383 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw menu'});
8013bd0a
AM
384 print "<form method='post'>";
385 print "<table border='0'>";
386 print "<tr><td><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw newrule'}'></td>";
387 print"</tr></table></form><hr>";
388 &Header::closebox();
389 &viewtablerule;
2a81ab0d
AM
390}
391sub base
392{
2a81ab0d 393 &hint;
7bd9d462 394 &addrule;
12a43202 395 print "<br><br>";
7874d820 396 print "<br><br><div align='right'><font size='1' color='grey'>Version: $VERSION</font></div>";
2a81ab0d 397}
8013bd0a 398sub changerule
2a81ab0d 399{
8013bd0a
AM
400 my $oldchain=shift;
401 $fwdfwsettings{'updatefwrule'}='';
402 $fwdfwsettings{'config'}=$oldchain;
403 $fwdfwsettings{'nobase'}='on';
404 &deleterule;
405 &checkcounter(0,0,$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}});
406 &checkcounter(0,0,$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}});
2a81ab0d
AM
407}
408sub checksource
409{
410 my ($ip,$subnet);
2a81ab0d
AM
411 #check ip-address if manual
412 if ($fwdfwsettings{'src_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'src_addr'} ne ''){
413 #check if ip with subnet
414 if ($fwdfwsettings{'src_addr'} =~ /^(.*?)\/(.*?)$/) {
415 ($ip,$subnet)=split (/\//,$fwdfwsettings{'src_addr'});
416 $subnet = &General::iporsubtocidr($subnet);
b5269091 417 $fwdfwsettings{'isip'}='on';
2a81ab0d
AM
418 }
419 #check if only ip
420 if($fwdfwsettings{'src_addr'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
421 $ip=$fwdfwsettings{'src_addr'};
422 $subnet = '32';
b5269091 423 $fwdfwsettings{'isip'}='on';
2a81ab0d 424 }
36196d0d 425
b5269091
AM
426 if ($fwdfwsettings{'isip'} ne 'on'){
427 if (&General::validmac($fwdfwsettings{'src_addr'})){$fwdfwsettings{'ismac'}='on';}
428 }
429 if ($fwdfwsettings{'isip'} eq 'on'){
931e1fed
AM
430 ##check if ip is valid
431 if (! &General::validip($ip)){
432 $errormessage.=$Lang::tr{'fwdfw err src_addr'}."<br>";
433 return $errormessage;
434 }
b5269091
AM
435 #check and form valid IP
436 $ip=&General::ip2dec($ip);
437 $ip=&General::dec2ip($ip);
438 #check if net or broadcast
439 my @tmp= split (/\./,$ip);
440 if (($tmp[3] eq "0") || ($tmp[3] eq "255"))
441 {
442 $errormessage=$Lang::tr{'fwhost err hostip'}."<br>";
931e1fed
AM
443 return $errormessage;
444 }
d9b691e1 445 $fwdfwsettings{'src_addr'}="$ip/$subnet";
b5269091
AM
446 if(!&General::validipandmask($fwdfwsettings{'src_addr'})){
447 $errormessage.=$Lang::tr{'fwdfw err src_addr'}."<br>";
931e1fed 448 return $errormessage;
b5269091
AM
449 }
450 }
451 if ($fwdfwsettings{'isip'} ne 'on' && $fwdfwsettings{'ismac'} ne 'on'){
2a81ab0d 452 $errormessage.=$Lang::tr{'fwdfw err src_addr'}."<br>";
931e1fed 453 return $errormessage;
2a81ab0d
AM
454 }
455 }elsif($fwdfwsettings{'src_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'src_addr'} eq ''){
456 $errormessage.=$Lang::tr{'fwdfw err nosrcip'};
457 return $errormessage;
458 }
62fc8511 459
2a81ab0d
AM
460 #check empty fields
461 if ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq ''){ $errormessage.=$Lang::tr{'fwdfw err nosrc'}."<br>";}
462 #check icmp source
463 if ($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'PROT'} eq 'ICMP'){
464 $fwdfwsettings{'SRC_PORT'}='';
465 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
466 foreach my $key (keys %icmptypes){
467 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0] ($icmptypes{$key}[1])"){
468 $fwdfwsettings{'ICMP_TYPES'}="$icmptypes{$key}[0]";
469 }
470 }
62fc8511
AM
471 }elsif($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'PROT'} eq 'GRE'){
472 $fwdfwsettings{'SRC_PORT'}='';
473 $fwdfwsettings{'ICMP_TYPES'}='';
474 }elsif($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'PROT'} eq 'ESP'){
475 $fwdfwsettings{'SRC_PORT'}='';
476 $fwdfwsettings{'ICMP_TYPES'}='';
d1f01304
AM
477 }elsif($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'PROT'} eq 'AH'){
478 $fwdfwsettings{'SRC_PORT'}='';
479 $fwdfwsettings{'ICMP_TYPES'}='';
2a81ab0d
AM
480 }elsif($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'PROT'} ne 'ICMP'){
481 $fwdfwsettings{'ICMP_TYPES'}='';
482 }else{
483 $fwdfwsettings{'ICMP_TYPES'}='';
484 $fwdfwsettings{'SRC_PORT'}='';
485 $fwdfwsettings{'PROT'}='';
486 }
62fc8511 487
8f0b047b
AM
488 if($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && ($fwdfwsettings{'PROT'} eq 'TCP' || $fwdfwsettings{'PROT'} eq 'UDP') && $fwdfwsettings{'SRC_PORT'} ne ''){
489 my @parts=split(",",$fwdfwsettings{'SRC_PORT'});
490 my @values=();
491 foreach (@parts){
492 chomp($_);
829697d0 493 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
8f0b047b
AM
494 my $check;
495 #change dashes with :
496 $_=~ tr/-/:/;
497 if ($_ eq "*") {
498 push(@values,"1:65535");
499 $check='on';
500 }
829697d0 501 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
8f0b047b
AM
502 push(@values,"1:$2");
503 $check='on';
504 }
829697d0 505 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/ ) {
8f0b047b
AM
506 push(@values,"$1:65535");
507 $check='on'
508 }
509 $errormessage .= &General::validportrange($_, 'destination');
510 if(!$check){
511 push (@values,$_);
512 }
513 }else{
514 if (&General::validport($_)){
515 push (@values,$_);
516 }else{
517
518 }
519 }
2a81ab0d 520 }
8f0b047b 521 $fwdfwsettings{'SRC_PORT'}=join("|",@values);
2a81ab0d 522 }
931e1fed 523 return $errormessage;
2a81ab0d
AM
524}
525sub checktarget
526{
527 my ($ip,$subnet);
a6edca5a 528 &General::readhasharray("$configsrv", \%customservice);
bc912c6e 529 #check DNAT settings (has to be single Host and single Port or portrange)
a6edca5a
AM
530 if ($fwdfwsettings{'USE_NAT'} eq 'ON' && $fwdfwsettings{'nat'} eq 'dnat'){
531 if($fwdfwsettings{'grp2'} eq 'tgt_addr' || $fwdfwsettings{'grp2'} eq 'cust_host_tgt' || $fwdfwsettings{'grp2'} eq 'ovpn_host_tgt'){
98cee89f 532 if ($fwdfwsettings{'USESRV'} eq '' && $fwdfwsettings{'dnatport'} eq ''){
a6edca5a 533 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
931e1fed 534 return $errormessage;
a6edca5a
AM
535 }
536 #check if manual ip is a single Host (if set)
537 if ($fwdfwsettings{'grp2'} eq 'tgt_addr'){
538 my @tmp= split (/\./,$fwdfwsettings{$fwdfwsettings{'grp2'}});
539 my @tmp1= split ("/",$tmp[3]);
540 if (($tmp1[0] eq "0") || ($tmp1[0] eq "255"))
541 {
542 $errormessage=$Lang::tr{'fwdfw dnat error'}."<br>";
931e1fed 543 return $errormessage;
a6edca5a
AM
544 }
545 }
bc912c6e 546 #check if Port is a single Port or portrange
a6edca5a
AM
547 if ($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'grp3'} eq 'TGT_PORT'){
548 if(($fwdfwsettings{'TGT_PROT'} ne 'TCP'|| $fwdfwsettings{'TGT_PROT'} ne 'UDP') && $fwdfwsettings{'TGT_PORT'} eq ''){
549 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
931e1fed 550 return $errormessage;
a6edca5a
AM
551 }
552 if (($fwdfwsettings{'TGT_PROT'} eq 'TCP'|| $fwdfwsettings{'TGT_PROT'} eq 'UDP') && $fwdfwsettings{'TGT_PORT'} ne '' && !&check_natport($fwdfwsettings{'TGT_PORT'})){
553 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
931e1fed 554 return $errormessage;
a6edca5a
AM
555 }
556 }
557 }else{
558 $errormessage=$Lang::tr{'fwdfw dnat error'}."<br>";
931e1fed 559 return $errormessage;
a6edca5a
AM
560 }
561 }
2a81ab0d
AM
562 if ($fwdfwsettings{'tgt_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'tgt_addr'} ne ''){
563 #check if ip with subnet
564 if ($fwdfwsettings{'tgt_addr'} =~ /^(.*?)\/(.*?)$/) {
565 ($ip,$subnet)=split (/\//,$fwdfwsettings{'tgt_addr'});
566 $subnet = &General::iporsubtocidr($subnet);
567 }
568 #check if only ip
569 if($fwdfwsettings{'tgt_addr'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
570 $ip=$fwdfwsettings{'tgt_addr'};
571 $subnet='32';
572 }
931e1fed
AM
573 #check if ip is valid
574 if (! &General::validip($ip)){
575 $errormessage.=$Lang::tr{'fwdfw err tgt_addr'}."<br>";
576 return $errormessage;
577 }
2a81ab0d
AM
578 #check and form valid IP
579 $ip=&General::ip2dec($ip);
580 $ip=&General::dec2ip($ip);
d9b691e1 581 $fwdfwsettings{'tgt_addr'}="$ip/$subnet";
2a81ab0d
AM
582 if(!&General::validipandmask($fwdfwsettings{'tgt_addr'})){
583 $errormessage.=$Lang::tr{'fwdfw err tgt_addr'}."<br>";
931e1fed 584 return $errormessage;
2a81ab0d 585 }
2a81ab0d
AM
586 }elsif($fwdfwsettings{'tgt_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'tgt_addr'} eq ''){
587 $errormessage.=$Lang::tr{'fwdfw err notgtip'};
588 return $errormessage;
589 }
2a81ab0d
AM
590 #check empty fields
591 if ($fwdfwsettings{$fwdfwsettings{'grp2'}} eq ''){ $errormessage.=$Lang::tr{'fwdfw err notgt'}."<br>";}
2a81ab0d
AM
592 #check tgt services
593 if ($fwdfwsettings{'USESRV'} eq 'ON'){
594 if ($fwdfwsettings{'grp3'} eq 'cust_srv'){
595 $fwdfwsettings{'TGT_PROT'}='';
596 $fwdfwsettings{'ICMP_TGT'}='';
597 }
598 if ($fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
599 $fwdfwsettings{'TGT_PROT'}='';
600 $fwdfwsettings{'ICMP_TGT'}='';
601 #check target service
602 if($fwdfwsettings{$fwdfwsettings{'grp3'}} eq ''){
603 $errormessage.=$Lang::tr{'fwdfw err tgt_grp'};
604 }
605 }
606 if ($fwdfwsettings{'grp3'} eq 'TGT_PORT'){
bcbf1b8e 607 if ($fwdfwsettings{'TGT_PROT'} eq 'TCP' || $fwdfwsettings{'TGT_PROT'} eq 'UDP'){
2a81ab0d 608 if ($fwdfwsettings{'TGT_PORT'} ne ''){
08e1c65d 609 if ($fwdfwsettings{'TGT_PORT'} =~ "," && $fwdfwsettings{'USE_NAT'} && $fwdfwsettings{'nat'} eq 'dnat') {
829697d0 610 $errormessage=$Lang::tr{'fwdfw dnat porterr'}."<br>";
931e1fed 611 return $errormessage;
829697d0 612 }
8f0b047b
AM
613 my @parts=split(",",$fwdfwsettings{'TGT_PORT'});
614 my @values=();
615 foreach (@parts){
616 chomp($_);
829697d0 617 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
8f0b047b
AM
618 my $check;
619 #change dashes with :
620 $_=~ tr/-/:/;
621 if ($_ eq "*") {
622 push(@values,"1:65535");
623 $check='on';
624 }
829697d0 625 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
8f0b047b
AM
626 push(@values,"1:$2");
627 $check='on';
628 }
829697d0 629 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/) {
8f0b047b
AM
630 push(@values,"$1:65535");
631 $check='on'
632 }
633 $errormessage .= &General::validportrange($_, 'destination');
634 if(!$check){
635 push (@values,$_);
636 }
637 }else{
638 if (&General::validport($_)){
639 push (@values,$_);
640 }else{
641
642 }
643 }
2a81ab0d 644 }
8f0b047b 645 $fwdfwsettings{'TGT_PORT'}=join("|",@values);
2a81ab0d 646 }
62fc8511 647 }elsif ($fwdfwsettings{'TGT_PROT'} eq 'GRE'){
d1f01304 648 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
bcbf1b8e 649 $fwdfwsettings{'TGT_PORT'} = '';
62fc8511 650 $fwdfwsettings{'ICMP_TGT'} = '';
bcbf1b8e 651 }elsif($fwdfwsettings{'TGT_PROT'} eq 'ESP'){
d1f01304 652 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
bcbf1b8e 653 $fwdfwsettings{'TGT_PORT'} = '';
d1f01304 654 $fwdfwsettings{'ICMP_TGT'}='';
bcbf1b8e 655 }elsif($fwdfwsettings{'TGT_PROT'} eq 'AH'){
d1f01304 656 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
bcbf1b8e 657 $fwdfwsettings{'TGT_PORT'} = '';
62fc8511 658 $fwdfwsettings{'ICMP_TGT'}='';
2a81ab0d 659 }elsif ($fwdfwsettings{'TGT_PROT'} eq 'ICMP'){
d1f01304 660 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
bcbf1b8e 661 $fwdfwsettings{'TGT_PORT'} = '';
2a81ab0d
AM
662 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
663 foreach my $key (keys %icmptypes){
664
665 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwdfwsettings{'ICMP_TGT'}){
2a81ab0d
AM
666 $fwdfwsettings{'ICMP_TGT'}=$icmptypes{$key}[0];
667 }
668 }
669 }
670 }
671 }
2a81ab0d
AM
672 #check targetport
673 if ($fwdfwsettings{'USESRV'} ne 'ON'){
674 $fwdfwsettings{'grp3'}='';
675 $fwdfwsettings{$fwdfwsettings{'grp3'}}='';
2a81ab0d
AM
676 $fwdfwsettings{'ICMP_TGT'}='';
677 }
2a81ab0d
AM
678 #check timeframe
679 if($fwdfwsettings{'TIME'} eq 'ON'){
680 if($fwdfwsettings{'TIME_MON'} eq '' && $fwdfwsettings{'TIME_TUE'} eq '' && $fwdfwsettings{'TIME_WED'} eq '' && $fwdfwsettings{'TIME_THU'} eq '' && $fwdfwsettings{'TIME_FRI'} eq '' && $fwdfwsettings{'TIME_SAT'} eq '' && $fwdfwsettings{'TIME_SUN'} eq ''){
681 $errormessage=$Lang::tr{'fwdfw err time'};
931e1fed 682 return $errormessage;
2a81ab0d
AM
683 }
684 }
2a81ab0d
AM
685 return $errormessage;
686}
a6edca5a
AM
687sub check_natport
688{
689 my $val=shift;
829697d0
AM
690 if($fwdfwsettings{'USE_NAT'} eq 'ON' && $fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} ne ''){
691 if ($fwdfwsettings{'dnatport'} =~ /^(\d+)\-(\d+)$/) {
692 $fwdfwsettings{'dnatport'} =~ tr/-/:/;
693 if ($fwdfwsettings{'dnatport'} eq "*") {
694 $fwdfwsettings{'dnatport'}="1:65535";
695 }
696 if ($fwdfwsettings{'dnatport'} =~ /^(\D)\:(\d+)$/) {
697 $fwdfwsettings{'dnatport'} = "1:$2";
698 }
699 if ($fwdfwsettings{'dnatport'} =~ /^(\d+)\:(\D)$/) {
700 $fwdfwsettings{'dnatport'} ="$1:65535";
701 }
702 }
703 return 1;
704 }
705 if ($val =~ "," || $val>65536 || $val<0){
a6edca5a
AM
706 return 0;
707 }
708 return 1;
709}
2a81ab0d
AM
710sub checkrule
711{
a6edca5a
AM
712 #check valid port for NAT
713 if($fwdfwsettings{'USE_NAT'} eq 'ON'){
6b681c40 714 #if no port is given in nat area, take target host port
a6edca5a 715 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'grp3'} eq 'TGT_PORT' && $fwdfwsettings{'dnatport'} eq ''){$fwdfwsettings{'dnatport'}=$fwdfwsettings{'TGT_PORT'};}
bc912c6e 716 #check if port given in nat area is a single valid port or portrange
98cee89f 717 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'TGT_PORT'} ne '' && !&check_natport($fwdfwsettings{'dnatport'})){
a6edca5a 718 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
98cee89f 719 }elsif($fwdfwsettings{'USESRV'} eq 'ON' && $fwdfwsettings{'grp3'} eq 'cust_srv'){
a6edca5a
AM
720 my $custsrvport;
721 #get servcie Protocol and Port
722 foreach my $key (sort keys %customservice){
723 if($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]){
724 if ($customservice{$key}[2] ne 'TCP' && $customservice{$key}[2] ne 'UDP'){
725 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
726 }
727 $custsrvport= $customservice{$key}[1];
728 }
729 }
730 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} eq ''){$fwdfwsettings{'dnatport'}=$custsrvport;}
731 }
98cee89f
AM
732 #check if DNAT port is multiple
733 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} ne ''){
734 my @parts=split(",",$fwdfwsettings{'dnatport'});
735 my @values=();
736 foreach (@parts){
737 chomp($_);
738 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
739 my $check;
740 #change dashes with :
741 $_=~ tr/-/:/;
742 if ($_ eq "*") {
743 push(@values,"1:65535");
744 $check='on';
745 }
746 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
747 push(@values,"1:$2");
748 $check='on';
749 }
750 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/) {
751 push(@values,"$1:65535");
752 $check='on'
753 }
754 $errormessage .= &General::validportrange($_, 'destination');
755 if(!$check){
756 push (@values,$_);
757 }
758 }else{
759 if (&General::validport($_)){
760 push (@values,$_);
761 }else{
762
763 }
764 }
765 }
766 $fwdfwsettings{'dnatport'}=join("|",@values);
767 }
a6edca5a 768 }
2a81ab0d
AM
769 #check valid remark
770 if ($fwdfwsettings{'ruleremark'} ne '' && !&validremark($fwdfwsettings{'ruleremark'})){
771 $errormessage.=$Lang::tr{'fwdfw err remark'}."<br>";
772 }
773 #check if source and target identical
27f4a6b1 774 if ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{$fwdfwsettings{'grp1'}} ne 'ALL'){
2a81ab0d
AM
775 $errormessage.=$Lang::tr{'fwdfw err same'};
776 return $errormessage;
777 }
2a81ab0d
AM
778 #get source and targetip address if possible
779 my ($sip,$scidr,$tip,$tcidr);
780 ($sip,$scidr)=&get_ip("src","grp1");
781 ($tip,$tcidr)=&get_ip("tgt","grp2");
2a81ab0d
AM
782 #check same iprange in source and target
783 if ($sip ne '' && $scidr ne '' && $tip ne '' && $tcidr ne ''){
2a81ab0d
AM
784 my $networkip1=&General::getnetworkip($sip,$scidr);
785 my $networkip2=&General::getnetworkip($tip,$tcidr);
786 if ($scidr gt $tcidr){
210ee67b 787 if ( &General::IpInSubnet($networkip1,$tip,&General::iporsubtodec($tcidr))){
2a81ab0d
AM
788 $errormessage.=$Lang::tr{'fwdfw err samesub'};
789 }
8013bd0a
AM
790 }elsif($scidr eq $tcidr && $scidr eq '32'){
791 my ($sbyte1,$sbyte2,$sbyte3,$sbyte4)=split(/\./,$networkip1);
792 my ($tbyte1,$tbyte2,$tbyte3,$tbyte4)=split(/\./,$networkip2);
793 if ($sbyte1 eq $tbyte1 && $sbyte2 eq $tbyte2 && $sbyte3 eq $tbyte3){
794 $hint=$Lang::tr{'fwdfw hint ip1'}."<br>";
795 $hint.=$Lang::tr{'fwdfw hint ip2'}." Source: $networkip1/$scidr Target: $networkip2/$tcidr<br>";
796 }
797 }else{
798 if ( &General::IpInSubnet($networkip2,$sip,&General::iporsubtodec($scidr)) ){
799 $errormessage.=$Lang::tr{'fwdfw err samesub'};
800 }
801 }
802 }
8013bd0a
AM
803 #check source and destination protocol if manual
804 if( $fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && $fwdfwsettings{'USESRV'} eq 'ON'){
805 if($fwdfwsettings{'PROT'} ne $fwdfwsettings{'TGT_PROT'} && $fwdfwsettings{'grp3'} eq 'TGT_PORT'){
806 $errormessage.=$Lang::tr{'fwdfw err prot'};
807 }
808 #check source and destination protocol if source manual and dest servicegrp
809 if ($fwdfwsettings{'grp3'} eq 'cust_srv'){
8013bd0a
AM
810 foreach my $key (sort keys %customservice){
811 if($customservice{$key}[0] eq $fwdfwsettings{$fwdfwsettings{'grp3'}}){
812 if ($customservice{$key}[2] ne $fwdfwsettings{'PROT'}){
813 $errormessage.=$Lang::tr{'fwdfw err prot'};
814 last;
815 }
816 }
817 }
818 }
819 }
820}
821sub checkcounter
822{
823 my ($base1,$val1,$base2,$val2) = @_;
824
825 if($base1 eq 'cust_net_src' || $base1 eq 'cust_net_tgt'){
826 &dec_counter($confignet,\%customnetwork,$val1);
827 }elsif($base1 eq 'cust_host_src' || $base1 eq 'cust_host_tgt'){
828 &dec_counter($confighost,\%customhost,$val1);
829 }elsif($base1 eq 'cust_grp_src' || $base1 eq 'cust_grp_tgt'){
830 &dec_counter($configgrp,\%customgrp,$val1);
831 }elsif($base1 eq 'cust_srv'){
832 &dec_counter($configsrv,\%customservice,$val1);
833 }elsif($base1 eq 'cust_srvgrp'){
834 &dec_counter($configsrvgrp,\%customservicegrp,$val1);
835 }
836
837 if($base2 eq 'cust_net_src' || $base2 eq 'cust_net_tgt'){
838 &inc_counter($confignet,\%customnetwork,$val2);
839 }elsif($base2 eq 'cust_host_src' || $base2 eq 'cust_host_tgt'){
840 &inc_counter($confighost,\%customhost,$val2);
841 }elsif($base2 eq 'cust_grp_src' || $base2 eq 'cust_grp_tgt'){
842 &inc_counter($configgrp,\%customgrp,$val2);
843 }elsif($base2 eq 'cust_srv'){
844 &inc_counter($configsrv,\%customservice,$val2);
845 }elsif($base2 eq 'cust_srvgrp'){
846 &inc_counter($configsrvgrp,\%customservicegrp,$val2);
847 }
931e1fed
AM
848}
849sub checkvpn
850{
851 my $ip=shift;
852 #Test if manual IP is part of static OpenVPN networks
853 &General::readhasharray("$configccdnet", \%ccdnet);
854 foreach my $key (sort keys %ccdnet){
855 my ($vpnip,$vpnsubnet) = split ("/",$ccdnet{$key}[1]);
856 my $sub=&General::iporsubtodec($vpnsubnet);
857 if (&General::IpInSubnet($ip,$vpnip,$sub)){
858 return 0;
859 }
860 }
861 # A Test if manual ip is part of dynamic openvpn subnet is made in getcolor
862 # because if one creates a custom host with the ip, we need to check the color there!
863 # It does not make sense to check this here
864
865 # Test if manual IP is part of an OpenVPN N2N subnet does also not make sense here
866 # Is also checked in getcolor
867
868 # Test if manual ip is part of an IPsec Network is also checked in getcolor
869 return 1;
870}
871sub checkvpncolor
872{
873
8013bd0a
AM
874}
875sub deleterule
876{
877 my %delhash=();
878 &General::readhasharray($fwdfwsettings{'config'}, \%delhash);
879 foreach my $key (sort {$a <=> $b} keys %delhash){
880 if ($key == $fwdfwsettings{'key'}){
881 #check hosts/net and groups
882 &checkcounter($delhash{$key}[3],$delhash{$key}[4],,);
883 &checkcounter($delhash{$key}[5],$delhash{$key}[6],,);
884 #check services and groups
885 if ($delhash{$key}[11] eq 'ON'){
886 &checkcounter($delhash{$key}[14],$delhash{$key}[15],,);
887 }
888 }
889 if ($key >= $fwdfwsettings{'key'}) {
890 my $next = $key + 1;
891 if (exists $delhash{$next}) {
892 foreach my $i (0 .. $#{$delhash{$next}}) {
893 $delhash{$key}[$i] = $delhash{$next}[$i];
894 }
895 }
896 }
897 }
898 # Remove the very last entry.
899 my $last_key = (sort {$a <=> $b} keys %delhash)[-1];
900 delete $delhash{$last_key};
901
902 &General::writehasharray($fwdfwsettings{'config'}, \%delhash);
903 &rules;
904
905 if($fwdfwsettings{'nobase'} ne 'on'){
906 &base;
907 }
908}
909sub disable_rule
910{
911 my $key1=shift;
912 &General::readhasharray("$configfwdfw", \%configfwdfw);
913 foreach my $key (sort keys %configfwdfw){
914 if ($key eq $key1 ){
915 if ($configfwdfw{$key}[2] eq 'ON'){$configfwdfw{$key}[2]='';}
916 }
917 }
918 &General::writehasharray("$configfwdfw", \%configfwdfw);
919 &rules;
920}
921sub dec_counter
922{
923 my $config=shift;
924 my %hash=%{(shift)};
925 my $val=shift;
926 my $pos;
8013bd0a
AM
927 &General::readhasharray($config, \%hash);
928 foreach my $key (sort { uc($hash{$a}[0]) cmp uc($hash{$b}[0]) } keys %hash){
929 if($hash{$key}[0] eq $val){
930 $pos=$#{$hash{$key}};
931 $hash{$key}[$pos] = $hash{$key}[$pos]-1;
932 }
933 }
934 &General::writehasharray($config, \%hash);
935}
936sub error
937{
938 if ($errormessage) {
939 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
940 print "<class name='base'>$errormessage\n";
941 print "&nbsp;</class>\n";
942 &Header::closebox();
943 print"<hr>";
944 }
945}
946sub fillselect
947{
948 my %hash=%{(shift)};
949 my $val=shift;
950 my $key;
eff2dbf8 951 foreach my $key (sort { ncmp($hash{$a}[0],$hash{$b}[0]) } keys %hash){
8013bd0a
AM
952 if($hash{$key}[0] eq $val){
953 print"<option value='$hash{$key}[0]' selected>$hash{$key}[0]</option>";
954 }else{
955 print"<option value='$hash{$key}[0]'>$hash{$key}[0]</option>";
956 }
957 }
958}
959sub gen_dd_block
960{
961 my $srctgt = shift;
962 my $grp=shift;
963 my $helper='';
964 my $show='';
965 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
966 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
967 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
968 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
969 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
970 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
971 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
972 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
973 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
974 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
975 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
976 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
977 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
978 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
979 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
980 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
981 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
a0fb1099 982 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
8013bd0a
AM
983 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
984print<<END;
985 <table width='100%' border='0'>
986 <tr><td width='50%' valign='top'>
987 <table width='100%' border='0'>
97e2e7b4 988 <tr><td width='1%'><input type='radio' name='$grp' value='std_net_$srctgt' $checked{$grp}{'std_net_'.$srctgt}></td><td>$Lang::tr{'fwhost stdnet'}</td><td align='right'><select name='std_net_$srctgt' style='width:200px;'>
8013bd0a
AM
989END
990 foreach my $network (sort keys %defaultNetworks)
991 {
223d3b1d 992 next if($defaultNetworks{$network}{'NAME'} eq "RED" && $srctgt eq 'src');
a0fb1099 993 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
8013bd0a
AM
994 print "<option value='$defaultNetworks{$network}{'NAME'}'";
995 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $defaultNetworks{$network}{'NAME'});
3b2ad4a1 996 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
a0fb1099
AM
997 $ifaces{$defnet}='0.0.0.0' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
998 if ($ifaces{$defnet}){
999 print ">$network ($ifaces{$defnet})</option>";
1000 }else{
1001 print ">$network</option>";
1002 }
8013bd0a
AM
1003 }
1004 print"</select></td></tr>";
1005 #custom networks
d9987841 1006 if (! -z $confignet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
97e2e7b4 1007 print"<tr><td><input type='radio' name='$grp' value='cust_net_$srctgt' $checked{$grp}{'cust_net_'.$srctgt}></td><td>$Lang::tr{'fwhost cust net'}</td><td align='right'><select name='cust_net_$srctgt' style='width:200px;'>";
8013bd0a
AM
1008 &fillselect(\%customnetwork,$fwdfwsettings{$fwdfwsettings{$grp}});
1009 print"</select></td>";
1010 }
1011 #custom hosts
d9987841 1012 if (! -z $confighost || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
97e2e7b4 1013 print"<tr><td><input type='radio' name='$grp' value='cust_host_$srctgt' $checked{$grp}{'cust_host_'.$srctgt}></td><td>$Lang::tr{'fwhost cust addr'}</td><td align='right'><select name='cust_host_$srctgt' style='width:200px;'>";
8013bd0a
AM
1014 &fillselect(\%customhost,$fwdfwsettings{$fwdfwsettings{$grp}});
1015 print"</select></td>";
1016 }
1017 #custom groups
d9987841 1018 if (! -z $configgrp || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
97e2e7b4 1019 print"<tr><td valign='top'><input type='radio' name='$grp' value='cust_grp_$srctgt' $checked{$grp}{'cust_grp_'.$srctgt}></td><td >$Lang::tr{'fwhost cust grp'}</td><td align='right'><select name='cust_grp_$srctgt' style='width:200px;'>";
eff2dbf8 1020 foreach my $key (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } keys %customgrp) {
8013bd0a
AM
1021 if($helper ne $customgrp{$key}[0]){
1022 print"<option ";
1023 print "selected='selected' " if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $customgrp{$key}[0]);
1024 print ">$customgrp{$key}[0]</option>";
1025 }
1026 $helper=$customgrp{$key}[0];
1027 }
1028 print"</select></td>";
1029 }
1030 #End left table. start right table (vpn)
1031 print"</tr></table></td><td valign='top'><table width='100%' border='0'><tr>";
1032 # CCD networks
d9987841 1033 if( ! -z $configccdnet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
97e2e7b4 1034 print"<td width='1%'><input type='radio' name='$grp' value='ovpn_net_$srctgt' $checked{$grp}{'ovpn_net_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdnet'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_net_$srctgt' style='width:200px;'>";
8013bd0a
AM
1035 &fillselect(\%ccdnet,$fwdfwsettings{$fwdfwsettings{$grp}});
1036 print"</select></td></tr>";
1037 }
1038 #OVPN CCD Hosts
eff2dbf8 1039 foreach my $key (sort { ncmp($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost){
d9987841 1040 if ($ccdhost{$key}[33] ne '' ){
97e2e7b4 1041 print"<tr><td width='1%'><input type='radio' name='$grp' value='ovpn_host_$srctgt' $checked{$grp}{'ovpn_host_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_host_$srctgt' style='width:200px;'>" if ($show eq '');
8013bd0a
AM
1042 $show='1';
1043 print "<option value='$ccdhost{$key}[1]'";
1044 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1045 print ">$ccdhost{$key}[1]</option>";
1046 }
1047 }
d9987841 1048 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
97e2e7b4 1049 print"<tr><td width='1%'><input type='radio' name='$grp' value='ovpn_host_$srctgt' $checked{$grp}{'ovpn_host_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_host_$srctgt' style='width:200px;'></select></td></tr>" ;
d9987841 1050 }
8013bd0a
AM
1051 if ($show eq '1'){$show='';print"</select></td></tr>";}
1052 #OVPN N2N
eff2dbf8 1053 foreach my $key (sort { ncmp($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost){
8013bd0a 1054 if ($ccdhost{$key}[3] eq 'net'){
97e2e7b4 1055 print"<tr><td width='1%'><input type='radio' name='$grp' value='ovpn_n2n_$srctgt' $checked{$grp}{'ovpn_n2n_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ovpn_n2n'}:</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_n2n_$srctgt' style='width:200px;'>" if ($show eq '');
d9987841 1056 $show='1';
8013bd0a
AM
1057 print "<option value='$ccdhost{$key}[1]'";
1058 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1059 print ">$ccdhost{$key}[1]</option>";
1060 }
1061 }
d9987841 1062 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
97e2e7b4 1063 print"<tr><td width='1%'><input type='radio' name='$grp' value='ovpn_n2n_$srctgt' $checked{$grp}{'ovpn_n2n_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ovpn_n2n'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_n2n_$srctgt' style='width:200px;'></select></td></tr>" ;
d9987841 1064 }
8013bd0a
AM
1065 if ($show eq '1'){$show='';print"</select></td></tr>";}
1066 #IPsec netze
eff2dbf8 1067 foreach my $key (sort { ncmp($ipsecconf{$a}[1],$ipsecconf{$b}[1]) } keys %ipsecconf) {
d9987841 1068 if ($ipsecconf{$key}[3] eq 'net' || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
97e2e7b4 1069 print"<tr><td valign='top'><input type='radio' name='$grp' value='ipsec_net_$srctgt' $checked{$grp}{'ipsec_net_'.$srctgt}></td><td >$Lang::tr{'fwhost ipsec net'}</td><td align='right'><select name='ipsec_net_$srctgt' style='width:200px;'>" if ($show eq '');
8013bd0a
AM
1070 $show='1';
1071 print "<option ";
1072 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ipsecconf{$key}[1]);
1073 print ">$ipsecconf{$key}[1]</option>";
1074 }
1075 }
d9987841 1076 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
97e2e7b4 1077 print"<tr><td valign='top'><input type='radio' name='$grp' value='ipsec_net_$srctgt' $checked{$grp}{'ipsec_net_'.$srctgt}></td><td >$Lang::tr{'fwhost ipsec net'}</td><td align='right'><select name='ipsec_net_$srctgt' style='width:200px;'><select></td></tr>";
d9987841 1078 }
8013bd0a
AM
1079 if ($show eq '1'){$show='';print"</select></td></tr>";}
1080
1081 print"</tr></table>";
1082 print"</td></tr></table><br>";
1083}
1084sub get_ip
1085{
1086 my $val=shift;
1087 my $grp =shift;
1088 my $a;
1089 my $b;
1090 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
1091 if ($fwdfwsettings{$grp} ne $Lang::tr{'fwhost any'}){
1092 if ($fwdfwsettings{$grp} eq $val.'_addr'){
1093 ($a,$b) = split (/\//, $fwdfwsettings{$fwdfwsettings{$grp}});
1094 }elsif($fwdfwsettings{$grp} eq 'std_net_'.$val){
1095 if ($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Gr/i){
1096 $a=$netsettings{'GREEN_NETADDRESS'};
1097 $b=&General::iporsubtocidr($netsettings{'GREEN_NETMASK'});
1098 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Ora/i){
1099 $a=$netsettings{'ORANGE_NETADDRESS'};
1100 $b=&General::iporsubtocidr($netsettings{'ORANGE_NETMASK'});
1101 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Bl/i){
1102 $a=$netsettings{'BLUE_NETADDRESS'};
1103 $b=&General::iporsubtocidr($netsettings{'BLUE_NETMASK'});
1104 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /OpenVPN/i){
1105 &General::readhash("$configovpn",\%ovpnsettings);
1106 ($a,$b) = split (/\//, $ovpnsettings{'DOVPN_SUBNET'});
1107 $b=&General::iporsubtocidr($b);
1108 }
1109 }elsif($fwdfwsettings{$grp} eq 'cust_net_'.$val){
1110 &General::readhasharray("$confignet", \%customnetwork);
1111 foreach my $key (keys %customnetwork){
1112 if($customnetwork{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1113 $a=$customnetwork{$key}[1];
1114 $b=&General::iporsubtocidr($customnetwork{$key}[2]);
1115 }
1116 }
1117 }elsif($fwdfwsettings{$grp} eq 'cust_host_'.$val){
1118 &General::readhasharray("$confighost", \%customhost);
1119 foreach my $key (keys %customhost){
1120 if($customhost{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1121 if ($customhost{$key}[1] eq 'ip'){
1122 ($a,$b)=split (/\//,$customhost{$key}[2]);
1123 $b=&General::iporsubtocidr($b);
1124 }else{
1125 if ($grp eq 'grp2'){
1126 $errormessage=$Lang::tr{'fwdfw err tgt_mac'};
1127 }
1128 }
1129 }
1130 }
1131 }
1132 }
1133 return $a,$b;
1134}
1135sub get_name
1136{
1137 my $val=shift;
1138 &General::setup_default_networks(\%defaultNetworks);
1139 foreach my $network (sort keys %defaultNetworks)
1140 {
1141 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
1142 }
1143}
1144sub getsrcport
1145{
1146 my %hash=%{(shift)};
1147 my $key=shift;
1148 if($hash{$key}[7] eq 'ON' && $hash{$key}[8] ne '' && $hash{$key}[10]){
1149 $hash{$key}[10]=~ s/\|/,/g;
1150 print": $hash{$key}[10]";
1151 }elsif($hash{$key}[7] eq 'ON' && $hash{$key}[8] eq 'ICMP'){
1152 print": <br>$hash{$key}[9] ";
1153 }
1154}
1155sub gettgtport
1156{
1157 my %hash=%{(shift)};
1158 my $key=shift;
1159 my $service;
1160 my $prot;
1161 if($hash{$key}[11] eq 'ON' && $hash{$key}[12] ne 'ICMP'){
1162 if($hash{$key}[14] eq 'cust_srv'){
1163 &General::readhasharray("$configsrv", \%customservice);
1164 foreach my $i (sort keys %customservice){
1165 if($customservice{$i}[0] eq $hash{$key}[15]){
1166 $service = $customservice{$i}[0];
1167 }
1168 }
1169 }elsif($hash{$key}[14] eq 'cust_srvgrp'){
1170 $service=$hash{$key}[15];
1171 }elsif($hash{$key}[14] eq 'TGT_PORT'){
1172 $hash{$key}[15]=~ s/\|/,/g;
1173 $service=$hash{$key}[15];
1174 }
1175 if($service){
1176 print": $service";
1177 }
1178 }elsif($hash{$key}[11] eq 'ON' && $hash{$key}[12] eq 'ICMP'){
1179 print":<br>$hash{$key}[13]";
1180 }
1181}
1182sub get_serviceports
1183{
1184 my $type=shift;
1185 my $name=shift;
1186 &General::readhasharray("$configsrv", \%customservice);
1187 &General::readhasharray("$configsrvgrp", \%customservicegrp);
8013bd0a
AM
1188 my $tcp;
1189 my $udp;
b3f4a4ef
AM
1190 my $icmp;
1191 @protocols=();
8013bd0a 1192 if($type eq 'service'){
eff2dbf8 1193 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
8013bd0a 1194 if ($customservice{$key}[0] eq $name){
b3f4a4ef 1195 push (@protocols,$customservice{$key}[2]);
8013bd0a
AM
1196 }
1197 }
1198 }elsif($type eq 'group'){
eff2dbf8 1199 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
8013bd0a 1200 if ($customservicegrp{$key}[0] eq $name){
eff2dbf8 1201 foreach my $key1 (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
8013bd0a 1202 if ($customservice{$key1}[0] eq $customservicegrp{$key}[2]){
b3f4a4ef
AM
1203 if($customservice{$key1}[2] eq 'TCP'){
1204 $tcp='TCP';
1205 }elsif($customservice{$key1}[2] eq 'ICMP'){
1206 $icmp='ICMP';
1207 }elsif($customservice{$key1}[2] eq 'UDP'){
1208 $udp='UDP';
1209 }
8013bd0a
AM
1210 }
1211 }
1212 }
1213 }
1214 }
b3f4a4ef
AM
1215 if($tcp && $udp && $icmp){
1216 push (@protocols,"All");
1217 return @protocols;
1218 }
1219 if($tcp){
1220 push (@protocols,"TCP");
1221 }
1222 if($udp){
1223 push (@protocols,"UDP");
1224 }
1225 if($icmp){
1226 push (@protocols,"ICMP");
1227 }
1228 return @protocols;
8013bd0a
AM
1229}
1230sub getcolor
1231{
1232 my $nettype=shift;
1233 my $val=shift;
1234 my $hash=shift;
1235 if($optionsfw{'SHOWCOLORS'} eq 'on'){
e3c58927
AM
1236 #standard networks
1237 if ($val eq 'GREEN'){
1238 $tdcolor="style='border: 1px solid $Header::colourgreen;'";
1239 return;
1240 }elsif ($val eq 'ORANGE'){
1241 $tdcolor="style='border: 1px solid $Header::colourorange;'";
1242 return;
1243 }elsif ($val eq 'BLUE'){
1244 $tdcolor="style='border: 1px solid $Header::colourblue;'";
1245 return;
05d4f131 1246 }elsif ($val eq 'RED' ||$val eq 'RED1' ){
e3c58927
AM
1247 $tdcolor="style='border: 1px solid $Header::colourred;'";
1248 return;
1249 }elsif ($val eq 'IPFire' ){
1250 $tdcolor="style='border: 1px solid $Header::colourred;'";
1251 return;
1252 }elsif($val =~ /^(.*?)\/(.*?)$/){
1253 my ($sip,$scidr) = split ("/",$val);
1254 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1255 $tdcolor="style='border: 1px solid $Header::colourorange;'";
1256 return;
1257 }
1258 if ( &General::IpInSubnet($sip,$netsettings{'GREEN_ADDRESS'},$netsettings{'GREEN_NETMASK'})){
1259 $tdcolor="style='border: 1px solid $Header::colourgreen;'";
1260 return;
1261 }
1262 if ( &General::IpInSubnet($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
1263 $tdcolor="style='border: 1px solid $Header::colourblue;'";
1264 return;
1265 }
1266 }elsif ($val eq 'Default IP'){
1267 $tdcolor="style='border: 1px solid $Header::colourred;'";
1268 return;
1269 }
931e1fed
AM
1270 #Check if a manual IP is part of a VPN
1271 if ($nettype eq 'src_addr' || $nettype eq 'tgt_addr'){
1272 #Check if IP is part of OpenVPN dynamic subnet
1273 my ($a,$b) = split("/",$ovpnsettings{'DOVPN_SUBNET'});
1274 my ($c,$d) = split("/",$val);
1275 if (&General::IpInSubnet($c,$a,$b)){
1276 $tdcolor="style='border: 1px solid $Header::colourovpn;'";
1277 return;
1278 }
d9b691e1
AM
1279 #Check if IP is part of OpenVPN static subnet
1280 foreach my $key (sort keys %ccdnet){
1281 my ($a,$b) = split("/",$ccdnet{$key}[1]);
1282 $b =&General::iporsubtodec($b);
1283 if (&General::IpInSubnet($c,$a,$b)){
1284 $tdcolor="style='border: 1px solid $Header::colourovpn;'";
1285 return;
1286 }
1287 }
1288 #Check if IP is part of OpenVPN N2N subnet
1289 foreach my $key (sort keys %ccdhost){
1290 if ($ccdhost{$key}[3] eq 'net'){
1291 my ($a,$b) = split("/",$ccdhost{$key}[11]);
1292 if (&General::IpInSubnet($c,$a,$b)){
1293 $tdcolor="style='border: 1px solid $Header::colourovpn;'";
1294 return;
1295 }
1296 }
1297 }
931e1fed
AM
1298 #Check if IP is part of IPsec RW network
1299 if ($ipsecsettings{'RW_NET'} ne ''){
1300 my ($a,$b) = split("/",$ipsecsettings{'RW_NET'});
1301 $b=&General::iporsubtodec($b);
1302 if (&General::IpInSubnet($c,$a,$b)){
1303 $tdcolor="style='border: 1px solid $Header::colourvpn;'";
1304 return;
1305 }
1306 }
1307 #Check if IP is part of a IPsec N2N network
1308 foreach my $key (sort keys %ipsecconf){
1309 my ($a,$b) = split("/",$ipsecconf{$key}[11]);
1310 if (&General::IpInSubnet($c,$a,$b)){
1311 $tdcolor="style='border: 1px solid $Header::colourvpn;'";
1312 return;
1313 }
1314 }
1315 }
8013bd0a
AM
1316 #VPN networks
1317 if ($nettype eq 'ovpn_n2n_src' || $nettype eq 'ovpn_n2n_tgt' || $nettype eq 'ovpn_net_src' || $nettype eq 'ovpn_net_tgt'|| $nettype eq 'ovpn_host_src' || $nettype eq 'ovpn_host_tgt'){
1318 $tdcolor="style='border: 1px solid $Header::colourovpn;'";
1319 return;
1320 }
1321 if ($nettype eq 'ipsec_net_src' || $nettype eq 'ipsec_net_tgt'){
1322 $tdcolor="style='border: 1px solid $Header::colourvpn;'";
1323 return;
1324 }
1325 #custom Hosts
1326 if ($nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){
1327 foreach my $key (sort keys %$hash){
1328 if ($$hash{$key}[0] eq $val){
1329 $val=$$hash{$key}[2];
1330 }
1331 }
1332 }
1333 #ALIASE
1334 foreach my $alias (sort keys %aliases)
1335 {
1336 if ($val eq $alias){
f2ab6fba 1337 $tdcolor="style='border: 1px solid $Header::colourred;'";
8013bd0a
AM
1338 return;
1339 }
1340 }
2a81ab0d 1341 }
e3c58927
AM
1342 $tdcolor='';
1343 return;
8013bd0a
AM
1344}
1345sub hint
1346{
1347 if ($hint) {
1348 &Header::openbox('100%', 'left', $Lang::tr{'fwhost hint'});
1349 print "<class name='base'>$hint\n";
1350 print "&nbsp;</class>\n";
1351 &Header::closebox();
1352 print"<hr>";
2a81ab0d 1353 }
2a81ab0d 1354}
8013bd0a 1355sub inc_counter
2a81ab0d 1356{
8013bd0a
AM
1357 my $config=shift;
1358 my %hash=%{(shift)};
2a81ab0d 1359 my $val=shift;
8013bd0a
AM
1360 my $pos;
1361
1362 &General::readhasharray($config, \%hash);
1363 foreach my $key (sort { uc($hash{$a}[0]) cmp uc($hash{$b}[0]) } keys %hash){
1364 if($hash{$key}[0] eq $val){
1365 $pos=$#{$hash{$key}};
1366 $hash{$key}[$pos] = $hash{$key}[$pos]+1;
2a81ab0d
AM
1367 }
1368 }
8013bd0a 1369 &General::writehasharray($config, \%hash);
2a81ab0d
AM
1370}
1371sub newrule
1372{
1373 &error;
1374 &General::setup_default_networks(\%defaultNetworks);
515863e2 1375 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
2a81ab0d
AM
1376 #read all configfiles
1377 &General::readhasharray("$configccdnet", \%ccdnet);
1378 &General::readhasharray("$confignet", \%customnetwork);
1379 &General::readhasharray("$configccdhost", \%ccdhost);
1380 &General::readhasharray("$confighost", \%customhost);
1381 &General::readhasharray("$configccdhost", \%ccdhost);
1382 &General::readhasharray("$configgrp", \%customgrp);
1383 &General::readhasharray("$configipsec", \%ipsecconf);
1384 &General::get_aliases(\%aliases);
2a81ab0d
AM
1385 my %checked=();
1386 my $helper;
2da264ec 1387 my $sum=0;
2a81ab0d
AM
1388 if($fwdfwsettings{'config'} eq ''){$fwdfwsettings{'config'}=$configfwdfw;}
1389 my $config=$fwdfwsettings{'config'};
1390 my %hash=();
2a81ab0d
AM
1391 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1392 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1393 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1394 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1395 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1396 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1397 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1398 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1399 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1400 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1401 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1402 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1403 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1404 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1405 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
a6edca5a 1406 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
2a81ab0d
AM
1407 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1408 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1409 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
a0fb1099 1410 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
2a81ab0d
AM
1411 #check if update and get values
1412 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on' && !$errormessage){
1413 &General::readhasharray("$config", \%hash);
1414 foreach my $key (sort keys %hash){
2da264ec 1415 $sum++;
2a81ab0d 1416 if ($key eq $fwdfwsettings{'key'}){
70d38e50 1417 $fwdfwsettings{'oldrulenumber'} = $fwdfwsettings{'key'};
2a81ab0d 1418 $fwdfwsettings{'RULE_ACTION'} = $hash{$key}[0];
2669161d 1419 $fwdfwsettings{'chain'} = $hash{$key}[1];
2a81ab0d
AM
1420 $fwdfwsettings{'ACTIVE'} = $hash{$key}[2];
1421 $fwdfwsettings{'grp1'} = $hash{$key}[3];
1422 $fwdfwsettings{$fwdfwsettings{'grp1'}} = $hash{$key}[4];
1423 $fwdfwsettings{'grp2'} = $hash{$key}[5];
1424 $fwdfwsettings{$fwdfwsettings{'grp2'}} = $hash{$key}[6];
1425 $fwdfwsettings{'USE_SRC_PORT'} = $hash{$key}[7];
1426 $fwdfwsettings{'PROT'} = $hash{$key}[8];
1427 $fwdfwsettings{'ICMP_TYPES'} = $hash{$key}[9];
1428 $fwdfwsettings{'SRC_PORT'} = $hash{$key}[10];
1429 $fwdfwsettings{'USESRV'} = $hash{$key}[11];
1430 $fwdfwsettings{'TGT_PROT'} = $hash{$key}[12];
1431 $fwdfwsettings{'ICMP_TGT'} = $hash{$key}[13];
1432 $fwdfwsettings{'grp3'} = $hash{$key}[14];
1433 $fwdfwsettings{$fwdfwsettings{'grp3'}} = $hash{$key}[15];
1434 $fwdfwsettings{'ruleremark'} = $hash{$key}[16];
1435 $fwdfwsettings{'LOG'} = $hash{$key}[17];
1436 $fwdfwsettings{'TIME'} = $hash{$key}[18];
1437 $fwdfwsettings{'TIME_MON'} = $hash{$key}[19];
1438 $fwdfwsettings{'TIME_TUE'} = $hash{$key}[20];
1439 $fwdfwsettings{'TIME_WED'} = $hash{$key}[21];
1440 $fwdfwsettings{'TIME_THU'} = $hash{$key}[22];
1441 $fwdfwsettings{'TIME_FRI'} = $hash{$key}[23];
1442 $fwdfwsettings{'TIME_SAT'} = $hash{$key}[24];
1443 $fwdfwsettings{'TIME_SUN'} = $hash{$key}[25];
1444 $fwdfwsettings{'TIME_FROM'} = $hash{$key}[26];
1445 $fwdfwsettings{'TIME_TO'} = $hash{$key}[27];
2669161d 1446 $fwdfwsettings{'USE_NAT'} = $hash{$key}[28];
a6edca5a 1447 $fwdfwsettings{'nat'} = $hash{$key}[31]; #changed order
2669161d 1448 $fwdfwsettings{$fwdfwsettings{'nat'}} = $hash{$key}[29];
a6edca5a 1449 $fwdfwsettings{'dnatport'} = $hash{$key}[30];
2a81ab0d
AM
1450 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1451 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1452 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1453 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1454 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1455 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1456 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1457 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1458 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1459 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1460 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1461 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1462 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1463 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1464 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
2669161d
AM
1465 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
1466 $checked{'nat'}{$fwdfwsettings{'nat'}} = 'CHECKED';
2a81ab0d
AM
1467 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1468 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1469 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
a0fb1099 1470 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
2669161d
AM
1471 $selected{'dnat'}{$fwdfwsettings{$fwdfwsettings{'nat'}}} ='selected';
1472 $selected{'snat'}{$fwdfwsettings{$fwdfwsettings{'nat'}}} ='selected';
2a81ab0d
AM
1473 }
1474 }
1475 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1476 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1477 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1478 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1479 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1480 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1481 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
02da9f7b 1482 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
2669161d 1483 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
8442c937 1484 $fwdfwsettings{'oldruletype'}=$fwdfwsettings{'chain'};
515863e2
AM
1485 #check if manual ip (source) is orange network
1486 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1487 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1488 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1489 $fwdfwsettings{'oldorange'} ='on';
1490 }
1491 }
2a81ab0d
AM
1492 }else{
1493 $fwdfwsettings{'ACTIVE'}='ON';
1494 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
515863e2
AM
1495 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1496 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1497 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1498 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1499 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1500 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1501 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
1502 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
2669161d 1503 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
515863e2
AM
1504 #check if manual ip (source) is orange network
1505 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1506 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1507 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1508 $fwdfwsettings{'oldorange'} ='on';
1509 }
1510 }
2a81ab0d 1511 }
2a81ab0d 1512 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw addrule'});
ed618226 1513 print "<form method='post'>";
2a81ab0d
AM
1514 &Header::closebox();
1515 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw source'});
2a81ab0d
AM
1516 #------SOURCE-------------------------------------------------------
1517 print<<END;
1518 <table width='100%' border='0'>
a0fb1099
AM
1519 <tr><td width='1%'><input type='radio' name='grp1' value='src_addr' checked></td><td width='60%'>$Lang::tr{'fwdfw sourceip'}<input type='TEXT' name='src_addr' value='$fwdfwsettings{'src_addr'}' size='16' maxlength='17'></td><td width='1%'><input type='radio' name='grp1' value='ipfire_src' $checked{'grp1'}{'ipfire'}></td><td><b>Firewall</b></td>
1520END
1521 print"<td align='right'><select name='ipfire_src' style='width:200px;'>";
1522 print "<option value='ALL' $selected{'ipfire'}{'ALL'}>$Lang::tr{'all'}</option>";
1523 print "<option value='GREEN' $selected{'ipfire'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
1524 print "<option value='ORANGE' $selected{'ipfire'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if $ifaces{'ORANGE_ADDRESS'};
1525 print "<option value='BLUE' $selected{'ipfire'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>" if $ifaces{'BLUE_ADDRESS'};
1526 print "<option value='RED1' $selected{'ipfire'}{'RED1'}>$Lang::tr{'red1'} ($ifaces{'RED_ADDRESS'})</option>" if $ifaces{'RED_ADDRESS'};
1527
1528 if (! -z "${General::swroot}/ethernet/aliases"){
1529 foreach my $alias (sort keys %aliases)
1530 {
1531 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1532 }
1533 }
1534 print<<END;
1535 </td></tr>
1536 <tr><td colspan='8'><hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; ' /></td></tr></table>
2a81ab0d 1537END
8013bd0a 1538 &gen_dd_block('src','grp1');
2a81ab0d 1539 print<<END;
2a81ab0d 1540 <tr><td colspan='8'><hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; ' /></td></tr></table>
2a81ab0d
AM
1541 <table width='100%' border='0'>
1542 <tr><td width='1%'><input type='checkbox' name='USE_SRC_PORT' value='ON' $checked{'USE_SRC_PORT'}{'ON'}></td><td width='51%' colspan='3'>$Lang::tr{'fwdfw use srcport'}</td>
1543 <td width='15%' nowrap='nowrap'>$Lang::tr{'fwdfw man port'}</td><td><select name='PROT'>
1544END
d1f01304 1545 foreach ("TCP","UDP","GRE","ESP","AH","ICMP")
2a81ab0d
AM
1546 {
1547 if ($_ eq $fwdfwsettings{'PROT'})
1548 {
1549 print"<option selected>$_</option>";
1550 }else{
1551 print"<option>$_</option>";
1552 }
1553 }
8f0b047b 1554 $fwdfwsettings{'SRC_PORT'}=~ s/\|/,/g;
2a81ab0d 1555 print<<END;
8f0b047b 1556 </select></td><td align='right'><input type='text' name='SRC_PORT' value='$fwdfwsettings{'SRC_PORT'}' maxlength='20' size='18' ></td></tr>
12a43202 1557 <tr><td></td><td></td><td></td><td></td><td nowrap='nowrap'>$Lang::tr{'fwhost icmptype'}</td><td colspan='2'><select name='ICMP_TYPES' style='width:230px;'>
2a81ab0d
AM
1558END
1559 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
1560 print"<option>All ICMP-Types</option>";
eff2dbf8 1561 foreach my $key (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) } keys %icmptypes){
2a81ab0d
AM
1562 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0]"){
1563 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1564 }else{
1565 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1566 }
1567 }
1568 print<<END;
5dd84c25 1569 </select></td></tr></table><br><hr>
2a81ab0d
AM
1570END
1571 &Header::closebox();
1572
1573 #---TARGET------------------------------------------------------
1574 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw target'});
1575 print<<END;
1576 <table width='100%' border='0'>
a0fb1099 1577 <tr><td width='1%'><input type='radio' name='grp2' value='tgt_addr' checked></td><td width='60%' nowrap='nowrap'>$Lang::tr{'fwdfw targetip'}<input type='TEXT' name='tgt_addr' value='$fwdfwsettings{'tgt_addr'}' size='16' maxlength='17'><td width='1%'><input type='radio' name='grp2' value='ipfire' $checked{'grp2'}{'ipfire'}></td><td><b>Firewall</b></td>
2a81ab0d 1578END
05d4f131 1579 print"<td align='right'><select name='ipfire' style='width:200px;'>";
a0fb1099
AM
1580 print "<option value='ALL' $selected{'ipfire'}{'ALL'}>$Lang::tr{'all'}</option>";
1581 print "<option value='GREEN' $selected{'ipfire'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
1582 print "<option value='ORANGE' $selected{'ipfire'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if $ifaces{'ORANGE_ADDRESS'};
1583 print "<option value='BLUE' $selected{'ipfire'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>" if $ifaces{'BLUE_ADDRESS'};
1584 print "<option value='RED1' $selected{'ipfire'}{'RED1'}>$Lang::tr{'red1'} ($ifaces{'RED_ADDRESS'})</option>" if $ifaces{'RED_ADDRESS'};
62fc8511 1585
05d4f131 1586 if (! -z "${General::swroot}/ethernet/aliases"){
bedb72f3
AM
1587 foreach my $alias (sort keys %aliases)
1588 {
1589 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1590 }
2a81ab0d 1591 }
2a81ab0d
AM
1592 print<<END;
1593 </td></tr>
8013bd0a 1594 <tr><td colspan='7'><hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; ' /></td></tr></table>
2a81ab0d 1595END
8013bd0a 1596 &gen_dd_block('tgt','grp2');
2a81ab0d 1597 print<<END;
a0fb1099 1598 <hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; '></hr><br>
2a81ab0d
AM
1599 <table width='100%' border='0'>
1600 <tr><td width='1%'><input type='checkbox' name='USESRV' value='ON' $checked{'USESRV'}{'ON'} ></td><td width='48%'>$Lang::tr{'fwdfw use srv'}</td><td width='1%'><input type='radio' name='grp3' value='cust_srv' checked></td><td nowrap='nowrap'>$Lang::tr{'fwhost cust service'}</td><td width='1%' colspan='2'><select name='cust_srv'style='min-width:230px;' >
1601END
1602 &General::readhasharray("$configsrv", \%customservice);
eff2dbf8 1603 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
2a81ab0d
AM
1604 print"<option ";
1605 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]);
1606 print"value='$customservice{$key}[0]'>$customservice{$key}[0]</option>";
1607 }
1608 print<<END;
1609 </select></td></tr>
12a43202 1610 <tr><td colspan='2'></td><td><input type='radio' name='grp3' value='cust_srvgrp' $checked{'grp3'}{'cust_srvgrp'}></td><td nowrap='nowrap'>$Lang::tr{'fwhost cust srvgrp'}:</td><td colspan='2'><select name='cust_srvgrp' style='min-width:230px;' >
2a81ab0d
AM
1611END
1612 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1613 my $helper;
eff2dbf8 1614 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
2a81ab0d
AM
1615 if ($helper ne $customservicegrp{$key}[0]){
1616 print"<option ";
1617 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservicegrp{$key}[0]);
1618 print">$customservicegrp{$key}[0]</option>";
1619 }
1620 $helper=$customservicegrp{$key}[0];
1621 }
1622 print<<END;
1623 </select></td></tr>
1624 <tr><td colspan='2'></td><td><input type='radio' name='grp3' value='TGT_PORT' $checked{'grp3'}{'TGT_PORT'}></td><td>$Lang::tr{'fwdfw man port'}</td><td><select name='TGT_PROT'>
1625END
d1f01304 1626 foreach ("TCP","UDP","GRE","ESP","AH","ICMP")
2a81ab0d
AM
1627 {
1628 if ($_ eq $fwdfwsettings{'TGT_PROT'})
1629 {
1630 print"<option selected>$_</option>";
1631 }else{
1632 print"<option>$_</option>";
1633 }
1634 }
8f0b047b 1635 $fwdfwsettings{'TGT_PORT'} =~ s/\|/,/g;
2a81ab0d 1636 print<<END;
8f0b047b 1637 </select></td><td align='right'><input type='text' name='TGT_PORT' value='$fwdfwsettings{'TGT_PORT'}' maxlength='20' size='18' ></td></tr>
12a43202 1638 <tr><td colspan='2'></td><td></td><td>$Lang::tr{'fwhost icmptype'}</td><td colspan='2'><select name='ICMP_TGT' style='min-width:230px;'>
2a81ab0d
AM
1639END
1640 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
1641 print"<option>All ICMP-Types</option>";
eff2dbf8 1642 foreach my $key (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
2a81ab0d
AM
1643 if($fwdfwsettings{'ICMP_TGT'} eq "$icmptypes{$key}[0]"){
1644 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1645 }else{
1646 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1647 }
1648 }
1649 print<<END;
1650 </select></td></tr>
5dd84c25 1651 </table><br><hr>
62fc8511 1652
2a81ab0d 1653END
5dd84c25 1654 &Header::closebox;
2669161d
AM
1655 #---SNAT / DNAT ------------------------------------------------
1656 &Header::openbox('100%', 'left', 'NAT');
1657 print<<END;
1658 <table width='100%' border='0'>
a6edca5a
AM
1659 <tr><td width='1%'><input type='checkbox' name='USE_NAT' value='ON' $checked{'USE_NAT'}{'ON'}></td><td width='15%'>$Lang::tr{'fwdfw use nat'}</td><td colspan='5'></td></tr>
1660 <tr><td colspan='2'></td><td width='1%'><input type='radio' name='nat' value='dnat' checked ></td><td width='50%'>$Lang::tr{'fwdfw dnat'}</td>
2669161d 1661END
93b75f31
AM
1662 print"<td width='8%'>IPFire: </td><td width='20%' align='right'><select name='dnat' style='width:140px;'>";
1663 print "<option value='ALL' $selected{'dnat'}{$Lang::tr{'all'}}>$Lang::tr{'all'}</option>";
1664 print "<option value='Default IP' $selected{'dnat'}{'Default IP'}>Default IP</option>";
1665 foreach my $alias (sort keys %aliases)
1666 {
1667 print "<option value='$alias' $selected{'dnat'}{$alias}>$alias</option>";
2669161d
AM
1668 }
1669 print"</td></tr>";
98cee89f 1670 $fwdfwsettings{'dnatport'}=~ tr/|/,/;
2669161d
AM
1671 print"<tr><td colspan='4'></td><td>Port: </td><td align='right'><input type='text' name='dnatport' style='width:130px;' value=$fwdfwsettings{'dnatport'}> </td></tr>";
1672 print"<tr><td colspan='8'><br></td></tr>";
1673 #SNAT
a6edca5a
AM
1674 print"<tr><td colspan='2'></td><td width='1%'><input type='radio' name='nat' value='snat' $checked{'nat'}{'snat'}></td><td width='20%'>$Lang::tr{'fwdfw snat'}</td>";
1675 print"<td width='8%'>IPFire: </td><td width='20%' align='right'><select name='snat' style='width:140px;'>";
2669161d
AM
1676 print "<option value='Default IP' $selected{'snat'}{'Default IP'}>Default IP</option>";
1677 foreach my $alias (sort keys %aliases)
1678 {
1679 print "<option value='$alias' $selected{'snat'}{$alias}>$alias</option>";
1680 }
1681 foreach my $network (sort keys %defaultNetworks)
1682 {
1683 next if($defaultNetworks{$network}{'NAME'} eq "RED");
1684 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1685 next if($defaultNetworks{$network}{'NAME'} eq "ALL");
a6edca5a 1686 next if($defaultNetworks{$network}{'NAME'} =~ /OpenVPN/i);
2669161d
AM
1687 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1688 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'nat'}} eq $defaultNetworks{$network}{'NAME'});
1689 print ">$network</option>";
1690 }
2669161d
AM
1691 print"</table>";
1692 print"<hr>";
1693 &Header::closebox();
2a81ab0d
AM
1694 #---Activate/logging/remark-------------------------------------
1695 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw additional'});
1696 print<<END;
1697 <table width='100%' border='0'>
bedb72f3 1698 <tr><td nowrap>$Lang::tr{'fwdfw rule action'}</td><td><select name='RULE_ACTION'>
2da264ec 1699END
bedb72f3
AM
1700 foreach ("ACCEPT","DROP","REJECT")
1701 {
1702 if($fwdfwsettings{'updatefwrule'} eq 'on'){
1703 print"<option value='$_'";
1704 print "selected='selected'" if ($fwdfwsettings{'RULE_ACTION'} eq $_);
1705 print">$Lang::tr{'fwdfw '.$_}</option>";
1706 }else{
1707 if($fwdfwsettings{'POLICY'} eq 'MODE2'){
1708 $fwdfwsettings{'RULE_ACTION'} = 'DROP';
1709 }
1710 if ($_ eq $fwdfwsettings{'RULE_ACTION'})
1711 {
f2ab6fba 1712 print"<option value='$_' selected>$Lang::tr{'fwdfw '.$_}</option>";
bedb72f3 1713 }else{
f2ab6fba 1714 print"<option value='$_'>$Lang::tr{'fwdfw '.$_}</option>";
bedb72f3
AM
1715 }
1716 }
1717 }
1718 print"</select></td></tr>";
a0fb1099
AM
1719 print"<tr><td width='100%'>$Lang::tr{'remark'}:</td><td align='left'><input type='text' name='ruleremark' size='78' maxlength='255' value='$fwdfwsettings{'ruleremark'}'></td></tr>";
1720 #print"<tr><td width='100%'>$Lang::tr{'remark'}:</td><td align='left'><textarea name='ruleremark' cols='70' rows='3' value='$fwdfwsettings{'ruleremark'}'></textarea></td></tr>";
2da264ec
AM
1721 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on'){
1722 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><select name='rulepos' >";
1723 for (my $count =1; $count <= $sum; $count++){
1724 print"<option value='$count' ";
1725 print"selected='selected'" if($fwdfwsettings{'oldrulenumber'} eq $count);
1726 print">$count</option>";
1727 }
1728 print"</select></td></tr>";
70d38e50
AM
1729 }else{
1730 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><input type='text' name='rulepos' size='2'></td></tr>";
2da264ec
AM
1731 }
1732
1733 print<<END;
1734 </table><table width='100%'>
2a81ab0d
AM
1735 <tr><td width='1%'><input type='checkbox' name='ACTIVE' value='ON' $checked{'ACTIVE'}{'ON'}></td><td>$Lang::tr{'fwdfw rule activate'}</td></tr>
1736 <tr><td width='1%'><input type='checkbox' name='LOG' value='ON' $checked{'LOG'}{'ON'} ></td><td>$Lang::tr{'fwdfw log rule'}</td></tr>
5dd84c25 1737 </table><br><hr>
2a81ab0d
AM
1738END
1739 &Header::closebox();
1740 #---ADD TIMEFRAME-----------------------------------------------
1741 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw timeframe'});
1742 print<<END;
1743 <table width='70%' border='0'>
1744 <tr><td width='1%'><input type='checkbox' name='TIME' value='ON' $checked{'TIME'}{'ON'}></td><td colspan='4'>$Lang::tr{'fwdfw timeframe'}</td></tr>
1745 <tr><td colspan='7'>&nbsp</td></tr>
1746 <tr>
1747 <td align='left'>$Lang::tr{'time'}:</td>
1748 <td width='30%' align='left'>$Lang::tr{'advproxy monday'} $Lang::tr{'advproxy tuesday'} $Lang::tr{'advproxy wednesday'} $Lang::tr{'advproxy thursday'} $Lang::tr{'advproxy friday'} $Lang::tr{'advproxy saturday'} $Lang::tr{'advproxy sunday'}</td>
2a81ab0d
AM
1749 <td width='15%' align='left'>$Lang::tr{'advproxy from'}</td>
1750 <td width='15%' align='left'>$Lang::tr{'advproxy to'}</td>
1751 </tr>
1752 <tr>
1753 <td align='right'></td>
1754 <td width='30%' align='left'>
1755 <input type='checkbox' name='TIME_MON' value='on' $checked{'TIME_MON'}{'on'} />
1756 <input type='checkbox' name='TIME_TUE' value='on' $checked{'TIME_TUE'}{'on'} />
1757 <input type='checkbox' name='TIME_WED' value='on' $checked{'TIME_WED'}{'on'} />
1758 <input type='checkbox' name='TIME_THU' value='on' $checked{'TIME_THU'}{'on'} />
1759 <input type='checkbox' name='TIME_FRI' value='on' $checked{'TIME_FRI'}{'on'} />
1760 <input type='checkbox' name='TIME_SAT' value='on' $checked{'TIME_SAT'}{'on'} />
27f4a6b1 1761 <input type='checkbox' name='TIME_SUN' value='on' $checked{'TIME_SUN'}{'on'} />
2a81ab0d 1762 </td>
2a81ab0d
AM
1763 <td><select name='TIME_FROM'>
1764END
1765 for (my $i=0;$i<=23;$i++) {
1766 $i = sprintf("%02s",$i);
1767 for (my $j=0;$j<=45;$j+=15) {
1768 $j = sprintf("%02s",$j);
1769 my $time = $i.":".$j;
1770 print "\t\t\t\t\t<option $selected{'TIME_FROM'}{$time}>$i:$j</option>\n";
1771 }
1772 }
1773 print<<END;
1774 </select></td>
1775 <td><select name='TIME_TO'>
1776END
1777 for (my $i=0;$i<=23;$i++) {
1778 $i = sprintf("%02s",$i);
1779 for (my $j=0;$j<=45;$j+=15) {
1780 $j = sprintf("%02s",$j);
1781 my $time = $i.":".$j;
1782 print "\t\t\t\t\t<option $selected{'TIME_TO'}{$time}>$i:$j</option>\n";
1783 }
1784 }
8013bd0a
AM
1785 print<<END;
1786 </select></td></tr>
1787 </table><br><hr>
1788END
1789 #---ACTION------------------------------------------------------
1790 if($fwdfwsettings{'updatefwrule'} ne 'on'){
1791 print<<END;
1792 <table border='0' width='100%'>
1793 <tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' />
1794 <input type='hidden' name='config' value='$config' >
1795 <input type='hidden' name='ACTION' value='saverule' >
1796 </form><form method='post' style='display:inline'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'><input type='hidden' name='ACTION' value'reset'></td></td>
1797 </table></form>
1798END
1799 }else{
1800 print<<END;
1801 <table border='0' width='100%'>
1802 <tr><td align='right'><input type='submit' value='$Lang::tr{'fwdfw change'}' style='min-width:100px;' /><input type='hidden' name='updatefwrule' value='$fwdfwsettings{'updatefwrule'}'><input type='hidden' name='key' value='$fwdfwsettings{'key'}'>
1803 <input type='hidden' name='oldgrp1a' value='$fwdfwsettings{'oldgrp1a'}' />
1804 <input type='hidden' name='oldgrp1b' value='$fwdfwsettings{'oldgrp1b'}' />
1805 <input type='hidden' name='oldgrp2a' value='$fwdfwsettings{'oldgrp2a'}' />
1806 <input type='hidden' name='oldgrp2b' value='$fwdfwsettings{'oldgrp2b'}' />
1807 <input type='hidden' name='oldgrp3a' value='$fwdfwsettings{'oldgrp3a'}' />
1808 <input type='hidden' name='oldgrp3b' value='$fwdfwsettings{'oldgrp3b'}' />
1809 <input type='hidden' name='oldusesrv' value='$fwdfwsettings{'oldusesrv'}' />
1810 <input type='hidden' name='oldrulenumber' value='$fwdfwsettings{'oldrulenumber'}' />
1811 <input type='hidden' name='rulenumber' value='$fwdfwsettings{'rulepos'}' />
1812 <input type='hidden' name='oldruleremark' value='$fwdfwsettings{'oldruleremark'}' />
1813 <input type='hidden' name='oldorange' value='$fwdfwsettings{'oldorange'}' />
2669161d
AM
1814 <input type='hidden' name='oldnat' value='$fwdfwsettings{'oldnat'}' />
1815 <input type='hidden' name='oldruletype' value='$fwdfwsettings{'oldruletype'}' />
8013bd0a
AM
1816 <input type='hidden' name='ACTION' value='saverule' ></form><form method='post' style='display:inline'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'><input type='hidden' name='ACTION' value'reset'></td></td>
1817 </table></form>
1818END
1819 }
1820 &Header::closebox();
1821}
1822sub pos_up
1823{
1824 my %uphash=();
1825 my %tmp=();
1826 &General::readhasharray($fwdfwsettings{'config'}, \%uphash);
1827 foreach my $key (sort keys %uphash){
1828 if ($key eq $fwdfwsettings{'key'}) {
1829 my $last = $key -1;
1830 if (exists $uphash{$last}){
1831 #save rule last
1832 foreach my $y (0 .. $#{$uphash{$last}}) {
1833 $tmp{0}[$y] = $uphash{$last}[$y];
1834 }
1835 #copy active rule to last
1836 foreach my $i (0 .. $#{$uphash{$last}}) {
1837 $uphash{$last}[$i] = $uphash{$key}[$i];
1838 }
1839 #copy saved rule to actual position
1840 foreach my $x (0 .. $#{$tmp{0}}) {
1841 $uphash{$key}[$x] = $tmp{0}[$x];
1842 }
1843 }
1844 }
1845 }
1846 &General::writehasharray($fwdfwsettings{'config'}, \%uphash);
1847 &rules;
1848}
1849sub pos_down
1850{
1851 my %downhash=();
1852 my %tmp=();
1853 &General::readhasharray($fwdfwsettings{'config'}, \%downhash);
1854 foreach my $key (sort keys %downhash){
1855 if ($key eq $fwdfwsettings{'key'}) {
1856 my $next = $key + 1;
1857 if (exists $downhash{$next}){
1858 #save rule next
1859 foreach my $y (0 .. $#{$downhash{$next}}) {
1860 $tmp{0}[$y] = $downhash{$next}[$y];
1861 }
1862 #copy active rule to next
1863 foreach my $i (0 .. $#{$downhash{$next}}) {
1864 $downhash{$next}[$i] = $downhash{$key}[$i];
1865 }
1866 #copy saved rule to actual position
1867 foreach my $x (0 .. $#{$tmp{0}}) {
1868 $downhash{$key}[$x] = $tmp{0}[$x];
1869 }
1870 }
1871 }
1872 }
1873 &General::writehasharray($fwdfwsettings{'config'}, \%downhash);
1874 &rules;
1875}
1876sub rules
1877{
1878 if (!-f "${General::swroot}/forward/reread"){
1879 system("touch ${General::swroot}/forward/reread");
1880 system("touch ${General::swroot}/fwhosts/reread");
1881 }
1882}
1883sub reread_rules
1884{
1885 system("/usr/local/bin/forwardfwctrl");
1886 if ( -f "${General::swroot}/forward/reread"){
1887 system("rm ${General::swroot}/forward/reread");
1888 system("rm ${General::swroot}/fwhosts/reread");
1889 }
2a81ab0d
AM
1890}
1891sub saverule
1892{
2a81ab0d
AM
1893 my $hash=shift;
1894 my $config=shift;
1895 &General::readhasharray("$config", $hash);
1896 if (!$errormessage){
2669161d 1897 ################################################################
2669161d 1898 #check if we change an INPUT rule to a OUTGOING
c12392c0 1899 if($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW' ){
2669161d 1900 &changerule($configinput);
c12392c0 1901 #print"1";
d7127db8 1902 }
8442c937 1903 #check if we change an INPUT rule to a FORWARD
2669161d
AM
1904 elsif($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
1905 &changerule($configinput);
c12392c0 1906 #print"2";
d7127db8 1907 }
2669161d
AM
1908 ################################################################
1909 #check if we change an OUTGOING rule to an INPUT
1910 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'INPUTFW' ){
1911 &changerule($configoutgoing);
c12392c0 1912 #print"3";
d7127db8 1913 }
8442c937 1914 #check if we change an OUTGOING rule to a FORWARD
2669161d 1915 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
d7127db8 1916 &changerule($configoutgoing);
c12392c0 1917 #print"4";
2669161d
AM
1918 }
1919 ################################################################
1920 #check if we change a FORWARD rule to an INPUT
1921 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'INPUTFW'){
1922 &changerule($configfwdfw);
c12392c0 1923 #print"5";
2669161d
AM
1924 }
1925 #check if we change a FORWARD rule to an OUTGOING
1926 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW'){
1927 &changerule($configfwdfw);
c12392c0 1928 #print"6";
2669161d 1929 }
2da264ec 1930 if ($fwdfwsettings{'updatefwrule'} ne 'on'){
2a81ab0d
AM
1931 my $key = &General::findhasharraykey ($hash);
1932 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
1933 $$hash{$key}[1] = $fwdfwsettings{'chain'};
1934 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
1935 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
1936 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
1937 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
1938 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
1939 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
1940 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
1941 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
1942 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
1943 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
1944 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
1945 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
1946 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
1947 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
1948 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
1949 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
1950 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
1951 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
1952 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
1953 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
1954 $$hash{$key}[22] = $fwdfwsettings{'TIME_THU'};
1955 $$hash{$key}[23] = $fwdfwsettings{'TIME_FRI'};
1956 $$hash{$key}[24] = $fwdfwsettings{'TIME_SAT'};
1957 $$hash{$key}[25] = $fwdfwsettings{'TIME_SUN'};
1958 $$hash{$key}[26] = $fwdfwsettings{'TIME_FROM'};
1959 $$hash{$key}[27] = $fwdfwsettings{'TIME_TO'};
c12392c0
AM
1960 $$hash{$key}[28] = $fwdfwsettings{'USE_NAT'};
1961 $$hash{$key}[29] = $fwdfwsettings{$fwdfwsettings{'nat'}};
1962 $$hash{$key}[30] = $fwdfwsettings{'dnatport'};
1963 $$hash{$key}[31] = $fwdfwsettings{'nat'};
2a81ab0d
AM
1964 &General::writehasharray("$config", $hash);
1965 }else{
e44fa079
AM
1966 foreach my $key (sort {$a <=> $b} keys %$hash){
1967 if($key eq $fwdfwsettings{'key'}){
1968 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
1969 $$hash{$key}[1] = $fwdfwsettings{'chain'};
1970 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
1971 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
1972 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
1973 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
1974 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
1975 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
1976 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
1977 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
1978 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
1979 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
1980 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
1981 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
1982 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
1983 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
1984 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
1985 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
1986 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
1987 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
1988 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
1989 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
1990 $$hash{$key}[22] = $fwdfwsettings{'TIME_THU'};
1991 $$hash{$key}[23] = $fwdfwsettings{'TIME_FRI'};
1992 $$hash{$key}[24] = $fwdfwsettings{'TIME_SAT'};
1993 $$hash{$key}[25] = $fwdfwsettings{'TIME_SUN'};
1994 $$hash{$key}[26] = $fwdfwsettings{'TIME_FROM'};
1995 $$hash{$key}[27] = $fwdfwsettings{'TIME_TO'};
c12392c0
AM
1996 $$hash{$key}[28] = $fwdfwsettings{'USE_NAT'};
1997 $$hash{$key}[29] = $fwdfwsettings{$fwdfwsettings{'nat'}};
1998 $$hash{$key}[30] = $fwdfwsettings{'dnatport'};
1999 $$hash{$key}[31] = $fwdfwsettings{'nat'};
e44fa079
AM
2000 last;
2001 }
2002 }
2003 }
2004 &General::writehasharray("$config", $hash);
0918e516 2005 if($fwdfwsettings{'oldrulenumber'} > $fwdfwsettings{'rulepos'}){
e44fa079
AM
2006 my %tmp=();
2007 my $val=$fwdfwsettings{'oldrulenumber'}-$fwdfwsettings{'rulepos'};
2008 for (my $z=0;$z<$val;$z++){
2009 foreach my $key (sort {$a <=> $b} keys %$hash){
2010 if ($key eq $fwdfwsettings{'oldrulenumber'}) {
2011 my $last = $key -1;
2012 if (exists $$hash{$last}){
2013 #save rule last
2014 foreach my $y (0 .. $#{$$hash{$last}}) {
2015 $tmp{0}[$y] = $$hash{$last}[$y];
2016 }
2017 #copy active rule to last
2018 foreach my $i (0 .. $#{$$hash{$last}}) {
2019 $$hash{$last}[$i] = $$hash{$key}[$i];
2020 }
2021 #copy saved rule to actual position
2022 foreach my $x (0 .. $#{$tmp{0}}) {
2023 $$hash{$key}[$x] = $tmp{0}[$x];
2da264ec
AM
2024 }
2025 }
2026 }
2027 }
e44fa079
AM
2028 $fwdfwsettings{'oldrulenumber'}--;
2029 }
2030 &General::writehasharray("$config", $hash);
2031 &rules;
0918e516 2032 }elsif($fwdfwsettings{'rulepos'} > $fwdfwsettings{'oldrulenumber'}){
e44fa079
AM
2033 my %tmp=();
2034 my $val=$fwdfwsettings{'rulepos'}-$fwdfwsettings{'oldrulenumber'};
2035 for (my $z=0;$z<$val;$z++){
2036 foreach my $key (sort {$a <=> $b} keys %$hash){
2037 if ($key eq $fwdfwsettings{'oldrulenumber'}) {
2038 my $next = $key + 1;
2039 if (exists $$hash{$next}){
2040 #save rule next
2041 foreach my $y (0 .. $#{$$hash{$next}}) {
2042 $tmp{0}[$y] = $$hash{$next}[$y];
2043 }
2044 #copy active rule to next
2045 foreach my $i (0 .. $#{$$hash{$next}}) {
2046 $$hash{$next}[$i] = $$hash{$key}[$i];
2047 }
2048 #copy saved rule to actual position
2049 foreach my $x (0 .. $#{$tmp{0}}) {
2050 $$hash{$key}[$x] = $tmp{0}[$x];
2da264ec
AM
2051 }
2052 }
2053 }
2a81ab0d 2054 }
e44fa079 2055 $fwdfwsettings{'oldrulenumber'}++;
2a81ab0d
AM
2056 }
2057 &General::writehasharray("$config", $hash);
e44fa079 2058 &rules;
2a81ab0d
AM
2059 }
2060 }
2061}
2a81ab0d
AM
2062sub validremark
2063{
2064 # Checks a hostname against RFC1035
2065 my $remark = $_[0];
2066
2067 # Each part should be at least two characters in length
2068 # but no more than 63 characters
d24a34cb 2069 if (length ($remark) < 1 || length ($remark) > 255) {
2a81ab0d
AM
2070 return 0;}
2071 # Only valid characters are a-z, A-Z, 0-9 and -
e3580608 2072 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s]*$/) {
2a81ab0d
AM
2073 return 0;}
2074 # First character can only be a letter or a digit
2075 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9]*$/) {
2076 return 0;}
2077 # Last character can only be a letter or a digit
e3580608 2078 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
2a81ab0d
AM
2079 return 0;}
2080 return 1;
2081}
2a81ab0d
AM
2082sub viewtablerule
2083{
15add1c8 2084 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
515863e2 2085 &viewtablenew(\%configfwdfw,$configfwdfw,"","Forward" );
ed618226 2086 &viewtablenew(\%configinputfw,$configinput,"",$Lang::tr{'fwdfw xt access'} );
4f3bd0ca 2087 &viewtablenew(\%configoutgoingfw,$configoutgoing,"","Outgoing" );
2a81ab0d
AM
2088}
2089sub viewtablenew
2090{
2091 my $hash=shift;
2092 my $config=shift;
2093 my $title=shift;
2094 my $title1=shift;
7bd9d462 2095 my $go='';
15add1c8 2096 &General::get_aliases(\%aliases);
af768a7e 2097 &General::readhasharray("$confighost", \%customhost);
7bd9d462 2098 &General::readhasharray("$config", $hash);
d9b691e1
AM
2099 &General::readhasharray("$configccdnet", \%ccdnet);
2100 &General::readhasharray("$configccdhost", \%ccdhost);
5d7faa45 2101 if( ! -z $config){
2a81ab0d
AM
2102 &Header::openbox('100%', 'left',$title);
2103 my $count=0;
2104 my ($gif,$log);
2105 my $ruletype;
2106 my $rulecolor;
2107 my $tooltip;
2108 my @tmpsrc=();
2109 my $coloryellow='';
2a81ab0d 2110 print"<b>$title1</b><br>";
533a2da3 2111 print"<table width='100%' cellspacing='0' cellpadding='0' border='0'>";
a0fb1099 2112 print"<tr><td align='center'><b>#</td><td></td><td align='center' width='25'></td><td align='center'><b>$Lang::tr{'fwdfw source'}</td><td width='1%'><b>Log</td><td align='center'><b>$Lang::tr{'fwdfw target'}</td><td align='center' colspan='6' width='1%'><b>$Lang::tr{'fwdfw action'}</td></tr>";
62fc8511 2113 foreach my $key (sort {$a <=> $b} keys %$hash){
12a43202 2114 $tdcolor='';
2a81ab0d
AM
2115 @tmpsrc=();
2116 #check if vpn hosts/nets have been deleted
2117 if($$hash{$key}[3] =~ /ipsec/i || $$hash{$key}[3] =~ /ovpn/i){
2118 push (@tmpsrc,$$hash{$key}[4]);
2119 }
2120 if($$hash{$key}[5] =~ /ipsec/i || $$hash{$key}[5] =~ /ovpn/i){
2121 push (@tmpsrc,$$hash{$key}[6]);
2122 }
2a81ab0d
AM
2123 foreach my $host (@tmpsrc){
2124 if($$hash{$key}[3] eq 'ipsec_net_src' || $$hash{$key}[5] eq 'ipsec_net_tgt'){
62fc8511 2125 if(&fwlib::get_ipsec_net_ip($host,11) eq ''){
2a81ab0d
AM
2126 $coloryellow='on';
2127 &disable_rule($key);
2128 $$hash{$key}[2]='';
2a81ab0d
AM
2129 }
2130 }elsif($$hash{$key}[3] eq 'ovpn_net_src' || $$hash{$key}[5] eq 'ovpn_net_tgt'){
2131 if(&fwlib::get_ovpn_net_ip($host,1) eq ''){
2132 $coloryellow='on';
2133 &disable_rule($key);
2134 $$hash{$key}[2]='';
2135 }
2136 }elsif($$hash{$key}[3] eq 'ovpn_n2n_src' || $$hash{$key}[5] eq 'ovpn_n2n_tgt'){
2137 if(&fwlib::get_ovpn_n2n_ip($host,27) eq ''){
2138 $coloryellow='on';
2139 &disable_rule($key);
2140 $$hash{$key}[2]='';
2141 }
2142 }elsif($$hash{$key}[3] eq 'ovpn_host_src' || $$hash{$key}[5] eq 'ovpn_host_tgt'){
2143 if(&fwlib::get_ovpn_host_ip($host,33) eq ''){
2144 $coloryellow='on';
2145 &disable_rule($key);
2146 $$hash{$key}[2]='';
2147 }
2148 }
2a81ab0d 2149 }
2a81ab0d
AM
2150 $$hash{'ACTIVE'}=$$hash{$key}[2];
2151 $count++;
2a81ab0d
AM
2152 if($coloryellow eq 'on'){
2153 print"<tr bgcolor='$color{'color14'}' >";
2154 $coloryellow='';
2155 }elsif($coloryellow eq ''){
2156 if ($count % 2){
15add1c8 2157 $color="$color{'color22'}";
2a81ab0d
AM
2158 }
2159 else{
15add1c8 2160 $color="$color{'color20'}";
2a81ab0d
AM
2161 }
2162 }
15add1c8 2163 print"<tr bgcolor='$color' >";
a0fb1099 2164 #KEY
2a81ab0d 2165 print<<END;
533a2da3 2166 <td align='right' width='18'><b>$key &nbsp</b></td>
2a81ab0d 2167END
a0fb1099 2168 #RULETYPE (A,R,D)
2a81ab0d
AM
2169 if ($$hash{$key}[0] eq 'ACCEPT'){
2170 $ruletype='A';
2171 $tooltip='ACCEPT';
2172 $rulecolor=$color{'color17'};
2173 }elsif($$hash{$key}[0] eq 'DROP'){
2174 $ruletype='D';
2175 $tooltip='DROP';
2176 $rulecolor=$color{'color25'};
2177 }elsif($$hash{$key}[0] eq 'REJECT'){
2178 $ruletype='R';
2179 $tooltip='REJECT';
2180 $rulecolor=$color{'color16'};
2181 }
533a2da3 2182 print"<td bgcolor='$rulecolor' align='center' width='10'><span title='$tooltip'><b>$ruletype</b></span></td>";
a0fb1099
AM
2183 #Get Protocol
2184 my $prot;
2185 if ($$hash{$key}[8] && $$hash{$key}[7] eq 'ON'){#source prot if manual
2186 push (@protocols,$$hash{$key}[8]);
2187 }elsif ($$hash{$key}[12]){ #target prot if manual
2188 push (@protocols,$$hash{$key}[12]);
2189 }elsif($$hash{$key}[14] eq 'cust_srv'){
2190 &get_serviceports("service",$$hash{$key}[15]);
2191 }elsif($$hash{$key}[14] eq 'cust_srvgrp'){
2192 &get_serviceports("group",$$hash{$key}[15]);
2193 }else{
2194 push (@protocols,$Lang::tr{'all'});
2195 }
2196 my $protz=join(",",@protocols);
2197 print"<td align='center'>$protz</td>";
2198 @protocols=();
2199 #SOURCE
af768a7e 2200 &getcolor($$hash{$key}[3],$$hash{$key}[4],\%customhost);
15add1c8 2201 print"<td align='center' width='160' $tdcolor>";
2a81ab0d
AM
2202 if ($$hash{$key}[3] eq 'std_net_src'){
2203 print &get_name($$hash{$key}[4]);
4f3bd0ca
AM
2204 }elsif ($$hash{$key}[3] eq 'src_addr'){
2205 my ($split1,$split2) = split("/",$$hash{$key}[4]);
2206 if ($split2 eq '32'){
2207 print $split1;
2208 }else{
2209 print $$hash{$key}[4];
2210 }
2a81ab0d
AM
2211 }else{
2212 print $$hash{$key}[4];
2213 }
15add1c8 2214 $tdcolor='';
a0fb1099 2215 #SOURCEPORT
2a81ab0d 2216 &getsrcport(\%$hash,$key);
2669161d 2217 #Is this a SNAT rule?
ac9e77e3 2218 if ($$hash{$key}[31] eq 'snat' && $$hash{$key}[28] eq 'ON'){
a0fb1099 2219 print"<br>->$$hash{$key}[29]";
2669161d
AM
2220 if ($$hash{$key}[30] ne ''){
2221 print": $$hash{$key}[30]";
2222 }
2223 }
2a81ab0d
AM
2224 if ($$hash{$key}[17] eq 'ON'){
2225 $log="/images/on.gif";
2226 }else{
2227 $log="/images/off.gif";
2228 }
a0fb1099 2229 #LOGGING
2a81ab0d
AM
2230 print<<END;
2231 </td>
2a81ab0d 2232 <form method='post'>
15add1c8 2233 <td align='left' width='25'><input type='image' img src='$log' alt='$Lang::tr{'click to disable'}' title='$Lang::tr{'fwdfw togglelog'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;'/>
2a81ab0d
AM
2234 <input type='hidden' name='key' value='$key' />
2235 <input type='hidden' name='config' value='$config' />
2236 <input type='hidden' name='ACTION' value='$Lang::tr{'fwdfw togglelog'}' />
2237 </td></form>
2238END
a0fb1099 2239 #TARGET
af768a7e 2240 &getcolor($$hash{$key}[5],$$hash{$key}[6],\%customhost);
2a81ab0d 2241 print<<END;
15add1c8 2242 <td align='center' width='160' $tdcolor>
2a81ab0d 2243END
2669161d 2244 #Is this a DNAT rule?
ac9e77e3 2245 if ($$hash{$key}[31] eq 'dnat' && $$hash{$key}[28] eq 'ON'){
a0fb1099 2246 print "Firewall ($$hash{$key}[29])";
a6edca5a 2247 if($$hash{$key}[30] ne ''){
98cee89f 2248 $$hash{$key}[30]=~ tr/|/,/;
a6edca5a 2249 print": $$hash{$key}[30]";
2669161d 2250 }
533a2da3 2251 print"<br>->";
2669161d 2252 }
05d4f131
AM
2253 if ($$hash{$key}[5] eq 'std_net_tgt' || $$hash{$key}[5] eq 'ipfire' && $$hash{$key}[6] eq 'RED' || $$hash{$key}[6] eq 'RED1' || $$hash{$key}[6] eq 'GREEN' || $$hash{$key}[6] eq 'ORANGE' || $$hash{$key}[6] eq 'BLUE' ){
2254 if ($$hash{$key}[6] eq 'RED1')
2255 {
2256 print $Lang::tr{'red1'};
2257 }else{
2258 print &get_name($$hash{$key}[6]);
2259 }
4f3bd0ca
AM
2260 }elsif ($$hash{$key}[5] eq 'tgt_addr'){
2261 my ($split1,$split2) = split("/",$$hash{$key}[6]);
2262 if ($split2 eq '32'){
2263 print $split1;
2264 }else{
2265 print $$hash{$key}[6];
2266 }
2a81ab0d
AM
2267 }else{
2268 print $$hash{$key}[6];
2269 }
12a43202 2270 $tdcolor='';
a0fb1099 2271 #TARGETPORT
2a81ab0d 2272 &gettgtport(\%$hash,$key);
93a5f4a5 2273 print"</td>";
a0fb1099 2274 #RULE ACTIVE
2a81ab0d
AM
2275 if($$hash{$key}[2] eq 'ON'){
2276 $gif="/images/on.gif"
2277
2278 }else{
2279 $gif="/images/off.gif"
2a81ab0d
AM
2280 }
2281 print<<END;
2282 <form method='post'>
15add1c8 2283 <td width='25'><input type='image' img src='$gif' alt='$Lang::tr{'click to disable'}' title='$Lang::tr{'fwdfw toggle'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2284 <input type='hidden' name='key' value='$key' />
2285 <input type='hidden' name='config' value='$config' />
2286 <input type='hidden' name='ACTION' value='$Lang::tr{'fwdfw toggle'}' />
2287 </td></form>
2a81ab0d 2288 <form method='post'>
15add1c8 2289 <td width='25' ><input type='image' img src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'fwdfw edit'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2290 <input type='hidden' name='key' value='$key' />
2291 <input type='hidden' name='config' value='$config' />
2292 <input type='hidden' name='ACTION' value='editrule' />
2293 </td></form></td>
2a81ab0d 2294 <form method='post'>
15add1c8 2295 <td width='25'><input type='image' img src='/images/addblue.gif' alt='$Lang::tr{'fwdfw copy'}' title='$Lang::tr{'fwdfw copy'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2296 <input type='hidden' name='key' value='$key' />
2297 <input type='hidden' name='config' value='$config' />
2298 <input type='hidden' name='ACTION' value='copyrule' />
2299 </td></form></td>
2a81ab0d 2300 <form method='post'>
15add1c8 2301 <td width='25' ><input type='image' img src='/images/delete.gif' alt='$Lang::tr{'delete'}' title='$Lang::tr{'fwdfw delete'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2302 <input type='hidden' name='key' value='$key' />
2303 <input type='hidden' name='config' value='$config' />
2304 <input type='hidden' name='ACTION' value='deleterule' />
2305 </td></form></td>
2306END
2307 if (exists $$hash{$key-1}){
2308 print<<END;
2309 <form method='post'>
15add1c8 2310 <td width='25'><input type='image' img src='/images/up.gif' alt='$Lang::tr{'fwdfw moveup'}' title='$Lang::tr{'fwdfw moveup'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2311 <input type='hidden' name='key' value='$key' />
2312 <input type='hidden' name='config' value='$config' />
2313 <input type='hidden' name='ACTION' value='moveup' />
2314 </td></form></td>
2315END
2316 }else{
15add1c8 2317 print"<td width='25'><input type='image' img src='/images/up.gif' style='visibility:hidden;'></td>";
2a81ab0d 2318 }
2a81ab0d
AM
2319 if (exists $$hash{$key+1}){
2320 print<<END;
2321 <form method='post'>
15add1c8 2322 <td width='25' ><input type='image' img src='/images/down.gif' alt='$Lang::tr{'fwdfw movedown'}' title='$Lang::tr{'fwdfw movedown'}' style='padding-top: 0px; padding-left: 0px; padding-bottom: 0px ;padding-right: 0px ;display: block;' />
2a81ab0d
AM
2323 <input type='hidden' name='key' value='$key' />
2324 <input type='hidden' name='config' value='$config' />
2325 <input type='hidden' name='ACTION' value='movedown' />
2326 </td></form></td></tr>
2327END
2328 }else{
15add1c8 2329 print"<td width='25'><input type='image' img src='/images/down.gif' style='visibility:hidden;'></td></tr>";
2a81ab0d 2330 }
15add1c8 2331 #REMARK
3b2ad4a1 2332 if ($optionsfw{'SHOWREMARK'} eq 'on' && $$hash{$key}[16] ne ''){
6ca0b0f5 2333 print"<tr bgcolor='$color'>";
3b2ad4a1
AM
2334 print"<td>&nbsp</td><td bgcolor='$rulecolor'></td><td colspan='10'>&nbsp $$hash{$key}[16]</td></tr>";
2335 }
2336 if ($$hash{$key}[18] eq 'ON'){
533a2da3
AM
2337 #TIMEFRAME
2338 if ($$hash{$key}[18] eq 'ON'){
2339 my @days=();
2340 if($$hash{$key}[19] ne ''){push (@days,$Lang::tr{'fwdfw wd_mon'});}
2341 if($$hash{$key}[20] ne ''){push (@days,$Lang::tr{'fwdfw wd_tue'});}
2342 if($$hash{$key}[21] ne ''){push (@days,$Lang::tr{'fwdfw wd_wed'});}
2343 if($$hash{$key}[22] ne ''){push (@days,$Lang::tr{'fwdfw wd_thu'});}
2344 if($$hash{$key}[23] ne ''){push (@days,$Lang::tr{'fwdfw wd_fri'});}
2345 if($$hash{$key}[24] ne ''){push (@days,$Lang::tr{'fwdfw wd_sat'});}
2346 if($$hash{$key}[25] ne ''){push (@days,$Lang::tr{'fwdfw wd_sun'});}
2347 my $weekdays=join(",",@days);
2348 if (@days){
3b2ad4a1 2349 print"<tr bgcolor='$color'>";
2af92cf5 2350 print"<td>&nbsp</td><td bgcolor='$rulecolor'></td><td align='left' colspan='10'>&nbsp $weekdays &nbsp $$hash{$key}[26] - $$hash{$key}[27] </td></tr>";
533a2da3 2351 }
3b2ad4a1 2352 }
96502a5a 2353 }
533a2da3 2354 print"<tr bgcolor='FFFFFF'><td colspan='13' height='1'></td></tr>";
2a81ab0d 2355 }
2af92cf5
AM
2356 my $col;
2357 if ($config eq '/var/ipfire/forward/config'){
2358 my $pol='fwdfw '.$fwdfwsettings{'POLICY'};
2359 if ($fwdfwsettings{'POLICY'} eq 'MODE1'){
2360 $col="bgcolor='darkred'";
2361 }else{
2362 $col="bgcolor='green'";
2363 }
2364 print"<tr><td colspan='13' $col align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{$pol}</font></td></tr>";
2365 }elsif ($config eq '/var/ipfire/forward/outgoing'){
2366 my $pol='fwdfw '.$fwdfwsettings{'POLICY1'};
2367 if ($fwdfwsettings{'POLICY1'} eq 'MODE1'){
2368 $col="bgcolor='darkred'";
2369 }else{
2370 $col="bgcolor='green'";
2371 }
2372 print"<tr><td colspan='13' $col align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{$pol}</font></td></tr>";
2373 }else{
2374 print"<tr><td colspan='13' bgcolor='darkred' align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{'fwdfw MODE1'}</font></td></tr>";
2375 }
2a81ab0d 2376 print"</table>";
12a43202 2377 print "<hr>";
515863e2 2378 print "<br><br>";
2af92cf5 2379 &Header::closebox();
515863e2
AM
2380 }else{
2381 if ($optionsfw{'SHOWTABLES'} eq 'on'){
2382 print "<b>$title1</b><br>";
2af92cf5
AM
2383 print"<table width='100%' border='0' rules='none'><tr><td height='30' bgcolor=$color{'color22'} align='center'>$Lang::tr{'fwhost empty'}</td></tr>";
2384 my $col;
2385 if ($config eq '/var/ipfire/forward/config'){
2386 my $pol='fwdfw '.$fwdfwsettings{'POLICY'};
2387 if ($fwdfwsettings{'POLICY'} eq 'MODE1'){
2388 $col="bgcolor='darkred'";
2389 }else{
2390 $col="bgcolor='green'";
2391 }
2392 print"<tr><td colspan='13' $col align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{$pol}</font></td></tr>";
2393 }elsif ($config eq '/var/ipfire/forward/outgoing'){
2394 my $pol='fwdfw '.$fwdfwsettings{'POLICY1'};
2395 if ($fwdfwsettings{'POLICY1'} eq 'MODE1'){
2396 $col="bgcolor='darkred'";
2397 }else{
2398 $col="bgcolor='green'";
2399 }
2400 print"<tr><td colspan='13' $col align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{$pol}</font></td></tr>";
2401 }else{
2402 print"<tr><td colspan='13' bgcolor='darkred' align='center'><font color='#FFFFFF'>$Lang::tr{'fwdfw final_rule'} $Lang::tr{'fwdfw MODE1'}</font></td></tr>";
2403 }
2404 print"</table><br><br>";
515863e2 2405 }
2a81ab0d 2406 }
2a81ab0d 2407}
2a81ab0d
AM
2408&Header::closebigbox();
2409&Header::closepage();