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