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