Hinzugefügt:

* Wake-On-Lan
  * Connection-Scheduler


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@211 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2006-07-17 18:18:39 +00:00
parent 52345790a3
commit 4e5653511d
17 changed files with 1302 additions and 34 deletions

View File

@@ -1353,6 +1353,7 @@ tmp
#usr/lib
#usr/local
#usr/local/bin
usr/local/bin/connscheduler
usr/local/bin/httpscert
usr/local/bin/hddshutdown
usr/local/bin/hddshutdown-state
@@ -21077,6 +21078,8 @@ home/httpd/cgi-bin/xtaccess.cgi
home/httpd/cgi-bin/traffic.cgi
home/httpd/cgi-bin/traffics.cgi
home/httpd/cgi-bin/pakfire.cgi
home/httpd/cgi-bin/wakeonlan.cgi
home/httpd/cgi-bin/connscheduler.cgi
#home/httpd/htdocs
#home/httpd/htdocs/apache_pb.gif
#home/httpd/htdocs/index.html.ca
@@ -22561,6 +22564,7 @@ usr/local/bin/ipfirebkcfg
usr/local/bin/ipfirereboot
usr/local/bin/ipfirerscfg
usr/local/bin/ipsecctrl
usr/local/bin/launch-ether-wake
usr/local/bin/logwatch
usr/local/bin/openvpnctrl
usr/local/bin/rebuildhosts

View File

@@ -10,7 +10,7 @@ SUID_PROGS = setdmzholes setportfw setfilters setxtaccess restartdhcp restartsno
setaliases ipfirebackup restartntpd \
restartapplejuice setdate rebuildhosts \
restartsyslogd logwatch openvpnctrl timecheckctrl \
restartwireless getipstat qosctrl
restartwireless getipstat qosctrl launch-ether-wake
install : all
install -m 755 $(PROGS) /usr/local/bin
@@ -42,6 +42,9 @@ openvpnctrl: openvpnctrl.c setuid.o ../install+setup/libsmooth/varval.o
qosctrl: qosctrl.c setuid.o ../install+setup/libsmooth/varval.o
$(COMPILE) -I../install+setup/libsmooth/ qosctrl.c setuid.o ../install+setup/libsmooth/varval.o -o $@
launch-ether-wake: launch-ether-wake.c setuid.o ../install+setup/libsmooth/varval.o
$(COMPILE) -I../install+setup/libsmooth/ launch-ether-wake.c setuid.o ../install+setup/libsmooth/varval.o -o $@
setaliases: setaliases.c setuid.o ../install+setup/libsmooth/varval.o
$(COMPILE) -I../install+setup/libsmooth/ setaliases.c setuid.o ../install+setup/libsmooth/varval.o -o $@

View File

