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