Remove cruft left behind by removed stats_p_hook.
[seven-1.x.git] / modules / m_list_safelist.c
blob1dd3a8e26c272e992407d915ade681acd7d3e1d0
1 /*
2 * charybdis: An advanced ircd.
3 * m_list_safelist.c: Version of /list that uses the safelist code.
5 * Copyright (c) 2006 William Pitcock <nenolod@nenolod.net>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
11 * 1. Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
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.
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.
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.
34 #include "stdinc.h"
35 #include "tools.h"
36 #include "channel.h"
37 #include "client.h"
38 #include "hash.h"
39 #include "irc_string.h"
40 #include "ircd.h"
41 #include "numeric.h"
42 #include "s_conf.h"
43 #include "s_serv.h"
44 #include "send.h"
45 #include "msg.h"
46 #include "parse.h"
47 #include "modules.h"
48 #include "event.h"
50 static dlink_list safelisting_clients = { NULL, NULL, 0 };
52 static int _modinit(void);
53 static void _moddeinit(void);
55 static int m_list(struct Client *, struct Client *, int, const char **);
56 static int mo_list(struct Client *, struct Client *, int, const char **);
58 static void safelist_check_cliexit(hook_data_client_exit * hdata);
59 static void safelist_client_instantiate(struct Client *, struct ListClient *);
60 static void safelist_client_release(struct Client *);
61 static void safelist_one_channel(struct Client *source_p, struct Channel *chptr);
62 static void safelist_iterate_client(struct Client *source_p);
63 static void safelist_iterate_clients(void *unused);
64 static void safelist_channel_named(struct Client *source_p, const char *name);
66 struct Message list_msgtab = {
67 "LIST", 0, 0, 0, MFLG_SLOW,
68 {mg_unreg, {m_list, 0}, mg_ignore, mg_ignore, mg_ignore, {mo_list, 0}}
71 mapi_clist_av1 list_clist[] = { &list_msgtab, NULL };
73 mapi_hfn_list_av1 list_hfnlist[] = {
74 {"client_exit", (hookfn) safelist_check_cliexit},
75 {NULL, NULL}
78 DECLARE_MODULE_AV1(list, _modinit, _moddeinit, list_clist, NULL, list_hfnlist, "$Revision: 26 $");
80 static int _modinit(void)
82 eventAdd("safelist_iterate_clients", safelist_iterate_clients, NULL, 3);
84 return 0;
87 static void _moddeinit(void)
89 eventDelete(safelist_iterate_clients, NULL);
92 static void safelist_check_cliexit(hook_data_client_exit * hdata)
94 /* Cancel the safelist request if we are disconnecting
95 * from the server. That way it doesn't core. :P --nenolod
97 if (MyClient(hdata->target) && hdata->target->localClient->safelist_data != NULL)
99 safelist_client_release(hdata->target);
103 /* m_list()
104 * parv[0] = sender prefix
105 * parv[1] = channel
107 * XXX - With SAFELIST, do we really need to continue pacing?
108 * In theory, the server cannot be lagged by this. --nenolod
110 static int m_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
112 static time_t last_used = 0L;
114 if (source_p->localClient->safelist_data != NULL)
116 sendto_one_notice(source_p, ":/LIST aborted");
117 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
118 safelist_client_release(source_p);
119 return 0;
122 if (parc < 2 || !IsChannelName(parv[1]))
124 /* pace this due to the sheer traffic involved */
125 if (((last_used + ConfigFileEntry.pace_wait) > CurrentTime))
127 sendto_one(source_p, form_str(RPL_LOAD2HI), me.name, source_p->name, "LIST");
128 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
129 return 0;
131 else
132 last_used = CurrentTime;
135 return mo_list(client_p, source_p, parc, parv);
138 /* mo_list()
139 * parv[0] = sender prefix
140 * parv[1] = channel
142 static int mo_list(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
144 struct ListClient params;
145 char *p, *args;
146 int i;
148 if (source_p->localClient->safelist_data != NULL)
150 sendto_one_notice(source_p, ":/LIST aborted");
151 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
152 safelist_client_release(source_p);
153 return 0;
156 /* XXX rather arbitrary -- jilles */
157 params.users_min = 3;
158 params.users_max = INT_MAX;
160 if (parc > 1 && parv[1] != NULL && !IsChannelName(parv[1]))
162 args = LOCAL_COPY(parv[1]);
163 /* Make any specification cancel out defaults */
164 if (*args == '<')
165 params.users_min = 0;
167 for (i = 0; i < 2; i++)
169 if ((p = strchr(args, ',')) != NULL)
170 *p++ = '\0';
172 if (*args == '<')
174 args++;
175 if (IsDigit(*args))
177 params.users_max = atoi(args);
178 if (params.users_max == 0)
179 params.users_max = INT_MAX;
180 else
181 params.users_max--;
183 else
184 params.users_max = INT_MAX;
186 else if (*args == '>')
188 args++;
189 if (IsDigit(*args))
190 params.users_min = atoi(args) + 1;
191 else
192 params.users_min = 0;
195 if (EmptyString(p))
196 break;
197 else
198 args = p;
201 else if (parc > 1 && IsChannelName(parv[1]))
203 safelist_channel_named(source_p, parv[1]);
204 return 0;
207 safelist_client_instantiate(source_p, &params);
209 return 0;
213 * safelist_sendq_exceeded()
215 * inputs - pointer to client that needs checking
216 * outputs - 1 if a client has exceeded the reserved
217 * sendq limit, 0 if not
218 * side effects - none
220 * When safelisting, we only use half of the SendQ at any
221 * given time.
223 static int safelist_sendq_exceeded(struct Client *client_p)
225 if (linebuf_len(&client_p->localClient->buf_sendq) > (get_sendq(client_p) / 2))
226 return YES;
227 else
228 return NO;
232 * safelist_client_instantiate()
234 * inputs - pointer to Client to be listed,
235 * struct ListClient to copy for params
236 * outputs - none
237 * side effects - the safelist process begins for a
238 * client.
240 * Please do not ever call this on a non-local client.
241 * If you do, you will get SIGSEGV.
243 static void safelist_client_instantiate(struct Client *client_p, struct ListClient *params)
245 struct ListClient *self;
247 s_assert(MyClient(client_p));
248 s_assert(params != NULL);
250 self = MyMalloc(sizeof(struct ListClient));
252 self->hash_indice = 0;
253 self->users_min = params->users_min;
254 self->users_max = params->users_max;
256 client_p->localClient->safelist_data = self;
258 sendto_one(client_p, form_str(RPL_LISTSTART), me.name, client_p->name);
260 /* pop the client onto the queue for processing */
261 dlinkAddAlloc(client_p, &safelisting_clients);
263 /* give the user some initial data to work with */
264 safelist_iterate_client(client_p);
268 * safelist_client_release()
270 * inputs - pointer to Client being listed on
271 * outputs - none
272 * side effects - the client is no longer being
273 * listed
275 * Please do not ever call this on a non-local client.
276 * If you do, you will get SIGSEGV.
278 static void safelist_client_release(struct Client *client_p)
280 s_assert(MyClient(client_p));
282 dlinkFindDestroy(client_p, &safelisting_clients);
284 MyFree(client_p->localClient->safelist_data);
286 client_p->localClient->safelist_data = NULL;
288 sendto_one(client_p, form_str(RPL_LISTEND), me.name, client_p->name);
292 * safelist_channel_named()
294 * inputs - client pointer, channel name
295 * outputs - none
296 * side effects - a named channel is listed
298 static void safelist_channel_named(struct Client *source_p, const char *name)
300 struct Channel *chptr;
301 char *p;
302 char *n = LOCAL_COPY(name);
304 sendto_one(source_p, form_str(RPL_LISTSTART), me.name, source_p->name);
306 if ((p = strchr(n, ',')))
307 *p = '\0';
309 if (*n == '\0')
311 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), name);
312 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
313 return;
316 chptr = find_channel(n);
318 if (chptr == NULL)
320 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), n);
321 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
322 return;
325 if (ShowChannel(source_p, chptr))
326 sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name, chptr->chname,
327 dlink_list_length(&chptr->members),
328 chptr->topic == NULL ? "" : chptr->topic);
330 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
331 return;
335 * safelist_one_channel()
337 * inputs - client pointer and channel pointer
338 * outputs - none
339 * side effects - a channel is listed if it meets the
340 * requirements
342 static void safelist_one_channel(struct Client *source_p, struct Channel *chptr)
344 struct ListClient *safelist_data = source_p->localClient->safelist_data;
346 if (SecretChannel(chptr) && !IsMember(source_p, chptr))
347 return;
349 if ((unsigned int)chptr->members.length < safelist_data->users_min
350 || (unsigned int)chptr->members.length > safelist_data->users_max)
351 return;
353 sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name, chptr->chname,
354 chptr->members.length, chptr->topic == NULL ? "" : chptr->topic);
358 * safelist_iterate_client()
360 * inputs - client pointer
361 * outputs - none
362 * side effects - the client's sendq is filled up again
364 static void safelist_iterate_client(struct Client *source_p)
366 dlink_node *ptr;
367 int iter;
369 for (iter = source_p->localClient->safelist_data->hash_indice; iter < CH_MAX; iter++)
371 if (safelist_sendq_exceeded(source_p->from) == YES)
373 source_p->localClient->safelist_data->hash_indice = iter;
374 return;
377 DLINK_FOREACH(ptr, channelTable[iter].head)
378 safelist_one_channel(source_p, (struct Channel *) ptr->data);
381 safelist_client_release(source_p);
384 static void safelist_iterate_clients(void *unused)
386 dlink_node *n, *n2;
388 DLINK_FOREACH_SAFE(n, n2, safelisting_clients.head)
389 safelist_iterate_client((struct Client *)n->data);