2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* charybdis: An advanced ircd.
|
|
|
|
* m_list_safelist.c: Version of /list that uses the safelist code.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 William Pitcock <nenolod@nenolod.net>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2007-04-03 12:18:07 +02:00
|
|
|
* $Id: m_list.c 3372 2007-04-03 10:18:07Z nenolod $
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "hash.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "s_conf.h"
|
2011-01-06 03:57:27 +01:00
|
|
|
#include "s_newconf.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "s_serv.h"
|
2011-01-06 09:40:08 +01:00
|
|
|
#include "supported.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "send.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "modules.h"
|
2012-04-29 00:44:33 +02:00
|
|
|
#include "inline/stringops.h"
|
2013-09-10 07:35:56 +02:00
|
|
|
#include "s_assert.h"
|
|
|
|
#include "logger.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static int _modinit(void);
|
|
|
|
static void _moddeinit(void);
|
|
|
|
|
|
|
|
static int m_list(struct Client *, struct Client *, int, const char **);
|
|
|
|
static int mo_list(struct Client *, struct Client *, int, const char **);
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
struct ListOptions
|
|
|
|
{
|
|
|
|
unsigned int users_min, users_max;
|
|
|
|
time_t created_min, created_max, topic_min, topic_max;
|
|
|
|
int operspy;
|
|
|
|
};
|
|
|
|
|
2012-04-29 00:44:33 +02:00
|
|
|
static void list_one_channel(struct Client *source_p, struct Channel *chptr, int visible);
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
static void safelist_one_channel(struct Client *source_p, struct Channel *chptr, struct ListOptions *params);
|
2011-05-23 05:30:49 +02:00
|
|
|
static void safelist_channel_named(struct Client *source_p, const char *name, int operspy);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct Message list_msgtab = {
|
|
|
|
"LIST", 0, 0, 0, MFLG_SLOW,
|
|
|
|
{mg_unreg, {m_list, 0}, mg_ignore, mg_ignore, mg_ignore, {mo_list, 0}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 list_clist[] = { &list_msgtab, NULL };
|
|
|
|
|
2016-01-10 06:28:53 +01:00
|
|
|
DECLARE_MODULE_AV1(list, _modinit, _moddeinit, list_clist, NULL, NULL, "$Revision: 3372 $");
|
2008-04-01 23:12:16 +02:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static int _modinit(void)
|
|
|
|
{
|
2011-01-06 09:40:08 +01:00
|
|
|
/* ELIST=[tokens]:
|
|
|
|
*
|
|
|
|
* M = mask search
|
|
|
|
* N = !mask search
|
|
|
|
* U = user count search (< >)
|
|
|
|
* C = creation time search (C> C<)
|
|
|
|
* T = topic search (T> T<)
|
|
|
|
*/
|
|
|
|
add_isupport("SAFELIST", isupport_string, "");
|
|
|
|
add_isupport("ELIST", isupport_string, "CTU");
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _moddeinit(void)
|
|
|
|
{
|
2011-01-06 09:40:08 +01:00
|
|
|
delete_isupport("SAFELIST");
|
|
|
|
delete_isupport("ELIST");
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* m_list()
|
|
|
|
* parv[1] = channel
|
|
|
|
*
|
|
|
|
* XXX - With SAFELIST, do we really need to continue pacing?
|
|
|
|
* In theory, the server cannot be lagged by this. --nenolod
|
|
|
|
*/
|
|
|
|
static int m_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
static time_t last_used = 0L;
|
|
|
|
|
|
|
|
if (parc < 2 || !IsChannelName(parv[1]))
|
|
|
|
{
|
|
|
|
/* pace this due to the sheer traffic involved */
|
2008-04-02 01:53:20 +02:00
|
|
|
if (((last_used + ConfigFileEntry.pace_wait) > rb_current_time()))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, source_p->name, "LIST");
|
|
|
|
sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
2008-04-02 01:53:20 +02:00
|
|
|
last_used = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return mo_list(client_p, source_p, parc, parv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mo_list()
|
|
|
|
* parv[1] = channel
|
|
|
|
*/
|
|
|
|
static int mo_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
2016-01-10 06:34:52 +01:00
|
|
|
struct ListOptions *params;
|
2011-05-23 05:30:49 +02:00
|
|
|
char *p;
|
|
|
|
char *args = NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
int i;
|
2011-05-23 05:30:49 +02:00
|
|
|
int operspy = 0;
|
2016-01-10 06:28:53 +01:00
|
|
|
int sendq_limit = get_sendq_hard(client_p);
|
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-01-10 06:28:53 +01:00
|
|
|
sendq_limit /= 10;
|
|
|
|
sendq_limit *= 9;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-05-23 05:30:49 +02:00
|
|
|
if (parc > 1)
|
|
|
|
{
|
|
|
|
args = LOCAL_COPY(parv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args && *args == '!' && IsOperSpy(source_p))
|
|
|
|
{
|
|
|
|
args++;
|
|
|
|
report_operspy(source_p, "LIST", args);
|
|
|
|
operspy = 1;
|
|
|
|
}
|
|
|
|
|
2011-01-06 06:15:36 +01:00
|
|
|
/* Single channel. */
|
2011-05-23 05:30:49 +02:00
|
|
|
if (args && IsChannelName(args))
|
2011-01-06 06:15:36 +01:00
|
|
|
{
|
2011-05-23 05:30:49 +02:00
|
|
|
safelist_channel_named(source_p, args, operspy);
|
2011-01-06 06:15:36 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Multiple channels, possibly with parameters. */
|
2016-01-10 06:34:52 +01:00
|
|
|
params = rb_malloc(sizeof(struct ListOptions));
|
2011-01-06 06:15:36 +01:00
|
|
|
|
2015-12-27 05:23:28 +01:00
|
|
|
params->users_min = ConfigChannel.displayed_usercount;
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_max = INT_MAX;
|
2011-05-23 05:30:49 +02:00
|
|
|
params->operspy = operspy;
|
2014-03-03 05:25:47 +01:00
|
|
|
params->created_min = params->topic_min =
|
2011-01-06 06:15:36 +01:00
|
|
|
params->created_max = params->topic_max = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-05-23 05:30:49 +02:00
|
|
|
if (args && !EmptyString(args))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2011-01-06 03:57:27 +01:00
|
|
|
/* Cancel out default minimum. */
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_min = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-01-06 06:15:36 +01:00
|
|
|
for (i = 0; i < 7; i++)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
if ((p = strchr(args, ',')) != NULL)
|
|
|
|
*p++ = '\0';
|
|
|
|
|
|
|
|
if (*args == '<')
|
|
|
|
{
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
|
|
|
{
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_max = atoi(args);
|
|
|
|
if (params->users_max == 0)
|
|
|
|
params->users_max = INT_MAX;
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_max--;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*args == '>')
|
|
|
|
{
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_min = atoi(args) + 1;
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2011-01-06 06:15:36 +01:00
|
|
|
params->users_min = 0;
|
|
|
|
}
|
|
|
|
else if (*args == 'C' || *args == 'c')
|
|
|
|
{
|
|
|
|
args++;
|
|
|
|
if (*args == '>')
|
|
|
|
{
|
|
|
|
/* Creation time earlier than last x minutes. */
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
|
|
|
{
|
|
|
|
params->created_max = rb_current_time() - (60 * atoi(args));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*args == '<')
|
|
|
|
{
|
|
|
|
/* Creation time within last x minutes. */
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
|
|
|
{
|
|
|
|
params->created_min = rb_current_time() - (60 * atoi(args));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*args == 'T' || *args == 't')
|
|
|
|
{
|
|
|
|
args++;
|
|
|
|
if (*args == '>')
|
|
|
|
{
|
|
|
|
/* Topic change time earlier than last x minutes. */
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
|
|
|
{
|
|
|
|
params->topic_max = rb_current_time() - (60 * atoi(args));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*args == '<')
|
|
|
|
{
|
|
|
|
/* Topic change time within last x minutes. */
|
|
|
|
args++;
|
|
|
|
if (IsDigit(*args))
|
|
|
|
{
|
|
|
|
params->topic_min = rb_current_time() - (60 * atoi(args));
|
|
|
|
}
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (EmptyString(p))
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
args = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 06:28:53 +01:00
|
|
|
sendto_one(client_p, form_str(RPL_LISTSTART), me.name, client_p->name);
|
|
|
|
|
|
|
|
RB_DLINK_FOREACH(ptr, global_channel_list.head)
|
|
|
|
{
|
2016-01-10 06:34:52 +01:00
|
|
|
safelist_one_channel(client_p, ptr->data, params);
|
2016-01-10 06:28:53 +01:00
|
|
|
|
|
|
|
if (rb_linebuf_len(&client_p->localClient->buf_sendq) > sendq_limit)
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_TOOMANYMATCHES), me.name, source_p->name, "LIST");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-29 00:44:33 +02:00
|
|
|
/*
|
|
|
|
* list_one_channel()
|
|
|
|
*
|
|
|
|
* inputs - client pointer, channel pointer, whether normally visible
|
|
|
|
* outputs - none
|
|
|
|
* side effects - a channel is listed
|
|
|
|
*/
|
|
|
|
static void list_one_channel(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int visible)
|
|
|
|
{
|
2016-01-14 00:11:16 +01:00
|
|
|
char topic[TOPICLEN + 1];
|
|
|
|
|
|
|
|
if (chptr->topic != NULL)
|
|
|
|
rb_strlcpy(topic, chptr->topic, sizeof topic);
|
|
|
|
else
|
|
|
|
topic[0] = '\0';
|
|
|
|
strip_colour(topic);
|
2012-04-29 00:44:33 +02:00
|
|
|
sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name,
|
|
|
|
visible ? "" : "!",
|
|
|
|
chptr->chname, rb_dlink_list_length(&chptr->members),
|
2016-01-14 00:11:16 +01:00
|
|
|
topic);
|
2012-04-29 00:44:33 +02:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* safelist_sendq_exceeded()
|
|
|
|
*
|
|
|
|
* inputs - pointer to client that needs checking
|
|
|
|
* outputs - 1 if a client has exceeded the reserved
|
|
|
|
* sendq limit, 0 if not
|
|
|
|
* side effects - none
|
|
|
|
*
|
|
|
|
* When safelisting, we only use half of the SendQ at any
|
|
|
|
* given time.
|
|
|
|
*/
|
|
|
|
static int safelist_sendq_exceeded(struct Client *client_p)
|
|
|
|
{
|
2008-04-01 23:12:16 +02:00
|
|
|
if (rb_linebuf_len(&client_p->localClient->buf_sendq) > (get_sendq(client_p) / 2))
|
2007-01-25 07:40:21 +01:00
|
|
|
return YES;
|
|
|
|
else
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* safelist_channel_named()
|
|
|
|
*
|
2011-05-23 05:30:49 +02:00
|
|
|
* inputs - client pointer, channel name, operspy
|
2007-01-25 07:40:21 +01:00
|
|
|
* outputs - none
|
|
|
|
* side effects - a named channel is listed
|
|
|
|
*/
|
2011-05-23 05:30:49 +02:00
|
|
|
static void safelist_channel_named(struct Client *source_p, const char *name, int operspy)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct Channel *chptr;
|
|
|
|
char *p;
|
2011-05-24 00:30:45 +02:00
|
|
|
int visible;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_one(source_p, form_str(RPL_LISTSTART), me.name, source_p->name);
|
|
|
|
|
2011-05-23 05:30:49 +02:00
|
|
|
if ((p = strchr(name, ',')))
|
2007-01-25 07:40:21 +01:00
|
|
|
*p = '\0';
|
|
|
|
|
2011-05-23 05:30:49 +02:00
|
|
|
if (*name == '\0')
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), name);
|
|
|
|
sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-23 05:30:49 +02:00
|
|
|
chptr = find_channel(name);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if (chptr == NULL)
|
|
|
|
{
|
2011-05-23 05:30:49 +02:00
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), name);
|
2007-01-25 07:40:21 +01:00
|
|
|
sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-24 00:30:45 +02:00
|
|
|
visible = !SecretChannel(chptr) || IsMember(source_p, chptr);
|
|
|
|
if (visible || operspy)
|
2012-04-29 00:44:33 +02:00
|
|
|
list_one_channel(source_p, chptr, visible);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* safelist_one_channel()
|
|
|
|
*
|
|
|
|
* inputs - client pointer and channel pointer
|
|
|
|
* outputs - none
|
|
|
|
* side effects - a channel is listed if it meets the
|
|
|
|
* requirements
|
|
|
|
*/
|
2016-01-10 06:34:52 +01:00
|
|
|
static void safelist_one_channel(struct Client *source_p, struct Channel *chptr, struct ListOptions *params)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2011-05-24 00:30:45 +02:00
|
|
|
int visible;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-05-24 00:30:45 +02:00
|
|
|
visible = !SecretChannel(chptr) || IsMember(source_p, chptr);
|
2016-01-10 06:34:52 +01:00
|
|
|
if (!visible && !params->operspy)
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
if ((unsigned int)chptr->members.length < params->users_min
|
|
|
|
|| (unsigned int)chptr->members.length > params->users_max)
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
if (params->topic_min && chptr->topic_time < params->topic_min)
|
2011-01-06 06:15:36 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* If a topic TS is provided, don't show channels without a topic set. */
|
2016-01-10 06:34:52 +01:00
|
|
|
if (params->topic_max && (chptr->topic_time > params->topic_max
|
2011-01-06 06:15:36 +01:00
|
|
|
|| chptr->topic_time == 0))
|
|
|
|
return;
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
if (params->created_min && chptr->channelts < params->created_min)
|
2011-01-06 06:15:36 +01:00
|
|
|
return;
|
|
|
|
|
2016-01-10 06:34:52 +01:00
|
|
|
if (params->created_max && chptr->channelts > params->created_max)
|
2011-01-06 06:15:36 +01:00
|
|
|
return;
|
|
|
|
|
2012-04-29 00:44:33 +02:00
|
|
|
list_one_channel(source_p, chptr, visible);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|