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