solanum/ircd/restart.c

83 lines
2.3 KiB
C
Raw Normal View History

/*
* 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 01:11:11 +00:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include "stdinc.h"
#include "restart.h"
#include "ircd.h"
#include "send.h"
#include "logger.h"
2008-04-02 01:11:11 +00:00
#include "s_conf.h"
#include "client.h"
2008-04-02 01:11:11 +00:00
#include "ircd_signal.h"
/* external var */
extern char * const *myargv;
void
restart(const char *mesg)
{
2016-03-23 13:43:28 +00:00
static bool was_here = false; /* redundant due to restarting flag below */
if(was_here)
abort();
2016-03-23 13:43:28 +00:00
was_here = true;
2008-04-02 23:10:04 +00:00
ilog(L_MAIN, "Restarting Server because: %s", mesg);
server_reboot();
}
void
server_reboot(void)
{
int i;
2008-04-02 01:11:11 +00:00
char path[PATH_MAX+1];
2020-11-08 19:30:41 +00:00
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Restarting server...");
ilog(L_MAIN, "Restarting server...");
/*
* XXX we used to call flush_connections() here. But since this routine
* doesn't exist anymore, we won't be flushing. This is ok, since
2008-04-01 20:38:40 +00:00
* when close handlers come into existance, rb_close() will be called
* 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 01:11:11 +00:00
for (i = 0; i < maxconnections; ++i)
close(i);
unlink(pidFileName);
execv(ircd_paths[IRCD_PATH_IRCD_EXEC], (void *)myargv);
2008-04-02 01:11:11 +00:00
/* use this if execv of SPATH fails */
2021-07-09 00:11:22 +00:00
snprintf(path, sizeof(path), "%s/bin/ircd", ConfigFileEntry.dpath);
2008-04-02 01:11:11 +00:00
execv(path, (void *)myargv);
exit(-1);
}