]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/firewall.cgi
Firewall: Now servicegroups and networkgroups can be renamed
[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'){
6b681c40 732 #if no 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'};}
bc912c6e 734 #check if port given in nat area is a single valid port or portrange
98cee89f 735 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'TGT_PORT'} ne '' && !&check_natport($fwdfwsettings{'dnatport'})){
a6edca5a 736 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
98cee89f 737 }elsif($fwdfwsettings{'USESRV'} eq 'ON' && $fwdfwsettings{'grp3'} eq 'cust_srv'){
a6edca5a
AM
738 my $custsrvport;
739 #get servcie Protocol and Port
740 foreach my $key (sort keys %customservice){
741 if($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]){
742 if ($customservice{$key}[2] ne 'TCP' && $customservice{$key}[2] ne 'UDP'){
743 $errormessage=$Lang::tr{'fwdfw target'}.": ".$Lang::tr{'fwdfw dnat porterr'}."<br>";
744 }
745 $custsrvport= $customservice{$key}[1];
746 }
747 }
748 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} eq ''){$fwdfwsettings{'dnatport'}=$custsrvport;}
749 }
98cee89f
AM
750 #check if DNAT port is multiple
751 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} ne ''){
752 my @parts=split(",",$fwdfwsettings{'dnatport'});
753 my @values=();
754 foreach (@parts){
755 chomp($_);
756 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
757 my $check;
758 #change dashes with :
759 $_=~ tr/-/:/;
760 if ($_ eq "*") {
761 push(@values,"1:65535");
762 $check='on';
763 }
764 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
765 push(@values,"1:$2");
766 $check='on';
767 }
768 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/) {
769 push(@values,"$1:65535");
770 $check='on'
771 }
772 $errormessage .= &General::validportrange($_, 'destination');
773 if(!$check){
774 push (@values,$_);
775 }
776 }else{
777 if (&General::validport($_)){
778 push (@values,$_);
779 }else{
780
781 }
782 }
783 }
784 $fwdfwsettings{'dnatport'}=join("|",@values);
785 }
ce2dbe92
AM
786 #check if a rule with prot tcp or udp and ports is edited and now prot is "all", then delete all ports
787 if($fwdfwsettings{'PROT'} eq ''){
788 $fwdfwsettings{'dnatport'}='';
789 }
a6edca5a 790 }
2a81ab0d
AM
791 #check valid remark
792 if ($fwdfwsettings{'ruleremark'} ne '' && !&validremark($fwdfwsettings{'ruleremark'})){
793 $errormessage.=$Lang::tr{'fwdfw err remark'}."<br>";
794 }
795 #check if source and target identical
27f4a6b1 796 if ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{$fwdfwsettings{'grp1'}} ne 'ALL'){
cb4439f3 797 $errormessage=$Lang::tr{'fwdfw err same'};
2a81ab0d
AM
798 return $errormessage;
799 }
2a81ab0d
AM
800 #get source and targetip address if possible
801 my ($sip,$scidr,$tip,$tcidr);
802 ($sip,$scidr)=&get_ip("src","grp1");
803 ($tip,$tcidr)=&get_ip("tgt","grp2");
2a81ab0d
AM
804 #check same iprange in source and target
805 if ($sip ne '' && $scidr ne '' && $tip ne '' && $tcidr ne ''){
2a81ab0d
AM
806 my $networkip1=&General::getnetworkip($sip,$scidr);
807 my $networkip2=&General::getnetworkip($tip,$tcidr);
808 if ($scidr gt $tcidr){
210ee67b 809 if ( &General::IpInSubnet($networkip1,$tip,&General::iporsubtodec($tcidr))){
2a81ab0d
AM
810 $errormessage.=$Lang::tr{'fwdfw err samesub'};
811 }
8013bd0a
AM
812 }elsif($scidr eq $tcidr && $scidr eq '32'){
813 my ($sbyte1,$sbyte2,$sbyte3,$sbyte4)=split(/\./,$networkip1);
814 my ($tbyte1,$tbyte2,$tbyte3,$tbyte4)=split(/\./,$networkip2);
815 if ($sbyte1 eq $tbyte1 && $sbyte2 eq $tbyte2 && $sbyte3 eq $tbyte3){
816 $hint=$Lang::tr{'fwdfw hint ip1'}."<br>";
817 $hint.=$Lang::tr{'fwdfw hint ip2'}." Source: $networkip1/$scidr Target: $networkip2/$tcidr<br>";
818 }
819 }else{
820 if ( &General::IpInSubnet($networkip2,$sip,&General::iporsubtodec($scidr)) ){
821 $errormessage.=$Lang::tr{'fwdfw err samesub'};
822 }
823 }
824 }
35ca8e02 825 #when icmp selected, no source and targetport allowed
79bb8c75 826 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
827 $errormessage.=$Lang::tr{'fwdfw err prot_port'};
828 return;
829 }
830 #change protocol if prot not equal dest single service
a4c7bf6b
AM
831 if ($fwdfwsettings{'grp3'} eq 'cust_srv'){
832 foreach my $key (sort keys %customservice){
833 if($customservice{$key}[0] eq $fwdfwsettings{$fwdfwsettings{'grp3'}}){
834 if ($customservice{$key}[2] ne $fwdfwsettings{'PROT'}){
835 $fwdfwsettings{'PROT'} = $customservice{$key}[2];
836 last;
8013bd0a
AM
837 }
838 }
839 }
840 }
a4c7bf6b
AM
841 #check source and destination protocol if source manual and dest servicegroup
842 if ($fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
843 $fwdfwsettings{'PROT'} = '';
72586f0f 844 }
a4c7bf6b 845 #ATTENTION: $fwdfwsetting{'TGT_PROT'} deprecated since 30.09.2013
fadcfb73 846 $fwdfwsettings{'TGT_PROT'}=''; #Set field empty (deprecated)
a4c7bf6b
AM
847 #Check ICMP Types
848 if ($fwdfwsettings{'PROT'} eq 'ICMP'){
849 $fwdfwsettings{'USE_SRC_PORT'}='';
850 $fwdfwsettings{'SRC_PORT'}='';
e6e9a811 851 #$fwdfwsettings{'USESRV'}='';
a4c7bf6b
AM
852 $fwdfwsettings{'TGT_PORT'}='';
853 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
854 foreach my $key (keys %icmptypes){
855 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0] ($icmptypes{$key}[1])"){
856 $fwdfwsettings{'ICMP_TYPES'}="$icmptypes{$key}[0]";
857 }
858 }
859 }elsif($fwdfwsettings{'PROT'} eq 'GRE'){
860 $fwdfwsettings{'USE_SRC_PORT'}='';
861 $fwdfwsettings{'SRC_PORT'}='';
862 $fwdfwsettings{'ICMP_TYPES'}='';
863 $fwdfwsettings{'USESRV'}='';
864 $fwdfwsettings{'TGT_PORT'}='';
865 }elsif($fwdfwsettings{'PROT'} eq 'ESP'){
866 $fwdfwsettings{'USE_SRC_PORT'}='';
867 $fwdfwsettings{'SRC_PORT'}='';
868 $fwdfwsettings{'ICMP_TYPES'}='';
869 $fwdfwsettings{'USESRV'}='';
870 $fwdfwsettings{'TGT_PORT'}='';
871 }elsif($fwdfwsettings{'PROT'} eq 'AH'){
872 $fwdfwsettings{'USE_SRC_PORT'}='';
873 $fwdfwsettings{'SRC_PORT'}='';
874 $fwdfwsettings{'ICMP_TYPES'}='';
875 $fwdfwsettings{'USESRV'}='';
876 $fwdfwsettings{'TGT_PORT'}='';
79bb8c75
AM
877 }elsif($fwdfwsettings{'PROT'} eq 'IGMP'){
878 $fwdfwsettings{'USE_SRC_PORT'}='';
879 $fwdfwsettings{'SRC_PORT'}='';
880 $fwdfwsettings{'ICMP_TYPES'}='';
881 $fwdfwsettings{'USESRV'}='';
882 $fwdfwsettings{'TGT_PORT'}='';
11760a70
AM
883 }elsif($fwdfwsettings{'PROT'} eq 'IPv6'){
884 $fwdfwsettings{'USE_SRC_PORT'}='';
885 $fwdfwsettings{'SRC_PORT'}='';
886 $fwdfwsettings{'ICMP_TYPES'}='';
887 $fwdfwsettings{'USESRV'}='';
888 $fwdfwsettings{'TGT_PORT'}='';
889 }elsif($fwdfwsettings{'PROT'} eq 'IPIP'){
890 $fwdfwsettings{'USE_SRC_PORT'}='';
891 $fwdfwsettings{'SRC_PORT'}='';
892 $fwdfwsettings{'ICMP_TYPES'}='';
893 $fwdfwsettings{'USESRV'}='';
894 $fwdfwsettings{'TGT_PORT'}='';
35ca8e02 895 }elsif($fwdfwsettings{'PROT'} ne 'TCP' && $fwdfwsettings{'PROT'} ne 'UDP'){
a4c7bf6b 896 $fwdfwsettings{'ICMP_TYPES'}='';
35ca8e02
AM
897 $fwdfwsettings{'SRC_PORT'}='';
898 $fwdfwsettings{'TGT_PORT'}='';
a4c7bf6b
AM
899 }elsif($fwdfwsettings{'PROT'} ne 'ICMP'){
900 $fwdfwsettings{'ICMP_TYPES'}='';
901 }
8013bd0a 902}
931e1fed
AM
903sub checkvpn
904{
905 my $ip=shift;
906 #Test if manual IP is part of static OpenVPN networks
907 &General::readhasharray("$configccdnet", \%ccdnet);
908 foreach my $key (sort keys %ccdnet){
909 my ($vpnip,$vpnsubnet) = split ("/",$ccdnet{$key}[1]);
910 my $sub=&General::iporsubtodec($vpnsubnet);
911 if (&General::IpInSubnet($ip,$vpnip,$sub)){
912 return 0;
913 }
914 }
915 # A Test if manual ip is part of dynamic openvpn subnet is made in getcolor
916 # because if one creates a custom host with the ip, we need to check the color there!
917 # It does not make sense to check this here
918
919 # Test if manual IP is part of an OpenVPN N2N subnet does also not make sense here
920 # Is also checked in getcolor
921
922 # Test if manual ip is part of an IPsec Network is also checked in getcolor
923 return 1;
924}
925sub checkvpncolor
926{
927
8013bd0a
AM
928}
929sub deleterule
930{
931 my %delhash=();
932 &General::readhasharray($fwdfwsettings{'config'}, \%delhash);
933 foreach my $key (sort {$a <=> $b} keys %delhash){
8013bd0a
AM
934 if ($key >= $fwdfwsettings{'key'}) {
935 my $next = $key + 1;
936 if (exists $delhash{$next}) {
937 foreach my $i (0 .. $#{$delhash{$next}}) {
938 $delhash{$key}[$i] = $delhash{$next}[$i];
939 }
940 }
941 }
942 }
943 # Remove the very last entry.
944 my $last_key = (sort {$a <=> $b} keys %delhash)[-1];
945 delete $delhash{$last_key};
946
947 &General::writehasharray($fwdfwsettings{'config'}, \%delhash);
0e430797 948 &General::firewall_config_changed();
8013bd0a
AM
949
950 if($fwdfwsettings{'nobase'} ne 'on'){
951 &base;
952 }
953}
954sub disable_rule
955{
956 my $key1=shift;
957 &General::readhasharray("$configfwdfw", \%configfwdfw);
958 foreach my $key (sort keys %configfwdfw){
959 if ($key eq $key1 ){
960 if ($configfwdfw{$key}[2] eq 'ON'){$configfwdfw{$key}[2]='';}
961 }
962 }
963 &General::writehasharray("$configfwdfw", \%configfwdfw);
0e430797 964 &General::firewall_config_changed();
8013bd0a 965}
8013bd0a
AM
966sub error
967{
968 if ($errormessage) {
969 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
970 print "<class name='base'>$errormessage\n";
971 print "&nbsp;</class>\n";
972 &Header::closebox();
973 print"<hr>";
974 }
975}
976sub fillselect
977{
978 my %hash=%{(shift)};
979 my $val=shift;
980 my $key;
eff2dbf8 981 foreach my $key (sort { ncmp($hash{$a}[0],$hash{$b}[0]) } keys %hash){
8013bd0a
AM
982 if($hash{$key}[0] eq $val){
983 print"<option value='$hash{$key}[0]' selected>$hash{$key}[0]</option>";
984 }else{
985 print"<option value='$hash{$key}[0]'>$hash{$key}[0]</option>";
986 }
987 }
988}
989sub gen_dd_block
990{
991 my $srctgt = shift;
992 my $grp=shift;
993 my $helper='';
994 my $show='';
995 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
996 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
997 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
998 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
999 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1000 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1001 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1002 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1003 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1004 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1005 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1006 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1007 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1008 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1009 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
1010 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1011 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
a0fb1099 1012 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
8013bd0a
AM
1013 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
1014print<<END;
1015 <table width='100%' border='0'>
1016 <tr><td width='50%' valign='top'>
1017 <table width='100%' border='0'>
b88c8829 1018 <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
1019END
1020 foreach my $network (sort keys %defaultNetworks)
1021 {
223d3b1d 1022 next if($defaultNetworks{$network}{'NAME'} eq "RED" && $srctgt eq 'src');
a0fb1099 1023 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
8013bd0a
AM
1024 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1025 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $defaultNetworks{$network}{'NAME'});
3b2ad4a1 1026 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
1a8fde0e
AM
1027 my $defsub="$defaultNetworks{$network}{'NAME'}_NETMASK";
1028 my $defsub1=&General::subtocidr($ifaces{$defsub});
7326051e 1029 $ifaces{$defnet}='' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
a0fb1099 1030 if ($ifaces{$defnet}){
1a8fde0e 1031 print ">$network ($ifaces{$defnet}/$defsub1)</option>";
a0fb1099
AM
1032 }else{
1033 print ">$network</option>";
1034 }
8013bd0a
AM
1035 }
1036 print"</select></td></tr>";
1037 #custom networks
d9987841 1038 if (! -z $confignet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
b88c8829 1039 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
1040 &fillselect(\%customnetwork,$fwdfwsettings{$fwdfwsettings{$grp}});
1041 print"</select></td>";
1042 }
1043 #custom hosts
d9987841 1044 if (! -z $confighost || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
b88c8829 1045 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
1046 &fillselect(\%customhost,$fwdfwsettings{$fwdfwsettings{$grp}});
1047 print"</select></td>";
1048 }
1049 #custom groups
d9987841 1050 if (! -z $configgrp || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
b88c8829 1051 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 1052 foreach my $key (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } keys %customgrp) {
8013bd0a
AM
1053 if($helper ne $customgrp{$key}[0]){
1054 print"<option ";
1055 print "selected='selected' " if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $customgrp{$key}[0]);
1056 print ">$customgrp{$key}[0]</option>";
1057 }
1058 $helper=$customgrp{$key}[0];
1059 }
1060 print"</select></td>";
1061 }
1062 #End left table. start right table (vpn)
1063 print"</tr></table></td><td valign='top'><table width='100%' border='0'><tr>";
1064 # CCD networks
d9987841 1065 if( ! -z $configccdnet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
b88c8829 1066 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
1067 &fillselect(\%ccdnet,$fwdfwsettings{$fwdfwsettings{$grp}});
1068 print"</select></td></tr>";
1069 }
1070 #OVPN CCD Hosts
eff2dbf8 1071 foreach my $key (sort { ncmp($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost){
d9987841 1072 if ($ccdhost{$key}[33] ne '' ){
b88c8829 1073 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
1074 $show='1';
1075 print "<option value='$ccdhost{$key}[1]'";
1076 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1077 print ">$ccdhost{$key}[1]</option>";
1078 }
1079 }
d9987841 1080 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
b88c8829 1081 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 1082 }
8013bd0a
AM
1083 if ($show eq '1'){$show='';print"</select></td></tr>";}
1084 #OVPN N2N
eff2dbf8 1085 foreach my $key (sort { ncmp($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost){
8013bd0a 1086 if ($ccdhost{$key}[3] eq 'net'){
b88c8829 1087 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 1088 $show='1';
8013bd0a
AM
1089 print "<option value='$ccdhost{$key}[1]'";
1090 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1091 print ">$ccdhost{$key}[1]</option>";
1092 }
1093 }
d9987841 1094 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
b88c8829 1095 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 1096 }
8013bd0a
AM
1097 if ($show eq '1'){$show='';print"</select></td></tr>";}
1098 #IPsec netze
eff2dbf8 1099 foreach my $key (sort { ncmp($ipsecconf{$a}[1],$ipsecconf{$b}[1]) } keys %ipsecconf) {
5558ca2a 1100 if ($ipsecconf{$key}[3] eq 'net' || ($optionsfw{'SHOWDROPDOWN'} eq 'on' && $ipsecconf{$key}[3] ne 'host')){
97e2e7b4 1101 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
1102 $show='1';
1103 print "<option ";
1104 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ipsecconf{$key}[1]);
1105 print ">$ipsecconf{$key}[1]</option>";
1106 }
1107 }
d9987841 1108 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
b88c8829 1109 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 1110 }
8013bd0a
AM
1111 if ($show eq '1'){$show='';print"</select></td></tr>";}
1112
b88c8829 1113 print"</table>";
8013bd0a
AM
1114 print"</td></tr></table><br>";
1115}
1116sub get_ip
1117{
1118 my $val=shift;
1119 my $grp =shift;
1120 my $a;
1121 my $b;
1122 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
1123 if ($fwdfwsettings{$grp} ne $Lang::tr{'fwhost any'}){
1124 if ($fwdfwsettings{$grp} eq $val.'_addr'){
1125 ($a,$b) = split (/\//, $fwdfwsettings{$fwdfwsettings{$grp}});
1126 }elsif($fwdfwsettings{$grp} eq 'std_net_'.$val){
1127 if ($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Gr/i){
1128 $a=$netsettings{'GREEN_NETADDRESS'};
1129 $b=&General::iporsubtocidr($netsettings{'GREEN_NETMASK'});
1130 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Ora/i){
1131 $a=$netsettings{'ORANGE_NETADDRESS'};
1132 $b=&General::iporsubtocidr($netsettings{'ORANGE_NETMASK'});
1133 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Bl/i){
1134 $a=$netsettings{'BLUE_NETADDRESS'};
1135 $b=&General::iporsubtocidr($netsettings{'BLUE_NETMASK'});
1136 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /OpenVPN/i){
1137 &General::readhash("$configovpn",\%ovpnsettings);
1138 ($a,$b) = split (/\//, $ovpnsettings{'DOVPN_SUBNET'});
1139 $b=&General::iporsubtocidr($b);
1140 }
1141 }elsif($fwdfwsettings{$grp} eq 'cust_net_'.$val){
1142 &General::readhasharray("$confignet", \%customnetwork);
1143 foreach my $key (keys %customnetwork){
1144 if($customnetwork{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1145 $a=$customnetwork{$key}[1];
1146 $b=&General::iporsubtocidr($customnetwork{$key}[2]);
1147 }
1148 }
1149 }elsif($fwdfwsettings{$grp} eq 'cust_host_'.$val){
1150 &General::readhasharray("$confighost", \%customhost);
1151 foreach my $key (keys %customhost){
1152 if($customhost{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1153 if ($customhost{$key}[1] eq 'ip'){
1154 ($a,$b)=split (/\//,$customhost{$key}[2]);
1155 $b=&General::iporsubtocidr($b);
1156 }else{
1157 if ($grp eq 'grp2'){
1158 $errormessage=$Lang::tr{'fwdfw err tgt_mac'};
1159 }
1160 }
1161 }
1162 }
1163 }
1164 }
1165 return $a,$b;
1166}
1167sub get_name
1168{
1169 my $val=shift;
1170 &General::setup_default_networks(\%defaultNetworks);
1171 foreach my $network (sort keys %defaultNetworks)
1172 {
1173 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
1174 }
1175}
1176sub getsrcport
1177{
1178 my %hash=%{(shift)};
1179 my $key=shift;
a4c7bf6b 1180 if($hash{$key}[7] eq 'ON' && $hash{$key}[10]){
8013bd0a
AM
1181 $hash{$key}[10]=~ s/\|/,/g;
1182 print": $hash{$key}[10]";
1183 }elsif($hash{$key}[7] eq 'ON' && $hash{$key}[8] eq 'ICMP'){
1184 print": <br>$hash{$key}[9] ";
1185 }
1186}
1187sub gettgtport
1188{
1189 my %hash=%{(shift)};
1190 my $key=shift;
1191 my $service;
1192 my $prot;
1193 if($hash{$key}[11] eq 'ON' && $hash{$key}[12] ne 'ICMP'){
1194 if($hash{$key}[14] eq 'cust_srv'){
1195 &General::readhasharray("$configsrv", \%customservice);
1196 foreach my $i (sort keys %customservice){
1197 if($customservice{$i}[0] eq $hash{$key}[15]){
1198 $service = $customservice{$i}[0];
1199 }
1200 }
1201 }elsif($hash{$key}[14] eq 'cust_srvgrp'){
1202 $service=$hash{$key}[15];
1203 }elsif($hash{$key}[14] eq 'TGT_PORT'){
1204 $hash{$key}[15]=~ s/\|/,/g;
1205 $service=$hash{$key}[15];
1206 }
1207 if($service){
1208 print": $service";
1209 }
8013bd0a
AM
1210 }
1211}
1212sub get_serviceports
1213{
1214 my $type=shift;
1215 my $name=shift;
1216 &General::readhasharray("$configsrv", \%customservice);
1217 &General::readhasharray("$configsrvgrp", \%customservicegrp);
8013bd0a
AM
1218 my $tcp;
1219 my $udp;
b3f4a4ef
AM
1220 my $icmp;
1221 @protocols=();
8013bd0a 1222 if($type eq 'service'){
eff2dbf8 1223 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
8013bd0a 1224 if ($customservice{$key}[0] eq $name){
b3f4a4ef 1225 push (@protocols,$customservice{$key}[2]);
8013bd0a
AM
1226 }
1227 }
1228 }elsif($type eq 'group'){
eff2dbf8 1229 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
8013bd0a 1230 if ($customservicegrp{$key}[0] eq $name){
eff2dbf8 1231 foreach my $key1 (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
8013bd0a 1232 if ($customservice{$key1}[0] eq $customservicegrp{$key}[2]){
b3f4a4ef
AM
1233 if($customservice{$key1}[2] eq 'TCP'){
1234 $tcp='TCP';
1235 }elsif($customservice{$key1}[2] eq 'ICMP'){
1236 $icmp='ICMP';
1237 }elsif($customservice{$key1}[2] eq 'UDP'){
1238 $udp='UDP';
1239 }
8013bd0a
AM
1240 }
1241 }
1242 }
1243 }
1244 }
b3f4a4ef 1245 if($tcp && $udp && $icmp){
e6e9a811 1246 push (@protocols,"TCP,UDP, <br>ICMP");
b3f4a4ef
AM
1247 return @protocols;
1248 }
1249 if($tcp){
1250 push (@protocols,"TCP");
1251 }
1252 if($udp){
1253 push (@protocols,"UDP");
1254 }
1255 if($icmp){
1256 push (@protocols,"ICMP");
1257 }
1258 return @protocols;
8013bd0a
AM
1259}
1260sub getcolor
1261{
1262 my $nettype=shift;
1263 my $val=shift;
1264 my $hash=shift;
1265 if($optionsfw{'SHOWCOLORS'} eq 'on'){
b119578f
AM
1266 #custom Hosts
1267 if ($nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){
1268 foreach my $key (sort keys %$hash){
1269 if ($$hash{$key}[0] eq $val){
1270 $val=$$hash{$key}[2];
1271 }
1272 }
1273 }
e3c58927
AM
1274 #standard networks
1275 if ($val eq 'GREEN'){
43215686 1276 $tdcolor="style='background-color: $Header::colourgreen;color:white;'";
e3c58927
AM
1277 return;
1278 }elsif ($val eq 'ORANGE'){
43215686 1279 $tdcolor="style='background-color: $Header::colourorange;color:white;'";
e3c58927
AM
1280 return;
1281 }elsif ($val eq 'BLUE'){
43215686 1282 $tdcolor="style='background-color: $Header::colourblue;color:white;'";
e3c58927 1283 return;
05d4f131 1284 }elsif ($val eq 'RED' ||$val eq 'RED1' ){
43215686 1285 $tdcolor="style='background-color: $Header::colourred;color:white;'";
e3c58927
AM
1286 return;
1287 }elsif ($val eq 'IPFire' ){
43215686 1288 $tdcolor="style='background-color: $Header::colourred;color:white;'";
e3c58927 1289 return;
d8afe3e2
AM
1290 }elsif ($val eq 'OpenVPN-Dyn' ){
1291 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1292 return;
1293 }elsif ($val eq 'IPsec RW' ){
1294 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
1295 return;
e3c58927
AM
1296 }elsif($val =~ /^(.*?)\/(.*?)$/){
1297 my ($sip,$scidr) = split ("/",$val);
1298 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
43215686 1299 $tdcolor="style='background-color: $Header::colourorange;color:white;'";
e3c58927
AM
1300 return;
1301 }
1302 if ( &General::IpInSubnet($sip,$netsettings{'GREEN_ADDRESS'},$netsettings{'GREEN_NETMASK'})){
43215686 1303 $tdcolor="style='background-color: $Header::colourgreen;color:white;'";
e3c58927
AM
1304 return;
1305 }
1306 if ( &General::IpInSubnet($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
43215686 1307 $tdcolor="style='background-color: $Header::colourblue;color:white;'";
e3c58927
AM
1308 return;
1309 }
1310 }elsif ($val eq 'Default IP'){
43215686 1311 $tdcolor="style='background-color: $Header::colourred;color:white;'";
e3c58927
AM
1312 return;
1313 }
b119578f
AM
1314 #Check if a manual IP or custom host is part of a VPN
1315 if ($nettype eq 'src_addr' || $nettype eq 'tgt_addr' || $nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){
931e1fed
AM
1316 #Check if IP is part of OpenVPN dynamic subnet
1317 my ($a,$b) = split("/",$ovpnsettings{'DOVPN_SUBNET'});
1318 my ($c,$d) = split("/",$val);
1319 if (&General::IpInSubnet($c,$a,$b)){
43215686 1320 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
931e1fed
AM
1321 return;
1322 }
d9b691e1
AM
1323 #Check if IP is part of OpenVPN static subnet
1324 foreach my $key (sort keys %ccdnet){
1325 my ($a,$b) = split("/",$ccdnet{$key}[1]);
1326 $b =&General::iporsubtodec($b);
1327 if (&General::IpInSubnet($c,$a,$b)){
43215686 1328 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
d9b691e1
AM
1329 return;
1330 }
1331 }
1332 #Check if IP is part of OpenVPN N2N subnet
1333 foreach my $key (sort keys %ccdhost){
1334 if ($ccdhost{$key}[3] eq 'net'){
1335 my ($a,$b) = split("/",$ccdhost{$key}[11]);
1336 if (&General::IpInSubnet($c,$a,$b)){
43215686 1337 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
d9b691e1
AM
1338 return;
1339 }
1340 }
1341 }
931e1fed
AM
1342 #Check if IP is part of IPsec RW network
1343 if ($ipsecsettings{'RW_NET'} ne ''){
1344 my ($a,$b) = split("/",$ipsecsettings{'RW_NET'});
1345 $b=&General::iporsubtodec($b);
1346 if (&General::IpInSubnet($c,$a,$b)){
43215686 1347 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
931e1fed
AM
1348 return;
1349 }
1350 }
1351 #Check if IP is part of a IPsec N2N network
1352 foreach my $key (sort keys %ipsecconf){
1353 my ($a,$b) = split("/",$ipsecconf{$key}[11]);
1354 if (&General::IpInSubnet($c,$a,$b)){
43215686 1355 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
931e1fed
AM
1356 return;
1357 }
1358 }
1359 }
8013bd0a
AM
1360 #VPN networks
1361 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 1362 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
8013bd0a
AM
1363 return;
1364 }
1365 if ($nettype eq 'ipsec_net_src' || $nettype eq 'ipsec_net_tgt'){
43215686 1366 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
8013bd0a
AM
1367 return;
1368 }
8013bd0a
AM
1369 #ALIASE
1370 foreach my $alias (sort keys %aliases)
1371 {
1372 if ($val eq $alias){
43215686 1373 $tdcolor="style='background-color:$Header::colourred;color:white;'";
8013bd0a
AM
1374 return;
1375 }
1376 }
2a81ab0d 1377 }
e3c58927
AM
1378 $tdcolor='';
1379 return;
8013bd0a
AM
1380}
1381sub hint
1382{
1383 if ($hint) {
1384 &Header::openbox('100%', 'left', $Lang::tr{'fwhost hint'});
1385 print "<class name='base'>$hint\n";
1386 print "&nbsp;</class>\n";
1387 &Header::closebox();
1388 print"<hr>";
2a81ab0d 1389 }
2a81ab0d 1390}
8013bd0a 1391sub inc_counter
2a81ab0d 1392{
8013bd0a
AM
1393 my $config=shift;
1394 my %hash=%{(shift)};
2a81ab0d 1395 my $val=shift;
8013bd0a
AM
1396 my $pos;
1397
1398 &General::readhasharray($config, \%hash);
1399 foreach my $key (sort { uc($hash{$a}[0]) cmp uc($hash{$b}[0]) } keys %hash){
1400 if($hash{$key}[0] eq $val){
1401 $pos=$#{$hash{$key}};
1402 $hash{$key}[$pos] = $hash{$key}[$pos]+1;
2a81ab0d
AM
1403 }
1404 }
8013bd0a 1405 &General::writehasharray($config, \%hash);
2a81ab0d
AM
1406}
1407sub newrule
1408{
1409 &error;
1410 &General::setup_default_networks(\%defaultNetworks);
515863e2 1411 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
2a81ab0d
AM
1412 #read all configfiles
1413 &General::readhasharray("$configccdnet", \%ccdnet);
1414 &General::readhasharray("$confignet", \%customnetwork);
1415 &General::readhasharray("$configccdhost", \%ccdhost);
1416 &General::readhasharray("$confighost", \%customhost);
1417 &General::readhasharray("$configccdhost", \%ccdhost);
1418 &General::readhasharray("$configgrp", \%customgrp);
1419 &General::readhasharray("$configipsec", \%ipsecconf);
1420 &General::get_aliases(\%aliases);
2a81ab0d
AM
1421 my %checked=();
1422 my $helper;
2da264ec 1423 my $sum=0;
2a81ab0d
AM
1424 if($fwdfwsettings{'config'} eq ''){$fwdfwsettings{'config'}=$configfwdfw;}
1425 my $config=$fwdfwsettings{'config'};
1426 my %hash=();
43d8be09 1427 #Get Red IP-ADDRESS
1428 open (CONN1,"/var/ipfire/red/local-ipaddress");
1429 my $redip = <CONN1>;
1430 close(CONN1);
2a81ab0d
AM
1431 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1432 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1433 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1434 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1435 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1436 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1437 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1438 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1439 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1440 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1441 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1442 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1443 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1444 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1445 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
a6edca5a 1446 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
2a81ab0d
AM
1447 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1448 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1449 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
43d8be09 1450 $selected{'ipfire_src'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
2a81ab0d
AM
1451 #check if update and get values
1452 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on' && !$errormessage){
1453 &General::readhasharray("$config", \%hash);
1454 foreach my $key (sort keys %hash){
2da264ec 1455 $sum++;
2a81ab0d 1456 if ($key eq $fwdfwsettings{'key'}){
70d38e50 1457 $fwdfwsettings{'oldrulenumber'} = $fwdfwsettings{'key'};
2a81ab0d 1458 $fwdfwsettings{'RULE_ACTION'} = $hash{$key}[0];
2669161d 1459 $fwdfwsettings{'chain'} = $hash{$key}[1];
2a81ab0d
AM
1460 $fwdfwsettings{'ACTIVE'} = $hash{$key}[2];
1461 $fwdfwsettings{'grp1'} = $hash{$key}[3];
1462 $fwdfwsettings{$fwdfwsettings{'grp1'}} = $hash{$key}[4];
1463 $fwdfwsettings{'grp2'} = $hash{$key}[5];
1464 $fwdfwsettings{$fwdfwsettings{'grp2'}} = $hash{$key}[6];
1465 $fwdfwsettings{'USE_SRC_PORT'} = $hash{$key}[7];
1466 $fwdfwsettings{'PROT'} = $hash{$key}[8];
1467 $fwdfwsettings{'ICMP_TYPES'} = $hash{$key}[9];
1468 $fwdfwsettings{'SRC_PORT'} = $hash{$key}[10];
1469 $fwdfwsettings{'USESRV'} = $hash{$key}[11];
1470 $fwdfwsettings{'TGT_PROT'} = $hash{$key}[12];
1471 $fwdfwsettings{'ICMP_TGT'} = $hash{$key}[13];
1472 $fwdfwsettings{'grp3'} = $hash{$key}[14];
1473 $fwdfwsettings{$fwdfwsettings{'grp3'}} = $hash{$key}[15];
1474 $fwdfwsettings{'ruleremark'} = $hash{$key}[16];
1475 $fwdfwsettings{'LOG'} = $hash{$key}[17];
1476 $fwdfwsettings{'TIME'} = $hash{$key}[18];
1477 $fwdfwsettings{'TIME_MON'} = $hash{$key}[19];
1478 $fwdfwsettings{'TIME_TUE'} = $hash{$key}[20];
1479 $fwdfwsettings{'TIME_WED'} = $hash{$key}[21];
1480 $fwdfwsettings{'TIME_THU'} = $hash{$key}[22];
1481 $fwdfwsettings{'TIME_FRI'} = $hash{$key}[23];
1482 $fwdfwsettings{'TIME_SAT'} = $hash{$key}[24];
1483 $fwdfwsettings{'TIME_SUN'} = $hash{$key}[25];
1484 $fwdfwsettings{'TIME_FROM'} = $hash{$key}[26];
1485 $fwdfwsettings{'TIME_TO'} = $hash{$key}[27];
2669161d 1486 $fwdfwsettings{'USE_NAT'} = $hash{$key}[28];
a6edca5a 1487 $fwdfwsettings{'nat'} = $hash{$key}[31]; #changed order
2669161d 1488 $fwdfwsettings{$fwdfwsettings{'nat'}} = $hash{$key}[29];
a6edca5a 1489 $fwdfwsettings{'dnatport'} = $hash{$key}[30];
2a81ab0d
AM
1490 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1491 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1492 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1493 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1494 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1495 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1496 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1497 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1498 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1499 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1500 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1501 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1502 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1503 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1504 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
2669161d
AM
1505 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
1506 $checked{'nat'}{$fwdfwsettings{'nat'}} = 'CHECKED';
2a81ab0d
AM
1507 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1508 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1509 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
b044bb05 1510 $selected{'ipfire_src'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
2669161d
AM
1511 $selected{'dnat'}{$fwdfwsettings{$fwdfwsettings{'nat'}}} ='selected';
1512 $selected{'snat'}{$fwdfwsettings{$fwdfwsettings{'nat'}}} ='selected';
2a81ab0d
AM
1513 }
1514 }
1515 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1516 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1517 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1518 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1519 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1520 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1521 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
02da9f7b 1522 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
2669161d 1523 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
8442c937 1524 $fwdfwsettings{'oldruletype'}=$fwdfwsettings{'chain'};
515863e2
AM
1525 #check if manual ip (source) is orange network
1526 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1527 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1528 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1529 $fwdfwsettings{'oldorange'} ='on';
1530 }
1531 }
2a81ab0d
AM
1532 }else{
1533 $fwdfwsettings{'ACTIVE'}='ON';
1534 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
515863e2
AM
1535 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1536 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1537 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1538 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1539 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1540 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1541 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
1542 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
2669161d 1543 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
515863e2
AM
1544 #check if manual ip (source) is orange network
1545 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1546 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1547 if ( &General::IpInSubnet($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1548 $fwdfwsettings{'oldorange'} ='on';
1549 }
1550 }
2a81ab0d 1551 }
2a81ab0d 1552 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw addrule'});
2a81ab0d
AM
1553 &Header::closebox();
1554 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw source'});
2a81ab0d 1555 #------SOURCE-------------------------------------------------------
ec6fd189 1556 print "<form method='post'>";
2a81ab0d
AM
1557 print<<END;
1558 <table width='100%' border='0'>
ab4fe66f 1559 <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
1560END
1561 print"<td align='right'><select name='ipfire_src' style='width:200px;'>";
b044bb05
AM
1562 print "<option value='ALL' $selected{'ipfire_src'}{'ALL'}>$Lang::tr{'all'}</option>";
1563 print "<option value='GREEN' $selected{'ipfire_src'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
595a90f0
AM
1564 print "<option value='ORANGE' $selected{'ipfire_src'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if (&Header::orange_used());
1565 print "<option value='BLUE' $selected{'ipfire_src'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>" if (&Header::blue_used());
b044bb05 1566 print "<option value='RED1' $selected{'ipfire_src'}{'RED1'}>$Lang::tr{'red1'} ($redip)" if ($redip);
a0fb1099
AM
1567 if (! -z "${General::swroot}/ethernet/aliases"){
1568 foreach my $alias (sort keys %aliases)
1569 {
1570 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1571 }
1572 }
1573 print<<END;
b88c8829 1574 </select></td></tr>
a0fb1099 1575 <tr><td colspan='8'><hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; ' /></td></tr></table>
2a81ab0d 1576END
a4c7bf6b
AM
1577 &gen_dd_block('src','grp1');
1578 print"<hr>";
2a81ab0d 1579 &Header::closebox();
bee56a2d 1580
fadcfb73
AM
1581 #---SNAT / DNAT ------------------------------------------------
1582 &Header::openbox('100%', 'left', 'NAT');
1583 print<<END;
93e0855b 1584 <label>
0eadfdad 1585 <input type='checkbox' name='USE_NAT' id='USE_NAT' value="ON" $checked{'USE_NAT'}{'ON'}>
93e0855b
MT
1586 $Lang::tr{'fwdfw use nat'}
1587 </label>
6bcb5ffe 1588 <div class="NAT">
93e0855b
MT
1589 <table width='100%' border='0'>
1590 <tr>
bee56a2d
MT
1591 <td width='5%'></td>
1592 <td width='40%'>
1593 <label>
1594 <input type='radio' name='nat' id='dnat' value='dnat' checked>
1595 $Lang::tr{'fwdfw dnat'}
1596 </label>
1597 </td>
1598END
1599
1600 if (%aliases) {
1601 print <<END;
1602 <td width='25%' align='right'>$Lang::tr{'dnat address'}:</td>
1603 <td width='30%'>
1604 <select name='dnat' style='width: 100%;'>
11ab2c7d 1605 <option value='Default IP' $selected{'dnat'}{'Default IP'}>$Lang::tr{'default ip'} ($netsettings{'RED_ADDRESS'})</option>
bee56a2d
MT
1606END
1607 foreach my $alias (sort keys %aliases) {
11ab2c7d 1608 print "<option value='$alias' $selected{'dnat'}{$alias}>$alias ($aliases{$alias}{'IPT'})</option>";
bee56a2d
MT
1609 }
1610
1611 print "</select>";
1612 } else {
1613 print <<END;
1614 <td colspan="2" width='55%'>
1615 <input type='hidden' name='dnat' value='Default IP'>
93e0855b 1616 </td>
fadcfb73 1617END
fadcfb73 1618 }
bee56a2d
MT
1619 print "</tr>";
1620
fadcfb73 1621 #SNAT
bee56a2d
MT
1622 print <<END;
1623 <tr>
1624 <td width='5%'></td>
1625 <td width='40%'>
1626 <label>
1627 <input type='radio' name='nat' id='snat' value='snat' $checked{'nat'}{'snat'}>
1628 $Lang::tr{'fwdfw snat'}
1629 </label>
1630 </td>
1631 <td width='25%' align='right'>$Lang::tr{'snat new source ip address'}:</td>
1632 <td width='30%'>
1633 <select name='snat' style='width: 100%;'>
1634END
1635
1636 foreach my $alias (sort keys %aliases) {
11ab2c7d 1637 print "<option value='$alias' $selected{'snat'}{$alias}>$alias ($aliases{$alias}{'IPT'})</option>";
bee56a2d
MT
1638 }
1639
1640 # XXX this is composed in a very ugly fashion
1641 foreach my $network (sort keys %defaultNetworks) {
fadcfb73
AM
1642 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1643 next if($defaultNetworks{$network}{'NAME'} eq "ALL");
1644 next if($defaultNetworks{$network}{'NAME'} =~ /OpenVPN/i);
68f6312a 1645 next if($defaultNetworks{$network}{'NAME'} =~ /IPsec/i);
bee56a2d 1646
fadcfb73
AM
1647 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1648 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'nat'}} eq $defaultNetworks{$network}{'NAME'});
11ab2c7d 1649 print ">$network ($defaultNetworks{$network}{'NET'})</option>";
fadcfb73 1650 }
bee56a2d
MT
1651
1652 print <<END;
1653 </select>
1654 </td>
1655 </tr>
1656 </table>
1657 </div>
1658END
fadcfb73 1659 &Header::closebox();
bee56a2d 1660
2a81ab0d
AM
1661 #---TARGET------------------------------------------------------
1662 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw target'});
1663 print<<END;
1664 <table width='100%' border='0'>
ab4fe66f 1665 <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 1666END
05d4f131 1667 print"<td align='right'><select name='ipfire' style='width:200px;'>";
a0fb1099
AM
1668 print "<option value='ALL' $selected{'ipfire'}{'ALL'}>$Lang::tr{'all'}</option>";
1669 print "<option value='GREEN' $selected{'ipfire'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
595a90f0
AM
1670 print "<option value='ORANGE' $selected{'ipfire'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if (&Header::orange_used());
1671 print "<option value='BLUE' $selected{'ipfire'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>"if (&Header::blue_used());
fc83b09d 1672 print "<option value='RED1' $selected{'ipfire'}{'RED1'}>$Lang::tr{'red1'} ($redip)" if ($redip);
05d4f131 1673 if (! -z "${General::swroot}/ethernet/aliases"){
bedb72f3
AM
1674 foreach my $alias (sort keys %aliases)
1675 {
1676 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1677 }
2a81ab0d 1678 }
2a81ab0d 1679 print<<END;
b88c8829 1680 </select></td></tr>
8013bd0a 1681 <tr><td colspan='7'><hr style='border:dotted #BFBFBF; border-width:1px 0 0 0 ; ' /></td></tr></table>
2a81ab0d 1682END
8013bd0a 1683 &gen_dd_block('tgt','grp2');
a4c7bf6b
AM
1684 print"<hr>";
1685 &Header::closebox;
1686 #---PROTOCOL------------------------------------------------------
901aa8b9
MT
1687 $fwdfwsettings{'SRC_PORT'} =~ s/\|/,/g;
1688 $fwdfwsettings{'TGT_PORT'} =~ s/\|/,/g;
1689 $fwdfwsettings{'dnatport'} =~ tr/|/,/;
1690
1691 # The dnatport may be empty, if it matches TGT_PORT
1692 if ($fwdfwsettings{'dnatport'} eq $fwdfwsettings{'TGT_PORT'}) {
1693 $fwdfwsettings{'dnatport'} = "";
1694 }
1695
a4c7bf6b 1696 &Header::openbox('100%', 'left', $Lang::tr{'fwhost prot'});
79bb8c75
AM
1697 #Fix Protocol for JQuery
1698 if ($fwdfwsettings{'grp3'} eq 'cust_srv' || $fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
1699 $fwdfwsettings{'PROT'} = 'template';
1700 }
a4c7bf6b 1701 print<<END;
901aa8b9 1702 <table width='100%' border='0'>
a1e89f48 1703 <tr>
901aa8b9
MT
1704 <td width="25%">
1705 <select name='PROT' id='protocol' style="width: 95px;">
a4c7bf6b 1706END
a1e89f48
MT
1707 print "<option value=\"\"";
1708 if ($fwdfwsettings{'PROT'} eq '') {
1709 print " selected=\"selected\"";
a4c7bf6b 1710 }
a1e89f48
MT
1711 print ">$Lang::tr{'all'}</option>";
1712
1713 print "<option value=\"template\"";
79bb8c75 1714 print " selected=\"selected\"" if ($fwdfwsettings{'grp3'} eq 'cust_srv' || $fwdfwsettings{'grp3'} eq 'cust_srvgrp');
a1e89f48
MT
1715 print ">- $Lang::tr{'template'} -</option>";
1716
1717 foreach (@PROTOCOLS) {
1718 print"<option value=\"$_\"";
1719 if ($_ eq $fwdfwsettings{'PROT'}) {
1720 print " selected=\"selected\"";
a4c7bf6b 1721 }
9c89c64d
AM
1722 if($_ eq "IPv6"){
1723 print ">$Lang::tr{'fwdfw prot41'}</option>";
1724 }else{
1725 print ">$_</option>";
1726 }
a4c7bf6b 1727 }
901aa8b9 1728
a4c7bf6b 1729 print<<END;
a1e89f48
MT
1730 </select>
1731 </td>
901aa8b9
MT
1732 <td width="75%">
1733 <table width='100%' border='0' id="PROTOCOL_ICMP_TYPES">
1734 <tr>
1735 <td width='20%'>$Lang::tr{'fwhost icmptype'}</td>
1736 <td colspan='2'>
1737 <select name='ICMP_TYPES' style='min-width:230px;'>
a4c7bf6b
AM
1738END
1739 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
86a921ee 1740 print"<option value='All ICMP-Types'>$Lang::tr{'fwdfw all icmp'}</option>";
a4c7bf6b
AM
1741 foreach my $key (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1742 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0]"){
1743 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1744 }else{
1745 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1746 }
1747 }
a1e89f48
MT
1748
1749 print <<END;
901aa8b9
MT
1750 </select>
1751 </td>
1752 </tr>
1753 </table>
a1e89f48 1754
901aa8b9
MT
1755 <table width="100%" border="0" id="PROTOCOL_PORTS">
1756 <tr>
1757 <!-- #SOURCEPORT -->
1758 <td>
1759 $Lang::tr{'fwdfw use srcport'}
1760 </td>
1761 <td>
1762 <input type='text' name='SRC_PORT' value='$fwdfwsettings{'SRC_PORT'}' maxlength='20' size='18'>
1763 </td>
1764 <td width='10%'>
1765 </td>
6bcb5ffe 1766
901aa8b9
MT
1767 <!-- #TARGETPORT -->
1768 <td>
1769 $Lang::tr{'fwdfw use srv'}
1770 </td>
a1e89f48 1771
901aa8b9
MT
1772 <td>
1773 <input type='text' name='TGT_PORT' value='$fwdfwsettings{'TGT_PORT'}' maxlength='20' size='18'>
1774 </td>
1775 </tr>
1776 <tr class="NAT">
1777 <td colspan='3'></td>
1778 <td>$Lang::tr{'fwdfw external port nat'}:</td>
1779 <td>
1780 <input type='text' name='dnatport' value=\"$fwdfwsettings{'dnatport'}\" maxlength='20' size='18'>
1781 </td>
1782 </tr>
1783 </table>
a1e89f48 1784
901aa8b9
MT
1785 <table width="100%" border="0" id="PROTOCOL_TEMPLATE">
1786 <tr>
1787 <td>
1788 <input type='radio' name='grp3' id='cust_srv' value='cust_srv' checked>
1789 $Lang::tr{'fwhost cust service'}
1790 </td>
1791 <td>
1792 <select name='cust_srv' style='min-width: 230px;'>
2a81ab0d 1793END
901aa8b9 1794
2a81ab0d 1795 &General::readhasharray("$configsrv", \%customservice);
eff2dbf8 1796 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
2a81ab0d
AM
1797 print"<option ";
1798 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]);
1799 print"value='$customservice{$key}[0]'>$customservice{$key}[0]</option>";
a1e89f48
MT
1800 }
1801
901aa8b9
MT
1802 print <<END;
1803 </select>
1804 </td>
1805 </tr>
1806 <tr>
1807 <td>
1808 <input type='radio' name='grp3' id='cust_srvgrp' value='cust_srvgrp' $checked{'grp3'}{'cust_srvgrp'}>
1809 $Lang::tr{'fwhost cust srvgrp'}
1810 </td>
1811 <td>
1812 <select name='cust_srvgrp' style='min-width:230px;'>
2a81ab0d 1813END
a1e89f48 1814
2a81ab0d
AM
1815 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1816 my $helper;
eff2dbf8 1817 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
2a81ab0d
AM
1818 if ($helper ne $customservicegrp{$key}[0]){
1819 print"<option ";
1820 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservicegrp{$key}[0]);
1821 print">$customservicegrp{$key}[0]</option>";
1822 }
1823 $helper=$customservicegrp{$key}[0];
901aa8b9
MT
1824 }
1825
2a81ab0d 1826 print<<END;
901aa8b9
MT
1827 </select>
1828 </td>
1829 </tr>
1830 </table>
a1e89f48
MT
1831 </td>
1832 </tr>
1833 </table>
2a81ab0d 1834END
a1e89f48 1835
fadcfb73 1836 &Header::closebox;
0c7d0c08
MT
1837
1838 $checked{"RULE_ACTION"} = ();
1839 foreach ("ACCEPT", "DROP", "REJECT") {
1840 $checked{"RULE_ACTION"}{$_} = "";
1841 }
1842
1843 if($fwdfwsettings{'updatefwrule'} eq 'on') {
1844 $checked{"RULE_ACTION"}{$fwdfwsettings{'RULE_ACTION'}} = "checked";
1845 } elsif ($fwdfwsettings{'POLICY'} eq 'MODE1') {
1846 $checked{"RULE_ACTION"}{"ACCEPT"} = "checked";
1847 } elsif ($fwdfwsettings{'POLICY'} eq 'MODE2') {
1848 $checked{"RULE_ACTION"}{"DROP"} = "checked";
1849 }
1850
1851 print <<END;
1852 <hr><br>
1853
1854 <center>
1855 <table width="80%" border="0">
1856 <tr>
1857 <td width="33%" align="center" bgcolor="$color{'color17'}">
1858 &nbsp;<br>&nbsp;
1859 </td>
1860 <td width="33%" align="center" bgcolor="$color{'color25'}">
1861 &nbsp;<br>&nbsp;
1862 </td>
1863 <td width="33%" align="center" bgcolor="$color{'color16'}">
1864 &nbsp;<br>&nbsp;
1865 </td>
1866 </tr>
1867 <tr>
1868 <td width="33%" align="center">
1869 <label>
1870 <input type="radio" name="RULE_ACTION" value="ACCEPT" $checked{"RULE_ACTION"}{"ACCEPT"}>
1871 <strong>$Lang::tr{'fwdfw ACCEPT'}</strong>
1872 </label>
1873 </td>
1874 <td width="33%" align="center">
1875 <label>
1876 <input type="radio" name="RULE_ACTION" value="DROP" $checked{"RULE_ACTION"}{"DROP"}>
1877 <strong>$Lang::tr{'fwdfw DROP'}</strong>
1878 </label>
1879 </td>
1880 <td width="33%" align="center">
1881 <label>
1882 <input type="radio" name="RULE_ACTION" value="REJECT" $checked{"RULE_ACTION"}{"REJECT"}>
1883 <strong>$Lang::tr{'fwdfw REJECT'}</strong>
1884 </label>
1885 </td>
1886 </tr>
1887 </table>
1888 </center>
1889
1890 <br>
1891END
1892
2a81ab0d
AM
1893 #---Activate/logging/remark-------------------------------------
1894 &Header::openbox('100%', 'left', $Lang::tr{'fwdfw additional'});
1895 print<<END;
43d8be09 1896 <table width='100%' border='0'>
2da264ec 1897END
b88c8829 1898 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
1899 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on'){
1900 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><select name='rulepos' >";
1901 for (my $count =1; $count <= $sum; $count++){
1902 print"<option value='$count' ";
1903 print"selected='selected'" if($fwdfwsettings{'oldrulenumber'} eq $count);
1904 print">$count</option>";
1905 }
1906 print"</select></td></tr>";
70d38e50
AM
1907 }else{
1908 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><input type='text' name='rulepos' size='2'></td></tr>";
2da264ec
AM
1909 }
1910
1911 print<<END;
d8d7dd3b
MT
1912 </table>
1913 <table width='100%'>
1914 <tr>
1915END
1916
1917 if ($fwdfwsettings{'updatefwrule'} eq 'on') {
1918 print <<END;
1919 <td>
0eadfdad 1920 <input type='checkbox' name='ACTIVE' value="ON" $checked{'ACTIVE'}{'ON'}>
d8d7dd3b
MT
1921 </td>
1922 <td>$Lang::tr{'fwdfw rule activate'}</td>
1923END
1924 } else {
1925 print <<END;
1926 <td colspan="2">
1927 <input type="hidden" name="ACTIVE" value="ON">
1928 </td>
1929END
1930 }
1931
1932 print <<END;
1933 </tr>
1934 <tr>
1935 <td>
1936 <input type='checkbox' name='LOG' value='ON' $checked{'LOG'}{'ON'}>
1937 </td>
1938 <td>$Lang::tr{'fwdfw log rule'}</td>
1939 </tr>
f18c3831
MT
1940 <tr>
1941 <td width='1%'>
1942 <input type='checkbox' name='TIME' id="USE_TIME_CONSTRAINTS" value='ON' $checked{'TIME'}{'ON'}>
1943 </td>
1944 <td>$Lang::tr{'fwdfw timeframe'}</td>
1945 </tr>
1946 <tr id="TIME_CONSTRAINTS">
1947 <td colspan="2">
1948 <table width="66%" border="0">
1949 <tr>
1950 <td width="8em">&nbsp;</td>
1951 <td align="center">$Lang::tr{'advproxy monday'}</td>
1952 <td align="center">$Lang::tr{'advproxy tuesday'}</td>
1953 <td align="center">$Lang::tr{'advproxy wednesday'}</td>
1954 <td align="center">$Lang::tr{'advproxy thursday'}</td>
1955 <td align="center">$Lang::tr{'advproxy friday'}</td>
1956 <td align="center">$Lang::tr{'advproxy saturday'}</td>
1957 <td align="center">$Lang::tr{'advproxy sunday'}</td>
1958 <td>&nbsp;</td>
1959 </tr>
1960 <tr>
1961 <td width="8em">&nbsp;</td>
1962 <td align="center"><input type='checkbox' name='TIME_MON' value='on' $checked{'TIME_MON'}{'on'} ></td>
1963 <td align="center"><input type='checkbox' name='TIME_TUE' value='on' $checked{'TIME_TUE'}{'on'} ></td>
1964 <td align="center"><input type='checkbox' name='TIME_WED' value='on' $checked{'TIME_WED'}{'on'} ></td>
1965 <td align="center"><input type='checkbox' name='TIME_THU' value='on' $checked{'TIME_THU'}{'on'} ></td>
1966 <td align="center"><input type='checkbox' name='TIME_FRI' value='on' $checked{'TIME_FRI'}{'on'} ></td>
1967 <td align="center"><input type='checkbox' name='TIME_SAT' value='on' $checked{'TIME_SAT'}{'on'} ></td>
1968 <td align="center"><input type='checkbox' name='TIME_SUN' value='on' $checked{'TIME_SUN'}{'on'} ></td>
1969 <td>
1970 <select name='TIME_FROM'>
2a81ab0d
AM
1971END
1972 for (my $i=0;$i<=23;$i++) {
1973 $i = sprintf("%02s",$i);
1974 for (my $j=0;$j<=45;$j+=15) {
1975 $j = sprintf("%02s",$j);
1976 my $time = $i.":".$j;
f18c3831 1977 print "<option $selected{'TIME_FROM'}{$time}>$i:$j</option>\n";
2a81ab0d
AM
1978 }
1979 }
1980 print<<END;
f18c3831
MT
1981 </select> &dash;
1982 <select name='TIME_TO'>
2a81ab0d
AM
1983END
1984 for (my $i=0;$i<=23;$i++) {
1985 $i = sprintf("%02s",$i);
1986 for (my $j=0;$j<=45;$j+=15) {
1987 $j = sprintf("%02s",$j);
1988 my $time = $i.":".$j;
f18c3831 1989 print "<option $selected{'TIME_TO'}{$time}>$i:$j</option>\n";
2a81ab0d
AM
1990 }
1991 }
8013bd0a 1992 print<<END;
f18c3831
MT
1993 </select>
1994 </td>
1995 </tr>
1996 </table>
1997 </td>
1998 </tr>
1999 </table>
2000 <br><hr>
8013bd0a 2001END
f18c3831 2002
8013bd0a
AM
2003 #---ACTION------------------------------------------------------
2004 if($fwdfwsettings{'updatefwrule'} ne 'on'){
2005 print<<END;
2006 <table border='0' width='100%'>
2007 <tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' />
2008 <input type='hidden' name='config' value='$config' >
b88c8829
AM
2009 <input type='hidden' name='ACTION' value='saverule' ></form>
2010 <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>
2011 </table>
2012 <br>
8013bd0a
AM
2013END
2014 }else{
2015 print<<END;
2016 <table border='0' width='100%'>
2017 <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'}'>
2018 <input type='hidden' name='oldgrp1a' value='$fwdfwsettings{'oldgrp1a'}' />
2019 <input type='hidden' name='oldgrp1b' value='$fwdfwsettings{'oldgrp1b'}' />
2020 <input type='hidden' name='oldgrp2a' value='$fwdfwsettings{'oldgrp2a'}' />
2021 <input type='hidden' name='oldgrp2b' value='$fwdfwsettings{'oldgrp2b'}' />
2022 <input type='hidden' name='oldgrp3a' value='$fwdfwsettings{'oldgrp3a'}' />
2023 <input type='hidden' name='oldgrp3b' value='$fwdfwsettings{'oldgrp3b'}' />
2024 <input type='hidden' name='oldusesrv' value='$fwdfwsettings{'oldusesrv'}' />
2025 <input type='hidden' name='oldrulenumber' value='$fwdfwsettings{'oldrulenumber'}' />
2026 <input type='hidden' name='rulenumber' value='$fwdfwsettings{'rulepos'}' />
2027 <input type='hidden' name='oldruleremark' value='$fwdfwsettings{'oldruleremark'}' />
2028 <input type='hidden' name='oldorange' value='$fwdfwsettings{'oldorange'}' />
2669161d
AM
2029 <input type='hidden' name='oldnat' value='$fwdfwsettings{'oldnat'}' />
2030 <input type='hidden' name='oldruletype' value='$fwdfwsettings{'oldruletype'}' />
8013bd0a
AM
2031 <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>
2032 </table></form>
2033END
2034 }
2035 &Header::closebox();
2036}
2037sub pos_up
2038{
2039 my %uphash=();
2040 my %tmp=();
2041 &General::readhasharray($fwdfwsettings{'config'}, \%uphash);
2042 foreach my $key (sort keys %uphash){
2043 if ($key eq $fwdfwsettings{'key'}) {
2044 my $last = $key -1;
2045 if (exists $uphash{$last}){
2046 #save rule last
2047 foreach my $y (0 .. $#{$uphash{$last}}) {
2048 $tmp{0}[$y] = $uphash{$last}[$y];
2049 }
2050 #copy active rule to last
2051 foreach my $i (0 .. $#{$uphash{$last}}) {
2052 $uphash{$last}[$i] = $uphash{$key}[$i];
2053 }
2054 #copy saved rule to actual position
2055 foreach my $x (0 .. $#{$tmp{0}}) {
2056 $uphash{$key}[$x] = $tmp{0}[$x];
2057 }
2058 }
2059 }
2060 }
2061 &General::writehasharray($fwdfwsettings{'config'}, \%uphash);
0e430797 2062 &General::firewall_config_changed();
8013bd0a
AM
2063}
2064sub pos_down
2065{
2066 my %downhash=();
2067 my %tmp=();
2068 &General::readhasharray($fwdfwsettings{'config'}, \%downhash);
2069 foreach my $key (sort keys %downhash){
2070 if ($key eq $fwdfwsettings{'key'}) {
2071 my $next = $key + 1;
2072 if (exists $downhash{$next}){
2073 #save rule next
2074 foreach my $y (0 .. $#{$downhash{$next}}) {
2075 $tmp{0}[$y] = $downhash{$next}[$y];
2076 }
2077 #copy active rule to next
2078 foreach my $i (0 .. $#{$downhash{$next}}) {
2079 $downhash{$next}[$i] = $downhash{$key}[$i];
2080 }
2081 #copy saved rule to actual position
2082 foreach my $x (0 .. $#{$tmp{0}}) {
2083 $downhash{$key}[$x] = $tmp{0}[$x];
2084 }
2085 }
2086 }
2087 }
2088 &General::writehasharray($fwdfwsettings{'config'}, \%downhash);
0e430797 2089 &General::firewall_config_changed();
2a81ab0d
AM
2090}
2091sub saverule
2092{
2a81ab0d
AM
2093 my $hash=shift;
2094 my $config=shift;
2095 &General::readhasharray("$config", $hash);
2096 if (!$errormessage){
2669161d 2097 ################################################################
2669161d 2098 #check if we change an INPUT rule to a OUTGOING
c12392c0 2099 if($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW' ){
2669161d 2100 &changerule($configinput);
c12392c0 2101 #print"1";
d7127db8 2102 }
8442c937 2103 #check if we change an INPUT rule to a FORWARD
2669161d
AM
2104 elsif($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
2105 &changerule($configinput);
c12392c0 2106 #print"2";
d7127db8 2107 }
2669161d
AM
2108 ################################################################
2109 #check if we change an OUTGOING rule to an INPUT
2110 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'INPUTFW' ){
2111 &changerule($configoutgoing);
c12392c0 2112 #print"3";
d7127db8 2113 }
8442c937 2114 #check if we change an OUTGOING rule to a FORWARD
2669161d 2115 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
d7127db8 2116 &changerule($configoutgoing);
c12392c0 2117 #print"4";
2669161d
AM
2118 }
2119 ################################################################
2120 #check if we change a FORWARD rule to an INPUT
2121 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'INPUTFW'){
2122 &changerule($configfwdfw);
c12392c0 2123 #print"5";
2669161d
AM
2124 }
2125 #check if we change a FORWARD rule to an OUTGOING
2126 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW'){
2127 &changerule($configfwdfw);
c12392c0 2128 #print"6";
2669161d 2129 }
2da264ec 2130 if ($fwdfwsettings{'updatefwrule'} ne 'on'){
2a81ab0d
AM
2131 my $key = &General::findhasharraykey ($hash);
2132 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
2133 $$hash{$key}[1] = $fwdfwsettings{'chain'};
2134 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
2135 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
2136 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
2137 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
2138 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
2139 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
2140 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
2141 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
2142 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
2143 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
2144 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
2145 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
2146 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
2147 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
2148 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
2149 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
2150 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
2151 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
2152 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
2153 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
2154 $$hash{$key}[22] = $fwdfwsettings{'TIME_THU'};
2155 $$hash{$key}[23] = $fwdfwsettings{'TIME_FRI'};
2156 $$hash{$key}[24] = $fwdfwsettings{'TIME_SAT'};
2157 $$hash{$key}[25] = $fwdfwsettings{'TIME_SUN'};
2158 $$hash{$key}[26] = $fwdfwsettings{'TIME_FROM'};
2159 $$hash{$key}[27] = $fwdfwsettings{'TIME_TO'};
c12392c0
AM
2160 $$hash{$key}[28] = $fwdfwsettings{'USE_NAT'};
2161 $$hash{$key}[29] = $fwdfwsettings{$fwdfwsettings{'nat'}};
2162 $$hash{$key}[30] = $fwdfwsettings{'dnatport'};
2163 $$hash{$key}[31] = $fwdfwsettings{'nat'};
2a81ab0d
AM
2164 &General::writehasharray("$config", $hash);
2165 }else{
e44fa079
AM
2166 foreach my $key (sort {$a <=> $b} keys %$hash){
2167 if($key eq $fwdfwsettings{'key'}){
2168 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
2169 $$hash{$key}[1] = $fwdfwsettings{'chain'};
2170 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
2171 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
2172 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
2173 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
2174 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
2175 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
2176 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
2177 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
2178 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
2179 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
2180 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
2181 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
2182 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
2183 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
2184 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
2185 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
2186 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
2187 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
2188 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
2189 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
2190 $$hash{$key}[22] = $fwdfwsettings{'TIME_THU'};
2191 $$hash{$key}[23] = $fwdfwsettings{'TIME_FRI'};
2192 $$hash{$key}[24] = $fwdfwsettings{'TIME_SAT'};
2193 $$hash{$key}[25] = $fwdfwsettings{'TIME_SUN'};
2194 $$hash{$key}[26] = $fwdfwsettings{'TIME_FROM'};
2195 $$hash{$key}[27] = $fwdfwsettings{'TIME_TO'};
c12392c0
AM
2196 $$hash{$key}[28] = $fwdfwsettings{'USE_NAT'};
2197 $$hash{$key}[29] = $fwdfwsettings{$fwdfwsettings{'nat'}};
2198 $$hash{$key}[30] = $fwdfwsettings{'dnatport'};
2199 $$hash{$key}[31] = $fwdfwsettings{'nat'};
e44fa079
AM
2200 last;
2201 }
2202 }
2203 }
2204 &General::writehasharray("$config", $hash);
0918e516 2205 if($fwdfwsettings{'oldrulenumber'} > $fwdfwsettings{'rulepos'}){
e44fa079
AM
2206 my %tmp=();
2207 my $val=$fwdfwsettings{'oldrulenumber'}-$fwdfwsettings{'rulepos'};
2208 for (my $z=0;$z<$val;$z++){
2209 foreach my $key (sort {$a <=> $b} keys %$hash){
2210 if ($key eq $fwdfwsettings{'oldrulenumber'}) {
2211 my $last = $key -1;
2212 if (exists $$hash{$last}){
2213 #save rule last
2214 foreach my $y (0 .. $#{$$hash{$last}}) {
2215 $tmp{0}[$y] = $$hash{$last}[$y];
2216 }
2217 #copy active rule to last
2218 foreach my $i (0 .. $#{$$hash{$last}}) {
2219 $$hash{$last}[$i] = $$hash{$key}[$i];
2220 }
2221 #copy saved rule to actual position
2222 foreach my $x (0 .. $#{$tmp{0}}) {
2223 $$hash{$key}[$x] = $tmp{0}[$x];
2da264ec
AM
2224 }
2225 }
2226 }
2227 }
e44fa079
AM
2228 $fwdfwsettings{'oldrulenumber'}--;
2229 }
2230 &General::writehasharray("$config", $hash);
0e430797 2231 &General::firewall_config_changed();
0918e516 2232 }elsif($fwdfwsettings{'rulepos'} > $fwdfwsettings{'oldrulenumber'}){
e44fa079
AM
2233 my %tmp=();
2234 my $val=$fwdfwsettings{'rulepos'}-$fwdfwsettings{'oldrulenumber'};
2235 for (my $z=0;$z<$val;$z++){
2236 foreach my $key (sort {$a <=> $b} keys %$hash){
2237 if ($key eq $fwdfwsettings{'oldrulenumber'}) {
2238 my $next = $key + 1;
2239 if (exists $$hash{$next}){
2240 #save rule next
2241 foreach my $y (0 .. $#{$$hash{$next}}) {
2242 $tmp{0}[$y] = $$hash{$next}[$y];
2243 }
2244 #copy active rule to next
2245 foreach my $i (0 .. $#{$$hash{$next}}) {
2246 $$hash{$next}[$i] = $$hash{$key}[$i];
2247 }
2248 #copy saved rule to actual position
2249 foreach my $x (0 .. $#{$tmp{0}}) {
2250 $$hash{$key}[$x] = $tmp{0}[$x];
2da264ec
AM
2251 }
2252 }
2253 }
2a81ab0d 2254 }
e44fa079 2255 $fwdfwsettings{'oldrulenumber'}++;
2a81ab0d
AM
2256 }
2257 &General::writehasharray("$config", $hash);
0e430797 2258 &General::firewall_config_changed();
2a81ab0d
AM
2259 }
2260 }
2261}
2a81ab0d
AM
2262sub validremark
2263{
2264 # Checks a hostname against RFC1035
2265 my $remark = $_[0];
2266
2267 # Each part should be at least two characters in length
2268 # but no more than 63 characters
d24a34cb 2269 if (length ($remark) < 1 || length ($remark) > 255) {
2a81ab0d
AM
2270 return 0;}
2271 # Only valid characters are a-z, A-Z, 0-9 and -
e3580608 2272 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s]*$/) {
2a81ab0d
AM
2273 return 0;}
2274 # First character can only be a letter or a digit
7b82bee7 2275 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9(]*$/) {
2a81ab0d
AM
2276 return 0;}
2277 # Last character can only be a letter or a digit
e3580608 2278 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
2a81ab0d
AM
2279 return 0;}
2280 return 1;
2281}
3a162dc1
AM
2282sub viewtablerule
2283{
15add1c8 2284 &General::readhash("/var/ipfire/ethernet/settings", \%netsettings);
c03d4a5e
MT
2285
2286 &viewtablenew(\%configfwdfw, $configfwdfw, $Lang::tr{'firewall rules'});
2287 &viewtablenew(\%configinputfw, $configinput, $Lang::tr{'external access'});
2288 &viewtablenew(\%configoutgoingfw, $configoutgoing, $Lang::tr{'outgoing firewall'});
2a81ab0d
AM
2289}
2290sub viewtablenew
2291{
2292 my $hash=shift;
2293 my $config=shift;
2294 my $title=shift;
7bd9d462 2295 my $go='';
c03d4a5e
MT
2296
2297 my $show_box = (! -z $config) || ($optionsfw{'SHOWTABLES'} eq 'on');
2298 return if (!$show_box);
2299
15add1c8 2300 &General::get_aliases(\%aliases);
af768a7e 2301 &General::readhasharray("$confighost", \%customhost);
7bd9d462 2302 &General::readhasharray("$config", $hash);
d9b691e1
AM
2303 &General::readhasharray("$configccdnet", \%ccdnet);
2304 &General::readhasharray("$configccdhost", \%ccdhost);
c03d4a5e
MT
2305
2306 &Header::openbox('100%', 'left', $title);
2307 print "<table width='100%' cellspacing='0' border='0'>";
2308
2309 if (! -z $config) {
2a81ab0d
AM
2310 my $count=0;
2311 my ($gif,$log);
2312 my $ruletype;
2313 my $rulecolor;
2314 my $tooltip;
2315 my @tmpsrc=();
a15f7d0d 2316 my @tmptgt=();
2a81ab0d 2317 my $coloryellow='';
989d0fd7 2318
c03d4a5e 2319 print <<END;
989d0fd7
MT
2320 <tr>
2321 <th align='right' width='3%'>
2322 #
2323 </th>
2324 <th width='2%'></th>
2325 <th align='center'>
2326 <b>$Lang::tr{'protocol'}</b>
2327 </th>
2328 <th align='center' width='30%'>
2329 <b>$Lang::tr{'fwdfw source'}</b>
2330 </th>
2331 <th align='center'>
daf400fa 2332 <b>$Lang::tr{'fwdfw log'}</b>
989d0fd7
MT
2333 </th>
2334 <th align='center' width='30%'>
2335 <b>$Lang::tr{'fwdfw target'}</b>
2336 </th>
2337 <th align='center' colspan='6' width='18%'>
2338 <b>$Lang::tr{'fwdfw action'}</b>
2339 </th>
2340 </tr>
2341END
2342
62fc8511 2343 foreach my $key (sort {$a <=> $b} keys %$hash){
12a43202 2344 $tdcolor='';
2a81ab0d 2345 @tmpsrc=();
a15f7d0d 2346 @tmptgt=();
2a81ab0d
AM
2347 #check if vpn hosts/nets have been deleted
2348 if($$hash{$key}[3] =~ /ipsec/i || $$hash{$key}[3] =~ /ovpn/i){
2349 push (@tmpsrc,$$hash{$key}[4]);
2350 }
2351 if($$hash{$key}[5] =~ /ipsec/i || $$hash{$key}[5] =~ /ovpn/i){
a15f7d0d 2352 push (@tmptgt,$$hash{$key}[6]);
2a81ab0d 2353 }
2a81ab0d 2354 foreach my $host (@tmpsrc){
a15f7d0d 2355 if($$hash{$key}[3] eq 'ipsec_net_src'){
62fc8511 2356 if(&fwlib::get_ipsec_net_ip($host,11) eq ''){
2a81ab0d
AM
2357 $coloryellow='on';
2358 &disable_rule($key);
2359 $$hash{$key}[2]='';
2a81ab0d 2360 }
a15f7d0d 2361 }elsif($$hash{$key}[3] eq 'ovpn_net_src'){
2a81ab0d
AM
2362 if(&fwlib::get_ovpn_net_ip($host,1) eq ''){
2363 $coloryellow='on';
2364 &disable_rule($key);
2365 $$hash{$key}[2]='';
2366 }
a15f7d0d 2367 }elsif($$hash{$key}[3] eq 'ovpn_n2n_src'){
2a81ab0d
AM
2368 if(&fwlib::get_ovpn_n2n_ip($host,27) eq ''){
2369 $coloryellow='on';
2370 &disable_rule($key);
2371 $$hash{$key}[2]='';
2372 }
a15f7d0d
AM
2373 }elsif($$hash{$key}[3] eq 'ovpn_host_src'){
2374 if(&fwlib::get_ovpn_host_ip($host,33) eq ''){
2375 $coloryellow='on';
2376 &disable_rule($key);
2377 $$hash{$key}[2]='';
2378 }
2379 }
2380 }
2381 foreach my $host (@tmptgt){
2382 if($$hash{$key}[5] eq 'ipsec_net_tgt'){
2383 if(&fwlib::get_ipsec_net_ip($host,11) eq ''){
2384 $coloryellow='on';
2385 &disable_rule($key);
2386 $$hash{$key}[2]='';
2387 }
2388 }elsif($$hash{$key}[5] eq 'ovpn_net_tgt'){
2389 if(&fwlib::get_ovpn_net_ip($host,1) eq ''){
2390 $coloryellow='on';
2391 &disable_rule($key);
2392 $$hash{$key}[2]='';
2393 }
2394 }elsif($$hash{$key}[5] eq 'ovpn_n2n_tgt'){
2395 if(&fwlib::get_ovpn_n2n_ip($host,27) eq ''){
2396 $coloryellow='on';
2397 &disable_rule($key);
2398 $$hash{$key}[2]='';
2399 }
2400 }elsif($$hash{$key}[5] eq 'ovpn_host_tgt'){
2a81ab0d
AM
2401 if(&fwlib::get_ovpn_host_ip($host,33) eq ''){
2402 $coloryellow='on';
2403 &disable_rule($key);
2404 $$hash{$key}[2]='';
2405 }
2406 }
2a81ab0d 2407 }
2a81ab0d
AM
2408 $$hash{'ACTIVE'}=$$hash{$key}[2];
2409 $count++;
2a81ab0d 2410 if($coloryellow eq 'on'){
a15f7d0d 2411 $color="$color{'color14'}";
2a81ab0d
AM
2412 $coloryellow='';
2413 }elsif($coloryellow eq ''){
2414 if ($count % 2){
15add1c8 2415 $color="$color{'color22'}";
2a81ab0d
AM
2416 }
2417 else{
15add1c8 2418 $color="$color{'color20'}";
2a81ab0d
AM
2419 }
2420 }
2a81ab0d 2421 print<<END;
989d0fd7
MT
2422 <tr bgcolor='$color'>
2423 <td align='right' width='3%'>
2424 <b>$key&nbsp;</b>
2425 </td>
2a81ab0d 2426END
989d0fd7 2427
a0fb1099 2428 #RULETYPE (A,R,D)
2a81ab0d
AM
2429 if ($$hash{$key}[0] eq 'ACCEPT'){
2430 $ruletype='A';
2431 $tooltip='ACCEPT';
2432 $rulecolor=$color{'color17'};
2433 }elsif($$hash{$key}[0] eq 'DROP'){
2434 $ruletype='D';
2435 $tooltip='DROP';
2436 $rulecolor=$color{'color25'};
2437 }elsif($$hash{$key}[0] eq 'REJECT'){
2438 $ruletype='R';
2439 $tooltip='REJECT';
2440 $rulecolor=$color{'color16'};
2441 }
989d0fd7
MT
2442
2443 print <<END;
2444 <td bgcolor='$rulecolor' align='center' width='2%'>
2445 <span title='$tooltip'>&nbsp;&nbsp;</span>
2446 </td>
2447END
2448
a0fb1099
AM
2449 #Get Protocol
2450 my $prot;
fadcfb73 2451 if ($$hash{$key}[8]){
9c89c64d 2452 if ($$hash{$key}[8] eq "IPv6"){
39e360b2 2453 push (@protocols,$Lang::tr{'fwdfw prot41 short'})
9c89c64d
AM
2454 }else{
2455 push (@protocols,$$hash{$key}[8]);
2456 }
a0fb1099
AM
2457 }elsif($$hash{$key}[14] eq 'cust_srv'){
2458 &get_serviceports("service",$$hash{$key}[15]);
2459 }elsif($$hash{$key}[14] eq 'cust_srvgrp'){
2460 &get_serviceports("group",$$hash{$key}[15]);
2461 }else{
2462 push (@protocols,$Lang::tr{'all'});
2463 }
989d0fd7 2464
a0fb1099 2465 my $protz=join(",",@protocols);
90f8339a 2466 if($protz eq 'ICMP' && $$hash{$key}[9] ne 'All ICMP-Types' && $$hash{$key}[14] ne 'cust_srvgrp'){
a4c7bf6b
AM
2467 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
2468 foreach my $keyicmp (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
2469 if($$hash{$key}[9] eq "$icmptypes{$keyicmp}[0]"){
2470 print "<td align='center'><span title='$icmptypes{$keyicmp}[0]'><b>$protz ($icmptypes{$keyicmp}[1])</b></span></td>";
2471 last;
2472 }
2473 }
2474 }else{
2475 print"<td align='center'>$protz</td>";
2476 }
a0fb1099
AM
2477 @protocols=();
2478 #SOURCE
d4cb89d2 2479 my $ipfireiface;
af768a7e 2480 &getcolor($$hash{$key}[3],$$hash{$key}[4],\%customhost);
85860aff 2481 print"<td align='center' width='30%' $tdcolor>";
d4cb89d2 2482 if ($$hash{$key}[3] eq 'ipfire_src'){
daf400fa 2483 $ipfireiface=$Lang::tr{'fwdfw iface'};
d4cb89d2 2484 }
2a81ab0d
AM
2485 if ($$hash{$key}[3] eq 'std_net_src'){
2486 print &get_name($$hash{$key}[4]);
4f3bd0ca
AM
2487 }elsif ($$hash{$key}[3] eq 'src_addr'){
2488 my ($split1,$split2) = split("/",$$hash{$key}[4]);
2489 if ($split2 eq '32'){
2490 print $split1;
2491 }else{
2492 print $$hash{$key}[4];
2493 }
43d8be09 2494 }elsif ($$hash{$key}[4] eq 'RED1'){
d4cb89d2 2495 print "$ipfireiface $Lang::tr{'fwdfw red'}";
2be048ce
AM
2496 }elsif ($$hash{$key}[4] eq 'ALL'){
2497 print "$ipfireiface $Lang::tr{'all'}";
2a81ab0d 2498 }else{
2be048ce
AM
2499 if ($$hash{$key}[4] eq 'GREEN' || $$hash{$key}[4] eq 'ORANGE' || $$hash{$key}[4] eq 'BLUE' || $$hash{$key}[4] eq 'RED'){
2500 print "$ipfireiface $Lang::tr{lc($$hash{$key}[4])}";
2501 }else{
2502 print "$ipfireiface $$hash{$key}[4]";
2503 }
2a81ab0d 2504 }
15add1c8 2505 $tdcolor='';
a0fb1099 2506 #SOURCEPORT
2a81ab0d 2507 &getsrcport(\%$hash,$key);
2669161d 2508 #Is this a SNAT rule?
ac9e77e3 2509 if ($$hash{$key}[31] eq 'snat' && $$hash{$key}[28] eq 'ON'){
f1934a05
AM
2510 my $net=&get_name($$hash{$key}[29]);
2511 if ( ! $net){ $net=$$hash{$key}[29];}
2512 print"<br>->$net";
2669161d
AM
2513 if ($$hash{$key}[30] ne ''){
2514 print": $$hash{$key}[30]";
2515 }
2516 }
2a81ab0d
AM
2517 if ($$hash{$key}[17] eq 'ON'){
2518 $log="/images/on.gif";
2519 }else{
2520 $log="/images/off.gif";
2521 }
a0fb1099 2522 #LOGGING
2a81ab0d 2523 print<<END;
989d0fd7
MT
2524 </td>
2525 <td align='center'>
2526 <form method='POST' action=''>
2527 <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 ;'/>
2528 <input type='hidden' name='key' value='$key' />
2529 <input type='hidden' name='config' value='$config' />
2530 <input type='hidden' name='ACTION' value='$Lang::tr{'fwdfw togglelog'}' />
2531 </form>
2532 </td>
2a81ab0d 2533END
a0fb1099 2534 #TARGET
af768a7e 2535 &getcolor($$hash{$key}[5],$$hash{$key}[6],\%customhost);
2a81ab0d 2536 print<<END;
989d0fd7 2537 <td align='center' $tdcolor>
2a81ab0d 2538END
2669161d 2539 #Is this a DNAT rule?
ac9e77e3 2540 if ($$hash{$key}[31] eq 'dnat' && $$hash{$key}[28] eq 'ON'){
a0fb1099 2541 print "Firewall ($$hash{$key}[29])";
a6edca5a 2542 if($$hash{$key}[30] ne ''){
98cee89f 2543 $$hash{$key}[30]=~ tr/|/,/;
a6edca5a 2544 print": $$hash{$key}[30]";
2669161d 2545 }
989d0fd7 2546 print"<br>-&gt;";
2669161d 2547 }
0c733ab7 2548 if ($$hash{$key}[5] eq 'std_net_tgt' || $$hash{$key}[5] eq 'ipfire'){
cb4439f3 2549 if ($$hash{$key}[6] eq 'RED1'){
0c733ab7 2550 print "$Lang::tr{'red1'}";
d8afe3e2 2551 }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 2552 {
0c733ab7 2553 print &get_name($$hash{$key}[6]);
05d4f131 2554 }else{
b044bb05 2555 print $$hash{$key}[6];
05d4f131 2556 }
4f3bd0ca
AM
2557 }elsif ($$hash{$key}[5] eq 'tgt_addr'){
2558 my ($split1,$split2) = split("/",$$hash{$key}[6]);
2559 if ($split2 eq '32'){
2560 print $split1;
2561 }else{
2562 print $$hash{$key}[6];
2563 }
2a81ab0d 2564 }else{
cb4439f3 2565 print "$$hash{$key}[6]";
2a81ab0d 2566 }
12a43202 2567 $tdcolor='';
a0fb1099 2568 #TARGETPORT
2a81ab0d 2569 &gettgtport(\%$hash,$key);
93a5f4a5 2570 print"</td>";
a0fb1099 2571 #RULE ACTIVE
2a81ab0d
AM
2572 if($$hash{$key}[2] eq 'ON'){
2573 $gif="/images/on.gif"
2574
2575 }else{
2576 $gif="/images/off.gif"
2a81ab0d
AM
2577 }
2578 print<<END;
989d0fd7
MT
2579 <td width='3%' align='center'>
2580 <form method='POST' action=''>
2581 <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;' />
2582 <input type='hidden' name='key' value='$key' />
2583 <input type='hidden' name='config' value='$config' />
2584 <input type='hidden' name='ACTION' value='$Lang::tr{'fwdfw toggle'}' />
2585 </form>
2586 </td>
2587 <td width='3%' align='center'>
2588 <form method='POST' action=''>
2589 <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;' />
2590 <input type='hidden' name='key' value='$key' />
2591 <input type='hidden' name='config' value='$config' />
2592 <input type='hidden' name='ACTION' value='editrule' />
2593 </form>
2594 </td>
2595 <td width='3%' align='center'>
2596 <form method='POST' action=''>
2597 <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;' />
2598 <input type='hidden' name='key' value='$key' />
2599 <input type='hidden' name='config' value='$config' />
2600 <input type='hidden' name='ACTION' value='copyrule' />
2601 </form>
2602 </td>
2603 <td width='3%' align='center'>
2604 <form method='POST' action=''>
2605 <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;' />
2606 <input type='hidden' name='key' value='$key' />
2607 <input type='hidden' name='config' value='$config' />
2608 <input type='hidden' name='ACTION' value='deleterule' />
2609 </form>
2610 </td>
2a81ab0d
AM
2611END
2612 if (exists $$hash{$key-1}){
2613 print<<END;
989d0fd7
MT
2614 <td width='3%' align='center'>
2615 <form method='POST' action=''>
2616 <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;' />
2617 <input type='hidden' name='key' value='$key' />
2618 <input type='hidden' name='config' value='$config' />
2619 <input type='hidden' name='ACTION' value='moveup' />
2620 </form>
2621 </td>
2a81ab0d
AM
2622END
2623 }else{
989d0fd7 2624 print"<td width='3%'></td>";
2a81ab0d 2625 }
989d0fd7 2626
2a81ab0d
AM
2627 if (exists $$hash{$key+1}){
2628 print<<END;
989d0fd7
MT
2629 <td width='3%' align='center'>
2630 <form method='POST' action=''>
2631 <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;' />
2632 <input type='hidden' name='key' value='$key' />
2633 <input type='hidden' name='config' value='$config' />
2634 <input type='hidden' name='ACTION' value='movedown' />
2635 </form>
2636 </td>
2637 </tr>
2a81ab0d
AM
2638END
2639 }else{
989d0fd7 2640 print"<td width='3%'></td></tr>";
2a81ab0d 2641 }
15add1c8 2642 #REMARK
3b2ad4a1 2643 if ($optionsfw{'SHOWREMARK'} eq 'on' && $$hash{$key}[16] ne ''){
989d0fd7
MT
2644 print <<END;
2645 <tr bgcolor='$color'>
2646 <td>&nbsp;</td>
2647 <td bgcolor='$rulecolor'></td>
2648 <td colspan='10'>
2649 &nbsp; <em>$$hash{$key}[16]</em>
2650 </td>
2651 </tr>
2652END
3b2ad4a1 2653 }
989d0fd7 2654
3b2ad4a1 2655 if ($$hash{$key}[18] eq 'ON'){
533a2da3
AM
2656 #TIMEFRAME
2657 if ($$hash{$key}[18] eq 'ON'){
2658 my @days=();
2659 if($$hash{$key}[19] ne ''){push (@days,$Lang::tr{'fwdfw wd_mon'});}
2660 if($$hash{$key}[20] ne ''){push (@days,$Lang::tr{'fwdfw wd_tue'});}
2661 if($$hash{$key}[21] ne ''){push (@days,$Lang::tr{'fwdfw wd_wed'});}
2662 if($$hash{$key}[22] ne ''){push (@days,$Lang::tr{'fwdfw wd_thu'});}
2663 if($$hash{$key}[23] ne ''){push (@days,$Lang::tr{'fwdfw wd_fri'});}
2664 if($$hash{$key}[24] ne ''){push (@days,$Lang::tr{'fwdfw wd_sat'});}
2665 if($$hash{$key}[25] ne ''){push (@days,$Lang::tr{'fwdfw wd_sun'});}
2666 my $weekdays=join(",",@days);
2667 if (@days){
3b2ad4a1 2668 print"<tr bgcolor='$color'>";
989d0fd7 2669 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 2670 }
3b2ad4a1 2671 }
96502a5a 2672 }
533a2da3 2673 print"<tr bgcolor='FFFFFF'><td colspan='13' height='1'></td></tr>";
2a81ab0d 2674 }
c03d4a5e
MT
2675 } elsif ($optionsfw{'SHOWTABLES'} eq 'on') {
2676 print <<END;
2677 <tr>
2678 <td colspan='7' height='30' bgcolor=$color{'color22'} align='center'>$Lang::tr{'fwhost empty'}</td>
2679 </tr>
2680END
2681 }
2682
2683 #SHOW FINAL RULE
2684 my $policy = 'fwdfw ' . $fwdfwsettings{'POLICY'};
2685 my $colour = "bgcolor='green'";
2686 if ($fwdfwsettings{'POLICY'} eq 'MODE1') {
2687 $colour = "bgcolor='darkred'";
2688 }
2689
2690 my $message;
2691 if (($config eq '/var/ipfire/firewall/config') && ($fwdfwsettings{'POLICY'} ne 'MODE1')) {
2692 print <<END;
2693 <tr>
2694 <td colspan='13'>&nbsp;</td>
2695 </tr>
2696 <tr>
2697 <td colspan='13'>
2698 <table width="100%" border='1' rules="cols" cellspacing='0'>
2699END
2700
2701 # GREEN
2702 print <<END;
2703 <tr>
2704 <td align='center'>
2705 <font color="$Header::colourgreen">$Lang::tr{'green'}</font>
2706 </td>
2707 <td align='center'>
2708 <font color="$Header::colourred">$Lang::tr{'red'}</font>
2709 ($Lang::tr{'fwdfw pol allow'})
2710 </td>
2711END
2712
2713 if (&Header::orange_used()) {
2714 print <<END;
2715 <td align='center'>
2716 <font color="$Header::colourorange">$Lang::tr{'orange'}</font>
2717 ($Lang::tr{'fwdfw pol allow'})
2718 </td>
2719END
2af92cf5 2720 }
c03d4a5e
MT
2721
2722 if (&Header::blue_used()) {
2723 print <<END;
2724 <td align='center'>
2725 <font color="$Header::colourblue">$Lang::tr{'blue'}</font>
2726 ($Lang::tr{'fwdfw pol allow'})
2727 </td>
2728END
515863e2 2729 }
a6485463 2730
cb051c57 2731 print"</tr>";
c03d4a5e
MT
2732
2733 # ORANGE
2734 if (&Header::orange_used()) {
2735 print <<END;
2736 <tr>
2737 <td align='center' width='20%'>
2738 <font color="$Header::colourorange">$Lang::tr{'orange'}</font>
2739 </td>
2740 <td align='center'>
2741 <font color="$Header::colourred">$Lang::tr{'red'}</font>
2742 ($Lang::tr{'fwdfw pol allow'})
2743 </td>
2744 <td align='center'>
2745 <font color="$Header::colourgreen">$Lang::tr{'green'}</font>
2746 ($Lang::tr{'fwdfw pol block'})
2747 </td>
2748END
2749
2750 if (&Header::blue_used()) {
2751 print <<END;
2752 <td align='center'>
2753 <font color="$Header::colourblue">$Lang::tr{'blue'}</font>
2754 ($Lang::tr{'fwdfw pol block'})
2755 </td>
2756END
2757 }
2758
cb051c57
AM
2759 print"</tr>";
2760 }
c03d4a5e
MT
2761
2762 if (&Header::blue_used()) {
2763 print <<END;
2764 <tr>
2765 <td align='center'>
12b901f8 2766 <font color="$Header::colourblue">$Lang::tr{'blue'}</font>
c03d4a5e
MT
2767 </td>
2768 <td align='center'>
2769 <font color="$Header::colourred">$Lang::tr{'red'}</font>
2770 ($Lang::tr{'fwdfw pol allow'})
2771 </td>
2772END
2773
2774 if (&Header::orange_used()) {
2775 print <<END;
2776 <td align='center'>
2777 <font color="$Header::colourorange">$Lang::tr{'orange'}</font>
2778 ($Lang::tr{'fwdfw pol block'})
2779 </td>
2780 <td align='center'>
2781 <font color="$Header::colourgreen">$Lang::tr{'green'}</font>
2782 ($Lang::tr{'fwdfw pol block'})
2783 </td>
2784END
2785 }
2786
cb051c57
AM
2787 print"</tr>";
2788 }
c03d4a5e
MT
2789
2790 print <<END;
2791 </table>
2792 </td>
2793 </tr>
2794END
2795
2796 $message = $Lang::tr{'fwdfw pol allow'};
2797
35ca8e02 2798 } elsif ($config eq '/var/ipfire/firewall/outgoing' && ($fwdfwsettings{'POLICY1'} ne 'MODE1')) {
c03d4a5e 2799 $message = $Lang::tr{'fwdfw pol allow'};
35ca8e02 2800 $colour = "bgcolor='green'";
c03d4a5e
MT
2801 } else {
2802 $message = $Lang::tr{'fwdfw pol block'};
2803 $colour = "bgcolor='darkred'";
2804 }
2805
2806 if ($message) {
2807 print <<END;
2808 <tr>
2809 <td $colour align='center' colspan='13'>
2810 <font color='#FFFFFF'>$Lang::tr{'policy'}: $message</font>
2811 </td>
2812 </tr>
2813END
cb051c57 2814 }
c03d4a5e
MT
2815
2816 print "</table>";
2817 print "<br>";
2818
2819 &Header::closebox();
a6485463 2820}
c03d4a5e
MT
2821
2822&Header::closebigbox();
2823&Header::closepage();