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