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