0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-13 20:18:53 +02:00
construct/modules/m_kill.cc

315 lines
8.8 KiB
C++
Raw Normal View History

/*
* ircd-ratbox: A slightly useful ircd.
* m_kill.c: Kills a user.
*
* 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;
static const char kill_desc[] = "Provides the KILL command to remove a user from the network";
static int h_can_kill;
static char buf[BUFSIZE];
static void ms_kill(struct MsgBuf *, client::client &, client::client &, int, const char **);
static void mo_kill(struct MsgBuf *, client::client &, client::client &, int, const char **);
static void relay_kill(client::client &, client::client &, client::client *,
const char *, const char *);
struct Message kill_msgtab = {
"KILL", 0, 0, 0, 0,
{mg_unreg, mg_not_oper, {ms_kill, 2}, {ms_kill, 2}, mg_ignore, {mo_kill, 2}}
};
mapi_clist_av1 kill_clist[] = { &kill_msgtab, NULL };
mapi_hlist_av1 kill_hlist[] = {
{ "can_kill", &h_can_kill },
{ NULL, NULL},
};
2016-03-07 07:56:08 +01:00
DECLARE_MODULE_AV2(kill, NULL, NULL, kill_clist, kill_hlist, NULL, NULL, NULL, kill_desc);
/*
** mo_kill
** parv[1] = kill victim
** parv[2] = kill path
*/
static void
mo_kill(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
{
client::client *target_p;
const char *inpath = client.name;
const char *user;
const char *reason;
hook_data_client_approval moduledata;
user = parv[1];
if(!IsOperLocalKill(&source))
{
sendto_one(&source, form_str(ERR_NOPRIVS), me.name, source.name, "local_kill");
return;
}
if(!EmptyString(parv[2]))
{
char *s;
s = LOCAL_COPY(parv[2]);
if(strlen(s) > (size_t) KILLLEN)
s[KILLLEN] = '\0';
reason = s;
}
else
reason = "<No reason given>";
if((target_p = client::find_named_person(user)) == NULL)
{
/*
** If the user has recently changed nick, automatically
** rewrite the KILL for this new nickname--this keeps
** servers in synch when nick change and kill collide
*/
2016-08-25 04:52:37 +02:00
const auto history(whowas::history(user, KILLCHASETIMELIMIT, true));
if(history.empty())
{
if (strchr(user, '.'))
sendto_one_numeric(&source, ERR_CANTKILLSERVER, form_str(ERR_CANTKILLSERVER));
else
2016-08-25 04:52:37 +02:00
sendto_one_numeric(&source, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK),
user);
return;
}
2016-08-25 04:52:37 +02:00
target_p = history.back()->online;
sendto_one_notice(&source, ":KILL changed from %s to %s",
user,
target_p->name);
}
2016-08-23 04:33:36 +02:00
if(!my_connect(*target_p) && (!IsOperGlobalKill(&source)))
{
sendto_one_notice(&source, ":Nick %s is not on your server "
[svn] Backport from early 3.x: -- nenolod 2006/09/27 16:39:14 UTC (20060927-2178) Log: - remove "Processing connection to foobar.net" message Changes: Modified: +0 -3 trunk/src/s_auth.c (File Modified) nenolod 2006/09/27 16:34:26 UTC (20060927-2176) Log: - missed the processing connection one (actually, we can probably nuke this one) Changes: Modified: +1 -2 trunk/src/s_auth.c (File Modified) river 2006/09/27 16:33:05 UTC (20060927-2174) Log: get_client_name = stupid Changes: Modified: +10 -7 trunk/modules/core/m_kill.c (File Modified) nenolod 2006/09/27 16:32:37 UTC (20060927-2172) Log: - remove excessive arguments Changes: Modified: +1 -2 trunk/src/s_conf.c (File Modified) +1 -1 trunk/src/s_user.c (File Modified) nenolod 2006/09/27 16:30:59 UTC (20060927-2170) Log: - use sendto_one_notice() for on-connect notices too. Changes: Modified: +10 -10 trunk/src/s_auth.c (File Modified) nenolod 2006/09/27 16:27:01 UTC (20060927-2168) Log: - use sendto_one_notice() in the core, too. Changes: Modified: +2 -2 trunk/src/chmode.c (File Modified) +8 -15 trunk/src/modules.c (File Modified) +3 -5 trunk/src/s_conf.c (File Modified) +1 -2 trunk/src/s_newconf.c (File Modified) +20 -57 trunk/src/s_user.c (File Modified) river 2006/09/27 16:19:25 UTC (20060927-2166) Log: the KILL command will use get_client_name(, SHOW_IP) instead of target->name, and will show a more useful error for local opers Changes: Modified: +6 -4 trunk/modules/core/m_kill.c (File Modified) nenolod 2006/09/27 16:09:48 UTC (20060927-2164) Log: - fix bugs in sendto_one_notice()/sendto_one_numeric() where a client identifier won't be sent to unregistered clients Changes: Modified: +4 -2 trunk/src/send.c (File Modified) nenolod 2006/09/27 16:05:46 UTC (20060927-2161) Log: - back out r2159 Changes: Modified: +1 -1 trunk/include/client.h (File Modified) nenolod 2006/09/27 16:04:05 UTC (20060927-2159) Log: - get_id(): fall back to "*" if client has no known name Changes: Modified: +1 -1 trunk/include/client.h (File Modified) nenolod 2006/09/27 16:01:29 UTC (20060927-2157) Log: - convert to sendto_one_notice(). Changes: Modified: +2 -3 trunk/unsupported/m_clearchan.c (File Modified) +4 -6 trunk/unsupported/m_force.c (File Modified) nenolod 2006/09/27 15:57:11 UTC (20060927-2155) Log: - use sendto_one_notice() in many places instead of sendto_one(source_p, ":%s NOTICE %s :", ...); Changes: Modified: +10 -25 trunk/extensions/example_module.c (File Modified) +5 -14 trunk/extensions/hurt.c (File Modified) +1 -2 trunk/extensions/m_42.c (File Modified) +7 -12 trunk/extensions/m_mkpasswd.c (File Modified) +1 -2 trunk/extensions/m_ojoin.c (File Modified) +1 -2 trunk/extensions/m_opme.c (File Modified) +3 -3 trunk/extensions/spy_whois_notice.c (File Modified) +3 -3 trunk/extensions/spy_whois_notice_global.c (File Modified) +3 -7 trunk/modules/core/m_die.c (File Modified) +2 -4 trunk/modules/core/m_kill.c (File Modified) +2 -2 trunk/modules/core/m_squit.c (File Modified) +1 -2 trunk/modules/m_challenge.c (File Modified) +11 -15 trunk/modules/m_connect.c (File Modified) +20 -28 trunk/modules/m_dline.c (File Modified) +2 -2 trunk/modules/m_etrace.c (File Modified) +11 -21 trunk/modules/m_gline.c (File Modified) +2 -4 trunk/modules/m_kline.c (File Modified) +1 -2 trunk/modules/m_rehash.c (File Modified) +3 -7 trunk/modules/m_restart.c (File Modified) +31 -45 trunk/modules/m_set.c (File Modified) +2 -4 trunk/modules/m_testmask.c (File Modified) +5 -8 trunk/modules/m_unreject.c (File Modified) +2 -5 trunk/modules/m_xline.c (File Modified) --
2007-01-25 08:23:01 +01:00
"and you do not have the global_kill flag",
target_p->name);
return;
}
/* Last chance to stop the kill */
moduledata.client = &source;
moduledata.target = target_p;
moduledata.approved = 1;
call_hook(h_can_kill, &moduledata);
if (moduledata.approved == 0)
2013-04-27 16:55:45 +02:00
/* The callee should have sent a message. */
return;
2016-08-23 04:33:36 +02:00
if(my_connect(*target_p))
sendto_one(target_p, ":%s!%s@%s KILL %s :%s",
source.name, source.username, source.host,
target_p->name, reason);
/* Do not change the format of this message. There's no point in changing messages
* that have been around for ever, for no reason.. */
2016-08-26 13:50:12 +02:00
sendto_realops_snomask(sno::GENERAL, L_ALL,
"Received KILL message for %s!%s@%s. From %s Path: %s (%s)",
target_p->name, target_p->username, target_p->orighost,
source.name, me.name, reason);
ilog(L_KILL, "%c %s %s!%s@%s %s %s",
2016-08-23 04:33:36 +02:00
my_connect(*target_p) ? 'L' : 'G', get_oper_name(&source),
2007-11-20 13:36:55 +01:00
target_p->name, target_p->username, target_p->host, target_p->servptr->name, reason);
/*
** And pass on the message to other servers. Note, that if KILL
** was changed, the message has to be sent to all links, also
** back.
** Suicide kills are NOT passed on --SRB
*/
2016-08-23 04:33:36 +02:00
if(!my_connect(*target_p))
{
relay_kill(client, source, target_p, inpath, reason);
/*
** Set FLAGS_KILLED. This prevents exit_one_client from sending
** the unnecessary QUIT for this. (This flag should never be
** set in any other place)
*/
2016-08-23 04:33:36 +02:00
target_p->flags |= client::flags::KILLED;
}
sprintf(buf, "Killed (%s (%s))", source.name, reason);
exit_client(&client, target_p, &source, buf);
}
/*
* ms_kill
* parv[1] = kill victim
* parv[2] = kill path and reason
*/
static void
ms_kill(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
{
client::client *target_p;
const char *user;
const char *reason;
char default_reason[] = "<No reason given>";
const char *path;
*buf = '\0';
user = parv[1];
if(EmptyString(parv[2]))
{
reason = default_reason;
/* hyb6 takes the nick of the killer from the path *sigh* --fl_ */
path = source.name;
}
else
{
char *s = LOCAL_COPY(parv[2]), *t;
t = strchr(s, ' ');
if(t)
{
*t = '\0';
t++;
reason = t;
}
else
reason = default_reason;
path = s;
}
if((target_p = client::find_person(user)) == NULL)
{
/*
* If the user has recently changed nick, but only if its
* not an uid, automatically rewrite the KILL for this new nickname.
* --this keeps servers in synch when nick change and kill collide
*/
2016-08-25 04:52:37 +02:00
if(rfc1459::is_digit(*user))
{
2016-08-25 04:52:37 +02:00
sendto_one_numeric(&source, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), "*");
return;
}
2016-08-25 04:52:37 +02:00
const auto history(whowas::history(user, KILLCHASETIMELIMIT, true));
if(history.empty())
{
sendto_one_numeric(&source, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), user);
return;
}
target_p = history.back()->online;
sendto_one_notice(&source, ":KILL changed from %s to %s", user, target_p->name);
}
2016-08-23 04:33:36 +02:00
if(is_server(*target_p) || is_me(*target_p))
{
sendto_one_numeric(&source, ERR_CANTKILLSERVER, form_str(ERR_CANTKILLSERVER));
return;
}
2016-08-23 04:33:36 +02:00
if(my_connect(*target_p))
{
2016-08-23 04:33:36 +02:00
if(is_server(source))
{
sendto_one(target_p, ":%s KILL %s :%s",
source.name, target_p->name, reason);
}
else
sendto_one(target_p, ":%s!%s@%s KILL %s :%s",
source.name, source.username, source.host,
target_p->name, reason);
}
/* Be warned, this message must be From %s, or it confuses clients
* so dont change it to From: or the case or anything! -- fl -- db */
/* path must contain at least 2 !'s, or bitchx falsely declares it
* local --fl
*/
2016-08-24 00:25:09 +02:00
if(is(source, umode::OPER)) /* send it normally */
{
2016-08-26 13:50:12 +02:00
sendto_realops_snomask(is(source, umode::SERVICE) ? sno::SKILL : sno::GENERAL, L_ALL,
"Received KILL message for %s!%s@%s. From %s Path: %s!%s!%s!%s %s",
target_p->name, target_p->username, target_p->orighost, source.name,
source.servptr->name, source.host, source.username,
source.name, reason);
ilog(L_KILL, "%c %s %s!%s@%s %s %s",
2016-08-23 04:33:36 +02:00
my_connect(*target_p) ? 'O' : 'R', get_oper_name(&source),
target_p->name, target_p->username, target_p->host,
2007-11-20 13:36:55 +01:00
target_p->servptr->name, reason);
}
else
{
2016-08-26 13:50:12 +02:00
sendto_realops_snomask(sno::SKILL, L_ALL,
"Received KILL message for %s!%s@%s. From %s %s",
target_p->name, target_p->username, target_p->orighost,
source.name, reason);
ilog(L_KILL, "S %s %s!%s@%s %s %s",
source.name, target_p->name, target_p->username,
2007-11-20 13:36:55 +01:00
target_p->host, target_p->servptr->name, reason);
}
relay_kill(client, source, target_p, path, reason);
/* FLAGS_KILLED prevents a quit being sent out */
2016-08-23 04:33:36 +02:00
target_p->flags |= client::flags::KILLED;
sprintf(buf, "Killed (%s %s)", source.name, reason);
exit_client(&client, target_p, &source, buf);
}
static void
relay_kill(client::client &one, client::client &source,
client::client *target_p, const char *inpath, const char *reason)
{
client::client *client;
2008-04-01 22:18:48 +02:00
rb_dlink_node *ptr;
char buffer[BUFSIZE];
2016-08-23 04:33:36 +02:00
if(my(source))
snprintf(buffer, sizeof(buffer),
"%s!%s!%s!%s (%s)",
me.name, source.host, source.username, source.name, reason);
else
snprintf(buffer, sizeof(buffer), "%s %s", inpath, reason);
2008-04-01 22:18:48 +02:00
RB_DLINK_FOREACH(ptr, serv_list.head)
{
client = (client::client *)ptr->data;
if(!client || client == &one)
continue;
sendto_one(client, ":%s KILL %s :%s",
get_id(&source, client), get_id(target_p, client), buffer);
}
}