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