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