2012-02-04 09:20:56 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_kick.c: Kicks a user from a channel.
|
|
|
|
*
|
|
|
|
* 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 description[] = "Provides the REMOVE command, an alternative to KICK";
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void m_remove(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
2016-01-10 15:46:52 +01:00
|
|
|
static void remove_quote_part(hook_data_privmsg_channel *);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
unsigned int CAP_REMOVE;
|
|
|
|
static char part_buf[REASONLEN + 1];
|
|
|
|
|
2012-02-04 09:20:56 +01:00
|
|
|
struct Message remove_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"REMOVE", 0, 0, 0, 0,
|
2012-02-04 09:20:56 +01:00
|
|
|
{mg_unreg, {m_remove, 3}, {m_remove, 3}, {m_remove, 3}, mg_ignore, {m_remove, 3}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 remove_clist[] = { &remove_msgtab, NULL };
|
2016-01-10 15:46:52 +01:00
|
|
|
mapi_hfn_list_av1 remove_hfnlist[] = {
|
|
|
|
{ "privmsg_channel", (hookfn) remove_quote_part },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
2016-03-07 00:27:02 +01:00
|
|
|
mapi_cap_list_av2 remove_cap_list[] = {
|
|
|
|
{ MAPI_CAP_SERVER, "REMOVE", NULL, &CAP_REMOVE },
|
|
|
|
{ 0, NULL, NULL, NULL }
|
|
|
|
};
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-03-07 01:56:45 +01:00
|
|
|
DECLARE_MODULE_AV2(remove, NULL, NULL, remove_clist, NULL, remove_hfnlist, remove_cap_list, NULL, description);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
m_remove(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::membership *msptr;
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *who;
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::chan *chptr;
|
2012-02-04 09:20:56 +01:00
|
|
|
int chasing = 0;
|
|
|
|
char *comment;
|
|
|
|
const char *name;
|
|
|
|
char *p = NULL;
|
|
|
|
const char *user;
|
|
|
|
static char buf[BUFSIZE];
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my(source) && !is_flood_done(source))
|
2016-08-23 02:37:07 +02:00
|
|
|
flood_endgrace(&source);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
|
|
|
*buf = '\0';
|
2016-07-13 07:17:21 +02:00
|
|
|
if((p = (char *)strchr(parv[1], ',')))
|
2012-02-04 09:20:56 +01:00
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
name = parv[1];
|
|
|
|
|
2016-08-20 04:51:37 +02:00
|
|
|
chptr = chan::get(name, std::nothrow);
|
2012-02-04 09:20:56 +01:00
|
|
|
if(chptr == NULL)
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(!is_server(source))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
msptr = get(chptr->members, source, std::nothrow);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if((msptr == NULL) && my_connect(source))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOTONCHANNEL,
|
2012-02-04 09:20:56 +01:00
|
|
|
form_str(ERR_NOTONCHANNEL), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if(get_channel_access(&source, chptr, msptr, MODE_ADD, NULL) < chan::CHANOP)
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my_connect(source))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source.name, name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If its a TS 0 channel, do it the old way */
|
|
|
|
if(chptr->channelts == 0)
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
get_id(&me, &source), get_id(&source, &source), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Its a user doing a kick, but is not showing as chanop locally
|
|
|
|
* its also not a user ON -my- server, and the channel has a TS.
|
|
|
|
* There are two cases we can get to this point then...
|
|
|
|
*
|
|
|
|
* 1) connect burst is happening, and for some reason a legit
|
2014-03-03 05:25:47 +01:00
|
|
|
* op has sent a KICK, but the SJOIN hasn't happened yet or
|
2012-02-04 09:20:56 +01:00
|
|
|
* been seen. (who knows.. due to lag...)
|
|
|
|
*
|
|
|
|
* 2) The channel is desynced. That can STILL happen with TS
|
2014-03-03 05:25:47 +01:00
|
|
|
*
|
|
|
|
* Now, the old code roger wrote, would allow the KICK to
|
2012-02-04 09:20:56 +01:00
|
|
|
* go through. Thats quite legit, but lets weird things like
|
|
|
|
* KICKS by users who appear not to be chanopped happen,
|
|
|
|
* or even neater, they appear not to be on the channel.
|
|
|
|
* This fits every definition of a desync, doesn't it? ;-)
|
|
|
|
* So I will allow the KICK, otherwise, things are MUCH worse.
|
|
|
|
* But I will warn it as a possible desync.
|
|
|
|
*
|
|
|
|
* -Dianora
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
if((p = (char *)strchr(parv[2], ',')))
|
2012-02-04 09:20:56 +01:00
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
user = parv[2]; /* strtoken(&p2, parv[2], ","); */
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if(!(who = find_chasing(&source, user, &chasing)))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-20 02:32:26 +02:00
|
|
|
msptr = get(chptr->members, *who, std::nothrow);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
|
|
|
if(msptr != NULL)
|
|
|
|
{
|
2016-08-24 00:25:09 +02:00
|
|
|
if(my(source) && is(*who, umode::SERVICE))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_ISCHANSERVICE),
|
|
|
|
me.name, source.name, who->name, chptr->name.c_str());
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my(source))
|
2012-02-04 09:20:56 +01:00
|
|
|
{
|
|
|
|
hook_data_channel_approval hookdata;
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
hookdata.client = &source;
|
2012-02-04 09:20:56 +01:00
|
|
|
hookdata.chptr = chptr;
|
|
|
|
hookdata.msptr = msptr;
|
|
|
|
hookdata.target = who;
|
|
|
|
hookdata.approved = 1;
|
2015-12-10 08:00:32 +01:00
|
|
|
hookdata.dir = MODE_ADD; /* ensure modules like override speak up */
|
2012-02-04 09:20:56 +01:00
|
|
|
|
|
|
|
call_hook(h_can_kick, &hookdata);
|
|
|
|
|
|
|
|
if (!hookdata.approved)
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
comment = LOCAL_COPY((EmptyString(parv[3])) ? who->name : parv[3]);
|
|
|
|
if(strlen(comment) > (size_t) REASONLEN)
|
|
|
|
comment[REASONLEN] = '\0';
|
|
|
|
|
|
|
|
/* jdc
|
|
|
|
* - In the case of a server kicking a user (i.e. CLEARCHAN),
|
|
|
|
* the kick should show up as coming from the server which did
|
|
|
|
* the kick.
|
|
|
|
* - Personally, flame and I believe that server kicks shouldn't
|
|
|
|
* be sent anyways. Just waiting for some oper to abuse it...
|
|
|
|
*/
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_channel_local(chan::ALL_MEMBERS, chptr,
|
2012-02-04 09:20:56 +01:00
|
|
|
":%s!%s@%s PART %s :requested by %s (%s)",
|
2012-02-05 01:49:46 +01:00
|
|
|
who->name, who->username,
|
2016-08-23 02:37:07 +02:00
|
|
|
who->host, name, source.name, comment);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_server(&client, chptr, CAP_REMOVE, NOCAPS,
|
2012-02-04 09:20:56 +01:00
|
|
|
":%s REMOVE %s %s :%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
use_id(&source), chptr->name.c_str(), use_id(who), comment);
|
|
|
|
sendto_server(&client, chptr, NOCAPS, CAP_REMOVE,
|
2012-02-04 09:20:56 +01:00
|
|
|
":%s KICK %s %s :%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
use_id(&source), chptr->name.c_str(), use_id(who), comment);
|
2012-02-04 09:20:56 +01:00
|
|
|
|
2016-08-20 02:32:26 +02:00
|
|
|
del(*chptr, get_client(*msptr));
|
2012-02-04 09:20:56 +01:00
|
|
|
}
|
2016-08-23 04:33:36 +02:00
|
|
|
else if (my(source))
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_USERNOTINCHANNEL,
|
2012-02-04 09:20:56 +01:00
|
|
|
form_str(ERR_USERNOTINCHANNEL), user, name);
|
|
|
|
}
|
|
|
|
|
2016-01-10 15:46:52 +01:00
|
|
|
static void
|
|
|
|
remove_quote_part(hook_data_privmsg_channel *data)
|
|
|
|
{
|
|
|
|
if (data->approved || EmptyString(data->text) || data->msgtype != MESSAGE_TYPE_PART)
|
|
|
|
return;
|
|
|
|
|
2016-01-11 05:27:28 +01:00
|
|
|
rb_strlcpy(part_buf, "\"", sizeof(part_buf) - 1);
|
|
|
|
rb_strlcat(part_buf, data->text, sizeof(part_buf) - 1);
|
|
|
|
rb_strlcat(part_buf, "\"", sizeof(part_buf));
|
2016-01-10 15:46:52 +01:00
|
|
|
|
|
|
|
data->text = part_buf;
|
|
|
|
}
|