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