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