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