2001-08-17 05:46:24 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2001-11-10 17:14:16 +00:00
|
|
|
* $Id$
|
2001-08-17 05:46:24 +00:00
|
|
|
* Purpose ...............: Inactivity timeout functions
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
2002-01-07 19:16:03 +00:00
|
|
|
* Copyright (C) 1997-2002
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
|
|
|
* Michiel Broek FIDO: 2:280/2802
|
|
|
|
* Beekmansbos 10
|
|
|
|
* 1971 BV IJmuiden
|
|
|
|
* the Netherlands
|
|
|
|
*
|
|
|
|
* This file is part of MBSE BBS.
|
|
|
|
*
|
|
|
|
* This BBS 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 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* MBSE BBS 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 MBSE BBS; see the file COPYING. If not, write to the Free
|
|
|
|
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/libs.h"
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../lib/memwatch.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/mbse.h"
|
|
|
|
#include "../lib/structs.h"
|
2002-01-07 19:16:03 +00:00
|
|
|
#include "../lib/users.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/records.h"
|
|
|
|
#include "../lib/common.h"
|
|
|
|
#include "../lib/clcomm.h"
|
|
|
|
#include "../lib/msg.h"
|
|
|
|
#include "timeout.h"
|
|
|
|
#include "funcs.h"
|
|
|
|
#include "bye.h"
|
|
|
|
#include "filesub.h"
|
|
|
|
#include "language.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern int e_pid; /* Pid of external program */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void die(int onsig)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* First check if there is a child running, if so, kill it.
|
|
|
|
*/
|
|
|
|
if (e_pid) {
|
|
|
|
if ((kill(e_pid, SIGTERM)) == 0)
|
|
|
|
Syslog('+', "SIGTERM to pid %d succeeded", e_pid);
|
|
|
|
else {
|
|
|
|
if ((kill(e_pid, SIGKILL)) == 0)
|
|
|
|
Syslog('+', "SIGKILL to pid %d succeeded", e_pid);
|
|
|
|
else
|
|
|
|
WriteError("Failed to kill pid %d", e_pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In case the child had the tty in raw mode, reset the tty
|
|
|
|
*/
|
|
|
|
system("stty sane");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MsgBase.Locked)
|
|
|
|
Msg_UnLock();
|
|
|
|
if (MsgBase.Open)
|
|
|
|
Msg_Close();
|
|
|
|
|
|
|
|
Home();
|
|
|
|
signal(onsig, SIG_IGN);
|
|
|
|
if (onsig)
|
|
|
|
if (onsig == SIGHUP) {
|
|
|
|
Syslog('+', "Lost Carrier");
|
|
|
|
} else if (onsig == SIGALRM) {
|
|
|
|
Syslog('+', "User inactivity timeout");
|
|
|
|
} else {
|
|
|
|
if (onsig <= NSIG)
|
2002-05-10 18:14:27 +00:00
|
|
|
WriteError("Terminated on signal %d (%s)", onsig, SigName[onsig]);
|
2001-08-17 05:46:24 +00:00
|
|
|
else
|
|
|
|
WriteError("Terminated with error %d", onsig);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Syslog(' ', "Terminated by user");
|
|
|
|
|
|
|
|
if (onsig == SIGSEGV) {
|
|
|
|
Syslog('+', "Last msg area %s", msgs.Name);
|
|
|
|
}
|
|
|
|
|
2001-11-10 17:14:16 +00:00
|
|
|
Good_Bye(onsig);
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void alarm_sig()
|
|
|
|
{
|
2001-09-27 20:35:25 +00:00
|
|
|
colour(LIGHTRED, BLACK);
|
2001-08-17 05:46:24 +00:00
|
|
|
/* Autologout: idletime reached.*/
|
|
|
|
printf("\r\n%s\r\n", (char *) Language(410));
|
|
|
|
|
2001-11-10 17:14:16 +00:00
|
|
|
Syslog('!', "Autologout: idletime reached");
|
2001-08-17 05:46:24 +00:00
|
|
|
die(SIGALRM);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void alarm_set(int val)
|
|
|
|
{
|
|
|
|
signal(SIGALRM, (void (*))alarm_sig);
|
|
|
|
alarm(val);
|
|
|
|
Syslog('S', "Alarm set for %d seconds", val);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void alarm_on()
|
|
|
|
{
|
|
|
|
alarm_set(60 * CFG.idleout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void alarm_off()
|
|
|
|
{
|
|
|
|
alarm(0);
|
|
|
|
signal(SIGALRM, SIG_IGN);
|
|
|
|
Syslog('S', "Alarm is off");
|
|
|
|
}
|
|
|
|
|