]> jfr.im git - solanum.git/blame - ircd/restart.c
doc/reference.conf: document the auth::umodes configuration option
[solanum.git] / ircd / restart.c
CommitLineData
212380e3
AC
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
c75fdbfb 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
212380e3 22 * USA
212380e3
AC
23 */
24
25#include "stdinc.h"
212380e3 26#include "restart.h"
212380e3
AC
27#include "ircd.h"
28#include "send.h"
4016731b 29#include "logger.h"
c75fdbfb 30#include "s_conf.h"
55abcbb2 31#include "client.h"
c75fdbfb 32#include "ircd_signal.h"
212380e3
AC
33
34/* external var */
5adde7a4 35extern char * const *myargv;
212380e3
AC
36
37void
38restart(const char *mesg)
39{
bd43a444 40 static bool was_here = false; /* redundant due to restarting flag below */
212380e3
AC
41
42 if(was_here)
43 abort();
bd43a444 44 was_here = true;
212380e3 45
6c528b8e 46 ilog(L_MAIN, "Restarting Server because: %s", mesg);
212380e3
AC
47
48 server_reboot();
49}
50
51void
52server_reboot(void)
53{
54 int i;
c75fdbfb 55 char path[PATH_MAX+1];
212380e3 56
a9227555 57 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Restarting server...");
212380e3
AC
58
59 ilog(L_MAIN, "Restarting server...");
55abcbb2 60
212380e3
AC
61 /*
62 * XXX we used to call flush_connections() here. But since this routine
55abcbb2 63 * doesn't exist anymore, we won't be flushing. This is ok, since
b2f0da88 64 * when close handlers come into existance, rb_close() will be called
212380e3
AC
65 * below, and the data flushing will be implicit.
66 * -- adrian
67 *
68 * bah, for now, the program ain't coming back to here, so forcibly
69 * close everything the "wrong" way for now, and just LEAVE...
70 */
c75fdbfb 71 for (i = 0; i < maxconnections; ++i)
212380e3
AC
72 close(i);
73
74 unlink(pidFileName);
4d8cfacd 75 execv(ircd_paths[IRCD_PATH_IRCD_EXEC], (void *)myargv);
c75fdbfb
AC
76
77 /* use this if execv of SPATH fails */
8f0c3422 78 snprintf(path, sizeof(path), "%s/bin/ircd", ConfigFileEntry.dpath);
212380e3 79
c75fdbfb 80 execv(path, (void *)myargv);
212380e3
AC
81 exit(-1);
82}