]> jfr.im git - solanum.git/blame - modules/m_list.c
starttls: Update for client fd hash removal.
[solanum.git] / modules / m_list.c
CommitLineData
212380e3
AC
1/*
2 * charybdis: An advanced ircd.
3 * m_list_safelist.c: Version of /list that uses the safelist code.
4 *
5 * Copyright (c) 2006 William Pitcock <nenolod@nenolod.net>
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * 1. Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 *
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * 3. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
607cf49f 33 * $Id: m_list.c 3372 2007-04-03 10:18:07Z nenolod $
212380e3
AC
34 */
35
36#include "stdinc.h"
212380e3
AC
37#include "channel.h"
38#include "client.h"
39#include "hash.h"
4562c604 40#include "match.h"
212380e3
AC
41#include "ircd.h"
42#include "numeric.h"
43#include "s_conf.h"
bb55ebeb 44#include "s_newconf.h"
212380e3 45#include "s_serv.h"
4c3f066a 46#include "supported.h"
212380e3
AC
47#include "send.h"
48#include "msg.h"
49#include "parse.h"
50#include "modules.h"
69e7a2cd 51#include "inline/stringops.h"
77d3d2db
KB
52#include "s_assert.h"
53#include "logger.h"
212380e3 54
5b96d9a6 55static rb_dlink_list safelisting_clients = { NULL, NULL, 0 };
212380e3
AC
56
57static int _modinit(void);
58static void _moddeinit(void);
59
60static int m_list(struct Client *, struct Client *, int, const char **);
61static int mo_list(struct Client *, struct Client *, int, const char **);
62
69e7a2cd
JT
63static void list_one_channel(struct Client *source_p, struct Channel *chptr, int visible);
64
212380e3
AC
65static void safelist_check_cliexit(hook_data_client_exit * hdata);
66static void safelist_client_instantiate(struct Client *, struct ListClient *);
67static void safelist_client_release(struct Client *);
68static void safelist_one_channel(struct Client *source_p, struct Channel *chptr);
69static void safelist_iterate_client(struct Client *source_p);
70static void safelist_iterate_clients(void *unused);
bf0a4592 71static void safelist_channel_named(struct Client *source_p, const char *name, int operspy);
212380e3
AC
72
73struct Message list_msgtab = {
74 "LIST", 0, 0, 0, MFLG_SLOW,
75 {mg_unreg, {m_list, 0}, mg_ignore, mg_ignore, mg_ignore, {mo_list, 0}}
76};
77
78mapi_clist_av1 list_clist[] = { &list_msgtab, NULL };
79
80mapi_hfn_list_av1 list_hfnlist[] = {
81 {"client_exit", (hookfn) safelist_check_cliexit},
82 {NULL, NULL}
83};
84
607cf49f 85DECLARE_MODULE_AV1(list, _modinit, _moddeinit, list_clist, NULL, list_hfnlist, "$Revision: 3372 $");
212380e3 86
75d60088
AC
87static struct ev_entry *iterate_clients_ev = NULL;
88
212380e3
AC
89static int _modinit(void)
90{
75d60088 91 iterate_clients_ev = rb_event_add("safelist_iterate_clients", safelist_iterate_clients, NULL, 3);
212380e3 92
4c3f066a
KB
93 /* ELIST=[tokens]:
94 *
95 * M = mask search
96 * N = !mask search
97 * U = user count search (< >)
98 * C = creation time search (C> C<)
99 * T = topic search (T> T<)
100 */
101 add_isupport("SAFELIST", isupport_string, "");
102 add_isupport("ELIST", isupport_string, "CTU");
103
212380e3
AC
104 return 0;
105}
106
107static void _moddeinit(void)
108{
75d60088 109 rb_event_delete(iterate_clients_ev);
4c3f066a
KB
110
111 delete_isupport("SAFELIST");
112 delete_isupport("ELIST");
212380e3
AC
113}
114
115static void safelist_check_cliexit(hook_data_client_exit * hdata)
116{
117 /* Cancel the safelist request if we are disconnecting
118 * from the server. That way it doesn't core. :P --nenolod
119 */
120 if (MyClient(hdata->target) && hdata->target->localClient->safelist_data != NULL)
121 {
122 safelist_client_release(hdata->target);
123 }
124}
125
126/* m_list()
212380e3
AC
127 * parv[1] = channel
128 *
129 * XXX - With SAFELIST, do we really need to continue pacing?
130 * In theory, the server cannot be lagged by this. --nenolod
131 */
132static int m_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
133{
134 static time_t last_used = 0L;
135
136 if (source_p->localClient->safelist_data != NULL)
137 {
138 sendto_one_notice(source_p, ":/LIST aborted");
212380e3
AC
139 safelist_client_release(source_p);
140 return 0;
141 }
142
143 if (parc < 2 || !IsChannelName(parv[1]))
144 {
145 /* pace this due to the sheer traffic involved */
e3354945 146 if (((last_used + ConfigFileEntry.pace_wait) > rb_current_time()))
212380e3
AC
147 {
148 sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, source_p->name, "LIST");
149 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
150 return 0;
151 }
152 else
e3354945 153 last_used = rb_current_time();
212380e3
AC
154 }
155
156 return mo_list(client_p, source_p, parc, parv);
157}
158
159/* mo_list()
212380e3
AC
160 * parv[1] = channel
161 */
162static int mo_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
163{
096570b9 164 struct ListClient *params;
bf0a4592
KB
165 char *p;
166 char *args = NULL;
212380e3 167 int i;
bf0a4592 168 int operspy = 0;
212380e3
AC
169
170 if (source_p->localClient->safelist_data != NULL)
171 {
172 sendto_one_notice(source_p, ":/LIST aborted");
212380e3
AC
173 safelist_client_release(source_p);
174 return 0;
175 }
176
bf0a4592
KB
177 if (parc > 1)
178 {
179 args = LOCAL_COPY(parv[1]);
180 }
181
182 if (args && *args == '!' && IsOperSpy(source_p))
183 {
184 args++;
185 report_operspy(source_p, "LIST", args);
186 operspy = 1;
187 }
188
096570b9 189 /* Single channel. */
bf0a4592 190 if (args && IsChannelName(args))
096570b9 191 {
bf0a4592 192 safelist_channel_named(source_p, args, operspy);
096570b9
KB
193 return 0;
194 }
195
196 /* Multiple channels, possibly with parameters. */
197 params = rb_malloc(sizeof(struct ListClient));
198
212380e3 199 /* XXX rather arbitrary -- jilles */
096570b9
KB
200 params->users_min = 3;
201 params->users_max = INT_MAX;
bf0a4592 202 params->operspy = operspy;
55abcbb2 203 params->created_min = params->topic_min =
096570b9 204 params->created_max = params->topic_max = 0;
212380e3 205
bf0a4592 206 if (args && !EmptyString(args))
212380e3 207 {
bb55ebeb 208 /* Cancel out default minimum. */
096570b9 209 params->users_min = 0;
212380e3 210
096570b9 211 for (i = 0; i < 7; i++)
212380e3
AC
212 {
213 if ((p = strchr(args, ',')) != NULL)
214 *p++ = '\0';
215
216 if (*args == '<')
217 {
218 args++;
219 if (IsDigit(*args))
220 {
096570b9
KB
221 params->users_max = atoi(args);
222 if (params->users_max == 0)
223 params->users_max = INT_MAX;
212380e3 224 else
096570b9 225 params->users_max--;
212380e3 226 }
212380e3
AC
227 }
228 else if (*args == '>')
229 {
230 args++;
231 if (IsDigit(*args))
096570b9 232 params->users_min = atoi(args) + 1;
212380e3 233 else
096570b9
KB
234 params->users_min = 0;
235 }
236 else if (*args == 'C' || *args == 'c')
237 {
238 args++;
239 if (*args == '>')
240 {
241 /* Creation time earlier than last x minutes. */
242 args++;
243 if (IsDigit(*args))
244 {
245 params->created_max = rb_current_time() - (60 * atoi(args));
246 }
247 }
248 else if (*args == '<')
249 {
250 /* Creation time within last x minutes. */
251 args++;
252 if (IsDigit(*args))
253 {
254 params->created_min = rb_current_time() - (60 * atoi(args));
255 }
256 }
257 }
258 else if (*args == 'T' || *args == 't')
259 {
260 args++;
261 if (*args == '>')
262 {
263 /* Topic change time earlier than last x minutes. */
264 args++;
265 if (IsDigit(*args))
266 {
267 params->topic_max = rb_current_time() - (60 * atoi(args));
268 }
269 }
270 else if (*args == '<')
271 {
272 /* Topic change time within last x minutes. */
273 args++;
274 if (IsDigit(*args))
275 {
276 params->topic_min = rb_current_time() - (60 * atoi(args));
277 }
278 }
212380e3
AC
279 }
280
281 if (EmptyString(p))
282 break;
283 else
284 args = p;
285 }
286 }
212380e3 287
096570b9 288 safelist_client_instantiate(source_p, params);
212380e3
AC
289
290 return 0;
291}
292
69e7a2cd
JT
293/*
294 * list_one_channel()
295 *
296 * inputs - client pointer, channel pointer, whether normally visible
297 * outputs - none
298 * side effects - a channel is listed
299 */
300static void list_one_channel(struct Client *source_p, struct Channel *chptr,
301 int visible)
302{
303 char topic[TOPICLEN + 1];
304
305 if (chptr->topic != NULL)
306 rb_strlcpy(topic, chptr->topic, sizeof topic);
307 else
308 topic[0] = '\0';
309 strip_colour(topic);
310 sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name,
311 visible ? "" : "!",
312 chptr->chname, rb_dlink_list_length(&chptr->members),
313 topic);
314}
315
212380e3
AC
316/*
317 * safelist_sendq_exceeded()
318 *
319 * inputs - pointer to client that needs checking
320 * outputs - 1 if a client has exceeded the reserved
321 * sendq limit, 0 if not
322 * side effects - none
323 *
324 * When safelisting, we only use half of the SendQ at any
325 * given time.
326 */
327static int safelist_sendq_exceeded(struct Client *client_p)
328{
75d60088 329 if (rb_linebuf_len(&client_p->localClient->buf_sendq) > (get_sendq(client_p) / 2))
212380e3
AC
330 return YES;
331 else
332 return NO;
333}
334
335/*
336 * safelist_client_instantiate()
337 *
338 * inputs - pointer to Client to be listed,
096570b9 339 * pointer to ListClient for params
212380e3
AC
340 * outputs - none
341 * side effects - the safelist process begins for a
342 * client.
343 *
344 * Please do not ever call this on a non-local client.
345 * If you do, you will get SIGSEGV.
346 */
347static void safelist_client_instantiate(struct Client *client_p, struct ListClient *params)
348{
212380e3
AC
349 s_assert(MyClient(client_p));
350 s_assert(params != NULL);
351
096570b9 352 client_p->localClient->safelist_data = params;
212380e3
AC
353
354 sendto_one(client_p, form_str(RPL_LISTSTART), me.name, client_p->name);
355
356 /* pop the client onto the queue for processing */
75d60088 357 rb_dlinkAddAlloc(client_p, &safelisting_clients);
212380e3
AC
358
359 /* give the user some initial data to work with */
360 safelist_iterate_client(client_p);
361}
362
363/*
364 * safelist_client_release()
365 *
366 * inputs - pointer to Client being listed on
367 * outputs - none
368 * side effects - the client is no longer being
369 * listed
370 *
371 * Please do not ever call this on a non-local client.
372 * If you do, you will get SIGSEGV.
373 */
374static void safelist_client_release(struct Client *client_p)
375{
376 s_assert(MyClient(client_p));
377
555ac41f 378 rb_dlinkFindDestroy(client_p, &safelisting_clients);
212380e3 379
637c4932 380 rb_free(client_p->localClient->safelist_data);
212380e3
AC
381
382 client_p->localClient->safelist_data = NULL;
383
384 sendto_one(client_p, form_str(RPL_LISTEND), me.name, client_p->name);
385}
386
387/*
388 * safelist_channel_named()
389 *
bf0a4592 390 * inputs - client pointer, channel name, operspy
212380e3
AC
391 * outputs - none
392 * side effects - a named channel is listed
393 */
bf0a4592 394static void safelist_channel_named(struct Client *source_p, const char *name, int operspy)
212380e3
AC
395{
396 struct Channel *chptr;
397 char *p;
a4eeda89 398 int visible;
212380e3
AC
399
400 sendto_one(source_p, form_str(RPL_LISTSTART), me.name, source_p->name);
401
bf0a4592 402 if ((p = strchr(name, ',')))
212380e3
AC
403 *p = '\0';
404
bf0a4592 405 if (*name == '\0')
212380e3
AC
406 {
407 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), name);
408 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
409 return;
410 }
411
bf0a4592 412 chptr = find_channel(name);
212380e3
AC
413
414 if (chptr == NULL)
415 {
bf0a4592 416 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), name);
212380e3
AC
417 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
418 return;
419 }
420
a4eeda89
JT
421 visible = !SecretChannel(chptr) || IsMember(source_p, chptr);
422 if (visible || operspy)
69e7a2cd 423 list_one_channel(source_p, chptr, visible);
212380e3
AC
424
425 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
426 return;
427}
428
429/*
430 * safelist_one_channel()
431 *
432 * inputs - client pointer and channel pointer
433 * outputs - none
434 * side effects - a channel is listed if it meets the
435 * requirements
436 */
437static void safelist_one_channel(struct Client *source_p, struct Channel *chptr)
438{
439 struct ListClient *safelist_data = source_p->localClient->safelist_data;
a4eeda89 440 int visible;
212380e3 441
a4eeda89
JT
442 visible = !SecretChannel(chptr) || IsMember(source_p, chptr);
443 if (!visible && !safelist_data->operspy)
212380e3
AC
444 return;
445
446 if ((unsigned int)chptr->members.length < safelist_data->users_min
447 || (unsigned int)chptr->members.length > safelist_data->users_max)
448 return;
449
096570b9
KB
450 if (safelist_data->topic_min && chptr->topic_time < safelist_data->topic_min)
451 return;
452
453 /* If a topic TS is provided, don't show channels without a topic set. */
454 if (safelist_data->topic_max && (chptr->topic_time > safelist_data->topic_max
455 || chptr->topic_time == 0))
456 return;
457
458 if (safelist_data->created_min && chptr->channelts < safelist_data->created_min)
459 return;
460
461 if (safelist_data->created_max && chptr->channelts > safelist_data->created_max)
462 return;
463
69e7a2cd 464 list_one_channel(source_p, chptr, visible);
212380e3
AC
465}
466
467/*
468 * safelist_iterate_client()
469 *
470 * inputs - client pointer
471 * outputs - none
472 * side effects - the client's sendq is filled up again
473 */
474static void safelist_iterate_client(struct Client *source_p)
475{
5b96d9a6 476 rb_dlink_node *ptr;
212380e3
AC
477 int iter;
478
479 for (iter = source_p->localClient->safelist_data->hash_indice; iter < CH_MAX; iter++)
480 {
481 if (safelist_sendq_exceeded(source_p->from) == YES)
482 {
483 source_p->localClient->safelist_data->hash_indice = iter;
484 return;
485 }
486
55abcbb2 487 RB_DLINK_FOREACH(ptr, channelTable[iter].head)
212380e3
AC
488 safelist_one_channel(source_p, (struct Channel *) ptr->data);
489 }
490
491 safelist_client_release(source_p);
492}
493
494static void safelist_iterate_clients(void *unused)
495{
5b96d9a6 496 rb_dlink_node *n, *n2;
212380e3 497
55abcbb2 498 RB_DLINK_FOREACH_SAFE(n, n2, safelisting_clients.head)
212380e3
AC
499 safelist_iterate_client((struct Client *)n->data);
500}