]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/cgi-bin/fwhosts.cgi
Merge commit '961f3dbcd8675f8b62ecd2404a709e47ec2ae343' into fifteen
[people/teissler/ipfire-2.x.git] / html / cgi-bin / fwhosts.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 use strict;
22
23 # enable only the following on debugging purpose
24 use warnings;
25 use Sort::Naturally;
26 use CGI::Carp 'fatalsToBrowser';
27 no warnings 'uninitialized';
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31
32 my %fwhostsettings=();
33 my %customnetwork=();
34 my %customhost=();
35 my %customgrp=();
36 my %customservice=();
37 my %customservicegrp=();
38 my %ccdnet=();
39 my %ccdhost=();
40 my %ipsecconf=();
41 my %icmptypes=();
42 my %color=();
43 my %defaultNetworks=();
44 my %mainsettings=();
45 my %ownnet=();
46 my %ipsecsettings=();
47 my %fwfwd=();
48 my %fwinp=();
49 my %fwout=();
50 my %ovpnsettings=();
51
52
53 my $errormessage;
54 my $hint;
55 my $update=0;
56 my $confignet = "${General::swroot}/fwhosts/customnetworks";
57 my $confighost = "${General::swroot}/fwhosts/customhosts";
58 my $configgrp = "${General::swroot}/fwhosts/customgroups";
59 my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
60 my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
61 my $configipsec = "${General::swroot}/vpn/config";
62 my $configsrv = "${General::swroot}/fwhosts/customservices";
63 my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
64 my $fwconfigfwd = "${General::swroot}/firewall/config";
65 my $fwconfiginp = "${General::swroot}/firewall/input";
66 my $fwconfigout = "${General::swroot}/firewall/outgoing";
67 my $configovpn = "${General::swroot}/ovpn/settings";
68 my $tdcolor='';
69 my $configipsecrw = "${General::swroot}/vpn/settings";
70
71 unless (-e $confignet) { system("touch $confignet"); }
72 unless (-e $confighost) { system("touch $confighost"); }
73 unless (-e $configgrp) { system("touch $configgrp"); }
74 unless (-e $configsrv) { system("touch $configsrv"); }
75 unless (-e $configsrvgrp) { system("touch $configsrvgrp"); }
76
77 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
78 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
79 &General::readhash("${General::swroot}/ethernet/settings", \%ownnet);
80 &General::readhash("$configovpn", \%ovpnsettings);
81 &General::readhasharray("$configipsec", \%ipsecconf);
82 &General::readhash("$configipsecrw", \%ipsecsettings);
83
84 &Header::getcgihash(\%fwhostsettings);
85
86 &Header::showhttpheaders();
87 &Header::openpage($Lang::tr{'fwhost hosts'}, 1, '');
88 &Header::openbigbox('100%', 'center');
89
90 #### JAVA SCRIPT ####
91 print<<END;
92 <script>
93 var PROTOCOLS_WITH_PORTS = ["TCP", "UDP"];
94 var update_protocol = function() {
95 var protocol = \$("#protocol").val();
96
97 if (protocol === undefined)
98 return;
99
100 // Check if we are dealing with a protocol, that knows ports.
101 if (\$.inArray(protocol, PROTOCOLS_WITH_PORTS) >= 0) {
102 \$("#PORT").show();
103 \$("#PROTOKOLL").hide();
104 } else {
105 \$("#PORT").hide();
106 \$("#PROTOKOLL").show();
107 }
108 };
109
110 \$(document).ready(function() {
111 var protocol = \$("#protocol").val();
112 \$("#protocol").change(update_protocol);
113 update_protocol();
114 // Automatically select radio buttons when corresponding
115 // dropdown menu changes.
116 \$("select").change(function() {
117 var id = \$(this).attr("name");
118 \$('#' + id).prop("checked", true);
119 });
120 });
121 </script>
122 END
123
124 ## ACTION ####
125 # Update
126 if ($fwhostsettings{'ACTION'} eq 'updatenet' )
127 {
128 &General::readhasharray("$confignet", \%customnetwork);
129 foreach my $key (keys %customnetwork)
130 {
131 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'})
132 {
133 $fwhostsettings{'orgname'} = $customnetwork{$key}[0];
134 $fwhostsettings{'orgip'} = $customnetwork{$key}[1];
135 $fwhostsettings{'orgsub'} = $customnetwork{$key}[2];
136 $fwhostsettings{'netremark'} = $customnetwork{$key}[3];
137 $fwhostsettings{'count'} = $customnetwork{$key}[4];
138 delete $customnetwork{$key};
139
140 }
141 }
142 &General::writehasharray("$confignet", \%customnetwork);
143 $fwhostsettings{'actualize'} = 'on';
144 $fwhostsettings{'ACTION'} = 'savenet';
145 }
146 if ($fwhostsettings{'ACTION'} eq 'updatehost')
147 {
148 my ($ip,$subnet);
149 &General::readhasharray("$confighost", \%customhost);
150 foreach my $key (keys %customhost)
151 {
152 if($customhost{$key}[0] eq $fwhostsettings{'orgname'})
153 {
154 if ($customhost{$key}[1] eq 'ip'){
155 ($ip,$subnet) = split (/\//,$customhost{$key}[2]);
156 }else{
157 $ip = $customhost{$key}[2];
158 }
159 $fwhostsettings{'orgip'} = $ip;
160 $fwhostsettings{'count'} = $customhost{$key}[4];
161 delete $customhost{$key};
162 &General::writehasharray("$confighost", \%customhost);
163 }
164 }
165 $fwhostsettings{'actualize'} = 'on';
166 if($fwhostsettings{'orgip'}){
167 $fwhostsettings{'ACTION'} = 'savehost';
168 }else{
169 $fwhostsettings{'ACTION'} = $Lang::tr{'fwhost newhost'};
170 }
171 }
172 if ($fwhostsettings{'ACTION'} eq 'updateservice')
173 {
174 my $count=0;
175 my $needrules=0;
176 $errormessage=&checkports(\%customservice);
177 if ($fwhostsettings{'oldsrvname'} ne $fwhostsettings{'SRV_NAME'} && !&checkgroup($fwhostsettings{'SRV_NAME'})){
178 $errormessage=$Lang::tr{'fwhost err grpexist'};
179 }
180 if (!$errormessage){
181 &General::readhasharray("$configsrv", \%customservice);
182 foreach my $key (keys %customservice)
183 {
184 if ($customservice{$key}[0] eq $fwhostsettings{'oldsrvname'})
185 {
186 delete $customservice{$key};
187 &General::writehasharray("$configsrv", \%customservice);
188 last;
189 }
190 }
191 if ($fwhostsettings{'PROT'} ne 'ICMP'){
192 $fwhostsettings{'ICMP_TYPES'}='BLANK';
193 }
194 my $key1 = &General::findhasharraykey(\%customservice);
195 #find out short ICMP-TYPE
196 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
197 foreach my $key (keys %icmptypes){
198 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwhostsettings{'ICMP_TYPES'}){
199 $fwhostsettings{'ICMP_TYPES'}=$icmptypes{$key}[0];
200 }
201 }
202 foreach my $i (0 .. 4) { $customservice{$key1}[$i] = "";}
203 $customservice{$key1}[0] = $fwhostsettings{'SRV_NAME'};
204 $customservice{$key1}[1] = $fwhostsettings{'SRV_PORT'};
205 $customservice{$key1}[2] = $fwhostsettings{'PROT'};
206 $customservice{$key1}[3] = $fwhostsettings{'ICMP_TYPES'};
207 &General::writehasharray("$configsrv", \%customservice);
208 #check if we need to update firewallrules
209 if ($fwhostsettings{'SRV_NAME'} ne $fwhostsettings{'oldsrvname'}){
210 if ( ! -z $fwconfigfwd ){
211 &General::readhasharray("$fwconfigfwd", \%fwfwd);
212 foreach my $key (sort keys %fwfwd){
213 if ($fwfwd{$key}[15] eq $fwhostsettings{'oldsrvname'}){
214 $fwfwd{$key}[15] = $fwhostsettings{'SRV_NAME'};
215 }
216 }
217 &General::writehasharray("$fwconfigfwd", \%fwfwd);
218 }
219 if ( ! -z $fwconfiginp ){
220 &General::readhasharray("$fwconfiginp", \%fwinp);
221 foreach my $line (sort keys %fwinp){
222 if ($fwfwd{$line}[15] eq $fwhostsettings{'oldsrvname'}){
223 $fwfwd{$line}[15] = $fwhostsettings{'SRV_NAME'};
224 }
225 }
226 &General::writehasharray("$fwconfiginp", \%fwinp);
227 }
228 if ( ! -z $fwconfigout ){
229 &General::readhasharray("$fwconfigout", \%fwout);
230 foreach my $line (sort keys %fwout){
231 if ($fwout{$line}[15] eq $fwhostsettings{'oldsrvname'}){
232 $fwout{$line}[15] = $fwhostsettings{'SRV_NAME'};
233 }
234 }
235 &General::writehasharray("$fwconfigout", \%fwout);
236 }
237 #check if we need to update groups
238 &General::readhasharray("$configsrvgrp", \%customservicegrp);
239 foreach my $key (sort keys %customservicegrp){
240 if($customservicegrp{$key}[2] eq $fwhostsettings{'oldsrvname'}){
241 $customservicegrp{$key}[2] = $fwhostsettings{'SRV_NAME'};
242 &checkrulereload($customservicegrp{$key}[0]);
243 }
244 }
245 &General::writehasharray("$configsrvgrp", \%customservicegrp);
246 }
247 &checkrulereload($fwhostsettings{'SRV_NAME'});
248 $fwhostsettings{'SRV_NAME'} = '';
249 $fwhostsettings{'SRV_PORT'} = '';
250 $fwhostsettings{'PROT'} = '';
251 $fwhostsettings{'ICMP'} = '';
252 $fwhostsettings{'oldsrvicmp'} = '';
253 $fwhostsettings{'updatesrv'} = '';
254 }else{
255 $fwhostsettings{'SRV_NAME'} = $fwhostsettings{'oldsrvname'};
256 $fwhostsettings{'SRV_PORT'} = $fwhostsettings{'oldsrvport'};
257 $fwhostsettings{'PROT'} = $fwhostsettings{'oldsrvprot'};
258 $fwhostsettings{'ICMP'} = $fwhostsettings{'oldsrvicmp'};
259 $fwhostsettings{'updatesrv'}= 'on';
260 }
261 &addservice;
262 }
263 # save
264 if ($fwhostsettings{'ACTION'} eq 'savenet' )
265 {
266 my $needrules=0;
267 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
268 #check if all fields are set
269 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
270 {
271 $errormessage=$errormessage.$Lang::tr{'fwhost err empty'};
272 &addnet;
273 &viewtablenet;
274 }else{
275 #check valid ip
276 if (!&General::validipandmask($fwhostsettings{'IP'}."/".$fwhostsettings{'SUBNET'}))
277 {
278 $errormessage=$errormessage.$Lang::tr{'fwhost err addr'};
279 $fwhostsettings{'BLK_HOST'} ='readonly';
280 $fwhostsettings{'NOCHECK'} ='false';
281 $fwhostsettings{'error'} ='on';
282 }
283 #check remark
284 if ($fwhostsettings{'NETREMARK'} ne '' && !&validremark($fwhostsettings{'NETREMARK'})){
285 $errormessage=$Lang::tr{'fwhost err remark'};
286 $fwhostsettings{'error'} ='on';
287 }
288 #check if subnet is sigle host
289 if(&General::iporsubtocidr($fwhostsettings{'SUBNET'}) eq '32')
290 {
291 $errormessage=$errormessage.$Lang::tr{'fwhost err sub32'};
292 }
293 if($fwhostsettings{'error'} ne 'on'){
294 #check if we use one of ipfire's networks (green,orange,blue)
295 if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &General::IpInSubnet($fwhostsettings{'IP'},$ownnet{'GREEN_NETADDRESS'},$ownnet{'GREEN_NETMASK'}))
296 {
297 $errormessage=$errormessage.$Lang::tr{'ccd err green'}."<br>";
298 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
299 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
300 }
301 if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &General::IpInSubnet($fwhostsettings{'IP'},$ownnet{'ORANGE_NETADDRESS'},$ownnet{'ORANGE_NETMASK'}))
302 {
303 $errormessage=$errormessage.$Lang::tr{'ccd err orange'}."<br>";
304 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
305 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
306 }
307 if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &General::IpInSubnet($fwhostsettings{'IP'},$ownnet{'BLUE_NETADDRESS'},$ownnet{'BLUE_NETMASK'}))
308 {
309 $errormessage=$errormessage.$Lang::tr{'ccd err blue'}."<br>";
310 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
311 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
312 }
313 if (($ownnet{'RED_NETADDRESS'} ne '' && $ownnet{'RED_NETADDRESS'} ne '0.0.0.0') && &General::IpInSubnet($fwhostsettings{'IP'},$ownnet{'RED_NETADDRESS'},$ownnet{'RED_NETMASK'}))
314 {
315 $errormessage=$errormessage.$Lang::tr{'ccd err red'}."<br>";
316 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
317 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
318 }
319 }
320 #only check plausi when no error till now
321 if (!$errormessage){
322 &plausicheck("editnet");
323 }
324 #check if network ip is part of an already used one
325 if(&checksubnet(\%customnetwork))
326 {
327 $errormessage=$errormessage.$Lang::tr{'fwhost err partofnet'};
328 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
329 }
330 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newnet'} ne 'on' && $errormessage)
331 {
332 $fwhostsettings{'actualize'} = '';
333 my $key = &General::findhasharraykey (\%customnetwork);
334 foreach my $i (0 .. 3) { $customnetwork{$key}[$i] = "";}
335 $customnetwork{$key}[0] = $fwhostsettings{'orgname'} ;
336 $customnetwork{$key}[1] = $fwhostsettings{'orgip'} ;
337 $customnetwork{$key}[2] = $fwhostsettings{'orgsub'};
338 $customnetwork{$key}[3] = $fwhostsettings{'orgnetremark'};
339 &General::writehasharray("$confignet", \%customnetwork);
340 undef %customnetwork;
341 }
342 if (!$errormessage){
343
344 &General::readhasharray("$confignet", \%customnetwork);
345 if ($fwhostsettings{'ACTION'} eq 'updatenet'){
346 if ($fwhostsettings{'update'} == '0'){
347 foreach my $key (keys %customnetwork) {
348 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'}){
349 delete $customnetwork{$key};
350 last;
351 }
352 }
353 }
354 }
355 #get count if actualize is 'on'
356 if($fwhostsettings{'actualize'} eq 'on'){
357 $fwhostsettings{'actualize'} = '';
358 #check if we need to reload rules
359 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'}){
360 $needrules='on';
361 }
362 if ($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
363 #check if we need to update groups
364 &General::readhasharray("$configgrp", \%customgrp);
365 foreach my $key (sort keys %customgrp){
366 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
367 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
368 last;
369 }
370 }
371 &General::writehasharray("$configgrp", \%customgrp);
372 #check if we need to update firewallrules
373 if ( ! -z $fwconfigfwd ){
374 &General::readhasharray("$fwconfigfwd", \%fwfwd);
375 foreach my $line (sort keys %fwfwd){
376 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
377 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
378 }
379 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
380 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
381 }
382 }
383 &General::writehasharray("$fwconfigfwd", \%fwfwd);
384 }
385 if ( ! -z $fwconfiginp ){
386 &General::readhasharray("$fwconfiginp", \%fwinp);
387 foreach my $line (sort keys %fwinp){
388 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
389 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
390 }
391 }
392 &General::writehasharray("$fwconfiginp", \%fwinp);
393 }
394 }
395 }
396 my $key = &General::findhasharraykey (\%customnetwork);
397 foreach my $i (0 .. 3) { $customnetwork{$key}[$i] = "";}
398 $fwhostsettings{'SUBNET'} = &General::iporsubtocidr($fwhostsettings{'SUBNET'});
399 $customnetwork{$key}[0] = $fwhostsettings{'HOSTNAME'};
400 #convert ip when leading '0' in byte
401 $fwhostsettings{'IP'} =&General::ip2dec($fwhostsettings{'IP'});
402 $fwhostsettings{'IP'} =&General::dec2ip($fwhostsettings{'IP'});
403 $customnetwork{$key}[1] = &General::getnetworkip($fwhostsettings{'IP'},$fwhostsettings{'SUBNET'}) ;
404 $customnetwork{$key}[2] = &General::iporsubtodec($fwhostsettings{'SUBNET'}) ;
405 $customnetwork{$key}[3] = $fwhostsettings{'NETREMARK'};
406 &General::writehasharray("$confignet", \%customnetwork);
407 $fwhostsettings{'IP'}=$fwhostsettings{'IP'}."/".&General::iporsubtodec($fwhostsettings{'SUBNET'});
408 undef %customnetwork;
409 $fwhostsettings{'HOSTNAME'}='';
410 $fwhostsettings{'IP'}='';
411 $fwhostsettings{'SUBNET'}='';
412 $fwhostsettings{'NETREMARK'}='';
413 #check if an edited net affected groups and need to reload rules
414 if ($needrules eq 'on'){
415 &General::firewall_config_changed();
416 }
417 &addnet;
418 &viewtablenet;
419 }else {
420 &addnet;
421 &viewtablenet;
422 }
423 }
424 }
425 if ($fwhostsettings{'ACTION'} eq 'savehost')
426 {
427 my $needrules=0;
428 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
429 $fwhostsettings{'SUBNET'}='32';
430 #check if all fields are set
431 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
432 {
433 $errormessage=$errormessage.$Lang::tr{'fwhost err empty'};
434 $fwhostsettings{'ACTION'} = 'edithost';
435 }else{
436 if($fwhostsettings{'IP'}=~/^([0-9a-fA-F]{1,2}:){5}[0-9a-fA-F]{1,2}$/){
437 $fwhostsettings{'type'} = 'mac';
438 }elsif($fwhostsettings{'IP'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
439 $fwhostsettings{'type'} = 'ip';
440 }else{
441 $fwhostsettings{'type'} = '';
442 $errormessage=$Lang::tr{'fwhost err ipmac'};
443 }
444 #check remark
445 if ($fwhostsettings{'HOSTREMARK'} ne '' && !&validremark($fwhostsettings{'HOSTREMARK'})){
446 $errormessage=$Lang::tr{'fwhost err remark'};
447 }
448 #CHECK IP-PART
449 if ($fwhostsettings{'type'} eq 'ip'){
450 #check for subnet
451 if (rindex($fwhostsettings{'IP'},'/') eq '-1' ){
452 if($fwhostsettings{'type'} eq 'ip' && !&General::validipandmask($fwhostsettings{'IP'}."/32"))
453 {
454 $errormessage.=$errormessage.$Lang::tr{'fwhost err ip'};
455 $fwhostsettings{'error'}='on';
456 }
457 }elsif(rindex($fwhostsettings{'IP'},'/') ne '-1' ){
458 $errormessage=$errormessage.$Lang::tr{'fwhost err ipwithsub'};
459 $fwhostsettings{'error'}='on';
460 }
461 #check if net or broadcast
462 my @tmp= split (/\./,$fwhostsettings{'IP'});
463 if (($tmp[3] eq "0") || ($tmp[3] eq "255")){
464 $errormessage=$Lang::tr{'fwhost err hostip'};
465 }
466 }
467 #only check plausi when no error till now
468 if (!$errormessage){
469 &plausicheck("edithost");
470 }
471 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newhost'} ne 'on' && $errormessage){
472 $fwhostsettings{'actualize'} = '';
473 my $key = &General::findhasharraykey (\%customhost);
474 foreach my $i (0 .. 3) { $customhost{$key}[$i] = "";}
475 $customhost{$key}[0] = $fwhostsettings{'orgname'} ;
476 $customhost{$key}[1] = $fwhostsettings{'type'} ;
477 if($customhost{$key}[1] eq 'ip'){
478 $customhost{$key}[2] = $fwhostsettings{'orgip'}."/".&General::iporsubtodec($fwhostsettings{'SUBNET'});
479 }else{
480 $customhost{$key}[2] = $fwhostsettings{'orgip'};
481 }
482 $customhost{$key}[3] = $fwhostsettings{'orgremark'};
483 &General::writehasharray("$confighost", \%customhost);
484 undef %customhost;
485 }
486 if (!$errormessage){
487 #get count if host was edited
488 if($fwhostsettings{'actualize'} eq 'on'){
489 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'}){
490 $needrules='on';
491 }
492 if($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
493 #check if we need to update groups
494 &General::readhasharray("$configgrp", \%customgrp);
495 foreach my $key (sort keys %customgrp){
496 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
497 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
498 }
499 }
500 &General::writehasharray("$configgrp", \%customgrp);
501 #check if we need to update firewallrules
502 if ( ! -z $fwconfigfwd ){
503 &General::readhasharray("$fwconfigfwd", \%fwfwd);
504 foreach my $line (sort keys %fwfwd){
505 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
506 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
507 }
508 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
509 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
510 }
511 }
512 &General::writehasharray("$fwconfigfwd", \%fwfwd);
513 }
514 if ( ! -z $fwconfiginp ){
515 &General::readhasharray("$fwconfiginp", \%fwinp);
516 foreach my $line (sort keys %fwinp){
517 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
518 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
519 }
520 }
521 &General::writehasharray("$fwconfiginp", \%fwinp);
522 }
523 }
524 }
525 my $key = &General::findhasharraykey (\%customhost);
526 foreach my $i (0 .. 3) { $customhost{$key}[$i] = "";}
527 $customhost{$key}[0] = $fwhostsettings{'HOSTNAME'} ;
528 $customhost{$key}[1] = $fwhostsettings{'type'} ;
529 if ($fwhostsettings{'type'} eq 'ip'){
530 #convert ip when leading '0' in byte
531 $fwhostsettings{'IP'}=&General::ip2dec($fwhostsettings{'IP'});
532 $fwhostsettings{'IP'}=&General::dec2ip($fwhostsettings{'IP'});
533 $customhost{$key}[2] = $fwhostsettings{'IP'}."/".&General::iporsubtodec($fwhostsettings{'SUBNET'});
534 }else{
535 $customhost{$key}[2] = $fwhostsettings{'IP'};
536 }
537 $customhost{$key}[3] = $fwhostsettings{'HOSTREMARK'};
538 &General::writehasharray("$confighost", \%customhost);
539 undef %customhost;
540 $fwhostsettings{'HOSTNAME'}='';
541 $fwhostsettings{'IP'}='';
542 $fwhostsettings{'type'}='';
543 $fwhostsettings{'HOSTREMARK'}='';
544 #check if we need to update rules while host was edited
545 if($needrules eq 'on'){
546 &General::firewall_config_changed();
547 }
548 &addhost;
549 &viewtablehost;
550 }else{
551 &addhost;
552 &viewtablehost;
553 }
554 }
555 }
556 if ($fwhostsettings{'ACTION'} eq 'savegrp')
557 {
558 my $grp=$fwhostsettings{'grp_name'};
559 my $rem=$fwhostsettings{'remark'};
560 my $count;
561 my $type;
562 my $updcounter='off';
563 my @target;
564 my @newgrp;
565 &General::readhasharray("$configgrp", \%customgrp);
566 &General::readhasharray("$confignet", \%customnetwork);
567 &General::readhasharray("$confighost", \%customhost);
568 &General::readhasharray("$fwconfigfwd", \%fwfwd);
569 &General::readhasharray("$fwconfiginp", \%fwinp);
570 &General::readhasharray("$fwconfigout", \%fwout);
571 #check name
572 if (!&validhostname($grp)){$errormessage.=$Lang::tr{'fwhost err name'};}
573 #check existing name
574 if (!&checkgroup($grp) && $fwhostsettings{'update'} ne 'on'){$errormessage.=$Lang::tr{'fwhost err grpexist'};}
575 #check remark
576 if ($rem ne '' && !&validremark($rem) && $fwhostsettings{'update'} ne 'on'){
577 $errormessage.=$Lang::tr{'fwhost err remark'};
578 }
579 if ($fwhostsettings{'update'} eq 'on'){
580 #check standard networks
581 if ($fwhostsettings{'grp2'} eq 'std_net'){
582 @target=$fwhostsettings{'DEFAULT_SRC_ADR'};
583 $type='Standard Network';
584 }
585 #check custom networks
586 if ($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} ne ''){
587 @target=$fwhostsettings{'CUST_SRC_NET'};
588 $updcounter='net';
589 $type='Custom Network';
590 }elsif($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} eq ''){
591 $errormessage=$Lang::tr{'fwhost err groupempty'}."<br>";
592 $fwhostsettings{'grp_name'}='';
593 $fwhostsettings{'remark'}='';
594 }
595 #check custom addresses
596 if ($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} ne ''){
597 @target=$fwhostsettings{'CUST_SRC_HOST'};
598 $updcounter='host';
599 $type='Custom Host';
600 }elsif($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} eq ''){
601 $errormessage=$Lang::tr{'fwhost err groupempty'}."<br>";
602 $fwhostsettings{'grp_name'}='';
603 $fwhostsettings{'remark'}='';
604 }
605 #get address from ovpn ccd static net
606 if ($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} ne ''){
607 @target=$fwhostsettings{'OVPN_CCD_NET'};
608 $type='OpenVPN static network';
609 }elsif($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} eq ''){
610 $errormessage=$Lang::tr{'fwhost err groupempty'};
611 $fwhostsettings{'grp_name'}='';
612 $fwhostsettings{'remark'}='';
613 }
614 #get address from ovpn ccd static host
615 if ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} ne ''){
616 @target=$fwhostsettings{'OVPN_CCD_HOST'};
617 $type='OpenVPN static host';
618 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} eq ''){
619 $errormessage=$Lang::tr{'fwhost err groupempty'};
620 }
621 #get address from ovpn ccd Net-2-Net
622 if ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} ne ''){
623 @target=$fwhostsettings{'OVPN_N2N'};
624 $type='OpenVPN N-2-N';
625 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} eq ''){
626 $errormessage=$Lang::tr{'fwhost err groupempty'};
627 $fwhostsettings{'grp_name'}='';
628 $fwhostsettings{'remark'}='';
629 }
630 #get address from IPSEC HOST
631 if ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} ne ''){
632 @target=$fwhostsettings{'IPSEC_HOST'};
633 $type='IpSec Host';
634 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} eq ''){
635 $errormessage=$Lang::tr{'fwhost err groupempty'};
636 $fwhostsettings{'grp_name'}='';
637 $fwhostsettings{'remark'}='';
638 }
639 #get address from IPSEC NETWORK
640 if ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} ne ''){
641 @target=$fwhostsettings{'IPSEC_NET'};
642 $type='IpSec Network';
643 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} eq ''){
644 $errormessage=$Lang::tr{'fwhost err groupempty'};
645 $fwhostsettings{'grp_name'}='';
646 $fwhostsettings{'remark'}='';
647 }
648 #check if host/net exists in grp
649
650 my $test="$grp,$fwhostsettings{'oldremark'},@target";
651 foreach my $key (keys %customgrp) {
652 my $test1="$customgrp{$key}[0],$customgrp{$key}[1],$customgrp{$key}[2]";
653 if ($test1 eq $test){
654 $errormessage=$Lang::tr{'fwhost err isingrp'};
655 $fwhostsettings{'update'} = 'on';
656 }
657 }
658 }
659
660 if (!$errormessage){
661 #on first save, we have an empty @target, so fill it with nothing
662 my $targetvalues=@target;
663 if ($targetvalues == '0'){
664 @target="none";
665 }
666 #on update, we have to delete the dummy entry
667 foreach my $key (keys %customgrp){
668 if ($customgrp{$key}[0] eq $grp && $customgrp{$key}[2] eq "none"){
669 delete $customgrp{$key};
670 last;
671 }
672 }
673 &General::writehasharray("$configgrp", \%customgrp);
674 &General::readhasharray("$configgrp", \%customgrp);
675 #create array with new lines
676 foreach my $line (@target){
677 push (@newgrp,"$grp,$rem,$line");
678 }
679 #append new entries
680 my $key = &General::findhasharraykey (\%customgrp);
681 foreach my $line (@newgrp){
682 foreach my $i (0 .. 3) { $customgrp{$key}[$i] = "";}
683 my ($a,$b,$c,$d) = split (",",$line);
684 $customgrp{$key}[0] = $a;
685 $customgrp{$key}[1] = $b;
686 $customgrp{$key}[2] = $c;
687 $customgrp{$key}[3] = $type;
688 }
689 &General::writehasharray("$configgrp", \%customgrp);
690 #update counter in Host/Net
691 $fwhostsettings{'update'}='on';
692 }
693 #check if ruleupdate is needed
694 my $netgrpcount=0;
695 $netgrpcount=&getnetcount($grp);
696 if($netgrpcount > 0 )
697 {
698 &General::firewall_config_changed();
699 }
700 &addgrp;
701 &viewtablegrp;
702 }
703 if ($fwhostsettings{'ACTION'} eq 'saveservice')
704 {
705 my $ICMP;
706 &General::readhasharray("$configsrv", \%customservice );
707 &General::readhasharray("$configgrp", \%customgrp);
708 $errormessage=&checkports(\%customservice);
709 if ($fwhostsettings{'PROT'} eq 'ICMP'){
710 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
711 foreach my $key (keys %icmptypes){
712 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwhostsettings{'ICMP_TYPES'}){
713 $ICMP=$icmptypes{$key}[0];
714 }
715 }
716 }
717 if($ICMP eq ''){$ICMP=$fwhostsettings{'ICMP_TYPES'};}
718 if ($fwhostsettings{'PROT'} ne 'ICMP'){$ICMP='BLANK';}
719 #Check if a group with the same name already exists
720 if (!&checkgroup($fwhostsettings{'SRV_NAME'})){
721 $errormessage = $Lang::tr{'fwhost err grpexist'};
722 }
723 if (!$errormessage){
724 my $key = &General::findhasharraykey (\%customservice);
725 foreach my $i (0 .. 4) { $customservice{$key}[$i] = "";}
726 $customservice{$key}[0] = $fwhostsettings{'SRV_NAME'};
727 $customservice{$key}[1] = $fwhostsettings{'SRV_PORT'};
728 $customservice{$key}[2] = $fwhostsettings{'PROT'};
729 $customservice{$key}[3] = $ICMP;
730 &General::writehasharray("$configsrv", \%customservice );
731 #reset fields
732 $fwhostsettings{'SRV_NAME'}='';
733 $fwhostsettings{'SRV_PORT'}='';
734 $fwhostsettings{'PROT'}='';
735 $fwhostsettings{'ICMP_TYPES'}='';
736 }
737 &addservice;
738 }
739 if ($fwhostsettings{'ACTION'} eq 'saveservicegrp')
740 {
741 my $prot;
742 my $port;
743 my $tcpcounter=0;
744 my $udpcounter=0;
745 &General::readhasharray("$configsrvgrp", \%customservicegrp );
746 &General::readhasharray("$configsrv", \%customservice );
747 $errormessage=&checkservicegroup;
748 #Check if we have more than 15 services from one Protocol in the group
749 #iptables can only handle 15 ports/portranges via multiport
750 foreach my $key (keys %customservicegrp){
751 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'}){
752 foreach my $key1 (keys %customservice){
753 $tcpcounter++ if $customservice{$key1}[2] eq 'TCP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0];
754 $tcpcounter++ if $customservice{$key1}[2] eq 'TCP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0] && $customservice{$key1}[1] =~m/:/i;
755 $udpcounter++ if $customservice{$key1}[2] eq 'UDP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0];
756 $udpcounter++ if $customservice{$key1}[2] eq 'UDP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0] && $customservice{$key1}[1] =~m/:/i;
757 }
758 }
759 }
760 if ($tcpcounter > 15){
761 $errormessage=$Lang::tr{'fwhost err maxservicetcp'};
762 }
763 if ($udpcounter > 15){
764 $errormessage=$Lang::tr{'fwhost err maxserviceudp'};
765 }
766 $tcpcounter=0;
767 $udpcounter=0;
768 #check remark
769 if ($fwhostsettings{'SRVGRP_REMARK'} ne '' && !&validremark($fwhostsettings{'SRVGRP_REMARK'})){
770 $errormessage .= $Lang::tr{'fwhost err remark'};
771 }
772 #Check if there is already a service with the same name
773 if(!&checkservice($fwhostsettings{'SRVGRP_NAME'})){
774 $errormessage .= $Lang::tr{'fwhost err srv exists'};
775 }
776 if (!$errormessage){
777 #on first save, we have to enter a dummy value
778 if ($fwhostsettings{'CUST_SRV'} eq ''){
779 $fwhostsettings{'CUST_SRV'}='none';
780 }
781 #on update, we have to delete the dummy entry
782 foreach my $key (keys %customservicegrp){
783 if ($customservicegrp{$key}[2] eq 'none'){
784 delete $customservicegrp{$key};
785 last;
786 }
787 }
788 &General::writehasharray("$configsrvgrp", \%customservicegrp );
789 #check if remark has also changed
790 if ($fwhostsettings{'SRVGRP_REMARK'} ne $fwhostsettings{'oldsrvgrpremark'} && $fwhostsettings{'updatesrvgrp'} eq 'on')
791 {
792 foreach my $key (keys %customservicegrp)
793 {
794 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvgrpremark'})
795 {
796 $customservicegrp{$key}[1]='';
797 $customservicegrp{$key}[1]=$fwhostsettings{'SRVGRP_REMARK'};
798 }
799 }
800 }
801 my $key = &General::findhasharraykey (\%customservicegrp);
802 foreach my $i (0 .. 2) { $customservice{$key}[$i] = "";}
803 $customservicegrp{$key}[0] = $fwhostsettings{'SRVGRP_NAME'};
804 $customservicegrp{$key}[1] = $fwhostsettings{'SRVGRP_REMARK'};
805 $customservicegrp{$key}[2] = $fwhostsettings{'CUST_SRV'};
806 &General::writehasharray("$configsrvgrp", \%customservicegrp );
807 $fwhostsettings{'updatesrvgrp'}='on';
808 }
809 &checkrulereload($fwhostsettings{'SRVGRP_NAME'});
810 &addservicegrp;
811 &viewtableservicegrp;
812 }
813 # edit
814 if ($fwhostsettings{'ACTION'} eq 'editnet')
815 {
816 &addnet;
817 &viewtablenet;
818 }
819 if ($fwhostsettings{'ACTION'} eq 'edithost')
820 {
821 &addhost;
822 &viewtablehost;
823 }
824 if ($fwhostsettings{'ACTION'} eq 'editgrp')
825 {
826 $fwhostsettings{'update'}='on';
827 &addgrp;
828 &viewtablegrp;
829 }
830 if ($fwhostsettings{'ACTION'} eq 'editservice')
831 {
832 $fwhostsettings{'updatesrv'}='on';
833 &addservice;
834 }
835 if ($fwhostsettings{'ACTION'} eq 'editservicegrp')
836 {
837 $fwhostsettings{'updatesrvgrp'} = 'on';
838 &addservicegrp;
839 &viewtableservicegrp;
840 }
841 # reset
842 if ($fwhostsettings{'ACTION'} eq 'resetnet')
843 {
844 $fwhostsettings{'HOSTNAME'} ="";
845 $fwhostsettings{'IP'} ="";
846 $fwhostsettings{'SUBNET'} ="";
847 &showmenu;
848 }
849 if ($fwhostsettings{'ACTION'} eq 'resethost')
850 {
851 $fwhostsettings{'HOSTNAME'} ="";
852 $fwhostsettings{'IP'} ="";
853 $fwhostsettings{'type'} ="";
854 &showmenu;
855 }
856 if ($fwhostsettings{'ACTION'} eq 'resetgrp')
857 {
858 $fwhostsettings{'grp_name'} ="";
859 $fwhostsettings{'remark'} ="";
860 &showmenu;
861 }
862 # delete
863 if ($fwhostsettings{'ACTION'} eq 'delnet')
864 {
865 &General::readhasharray("$confignet", \%customnetwork);
866 foreach my $key (keys %customnetwork) {
867 if($fwhostsettings{'key'} eq $customnetwork{$key}[0]){
868 delete $customnetwork{$key};
869 &General::writehasharray("$confignet", \%customnetwork);
870 last;
871 }
872 }
873 &addnet;
874 &viewtablenet;
875 }
876 if ($fwhostsettings{'ACTION'} eq 'delhost')
877 {
878 &General::readhasharray("$confighost", \%customhost);
879 foreach my $key (keys %customhost) {
880 if($fwhostsettings{'key'} eq $customhost{$key}[0]){
881 delete $customhost{$key};
882 &General::writehasharray("$confighost", \%customhost);
883 last;
884 }
885 }
886 &addhost;
887 &viewtablehost;
888 }
889 if ($fwhostsettings{'ACTION'} eq 'deletegrphost')
890 {
891 my $grpremark;
892 my $grpname;
893 &General::readhasharray("$configgrp", \%customgrp);
894 foreach my $key (keys %customgrp){
895 if($customgrp{$key}[0].",".$customgrp{$key}[1].",".$customgrp{$key}[2].",".$customgrp{$key}[3] eq $fwhostsettings{'delhost'}){
896 #decrease count from source host/net
897 if ($customgrp{$key}[3] eq 'Custom Network'){
898 &General::readhasharray("$confignet", \%customnetwork);
899 foreach my $key1 (keys %customnetwork){
900 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
901 $customnetwork{$key1}[4] = $customnetwork{$key1}[4]-1;
902 last;
903 }
904 }
905 &General::writehasharray("$confignet", \%customnetwork);
906 }
907 if ($customgrp{$key}[3] eq 'Custom Host'){
908 &General::readhasharray("$confighost", \%customhost);
909 foreach my $key1 (keys %customhost){
910 if ($customhost{$key1}[0] eq $customgrp{$key}[2]){
911 $customhost{$key1}[4] = $customhost{$key1}[4]-1;
912 last;
913 }
914 }
915 &General::writehasharray("$confighost", \%customhost);
916 }
917 $grpname=$customgrp{$key}[0];
918 $grpremark=$customgrp{$key}[1];
919 delete $customgrp{$key};
920 }
921 }
922 &General::writehasharray("$configgrp", \%customgrp);
923 if ($fwhostsettings{'grpcnt'} > 0){
924 &General::firewall_config_changed();
925 }
926 if ($fwhostsettings{'update'} eq 'on'){
927 $fwhostsettings{'remark'}= $grpremark;
928 $fwhostsettings{'grp_name'}=$grpname;
929 }
930 &addgrp;
931 &viewtablegrp;
932 }
933 if ($fwhostsettings{'ACTION'} eq 'delgrp')
934 {
935 &General::readhasharray("$configgrp", \%customgrp);
936 &decrease($fwhostsettings{'grp_name'});
937 foreach my $key (sort keys %customgrp)
938 {
939 if($customgrp{$key}[0] eq $fwhostsettings{'grp_name'})
940 {
941 delete $customgrp{$key};
942 }
943 }
944 &General::writehasharray("$configgrp", \%customgrp);
945 $fwhostsettings{'grp_name'}='';
946 &addgrp;
947 &viewtablegrp;
948 }
949 if ($fwhostsettings{'ACTION'} eq 'delservice')
950 {
951 &General::readhasharray("$configsrv", \%customservice);
952 foreach my $key (keys %customservice) {
953 if($customservice{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
954 delete $customservice{$key};
955 &General::writehasharray("$configsrv", \%customservice);
956 last;
957 }
958 }
959 $fwhostsettings{'SRV_NAME'}='';
960 $fwhostsettings{'SRV_PORT'}='';
961 $fwhostsettings{'PROT'}='';
962 &addservice;
963 }
964 if ($fwhostsettings{'ACTION'} eq 'delservicegrp')
965 {
966 &General::readhasharray("$configsrvgrp", \%customservicegrp);
967 &decreaseservice($fwhostsettings{'SRVGRP_NAME'});
968 foreach my $key (sort keys %customservicegrp)
969 {
970 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'})
971 {
972 delete $customservicegrp{$key};
973 }
974 }
975 &General::writehasharray("$configsrvgrp", \%customservicegrp);
976 $fwhostsettings{'SRVGRP_NAME'}='';
977 &addservicegrp;
978 &viewtableservicegrp;
979 }
980 if ($fwhostsettings{'ACTION'} eq 'delgrpservice')
981 {
982 my $grpname;
983 my $grpremark;
984 &General::readhasharray("$configsrvgrp", \%customservicegrp);
985 &General::readhasharray("$configsrv", \%customservice);
986 foreach my $key (keys %customservicegrp){
987 if($customservicegrp{$key}[0].",".$customservicegrp{$key}[1].",".$customservicegrp{$key}[2] eq $fwhostsettings{'delsrvfromgrp'})
988 {
989 #decrease count from source service
990 foreach my $key1 (sort keys %customservice){
991 if($customservice{$key1}[0] eq $customservicegrp{$key}[2]){
992 $customservice{$key1}[4]--;
993 last;
994 }
995 }
996 $grpname=$customservicegrp{$key}[0];
997 $grpremark=$customservicegrp{$key}[1];
998 delete $customservicegrp{$key};
999 }
1000 }
1001 &General::writehasharray("$configsrv", \%customservice);
1002 &General::writehasharray("$configsrvgrp", \%customservicegrp);
1003 &General::firewall_config_changed();
1004 if ($fwhostsettings{'updatesrvgrp'} eq 'on'){
1005 $fwhostsettings{'SRVGRP_NAME'}=$grpname;
1006 $fwhostsettings{'SRVGRP_REMARK'}=$grpremark;
1007 }
1008 &addservicegrp;
1009 &viewtableservicegrp;
1010
1011 }
1012 if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwhost newnet'})
1013 {
1014 &addnet;
1015 &viewtablenet;
1016 }
1017 if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwhost newhost'})
1018 {
1019 &addhost;
1020 &viewtablehost;
1021 }
1022 if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwhost newgrp'})
1023 {
1024 &addgrp;
1025 &viewtablegrp;
1026 }
1027 if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwhost newservice'})
1028 {
1029 &addservice;
1030 }
1031 if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwhost newservicegrp'})
1032 {
1033 &addservicegrp;
1034 &viewtableservicegrp;
1035 }
1036 if ($fwhostsettings{'ACTION'} eq 'changegrpremark')
1037 {
1038 &General::readhasharray("$configgrp", \%customgrp);
1039 if ($fwhostsettings{'oldrem'} ne $fwhostsettings{'newrem'} && (&validremark($fwhostsettings{'newrem'}) || $fwhostsettings{'newrem'} eq '')){
1040 foreach my $key (sort keys %customgrp)
1041 {
1042 if($customgrp{$key}[0] eq $fwhostsettings{'grp'} && $customgrp{$key}[1] eq $fwhostsettings{'oldrem'})
1043 {
1044 $customgrp{$key}[1]='';
1045 $customgrp{$key}[1]=$fwhostsettings{'newrem'};
1046 }
1047 }
1048 &General::writehasharray("$configgrp", \%customgrp);
1049 $fwhostsettings{'update'}='on';
1050 $fwhostsettings{'remark'}=$fwhostsettings{'newrem'};
1051 }else{
1052 $errormessage=$Lang::tr{'fwhost err remark'};
1053 $fwhostsettings{'remark'}=$fwhostsettings{'oldrem'};
1054 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1055 $fwhostsettings{'update'} = 'on';
1056 }
1057 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1058 &addgrp;
1059 &viewtablegrp;
1060 }
1061 if ($fwhostsettings{'ACTION'} eq 'changesrvgrpremark')
1062 {
1063 &General::readhasharray("$configsrvgrp", \%customservicegrp );
1064 if ($fwhostsettings{'oldsrvrem'} ne $fwhostsettings{'newsrvrem'} && (&validremark($fwhostsettings{'newsrvrem'}) || $fwhostsettings{'newsrvrem'} eq '')){
1065 foreach my $key (sort keys %customservicegrp)
1066 {
1067 if($customservicegrp{$key}[0] eq $fwhostsettings{'srvgrp'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvrem'})
1068 {
1069 $customservicegrp{$key}[1]='';
1070 $customservicegrp{$key}[1]=$fwhostsettings{'newsrvrem'};
1071 }
1072 }
1073 &General::writehasharray("$configsrvgrp", \%customservicegrp);
1074 $fwhostsettings{'updatesrvgrp'}='on';
1075 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'newsrvrem'};
1076 }elsif($fwhostsettings{'oldsrvrem'} eq $fwhostsettings{'newsrvrem'}){
1077 &addservicegrp;
1078 &viewtableservicegrp;
1079 }else{
1080 $errormessage=$Lang::tr{'fwhost err remark'};
1081 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'oldsrvrem'};
1082 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1083 $fwhostsettings{'updatesrvgrp'} = 'on';
1084 }
1085 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1086 &addservicegrp;
1087 &viewtableservicegrp;
1088 }
1089 if ($fwhostsettings{'ACTION'} eq 'changesrvgrpname')
1090 {
1091 &General::readhasharray("$configsrvgrp", \%customservicegrp );
1092 if ($fwhostsettings{'oldsrvgrpname'} ne $fwhostsettings{'srvgrp'}){
1093 #Check new groupname
1094 if (!&validhostname($fwhostsettings{'srvgrp'})){
1095 $errormessage.=$Lang::tr{'fwhost err name'}."<br>";
1096 }
1097 if (!$errormessage){
1098 #Rename group in customservicegroup
1099 foreach my $key (keys %customservicegrp) {
1100 if($customservicegrp{$key}[0] eq $fwhostsettings{'oldsrvgrpname'}){
1101 $customservicegrp{$key}[0]=$fwhostsettings{'srvgrp'};
1102 }
1103 }
1104 &General::writehasharray("$configsrvgrp", \%customservicegrp );
1105 #change name in FW Rules
1106 &changenameinfw($fwhostsettings{'oldsrvgrpname'},$fwhostsettings{'srvgrp'},15);
1107 }
1108 }
1109 &addservicegrp;
1110 &viewtableservicegrp;
1111 }
1112 if ($fwhostsettings{'ACTION'} eq 'changegrpname')
1113 {
1114 &General::readhasharray("$configgrp", \%customgrp );
1115 if ($fwhostsettings{'oldgrpname'} ne $fwhostsettings{'grp'}){
1116 #Check new groupname
1117 if (!&validhostname($fwhostsettings{'grp'})){
1118 $errormessage.=$Lang::tr{'fwhost err name'}."<br>";
1119 }
1120 if (!$errormessage){
1121 #Rename group in customservicegroup
1122 foreach my $key (keys %customgrp) {
1123 if($customgrp{$key}[0] eq $fwhostsettings{'oldgrpname'}){
1124 $customgrp{$key}[0]=$fwhostsettings{'grp'};
1125 }
1126 }
1127 &General::writehasharray("$configgrp", \%customgrp );
1128 #change name in FW Rules
1129 &changenameinfw($fwhostsettings{'oldgrpname'},$fwhostsettings{'grp'},6);
1130 }
1131 }
1132 &addgrp;
1133 &viewtablegrp;
1134 }
1135 ### VIEW ###
1136 if($fwhostsettings{'ACTION'} eq '')
1137 {
1138 &showmenu;
1139 }
1140 ### FUNCTIONS ###
1141 sub showmenu {
1142 &Header::openbox('100%', 'left',$Lang::tr{'fwhost menu'});
1143 print "$Lang::tr{'fwhost welcome'}";
1144 print<<END;
1145 <br><br><table border='0' width='100%'>
1146 <tr><td><form method='post'><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newnet'}' ><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newhost'}' ><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newgrp'}' ></form></td>
1147 <td align='right'><form method='post'><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservice'}' ><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservicegrp'}' ></form></td></tr>
1148 <tr><td colspan='6'><hr></td></tr></table>
1149 END
1150 &Header::closebox();
1151
1152 }
1153 # Add
1154 sub addnet
1155 {
1156 &error;
1157 &showmenu;
1158 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addnet'});
1159 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1160 $fwhostsettings{'orgnetremark'}=$fwhostsettings{'NETREMARK'};
1161 print<<END;
1162 <table border='0' width='100%' >
1163 <tr><td width='15%'>$Lang::tr{'name'}:</td><td><form method='post'><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='20'><script>document.getElementById('textbox1').focus()</script></td></tr>
1164 <tr><td>$Lang::tr{'fwhost netaddress'}:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='15'></td></tr>
1165 <tr><td>$Lang::tr{'netmask'}:</td><td><input type='TEXT' name='SUBNET' value='$fwhostsettings{'SUBNET'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='15'></td></tr>
1166 <tr><td>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='NETREMARK' value='$fwhostsettings{'NETREMARK'}' style='width: 98.5%;'></td></tr>
1167 <tr><td colspan='6'><br><hr></td></tr><tr>
1168 END
1169 if ($fwhostsettings{'ACTION'} eq 'editnet' || $fwhostsettings{'error'} eq 'on')
1170 {
1171 print "<td colspan='6' align='right'><input type='submit' value='$Lang::tr{'update'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='updatenet'><input type='hidden' name='orgnetremark' value='$fwhostsettings{'orgnetremark'}' ><input type='hidden' name='orgname' value='$fwhostsettings{'orgname'}' ><input type='hidden' name='update' value='on'><input type='hidden' name='newnet' value='$fwhostsettings{'newnet'}'>";
1172 }else{
1173 print "<td colspan='6' align='right'><input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='savenet'><input type='hidden' name='newnet' value='on'>";
1174 }
1175 print "</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='resetnet'></form></td></tr></table>";
1176 &Header::closebox();
1177 }
1178 sub addhost
1179 {
1180 &error;
1181 &showmenu;
1182 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addhost'});
1183 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1184 $fwhostsettings{'orgremark'}=$fwhostsettings{'HOSTREMARK'};
1185 print<<END;
1186 <table border='0' width='100%'>
1187 <tr><td>$Lang::tr{'name'}:</td><td><form method='post' style='display:inline;'><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='20'><script>document.getElementById('textbox1').focus()</script></td></tr>
1188 <tr><td>IP/MAC:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='17'></td></tr>
1189 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='HOSTREMARK' value='$fwhostsettings{'HOSTREMARK'}' style='width:98%;'></td></tr>
1190 <tr><td colspan='5'><hr></td></tr><tr>
1191 END
1192
1193 if ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'} eq 'on')
1194 {
1195
1196 print " <td colspan='4' align='right'><input type='submit' value='$Lang::tr{'update'}' style='min-width:100px;'/><input type='hidden' name='ACTION' value='updatehost'><input type='hidden' name='orgremark' value='$fwhostsettings{'orgremark'}' ><input type='hidden' name='orgname' value='$fwhostsettings{'orgname'}' ><input type='hidden' name='update' value='on'><input type='hidden' name='newhost' value='$fwhostsettings{'newhost'}'></form>";
1197 }else{
1198 print " <td colspan='4' align='right'><input type='submit' name='savehost' value='$Lang::tr{'save'}' style='min-width:100px;' /><input type='hidden' name='ACTION' value='savehost' /><input type='hidden' name='newhost' value='on'>";
1199 }
1200 print " </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='resethost'></form></td></tr></table>";
1201 &Header::closebox();
1202 }
1203 sub addgrp
1204 {
1205 &hint;
1206 &error;
1207 &showmenu;
1208 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addgrp'});
1209 &General::setup_default_networks(\%defaultNetworks);
1210 &General::readhasharray("$configccdnet", \%ccdnet);
1211 &General::readhasharray("$confignet", \%customnetwork);
1212 &General::readhasharray("$configccdhost", \%ccdhost);
1213 &General::readhasharray("$confighost", \%customhost);
1214 &General::readhasharray("$configipsec", \%ipsecconf);
1215
1216 my %checked=();
1217 my $show='';
1218 $checked{'check1'}{'off'} = '';
1219 $checked{'check1'}{'on'} = '';
1220 $checked{'grp2'}{$fwhostsettings{'grp2'}} = 'CHECKED';
1221 $fwhostsettings{'oldremark'}=$fwhostsettings{'remark'};
1222 $fwhostsettings{'oldgrpname'}=$fwhostsettings{'grp_name'};
1223 my $grp=$fwhostsettings{'grp_name'};
1224 my $rem=$fwhostsettings{'remark'};
1225 if ($fwhostsettings{'update'} eq ''){
1226 print<<END;
1227 <table width='100%' border='0'>
1228 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><form method='post'><input type='TEXT' name='grp_name' value='$fwhostsettings{'grp_name'}' size='20'></td></tr>
1229 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td ><input type='TEXT' name='remark' value='$fwhostsettings{'remark'}' style='width: 98%;'></td></tr>
1230 <tr><td colspan='2'><br><hr></td></tr></table>
1231 END
1232 }else{
1233 print<<END;
1234 <table width='100%' border='0'><form method='post' style='display:inline'>
1235 <tr><td nowrap='nowrap' width='12%'>$Lang::tr{'fwhost addgrpname'}</td><td width='20%'><input type='TEXT' name='grp' value='$fwhostsettings{'grp_name'}' ></td><td><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldgrpname' value='$fwhostsettings{'oldgrpname'}'><input type='hidden' name='ACTION' value='changegrpname'></td><td></td></form></tr>
1236 <tr><form method='post' style='display:inline'><td>$Lang::tr{'remark'}:</td><td colspan='2'><input type='TEXT' name='newrem' size='45' value='$fwhostsettings{'remark'}' style='width:98%'></td><td align='right'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldrem' value='$fwhostsettings{'oldremark'}'><input type='hidden' name='ACTION' value='changegrpremark' ></td></tr></table></form>
1237 <hr>
1238 END
1239 }
1240 if ($fwhostsettings{'update'} eq 'on'){
1241 print<<END;
1242 <form method='post'><input type='hidden' name='remark' value='$rem'><input type='hidden' name='grp_name' value='$grp'>
1243 <table width='100%' border='0'>
1244 <tr><td width=50% valign='top'>
1245 <table width='100%' border='0'>
1246 <tr><td width='1%'><input type='radio' name='grp2' value='std_net' id='DEFAULT_SRC_ADR' checked></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost stdnet'}</td><td><select name='DEFAULT_SRC_ADR' style='min-width:185px;'>
1247 END
1248 foreach my $network (sort keys %defaultNetworks)
1249 {
1250 next if($defaultNetworks{$network}{'LOCATION'} eq "IPCOP");
1251 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1252 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1253 print " selected='selected'" if ($fwhostsettings{'DEFAULT_SRC_ADR'} eq $defaultNetworks{$network}{'NAME'});
1254 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
1255 my $defsub="$defaultNetworks{$network}{'NAME'}_NETMASK";
1256 my $defsub1=&General::subtocidr($ownnet{$defsub});
1257 $ownnet{$defnet}='' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
1258 if ($ownnet{$defnet}){
1259 print ">$network ($ownnet{$defnet}/$defsub1)</option>";
1260 }else{
1261 print ">$network</option>";
1262 }
1263 }
1264 print"</select></td></tr>";
1265 if (! -z $confignet){
1266 print"<tr><td><input type='radio' name='grp2' id='CUST_SRC_NET' value='cust_net' $checked{'grp2'}{'cust_net'}></td><td>$Lang::tr{'fwhost cust net'}</td><td><select name='CUST_SRC_NET' style='min-width:185px;'>";
1267 foreach my $key (sort { ncmp($customnetwork{$a}[0],$customnetwork{$b}[0]) } keys %customnetwork) {
1268 print"<option>$customnetwork{$key}[0]</option>";
1269 }
1270 print"</select></td></tr>";
1271 }
1272 if (! -z $confighost){
1273 print"<tr><td valign='top'><input type='radio' name='grp2' id='CUST_SRC_HOST' value='cust_host' $checked{'grp2'}{'cust_host'}></td><td valign='top'>$Lang::tr{'fwhost cust addr'}</td><td><select name='CUST_SRC_HOST' style='min-width:185px;'>";
1274 foreach my $key (sort { ncmp($customhost{$a}[0],$customhost{$b}[0]) } keys %customhost) {
1275 print"<option>$customhost{$key}[0]</option>";
1276 }
1277 print"</select></td></tr>";
1278 }
1279 print"</table>";
1280 #Inner table right
1281 print"</td><td valign='top'><table width='100%' border='0'>";
1282 #OVPN networks
1283 if (! -z $configccdnet){
1284 print"<td width='1%'><input type='radio' name='grp2' id='OVPN_CCD_NET' value='ovpn_net' $checked{'grp2'}{'ovpn_net'}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdnet'}</td><td nowrap='nowrap' width='1%'><select name='OVPN_CCD_NET' style='min-width:185px;'>";
1285 foreach my $key (sort { ncmp($ccdnet{$a}[0],$ccdnet{$b}[0]) } keys %ccdnet)
1286 {
1287 print"<option value='$ccdnet{$key}[0]'>$ccdnet{$key}[0]</option>";
1288 }
1289 print"</select></td></tr>";
1290 }
1291 #OVPN clients
1292 foreach my $key (sort { ncmp($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost)
1293 {
1294 if ($ccdhost{$key}[33] ne ''){
1295 print"<td width='1%'><input type='radio' name='grp2' value='ovpn_host' $checked{'grp2'}{'ovpn_host'}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%'><select name='OVPN_CCD_HOST' style='min-width:185px;'>" if ($show eq '');
1296 $show='1';
1297 print"<option value='$ccdhost{$key}[1]'>$ccdhost{$key}[1]</option>";
1298 }
1299 }
1300 if ($show eq '1'){$show='';print"</select></td></tr>";}
1301 #OVPN n2n networks
1302 foreach my $key (sort { ncmp($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost) {
1303 if($ccdhost{$key}[3] eq 'net'){
1304 print"<td width='1%'><input type='radio' name='grp2' id='OVPN_N2N' value='ovpn_n2n' $checked{'grp2'}{'ovpn_n2n'}></td><td valign='top'>$Lang::tr{'fwhost ovpn_n2n'}</td><td colspan='3'><select name='OVPN_N2N' style='min-width:185px;'>" if ($show eq '');
1305 $show='1';
1306 print"<option>$ccdhost{$key}[1]</option>";
1307 }
1308 }
1309 if ($show eq '1'){$show='';print"</select></td></tr>";}
1310 #IPsec networks
1311 foreach my $key (sort { ncmp($ipsecconf{$a}[0],$ipsecconf{$b}[0]) } keys %ipsecconf) {
1312 if ($ipsecconf{$key}[3] eq 'net'){
1313 print"<td valign='top'><input type='radio' name='grp2' id='IPSEC_NET' value='ipsec_net' $checked{'grp2'}{'ipsec_net'}></td><td valign='top'>$Lang::tr{'fwhost ipsec net'}</td><td><select name='IPSEC_NET' style='min-width:185px;'>" if ($show eq '');
1314 $show='1';
1315 print"<option value='$ipsecconf{$key}[1]'>$ipsecconf{$key}[1]</option>";
1316 }
1317 }
1318 if ($show eq '1'){$show='';print"</select></td></tr>";}
1319 print"</table>";
1320 print"</td></tr></table>";
1321 print"<br><br><hr>";
1322 }
1323 print"<table border='0' width='100%'>";
1324 print"<tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' /><input type='hidden' name='oldremark' value='$fwhostsettings{'oldremark'}'><input type='hidden' name='update' value=\"$fwhostsettings{'update'}\"><input type='hidden' name='ACTION' value='savegrp' ></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='resetgrp'></form></td></table>";
1325 &Header::closebox();
1326 }
1327 sub addservice
1328 {
1329 &error;
1330 &showmenu;
1331 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addservice'});
1332 if ($fwhostsettings{'updatesrv'} eq 'on')
1333 {
1334 $fwhostsettings{'oldsrvname'} = $fwhostsettings{'SRV_NAME'};
1335 $fwhostsettings{'oldsrvport'} = $fwhostsettings{'SRV_PORT'};
1336 $fwhostsettings{'oldsrvprot'} = $fwhostsettings{'PROT'};
1337 $fwhostsettings{'oldsrvicmp'} = $fwhostsettings{'ICMP'};
1338 }
1339 print<<END;
1340 <table width='100%' border='0'><form method='post'>
1341 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost srv_name'}:</td><td><input type='text' name='SRV_NAME' id='textbox1' value='$fwhostsettings{'SRV_NAME'}' size='24'><script>document.getElementById('textbox1').focus()</script></td></tr>
1342 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost prot'}:</td><td><select name='PROT' id='protocol' >
1343 END
1344 foreach ("TCP","UDP","ICMP")
1345 {
1346 if ($_ eq $fwhostsettings{'PROT'})
1347 {
1348 print"<option selected>$_</option>";
1349 }else{
1350 print"<option>$_</option>";
1351 }
1352 }
1353 print<<END;
1354 </select></td></tr></table>
1355 <div id='PROTOKOLL' class='noscript'><table width=100%' border='0'><tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost icmptype'}</td><td><select name='ICMP_TYPES'>
1356 END
1357 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
1358 print"<option value='All ICMP-Types'>$Lang::tr{'fwdfw all icmp'}</option>";
1359 foreach my $key (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1360 if ($icmptypes{$key}[0] eq $fwhostsettings{'oldsrvicmp'}){
1361 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1362 }else{
1363 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1364 }
1365 }
1366 print<<END;
1367 </select></td></tr></table></div>
1368 <div id='PORT' class='noscript'><table width='100%' border='0'><tr><td width='10%'>$Lang::tr{'fwhost port'}:</td><td><input type='text' name='SRV_PORT' value='$fwhostsettings{'SRV_PORT'}' maxlength='11' size='24'></td></tr></table></div>
1369 <table width='100%' border='0'><tr><td colspan='6'><br><hr></td></tr>
1370 <tr><td colspan='6' align='right'>
1371 END
1372 if ($fwhostsettings{'updatesrv'} eq 'on')
1373 {
1374 print<<END;
1375 <input type='submit' value='$Lang::tr{'update'}'style='min-width:100px;' >
1376 <input type='hidden' name='ACTION' value='updateservice'>
1377 <input type='hidden' name='oldsrvname' value='$fwhostsettings{'oldsrvname'}'>
1378 <input type='hidden' name='oldsrvport' value='$fwhostsettings{'oldsrvport'}'>
1379 <input type='hidden' name='oldsrvprot' value='$fwhostsettings{'oldsrvprot'}'>
1380 <input type='hidden' name='oldsrvicmp' value='$fwhostsettings{'oldsrvicmp'}'>
1381 </form>
1382 END
1383 }else{
1384 print"<input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='saveservice'></form>";
1385 }
1386 print<<END;
1387 <form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></form></td></tr>
1388 </table></form>
1389 END
1390 &Header::closebox();
1391 &viewtableservice;
1392 }
1393 sub addservicegrp
1394 {
1395 &hint;
1396 &error;
1397 &showmenu;
1398 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addservicegrp'});
1399 $fwhostsettings{'oldsrvgrpremark'}=$fwhostsettings{'SRVGRP_REMARK'};
1400 $fwhostsettings{'oldsrvgrpname'}=$fwhostsettings{'SRVGRP_NAME'};
1401 if ($fwhostsettings{'updatesrvgrp'} eq ''){
1402 print<<END;
1403 <table width='100%' border='0'><form method='post'>
1404 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='text' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}' size='24'></td></tr>
1405 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='text' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width: 98%;'></td></tr>
1406 <tr><td colspan='2'><br><hr></tr>
1407 </table>
1408 END
1409 }else{
1410 print<<END;
1411 <table width='100%' border='0'><form method='post' style='display:inline'>
1412 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td width='20%'><input type='text' name='srvgrp' value='$fwhostsettings{'SRVGRP_NAME'}' size='14'></td><td align='left'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldsrvgrpname' value='$fwhostsettings{'oldsrvgrpname'}'><input type='hidden' name='ACTION' value='changesrvgrpname'></td><td width='3%'></td></form></tr>
1413 <tr><form method='post'><td width='10%'>$Lang::tr{'remark'}:</td><td colspan='2'><input type='text' name='newsrvrem' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width:98%;'></td><td align='right'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldsrvrem' value='$fwhostsettings{'oldsrvgrpremark'}'><input type='hidden' name='ACTION' value='changesrvgrpremark' ></td></tr>
1414 <tr><td colspan='4'><br><hr></td></td></tr>
1415 </table></form>
1416 END
1417 }
1418 if($fwhostsettings{'updatesrvgrp'} eq 'on'){
1419 print<<END;
1420 <form method='post'><input type='hidden' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}'><input type='hidden' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}'><table border='0' width='100%'>
1421 <tr><td width='1%' nowrap='nowrap'>$Lang::tr{'add'}</td><td><select name='CUST_SRV' style='min-width:185px;'>
1422 END
1423 &General::readhasharray("$configsrv", \%customservice);
1424 #Protocols for use in servicegroups
1425 print "<optgroup label='$Lang::tr{'fwhost cust service'}'>";
1426 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice)
1427 {
1428 print "<option>$customservice{$key}[0]</option>";
1429 }
1430 print "</optgroup>";
1431 print "<optgroup label='$Lang::tr{'protocol'}'>";
1432 print "<option>GRE</option>";
1433 print "<option>AH</option>";
1434 print "<option>ESP</option>";
1435 print "<option>IGMP</option>";
1436 print "<option>IPIP</option>";
1437 print "<option value='IPV6'>IPv6 encap</option>";
1438 print "</optgroup>";
1439 print<<END;
1440 </select></td></tr>
1441 <tr><td colspan='4'><br><br></td></tr>
1442 <tr><td colspan='4'><hr></td></tr>
1443 </table>
1444 END
1445 }
1446 print<<END;
1447 <table width='100%' border='0'>
1448 <tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' /><input type='hidden' name='updatesrvgrp' value='$fwhostsettings{'updatesrvgrp'}'><input type='hidden' name='oldsrvgrpremark' value='$fwhostsettings{'oldsrvgrpremark'}'><input type='hidden' name='ACTION' value='saveservicegrp' ></form><form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></td></tr>
1449 </table></form>
1450 END
1451 &Header::closebox();
1452 }
1453 # View
1454 sub viewtablenet
1455 {
1456 if(! -z $confignet){
1457 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust net'});
1458 &General::readhasharray("$confignet", \%customnetwork);
1459 &General::readhasharray("$configgrp", \%customgrp);
1460 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1461 &General::readhasharray("$fwconfiginp", \%fwinp);
1462 &General::readhasharray("$fwconfigout", \%fwout);
1463 if (!keys %customnetwork)
1464 {
1465 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1466 }else{
1467 print<<END;
1468 <table width='100%' cellspacing='0' class='tbl'>
1469 <tr><th align='center'><b>$Lang::tr{'name'}</b></th><th align='center'><b>$Lang::tr{'fwhost netaddress'}</b></th><th align='center'><b>$Lang::tr{'remark'}</b></th><th align='center'><b>$Lang::tr{'used'}</b></th><th></th><th width='3%'></th></tr>
1470 END
1471 }
1472 my $count=0;
1473 my $col='';
1474 foreach my $key (sort {ncmp($a,$b)} keys %customnetwork) {
1475 if ($fwhostsettings{'ACTION'} eq 'editnet' && $fwhostsettings{'HOSTNAME'} eq $customnetwork{$key}[0]) {
1476 print" <tr>";
1477 $col="bgcolor='${Header::colouryellow}'";
1478 }elsif ($count % 2)
1479 {
1480 $col="bgcolor='$color{'color20'}'";
1481 print" <tr>";# bgcolor='$color{'color20'}'>";
1482 }else
1483 {
1484 $col="bgcolor='$color{'color22'}'";
1485 print" <tr>";# bgcolor='$color{'color22'}'>";
1486 }
1487 my $colnet="$customnetwork{$key}[1]/".&General::subtocidr($customnetwork{$key}[2]);
1488 my $netcount=&getnetcount($customnetwork{$key}[0]);
1489 print"<td width='20%' $col><form method='post'>$customnetwork{$key}[0]</td><td width='15%' align='center' $col>".&Header::colorize($colnet)."</td><td width='40%' $col>$customnetwork{$key}[3]</td><td align='center' $col>$netcount x</td>";
1490 print<<END;
1491 <td width='1%' $col><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1492 <input type='hidden' name='ACTION' value='editnet'>
1493 <input type='hidden' name='HOSTNAME' value='$customnetwork{$key}[0]' />
1494 <input type='hidden' name='IP' value='$customnetwork{$key}[1]' />
1495 <input type='hidden' name='SUBNET' value='$customnetwork{$key}[2]' />
1496 <input type='hidden' name='NETREMARK' value='$customnetwork{$key}[3]' />
1497 </td></form>
1498 END
1499 if($netcount == '0')
1500 {
1501 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} /><input type='hidden' name='ACTION' value='delnet' /><input type='hidden' name='key' value='$customnetwork{$key}[0]' /></td></form></tr>";
1502 }else{
1503 print"<td $col></td></tr>";
1504 }
1505 $count++;
1506 }
1507 print"</table>";
1508 &Header::closebox();
1509 }
1510
1511 }
1512 sub getcolor
1513 {
1514 my $c=shift;
1515 #Check if IP is part of OpenVPN N2N subnet
1516 foreach my $key (sort keys %ccdhost){
1517 if ($ccdhost{$key}[3] eq 'net'){
1518 my ($a,$b) = split("/",$ccdhost{$key}[11]);
1519 if (&General::IpInSubnet($c,$a,$b)){
1520 $tdcolor="style='color:$Header::colourovpn ;'";
1521 return $tdcolor;
1522 }
1523 }
1524 }
1525 #Check if IP is part of OpenVPN dynamic subnet
1526 my ($a,$b) = split("/",$ovpnsettings{'DOVPN_SUBNET'});
1527 if (&General::IpInSubnet($c,$a,$b)){
1528 $tdcolor="style='color: $Header::colourovpn;'";
1529 return $tdcolor;
1530 }
1531 #Check if IP is part of OpenVPN static subnet
1532 foreach my $key (sort keys %ccdnet){
1533 my ($a,$b) = split("/",$ccdnet{$key}[1]);
1534 $b =&General::iporsubtodec($b);
1535 if (&General::IpInSubnet($c,$a,$b)){
1536 $tdcolor="style='color: $Header::colourovpn;'";
1537 return $tdcolor;
1538 }
1539 }
1540 #Check if IP is part of IPsec RW network
1541 if ($ipsecsettings{'RW_NET'} ne ''){
1542 my ($a,$b) = split("/",$ipsecsettings{'RW_NET'});
1543 $b=&General::iporsubtodec($b);
1544 if (&General::IpInSubnet($c,$a,$b)){
1545 $tdcolor="style='color: $Header::colourvpn;'";
1546 return $tdcolor;
1547 }
1548 }
1549 #Check if IP is part of a IPsec N2N network
1550 foreach my $key (sort keys %ipsecconf){
1551 my ($a,$b) = split("/",$ipsecconf{$key}[11]);
1552 if (&General::IpInSubnet($c,$a,$b)){
1553 $tdcolor="style='color: $Header::colourvpn;'";
1554 return $tdcolor;
1555 }
1556 }
1557 $tdcolor='';
1558 return $tdcolor;
1559 }
1560 sub viewtablehost
1561 {
1562 if (! -z $confighost){
1563 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust addr'});
1564 &General::readhasharray("$confighost", \%customhost);
1565 &General::readhasharray("$configccdnet", \%ccdnet);
1566 &General::readhasharray("$configccdhost", \%ccdhost);
1567 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1568 &General::readhasharray("$fwconfiginp", \%fwinp);
1569 &General::readhasharray("$fwconfigout", \%fwout);
1570 &General::readhasharray("$configgrp", \%customgrp);
1571 if (!keys %customhost)
1572 {
1573 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1574 }else{
1575 print<<END;
1576 <table width='100%' cellspacing='0' class='tbl'>
1577 <tr><th align='center'><b>$Lang::tr{'name'}</b></th><th align='center'><b>$Lang::tr{'fwhost ip_mac'}</b></th><th align='center'><b>$Lang::tr{'remark'}</b></th><th align='center'><b>$Lang::tr{'used'}</b></th><th></th><th width='3%'></th></tr>
1578 END
1579 }
1580 my $count=0;
1581 my $col='';
1582 foreach my $key (sort { ncmp ($customhost{$a}[0],$customhost{$b}[0])} keys %customhost) {
1583 if ( ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'}) && $fwhostsettings{'HOSTNAME'} eq $customhost{$key}[0]) {
1584 print" <tr>";
1585 $col="bgcolor='${Header::colouryellow}'";
1586 }elsif ($count % 2){
1587 print" <tr>";
1588 $col="bgcolor='$color{'color20'}'";
1589 }else{
1590 $col="bgcolor='$color{'color22'}'";
1591 print" <tr>";
1592 }
1593 my ($ip,$sub)=split(/\//,$customhost{$key}[2]);
1594 $customhost{$key}[4]=~s/\s+//g;
1595 my $hostcount=0;
1596 $hostcount=&gethostcount($customhost{$key}[0]);
1597 print"<td width='20%' $col>$customhost{$key}[0]</td><td width='20%' align='center' $col ".&getcolor($ip).">".&Header::colorize($ip)."</td><td width='50%' align='left' $col>$customhost{$key}[3]</td><td align='center' $col>$hostcount x</td>";
1598 print<<END;
1599 <td width='1%' $col><form method='post'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1600 <input type='hidden' name='ACTION' value='edithost' />
1601 <input type='hidden' name='HOSTNAME' value='$customhost{$key}[0]' />
1602 <input type='hidden' name='IP' value='$ip' />
1603 <input type='hidden' name='type' value='$customhost{$key}[1]' />
1604 <input type='hidden' name='HOSTREMARK' value='$customhost{$key}[3]' />
1605 </form></td>
1606 END
1607 if($hostcount == '0')
1608 {
1609 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} /><input type='hidden' name='ACTION' value='delhost' /><input type='hidden' name='key' value='$customhost{$key}[0]' /></td></form></tr>";
1610 }else{
1611 print"<td width='1%' $col></td></tr>";
1612 }
1613 $count++;
1614 }
1615 print"</table>";
1616 &Header::closebox();
1617 }
1618 }
1619 sub viewtablegrp
1620 {
1621 if(! -z "$configgrp"){
1622 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust grp'});
1623 &General::readhasharray("$configgrp", \%customgrp);
1624 &General::readhasharray("$configipsec", \%ipsecconf);
1625 &General::readhasharray("$configccdhost", \%ccdhost);
1626 &General::readhasharray("$configccdnet", \%ccdnet);
1627 &General::readhasharray("$confighost", \%customhost);
1628 &General::readhasharray("$confignet", \%customnetwork);
1629 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1630 &General::readhasharray("$fwconfiginp", \%fwinp);
1631 &General::readhasharray("$fwconfigout", \%fwout);
1632 my @grp=();
1633 my $helper='';
1634 my $count=1;
1635 my $grpname;
1636 my $remark;
1637 my $number;
1638 my $delflag;
1639 if (!keys %customgrp)
1640 {
1641 print "<center><b>$Lang::tr{'fwhost err emptytable'}</b>";
1642 }else{
1643 foreach my $key (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1644 $count++;
1645 if ($helper ne $customgrp{$key}[0]){
1646 $delflag='0';
1647 foreach my $key1 (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1648 if ($customgrp{$key}[0] eq $customgrp{$key1}[0])
1649 {
1650 $delflag++;
1651 }
1652 if($delflag > 1){
1653 last;
1654 }
1655 }
1656 $number=1;
1657 if ($customgrp{$key}[2] eq "none"){$customgrp{$key}[2]=$Lang::tr{'fwhost err emptytable'};}
1658 $grpname=$customgrp{$key}[0];
1659 $remark="$customgrp{$key}[1]";
1660 if($count gt 1){ print"</table>";}
1661 print "<br><b><u>$grpname</u></b>&nbsp; &nbsp;";
1662 print " <b>$Lang::tr{'remark'}:</b>&nbsp $remark &nbsp " if ($remark ne '');
1663 my $netgrpcount=&getnetcount($grpname);
1664 print "<b>$Lang::tr{'used'}:</b> $netgrpcount x";
1665 if($netgrpcount == '0')
1666 {
1667 print"<form method='post' style='display:inline'><input type='image' src='/images/delete.gif' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} align='right' /><input type='hidden' name='grp_name' value='$grpname' ><input type='hidden' name='ACTION' value='delgrp'></form>";
1668 }
1669 print"<form method='post' style='display:inline'><input type='image' src='/images/edit.gif' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} align='right' /><input type='hidden' name='grp_name' value='$grpname' ><input type='hidden' name='remark' value='$remark' ><input type='hidden' name='ACTION' value='editgrp'></form>";
1670 print"<table width='100%' cellspacing='0' class='tbl'><tr><th align='center'><b>Name</b></th><th align='center'><b>$Lang::tr{'ip address'}</b></th><th align='center' width='25%'><b>$Lang::tr{'fwhost type'}</th><th></th></tr>";
1671 }
1672 my $col='';
1673 if ( ($fwhostsettings{'ACTION'} eq 'editgrp' || $fwhostsettings{'update'} ne '') && $fwhostsettings{'grp_name'} eq $customgrp{$key}[0]) {
1674 print" <tr>";
1675 $col="bgcolor='${Header::colouryellow}'";
1676 }elsif ($count %2 == 0){
1677 print"<tr>";
1678 $col="bgcolor='$color{'color22'}'";
1679 }else{
1680 print"<tr>";
1681 $col="bgcolor='$color{'color20'}'";
1682 }
1683 my $ip=&getipforgroup($customgrp{$key}[2],$customgrp{$key}[3]);
1684 if ($ip eq ''){
1685 print"<tr>";
1686 $col="bgcolor='${Header::colouryellow}'";
1687 }
1688 print "<td width='39%' align='left' $col>";
1689 if($customgrp{$key}[3] eq 'Standard Network'){
1690 print &get_name($customgrp{$key}[2])."</td>";
1691 }else{
1692 print "$customgrp{$key}[2]</td>";
1693 }
1694 if ($ip eq '' && $customgrp{$key}[2] ne $Lang::tr{'fwhost err emptytable'}){
1695 print "<td align='center' $col>$Lang::tr{'fwhost deleted'}</td><td align='center' $col>$customgrp{$key}[3]</td><td width='1%' $col><form method='post'>";
1696 }else{
1697 my ($colip,$colsub) = split("/",$ip);
1698 $ip="$colip/".&General::subtocidr($colsub) if ($colsub);
1699 print"<td align='center' $col ".&getcolor($colip).">".&Header::colorize($ip)."</td><td align='center' $col>$customgrp{$key}[3]</td><td width='1%' $col><form method='post'>";
1700 }
1701 if ($delflag > 1 && $ip ne ''){
1702 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1703 }
1704 print"<input type='hidden' name='ACTION' value='deletegrphost'><input type='hidden' name='grpcnt' value='$customgrp{$key}[4]'><input type='hidden' name='update' value='$fwhostsettings{'update'}'><input type='hidden' name='delhost' value='$grpname,$remark,$customgrp{$key}[2],$customgrp{$key}[3]'></form></td></tr>";
1705
1706 $helper=$customgrp{$key}[0];
1707 $number++;
1708 }
1709 print"</table>";
1710 }
1711 &Header::closebox();
1712 }
1713
1714 }
1715 sub viewtableservice
1716 {
1717 my $count=0;
1718 my $srvcount;
1719 if(! -z "$configsrv")
1720 {
1721 &Header::openbox('100%', 'left', $Lang::tr{'fwhost services'});
1722 &General::readhasharray("$configsrv", \%customservice);
1723 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1724 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1725 &General::readhasharray("$fwconfiginp", \%fwinp);
1726 &General::readhasharray("$fwconfigout", \%fwout);
1727 print<<END;
1728 <table width='100%' cellspacing='0' class='tbl'>
1729 <tr><th align='center'><b>$Lang::tr{'fwhost srv_name'}</b></th><th align='center'><b>$Lang::tr{'fwhost prot'}</b></th><th align='center'><b>$Lang::tr{'fwhost port'}</b></th><th align='center'><b>ICMP</b></th><th align='center'><b>$Lang::tr{'fwhost used'}</b></th><th></th><th width='3%'></th></tr>
1730 END
1731 my $col='';
1732 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0])} keys %customservice)
1733 {
1734 $count++;
1735 if ( ($fwhostsettings{'updatesrv'} eq 'on' || $fwhostsettings{'error'}) && $fwhostsettings{'SRV_NAME'} eq $customservice{$key}[0]) {
1736 print" <tr>";
1737 $col="bgcolor='${Header::colouryellow}'";
1738 }elsif ($count % 2){
1739 print" <tr>";
1740 $col="bgcolor='$color{'color22'}'";
1741 }else{
1742 print" <tr>";
1743 $col="bgcolor='$color{'color20'}'";
1744 }
1745 print<<END;
1746 <td $col>$customservice{$key}[0]</td><td align='center' $col>$customservice{$key}[2]</td><td align='center' $col>$customservice{$key}[1]</td><td align='center' $col>
1747 END
1748 #Neuer count
1749 $srvcount=&getsrvcount($customservice{$key}[0]);
1750 if($customservice{$key}[3] eq 'All ICMP-Types'){print $Lang::tr{'fwdfw all icmp'};}
1751 elsif($customservice{$key}[3] ne 'BLANK'){print $customservice{$key}[3];}
1752 print<<END;
1753 </td><td align='center' $col>$srvcount x</td>
1754 <td width='1%' $col><form method='post'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} /><input type='hidden' name='ACTION' value='editservice' />
1755 <input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]' />
1756 <input type='hidden' name='SRV_PORT' value='$customservice{$key}[1]' />
1757 <input type='hidden' name='PROT' value='$customservice{$key}[2]' />
1758 <input type='hidden' name='ICMP' value='$customservice{$key}[3]' /></form></td>
1759 END
1760 if ($srvcount eq '0')
1761 {
1762 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} /><input type='hidden' name='ACTION' value='delservice' /><input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]'></td></tr></form>";
1763 }else{
1764 print"<td $col></td></tr>";
1765 }
1766 }
1767 print"</table>";
1768 &Header::closebox();
1769 }
1770 }
1771 sub viewtableservicegrp
1772 {
1773 my $count=0;
1774 my $grpname;
1775 my $remark;
1776 my $helper;
1777 my $port;
1778 my $protocol;
1779 my $delflag;
1780 my $grpcount=0;
1781 my $col='';
1782 if (! -z $configsrvgrp){
1783 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust srvgrp'});
1784 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1785 &General::readhasharray("$configsrv", \%customservice);
1786 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1787 &General::readhasharray("$fwconfiginp", \%fwinp);
1788 &General::readhasharray("$fwconfigout", \%fwout);
1789 my $number= keys %customservicegrp;
1790 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp($customservicegrp{$a}[2],$customservicegrp{$b}[2]) }keys %customservicegrp){
1791 $count++;
1792 if ($helper ne $customservicegrp{$key}[0]){
1793 #Get used groupcounter
1794 $grpcount=&getsrvcount($customservicegrp{$key}[0]);
1795 $delflag=0;
1796 foreach my $key1 (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp($customservicegrp{$a}[2],$customservicegrp{$b}[2]) } keys %customservicegrp){
1797 if ($customservicegrp{$key}[0] eq $customservicegrp{$key1}[0])
1798 {
1799 $delflag++;
1800 }
1801 if($delflag > 1){
1802 last;
1803 }
1804 }
1805 $grpname=$customservicegrp{$key}[0];
1806 if ($customservicegrp{$key}[2] eq "none"){
1807 $customservicegrp{$key}[2]=$Lang::tr{'fwhost empty'};
1808 $port='';
1809 $protocol='';
1810 }
1811 $remark="$customservicegrp{$key}[1]";
1812 if($count >=2){print"</table>";}
1813 print "<br><b><u>$grpname</u></b>&nbsp; &nbsp; ";
1814 print "<b>$Lang::tr{'remark'}:</b>&nbsp; $remark " if ($remark ne '');
1815 print "&nbsp; <b>$Lang::tr{'used'}:</b> $grpcount x";
1816 if($grpcount == '0')
1817 {
1818 print"<form method='post' style='display:inline'><input type='image' src='/images/delete.gif' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} align='right' /><input type='hidden' name='SRVGRP_NAME' value='$grpname' ><input type='hidden' name='ACTION' value='delservicegrp'></form>";
1819 }
1820 print"<form method='post' style='display:inline'><input type='image' src='/images/edit.gif' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} align='right' /><input type='hidden' name='SRVGRP_NAME' value='$grpname' ><input type='hidden' name='SRVGRP_REMARK' value='$remark' ><input type='hidden' name='ACTION' value='editservicegrp'></form>";
1821 print"<table width='100%' cellspacing='0' class='tbl'><tr><th align='center'><b>Name</b></th><th align='center'><b>$Lang::tr{'port'}</b></th><th align='center' width='25%'><b>$Lang::tr{'fwhost prot'}</th><th></th></tr>";
1822 }
1823 if( $fwhostsettings{'SRVGRP_NAME'} eq $customservicegrp{$key}[0]) {
1824 print"<tr>";
1825 $col="bgcolor='${Header::colouryellow}'";
1826 }elsif ($count %2 == 0){
1827 print"<tr>";
1828 $col="bgcolor='$color{'color20'}'";
1829 }else{
1830 print"<tr>";
1831 $col="bgcolor='$color{'color22'}'";
1832 }
1833 #Set fields if we use protocols in servicegroups
1834 if ($customservicegrp{$key}[2] ne 'TCP' || $customservicegrp{$key}[2] ne 'UDP' || $customservicegrp{$key}[2] ne 'ICMP'){
1835 $port='-';
1836 }
1837 if ($customservicegrp{$key}[2] eq 'GRE'){$protocol='GRE';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} GRE";}
1838 if ($customservicegrp{$key}[2] eq 'ESP'){$protocol='ESP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} ESP";}
1839 if ($customservicegrp{$key}[2] eq 'AH'){$protocol='AH';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} AH";}
1840 if ($customservicegrp{$key}[2] eq 'IGMP'){$protocol='IGMP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IGMP";}
1841 if ($customservicegrp{$key}[2] eq 'IPIP'){$protocol='IPIP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IPIP";}
1842 if ($customservicegrp{$key}[2] eq 'IPV6'){$protocol='IPV6';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IPv6 encapsulation";}
1843 print "<td width='39%' $col>$customservicegrp{$key}[2]</td>";
1844 foreach my $srv (sort keys %customservice){
1845 if ($customservicegrp{$key}[2] eq $customservice{$srv}[0]){
1846 $protocol=$customservice{$srv}[2];
1847 $port=$customservice{$srv}[1];
1848 last;
1849 }
1850 }
1851 print"<td align='center' $col>$port</td><td align='center' $col>$protocol</td><td width='1%' $col><form method='post'>";
1852 if ($delflag gt '1'){
1853 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1854 }
1855 print"<input type='hidden' name='ACTION' value='delgrpservice'><input type='hidden' name='updatesrvgrp' value='$fwhostsettings{'updatesrvgrp'}'>";
1856 if($protocol eq 'TCP' || $protocol eq 'UDP' || $protocol eq 'ICMP'){
1857 print "<input type='hidden' name='delsrvfromgrp' value='$grpname,$remark,$customservicegrp{$key}[2]'></form></td></tr>";
1858 }else{
1859 print "<input type='hidden' name='delsrvfromgrp' value='$grpname,$remark,$protocol'></form></td></tr>";
1860 }
1861 $helper=$customservicegrp{$key}[0];
1862 }
1863 print"</table>";
1864 &Header::closebox();
1865 }
1866 }
1867 # Check
1868 sub checkname
1869 {
1870 my %hash=%{(shift)};
1871 foreach my $key (keys %hash) {
1872 if($hash{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
1873 return 0;
1874 }
1875 }
1876 return 1;
1877
1878 }
1879 sub checkgroup
1880 {
1881 &General::readhasharray("$configsrvgrp", \%customservicegrp );
1882 my $name=shift;
1883 foreach my $key (keys %customservicegrp) {
1884 if($customservicegrp{$key}[0] eq $name){
1885 return 0;
1886 }
1887 }
1888 return 1;
1889 }
1890 sub checkservice
1891 {
1892 &General::readhasharray("$configsrv", \%customservice );
1893 my $name=shift;
1894 foreach my $key (keys %customservice) {
1895 if($customservice{$key}[0] eq $name){
1896 return 0;
1897 }
1898 }
1899 return 1;
1900 }
1901 sub checkip
1902 {
1903
1904 my %hash=%{(shift)};
1905 my $a=shift;
1906 foreach my $key (keys %hash) {
1907 if($hash{$key}[$a] eq $fwhostsettings{'IP'}."/".&General::iporsubtodec($fwhostsettings{'SUBNET'})){
1908 return 0;
1909 }
1910 }
1911 return 1;
1912 }
1913 sub checksubnet
1914 {
1915 my %hash=%{(shift)};
1916 &General::readhasharray("$confignet", \%hash);
1917 foreach my $key (keys %hash) {
1918 if(&General::IpInSubnet($fwhostsettings{'IP'},$hash{$key}[1],$hash{$key}[2]))
1919 {
1920 return 1;
1921 }
1922 }
1923 return 0;
1924 }
1925 sub checkservicegroup
1926 {
1927 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1928 #check name
1929 if ( ! &validhostname($fwhostsettings{'SRVGRP_NAME'}))
1930 {
1931 $errormessage.=$Lang::tr{'fwhost err name'}."<br>";
1932 return $errormessage;
1933 }
1934 #check empty selectbox
1935 if (keys %customservice lt 1)
1936 {
1937 $errormessage.=$Lang::tr{'fwhost err groupempty'}."<br>";
1938 }
1939 #check if name already exists
1940 if ($fwhostsettings{'updatesrvgrp'} ne 'on'){
1941 foreach my $key (keys %customservicegrp) {
1942 if( $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} ){
1943 $errormessage.=$Lang::tr{'fwhost err grpexist'}."<br>";
1944
1945 }
1946 }
1947 }
1948 #check if service already exists in group
1949 foreach my $key (keys %customservicegrp) {
1950 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[2] eq $fwhostsettings{'CUST_SRV'} ){
1951 $errormessage.=$Lang::tr{'fwhost err srvexist'}."<br>";
1952 }
1953 }
1954 return $errormessage;
1955 }
1956 sub checkrulereload
1957 {
1958 my $search=shift;
1959 &General::readhasharray("$fwconfigfwd", \%fwfwd);
1960 &General::readhasharray("$fwconfiginp", \%fwinp);
1961 &General::readhasharray("$fwconfigout", \%fwout);
1962
1963 #check if service or servicegroup is used in rules
1964 foreach my $key (keys %fwfwd){
1965 if($search eq $fwfwd{$key}[15]){
1966 &General::firewall_config_changed();
1967 return;
1968 }
1969 }
1970 foreach my $key (keys %fwinp){
1971 if($search eq $fwinp{$key}[15]){
1972 &General::firewall_config_changed();
1973 return;
1974 }
1975 }
1976 foreach my $key (keys %fwout){
1977 if($search eq $fwout{$key}[15]){
1978 &General::firewall_config_changed();
1979 return;
1980 }
1981 }
1982 }
1983 sub error
1984 {
1985 if ($errormessage) {
1986 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
1987 print "<class name='base'>$errormessage\n";
1988 print "&nbsp;</class>\n";
1989 &Header::closebox();
1990 }
1991 }
1992 sub hint
1993 {
1994 if ($hint) {
1995 &Header::openbox('100%', 'left', $Lang::tr{'fwhost hint'});
1996 print "<class name='base'>$hint\n";
1997 print "&nbsp;</class>\n";
1998 &Header::closebox();
1999 }
2000 }
2001 sub get_name
2002 {
2003 my $val=shift;
2004 &General::setup_default_networks(\%defaultNetworks);
2005 foreach my $network (sort keys %defaultNetworks)
2006 {
2007 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
2008 }
2009 }
2010 sub gethostcount
2011 {
2012 my $searchstring=shift;
2013 my $srvcounter=0;
2014 #Count services used in servicegroups
2015 foreach my $key (keys %customgrp) {
2016 if($customgrp{$key}[2] eq $searchstring){
2017 $srvcounter++;
2018 }
2019 }
2020 #Count services used in firewall - config
2021 foreach my $key1 (keys %fwfwd) {
2022 if($fwfwd{$key1}[4] eq $searchstring){
2023 $srvcounter++;
2024 }
2025 if($fwfwd{$key1}[6] eq $searchstring){
2026 $srvcounter++;
2027 }
2028 }
2029 #Count services used in firewall - input
2030 foreach my $key2 (keys %fwinp) {
2031 if($fwinp{$key2}[4] eq $searchstring){
2032 $srvcounter++;
2033 }
2034 if($fwinp{$key2}[6] eq $searchstring){
2035 $srvcounter++;
2036 }
2037 }
2038 #Count services used in firewall - outgoing
2039 foreach my $key3 (keys %fwout) {
2040 if($fwout{$key3}[4] eq $searchstring){
2041 $srvcounter++;
2042 }
2043 if($fwout{$key3}[6] eq $searchstring){
2044 $srvcounter++;
2045 }
2046 }
2047 return $srvcounter;
2048 }
2049 sub getnetcount
2050 {
2051 my $searchstring=shift;
2052 my $srvcounter=0;
2053 #Count services used in servicegroups
2054 foreach my $key (keys %customgrp) {
2055 if($customgrp{$key}[2] eq $searchstring){
2056 $srvcounter++;
2057 }
2058 }
2059 #Count services used in firewall - config
2060 foreach my $key1 (keys %fwfwd) {
2061 if($fwfwd{$key1}[4] eq $searchstring){
2062 $srvcounter++;
2063 }
2064 if($fwfwd{$key1}[6] eq $searchstring){
2065 $srvcounter++;
2066 }
2067 }
2068 #Count services used in firewall - input
2069 foreach my $key2 (keys %fwinp) {
2070 if($fwinp{$key2}[4] eq $searchstring){
2071 $srvcounter++;
2072 }
2073 if($fwinp{$key2}[6] eq $searchstring){
2074 $srvcounter++;
2075 }
2076 }
2077 #Count services used in firewall - outgoing
2078 foreach my $key3 (keys %fwout) {
2079 if($fwout{$key3}[4] eq $searchstring){
2080 $srvcounter++;
2081 }
2082 if($fwout{$key3}[6] eq $searchstring){
2083 $srvcounter++;
2084 }
2085 }
2086 return $srvcounter;
2087 }
2088 sub getsrvcount
2089 {
2090 my $searchstring=shift;
2091 my $srvcounter=0;
2092 #Count services used in servicegroups
2093 foreach my $key (keys %customservicegrp) {
2094 if($customservicegrp{$key}[2] eq $searchstring){
2095 $srvcounter++;
2096 }
2097 }
2098 #Count services used in firewall - config
2099 foreach my $key1 (keys %fwfwd) {
2100 if($fwfwd{$key1}[15] eq $searchstring){
2101 $srvcounter++;
2102 }
2103 }
2104 #Count services used in firewall - input
2105 foreach my $key2 (keys %fwinp) {
2106 if($fwinp{$key2}[15] eq $searchstring){
2107 $srvcounter++;
2108 }
2109 }
2110 #Count services used in firewall - outgoing
2111 foreach my $key3 (keys %fwout) {
2112 if($fwout{$key3}[15] eq $searchstring){
2113 $srvcounter++;
2114 }
2115 }
2116 return $srvcounter;
2117 }
2118 sub deletefromgrp
2119 {
2120 my $target=shift;
2121 my $config=shift;
2122 my %hash=();
2123 &General::readhasharray("$config",\%hash);
2124 foreach my $key (keys %hash) {
2125 if($hash{$key}[2] eq $target){
2126 delete $hash{$key};
2127 }
2128 }
2129 &General::writehasharray("$config",\%hash);
2130
2131 }
2132 sub plausicheck
2133 {
2134 my $edit=shift;
2135 #check hostname
2136 if (!&validhostname($fwhostsettings{'HOSTNAME'}))
2137 {
2138 $errormessage=$errormessage.$Lang::tr{'fwhost err name'};
2139 $fwhostsettings{'BLK_IP'}='readonly';
2140 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
2141 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2142 }
2143 #check if name collides with CCD Netname
2144 &General::readhasharray("$configccdnet", \%ccdnet);
2145 foreach my $key (keys %ccdnet) {
2146 if($ccdnet{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
2147 $errormessage=$errormessage.$Lang::tr{'fwhost err isccdnet'};;
2148 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
2149 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2150 last;
2151 }
2152 }
2153 #check if IP collides with CCD NetIP
2154 if ($fwhostsettings{'type'} ne 'mac'){
2155 &General::readhasharray("$configccdnet", \%ccdnet);
2156 foreach my $key (keys %ccdnet) {
2157 my $test=(&General::getnetworkip($fwhostsettings{'IP'},&General::iporsubtocidr($fwhostsettings{'SUBNET'})))."/".$fwhostsettings{'SUBNET'};
2158 if($ccdnet{$key}[1] eq $test){
2159 $errormessage=$errormessage.$Lang::tr{'fwhost err isccdipnet'};
2160 $fwhostsettings{'IP'} = $fwhostsettings{'orgip'};
2161 $fwhostsettings{'SUBNET'} = $fwhostsettings{'orgsubnet'};
2162 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2163 last;
2164 }
2165 }
2166 }
2167 #check if name collides with CCD Hostname
2168 &General::readhasharray("$configccdhost", \%ccdhost);
2169 foreach my $key (keys %ccdhost) {
2170 my ($ip,$sub)=split(/\//,$ccdhost{$key}[33]);
2171 if($ip eq $fwhostsettings{'IP'}){
2172 $errormessage=$Lang::tr{'fwhost err isccdiphost'};
2173 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2174 last;
2175 }
2176 }
2177 #check if IP collides with CCD HostIP (only hosts)
2178 if ($edit eq 'edithost')
2179 {
2180 foreach my $key (keys %ccdhost) {
2181 if($ccdhost{$key}[1] eq $fwhostsettings{'HOSTNAME'}){
2182 $errormessage=$Lang::tr{'fwhost err isccdhost'};
2183 $fwhostsettings{'IP'} = $fwhostsettings{'orgname'};
2184 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2185 last;
2186 }
2187 }
2188 }
2189 #check if network with this name already exists
2190 &General::readhasharray("$confignet", \%customnetwork);
2191 if (!&checkname(\%customnetwork))
2192 {
2193 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err netexist'};
2194 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
2195 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2196 }
2197 #check if network ip already exists
2198 if (!&checkip(\%customnetwork,1))
2199 {
2200 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err net'};
2201 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2202 }
2203 #check if host with this name already exists
2204 &General::readhasharray("$confighost", \%customhost);
2205 if (!&checkname(\%customhost))
2206 {
2207 $errormessage.="<br>".$Lang::tr{'fwhost err hostexist'};
2208 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
2209 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
2210 }
2211 #check if host with this ip already exists
2212 if (!&checkip(\%customhost,2))
2213 {
2214 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err ipcheck'};
2215 }
2216 return;
2217 }
2218 sub getipforgroup
2219 {
2220 my $name=$_[0],
2221 my $type=$_[1];
2222 my $value;
2223
2224 #get address from IPSEC NETWORK
2225 if ($type eq 'IpSec Network'){
2226 foreach my $key (keys %ipsecconf) {
2227 if ($ipsecconf{$key}[1] eq $name){
2228 return $ipsecconf{$key}[11];
2229 }
2230 }
2231 &deletefromgrp($name,$configgrp);
2232 }
2233
2234 #get address from IPSEC HOST
2235 if ($type eq 'IpSec Host'){
2236 foreach my $key (keys %ipsecconf) {
2237 if ($ipsecconf{$key}[1] eq $name){
2238 return $ipsecconf{$key}[10];
2239 }
2240 }
2241 &deletefromgrp($name,$configgrp);
2242 }
2243
2244 #get address from ovpn ccd Net-2-Net
2245 if ($type eq 'OpenVPN N-2-N'){
2246 foreach my $key (keys %ccdhost) {
2247 if($ccdhost{$key}[1] eq $name){
2248 my ($a,$b) = split ("/",$ccdhost{$key}[11]);
2249 $b=&General::iporsubtodec($b);
2250 return "$a/$b";
2251 }
2252 }
2253 &deletefromgrp($name,$configgrp);
2254 }
2255
2256 #get address from ovpn ccd static host
2257 if ($type eq 'OpenVPN static host'){
2258 foreach my $key (keys %ccdhost) {
2259 if($ccdhost{$key}[1] eq $name){
2260 my ($a,$b) = split (/\//,$ccdhost{$key}[33]);
2261 $b=&General::iporsubtodec($b);
2262 return "$a/$b";
2263 }
2264 }
2265 &deletefromgrp($name,$configgrp);
2266 }
2267
2268 #get address from ovpn ccd static net
2269 if ($type eq 'OpenVPN static network'){
2270 foreach my $key (keys %ccdnet) {
2271 if ($ccdnet{$key}[0] eq $name){
2272 my ($a,$b) = split (/\//,$ccdnet{$key}[1]);
2273 $b=&General::iporsubtodec($b);
2274 return "$a/$b";
2275 }
2276 }
2277 }
2278
2279 #check custom addresses
2280 if ($type eq 'Custom Host'){
2281 foreach my $key (keys %customhost) {
2282 if ($customhost{$key}[0] eq $name){
2283 my ($ip,$sub) = split("/",$customhost{$key}[2]);
2284 return $ip;
2285 }
2286 }
2287 }
2288
2289 ##check custom networks
2290 if ($type eq 'Custom Network'){
2291 foreach my $key (keys %customnetwork) {
2292 if($customnetwork{$key}[0] eq $name){
2293 return $customnetwork{$key}[1]."/".$customnetwork{$key}[2];
2294 }
2295 }
2296 }
2297
2298 #check standard networks
2299 if ($type eq 'Standard Network'){
2300 if ($name =~ /OpenVPN/i){
2301 my %ovpn=();
2302 &General::readhash("${General::swroot}/ovpn/settings",\%ovpn);
2303 return $ovpn{'DOVPN_SUBNET'};
2304 }
2305 if ($name eq 'GREEN'){
2306 my %hash=();
2307 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
2308 return $hash{'GREEN_NETADDRESS'}."/".$hash{'GREEN_NETMASK'};
2309 }
2310 if ($name eq 'BLUE'){
2311 my %hash=();
2312 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
2313 return $hash{'BLUE_NETADDRESS'}."/".$hash{'BLUE_NETMASK'};
2314 }
2315 if ($name eq 'ORANGE'){
2316 my %hash=();
2317 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
2318 return $hash{'ORANGE_NETADDRESS'}."/".$hash{'ORANGE_NETMASK'};
2319 }
2320 if ($name eq 'ALL'){
2321 return "0.0.0.0/0.0.0.0";
2322 }
2323 if ($name =~ /IPsec/i){
2324 my %hash=();
2325 &General::readhash("${General::swroot}/vpn/settings",\%hash);
2326 return $hash{'RW_NET'};
2327 }
2328 }
2329 }
2330 sub decrease
2331 {
2332 my $grp=$_[0];
2333 &General::readhasharray("$confignet", \%customnetwork);
2334 &General::readhasharray("$confighost", \%customhost);
2335 foreach my $key (sort keys %customgrp ){
2336 if ( ($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Network')){
2337 foreach my $key1 (sort keys %customnetwork){
2338 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
2339 $customnetwork{$key1}[4]=$customnetwork{$key1}[4]-1;
2340 last;
2341 }
2342 }
2343 }
2344
2345 if (($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Host')){
2346 foreach my $key2 (sort keys %customhost){
2347 if ($customhost{$key2}[0] eq $customgrp{$key}[2]){
2348 $customhost{$key2}[4]=$customhost{$key2}[4]-1;
2349 last;
2350 }
2351 }
2352
2353 }
2354 }
2355 &General::writehasharray("$confignet", \%customnetwork);
2356 &General::writehasharray("$confighost", \%customhost);
2357 }
2358 sub decreaseservice
2359 {
2360 my $grp=$_[0];
2361 &General::readhasharray("$configsrv", \%customservice);
2362 &General::readhasharray("$configsrvgrp", \%customservicegrp);
2363
2364 foreach my $key (sort keys %customservicegrp){
2365 if ($customservicegrp{$key}[0] eq $grp ){
2366 foreach my $key2 (sort keys %customservice){
2367 if ($customservice{$key2}[0] eq $customservicegrp{$key}[2]){
2368 $customservice{$key2}[4]--;
2369 }
2370 }
2371 }
2372 }
2373 &General::writehasharray("$configsrv", \%customservice);
2374
2375 }
2376 sub changenameinfw
2377 {
2378 my $old=shift;
2379 my $new=shift;
2380 my $fld=shift;
2381 &General::readhasharray("$fwconfigfwd", \%fwfwd);
2382 &General::readhasharray("$fwconfiginp", \%fwinp);
2383 &General::readhasharray("$fwconfigout", \%fwout);
2384 #Rename group in Firewall-CONFIG
2385 foreach my $key1 (keys %fwfwd) {
2386 if($fwfwd{$key1}[$fld] eq $old){
2387 $fwfwd{$key1}[$fld]=$new;
2388 }
2389 }
2390 &General::writehasharray("$fwconfigfwd", \%fwfwd );
2391 #Rename group in Firewall-INPUT
2392 foreach my $key2 (keys %fwinp) {
2393 if($fwinp{$key2}[$fld] eq $old){
2394 $fwinp{$key2}[$fld]=$new;
2395 }
2396 }
2397 &General::writehasharray("$fwconfiginp", \%fwinp );
2398 #Rename group in Firewall-OUTGOING
2399 foreach my $key3 (keys %fwout) {
2400 if($fwout{$key3}[$fld] eq $old){
2401 $fwout{$key3}[$fld]=$new;
2402 }
2403 }
2404 &General::writehasharray("$fwconfigout", \%fwout );
2405 }
2406 sub checkports
2407 {
2408
2409 my %hash=%{(shift)};
2410 #check empty fields
2411 if ($fwhostsettings{'SRV_NAME'} eq '' ){
2412 $errormessage=$Lang::tr{'fwhost err name1'};
2413 }
2414 if ($fwhostsettings{'SRV_PORT'} eq '' && $fwhostsettings{'PROT'} ne 'ICMP'){
2415 $errormessage=$Lang::tr{'fwhost err port'};
2416 }
2417 #check valid name
2418 if (! &validhostname($fwhostsettings{'SRV_NAME'})){
2419 $errormessage="<br>".$Lang::tr{'fwhost err name'};
2420 }
2421 #change dashes with :
2422 $fwhostsettings{'SRV_PORT'}=~ tr/-/:/;
2423
2424 if ($fwhostsettings{'SRV_PORT'} eq "*") {
2425 $fwhostsettings{'SRV_PORT'} = "1:65535";
2426 }
2427 if ($fwhostsettings{'SRV_PORT'} =~ /^(\D)\:(\d+)$/) {
2428 $fwhostsettings{'SRV_PORT'} = "1:$2";
2429 }
2430 if ($fwhostsettings{'SRV_PORT'} =~ /^(\d+)\:(\D)$/) {
2431 $fwhostsettings{'SRV_PORT'} = "$1:65535";
2432 }
2433 if($fwhostsettings{'PROT'} ne 'ICMP'){
2434 $errormessage = $errormessage.&General::validportrange($fwhostsettings{'SRV_PORT'}, 'src');
2435 }
2436 # a new service has to have a different name
2437 foreach my $key (keys %hash){
2438 if ($hash{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
2439 $errormessage = "<br>".$Lang::tr{'fwhost err srv exists'};
2440 last;
2441 }
2442 }
2443 return $errormessage;
2444 }
2445 sub validhostname
2446 {
2447 # Checks a hostname against RFC1035
2448 my $hostname = $_[0];
2449
2450 # Each part should be at least two characters in length
2451 # but no more than 63 characters
2452 if (length ($hostname) < 1 || length ($hostname) > 63) {
2453 return 0;}
2454 # Only valid characters are a-z, A-Z, 0-9 and -
2455 if ($hostname !~ /^[a-zA-ZäöüÖÄÜ0-9-_.;()\/\s]*$/) {
2456 return 0;}
2457 # First character can only be a letter or a digit
2458 if (substr ($hostname, 0, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9]*$/) {
2459 return 0;}
2460 # Last character can only be a letter or a digit
2461 if (substr ($hostname, -1, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9()]*$/) {
2462 return 0;}
2463 return 1;
2464 }
2465 sub validremark
2466 {
2467 # Checks a hostname against RFC1035
2468 my $remark = $_[0];
2469 # Each part should be at least two characters in length
2470 # but no more than 63 characters
2471 if (length ($remark) < 1 || length ($remark) > 255) {
2472 return 0;}
2473 # Only valid characters are a-z, A-Z, 0-9 and -
2474 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s]*$/) {
2475 return 0;}
2476 # First character can only be a letter or a digit
2477 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9]*$/) {
2478 return 0;}
2479 # Last character can only be a letter or a digit
2480 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
2481 return 0;}
2482 return 1;
2483 }
2484 &Header::closebigbox();
2485 &Header::closepage();