2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_knock.c: Requests to be invited to a channel.
|
|
|
|
*
|
|
|
|
* 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 knock_desc[] = "Provides the KNOCK command to ask for an invite to an invite-only channel";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void m_knock(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct Message knock_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"KNOCK", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, {m_knock, 2}, {m_knock, 2}, mg_ignore, mg_ignore, {m_knock, 2}}
|
|
|
|
};
|
|
|
|
|
2015-12-27 05:41:09 +01:00
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2016-08-25 09:59:58 +02:00
|
|
|
supported::add("KNOCK", []
|
|
|
|
{
|
|
|
|
return ConfigChannel.use_knock;
|
|
|
|
});
|
|
|
|
|
2015-12-27 05:41:09 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2016-08-25 09:59:58 +02:00
|
|
|
supported::del("KNOCK");
|
2015-12-27 05:41:09 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
mapi_clist_av1 knock_clist[] = { &knock_msgtab, NULL };
|
2016-03-07 09:11:50 +01:00
|
|
|
|
|
|
|
DECLARE_MODULE_AV2(knock, _modinit, _moddeinit, knock_clist, NULL, NULL, NULL, NULL, knock_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* m_knock
|
|
|
|
* parv[1] = channel
|
|
|
|
*
|
|
|
|
* The KNOCK command has the following syntax:
|
|
|
|
* :<sender> KNOCK <channel>
|
|
|
|
*
|
|
|
|
* If a user is not banned from the channel they can use the KNOCK
|
|
|
|
* command to have the server NOTICE the channel operators notifying
|
|
|
|
* they would like to join. Helpful if the channel is invite-only, the
|
|
|
|
* key is forgotten, or the channel is full (INVITE can bypass each one
|
|
|
|
* of these conditions. Concept by Dianora <db@db.net> and written by
|
|
|
|
* <anonymous>
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
m_knock(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-18 07:33:38 +02:00
|
|
|
chan::chan *chptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
char *p, *name;
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my(source) && ConfigChannel.use_knock == 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_KNOCKDISABLED),
|
|
|
|
me.name, source.name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
name = LOCAL_COPY(parv[1]);
|
|
|
|
|
|
|
|
/* dont allow one knock to multiple chans */
|
|
|
|
if((p = strchr(name, ',')))
|
|
|
|
*p = '\0';
|
|
|
|
|
2016-08-20 04:51:37 +02:00
|
|
|
if((chptr = chan::get(name, std::nothrow)) == NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOSUCHCHANNEL,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_NOSUCHCHANNEL), 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
|
|
|
if(is_member(chptr, &source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my(source))
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_KNOCKONCHAN),
|
|
|
|
me.name, source.name, name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-17 05:01:20 +02:00
|
|
|
if(!((chptr->mode.mode & chan::mode::INVITEONLY) || (*chptr->mode.key) ||
|
2014-03-03 05:25:47 +01:00
|
|
|
(chptr->mode.limit &&
|
2016-08-20 02:32:26 +02:00
|
|
|
size(chptr->members) >= (unsigned long)chptr->mode.limit)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_CHANOPEN,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_CHANOPEN), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* cant knock to a +p channel */
|
2016-08-19 01:33:46 +02:00
|
|
|
if(is_hidden(chptr))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_CANNOTSENDTOCHAN,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_CANNOTSENDTOCHAN), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(my(source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-19 07:58:17 +02:00
|
|
|
// don't allow a knock if the user is banned
|
2016-08-23 02:37:07 +02:00
|
|
|
if (check(*chptr, chan::mode::BAN, source) ||
|
|
|
|
check(*chptr, chan::mode::QUIET, source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_CANNOTSENDTOCHAN, form_str(ERR_CANNOTSENDTOCHAN), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* local flood protection:
|
|
|
|
* allow one knock per user per knock_delay
|
|
|
|
* allow one knock per channel per knock_delay_channel
|
|
|
|
*/
|
2016-08-24 00:25:09 +02:00
|
|
|
if(!is(source, umode::OPER) &&
|
2016-08-23 02:37:07 +02:00
|
|
|
(source.localClient->last_knock + ConfigChannel.knock_delay) > rb_current_time())
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_TOOMANYKNOCK),
|
|
|
|
me.name, source.name, name, "user");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2008-04-02 01:53:20 +02:00
|
|
|
else if((chptr->last_knock + ConfigChannel.knock_delay_channel) > rb_current_time())
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_TOOMANYKNOCK),
|
|
|
|
me.name, source.name, name, "channel");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ok, we actually can send the knock, tell client */
|
2016-08-23 02:37:07 +02:00
|
|
|
source.localClient->last_knock = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_KNOCKDLVR),
|
|
|
|
me.name, source.name, name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-02 01:53:20 +02:00
|
|
|
chptr->last_knock = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(ConfigChannel.use_knock)
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_channel_local(chptr->mode.mode & chan::mode::FREEINVITE ? chan::ALL_MEMBERS : chan::ONLY_CHANOPS,
|
2007-09-09 21:19:23 +02:00
|
|
|
chptr, form_str(RPL_KNOCK),
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, name, name, source.name,
|
|
|
|
source.username, source.host);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_server(&client, chptr, CAP_KNOCK|CAP_TS6, NOCAPS,
|
|
|
|
":%s KNOCK %s", use_id(&source), name);
|
|
|
|
sendto_server(&client, chptr, CAP_KNOCK, CAP_TS6,
|
|
|
|
":%s KNOCK %s", source.name, name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|