ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/hash.c
Revision: 6385
Committed: Fri Aug 21 18:30:29 2015 UTC (10 years ago) by michael
Content type: text/x-csrc
File size: 19945 byte(s)
Log Message:
- Use an embedded list node for the ListTask struct

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2916 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 5347 * Copyright (c) 1997-2015 ircd-hybrid development team
5 adx 30 *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18 michael 4565 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 adx 30 * USA
20     */
21    
22 michael 2916 /*! \file hash.c
23     * \brief Hash table management.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28 michael 1011 #include "list.h"
29 michael 1309 #include "conf.h"
30 adx 30 #include "channel.h"
31     #include "channel_mode.h"
32     #include "client.h"
33     #include "modules.h"
34     #include "hash.h"
35 michael 6161 #include "id.h"
36 adx 30 #include "resv.h"
37 michael 982 #include "rng_mt.h"
38 adx 30 #include "userhost.h"
39     #include "irc_string.h"
40     #include "ircd.h"
41     #include "numeric.h"
42     #include "send.h"
43     #include "memory.h"
44 michael 1654 #include "mempool.h"
45 adx 30 #include "dbuf.h"
46 michael 3347 #include "user.h"
47 adx 30
48    
49 michael 5460 static mp_pool_t *userhost_pool;
50     static mp_pool_t *namehost_pool;
51 adx 30
52 michael 5460 static unsigned int hashf_xor_key;
53 adx 30
54     /* The actual hash tables, They MUST be of the same HASHSIZE, variable
55     * size tables could be supported but the rehash routine should also
56 michael 2916 * rebuild the transformation maps, I kept the tables of equal size
57 adx 30 * so that I can use one hash function.
58     */
59     static struct Client *idTable[HASHSIZE];
60     static struct Client *clientTable[HASHSIZE];
61     static struct Channel *channelTable[HASHSIZE];
62     static struct UserHost *userhostTable[HASHSIZE];
63    
64    
65     /* init_hash()
66     *
67     * inputs - NONE
68     * output - NONE
69     * side effects - Initialize the maps used by hash
70     * functions and clear the tables
71     */
72     void
73 michael 1798 hash_init(void)
74 adx 30 {
75 michael 1964 userhost_pool = mp_pool_new(sizeof(struct UserHost), MP_CHUNK_SIZE_USERHOST);
76     namehost_pool = mp_pool_new(sizeof(struct NameHost), MP_CHUNK_SIZE_NAMEHOST);
77 adx 30
78 michael 982 hashf_xor_key = genrand_int32() % 256; /* better than nothing --adx */
79 adx 30 }
80    
81     /*
82     * New hash function based on the Fowler/Noll/Vo (FNV) algorithm from
83     * http://www.isthe.com/chongo/tech/comp/fnv/
84     *
85     * Here, we use the FNV-1 method, which gives slightly better results
86     * than FNV-1a. -Michael
87     */
88     unsigned int
89     strhash(const char *name)
90     {
91     const unsigned char *p = (const unsigned char *)name;
92     unsigned int hval = FNV1_32_INIT;
93    
94 michael 1826 if (EmptyString(p))
95 adx 30 return 0;
96 michael 4890
97     for (; *p; ++p)
98 adx 30 {
99     hval += (hval << 1) + (hval << 4) + (hval << 7) +
100     (hval << 8) + (hval << 24);
101 michael 982 hval ^= (ToLower(*p) ^ hashf_xor_key);
102 adx 30 }
103    
104 michael 982 return (hval >> FNV1_32_BITS) ^ (hval & ((1 << FNV1_32_BITS) - 1));
105 adx 30 }
106    
107     /************************** Externally visible functions ********************/
108    
109     /* Optimization note: in these functions I supposed that the CSE optimization
110     * (Common Subexpression Elimination) does its work decently, this means that
111     * I avoided introducing new variables to do the work myself and I did let
112     * the optimizer play with more free registers, actual tests proved this
113     * solution to be faster than doing things like tmp2=tmp->hnext... and then
114     * use tmp2 myself which would have given less freedom to the optimizer.
115     */
116    
117     /* hash_add_client()
118     *
119     * inputs - pointer to client
120     * output - NONE
121     * side effects - Adds a client's name in the proper hash linked
122     * list, can't fail, client_p must have a non-null
123     * name or expect a coredump, the name is infact
124     * taken from client_p->name
125     */
126     void
127     hash_add_client(struct Client *client_p)
128     {
129 michael 4977 const unsigned int hashv = strhash(client_p->name);
130 adx 30
131     client_p->hnext = clientTable[hashv];
132     clientTable[hashv] = client_p;
133     }
134    
135     /* hash_add_channel()
136     *
137     * inputs - pointer to channel
138     * output - NONE
139     * side effects - Adds a channel's name in the proper hash linked
140     * list, can't fail. chptr must have a non-null name
141     * or expect a coredump. As before the name is taken
142     * from chptr->name, we do hash its entire lenght
143     * since this proved to be statistically faster
144     */
145     void
146     hash_add_channel(struct Channel *chptr)
147     {
148 michael 4977 const unsigned int hashv = strhash(chptr->name);
149 adx 30
150     chptr->hnextch = channelTable[hashv];
151     channelTable[hashv] = chptr;
152     }
153    
154     void
155     hash_add_userhost(struct UserHost *userhost)
156     {
157 michael 4977 const unsigned int hashv = strhash(userhost->host);
158 adx 30
159     userhost->next = userhostTable[hashv];
160     userhostTable[hashv] = userhost;
161     }
162    
163     void
164     hash_add_id(struct Client *client_p)
165     {
166 michael 4977 const unsigned int hashv = strhash(client_p->id);
167 adx 30
168     client_p->idhnext = idTable[hashv];
169     idTable[hashv] = client_p;
170     }
171    
172     /* hash_del_id()
173     *
174     * inputs - pointer to client
175     * output - NONE
176     * side effects - Removes an ID from the hash linked list
177     */
178     void
179     hash_del_id(struct Client *client_p)
180     {
181 michael 4977 const unsigned int hashv = strhash(client_p->id);
182 adx 30 struct Client *tmp = idTable[hashv];
183    
184 michael 3241 if (tmp)
185 adx 30 {
186     if (tmp == client_p)
187     {
188     idTable[hashv] = client_p->idhnext;
189     client_p->idhnext = client_p;
190     }
191     else
192     {
193     while (tmp->idhnext != client_p)
194     if ((tmp = tmp->idhnext) == NULL)
195     return;
196    
197     tmp->idhnext = tmp->idhnext->idhnext;
198     client_p->idhnext = client_p;
199     }
200     }
201     }
202    
203     /* hash_del_client()
204     *
205     * inputs - pointer to client
206     * output - NONE
207     * side effects - Removes a Client's name from the hash linked list
208     */
209     void
210     hash_del_client(struct Client *client_p)
211     {
212 michael 4977 const unsigned int hashv = strhash(client_p->name);
213 adx 30 struct Client *tmp = clientTable[hashv];
214    
215 michael 3241 if (tmp)
216 adx 30 {
217     if (tmp == client_p)
218     {
219     clientTable[hashv] = client_p->hnext;
220     client_p->hnext = client_p;
221     }
222     else
223     {
224     while (tmp->hnext != client_p)
225     if ((tmp = tmp->hnext) == NULL)
226     return;
227    
228     tmp->hnext = tmp->hnext->hnext;
229     client_p->hnext = client_p;
230     }
231     }
232     }
233    
234     /* hash_del_userhost()
235     *
236     * inputs - pointer to userhost
237     * output - NONE
238     * side effects - Removes a userhost from the hash linked list
239     */
240     void
241     hash_del_userhost(struct UserHost *userhost)
242     {
243 michael 4977 const unsigned int hashv = strhash(userhost->host);
244 adx 30 struct UserHost *tmp = userhostTable[hashv];
245    
246 michael 3241 if (tmp)
247 adx 30 {
248     if (tmp == userhost)
249     {
250     userhostTable[hashv] = userhost->next;
251     userhost->next = userhost;
252     }
253     else
254     {
255     while (tmp->next != userhost)
256     if ((tmp = tmp->next) == NULL)
257     return;
258    
259     tmp->next = tmp->next->next;
260     userhost->next = userhost;
261     }
262     }
263     }
264    
265     /* hash_del_channel()
266     *
267     * inputs - pointer to client
268     * output - NONE
269     * side effects - Removes the channel's name from the corresponding
270     * hash linked list
271     */
272     void
273     hash_del_channel(struct Channel *chptr)
274     {
275 michael 4977 const unsigned int hashv = strhash(chptr->name);
276 adx 30 struct Channel *tmp = channelTable[hashv];
277    
278 michael 3241 if (tmp)
279 adx 30 {
280     if (tmp == chptr)
281     {
282     channelTable[hashv] = chptr->hnextch;
283     chptr->hnextch = chptr;
284     }
285     else
286     {
287     while (tmp->hnextch != chptr)
288     if ((tmp = tmp->hnextch) == NULL)
289     return;
290    
291     tmp->hnextch = tmp->hnextch->hnextch;
292     chptr->hnextch = chptr;
293     }
294     }
295     }
296    
297 michael 1169 /* hash_find_client()
298 adx 30 *
299     * inputs - pointer to name
300     * output - NONE
301     * side effects - New semantics: finds a client whose name is 'name'
302     * if can't find one returns NULL. If it finds one moves
303     * it to the top of the list and returns it.
304     */
305     struct Client *
306 michael 1169 hash_find_client(const char *name)
307 adx 30 {
308 michael 4977 const unsigned int hashv = strhash(name);
309 adx 30 struct Client *client_p;
310    
311 michael 3241 if ((client_p = clientTable[hashv]))
312 adx 30 {
313     if (irccmp(name, client_p->name))
314     {
315     struct Client *prev;
316    
317 michael 3241 while (prev = client_p, (client_p = client_p->hnext))
318 adx 30 {
319     if (!irccmp(name, client_p->name))
320     {
321     prev->hnext = client_p->hnext;
322     client_p->hnext = clientTable[hashv];
323     clientTable[hashv] = client_p;
324     break;
325     }
326     }
327     }
328     }
329    
330     return client_p;
331     }
332    
333     struct Client *
334     hash_find_id(const char *name)
335     {
336 michael 4977 const unsigned int hashv = strhash(name);
337 adx 30 struct Client *client_p;
338    
339 michael 3242 if ((client_p = idTable[hashv]))
340 adx 30 {
341 michael 880 if (strcmp(name, client_p->id))
342 adx 30 {
343     struct Client *prev;
344    
345 michael 3242 while (prev = client_p, (client_p = client_p->idhnext))
346 adx 30 {
347 michael 880 if (!strcmp(name, client_p->id))
348 adx 30 {
349     prev->idhnext = client_p->idhnext;
350     client_p->idhnext = idTable[hashv];
351     idTable[hashv] = client_p;
352     break;
353     }
354     }
355     }
356     }
357    
358     return client_p;
359     }
360    
361     struct Client *
362 michael 1169 hash_find_server(const char *name)
363 adx 30 {
364 michael 4977 const unsigned int hashv = strhash(name);
365 adx 30 struct Client *client_p = NULL;
366    
367     if (IsDigit(*name) && strlen(name) == IRC_MAXSID)
368 michael 1397 return hash_find_id(name);
369 adx 30
370 michael 3242 if ((client_p = clientTable[hashv]))
371 adx 30 {
372     if ((!IsServer(client_p) && !IsMe(client_p)) ||
373     irccmp(name, client_p->name))
374     {
375     struct Client *prev;
376    
377 michael 3242 while (prev = client_p, (client_p = client_p->hnext))
378 adx 30 {
379     if ((IsServer(client_p) || IsMe(client_p)) &&
380     !irccmp(name, client_p->name))
381     {
382     prev->hnext = client_p->hnext;
383     client_p->hnext = clientTable[hashv];
384     clientTable[hashv] = client_p;
385     break;
386     }
387     }
388     }
389     }
390    
391 michael 1118 return client_p;
392 adx 30 }
393    
394     /* hash_find_channel()
395     *
396     * inputs - pointer to name
397     * output - NONE
398 michael 2916 * side effects - New semantics: finds a channel whose name is 'name',
399 adx 30 * if can't find one returns NULL, if can find it moves
400     * it to the top of the list and returns it.
401     */
402     struct Channel *
403     hash_find_channel(const char *name)
404     {
405 michael 4977 const unsigned int hashv = strhash(name);
406 adx 30 struct Channel *chptr = NULL;
407    
408 michael 3242 if ((chptr = channelTable[hashv]))
409 adx 30 {
410 michael 4618 if (irccmp(name, chptr->name))
411 adx 30 {
412     struct Channel *prev;
413    
414 michael 3242 while (prev = chptr, (chptr = chptr->hnextch))
415 adx 30 {
416 michael 4618 if (!irccmp(name, chptr->name))
417 adx 30 {
418     prev->hnextch = chptr->hnextch;
419     chptr->hnextch = channelTable[hashv];
420     channelTable[hashv] = chptr;
421     break;
422     }
423     }
424     }
425     }
426    
427     return chptr;
428     }
429    
430     /* hash_get_bucket(int type, unsigned int hashv)
431     *
432     * inputs - hash value (must be between 0 and HASHSIZE - 1)
433     * output - NONE
434     * returns - pointer to first channel in channelTable[hashv]
435     * if that exists;
436     * NULL if there is no channel in that place;
437     * NULL if hashv is an invalid number.
438     * side effects - NONE
439     */
440     void *
441     hash_get_bucket(int type, unsigned int hashv)
442     {
443     assert(hashv < HASHSIZE);
444 michael 4977
445 adx 30 if (hashv >= HASHSIZE)
446     return NULL;
447    
448     switch (type)
449     {
450     case HASH_TYPE_ID:
451     return idTable[hashv];
452     break;
453     case HASH_TYPE_CHANNEL:
454     return channelTable[hashv];
455     break;
456     case HASH_TYPE_CLIENT:
457     return clientTable[hashv];
458     break;
459     case HASH_TYPE_USERHOST:
460     return userhostTable[hashv];
461     break;
462     default:
463     assert(0);
464     }
465    
466     return NULL;
467     }
468    
469     struct UserHost *
470     hash_find_userhost(const char *host)
471     {
472 michael 4977 const unsigned int hashv = strhash(host);
473 adx 30 struct UserHost *userhost;
474    
475     if ((userhost = userhostTable[hashv]))
476     {
477     if (irccmp(host, userhost->host))
478     {
479     struct UserHost *prev;
480    
481 michael 3242 while (prev = userhost, (userhost = userhost->next))
482 adx 30 {
483     if (!irccmp(host, userhost->host))
484     {
485     prev->next = userhost->next;
486     userhost->next = userhostTable[hashv];
487     userhostTable[hashv] = userhost;
488     break;
489     }
490     }
491     }
492     }
493    
494     return userhost;
495     }
496    
497     /* count_user_host()
498     *
499     * inputs - user name
500     * - hostname
501     * - int flag 1 if global, 0 if local
502     * - pointer to where global count should go
503     * - pointer to where local count should go
504     * - pointer to where identd count should go (local clients only)
505     * output - none
506     * side effects -
507     */
508     void
509 michael 1644 count_user_host(const char *user, const char *host, unsigned int *global_p,
510     unsigned int *local_p, unsigned int *icount_p)
511 adx 30 {
512 michael 4815 dlink_node *node = NULL;
513 adx 30 struct UserHost *found_userhost;
514    
515     if ((found_userhost = hash_find_userhost(host)) == NULL)
516     return;
517    
518 michael 4815 DLINK_FOREACH(node, found_userhost->list.head)
519 adx 30 {
520 michael 5545 struct NameHost *nameh = node->data;
521 adx 30
522     if (!irccmp(user, nameh->name))
523     {
524 michael 3242 if (global_p)
525 adx 30 *global_p = nameh->gcount;
526 michael 3242 if (local_p)
527 adx 30 *local_p = nameh->lcount;
528 michael 3242 if (icount_p)
529 adx 30 *icount_p = nameh->icount;
530 michael 4890
531 adx 30 return;
532     }
533     }
534     }
535    
536 michael 1396 /* find_or_add_userhost()
537     *
538     * inputs - host name
539     * output - none
540     * side effects - find UserHost * for given host name
541     */
542     static struct UserHost *
543     find_or_add_userhost(const char *host)
544     {
545 michael 3242 struct UserHost *userhost = NULL;
546 michael 1396
547 michael 3242 if ((userhost = hash_find_userhost(host)))
548 michael 1396 return userhost;
549    
550 michael 1654 userhost = mp_pool_get(userhost_pool);
551    
552 michael 1396 strlcpy(userhost->host, host, sizeof(userhost->host));
553     hash_add_userhost(userhost);
554    
555     return userhost;
556     }
557    
558 adx 30 /* add_user_host()
559     *
560     * inputs - user name
561     * - hostname
562     * - int flag 1 if global, 0 if local
563     * output - none
564     * side effects - add given user@host to hash tables
565     */
566     void
567     add_user_host(const char *user, const char *host, int global)
568     {
569 michael 4815 dlink_node *node = NULL;
570 adx 30 struct UserHost *found_userhost;
571     struct NameHost *nameh;
572 michael 3908 unsigned int hasident = 1;
573 adx 30
574     if (*user == '~')
575     {
576     hasident = 0;
577     ++user;
578     }
579    
580     if ((found_userhost = find_or_add_userhost(host)) == NULL)
581     return;
582    
583 michael 4815 DLINK_FOREACH(node, found_userhost->list.head)
584 adx 30 {
585 michael 4815 nameh = node->data;
586 adx 30
587     if (!irccmp(user, nameh->name))
588     {
589     nameh->gcount++;
590 michael 1396
591 adx 30 if (!global)
592     {
593 michael 1396 if (hasident)
594     nameh->icount++;
595     nameh->lcount++;
596 adx 30 }
597 michael 1396
598 adx 30 return;
599     }
600     }
601    
602 michael 1654 nameh = mp_pool_get(namehost_pool);
603 michael 5545 nameh->gcount = 1;
604 adx 30 strlcpy(nameh->name, user, sizeof(nameh->name));
605    
606     if (!global)
607     {
608     if (hasident)
609     nameh->icount = 1;
610 michael 4890
611 adx 30 nameh->lcount = 1;
612     }
613    
614     dlinkAdd(nameh, &nameh->node, &found_userhost->list);
615     }
616    
617     /* delete_user_host()
618     *
619     * inputs - user name
620     * - hostname
621     * - int flag 1 if global, 0 if local
622     * output - none
623     * side effects - delete given user@host to hash tables
624     */
625     void
626     delete_user_host(const char *user, const char *host, int global)
627     {
628 michael 4815 dlink_node *node = NULL;
629 michael 3287 struct UserHost *found_userhost = NULL;
630     unsigned int hasident = 1;
631 adx 30
632     if (*user == '~')
633     {
634     hasident = 0;
635     ++user;
636     }
637    
638     if ((found_userhost = hash_find_userhost(host)) == NULL)
639     return;
640    
641 michael 4815 DLINK_FOREACH(node, found_userhost->list.head)
642 adx 30 {
643 michael 4815 struct NameHost *nameh = node->data;
644 adx 30
645     if (!irccmp(user, nameh->name))
646     {
647     if (nameh->gcount > 0)
648     nameh->gcount--;
649 michael 4890
650 adx 30 if (!global)
651     {
652 michael 1396 if (nameh->lcount > 0)
653     nameh->lcount--;
654 michael 4890
655 michael 1396 if (hasident && nameh->icount > 0)
656     nameh->icount--;
657 adx 30 }
658    
659     if (nameh->gcount == 0 && nameh->lcount == 0)
660     {
661 michael 1396 dlinkDelete(&nameh->node, &found_userhost->list);
662 michael 1654 mp_pool_release(nameh);
663 adx 30 }
664    
665     if (dlink_list_length(&found_userhost->list) == 0)
666     {
667 michael 1396 hash_del_userhost(found_userhost);
668 michael 1654 mp_pool_release(found_userhost);
669 adx 30 }
670    
671     return;
672     }
673     }
674     }
675    
676     /*
677     * Safe list code.
678     *
679     * The idea is really quite simple. As the link lists pointed to in
680     * each "bucket" of the channel hash table are traversed atomically
681     * there is no locking needed. Overall, yes, inconsistent reported
682     * state can still happen, but normally this isn't a big deal.
683     * I don't like sticking the code into hash.c but oh well. Moreover,
684     * if a hash isn't used in future, oops.
685     *
686     * - Dianora
687     */
688    
689     /* exceeding_sendq()
690     *
691     * inputs - pointer to client to check
692     * output - 1 if client is in danger of blowing its sendq
693     * 0 if it is not.
694     * side effects -
695     *
696     * Sendq limit is fairly conservative at 1/2 (In original anyway)
697     */
698     static int
699 michael 2757 exceeding_sendq(const struct Client *to)
700 adx 30 {
701 michael 4588 if (dbuf_length(&to->connection->buf_sendq) > (get_sendq(&to->connection->confs) / 2))
702 adx 30 return 1;
703     else
704     return 0;
705     }
706    
707     void
708 michael 3289 free_list_task(struct Client *source_p)
709 adx 30 {
710 michael 4870 struct ListTask *const lt = source_p->connection->list_task;
711 michael 4815 dlink_node *node = NULL, *node_next = NULL;
712 adx 30
713 michael 6385 dlinkDelete(&lt->node, &listing_client_list);
714 adx 30
715 michael 4815 DLINK_FOREACH_SAFE(node, node_next, lt->show_mask.head)
716 adx 30 {
717 michael 4815 MyFree(node->data);
718     free_dlink_node(node);
719 adx 30 }
720    
721 michael 4815 DLINK_FOREACH_SAFE(node, node_next, lt->hide_mask.head)
722 adx 30 {
723 michael 4815 MyFree(node->data);
724     free_dlink_node(node);
725 adx 30 }
726    
727     MyFree(lt);
728 michael 4868 source_p->connection->list_task = NULL;
729 adx 30 }
730    
731     /* list_allow_channel()
732     *
733     * inputs - channel name
734     * - pointer to a list task
735     * output - 1 if the channel is to be displayed
736     * 0 otherwise
737     * side effects -
738     */
739     static int
740 michael 4618 list_allow_channel(const char *name, const struct ListTask *lt)
741 adx 30 {
742 michael 4815 const dlink_node *node = NULL;
743 adx 30
744 michael 4815 DLINK_FOREACH(node, lt->show_mask.head)
745     if (match(node->data, name) != 0)
746 adx 30 return 0;
747    
748 michael 4815 DLINK_FOREACH(node, lt->hide_mask.head)
749     if (match(node->data, name) == 0)
750 adx 30 return 0;
751    
752     return 1;
753     }
754    
755     /* list_one_channel()
756     *
757     * inputs - client pointer to return result to
758     * - pointer to channel to list
759     * - pointer to ListTask structure
760     * output - none
761     * side effects -
762     */
763     static void
764 michael 3288 list_one_channel(struct Client *source_p, struct Channel *chptr)
765 adx 30 {
766 michael 4870 const struct ListTask *const lt = source_p->connection->list_task;
767 michael 2616 char listbuf[MODEBUFLEN] = "";
768     char modebuf[MODEBUFLEN] = "";
769     char parabuf[MODEBUFLEN] = "";
770    
771 michael 2495 if (SecretChannel(chptr) &&
772 michael 3428 !(HasUMode(source_p, UMODE_ADMIN) || IsMember(source_p, chptr)))
773 adx 30 return;
774 michael 4890
775 michael 3288 if (dlink_list_length(&chptr->members) < lt->users_min ||
776     dlink_list_length(&chptr->members) > lt->users_max ||
777 michael 4818 (chptr->creationtime != 0 &&
778     ((unsigned int)chptr->creationtime < lt->created_min ||
779     (unsigned int)chptr->creationtime > lt->created_max)) ||
780 michael 3288 (unsigned int)chptr->topic_time < lt->topicts_min ||
781 adx 30 (chptr->topic_time ? (unsigned int)chptr->topic_time : UINT_MAX) >
782 michael 3288 lt->topicts_max)
783 adx 30 return;
784    
785 michael 4489 if (lt->topic[0] && match(lt->topic, chptr->topic))
786     return;
787    
788 michael 4618 if (!list_allow_channel(chptr->name, lt))
789 adx 30 return;
790 michael 2616
791 michael 4486 channel_modes(chptr, source_p, modebuf, parabuf);
792 michael 2616
793 michael 4486 if (chptr->topic[0])
794     snprintf(listbuf, sizeof(listbuf), "[%s] ", modebuf);
795     else
796     snprintf(listbuf, sizeof(listbuf), "[%s]", modebuf);
797 michael 2616
798 michael 4618 sendto_one_numeric(source_p, &me, RPL_LIST, chptr->name,
799 michael 3109 dlink_list_length(&chptr->members),
800     listbuf, chptr->topic);
801 adx 30 }
802    
803     /* safe_list_channels()
804     *
805     * inputs - pointer to client requesting list
806     * output - 0/1
807     * side effects - safely list all channels to source_p
808     *
809     * Walk the channel buckets, ensure all pointers in a bucket are
810     * traversed before blocking on a sendq. This means, no locking is needed.
811     *
812     * - Dianora
813     */
814     void
815 michael 3288 safe_list_channels(struct Client *source_p, int only_unmasked_channels)
816 adx 30 {
817 michael 4870 struct ListTask *const lt = source_p->connection->list_task;
818 adx 30 struct Channel *chptr = NULL;
819    
820     if (!only_unmasked_channels)
821     {
822 michael 3288 for (unsigned int i = lt->hash_index; i < HASHSIZE; ++i)
823 adx 30 {
824 michael 3291 if (exceeding_sendq(source_p))
825 adx 30 {
826 michael 3288 lt->hash_index = i;
827     return; /* Still more to do */
828 adx 30 }
829    
830     for (chptr = channelTable[i]; chptr; chptr = chptr->hnextch)
831 michael 3288 list_one_channel(source_p, chptr);
832 adx 30 }
833     }
834     else
835     {
836 michael 4815 dlink_node *node = NULL;
837 adx 30
838 michael 4815 DLINK_FOREACH(node, lt->show_mask.head)
839     if ((chptr = hash_find_channel(node->data)))
840 michael 3288 list_one_channel(source_p, chptr);
841 adx 30 }
842    
843 michael 3289 free_list_task(source_p);
844 michael 3109 sendto_one_numeric(source_p, &me, RPL_LISTEND);
845 adx 30 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision