2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* restart.c: Functions to allow the ircd to restart.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development 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 2 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, write to the Free Software
|
2008-04-02 03:11:11 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
2007-01-25 07:40:21 +01:00
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
namespace ircd {
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* external var */
|
2016-04-26 00:21:38 +02:00
|
|
|
extern char * const *myargv;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
restart(const char *mesg)
|
|
|
|
{
|
2016-03-23 14:43:28 +01:00
|
|
|
static bool was_here = false; /* redundant due to restarting flag below */
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(was_here)
|
|
|
|
abort();
|
2016-03-23 14:43:28 +01:00
|
|
|
was_here = true;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-03 01:10:04 +02:00
|
|
|
ilog(L_MAIN, "Restarting Server because: %s", mesg);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
server_reboot();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_reboot(void)
|
|
|
|
{
|
|
|
|
int i;
|
2008-04-02 03:11:11 +02:00
|
|
|
char path[PATH_MAX+1];
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-26 13:50:12 +02:00
|
|
|
sendto_realops_snomask(sno::GENERAL, L_ALL, "Restarting server...");
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
ilog(L_MAIN, "Restarting server...");
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* XXX we used to call flush_connections() here. But since this routine
|
2014-03-03 05:25:47 +01:00
|
|
|
* doesn't exist anymore, we won't be flushing. This is ok, since
|
2008-04-01 22:38:40 +02:00
|
|
|
* when close handlers come into existance, rb_close() will be called
|
2007-01-25 07:40:21 +01:00
|
|
|
* below, and the data flushing will be implicit.
|
|
|
|
* -- adrian
|
|
|
|
*
|
|
|
|
* bah, for now, the program ain't coming back to here, so forcibly
|
|
|
|
* close everything the "wrong" way for now, and just LEAVE...
|
|
|
|
*/
|
2008-04-02 03:11:11 +02:00
|
|
|
for (i = 0; i < maxconnections; ++i)
|
2007-01-25 07:40:21 +01:00
|
|
|
close(i);
|
|
|
|
|
2016-08-31 08:25:25 +02:00
|
|
|
execv(path::get(path::IRCD_EXEC), (char *const *)myargv);
|
2008-04-02 03:11:11 +02:00
|
|
|
|
|
|
|
/* use this if execv of SPATH fails */
|
2016-03-25 00:45:28 +01:00
|
|
|
snprintf(path, sizeof(path), "%s%cbin%circd", ConfigFileEntry.dpath, RB_PATH_SEPARATOR, RB_PATH_SEPARATOR);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
execv(path, (char *const *)myargv);
|
2007-01-25 07:40:21 +01:00
|
|
|
exit(-1);
|
|
|
|
}
|
2016-08-13 05:05:54 +02:00
|
|
|
|
2016-08-31 12:55:27 +02:00
|
|
|
void
|
|
|
|
ircd_shutdown(const char *reason)
|
|
|
|
{
|
|
|
|
client::client *target_p;
|
|
|
|
rb_dlink_node *ptr;
|
|
|
|
|
|
|
|
RB_DLINK_FOREACH(ptr, lclient_list.head)
|
|
|
|
{
|
|
|
|
target_p = (client::client *)ptr->data;
|
|
|
|
|
|
|
|
sendto_one(target_p, ":%s NOTICE %s :Server Terminating. %s",
|
|
|
|
me.name, target_p->name, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
RB_DLINK_FOREACH(ptr, serv_list.head)
|
|
|
|
{
|
|
|
|
target_p = (client::client *)ptr->data;
|
|
|
|
|
|
|
|
sendto_one(target_p, ":%s ERROR :Terminated by %s",
|
|
|
|
me.name, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
log::critical("Server Terminating. %s", reason);
|
|
|
|
log::close();
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
2016-08-13 05:05:54 +02:00
|
|
|
|
|
|
|
} // namespace ircd
|