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