]> jfr.im git - irc/rqf/shadowircd.git/blame - src/restart.c
s_log.* -> logger.* (s_foo looks ugly, lets try to get rid of it)
[irc/rqf/shadowircd.git] / src / restart.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * restart.c: Functions to allow the ircd to restart.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
13640b08 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
212380e3 22 * USA
23 *
13640b08 24 * $Id: restart.c 24244 2007-08-22 19:04:55Z androsyn $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "restart.h"
212380e3 29#include "ircd.h"
30#include "send.h"
d3455e2c 31#include "logger.h"
13640b08
WP
32#include "s_conf.h"
33#include "client.h"
34#include "ircd_signal.h"
212380e3 35
36/* external var */
37extern char **myargv;
38
13640b08
WP
39extern int maxconnections; /* XXX */
40
212380e3 41void
42restart(const char *mesg)
43{
44 static int was_here = NO; /* redundant due to restarting flag below */
45
46 if(was_here)
47 abort();
48 was_here = YES;
49
a5497589 50#if 0
13640b08 51 ilog(L_MAIN, "Restarting Server because: %s, memory data limit: %ld", mesg, get_maxrss());
a5497589
JT
52#endif
53 ilog(L_MAIN, "Restarting Server because: %s", mesg);
212380e3 54
55 server_reboot();
56}
57
58void
59server_reboot(void)
60{
61 int i;
13640b08 62 char path[PATH_MAX+1];
212380e3 63
64 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Restarting server...");
65
66 ilog(L_MAIN, "Restarting server...");
13640b08 67
212380e3 68 /*
69 * XXX we used to call flush_connections() here. But since this routine
70 * doesn't exist anymore, we won't be flushing. This is ok, since
38e6acdd 71 * when close handlers come into existance, rb_close() will be called
212380e3 72 * below, and the data flushing will be implicit.
73 * -- adrian
74 *
75 * bah, for now, the program ain't coming back to here, so forcibly
76 * close everything the "wrong" way for now, and just LEAVE...
77 */
13640b08 78 for (i = 0; i < maxconnections; ++i)
212380e3 79 close(i);
80
81 unlink(pidFileName);
13640b08
WP
82 execv(SPATH, (void *)myargv);
83
84 /* use this if execv of SPATH fails */
85 rb_snprintf(path, sizeof(path), "%s/bin/ircd", ConfigFileEntry.dpath);
212380e3 86
13640b08 87 execv(path, (void *)myargv);
212380e3 88 exit(-1);
89}