]> jfr.im git - solanum.git/blame - modules/m_restart.c
add separate priv (oper:message) for walking over CALLERID (umode +g) (#152)
[solanum.git] / modules / m_restart.c
CommitLineData
212380e3
AC
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
212380e3
AC
23 */
24
25#include "stdinc.h"
26#include "client.h"
4562c604 27#include "match.h"
212380e3
AC
28#include "ircd.h"
29#include "numeric.h"
30#include "s_conf.h"
31#include "s_newconf.h"
32#include "restart.h"
4016731b 33#include "logger.h"
212380e3
AC
34#include "send.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
cc7ae51c 38#include "hash.h"
212380e3 39
eeabf33a
EM
40static const char restart_desc[] = "Provides the RESTART command to restart the server";
41
3c7d6fcc
EM
42static void mo_restart(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
43static void me_restart(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
44static void do_restart(struct Client *source_p, const char *servername);
212380e3
AC
45
46struct Message restart_msgtab = {
7baa37a9 47 "RESTART", 0, 0, 0, 0,
cc7ae51c 48 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_restart, 1}, {mo_restart, 0}}
212380e3
AC
49};
50
51mapi_clist_av1 restart_clist[] = { &restart_msgtab, NULL };
eeabf33a 52
114d98b3 53DECLARE_MODULE_AV2(restart, NULL, NULL, restart_clist, NULL, NULL, NULL, NULL, restart_desc);
212380e3
AC
54
55/*
56 * mo_restart
212380e3 57 */
3c7d6fcc 58static void
428ca87b 59mo_restart(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3 60{
212380e3
AC
61 if(!IsOperDie(source_p))
62 {
63 sendto_one(source_p, form_str(ERR_NOPRIVS),
64 me.name, source_p->name, "die");
3c7d6fcc 65 return;
212380e3
AC
66 }
67
68 if(parc < 2 || EmptyString(parv[1]))
69 {
5366977b 70 sendto_one_notice(source_p, ":Need server name /restart %s", me.name);
3c7d6fcc 71 return;
212380e3 72 }
cc7ae51c
AC
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]);
3c7d6fcc 81 return;
cc7ae51c
AC
82 }
83
84 if (!IsMe(server_p))
85 {
86 sendto_one(server_p, ":%s ENCAP %s RESTART %s", source_p->name, parv[2], parv[1]);
3c7d6fcc 87 return;
cc7ae51c
AC
88 }
89 }
90
3c7d6fcc 91 do_restart(source_p, parv[1]);
cc7ae51c
AC
92}
93
3c7d6fcc 94static void
428ca87b 95me_restart(struct MsgBuf *msgbuf_p __unused, struct Client *client_p __unused, struct Client *source_p, int parc, const char *parv[])
cc7ae51c 96{
3c7d6fcc 97 do_restart(source_p, parv[1]);
cc7ae51c
AC
98}
99
3c7d6fcc 100static void
cc7ae51c
AC
101do_restart(struct Client *source_p, const char *servername)
102{
103 char buf[BUFSIZE];
104 rb_dlink_node *ptr;
105 struct Client *target_p;
106
107 if(irccmp(servername, me.name))
212380e3 108 {
5366977b 109 sendto_one_notice(source_p, ":Mismatch on /restart %s", me.name);
3c7d6fcc 110 return;
212380e3
AC
111 }
112
5b96d9a6 113 RB_DLINK_FOREACH(ptr, lclient_list.head)
212380e3
AC
114 {
115 target_p = ptr->data;
116
5366977b 117 sendto_one_notice(target_p, ":Server Restarting. %s", get_client_name(source_p, HIDE_IP));
212380e3
AC
118 }
119
5b96d9a6 120 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3
AC
121 {
122 target_p = ptr->data;
123
124 sendto_one(target_p, ":%s ERROR :Restart by %s",
125 me.name, get_client_name(source_p, HIDE_IP));
126 }
127
5203cba5 128 sprintf(buf, "Server RESTART by %s", get_client_name(source_p, HIDE_IP));
212380e3 129 restart(buf);
212380e3 130}