2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_die.c: Kills off this server.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static const char die_desc[] = "Provides the DIE command to allow an operator to shutdown a server";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void mo_die(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
|
|
|
static void me_die(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
|
|
|
static void do_die(client::client &, const char *);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static struct Message die_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"DIE", 0, 0, 0, 0,
|
2016-01-12 07:04:54 +01:00
|
|
|
{mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_die, 1}, {mo_die, 0}}
|
2007-01-25 07:40:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 die_clist[] = { &die_msgtab, NULL };
|
|
|
|
|
2016-03-07 07:48:48 +01:00
|
|
|
DECLARE_MODULE_AV2(die, NULL, NULL, die_clist, NULL, NULL, NULL, NULL, die_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* mo_die - DIE command handler
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
mo_die(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if(!IsOperDie(&source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_NOPRIVS), me.name, source.name, "die");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(parc < 2 || EmptyString(parv[1]))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":Need server name /die %s", me.name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2016-01-12 07:04:54 +01:00
|
|
|
|
|
|
|
if(parc > 2)
|
|
|
|
{
|
|
|
|
/* Remote die. Pass it along. */
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *server_p = find_server(NULL, parv[2]);
|
2016-01-12 07:04:54 +01:00
|
|
|
if (!server_p)
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOSUCHSERVER, form_str(ERR_NOSUCHSERVER), parv[2]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2016-01-12 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if (!is_me(*server_p))
|
2016-01-12 07:04:54 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(server_p, ":%s ENCAP %s DIE %s", source.name, parv[2], parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2016-01-12 07:04:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
do_die(source, parv[1]);
|
2016-01-12 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
me_die(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2016-01-12 07:04:54 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if(!find_shared_conf(source.username, source.host, source.servptr->name, SHARED_DIE))
|
2016-01-12 07:04:54 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":*** You do not have an appropriate shared block to "
|
2016-01-12 07:04:54 +01:00
|
|
|
"remotely shut down this server.");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2016-01-12 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
do_die(source, parv[1]);
|
2016-01-12 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
do_die(client::client &source, const char *servername)
|
2016-01-12 07:04:54 +01:00
|
|
|
{
|
|
|
|
if(irccmp(servername, me.name))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":Mismatch on /die %s", me.name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
ircd_shutdown(get_client_name(&source, HIDE_IP));
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|