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