2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_restart.c: Exits and re-runs ircd.
|
|
|
|
*
|
|
|
|
* 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 restart_desc[] = "Provides the RESTART command to restart the server";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void mo_restart(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
|
|
|
static void me_restart(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
|
|
|
static void do_restart(client::client &source, const char *servername);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct Message restart_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"RESTART", 0, 0, 0, 0,
|
2016-01-12 07:04:54 +01:00
|
|
|
{mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_restart, 1}, {mo_restart, 0}}
|
2007-01-25 07:40:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 restart_clist[] = { &restart_msgtab, NULL };
|
2016-03-09 08:29:41 +01:00
|
|
|
|
2016-03-07 08:52:45 +01:00
|
|
|
DECLARE_MODULE_AV2(restart, NULL, NULL, restart_clist, NULL, NULL, NULL, NULL, restart_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* mo_restart
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
mo_restart(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 /restart %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 restart. 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 RESTART %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_restart(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_restart(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 restart 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_restart(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_restart(client::client &source, const char *servername)
|
2016-01-12 07:04:54 +01:00
|
|
|
{
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
rb_dlink_node *ptr;
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *target_p;
|
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 /restart %s", me.name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, lclient_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
target_p = (client::client *)ptr->data;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(target_p, ":Server Restarting. %s", get_client_name(&source, HIDE_IP));
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, serv_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
target_p = (client::client *)ptr->data;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_one(target_p, ":%s ERROR :Restart by %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, get_client_name(&source, HIDE_IP));
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sprintf(buf, "Server RESTART by %s", get_client_name(&source, HIDE_IP));
|
2007-01-25 07:40:21 +01:00
|
|
|
restart(buf);
|
|
|
|
}
|