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