]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/core/m_die.c
s_log.* -> logger.* (s_foo looks ugly, lets try to get rid of it)
[irc/rqf/shadowircd.git] / modules / core / m_die.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_die.c: Kills off this server.
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 *
5ea98c7a 24 * $Id: m_die.c 3295 2007-03-28 14:45:46Z jilles $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "client.h"
29#include "ircd.h"
30#include "irc_string.h"
31#include "numeric.h"
d3455e2c 32#include "logger.h"
212380e3 33#include "s_conf.h"
34#include "send.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
38#include "s_newconf.h"
39
40static int mo_die(struct Client *, struct Client *, int, const char **);
41
42static struct Message die_msgtab = {
43 "DIE", 0, 0, 0, MFLG_SLOW,
44 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_die, 0}}
45};
46
47mapi_clist_av1 die_clist[] = { &die_msgtab, NULL };
48
5ea98c7a 49DECLARE_MODULE_AV1(die, NULL, NULL, die_clist, NULL, NULL, "$Revision: 3295 $");
212380e3 50
51/*
52 * mo_die - DIE command handler
53 */
54static int
55mo_die(struct Client *client_p __unused, struct Client *source_p, int parc, const char *parv[])
56{
57 struct Client *target_p;
08d11e34 58 rb_dlink_node *ptr;
212380e3 59
60 if(!IsOperDie(source_p))
61 {
62 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "die");
63 return 0;
64 }
65
66 if(parc < 2 || EmptyString(parv[1]))
67 {
5366977b 68 sendto_one_notice(source_p, ":Need server name /die %s", me.name);
212380e3 69 return 0;
70 }
71 else if(irccmp(parv[1], me.name))
72 {
5366977b 73 sendto_one_notice(source_p, ":Mismatch on /die %s", me.name);
212380e3 74 return 0;
75 }
76
08d11e34 77 RB_DLINK_FOREACH(ptr, lclient_list.head)
212380e3 78 {
79 target_p = ptr->data;
80
5366977b 81 sendto_one_notice(target_p, ":Server Terminating. %s", get_client_name(source_p, HIDE_IP));
212380e3 82 }
83
08d11e34 84 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3 85 {
86 target_p = ptr->data;
87
5ea98c7a 88 sendto_one(target_p, "SQUIT %s :Terminated by %s",
89 use_id(target_p),
90 get_client_name(source_p, HIDE_IP));
212380e3 91 }
92
93 /*
94 * XXX we called flush_connections() here. Read server_reboot()
95 * for an explanation as to what we should do.
96 * -- adrian
97 */
98 ilog(L_MAIN, "Server terminated by %s", get_oper_name(source_p));
99
100 /* this is a normal exit, tell the os it's ok */
101 unlink(pidFileName);
102 exit(0);
103 /* NOT REACHED */
104
105 return 0;
106}