@@ -0,0 +1,33 @@
/* This file is part of the Wake-on-LAN GUI AddOn
*
* This program is distributed under the terms of the GNU General Public
* Licence. See the file COPYING for details.
*
* Copyright (C) 2006-03-03 weizen_42
*
*
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <fcntl.h>
#include "setuid.h"
#define BUFFER_SIZE 512
char command[BUFFER_SIZE];
int main(int argc, char *argv[])
{
if (!(initsetuid()))
exit(1);
snprintf(command, BUFFER_SIZE-1, "/usr/bin/ether-wake -i %s %s", argv[2], argv[1]);
safe_system(command);
return(0);
}

214
src/scripts/connscheduler Normal file
View File

@@ -0,0 +1,214 @@
#!/usr/bin/perl
#
# IPFire Connection Scheduler (F)Cron Job
#
# This code is distributed under the terms of the GPL
#
use strict;
require '/var/ipfire/general-functions.pl';
require '/var/ipfire/connscheduler/lib.pl';
# seems to be necessary
my $sleep_after_profile = 5;
my ($second, $minute, $hour, $day, $month ,$year, $weekday) = localtime(time);
# correction for weekday, I am used to weeks starting with Monday (= 0) ;-)
$weekday = ($weekday + 6) % 7;
# get the closest thing possible
$minute = int($minute / 5) * 5;
if ( $ARGV[0] eq 'hangup' )
{
&hangup();
}
elsif ( $ARGV[0] eq 'dial' )
{
&dial();
}
elsif ( $ARGV[0] eq 'reconnect' )
{
&reconnect();
}
elsif ( $ARGV[0] eq 'profile' )
{
&profile($ARGV[1]);
}
elsif ( $ARGV[0] eq 'timer' )
{
&timer();
}
elsif ( $ARGV[0] eq 'test' )
{
&test();
}
else
{
print "Usage: $0 {dial | hangup | reconnect | profile nr# }\n";
}
exit 0;
# __ _ _
# / _| | | (_)
# | |_ _ _ _ __ ___| |_ _ ___ _ __ ___
# | _| | | | '_ \ / __| __| |/ _ \| '_ \/ __|
# | | | |_| | | | | (__| |_| | (_) | | | \__ \
# |_| \__,_|_| |_|\___|\__|_|\___/|_| |_|___/
#
sub hangup
{
unless ( -e "${General::swroot}/red/active" )
{
&General::log("ConnSched already disconnected");
return;
}
&General::log("ConnSched disconnect");
unless ( system('/etc/rc.d/rc.red', 'stop') == 0 )
{
&General::log("ConnSched disconnect failed: $?");
return;
}
# now wait for active triggerfile and ppp daemon to disappear
sleep 1;
while ( -e "${General::swroot}/red/active" || -e '/var/run/ppp-ipcop.pid' )
{
sleep 1;
}
}
sub dial
{
if ( -e "${General::swroot}/red/active" )
{
&General::log("ConnSched already connected");
return;
}
&General::log("ConnSched connect");
unless ( system('/etc/rc.d/rc.red', 'start') == 0 )
{
&General::log("ConnSched connect failed: $?");
return;
}
# wait maximum 60 seconds for active triggerfile
my $counter = 60;
until ( -e "${General::swroot}/red/active" || $counter == 0 )
{
sleep 1;
$counter--;
}
}
sub reconnect
{
&hangup() if ( -e "${General::swroot}/red/active" );
&dial();
}
sub profile
{
my $profile = shift;
my $restart_red = 0;
unless ( ($profile > 0) and ($profile < $CONNSCHED::maxprofiles) )
{
&General::log("ConnSched invalid profile: $profile");
return;
}
unless ( -e "${General::swroot}/ppp/settings-$profile" )
{
&General::log("ConnSched profile file does not exist: $profile");
return;
}
if ( -e "${General::swroot}/red/active" )
{
# remember to restart red after changing profile
$restart_red = 1;
&hangup();
}
&General::log("ConnSched select profile: $profile");
# Method to change Profile from pppsetup.cgi
unlink("${General::swroot}/ppp/settings");
link("${General::swroot}/ppp/settings-$profile", "${General::swroot}/ppp/settings");
system ("/bin/touch", "${General::swroot}/ppp/updatesettings");
if ( $restart_red == 1 )
{
## FIXME: do we need to do this ?
sleep($sleep_after_profile);
&dial();
}
}
# fcronjob entry
sub timer
{
for my $i ( 0 .. $#CONNSCHED::config )
{
next if ( $CONNSCHED::config[$i]{'ACTIVE'} ne 'on' );
my $action_hour = substr($CONNSCHED::config[$i]{'TIME'},0,2);
my $action_minute = substr($CONNSCHED::config[$i]{'TIME'},3,2);
next if ( $action_hour != $hour );
next if ( $action_minute != $minute );
if ( $CONNSCHED::config[$i]{'DAYSTYPE'} eq 'days' )
{
my @temp = split(/-/,$CONNSCHED::config[$i]{'DAYS'},2);
my $daystart = substr($temp[0], 0, -1);
my $dayend = substr($temp[1], 1);
next if ( ($day < $daystart) || ($day > $dayend) );
}
else
{
next if ( index($CONNSCHED::config[$i]{'WEEKDAYS'}, $CONNSCHED::weekdays[$weekday]) == -1 );
}
if ( $CONNSCHED::config[$i]{'ACTION'} eq 'reconnect' )
{
&reconnect()
}
elsif ( $CONNSCHED::config[$i]{'ACTION'} eq 'dial' )
{
&dial();
}
elsif ( $CONNSCHED::config[$i]{'ACTION'} eq 'hangup' )
{
&hangup();
}
elsif ( $CONNSCHED::config[$i]{'ACTION'} eq 'select profile' )
{
&profile($CONNSCHED::config[$i]{'PROFILENR'});
}
elsif ( $CONNSCHED::config[$i]{'ACTION'} eq 'reboot' )
{
&General::log("ConnSched reboot");
system ("/usr/local/bin/ipfirereboot", "boot");
}
elsif ( $CONNSCHED::config[$i]{'ACTION'} eq 'shutdown' )
{
&General::log("ConnSched shutdown");
system ("/usr/local/bin/ipfirereboot", "down");
}
}
}