X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=html%2Fcgi-bin%2Findex.cgi;h=eec3f9bf361f6a1d463c4e616e16e504c05b3f0a;hp=1d374f4a6b7d618d5ad21bad7dc506362925d64d;hb=57ba1e9023b0f1f3499cc888f66827a81574bb41;hpb=10a04d70a4c10ce105fe47fea763fc390c2036dd diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index 1d374f4a6b..eec3f9bf36 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -1,13 +1,23 @@ #!/usr/bin/perl -# -# SmoothWall CGIs -# -# This code is distributed under the terms of the GPL -# -# (c) The SmoothWall Team -# -# $Id: index.cgi,v 1.15.2.18 2005/09/17 13:51:47 gespinasse Exp $ -# +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007-2011 IPFire Team # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see . # +# # +############################################################################### use strict; @@ -15,9 +25,10 @@ use strict; #use warnings; #use CGI::Carp 'fatalsToBrowser'; -require 'CONFIG_ROOT/general-functions.pl'; +require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; +require "/opt/pakfire/lib/functions.pl"; my %cgiparams=(); my %pppsettings=(); @@ -25,7 +36,9 @@ my %modemsettings=(); my %netsettings=(); my %ddnssettings=(); my $warnmessage = ''; -my $refresh = ''; +my $refresh = ""; +my $ipaddr=''; + &Header::showhttpheaders(); @@ -38,76 +51,349 @@ $pppsettings{'PROFILENAME'} = 'None'; &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); &General::readhash("${General::swroot}/ddns/settings", \%ddnssettings); +my %color = (); +my %mainsettings = (); +&General::readhash("${General::swroot}/main/settings", \%mainsettings); +&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color); + my $connstate = &Header::connectionstatus(); -if ($connstate =~ /$Lang::tr{'dod waiting'}/ || -e "${General::swroot}/main/refreshindex") { - $refresh = ""; -} elsif ($connstate =~ /$Lang::tr{'connecting'}/) { + + if ( -e "/var/ipfire/main/gpl-accepted" ) { +if ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown'} || $cgiparams{'ACTION'} eq $Lang::tr{'reboot'}) { + $refresh = ""; +} elsif ($connstate =~ /$Lang::tr{'connecting'}/ || /$Lang::tr{'connection closed'}/ ){ $refresh = ""; +} elsif ($connstate =~ /$Lang::tr{'dod waiting'}/ || -e "${General::swroot}/main/refreshindex") { + $refresh = ""; +} +} + +if ($cgiparams{'ACTION'} eq $Lang::tr{'dial profile'}) +{ + my $profile = $cgiparams{'PROFILE'}; + my %tempcgiparams = (); + $tempcgiparams{'PROFILE'} = ''; + &General::readhash("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}", + \%tempcgiparams); + + # make a link from the selected profile to the "default" one. + unlink("${General::swroot}/ppp/settings"); + link("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}", + "${General::swroot}/ppp/settings"); + system ("/usr/bin/touch", "${General::swroot}/ppp/updatesettings"); + + # read in the new params "early" so we can write secrets. + %cgiparams = (); + &General::readhash("${General::swroot}/ppp/settings", \%cgiparams); + $cgiparams{'PROFILE'} = $profile; + $cgiparams{'BACKUPPROFILE'} = $profile; + &General::writehash("${General::swroot}/ppp/settings-$cgiparams{'PROFILE'}", + \%cgiparams); + + # write secrets file. + open(FILE, ">/${General::swroot}/ppp/secrets") or die "Unable to write secrets file."; + flock(FILE, 2); + my $username = $cgiparams{'USERNAME'}; + my $password = $cgiparams{'PASSWORD'}; + print FILE "'$username' * '$password'\n"; + chmod 0600, "${General::swroot}/ppp/secrets"; + close FILE; + + &General::log("$Lang::tr{'profile made current'} $tempcgiparams{'PROFILENAME'}"); + $cgiparams{'ACTION'} = "$Lang::tr{'dial'}"; } +if ($cgiparams{'ACTION'} eq $Lang::tr{'dial'}) { + system('/usr/local/bin/redctrl start > /dev/null') == 0 + or &General::log("Dial failed: $?"); sleep 1;} +elsif ($cgiparams{'ACTION'} eq $Lang::tr{'hangup'}) { + system('/usr/local/bin/redctrl stop > /dev/null') == 0 + or &General::log("Hangup failed: $?"); sleep 1;} + +my $c; +my $maxprofiles = 5; +my @profilenames = (); + +for ($c = 1; $c <= $maxprofiles; $c++) +{ + my %temppppsettings = (); + $temppppsettings{'PROFILENAME'} = ''; + &General::readhash("${General::swroot}/ppp/settings-$c", \%temppppsettings); + $profilenames[$c] = $temppppsettings{'PROFILENAME'}; +} +my %selected; +for ($c = 1; $c <= $maxprofiles; $c++) { + $selected{'PROFILE'}{$c} = ''; +} +$selected{'PROFILE'}{$pppsettings{'PROFILE'}} = "selected='selected'"; +my $dialButtonDisabled = "disabled='disabled'"; + + &Header::openpage($Lang::tr{'main page'}, 1, $refresh); &Header::openbigbox('', 'center'); + +# licence agreement +if ($cgiparams{'ACTION'} eq $Lang::tr{'yes'} && $cgiparams{'gpl_accepted'} eq '1') { + system('touch /var/ipfire/main/gpl_accepted') +} +if ( -e "/var/ipfire/main/gpl_accepted" ) { &Header::openbox('100%', 'center', &Header::cleanhtml(`/bin/uname -n`,"y")); -# hide buttons only when pppsettings mandatory used and not valid -if ( ( $pppsettings{'VALID'} eq 'yes' ) || - ( $netsettings{'CONFIG_TYPE'} =~ /^(2|3|6|7)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) ) { - print < - -
- -
-    -
- -
-    -
- -
- -END - ; -} - -print ""; -if ( !( $netsettings{'CONFIG_TYPE'} =~ /^(2|3|6|7)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) ) { - print "$Lang::tr{'current profile'} $pppsettings{'PROFILENAME'}
\n"; -} - -if ( ( $pppsettings{'VALID'} eq 'yes'&& $modemsettings{'VALID'} eq 'yes' ) || - ( $netsettings{'CONFIG_TYPE'} =~ /^(2|3|6|7)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ )) { - print $connstate; - print "
\n"; - if ($connstate =~ /$Lang::tr{'connected'}/) { - my $fetch_ip='nothing'; - if ($ddnssettings{'BEHINDROUTER'} eq 'FETCH_IP') { - if (open(IPADDR,"${General::swroot}/ddns/ipcache")) { - $fetch_ip = ; - close IPADDR; - chomp ($fetch_ip); - my $host_name = (gethostbyaddr(pack("C4", split(/\./, $fetch_ip)), 2))[0]; - print "
$Lang::tr{'ip address'} (internet): $fetch_ip
$Lang::tr{'ipcops hostname'} (internet): $host_name
"; - } - } - if (open(IPADDR,"${General::swroot}/red/local-ipaddress")) { - my $ipaddr = ; - close IPADDR; - chomp ($ipaddr); - if ($ipaddr ne $fetch_ip){ #do not show info twice - my $host_name = (gethostbyaddr(pack("C4", split(/\./, $ipaddr)), 2))[0]; - print "
$Lang::tr{'ip address'}: $ipaddr
$Lang::tr{'ipcops hostname'}: $host_name
"; - } - } - } +if ( ( $pppsettings{'VALID'} eq 'yes' && $modemsettings{'VALID'} eq 'yes' ) || ( $netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/ && $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ )) { + if (open(IPADDR,"${General::swroot}/ddns/ipcache")) { + $ipaddr = ; + close IPADDR; + chomp ($ipaddr); + } + if (open(IPADDR,"${General::swroot}/red/local-ipaddress")) { + $ipaddr = ; + close IPADDR; + chomp ($ipaddr); + } } elsif ($modemsettings{'VALID'} eq 'no') { print "$Lang::tr{'modem settings have errors'}\n \n"; } else { print "$Lang::tr{'profile has errors'}\n \n"; } +#if ( $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) { +# $ipaddr = $netsettings{'RED_ADDRESS'}; +#} + +my $death = 0; +my $rebirth = 0; + +if ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown'}) { + $death = 1; + &General::log($Lang::tr{'shutting down ipfire'}); + system '/usr/local/bin/ipfirereboot down'; +} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'reboot'}) { + $rebirth = 1; + &General::log($Lang::tr{'rebooting ipfire'}); + system '/usr/local/bin/ipfirereboot boot'; +} + +if ($death == 0 && $rebirth == 0) { + +if ($mainsettings{'REBOOTQUESTION'} eq "off") { +print < + + + + + + +
+ +END +; +} else { + if ($cgiparams{'ACTION'} eq $Lang::tr{'reboot ask'}) { +print < + + + + + + + + + +
$Lang::tr{'reboot sure'}
+ +END +; + } elsif ($cgiparams{'ACTION'} eq $Lang::tr{'shutdown ask'}) { +print < + + + + + + + + + +
$Lang::tr{'shutdown sure'}
+ +END +; + } else { +print < + + + + + + +
+ +END +; + } +} +print < + + "; + } else { + print ""; + } + + my $active = "
$Lang::tr{'network'} + IP + $Lang::tr{'status'} +
$Lang::tr{'internet'}
+
$ipaddr + $connstate +END +if ( $netsettings{'RED_TYPE'} ne "STATIC" && $netsettings{'RED_TYPE'} ne "DHCP" ){ +print `/usr/local/bin/dialctrl.pl show`; +print < +
$Lang::tr{'profile'}: + +
+
+ + +
+ +
+
+ +
+
+END + } else { + print "$Lang::tr{'profile has errors'}\n \n"; + } +} + my $HOSTNAME = (gethostbyaddr(pack("C4", split(/\./, $ipaddr)), 2))[0]; + if ( "$HOSTNAME" ne "" ) { + print <
Hostname:$HOSTNAME  +END + } + + if ( -e "/var/ipfire/red/remote-ipaddress" ) { + my $GATEWAY = `cat /var/ipfire/red/remote-ipaddress`; + chomp($GATEWAY); + print <Gateway:$GATEWAY  +END + } + + my $DNS1 = `cat /var/ipfire/red/dns1`; + my $DNS2 = `cat /var/ipfire/red/dns2`; + chomp($DNS1); + chomp($DNS1); + + if ( $DNS1 ) { print <DNS-Server:$DNS1 +END + } + if ( $DNS2 ) { print <$DNS2 +END + } else { print <  +END + } + + if ( $netsettings{'GREEN_DEV'} ) { print <$Lang::tr{'lan'} + $netsettings{'GREEN_ADDRESS'} + +END + if ( `cat /var/ipfire/proxy/advanced/settings | grep ^ENABLE=on` ) { + print $Lang::tr{'advproxy on'}; + if ( `cat /var/ipfire/proxy/advanced/settings | grep ^TRANSPARENT=on` ) { print " (transparent)"; } + } else { print $Lang::tr{'advproxy off'}; } + } + if ( $netsettings{'BLUE_DEV'} ) { print <$Lang::tr{'wireless'}
+
$netsettings{'BLUE_ADDRESS'} + +END + if ( `cat /var/ipfire/proxy/advanced/settings | grep ^ENABLE_BLUE=on` ) { + print $Lang::tr{'advproxy on'}; + if ( `cat /var/ipfire/proxy/advanced/settings | grep ^TRANSPARENT_BLUE=on` ) { print " (transparent)"; } + } else { print $Lang::tr{'advproxy off'}; } + } + if ( $netsettings{'ORANGE_DEV'} ) { print <$Lang::tr{'dmz'}
+
$netsettings{'ORANGE_ADDRESS'} + Online +END + } + if ( `cat /var/ipfire/vpn/settings | grep ^ENABLED=on` || + `cat /var/ipfire/vpn/settings | grep ^ENABLED_BLUE=on` ) { + my $ipsecip = `cat /var/ipfire/vpn/settings | grep ^VPN_IP= | cut -c 8-`; + my @status = `/usr/local/bin/ipsecctrl I`; + my %confighash = (); + &General::readhasharray("${General::swroot}/vpn/config", \%confighash); + print <$Lang::tr{'vpn'}
+
$ipsecip + Online +END + my $id = 0; + my $gif; + foreach my $key (keys %confighash) { + if ($confighash{$key}[0] eq 'on') { $gif = 'on.gif'; } else { $gif = 'off.gif'; } + + if ($id % 2) { + print "
$confighash{$key}[1] / " . $Lang::tr{"$confighash{$key}[3]"} . " (" . $Lang::tr{"$confighash{$key}[4]"} . ")$confighash{$key}[11]
$confighash{$key}[1] / " . $Lang::tr{"$confighash{$key}[3]"} . " (" . $Lang::tr{"$confighash{$key}[4]"} . ")$confighash{$key}[11]
$Lang::tr{'capsclosed'}
"; + if ($confighash{$key}[0] eq 'off') { + $active = "
$Lang::tr{'capsclosed'}
"; + } else { + foreach my $line (@status) { + if (($line =~ /\"$confighash{$key}[1]\".*IPsec SA established/) || + ($line =~/ $confighash{$key}[1]\{.*INSTALLED/ )) + { + $active = "
$Lang::tr{'capsopen'}
"; + } + } + } + print "$active"; + } + } + if ( `cat /var/ipfire/ovpn/settings | grep ^ENABLED=on` || + `cat /var/ipfire/ovpn/settings | grep ^ENABLED_BLUE=on` || + `cat /var/ipfire/ovpn/settings | grep ^ENABLED_ORANGE=on`) { + my $ovpnip = `cat /var/ipfire/ovpn/settings | grep ^DOVPN_SUBNET= | cut -c 14- | sed -e 's\/\\/255.255.255.0\/\/'`; + print <OpenVPN
+ $ovpnip + Online +END + } + +# Fireinfo +if ( ! -e "/var/ipfire/main/send_profile") { + $warnmessage .= "
  • $Lang::tr{'fireinfo please enable'}
  • "; +} # Memory usage warning my @free = `/usr/bin/free`; @@ -123,7 +409,7 @@ if ($used / $mem > 90) { # Diskspace usage warning my @temp=(); my $temp2=(); -my @df = `/bin/df -B M -x rootfs`; +my @df = `/bin/df -B M -P -x rootfs`; foreach my $line (@df) { next if $line =~ m/^Filesystem/; if ($line =~ m/root/ ) { @@ -146,92 +432,84 @@ foreach my $line (@df) { } } -# Patches warning -open(AV, "<${General::swroot}/patches/available") or die "Could not open available patches database ($!)"; -my @av = ; -close(AV); -open(PF, "<${General::swroot}/patches/installed") or die "Could not open installed patches file. ($!)
    "; -while() -{ - next if $_ =~ m/^#/; - @temp = split(/\|/,$_); - @av = grep(!/^$temp[0]/, @av); -} -close(PF); - -if ($#av != -1) -{ - $warnmessage .= "
  • $Lang::tr{'there are updates'}
  • "; -} -my $age = &General::age("/${General::swroot}/patches/available"); -if ($age =~ m/(\d{1,3})d/) { - if ($1 >= 7) { - $warnmessage .= "
  • $Lang::tr{'updates is old1'} $age $Lang::tr{'updates is old2'}
  • \n"; +# S.M.A.R.T. health warning +my @files = `/bin/ls /var/run/smartctl_out_hddtemp-* 2>/dev/null`; +foreach my $file (@files) { + chomp ($file); + my $disk=`echo $file | cut -d"-" -f2`; + chomp ($disk); + if (`/bin/grep "SAVE ALL DATA" $file`) { + $warnmessage .= "
  • $Lang::tr{'smartwarn1'} /dev/$disk $Lang::tr{'smartwarn2'} !
  • \n\n"; } } if ($warnmessage) { - print "
      $warnmessage
    "; + print "$warnmessage"; } +print < +END +; +&Pakfire::dblist("upgrade", "notice"); +print <
    $Lang::tr{'needreboot'}!"; +} +} else { + my $message=''; + if ($death) { + $message = $Lang::tr{'ipfire has now shutdown'}; + } else { + $message = $Lang::tr{'ipfire has now rebooted'}; + } + print < + + +
    +




    +
    +
    +$message + +END +; -print "

    "; -system('/usr/bin/uptime'); -print "

    \n"; +} &Header::closebox(); - -&Header::openbox('100%', 'left', $Lang::tr{'quick control'}); -# read in the profile names into @profilenames. -my $c; -my $maxprofiles = 5; -my @profilenames = (); - -for ($c = 1; $c <= $maxprofiles; $c++) -{ - my %temppppsettings = (); - $temppppsettings{'PROFILENAME'} = ''; - &General::readhash("${General::swroot}/ppp/settings-$c", \%temppppsettings); - $profilenames[$c] = $temppppsettings{'PROFILENAME'}; -} -my %selected; -for ($c = 1; $c <= $maxprofiles; $c++) { - $selected{'PROFILE'}{$c} = ''; } -$selected{'PROFILE'}{$pppsettings{'PROFILE'}} = "selected='selected'"; +else { +&Header::openbox('100%', 'left', $Lang::tr{'gpl license agreement'}); print < - - -
    - $Lang::tr{'profile'}: - '; +} +else { + print '
    GNU GENERAL PUBLIC LICENSE
    '; } -$dialButtonDisabled = "disabled='disabled'" if (-e '/var/run/ppp-ipcop.pid' || -e "${General::swroot}/red/active"); - print < - - - - -
    - -
    - - - +

    +

    + $Lang::tr{'gpl i accept these terms and conditions'}. +
    + +
    +

    + $Lang::tr{'gpl unofficial translation of the general public license v3'} + END + &Header::closebox(); +} &Header::closebigbox(); - &Header::closepage();