]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/cgi-bin/fwhosts.cgi
Forward Firewall: deleted configfile "nat" in ovpnmain.cgi for portfw check. File...
[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 "IPFire");
1175 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1176 print " selected='selected'" if ($fwhostsettings{'DEFAULT_SRC_ADR'} eq $defaultNetworks{$network}{'NAME'});
1177 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
1178 my $defsub="$defaultNetworks{$network}{'NAME'}_NETMASK";
1179 my $defsub1=&General::subtocidr($ownnet{$defsub});
1180 $ownnet{$defnet}='' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
1181 if ($ownnet{$defnet}){
1182 print ">$network ($ownnet{$defnet}/$defsub1)</option>";
1183 }else{
1184 print ">$network</option>";
1185 }
1186 }
1187 print"</select></td></tr>";
1188 if (! -z $confignet){
1189 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;'>";
1190 foreach my $key (sort { ncmp($customnetwork{$a}[0],$customnetwork{$b}[0]) } keys %customnetwork) {
1191 print"<option>$customnetwork{$key}[0]</option>";
1192 }
1193 print"</select></td></tr>";
1194 }
1195 if (! -z $confighost){
1196 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;'>";
1197 foreach my $key (sort { ncmp($customhost{$a}[0],$customhost{$b}[0]) } keys %customhost) {
1198 print"<option>$customhost{$key}[0]</option>";
1199 }
1200 print"</select></td></tr>";
1201 }
1202 print"</table>";
1203 #Inner table right
1204 print"</td><td valign='top'><table width='100%' border='0'>";
1205 #OVPN networks
1206 if (! -z $configccdnet){
1207 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;'>";
1208 foreach my $key (sort { ncmp($ccdnet{$a}[0],$ccdnet{$b}[0]) } keys %ccdnet)
1209 {
1210 print"<option value='$ccdnet{$key}[0]'>$ccdnet{$key}[0]</option>";
1211 }
1212 print"</select></td></tr>";
1213 }
1214 #OVPN clients
1215 foreach my $key (sort { ncmp($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost)
1216 {
1217 if ($ccdhost{$key}[33] ne ''){
1218 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 '');
1219 $show='1';
1220 print"<option value='$ccdhost{$key}[1]'>$ccdhost{$key}[1]</option>";
1221 }
1222 }
1223 if ($show eq '1'){$show='';print"</select></td></tr>";}
1224 #OVPN n2n networks
1225 foreach my $key (sort { ncmp($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost) {
1226 if($ccdhost{$key}[3] eq 'net'){
1227 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 '');
1228 $show='1';
1229 print"<option>$ccdhost{$key}[1]</option>";
1230 }
1231 }
1232 if ($show eq '1'){$show='';print"</select></td></tr>";}
1233 #IPsec networks
1234 foreach my $key (sort { ncmp($ipsecconf{$a}[0],$ipsecconf{$b}[0]) } keys %ipsecconf) {
1235 if ($ipsecconf{$key}[3] eq 'net'){
1236 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 '');
1237 $show='1';
1238 print"<option value='$ipsecconf{$key}[1]'>$ipsecconf{$key}[1]</option>";
1239 }
1240 }
1241 if ($show eq '1'){$show='';print"</select></td></tr>";}
1242 print"</table>";
1243 print"</td></tr></table>";
1244 print"<br><br><b>$Lang::tr{'fwhost attention'}:</b><br> $Lang::tr{'fwhost macwarn'}<br><hr>";
1245 }
1246 print"<table border='0' width='100%'>";
1247 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>";
1248 &Header::closebox();
1249 }
1250 sub addservice
1251 {
1252 &error;
1253 &showmenu;
1254 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addservice'});
1255 if ($fwhostsettings{'updatesrv'} eq 'on')
1256 {
1257 $fwhostsettings{'oldsrvname'} = $fwhostsettings{'SRV_NAME'};
1258 $fwhostsettings{'oldsrvport'} = $fwhostsettings{'SRV_PORT'};
1259 $fwhostsettings{'oldsrvprot'} = $fwhostsettings{'PROT'};
1260 }
1261 print<<END;
1262 <table width='100%' border='0'><form method='post'>
1263 <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>
1264 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost prot'}:</td><td><select name='PROT'>
1265 END
1266 foreach ("TCP","UDP","ICMP")
1267 {
1268 if ($_ eq $fwhostsettings{'PROT'})
1269 {
1270 print"<option selected>$_</option>";
1271 }else{
1272 print"<option>$_</option>";
1273 }
1274 }
1275 print<<END;
1276 </select></td></tr>
1277 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost icmptype'}</td><td><select name='ICMP_TYPES'>
1278 END
1279 &General::readhasharray("${General::swroot}/fwhosts/icmp-types", \%icmptypes);
1280 print"<option>All ICMP-Types</option>";
1281 foreach my $key (sort { ncmp($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1282 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1283 }
1284
1285 print<<END;
1286 </select></td></tr>
1287 <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>
1288 <tr><td colspan='6'><br><hr></td></tr>
1289 <tr><td colspan='6' align='right'>
1290 END
1291 if ($fwhostsettings{'updatesrv'} eq 'on')
1292 {
1293 print<<END;
1294 <input type='submit' value='$Lang::tr{'update'}'style='min-width:100px;' >
1295 <input type='hidden' name='ACTION' value='updateservice'>
1296 <input type='hidden' name='oldsrvname' value='$fwhostsettings{'oldsrvname'}'>
1297 <input type='hidden' name='oldsrvport' value='$fwhostsettings{'oldsrvport'}'>
1298 <input type='hidden' name='oldsrvprot' value='$fwhostsettings{'oldsrvprot'}'></form>
1299 END
1300
1301 }else{
1302 print"<input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='saveservice'></form>";
1303 }
1304 print<<END;
1305 <form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></form></td></tr>
1306 </table></form>
1307
1308
1309 END
1310 &Header::closebox();
1311 &viewtableservice;
1312 }
1313 sub addservicegrp
1314 {
1315 &hint;
1316 &error;
1317 &showmenu;
1318 &Header::openbox('100%', 'left', $Lang::tr{'fwhost addservicegrp'});
1319 $fwhostsettings{'oldsrvgrpremark'}=$fwhostsettings{'SRVGRP_REMARK'};
1320 if ($fwhostsettings{'updatesrvgrp'} eq ''){
1321 print<<END;
1322 <table width='100%' border='0'><form method='post'>
1323 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='text' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}' size='24'></td></tr>
1324 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='text' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width: 98%;'></td></tr>
1325 <tr><td colspan='2'><br><hr></tr>
1326 </table>
1327 END
1328 }else{
1329 print<<END;
1330 <table width='100%' border='0'><form method='post' style='display:inline'>
1331 <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>
1332 <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>
1333 <tr><td colspan='3'><br><hr></td></td></tr>
1334 </table></form>
1335 END
1336 }
1337 if($fwhostsettings{'updatesrvgrp'} eq 'on'){
1338 print<<END;
1339 <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%'>
1340 <tr><td width='1%' nowrap='nowrap'>$Lang::tr{'fwhost cust service'}</td><td><select name='CUST_SRV' style='min-width:185px;'>
1341 END
1342 &General::readhasharray("$configsrv", \%customservice);
1343 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice)
1344 {
1345 print "<option>$customservice{$key}[0]</option>";
1346 }
1347 print<<END;
1348 </select></td></tr>
1349 <tr><td colspan='4'><br><br></td></tr>
1350 <tr><td colspan='4'><hr></td></tr>
1351 </table>
1352 END
1353 }
1354 print<<END;
1355 <table width='100%' border='0'>
1356 <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>
1357 </table></form>
1358 END
1359 &Header::closebox();
1360 }
1361 # View
1362 sub viewtablenet
1363 {
1364 if(! -z $confignet){
1365 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust net'});
1366 &General::readhasharray("$confignet", \%customnetwork);
1367 if (!keys %customnetwork)
1368 {
1369 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1370 }else{
1371 print<<END;
1372 <table border='0' width='100%' cellspacing='0'>
1373 <tr><td align='center'><b>$Lang::tr{'name'}</td><td align='center'><b>$Lang::tr{'fwhost netaddress'}</td><td align='center'><b>$Lang::tr{'remark'}</td><td align='center'><b>$Lang::tr{'used'}</td><td></td><td width='3%'></td></tr>
1374 END
1375 }
1376 my $count=0;
1377 foreach my $key (sort {ncmp($a,$b)} keys %customnetwork) {
1378 if ($fwhostsettings{'ACTION'} eq 'editnet' && $fwhostsettings{'HOSTNAME'} eq $customnetwork{$key}[0]) {
1379 print" <tr bgcolor='${Header::colouryellow}'>";
1380 }elsif ($count % 2)
1381 {
1382 print" <tr bgcolor='$color{'color22'}'>";
1383 }else
1384 {
1385 print" <tr bgcolor='$color{'color20'}'>";
1386 }
1387 my $colnet="$customnetwork{$key}[1]/".&General::subtocidr($customnetwork{$key}[2]);
1388 print"<td width='20%'><form method='post'>$customnetwork{$key}[0]</td><td width=15%' align='center'>".&Header::colorize($colnet)."</td><td width='40%'>$customnetwork{$key}[3]</td><td align='center'>$customnetwork{$key}[4]x</td>";
1389 print<<END;
1390 <td width='1%'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1391 <input type='hidden' name='ACTION' value='editnet'>
1392 <input type='hidden' name='HOSTNAME' value='$customnetwork{$key}[0]' />
1393 <input type='hidden' name='IP' value='$customnetwork{$key}[1]' />
1394 <input type='hidden' name='SUBNET' value='$customnetwork{$key}[2]' />
1395 <input type='hidden' name='NETREMARK' value='$customnetwork{$key}[3]' />
1396 </td></form>
1397 END
1398 if($customnetwork{$key}[4] == '0')
1399 {
1400 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>";
1401 }else{
1402 print"<td></td></form></tr>";
1403 }
1404 $count++;
1405 }
1406 print"</table>";
1407 &Header::closebox();
1408 }
1409
1410 }
1411 sub viewtablehost
1412 {
1413 if (! -z $confighost){
1414 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust addr'});
1415 &General::readhasharray("$confighost", \%customhost);
1416 if (!keys %customhost)
1417 {
1418 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1419 }else{
1420 print<<END;
1421 <table border='0' width='100%' cellspacing='0'>
1422 <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>
1423 END
1424 }
1425 my $count=0;
1426 foreach my $key (sort { ncmp ($customhost{$a}[0],$customhost{$b}[0])} keys %customhost) {
1427 if ( ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'}) && $fwhostsettings{'HOSTNAME'} eq $customhost{$key}[0]) {
1428 print" <tr bgcolor='${Header::colouryellow}'>";
1429 }elsif ($count % 2){ print" <tr bgcolor='$color{'color22'}'>";}
1430 else{ print" <tr bgcolor='$color{'color20'}'>";}
1431 my ($ip,$sub)=split(/\//,$customhost{$key}[2]);
1432 $customhost{$key}[4]=~s/\s+//g;
1433 print"<td width='20%'><form method='post'>$customhost{$key}[0]</td><td width='20%' align='center'>".&Header::colorize($ip)."</td><td width='50%' align='left'>$customhost{$key}[3]</td><td align='center'>$customhost{$key}[4]x</td>";
1434 print<<END;
1435 <td width='1%'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1436 <input type='hidden' name='ACTION' value='edithost' />
1437 <input type='hidden' name='HOSTNAME' value='$customhost{$key}[0]' />
1438 <input type='hidden' name='IP' value='$ip' />
1439 <input type='hidden' name='type' value='$customhost{$key}[1]' />
1440 <input type='hidden' name='HOSTREMARK' value='$customhost{$key}[3]' />
1441 </td></form>
1442 END
1443 if($customhost{$key}[4] == '0')
1444 {
1445 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>";
1446 }else{
1447 print"<td width='1%'></td></tr>";
1448 }
1449 $count++;
1450 }
1451 print"</table>";
1452 &Header::closebox();
1453 }
1454 }
1455 sub viewtablegrp
1456 {
1457 if(! -z "$configgrp"){
1458 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust grp'});
1459 &General::readhasharray("$configgrp", \%customgrp);
1460 &General::readhasharray("$configipsec", \%ipsecconf);
1461 &General::readhasharray("$configccdhost", \%ccdhost);
1462 &General::readhasharray("$configccdnet", \%ccdnet);
1463 &General::readhasharray("$confighost", \%customhost);
1464 &General::readhasharray("$confignet", \%customnetwork);
1465 my @grp=();
1466 my $helper='';
1467 my $count=1;
1468 my $grpname;
1469 my $remark;
1470 my $number;
1471 my $delflag;
1472 if (!keys %customgrp)
1473 {
1474 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1475 }else{
1476 foreach my $key (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp ($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1477 $count++;
1478 if ($helper ne $customgrp{$key}[0]){
1479 $delflag='0';
1480 foreach my $key1 (sort { ncmp($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1481 if ($customgrp{$key}[0] eq $customgrp{$key1}[0])
1482 {
1483 $delflag++;
1484 }
1485 if($delflag > 1){
1486 last;
1487 }
1488 }
1489 $number=1;
1490 if ($customgrp{$key}[2] eq "none"){$customgrp{$key}[2]=$Lang::tr{'fwhost empty'};}
1491 $grpname=$customgrp{$key}[0];
1492 $remark="$customgrp{$key}[1]";
1493 if($count >=2){print"</table>";}
1494 print "<br><b><u>$grpname</u></b> &nbsp &nbsp";
1495 print " <b>$Lang::tr{'remark'}:</b>&nbsp $remark &nbsp " if ($remark ne '');
1496 print "<b>$Lang::tr{'used'}:</b> $customgrp{$key}[4]x";
1497 if($customgrp{$key}[4] == '0')
1498 {
1499 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>";
1500 }
1501 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>";
1502 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>";
1503 }
1504
1505 if ( ($fwhostsettings{'ACTION'} eq 'editgrp' || $fwhostsettings{'update'} ne '') && $fwhostsettings{'grp_name'} eq $customgrp{$key}[0]) {
1506 print" <tr bgcolor='${Header::colouryellow}'>";
1507 }elsif ($count %2 == 0){
1508 print"<tr bgcolor='$color{'color22'}'>";
1509 }else{
1510 print"<tr bgcolor='$color{'color20'}'>";
1511 }
1512 my $ip=&getipforgroup($customgrp{$key}[2],$customgrp{$key}[3]);
1513 if ($ip eq ''){print"<tr bgcolor='${Header::colouryellow}'>";}
1514 print "<td width='39%' align='left'>";
1515 if($customgrp{$key}[3] eq 'Standard Network'){
1516 print &get_name($customgrp{$key}[2])."</td>";
1517 }else{
1518 print "$customgrp{$key}[2]</td>";
1519 }
1520 if ($ip eq '' && $customgrp{$key}[2] ne $Lang::tr{'fwhost empty'}){
1521 print "<td align='center'>$Lang::tr{'fwhost deleted'}</td><td align='center'>$customgrp{$key}[3]</td><td width='1%'><form method='post'>";
1522 }else{
1523 my ($colip,$colsub) = split("/",$ip);
1524 $ip="$colip/".&General::subtocidr($colsub) if ($colsub);
1525 print"<td align='center'>".&Header::colorize($ip)."</td><td align='center'>$customgrp{$key}[3]</td><td width='1%'><form method='post'>";
1526 }
1527 if ($delflag > '1' && $ip ne ''){
1528 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1529 }
1530 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>";
1531
1532 $helper=$customgrp{$key}[0];
1533 $number++;
1534 }
1535 print"</table>";
1536
1537 }
1538 &Header::closebox();
1539 }
1540
1541 }
1542 sub viewtableservice
1543 {
1544 my $count=0;
1545 if(! -z "$configsrv")
1546 {
1547 &Header::openbox('100%', 'left', $Lang::tr{'fwhost services'});
1548 &General::readhasharray("$configsrv", \%customservice);
1549 print<<END;
1550 <table width='100%' border='0' cellspacing='0'>
1551 <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>
1552 END
1553 foreach my $key (sort { ncmp($customservice{$a}[0],$customservice{$b}[0])} keys %customservice)
1554 {
1555 $count++;
1556 if ( ($fwhostsettings{'updatesrv'} eq 'on' || $fwhostsettings{'error'}) && $fwhostsettings{'SRV_NAME'} eq $customservice{$key}[0]) {
1557 print" <tr bgcolor='${Header::colouryellow}'>";
1558 }elsif ($count % 2){ print" <tr bgcolor='$color{'color22'}'>";}else{ print" <tr bgcolor='$color{'color20'}'>";}
1559 print<<END;
1560 <td>$customservice{$key}[0]</td><td align='center'>$customservice{$key}[2]</td><td align='center'>$customservice{$key}[1]</td><td align='center'>
1561 END
1562 if($customservice{$key}[3] ne 'BLANK'){print $customservice{$key}[3];}
1563
1564 print<<END;
1565 </td><td align='center'>$customservice{$key}[4]x</td>
1566 <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' />
1567 <input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]' />
1568 <input type='hidden' name='SRV_PORT' value='$customservice{$key}[1]' />
1569 <input type='hidden' name='PROT' value='$customservice{$key}[2]' /></form></td>
1570 END
1571 if ($customservice{$key}[4] eq '0')
1572 {
1573 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>";
1574 }else{
1575 print"<td></td></tr>";
1576 }
1577 }
1578 print"</table>";
1579 &Header::closebox();
1580 }
1581 }
1582 sub viewtableservicegrp
1583 {
1584 my $count=0;
1585 my $grpname;
1586 my $remark;
1587 my $helper;
1588 my $port;
1589 my $protocol;
1590 my $delflag;
1591 if (! -z $configsrvgrp){
1592 &Header::openbox('100%', 'left', $Lang::tr{'fwhost cust srvgrp'});
1593 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1594 &General::readhasharray("$configsrv", \%customservice);
1595 my $number= keys %customservicegrp;
1596 foreach my $key (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
1597 $count++;
1598 if ($helper ne $customservicegrp{$key}[0]){
1599 $delflag=0;
1600 foreach my $key1 (sort { ncmp($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp($customservicegrp{$a}[2],$customservicegrp{$b}[2]) } keys %customservicegrp){
1601 if ($customservicegrp{$key}[0] eq $customservicegrp{$key1}[0])
1602 {
1603 $delflag++;
1604 }
1605 if($delflag > 1){
1606 last;
1607 }
1608 }
1609 $grpname=$customservicegrp{$key}[0];
1610 if ($customservicegrp{$key}[2] eq "none"){
1611 $customservicegrp{$key}[2]=$Lang::tr{'fwhost empty'};
1612 $port='';
1613 $protocol='';
1614 }
1615 $remark="$customservicegrp{$key}[1]";
1616 if($count >=2){print"</table>";}
1617 print "<br><b><u>$grpname</u></b> &nbsp &nbsp ";
1618 print "<b>$Lang::tr{'remark'}:</b>&nbsp $remark " if ($remark ne '');
1619 print "&nbsp <b>$Lang::tr{'used'}:</b> $customservicegrp{$key}[3]x";
1620 if($customservicegrp{$key}[3] == '0')
1621 {
1622 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>";
1623 }
1624 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>";
1625 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>";
1626 }
1627 if( $fwhostsettings{'SRVGRP_NAME'} eq $customservicegrp{$key}[0]) {
1628 print" <tr bgcolor='${Header::colouryellow}'>";
1629 }elsif ($count %2 == 0){
1630 print"<tr bgcolor='$color{'color22'}'>";
1631 }else{
1632 print"<tr bgcolor='$color{'color20'}'>";
1633 }
1634 print "<td width='39%'>$customservicegrp{$key}[2]</td>";
1635 foreach my $srv (sort keys %customservice){
1636 if ($customservicegrp{$key}[2] eq $customservice{$srv}[0]){
1637 $protocol=$customservice{$srv}[2];
1638 $port=$customservice{$srv}[1];
1639 last;
1640 }
1641 }
1642 print"<td align='center'>$port</td><td align='center'>$protocol</td><td width='1%'><form method='post'>";
1643 if ($number gt '1'){
1644 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1645 }
1646 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>";
1647 $helper=$customservicegrp{$key}[0];
1648 }
1649 print"</table>";
1650 &Header::closebox();
1651 }
1652 }
1653 # Check
1654 sub checkname
1655 {
1656 my %hash=%{(shift)};
1657 foreach my $key (keys %hash) {
1658 if($hash{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
1659 return 0;
1660 }
1661 }
1662 return 1;
1663
1664 }
1665 sub checkip
1666 {
1667
1668 my %hash=%{(shift)};
1669 my $a=shift;
1670 foreach my $key (keys %hash) {
1671 if($hash{$key}[$a] eq $fwhostsettings{'IP'}."/".&General::iporsubtodec($fwhostsettings{'SUBNET'})){
1672 return 0;
1673 }
1674 }
1675 return 1;
1676 }
1677 sub checksubnet
1678 {
1679
1680 my %hash=%{(shift)};
1681 &General::readhasharray("$confignet", \%hash);
1682 foreach my $key (keys %hash) {
1683 if(&General::IpInSubnet($fwhostsettings{'IP'},$hash{$key}[1],$hash{$key}[2]))
1684 {
1685 return 1;
1686 }
1687 }
1688 return 0;
1689 }
1690 sub checkservicegroup
1691 {
1692 &General::readhasharray("$configsrvgrp", \%customservicegrp);
1693
1694
1695 #check name
1696 if ( ! &validhostname($fwhostsettings{'SRVGRP_NAME'}))
1697 {
1698 $errormessage.=$Lang::tr{'fwhost err name'}."<br>";
1699 return $errormessage;
1700 }
1701 #check empty selectbox
1702 if (keys %customservice lt 1)
1703 {
1704 $errormessage.=$Lang::tr{'fwhost err groupempty'}."<br>";
1705 }
1706 #check if name already exists
1707 if ($fwhostsettings{'updatesrvgrp'} ne 'on'){
1708 foreach my $key (keys %customservicegrp) {
1709 if( $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} ){
1710 $errormessage.=$Lang::tr{'fwhost err grpexist'}."<br>";
1711
1712 }
1713 }
1714 }
1715 #check if service already exists in group
1716 foreach my $key (keys %customservicegrp) {
1717 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[2] eq $fwhostsettings{'CUST_SRV'} ){
1718 $errormessage.=$Lang::tr{'fwhost err srvexist'}."<br>";
1719 }
1720 }
1721 return $errormessage;
1722 }
1723 sub error
1724 {
1725 if ($errormessage) {
1726 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
1727 print "<class name='base'>$errormessage\n";
1728 print "&nbsp;</class>\n";
1729 &Header::closebox();
1730 }
1731 }
1732 sub hint
1733 {
1734 if ($hint) {
1735 &Header::openbox('100%', 'left', $Lang::tr{'fwhost hint'});
1736 print "<class name='base'>$hint\n";
1737 print "&nbsp;</class>\n";
1738 &Header::closebox();
1739 }
1740 }
1741 sub get_name
1742 {
1743 my $val=shift;
1744 &General::setup_default_networks(\%defaultNetworks);
1745 foreach my $network (sort keys %defaultNetworks)
1746 {
1747 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
1748 }
1749 }
1750 sub deletefromgrp
1751 {
1752 my $target=shift;
1753 my $config=shift;
1754 my %hash=();
1755 &General::readhasharray("$config",\%hash);
1756 foreach my $key (keys %hash) {
1757 $errormessage.="lese $hash{$key}[2] und $target<br>";
1758 if($hash{$key}[2] eq $target){
1759
1760 delete $hash{$key};
1761 $errormessage.="Habe $target aus Gruppe gelöscht!<br>";
1762 }
1763 }
1764 &General::writehasharray("$config",\%hash);
1765
1766 }
1767 sub plausicheck
1768 {
1769 my $edit=shift;
1770 #check hostname
1771 if (!&validhostname($fwhostsettings{'HOSTNAME'}))
1772 {
1773 $errormessage=$errormessage.$Lang::tr{'fwhost err name'};
1774 $fwhostsettings{'BLK_IP'}='readonly';
1775 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1776 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1777 }
1778 #check if name collides with CCD Netname
1779 &General::readhasharray("$configccdnet", \%ccdnet);
1780 foreach my $key (keys %ccdnet) {
1781 if($ccdnet{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
1782 $errormessage=$errormessage.$Lang::tr{'fwhost err isccdnet'};;
1783 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1784 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1785 last;
1786 }
1787 }
1788 #check if IP collides with CCD NetIP
1789 if ($fwhostsettings{'type'} ne 'mac'){
1790 &General::readhasharray("$configccdnet", \%ccdnet);
1791 foreach my $key (keys %ccdnet) {
1792 my $test=(&General::getnetworkip($fwhostsettings{'IP'},&General::iporsubtocidr($fwhostsettings{'SUBNET'})))."/".$fwhostsettings{'SUBNET'};
1793 if($ccdnet{$key}[1] eq $test){
1794 $errormessage=$errormessage.$Lang::tr{'fwhost err isccdipnet'};
1795 $fwhostsettings{'IP'} = $fwhostsettings{'orgip'};
1796 $fwhostsettings{'SUBNET'} = $fwhostsettings{'orgsubnet'};
1797 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1798 last;
1799 }
1800 }
1801 }
1802 #check if name collides with CCD Hostname
1803 &General::readhasharray("$configccdhost", \%ccdhost);
1804 foreach my $key (keys %ccdhost) {
1805 my ($ip,$sub)=split(/\//,$ccdhost{$key}[33]);
1806 if($ip eq $fwhostsettings{'IP'}){
1807 $errormessage=$Lang::tr{'fwhost err isccdiphost'};
1808 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1809 last;
1810 }
1811 }
1812 #check if IP collides with CCD HostIP (only hosts)
1813 if ($edit eq 'edithost')
1814 {
1815 foreach my $key (keys %ccdhost) {
1816 if($ccdhost{$key}[1] eq $fwhostsettings{'HOSTNAME'}){
1817 $errormessage=$Lang::tr{'fwhost err isccdhost'};
1818 $fwhostsettings{'IP'} = $fwhostsettings{'orgname'};
1819 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1820 last;
1821 }
1822 }
1823 }
1824 #check if network with this name already exists
1825 &General::readhasharray("$confignet", \%customnetwork);
1826 if (!&checkname(\%customnetwork))
1827 {
1828 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err netexist'};
1829 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1830 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1831 }
1832 #check if network ip already exists
1833 if (!&checkip(\%customnetwork,1))
1834 {
1835 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err net'};
1836 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1837 }
1838 #check if host with this name already exists
1839 &General::readhasharray("$confighost", \%customhost);
1840 if (!&checkname(\%customhost))
1841 {
1842 $errormessage.="<br>".$Lang::tr{'fwhost err hostexist'};
1843 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1844 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1845 }
1846 #check if host with this ip already exists
1847 if (!&checkip(\%customhost,2))
1848 {
1849 $errormessage=$errormessage."<br>".$Lang::tr{'fwhost err ipcheck'};
1850 }
1851 return;
1852 }
1853 sub getipforgroup
1854 {
1855 my $name=$_[0],
1856 my $type=$_[1];
1857 my $value;
1858
1859 #get address from IPSEC NETWORK
1860 if ($type eq 'IpSec Network'){
1861 foreach my $key (keys %ipsecconf) {
1862 if ($ipsecconf{$key}[1] eq $name){
1863 return $ipsecconf{$key}[11];
1864 }
1865 }
1866 &deletefromgrp($name,$configgrp);
1867 }
1868
1869 #get address from IPSEC HOST
1870 if ($type eq 'IpSec Host'){
1871 foreach my $key (keys %ipsecconf) {
1872 if ($ipsecconf{$key}[1] eq $name){
1873 return $ipsecconf{$key}[10];
1874 }
1875 }
1876 &deletefromgrp($name,$configgrp);
1877 }
1878
1879 #get address from ovpn ccd Net-2-Net
1880 if ($type eq 'OpenVPN N-2-N'){
1881 foreach my $key (keys %ccdhost) {
1882 if($ccdhost{$key}[1] eq $name){
1883 my ($a,$b) = split ("/",$ccdhost{$key}[11]);
1884 $b=&General::iporsubtodec($b);
1885 return "$a/$b";
1886 }
1887 }
1888 &deletefromgrp($name,$configgrp);
1889 }
1890
1891 #get address from ovpn ccd static host
1892 if ($type eq 'OpenVPN static host'){
1893 foreach my $key (keys %ccdhost) {
1894 if($ccdhost{$key}[1] eq $name){
1895 my ($a,$b) = split (/\//,$ccdhost{$key}[33]);
1896 $b=&General::iporsubtodec($b);
1897 return "$a/$b";
1898 }
1899 }
1900 &deletefromgrp($name,$configgrp);
1901 }
1902
1903 #get address from ovpn ccd static net
1904 if ($type eq 'OpenVPN static network'){
1905 foreach my $key (keys %ccdnet) {
1906 if ($ccdnet{$key}[0] eq $name){
1907 my ($a,$b) = split (/\//,$ccdnet{$key}[1]);
1908 $b=&General::iporsubtodec($b);
1909 return "$a/$b";
1910 }
1911 }
1912 }
1913
1914 #check custom addresses
1915 if ($type eq 'Custom Host'){
1916 foreach my $key (keys %customhost) {
1917 if ($customhost{$key}[0] eq $name){
1918 my ($ip,$sub) = split("/",$customhost{$key}[2]);
1919 return $ip;
1920 }
1921 }
1922 }
1923
1924 ##check custom networks
1925 if ($type eq 'Custom Network'){
1926 foreach my $key (keys %customnetwork) {
1927 if($customnetwork{$key}[0] eq $name){
1928 return $customnetwork{$key}[1]."/".$customnetwork{$key}[2];
1929 }
1930 }
1931 }
1932
1933 #check standard networks
1934 if ($type eq 'Standard Network'){
1935 if ($name =~ /OpenVPN/i){
1936 my %ovpn=();
1937 &General::readhash("${General::swroot}/ovpn/settings",\%ovpn);
1938 return $ovpn{'DOVPN_SUBNET'};
1939 }
1940 if ($name eq 'GREEN'){
1941 my %hash=();
1942 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
1943 return $hash{'GREEN_NETADDRESS'}."/".$hash{'GREEN_NETMASK'};
1944 }
1945 if ($name eq 'BLUE'){
1946 my %hash=();
1947 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
1948 return $hash{'BLUE_NETADDRESS'}."/".$hash{'BLUE_NETMASK'};
1949 }
1950 if ($name eq 'ORANGE'){
1951 my %hash=();
1952 &General::readhash("${General::swroot}/ethernet/settings",\%hash);
1953 return $hash{'ORANGE_NETADDRESS'}."/".$hash{'ORANGE_NETMASK'};
1954 }
1955 if ($name eq 'ALL'){
1956 return "0.0.0.0/0.0.0.0";
1957 }
1958 if ($name =~ /IPsec/i){
1959 my %hash=();
1960 &General::readhash("${General::swroot}/vpn/settings",\%hash);
1961 return $hash{'RW_NET'};
1962 }
1963 }
1964 }
1965 sub rules
1966 {
1967 if (!-f "${General::swroot}/fwhosts/reread"){
1968 system("touch ${General::swroot}/fwhosts/reread");
1969 system("touch ${General::swroot}/forward/reread");
1970 }
1971 }
1972 sub reread_rules
1973 {
1974 system ("/usr/local/bin/forwardfwctrl");
1975 if ( -f "${General::swroot}/fwhosts/reread"){
1976 system("rm ${General::swroot}/fwhosts/reread");
1977 system("rm ${General::swroot}/forward/reread");
1978 }
1979
1980 }
1981 sub decrease
1982 {
1983 my $grp=$_[0];
1984 &General::readhasharray("$confignet", \%customnetwork);
1985 &General::readhasharray("$confighost", \%customhost);
1986 foreach my $key (sort keys %customgrp ){
1987 if ( ($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Network')){
1988 foreach my $key1 (sort keys %customnetwork){
1989 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
1990 $customnetwork{$key1}[4]=$customnetwork{$key1}[4]-1;
1991 last;
1992 }
1993 }
1994 }
1995
1996 if (($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Host')){
1997 foreach my $key2 (sort keys %customhost){
1998 if ($customhost{$key2}[0] eq $customgrp{$key}[2]){
1999 $customhost{$key2}[4]=$customhost{$key2}[4]-1;
2000 last;
2001 }
2002 }
2003
2004 }
2005 }
2006 &General::writehasharray("$confignet", \%customnetwork);
2007 &General::writehasharray("$confighost", \%customhost);
2008 }
2009 sub decreaseservice
2010 {
2011 my $grp=$_[0];
2012 &General::readhasharray("$configsrv", \%customservice);
2013 &General::readhasharray("$configsrvgrp", \%customservicegrp);
2014
2015 foreach my $key (sort keys %customservicegrp){
2016 if ($customservicegrp{$key}[0] eq $grp ){
2017 foreach my $key2 (sort keys %customservice){
2018 if ($customservice{$key2}[0] eq $customservicegrp{$key}[2]){
2019 $customservice{$key2}[4]--;
2020 }
2021 }
2022 }
2023 }
2024 &General::writehasharray("$configsrv", \%customservice);
2025
2026 }
2027 sub checkports
2028 {
2029
2030 my %hash=%{(shift)};
2031 #check empty fields
2032 if ($fwhostsettings{'SRV_NAME'} eq '' ){
2033 $errormessage=$Lang::tr{'fwhost err name1'};
2034 }
2035 if ($fwhostsettings{'SRV_PORT'} eq '' && $fwhostsettings{'PROT'} ne 'ICMP'){
2036 $errormessage=$Lang::tr{'fwhost err port'};
2037 }
2038 #check valid name
2039 if (! &validhostname($fwhostsettings{'SRV_NAME'})){
2040 $errormessage="<br>".$Lang::tr{'fwhost err name'};
2041 }
2042 #change dashes with :
2043 $fwhostsettings{'SRV_PORT'}=~ tr/-/:/;
2044
2045 if ($fwhostsettings{'SRV_PORT'} eq "*") {
2046 $fwhostsettings{'SRV_PORT'} = "1:65535";
2047 }
2048 if ($fwhostsettings{'SRV_PORT'} =~ /^(\D)\:(\d+)$/) {
2049 $fwhostsettings{'SRV_PORT'} = "1:$2";
2050 }
2051 if ($fwhostsettings{'SRV_PORT'} =~ /^(\d+)\:(\D)$/) {
2052 $fwhostsettings{'SRV_PORT'} = "$1:65535";
2053 }
2054 if($fwhostsettings{'PROT'} ne 'ICMP'){
2055 $errormessage = $errormessage.&General::validportrange($fwhostsettings{'SRV_PORT'}, 'src');
2056 }
2057 # a new service has to have a different name
2058 foreach my $key (keys %hash){
2059 if ($hash{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
2060 $errormessage = "<br>".$Lang::tr{'fwhost err srv exists'};
2061 last;
2062 }
2063 }
2064 return $errormessage;
2065 }
2066 sub validhostname
2067 {
2068 # Checks a hostname against RFC1035
2069 my $hostname = $_[0];
2070
2071 # Each part should be at least two characters in length
2072 # but no more than 63 characters
2073 if (length ($hostname) < 1 || length ($hostname) > 63) {
2074 return 0;}
2075 # Only valid characters are a-z, A-Z, 0-9 and -
2076 if ($hostname !~ /^[a-zA-ZäöüÖÄÜ0-9-_.;()\/\s]*$/) {
2077 return 0;}
2078 # First character can only be a letter or a digit
2079 if (substr ($hostname, 0, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9]*$/) {
2080 return 0;}
2081 # Last character can only be a letter or a digit
2082 if (substr ($hostname, -1, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9()]*$/) {
2083 return 0;}
2084 return 1;
2085 }
2086 sub validremark
2087 {
2088 # Checks a hostname against RFC1035
2089 my $remark = $_[0];
2090 # Each part should be at least two characters in length
2091 # but no more than 63 characters
2092 if (length ($remark) < 1 || length ($remark) > 255) {
2093 return 0;}
2094 # Only valid characters are a-z, A-Z, 0-9 and -
2095 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s]*$/) {
2096 return 0;}
2097 # First character can only be a letter or a digit
2098 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9]*$/) {
2099 return 0;}
2100 # Last character can only be a letter or a digit
2101 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
2102 return 0;}
2103 return 1;
2104 }
2105 &Header::closebigbox();
2106 &Header::closepage();