]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_restart.c
Removal of ancient SVN ID's part one
[irc/rqf/shadowircd.git] / modules / m_restart.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_restart.c: Exits and re-runs ircd.
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
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
212380e3 24 */
25
26#include "stdinc.h"
27#include "client.h"
28#include "common.h"
13ae2f4b 29#include "match.h"
212380e3 30#include "ircd.h"
31#include "numeric.h"
32#include "s_conf.h"
33#include "s_newconf.h"
34#include "restart.h"
d3455e2c 35#include "logger.h"
212380e3 36#include "send.h"
37#include "msg.h"
38#include "parse.h"
39#include "modules.h"
658a333d 40#include "hash.h"
212380e3 41
42static int mo_restart(struct Client *, struct Client *, int, const char **);
658a333d
JH
43static int me_restart(struct Client *, struct Client *, int, const char **);
44static int do_restart(struct Client *source_p, const char *servername);
212380e3 45
46struct Message restart_msgtab = {
47 "RESTART", 0, 0, 0, MFLG_SLOW,
658a333d 48 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_restart, 1}, {mo_restart, 0}}
212380e3 49};
50
51mapi_clist_av1 restart_clist[] = { &restart_msgtab, NULL };
5366977b 52DECLARE_MODULE_AV1(restart, NULL, NULL, restart_clist, NULL, NULL, "$Revision: 3161 $");
212380e3 53
54/*
55 * mo_restart
56 *
57 */
58static int
59mo_restart(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
60{
212380e3 61 if(!IsOperDie(source_p))
62 {
63 sendto_one(source_p, form_str(ERR_NOPRIVS),
64 me.name, source_p->name, "die");
65 return 0;
66 }
67
68 if(parc < 2 || EmptyString(parv[1]))
69 {
5366977b 70 sendto_one_notice(source_p, ":Need server name /restart %s", me.name);
212380e3 71 return 0;
72 }
658a333d
JH
73
74 if(parc > 2)
75 {
76 /* Remote restart. Pass it along. */
77 struct Client *server_p = find_server(NULL, parv[2]);
78 if (!server_p)
79 {
80 sendto_one_numeric(source_p, ERR_NOSUCHSERVER, form_str(ERR_NOSUCHSERVER), parv[2]);
81 return 0;
82 }
83 if (!IsMe(server_p))
84 {
85 sendto_one(server_p, ":%s ENCAP %s RESTART %s", source_p->name, parv[2], parv[1]);
86 return 0;
87 }
88 }
89
90 return do_restart(source_p, parv[1]);
91}
92
93static int
94me_restart(struct Client *client_p __unused, struct Client *source_p, int parc, const char *parv[])
95{
96 if(!find_shared_conf(source_p->username, source_p->host, source_p->servptr->name, SHARED_DIE))
97 {
98 sendto_one_notice(source_p, ":*** You do not have an appropriate shared block to "
99 "remotely restart this server.");
100 return 0;
101 }
102
103 return do_restart(source_p, parv[1]);
104}
105
106static int
107do_restart(struct Client *source_p, const char *servername)
108{
109 char buf[BUFSIZE];
110 rb_dlink_node *ptr;
111 struct Client *target_p;
112
d25c6eb1
JH
113 /* this makes sure both servernames match otherwise weirdness will occur */
114 if(irccmp(servername, me.name))
115 {
116 sendto_one_notice(source_p, ":Mismatch on /restart %s", me.name);
117 return 0;
118 }
119
08d11e34 120 RB_DLINK_FOREACH(ptr, lclient_list.head)
212380e3 121 {
122 target_p = ptr->data;
123
5366977b 124 sendto_one_notice(target_p, ":Server Restarting. %s", get_client_name(source_p, HIDE_IP));
212380e3 125 }
126
08d11e34 127 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3 128 {
129 target_p = ptr->data;
130
131 sendto_one(target_p, ":%s ERROR :Restart by %s",
132 me.name, get_client_name(source_p, HIDE_IP));
133 }
134
581fa5c4 135 rb_sprintf(buf, "Server RESTART by %s", get_client_name(source_p, HIDE_IP));
212380e3 136 restart(buf);
137
138 return 0;
139}