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