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