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