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