]>
git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/cfgroot/general-functions.pl
3 # This code is distributed under the terms of the GPL
5 # (c) The SmoothWall Team
6 # Copyright (C) 2002 Alex Hudson - getcgihash() rewrite
7 # Copyright (C) 2002 Bob Grant <bob@cache.ucr.edu> - validmac()
8 # Copyright (c) 2002/04/13 Steve Bootes - add alias section, helper functions
9 # Copyright (c) 2002/08/23 Mark Wormgoor <mark@wormgoor.com> validfqdn()
10 # Copyright (c) 2003/09/11 Darren Critchley <darrenc@telus.net> srtarray()
12 # $Id: general-functions.pl,v 1.1.2.26 2006/01/04 16:33:55 franck78 Exp $
20 use Locale
::Codes
::Country
;
22 use Net
::IPv4Addr
qw(:all);
23 $|=1; # line buffering
25 $General::version
= 'VERSION';
26 $General::swroot
= 'CONFIG_ROOT';
27 $General::noipprefix
= 'noipg-';
28 $General::adminmanualurl
= 'http://wiki.ipfire.org';
30 require "${General::swroot}/network-functions.pl";
33 # log ("message") use default 'ipcop' tag
34 # log ("tag","message") use your tag
39 $tag = shift if (@_>1);
40 my $logmessage = $_[0];
41 $logmessage =~ /([\w\W]*)/;
43 system('logger', '-t', $tag, $logmessage);
45 sub setup_default_networks
48 my $defaultNetworks = shift;
50 &readhash
("/var/ipfire/ethernet/settings", \
%netsettings);
52 # Get current defined networks (Red, Green, Blue, Orange)
53 $defaultNetworks->{$Lang::tr{'fwhost any'}}{'IPT'} = "0.0.0.0/0.0.0.0";
54 $defaultNetworks->{$Lang::tr{'fwhost any'}}{'NAME'} = "ALL";
56 $defaultNetworks->{$Lang::tr{'green'}}{'IPT'} = "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
57 $defaultNetworks->{$Lang::tr{'green'}}{'NET'} = "$netsettings{'GREEN_ADDRESS'}";
58 $defaultNetworks->{$Lang::tr{'green'}}{'NAME'} = "GREEN";
60 if ($netsettings{'RED_DEV'} ne ''){
61 $defaultNetworks->{$Lang::tr{'fwdfw red'}}{'IPT'} = "$netsettings{'RED_NETADDRESS'}/$netsettings{'RED_NETMASK'}";
62 $defaultNetworks->{$Lang::tr{'fwdfw red'}}{'NET'} = "$netsettings{'RED_ADDRESS'}";
63 $defaultNetworks->{$Lang::tr{'fwdfw red'}}{'NAME'} = "RED";
65 if ($netsettings{'ORANGE_DEV'} ne ''){
66 $defaultNetworks->{$Lang::tr{'orange'}}{'IPT'} = "$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}";
67 $defaultNetworks->{$Lang::tr{'orange'}}{'NET'} = "$netsettings{'ORANGE_ADDRESS'}";
68 $defaultNetworks->{$Lang::tr{'orange'}}{'NAME'} = "ORANGE";
71 if ($netsettings{'BLUE_DEV'} ne ''){
72 $defaultNetworks->{$Lang::tr{'blue'}}{'IPT'} = "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}";
73 $defaultNetworks->{$Lang::tr{'blue'}}{'NET'} = "$netsettings{'BLUE_ADDRESS'}";
74 $defaultNetworks->{$Lang::tr{'blue'}}{'NAME'} = "BLUE";
78 $defaultNetworks->{'IPFire'}{'NAME'} = "IPFire";
81 if(-e
"${General::swroot}/ovpn/settings")
83 my %ovpnSettings = ();
84 &readhash
("${General::swroot}/ovpn/settings", \
%ovpnSettings);
87 if(defined($ovpnSettings{'DOVPN_SUBNET'}))
89 my ($ip,$sub) = split(/\//,$ovpnSettings{'DOVPN_SUBNET'});
90 $sub=&General
::iporsubtocidr
($sub);
91 my @tempovpnsubnet = split("\/", $ovpnSettings{'DOVPN_SUBNET'});
92 $defaultNetworks->{'OpenVPN ' ."($ip/$sub)"}{'ADR'} = $tempovpnsubnet[0];
93 $defaultNetworks->{'OpenVPN ' ."($ip/$sub)"}{'NAME'} = "OpenVPN-Dyn";
97 if(-e
"${General::swroot}/vpn/settings")
99 my %ipsecsettings = ();
100 &readhash
("${General::swroot}/vpn/settings", \
%ipsecsettings);
101 if($ipsecsettings{'RW_NET'} ne '')
103 my ($ip,$sub) = split(/\//,$ipsecsettings{'RW_NET'});
104 $sub=&General
::iporsubtocidr
($sub);
105 my @tempipsecsubnet = split("\/", $ipsecsettings{'RW_NET'});
106 $defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'ADR'} = $tempipsecsubnet[0];
107 $defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'NAME'} = "IPsec RW";
108 $defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'NET'} = &getnextip
($ip);
115 my $defaultNetworks = shift;
116 open(FILE
, "${General::swroot}/ethernet/aliases") or die 'Unable to open aliases file.';
117 my @current = <FILE
>;
120 foreach my $line (@current)
124 my @temp = split(/\,/,$line);
125 if ($temp[2] eq '') {
126 $temp[2] = "Alias $ctr : $temp[0]";
128 $defaultNetworks->{$temp[2]}{'IPT'} = "$temp[0]";
129 $defaultNetworks->{$temp[2]}{'NET'} = "$temp[0]";
138 my $filename = $_[0];
143 # Some ipcop code expects that readhash 'complete' the hash if new entries
144 # are presents. Not clear it !!!
147 open(FILE
, $filename) or die "Unable to read file $filename";
152 ($var, $val) = split /=/, $_, 2;
158 # Untaint variables read from hash
159 # trim space from begin and end
162 $var =~ /([A-Za-z0-9_-]*)/;
166 $hash->{$var} = $val;
175 my $filename = $_[0];
179 # write cgi vars to the file.
180 open(FILE
, ">${filename}") or die "Unable to write file $filename";
182 foreach $var (keys %$hash)
184 if ( $var eq "__CGI__"){next;}
185 $val = $hash->{$var};
186 # Darren Critchley Jan 17, 2003 added the following because when submitting with a graphic, the x and y
187 # location of the mouse are submitted as well, this was being written to the settings file causing
188 # some serious grief! This skips the variable.x and variable.y
189 if (!($var =~ /(.x|.y)$/)) {
192 if (!($var =~ /^ACTION/)) {
193 print FILE
"${var}=${val}\n"; }
201 # This function replaces the given hash in the original hash by keeping the old
202 # content and just replacing the new content
204 my $filename = $_[0];
209 readhash
("${filename}", \
%oldhash);
211 foreach $var (keys %$newhash){
212 $oldhash{$var}=$newhash->{$var};
215 # write cgi vars to the file.
216 open(FILE
, ">${filename}") or die "Unable to write file $filename";
218 foreach $var (keys %oldhash)
220 if ( $var eq "__CGI__"){next;}
221 $val = $oldhash{$var};
222 # Darren Critchley Jan 17, 2003 added the following because when submitting with a graphic, the x and y
223 # location of the mouse are submitted as well, this was being written to the settings file causing
224 # some serious grief! This skips the variable.x and variable.y
225 if (!($var =~ /(.x|.y)$/)) {
228 if (!($var =~ /^ACTION/)) {
229 print FILE
"${var}=${val}\n"; }
236 my ($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size,
237 $atime, $mtime, $ctime, $blksize, $blocks) = stat $_[0];
238 my $totalsecs = time() - $mtime;
241 my $secs = $totalsecs % 60;
244 push(@s, "${secs}s");
247 my $min = $totalsecs % 60;
253 my $hrs = $totalsecs % 24;
259 my $days = int($totalsecs);
261 push(@s, "${days}d");
264 return join(" ", reverse(@s));
271 if (!($ip =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/)) {
275 my @octets = ($1, $2, $3, $4);
280 if ($_ < 0 || $_ > 255) {
290 return &Network
::check_netmask
($mask) || &Network
::check_prefix
($mask);
295 my $ipormask = $_[0];
297 # see if it is a IP only.
298 if (&validip
($ipormask)) {
300 # split it into number and mask.
301 if (!($ipormask =~ /^(.*?)\/(.*?
)$/)) {
305 # first part not a ip?
306 if (!(&validip
($ip))) {
308 return &validmask
($mask);
312 return &Network
::convert_netmask2prefix
(shift);
316 return &Network
::convert_prefix2netmask
(shift);
321 #Gets: Ip address or subnetmask in decimal oder CIDR
322 #Gives: What it gets only in CIDR format
327 if ($subnet =~ /^(.*?)\/(.*?
)$/) {
328 ($net,$mask) = split (/\//,$subnet);
334 #Subnet already in decimal and valid?
335 if ($mask=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ &&(($1<=255 && $2<=$1 && $3<=$2 && $4<=$3 ))) {
336 for (my $i=0;$i<=32;$i++){
337 if (&General
::cidrtosub
($i) eq $mask){
338 if ($full == 0){return $mask;}else{
339 return $net."/".$mask;
344 #Subnet in binary format?
345 if ($mask=~/^(\d{1,2})$/ && (($1<=32 && $1>=0))){
346 if($full == 0){ return &General
::cidrtosub
($mask);}else{
347 return $net."/".&General
::cidrtosub
($mask);
358 #gets: Ip Address or subnetmask in decimal oder CIDR
359 #Gives: What it gets only in CIDR format
364 if ($subnet =~ /^(.*?)\/(.*?
)$/) {
365 ($net,$mask) = split (/\//,$subnet);
370 #Subnet in decimal and valid?
371 if ($mask=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ &&(($1<=255 && $2<=$1 && $3<=$2 && $4<=$3 ))) {
372 for (my $i=0;$i<=32;$i++){
373 if (&General
::cidrtosub
($i) eq $mask){
374 if ($full == 0){return &General
::subtocidr
($mask);}else{
375 return $net."/".&General
::subtocidr
($mask);
380 #Subnet already in binary format?
381 if ($mask=~/^(\d{1,2})$/ && (($1<=32 && $1>=0))){
382 if($full == 0){ return $mask;}else{
383 return $net."/".$mask;
392 my $arg = join("/", @_);
394 return &Network
::get_netaddress
($arg);
399 #Gets: IP in Form ("192.168.0.0/24")
400 #Gives: Broadcastaddress of network
402 my ($ccdip,$ccdsubnet) = split "/",$ccdnet;
403 my $ip_address_binary = inet_aton
( $ccdip );
404 my $netmask_binary = ~pack("N", (2**(32-$ccdsubnet))-1);
405 my $broadcast_address = inet_ntoa
( $ip_address_binary | ~$netmask_binary );
406 return $broadcast_address;
410 return &Network
::ip2bin
(shift);
414 return &Network
::bin2ip
(shift);
418 return &Network
::find_next_ip_address
(shift, 4);
422 return &Network
::find_next_ip_address
(shift, -1);
427 #Gets: Ip address in 192.168.0.0/24 or 192.168.0.0/255.255.255.0 and checks if subnet valid
428 #Gives: True bzw 0 if success or false
432 if (!($ccdnet =~ /^(.*?)\/(.*?
)$/)) {
435 my ($ccdip,$ccdsubnet)=split (/\//, $ccdnet);
437 if ($ccdip=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ &&(($1>0 && $1<=255 && $2>=0 && $2<=255 && $3>=0 && $3<=255 && $4<=255 ))) {
438 #Subnet in decimal and valid?
439 if ($ccdsubnet=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ &&(($1<=255 && $2<=$1 && $3<=$2 && $4<=$3 ))) {
440 for (my $i=0;$i<=32;$i++){
441 if (&General
::cidrtosub
($i) eq $ccdsubnet){
445 #Subnet already in binary format?
446 }elsif ($ccdsubnet=~/^(\d{1,2})$/ && (($1<=32 && $1>=0))){
470 my ($ip,$cidr)=split(/\//,$ccdnet);
471 $cidr=&iporsubtocidr
($cidr);
473 #get OVPN-Subnet (dynamic range)
474 &readhash
("${General::swroot}/ovpn/settings", \
%ovpnconf);
475 my ($ovpnip,$ovpncidr)= split (/\//,$ovpnconf{'DOVPN_SUBNET'});
476 $ovpncidr=&iporsubtocidr
($ovpncidr);
478 #check if we try to use same network as ovpn server
479 if ("$ip/$cidr" eq "$ovpnip/$ovpncidr") {
480 $errormessage=$errormessage.$Lang::tr
{'ccd err isovpnnet'}."<br>";
481 return $errormessage;
484 #check if we try to use same network as another ovpn N2N
485 if($ownnet ne 'ovpn'){
486 &readhasharray
("${General::swroot}/ovpn/ovpnconfig", \
%ovpnconfhash);
487 foreach my $key (keys %ovpnconfhash) {
488 if ($ovpnconfhash{$key}[3] eq 'net'){
489 my @ovpnnet=split (/\//,$ovpnconfhash{$key}[11]);
490 if (&IpInSubnet
($ip,$ovpnnet[0],&iporsubtodec
($ovpnnet[1]))){
491 $errormessage=$errormessage.$Lang::tr
{'ccd err isovpnn2n'}." $ovpnconfhash{$key}[1] <br>";
492 return $errormessage;
498 #check if we use a network-name/subnet (static-ovpn) that already exists
499 &readhasharray
("${General::swroot}/ovpn/ccd.conf", \
%ccdconfhash);
500 foreach my $key (keys %ccdconfhash) {
501 @ccdconf=split(/\//,$ccdconfhash{$key}[1]);
502 if ($ccdname eq $ccdconfhash{$key}[0])
504 $errormessage=$errormessage.$Lang::tr
{'ccd err nameexist'}."<br>";
505 return $errormessage;
507 my ($newip,$newsub) = split(/\//,$ccdnet);
508 if (&IpInSubnet
($newip,$ccdconf[0],&iporsubtodec
($ccdconf[1])))
510 $errormessage=$errormessage.$Lang::tr
{'ccd err issubnet'}." $ccdconfhash{$key}[0]<br>";
511 return $errormessage;
515 #check if we use a ipsec right network which is already defined
516 if($ownnet ne 'ipsec'){
517 &General
::readhasharray
("${General::swroot}/vpn/config", \
%ipsecconf);
518 foreach my $key (keys %ipsecconf){
519 if ($ipsecconf{$key}[11] ne ''){
520 foreach my $ipsecsubitem (split(/\|/, $ipsecconf{$key}[11])) {
521 my ($ipsecip,$ipsecsub) = split (/\//, $ipsecconf{$key}[11]);
522 $ipsecsub=&iporsubtodec
($ipsecsub);
523 if($ipsecconf{$key}[1] ne $ccdname){
524 if ( &IpInSubnet
($ip,$ipsecip,$ipsecsub) ){
525 $errormessage=$Lang::tr
{'ccd err isipsecnet'}." Name: $ipsecconf{$key}[1]";
526 return $errormessage;
534 #check if we use the ipsec RW Network (if defined)
535 &readhash
("${General::swroot}/vpn/settings", \
%vpnconf);
536 if ($vpnconf{'RW_NET'} ne ''){
537 my ($ipsecrwnet,$ipsecrwsub)=split (/\//, $vpnconf{'RW_NET'});
538 if (&IpInSubnet
($ip,$ipsecrwnet,&iporsubtodec
($ipsecrwsub)))
540 $errormessage=$errormessage.$Lang::tr
{'ccd err isipsecrw'}."<br>";
541 return $errormessage;
545 #call check_net_internal
546 if ($checktype eq "exact")
548 &General
::check_net_internal_exact
($ccdnet);
550 &General
::check_net_internal_range
($ccdnet);
554 sub check_net_internal_range
{
556 my ($ip,$cidr)=split(/\//,$network);
559 $cidr=&iporsubtocidr
($cidr);
560 #check if we use one of ipfire's networks (green,orange,blue)
561 &readhash
("${General::swroot}/ethernet/settings", \
%ownnet);
562 if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet
($ip,$ownnet{'GREEN_NETADDRESS'},&iporsubtodec
($ownnet{'GREEN_NETMASK'}))){ $errormessage=$Lang::tr
{'ccd err green'};return $errormessage;}
563 if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet
($ip,$ownnet{'ORANGE_NETADDRESS'},&iporsubtodec
($ownnet{'ORANGE_NETMASK'}))){ $errormessage=$Lang::tr
{'ccd err orange'};return $errormessage;}
564 if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet
($ip,$ownnet{'BLUE_NETADDRESS'},&iporsubtodec
($ownnet{'BLUE_NETMASK'}))){ $errormessage=$Lang::tr
{'ccd err blue'};return $errormessage;}
565 if (($ownnet{'RED_NETADDRESS'} ne '' && $ownnet{'RED_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet
($ip,$ownnet{'RED_NETADDRESS'},&iporsubtodec
($ownnet{'RED_NETMASK'}))){ $errormessage=$Lang::tr
{'ccd err red'};return $errormessage;}
568 sub check_net_internal_exact
{
570 my ($ip,$cidr)=split(/\//,$network);
573 $cidr=&iporsubtocidr
($cidr);
574 #check if we use one of ipfire's networks (green,orange,blue)
575 &readhash
("${General::swroot}/ethernet/settings", \
%ownnet);
576 if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &Network
::network_equal
("$ownnet{'GREEN_NETADDRESS'}/$ownnet{'GREEN_NETMASK'}", $network)){ $errormessage=$Lang::tr
{'ccd err green'};return $errormessage;}
577 if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &Network
::network_equal
("$ownnet{'ORANGE_NETADDRESS'}/$ownnet{'ORANGE_NETMASK'}", $network)){ $errormessage=$Lang::tr
{'ccd err orange'};return $errormessage;}
578 if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &Network
::network_equal
("$ownnet{'BLUE_NETADDRESS'}/$ownnet{'BLUE_NETMASK'}", $network)){ $errormessage=$Lang::tr
{'ccd err blue'};return $errormessage;}
579 if (($ownnet{'RED_NETADDRESS'} ne '' && $ownnet{'RED_NETADDRESS'} ne '0.0.0.0') && &Network
::network_equal
("$ownnet{'RED_NETADDRESS'}/$ownnet{'RED_NETMASK'}", $network)){ $errormessage=$Lang::tr
{'ccd err red'};return $errormessage;}
590 if ($_ >= 1 && $_ <= 65535) {
603 if ($_ == 53 || $_ == 222 || $_ == 444 || $_ == 81 ) {
605 elsif ($_ >= 1 && $_ <= 65535) {
612 my $checkmac = $_[0];
613 my $ot = '[0-9a-f]{2}'; # 2 Hex digits (one octet)
614 if ($checkmac !~ /^$ot:$ot:$ot:$ot:$ot:$ot$/i)
623 # Checks a hostname against RFC1035
624 my $hostname = $_[0];
626 # Each part should be at least two characters in length
627 # but no more than 63 characters
628 if (length ($hostname) < 1 || length ($hostname) > 63) {
630 # Only valid characters are a-z, A-Z, 0-9 and -
631 if ($hostname !~ /^[a-zA-Z0-9-\s]*$/) {
633 # First character can only be a letter or a digit
634 if (substr ($hostname, 0, 1) !~ /^[a-zA-Z0-9]*$/) {
636 # Last character can only be a letter or a digit
637 if (substr ($hostname, -1, 1) !~ /^[a-zA-Z0-9]*$/) {
646 # Checks a domain name against RFC1035
647 my $domainname = $_[0];
648 my @parts = split (/\./, $domainname); # Split hostname at the '.'
650 foreach $part (@parts) {
651 # Each part should be no more than 63 characters in length
652 if (length ($part) < 1 || length ($part) > 63) {
654 # Only valid characters are a-z, A-Z, 0-9, _ and -
655 if ($part !~ /^[a-zA-Z0-9_-]*$/) {
666 # Checks a fully qualified domain name against RFC1035
668 my @parts = split (/\./, $fqdn); # Split hostname at the '.'
669 if (scalar(@parts) < 2) { # At least two parts should
670 return 0;} # exist in a FQDN
671 # (i.e.hostname.domain)
672 foreach $part (@parts) {
673 # Each part should be at least one character in length
674 # but no more than 63 characters
675 if (length ($part) < 1 || length ($part) > 63) {
677 # Only valid characters are a-z, A-Z, 0-9 and -
678 if ($part !~ /^[a-zA-Z0-9-]*$/) {
680 # First character can only be a letter or a digit
681 if (substr ($part, 0, 1) !~ /^[a-zA-Z0-9]*$/) {
683 # Last character can only be a letter or a digit
684 if (substr ($part, -1, 1) !~ /^[a-zA-Z0-9]*$/) {
690 sub validportrange
# used to check a port range
692 my $port = $_[0]; # port values
693 $port =~ tr/-/:/; # replace all - with colons just in case someone used -
694 my $srcdst = $_[1]; # is it a source or destination port
696 if (!($port =~ /^(\d+)\:(\d+)$/)) {
698 if (!(&validport
($port))) {
699 if ($srcdst eq 'src'){
700 return $Lang::tr
{'source port numbers'};
702 return $Lang::tr
{'destination port numbers'};
708 my @ports = ($1, $2);
710 if ($srcdst eq 'src'){
711 return $Lang::tr
{'bad source range'};
713 return $Lang::tr
{'bad destination range'};
718 if (!(&validport
($_))) {
719 if ($srcdst eq 'src'){
720 return $Lang::tr
{'source port numbers'};
722 return $Lang::tr
{'destination port numbers'};
735 return &Network
::ip_address_in_network
($addr, "$network/$netmask");
739 # Return the following IP (IP+1) in dotted notation.
740 # Call: NextIP ('1.1.1.1');
744 return &Network
::find_next_ip_address
(shift, 1);
748 return &Network
::find_next_ip_address
(shift, 4);
752 my ($ip,$cidr) = &Net
::IPv4Addr
::ipv4_parse
(shift);
757 my ($ip,$cidr) = &Net
::IPv4Addr
::ipv4_parse
(shift);
758 my $netmask = &Net
::IPv4Addr
::ipv4_cidr2msk
($cidr);
759 return "$ip\/$netmask";
764 my @parts = split( /\@/, $address );
767 #check if we have one part before and after '@'
768 return 0 if ( $count != 2 );
770 #check if one of the parts starts or ends with a dot
771 return 0 if ( substr($parts[0],0,1) eq '.' );
772 return 0 if ( substr($parts[0],-1,1) eq '.' );
773 return 0 if ( substr($parts[1],0,1) eq '.' );
774 return 0 if ( substr($parts[1],-1,1) eq '.' );
776 #check first addresspart (before '@' sign)
777 return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9\.!\-\+#]+$/ );
779 #check second addresspart (after '@' sign)
780 return 0 if ( $parts[1] !~ m/^[a-zA-Z0-9\.\-]+$/ );
786 # Currently only vpnmain use this three procs (readhasharray, writehasharray, findhasharray)
787 # The 'key' used is numeric but is perfectly unneeded! This will to be removed so don't use
788 # this code. Vpnmain will be splitted in parts: x509/pki, connection ipsec, connection other,... .
791 my ($filename, $hash) = @_;
794 open(FILE
, $filename) or die "Unable to read file $filename";
797 my ($key, $rest, @temp);
799 ($key, $rest) = split (/,/, $_, 2);
800 if ($key =~ /^[0-9]+$/) {
801 @temp = split (/,/, $rest);
802 $hash->{$key} = \
@temp;
810 my ($filename, $hash) = @_;
811 my ($key, @temp, $i);
813 open(FILE
, ">$filename") or die "Unable to write to file $filename";
815 foreach $key (keys %$hash) {
816 if ($key =~ /^[0-9]+$/) {
818 foreach $i (0 .. $#{$hash->{$key}}) {
819 print FILE
",$hash->{$key}[$i]";
828 sub findhasharraykey
{
829 foreach my $i (1 .. 1000000) {
830 if ( ! exists $_[0]{$i}) {
837 # Darren Critchley - darrenc@telus.net - (c) 2003
838 # &srtarray(SortOrder, AlphaNumeric, SortDirection, ArrayToBeSorted)
839 # This subroutine will take the following parameters:
840 # ColumnNumber = the column which you want to sort on, starts at 1
841 # AlphaNumberic = a or n (lowercase) defines whether the sort should be alpha or numberic
842 # SortDirection = asc or dsc (lowercase) Ascending or Descending sort
843 # ArrayToBeSorted = the array that wants sorting
845 # Returns an array that is sorted to your specs
847 # If SortOrder is greater than the elements in array, then it defaults to the first element
850 my ($colno, $alpnum, $srtdir, @tobesorted) = @_;
856 my $ttlitems = scalar @tobesorted; # want to know the number of rows in the passed array
857 if ($ttlitems < 1){ # if no items, don't waste our time lets leave
858 return (@tobesorted);
860 my @tmp = split(/\,/,$tobesorted[0]);
861 $ttlitems = scalar @tmp; # this should be the number of elements in each row of the passed in array
863 # Darren Critchley - validate parameters
864 if ($colno > $ttlitems){$colno = '1';}
865 $colno--; # remove one from colno to deal with arrays starting at 0
866 if($colno < 0){$colno = '0';}
867 if ($alpnum ne '') { $alpnum = lc($alpnum); } else { $alpnum = 'a'; }
868 if ($srtdir ne '') { $srtdir = lc($srtdir); } else { $srtdir = 'src'; }
870 foreach $line (@tobesorted)
874 my @temp = split(/\,/,$line);
875 # Darren Critchley - juggle the fields so that the one we want to sort on is first
876 my $tmpholder = $temp[0];
877 $temp[0] = $temp[$colno];
878 $temp[$colno] = $tmpholder;
880 for ($ctr=0; $ctr < $ttlitems ; $ctr++) {
881 $newline=$newline . $temp[$ctr] . ",";
884 push(@tmparray,$newline);
887 if ($alpnum eq 'n') {
888 @tmparray = sort {$a <=> $b} @tmparray;
890 @tmparray = (sort @tmparray);
892 foreach $line (@tmparray)
896 my @temp = split(/\,/,$line);
897 my $tmpholder = $temp[0];
898 $temp[0] = $temp[$colno];
899 $temp[$colno] = $tmpholder;
901 for ($ctr=0; $ctr < $ttlitems ; $ctr++){
902 $newline=$newline . $temp[$ctr] . ",";
905 push(@srtedarray,$newline);
909 if ($srtdir eq 'dsc') {
910 @tmparray = reverse(@srtedarray);
913 return (@srtedarray);
919 &General
::readhash
("${General::swroot}/proxy/settings", \
%proxysettings);
920 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
921 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\
/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?
)?
$/);
922 Net
::SSLeay
::set_proxy
($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
924 my $user_agent = &MakeUserAgent
();
925 my ($out, $response) = Net
::SSLeay
::get_http
( 'checkip4.dns.lightningwirelabs.com',
928 Net
::SSLeay
::make_headers
('User-Agent' => $user_agent )
930 if ($response =~ m
%HTTP/1\
.. 200 OK
%) {
931 $out =~ /Your IP address is: (\d+.\d+.\d+.\d+)/;
938 # Check if hostname.domain provided have IP provided
939 # use gethostbyname to verify that
945 # 1 IP matches host.domain
948 sub DyndnsServiceSync
($;$;$) {
950 my ($ip,$hostName,$domain) = @_;
953 #fix me no ip GROUP, what is the name ?
954 $hostName =~ s/$General::noipprefix//;
955 if ($hostName) { #may be empty
956 $hostName = "$hostName.$domain";
957 @addresses = gethostbyname($hostName);
960 if ($addresses[0] eq '') { # nothing returned ?
961 $hostName = $domain; # try resolving with domain only
962 @addresses = gethostbyname($hostName);
965 if ($addresses[0] ne '') { # got something ?
966 #&General::log("name:$addresses[0], alias:$addresses[1]");
967 # Build clear text list of IP
968 @addresses = map ( &Socket
::inet_ntoa
($_), @addresses[4..$#addresses]);
969 if (grep (/$ip/, @addresses)) {
976 # This sub returns the red IP used to compare in DyndnsServiceSync
980 &General
::readhash
("${General::swroot}/ddns/settings", \
%settings);
982 open(IP
, "${General::swroot}/red/local-ipaddress") or return 'unavailable';
987 # 100.64.0.0/10 is reserved for dual-stack lite (http://tools.ietf.org/html/rfc6598).
988 if (&General
::IpInSubnet
($ip,'10.0.0.0','255.0.0.0') ||
989 &General
::IpInSubnet
($ip,'172.16.0.0.','255.240.0.0') ||
990 &General
::IpInSubnet
($ip,'192.168.0.0','255.255.0.0') ||
991 &General
::IpInSubnet
($ip,'100.64.0.0', '255.192.0.0'))
993 if ($settings{'BEHINDROUTER'} eq 'FETCH_IP') {
994 my $RealIP = &General
::FetchPublicIp
;
995 $ip = (&General
::validip
($RealIP) ?
$RealIP : 'unavailable');
1001 # Translate ICMP code to text
1002 # ref: http://www.iana.org/assignments/icmp-parameters
1003 sub GetIcmpDescription
($) {
1005 my @icmp_description = (
1009 'Destination Unreachable',
1012 'Alternate Host Address',
1015 'Router Advertisement',
1016 'Router Solicitation', #10
1018 'Parameter Problem',
1021 'Information Request',
1022 'Information Reply',
1023 'Address Mask Request',
1024 'Address Mask Reply',
1025 'Reserved (for Security)',
1026 'Reserved (for Robustness Experiment)', #20
1037 'Datagram Conversion Error',
1038 'Mobile Host Redirect',
1039 'IPv6 Where-Are-You',
1041 'Mobile Registration Request',
1042 'Mobile Registration Reply',
1043 'Domain Name Request',
1044 'Domain Name Reply',
1048 if ($index>41) {return 'unknown'} else {return $icmp_description[$index]};
1051 sub GetCoreUpdateVersion
() {
1054 open(FILE
, "/opt/pakfire/db/core/mine");
1061 return $core_update;
1064 sub MakeUserAgent
() {
1065 my $user_agent = "IPFire/$General::version";
1067 my $core_update = &GetCoreUpdateVersion
();
1068 if ($core_update ne "") {
1069 $user_agent .= "/$core_update";
1075 sub RedIsWireless
() {
1076 # This function checks if a network device is a wireless device.
1079 &readhash
("${General::swroot}/ethernet/settings", \
%settings);
1081 # Find the name of the network device.
1082 my $device = $settings{'RED_DEV'};
1084 # Exit, if no device is configured.
1085 return 0 if ($device eq "");
1087 # Return 1 if the device is a wireless one.
1088 my $path = "/sys/class/net/$device/wireless";
1093 # Otherwise return zero.
1097 # Function to read a file with UTF-8 charset.
1098 sub read_file_utf8
($) {
1101 open my $in, '<:encoding(UTF-8)', $file or die "Could not open '$file' for reading $!";
1109 # Function to write a file with UTF-8 charset.
1110 sub write_file_utf8
($) {
1111 my ($file, $content) = @_;
1113 open my $out, '>:encoding(UTF-8)', $file or die "Could not open '$file' for writing $!";;
1114 print $out $content;
1120 my $FIREWALL_RELOAD_INDICATOR = "${General::swroot}/firewall/reread";
1122 sub firewall_config_changed
() {
1123 open FILE
, ">$FIREWALL_RELOAD_INDICATOR" or die "Could not open $FIREWALL_RELOAD_INDICATOR";
1127 sub firewall_needs_reload
() {
1128 if (-e
"$FIREWALL_RELOAD_INDICATOR") {
1135 sub firewall_reload
() {
1136 system("/usr/local/bin/firewallctrl");
1139 # Function which will return the used interface for the red network zone (red0, ppp0, etc).
1140 sub get_red_interface
() {
1142 open(IFACE
, "${General::swroot}/red/iface") or die "Could not open /var/ipfire/red/iface";
1144 my $interface = <IFACE
>;
1151 sub dnssec_status
() {
1152 my $path = "${General::swroot}/red/dnssec-status";
1154 open(STATUS
, $path) or return 0;
1155 my $status = <STATUS
>;