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