]> jfr.im git - solanum.git/blob - ircd/channel.c
ircd startup: avoid black magic with file descriptors
[solanum.git] / ircd / channel.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * channel.c: Controls channels.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 */
24
25 #include "stdinc.h"
26 #include "channel.h"
27 #include "chmode.h"
28 #include "client.h"
29 #include "hash.h"
30 #include "hook.h"
31 #include "match.h"
32 #include "ircd.h"
33 #include "numeric.h"
34 #include "s_serv.h" /* captab */
35 #include "s_user.h"
36 #include "send.h"
37 #include "whowas.h"
38 #include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
39 #include "s_newconf.h"
40 #include "logger.h"
41 #include "s_assert.h"
42
43 struct config_channel_entry ConfigChannel;
44 rb_dlink_list global_channel_list;
45 static rb_bh *channel_heap;
46 static rb_bh *ban_heap;
47 static rb_bh *topic_heap;
48 static rb_bh *member_heap;
49
50 static void free_topic(struct Channel *chptr);
51
52 static int h_can_join;
53 static int h_can_send;
54 int h_get_channel_access;
55
56 /* init_channels()
57 *
58 * input -
59 * output -
60 * side effects - initialises the various blockheaps
61 */
62 void
63 init_channels(void)
64 {
65 channel_heap = rb_bh_create(sizeof(struct Channel), CHANNEL_HEAP_SIZE, "channel_heap");
66 ban_heap = rb_bh_create(sizeof(struct Ban), BAN_HEAP_SIZE, "ban_heap");
67 topic_heap = rb_bh_create(TOPICLEN + 1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE, "topic_heap");
68 member_heap = rb_bh_create(sizeof(struct membership), MEMBER_HEAP_SIZE, "member_heap");
69
70 h_can_join = register_hook("can_join");
71 h_can_send = register_hook("can_send");
72 h_get_channel_access = register_hook("get_channel_access");
73 }
74
75 /*
76 * allocate_channel - Allocates a channel
77 */
78 struct Channel *
79 allocate_channel(const char *chname)
80 {
81 struct Channel *chptr;
82 chptr = rb_bh_alloc(channel_heap);
83 chptr->chname = rb_strdup(chname);
84 return (chptr);
85 }
86
87 void
88 free_channel(struct Channel *chptr)
89 {
90 rb_free(chptr->chname);
91 rb_free(chptr->mode_lock);
92 rb_bh_free(channel_heap, chptr);
93 }
94
95 struct Ban *
96 allocate_ban(const char *banstr, const char *who, const char *forward)
97 {
98 struct Ban *bptr;
99 bptr = rb_bh_alloc(ban_heap);
100 bptr->banstr = rb_strdup(banstr);
101 bptr->who = rb_strdup(who);
102 bptr->forward = forward ? rb_strdup(forward) : NULL;
103
104 return (bptr);
105 }
106
107 void
108 free_ban(struct Ban *bptr)
109 {
110 rb_free(bptr->banstr);
111 rb_free(bptr->who);
112 rb_free(bptr->forward);
113 rb_bh_free(ban_heap, bptr);
114 }
115
116 /*
117 * send_channel_join()
118 *
119 * input - channel to join, client joining.
120 * output - none
121 * side effects - none
122 */
123 void
124 send_channel_join(struct Channel *chptr, struct Client *client_p)
125 {
126 if (!IsClient(client_p))
127 return;
128
129 sendto_channel_local_with_capability(ALL_MEMBERS, NOCAPS, CLICAP_EXTENDED_JOIN, chptr, ":%s!%s@%s JOIN %s",
130 client_p->name, client_p->username, client_p->host, chptr->chname);
131
132 sendto_channel_local_with_capability(ALL_MEMBERS, CLICAP_EXTENDED_JOIN, NOCAPS, chptr, ":%s!%s@%s JOIN %s %s :%s",
133 client_p->name, client_p->username, client_p->host, chptr->chname,
134 EmptyString(client_p->user->suser) ? "*" : client_p->user->suser,
135 client_p->info);
136
137 /* Send away message to away-notify enabled clients. */
138 if (client_p->user->away)
139 sendto_channel_local_with_capability_butone(client_p, ALL_MEMBERS, CLICAP_AWAY_NOTIFY, NOCAPS, chptr,
140 ":%s!%s@%s AWAY :%s", client_p->name, client_p->username,
141 client_p->host, client_p->user->away);
142 }
143
144 /* find_channel_membership()
145 *
146 * input - channel to find them in, client to find
147 * output - membership of client in channel, else NULL
148 * side effects -
149 */
150 struct membership *
151 find_channel_membership(struct Channel *chptr, struct Client *client_p)
152 {
153 struct membership *msptr;
154 rb_dlink_node *ptr;
155
156 if(!IsClient(client_p))
157 return NULL;
158
159 /* Pick the most efficient list to use to be nice to things like
160 * CHANSERV which could be in a large number of channels
161 */
162 if(rb_dlink_list_length(&chptr->members) < rb_dlink_list_length(&client_p->user->channel))
163 {
164 RB_DLINK_FOREACH(ptr, chptr->members.head)
165 {
166 msptr = ptr->data;
167
168 if(msptr->client_p == client_p)
169 return msptr;
170 }
171 }
172 else
173 {
174 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
175 {
176 msptr = ptr->data;
177
178 if(msptr->chptr == chptr)
179 return msptr;
180 }
181 }
182
183 return NULL;
184 }
185
186 /* find_channel_status()
187 *
188 * input - membership to get status for, whether we can combine flags
189 * output - flags of user on channel
190 * side effects -
191 */
192 const char *
193 find_channel_status(struct membership *msptr, int combine)
194 {
195 static char buffer[3];
196 char *p;
197
198 p = buffer;
199
200 if(is_chanop(msptr))
201 {
202 if(!combine)
203 return "@";
204 *p++ = '@';
205 }
206
207 if(is_voiced(msptr))
208 *p++ = '+';
209
210 *p = '\0';
211 return buffer;
212 }
213
214 /* add_user_to_channel()
215 *
216 * input - channel to add client to, client to add, channel flags
217 * output -
218 * side effects - user is added to channel
219 */
220 void
221 add_user_to_channel(struct Channel *chptr, struct Client *client_p, int flags)
222 {
223 struct membership *msptr;
224
225 s_assert(client_p->user != NULL);
226 if(client_p->user == NULL)
227 return;
228
229 msptr = rb_bh_alloc(member_heap);
230
231 msptr->chptr = chptr;
232 msptr->client_p = client_p;
233 msptr->flags = flags;
234
235 rb_dlinkAdd(msptr, &msptr->usernode, &client_p->user->channel);
236 rb_dlinkAdd(msptr, &msptr->channode, &chptr->members);
237
238 if(MyClient(client_p))
239 rb_dlinkAdd(msptr, &msptr->locchannode, &chptr->locmembers);
240 }
241
242 /* remove_user_from_channel()
243 *
244 * input - membership pointer to remove from channel
245 * output -
246 * side effects - membership (thus user) is removed from channel
247 */
248 void
249 remove_user_from_channel(struct membership *msptr)
250 {
251 struct Client *client_p;
252 struct Channel *chptr;
253 s_assert(msptr != NULL);
254 if(msptr == NULL)
255 return;
256
257 client_p = msptr->client_p;
258 chptr = msptr->chptr;
259
260 rb_dlinkDelete(&msptr->usernode, &client_p->user->channel);
261 rb_dlinkDelete(&msptr->channode, &chptr->members);
262
263 if(client_p->servptr == &me)
264 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
265
266 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
267 destroy_channel(chptr);
268
269 rb_bh_free(member_heap, msptr);
270
271 return;
272 }
273
274 /* remove_user_from_channels()
275 *
276 * input - user to remove from all channels
277 * output -
278 * side effects - user is removed from all channels
279 */
280 void
281 remove_user_from_channels(struct Client *client_p)
282 {
283 struct Channel *chptr;
284 struct membership *msptr;
285 rb_dlink_node *ptr;
286 rb_dlink_node *next_ptr;
287
288 if(client_p == NULL)
289 return;
290
291 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->user->channel.head)
292 {
293 msptr = ptr->data;
294 chptr = msptr->chptr;
295
296 rb_dlinkDelete(&msptr->channode, &chptr->members);
297
298 if(client_p->servptr == &me)
299 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
300
301 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
302 destroy_channel(chptr);
303
304 rb_bh_free(member_heap, msptr);
305 }
306
307 client_p->user->channel.head = client_p->user->channel.tail = NULL;
308 client_p->user->channel.length = 0;
309 }
310
311 /* invalidate_bancache_user()
312 *
313 * input - user to invalidate ban cache for
314 * output -
315 * side effects - ban cache is invalidated for all memberships of that user
316 * to be used after a nick change
317 */
318 void
319 invalidate_bancache_user(struct Client *client_p)
320 {
321 struct membership *msptr;
322 rb_dlink_node *ptr;
323
324 if(client_p == NULL)
325 return;
326
327 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
328 {
329 msptr = ptr->data;
330 msptr->bants = 0;
331 msptr->flags &= ~CHFL_BANNED;
332 }
333 }
334
335 /* check_channel_name()
336 *
337 * input - channel name
338 * output - true if valid channel name, else false
339 * side effects -
340 */
341 bool
342 check_channel_name(const char *name)
343 {
344 s_assert(name != NULL);
345 if(name == NULL)
346 return false;
347
348 for (; *name; ++name)
349 {
350 if(!IsChanChar(*name))
351 return false;
352 }
353
354 return true;
355 }
356
357 /* free_channel_list()
358 *
359 * input - rb_dlink list to free
360 * output -
361 * side effects - list of b/e/I modes is cleared
362 */
363 void
364 free_channel_list(rb_dlink_list * list)
365 {
366 rb_dlink_node *ptr;
367 rb_dlink_node *next_ptr;
368 struct Ban *actualBan;
369
370 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
371 {
372 actualBan = ptr->data;
373 free_ban(actualBan);
374 }
375
376 list->head = list->tail = NULL;
377 list->length = 0;
378 }
379
380 /* destroy_channel()
381 *
382 * input - channel to destroy
383 * output -
384 * side effects - channel is obliterated
385 */
386 void
387 destroy_channel(struct Channel *chptr)
388 {
389 rb_dlink_node *ptr, *next_ptr;
390
391 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
392 {
393 del_invite(chptr, ptr->data);
394 }
395
396 /* free all bans/exceptions/denies */
397 free_channel_list(&chptr->banlist);
398 free_channel_list(&chptr->exceptlist);
399 free_channel_list(&chptr->invexlist);
400 free_channel_list(&chptr->quietlist);
401
402 /* Free the topic */
403 free_topic(chptr);
404
405 rb_dlinkDelete(&chptr->node, &global_channel_list);
406 del_from_channel_hash(chptr->chname, chptr);
407 free_channel(chptr);
408 }
409
410 /* channel_pub_or_secret()
411 *
412 * input - channel
413 * output - "=" if public, "@" if secret, else "*"
414 * side effects -
415 */
416 static const char *
417 channel_pub_or_secret(struct Channel *chptr)
418 {
419 if(PubChannel(chptr))
420 return ("=");
421 else if(SecretChannel(chptr))
422 return ("@");
423 return ("*");
424 }
425
426 /* channel_member_names()
427 *
428 * input - channel to list, client to list to, show endofnames
429 * output -
430 * side effects - client is given list of users on channel
431 */
432 void
433 channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eon)
434 {
435 struct membership *msptr;
436 struct Client *target_p;
437 rb_dlink_node *ptr;
438 char lbuf[BUFSIZE];
439 char *t;
440 int mlen;
441 int tlen;
442 int cur_len;
443 int is_member;
444 int stack = IsCapable(client_p, CLICAP_MULTI_PREFIX);
445
446 if(ShowChannel(client_p, chptr))
447 {
448 is_member = IsMember(client_p, chptr);
449
450 cur_len = mlen = sprintf(lbuf, form_str(RPL_NAMREPLY),
451 me.name, client_p->name,
452 channel_pub_or_secret(chptr), chptr->chname);
453
454 t = lbuf + cur_len;
455
456 RB_DLINK_FOREACH(ptr, chptr->members.head)
457 {
458 msptr = ptr->data;
459 target_p = msptr->client_p;
460
461 if(IsInvisible(target_p) && !is_member)
462 continue;
463
464 if (IsCapable(client_p, CLICAP_USERHOST_IN_NAMES))
465 {
466 /* space, possible "@+" prefix */
467 if (cur_len + strlen(target_p->name) + strlen(target_p->username) + strlen(target_p->host) + 5 >= BUFSIZE - 5)
468 {
469 *(t - 1) = '\0';
470 sendto_one(client_p, "%s", lbuf);
471 cur_len = mlen;
472 t = lbuf + mlen;
473 }
474
475 tlen = sprintf(t, "%s%s!%s@%s ", find_channel_status(msptr, stack),
476 target_p->name, target_p->username, target_p->host);
477 }
478 else
479 {
480 /* space, possible "@+" prefix */
481 if(cur_len + strlen(target_p->name) + 3 >= BUFSIZE - 3)
482 {
483 *(t - 1) = '\0';
484 sendto_one(client_p, "%s", lbuf);
485 cur_len = mlen;
486 t = lbuf + mlen;
487 }
488
489 tlen = sprintf(t, "%s%s ", find_channel_status(msptr, stack),
490 target_p->name);
491 }
492
493 cur_len += tlen;
494 t += tlen;
495 }
496
497 /* The old behaviour here was to always output our buffer,
498 * even if there are no clients we can show. This happens
499 * when a client does "NAMES" with no parameters, and all
500 * the clients on a -sp channel are +i. I dont see a good
501 * reason for keeping that behaviour, as it just wastes
502 * bandwidth. --anfl
503 */
504 if(cur_len != mlen)
505 {
506 *(t - 1) = '\0';
507 sendto_one(client_p, "%s", lbuf);
508 }
509 }
510
511 if(show_eon)
512 sendto_one(client_p, form_str(RPL_ENDOFNAMES),
513 me.name, client_p->name, chptr->chname);
514 }
515
516 /* del_invite()
517 *
518 * input - channel to remove invite from, client to remove
519 * output -
520 * side effects - user is removed from invite list, if exists
521 */
522 void
523 del_invite(struct Channel *chptr, struct Client *who)
524 {
525 rb_dlinkFindDestroy(who, &chptr->invites);
526 rb_dlinkFindDestroy(chptr, &who->user->invited);
527 }
528
529 /* is_banned_list()
530 *
531 * input - channel to check bans for, ban list (banlist or quietlist),
532 * user to check bans against, optional prebuilt buffers,
533 * optional forward channel pointer
534 * output - 1 if banned, else 0
535 * side effects -
536 */
537 static int
538 is_banned_list(struct Channel *chptr, rb_dlink_list *list,
539 struct Client *who, struct membership *msptr,
540 const char *s, const char *s2, const char **forward)
541 {
542 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
543 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
544 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
545 char src_ip4host[NICKLEN + USERLEN + HOSTLEN + 6];
546 char *s3 = NULL;
547 char *s4 = NULL;
548 struct sockaddr_in ip4;
549 rb_dlink_node *ptr;
550 struct Ban *actualBan = NULL;
551 struct Ban *actualExcept = NULL;
552
553 if(!MyClient(who))
554 return 0;
555
556 /* if the buffers havent been built, do it here */
557 if(s == NULL)
558 {
559 sprintf(src_host, "%s!%s@%s", who->name, who->username, who->host);
560 sprintf(src_iphost, "%s!%s@%s", who->name, who->username, who->sockhost);
561
562 s = src_host;
563 s2 = src_iphost;
564 }
565 if(who->localClient->mangledhost != NULL)
566 {
567 /* if host mangling mode enabled, also check their real host */
568 if(!strcmp(who->host, who->localClient->mangledhost))
569 {
570 sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->orighost);
571 s3 = src_althost;
572 }
573 /* if host mangling mode not enabled and no other spoof,
574 * also check the mangled form of their host */
575 else if (!IsDynSpoof(who))
576 {
577 sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->localClient->mangledhost);
578 s3 = src_althost;
579 }
580 }
581 #ifdef RB_IPV6
582 if(GET_SS_FAMILY(&who->localClient->ip) == AF_INET6 &&
583 rb_ipv4_from_ipv6((const struct sockaddr_in6 *)&who->localClient->ip, &ip4))
584 {
585 sprintf(src_ip4host, "%s!%s@", who->name, who->username);
586 s4 = src_ip4host + strlen(src_ip4host);
587 rb_inet_ntop_sock((struct sockaddr *)&ip4,
588 s4, src_ip4host + sizeof src_ip4host - s4);
589 s4 = src_ip4host;
590 }
591 #endif
592
593 RB_DLINK_FOREACH(ptr, list->head)
594 {
595 actualBan = ptr->data;
596 if(match(actualBan->banstr, s) ||
597 match(actualBan->banstr, s2) ||
598 match_cidr(actualBan->banstr, s2) ||
599 match_extban(actualBan->banstr, who, chptr, CHFL_BAN) ||
600 (s3 != NULL && match(actualBan->banstr, s3))
601 #ifdef RB_IPV6
602 ||
603 (s4 != NULL && (match(actualBan->banstr, s4) || match_cidr(actualBan->banstr, s4)))
604 #endif
605 )
606 break;
607 else
608 actualBan = NULL;
609 }
610
611 if((actualBan != NULL) && ConfigChannel.use_except)
612 {
613 RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
614 {
615 actualExcept = ptr->data;
616
617 /* theyre exempted.. */
618 if(match(actualExcept->banstr, s) ||
619 match(actualExcept->banstr, s2) ||
620 match_cidr(actualExcept->banstr, s2) ||
621 match_extban(actualExcept->banstr, who, chptr, CHFL_EXCEPTION) ||
622 (s3 != NULL && match(actualExcept->banstr, s3)))
623 {
624 /* cache the fact theyre not banned */
625 if(msptr != NULL)
626 {
627 msptr->bants = chptr->bants;
628 msptr->flags &= ~CHFL_BANNED;
629 }
630
631 return CHFL_EXCEPTION;
632 }
633 }
634 }
635
636 /* cache the banned/not banned status */
637 if(msptr != NULL)
638 {
639 msptr->bants = chptr->bants;
640
641 if(actualBan != NULL)
642 {
643 msptr->flags |= CHFL_BANNED;
644 return CHFL_BAN;
645 }
646 else
647 {
648 msptr->flags &= ~CHFL_BANNED;
649 return 0;
650 }
651 }
652
653 if (actualBan && actualBan->forward && forward)
654 *forward = actualBan->forward;
655
656 return ((actualBan ? CHFL_BAN : 0));
657 }
658
659 /* is_banned()
660 *
661 * input - channel to check bans for, user to check bans against
662 * optional prebuilt buffers, optional forward channel pointer
663 * output - 1 if banned, else 0
664 * side effects -
665 */
666 int
667 is_banned(struct Channel *chptr, struct Client *who, struct membership *msptr,
668 const char *s, const char *s2, const char **forward)
669 {
670 if (chptr->last_checked_client != NULL &&
671 who == chptr->last_checked_client &&
672 chptr->last_checked_type == CHFL_BAN &&
673 chptr->last_checked_ts > chptr->bants)
674 return chptr->last_checked_result;
675
676 chptr->last_checked_client = who;
677 chptr->last_checked_type = CHFL_BAN;
678 chptr->last_checked_result = is_banned_list(chptr, &chptr->banlist, who, msptr, s, s2, forward);
679 chptr->last_checked_ts = rb_current_time();
680
681 return chptr->last_checked_result;
682 }
683
684 /* is_quieted()
685 *
686 * input - channel to check bans for, user to check bans against
687 * optional prebuilt buffers
688 * output - 1 if banned, else 0
689 * side effects -
690 */
691 int
692 is_quieted(struct Channel *chptr, struct Client *who, struct membership *msptr,
693 const char *s, const char *s2)
694 {
695 if (chptr->last_checked_client != NULL &&
696 who == chptr->last_checked_client &&
697 chptr->last_checked_type == CHFL_QUIET &&
698 chptr->last_checked_ts > chptr->bants)
699 return chptr->last_checked_result;
700
701 chptr->last_checked_client = who;
702 chptr->last_checked_type = CHFL_QUIET;
703 chptr->last_checked_result = is_banned_list(chptr, &chptr->quietlist, who, msptr, s, s2, NULL);
704 chptr->last_checked_ts = rb_current_time();
705
706 return chptr->last_checked_result;
707 }
708
709 /* can_join()
710 *
711 * input - client to check, channel to check for, key
712 * output - reason for not being able to join, else 0, channel name to forward to
713 * side effects -
714 * caveats - this function should only be called on a local user.
715 */
716 int
717 can_join(struct Client *source_p, struct Channel *chptr, const char *key, const char **forward)
718 {
719 rb_dlink_node *invite = NULL;
720 rb_dlink_node *ptr;
721 struct Ban *invex = NULL;
722 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
723 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
724 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
725 int use_althost = 0;
726 int i = 0;
727 hook_data_channel moduledata;
728
729 s_assert(source_p->localClient != NULL);
730
731 moduledata.client = source_p;
732 moduledata.chptr = chptr;
733 moduledata.approved = 0;
734
735 sprintf(src_host, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
736 sprintf(src_iphost, "%s!%s@%s", source_p->name, source_p->username, source_p->sockhost);
737 if(source_p->localClient->mangledhost != NULL)
738 {
739 /* if host mangling mode enabled, also check their real host */
740 if(!strcmp(source_p->host, source_p->localClient->mangledhost))
741 {
742 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->orighost);
743 use_althost = 1;
744 }
745 /* if host mangling mode not enabled and no other spoof,
746 * also check the mangled form of their host */
747 else if (!IsDynSpoof(source_p))
748 {
749 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->localClient->mangledhost);
750 use_althost = 1;
751 }
752 }
753
754 if((is_banned(chptr, source_p, NULL, src_host, src_iphost, forward)) == CHFL_BAN)
755 {
756 moduledata.approved = ERR_BANNEDFROMCHAN;
757 goto finish_join_check;
758 }
759
760 if(*chptr->mode.key && (EmptyString(key) || irccmp(chptr->mode.key, key)))
761 {
762 moduledata.approved = ERR_BADCHANNELKEY;
763 goto finish_join_check;
764 }
765
766 /* All checks from this point on will forward... */
767 if(forward)
768 *forward = chptr->mode.forward;
769
770 if(chptr->mode.mode & MODE_INVITEONLY)
771 {
772 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
773 {
774 if(invite->data == chptr)
775 break;
776 }
777 if(invite == NULL)
778 {
779 if(!ConfigChannel.use_invex)
780 moduledata.approved = ERR_INVITEONLYCHAN;
781 RB_DLINK_FOREACH(ptr, chptr->invexlist.head)
782 {
783 invex = ptr->data;
784 if(match(invex->banstr, src_host)
785 || match(invex->banstr, src_iphost)
786 || match_cidr(invex->banstr, src_iphost)
787 || match_extban(invex->banstr, source_p, chptr, CHFL_INVEX)
788 || (use_althost && match(invex->banstr, src_althost)))
789 break;
790 }
791 if(ptr == NULL)
792 moduledata.approved = ERR_INVITEONLYCHAN;
793 }
794 }
795
796 if(chptr->mode.limit &&
797 rb_dlink_list_length(&chptr->members) >= (unsigned long) chptr->mode.limit)
798 i = ERR_CHANNELISFULL;
799 if(chptr->mode.mode & MODE_REGONLY && EmptyString(source_p->user->suser))
800 i = ERR_NEEDREGGEDNICK;
801 /* join throttling stuff --nenolod */
802 else if(chptr->mode.join_num > 0 && chptr->mode.join_time > 0)
803 {
804 if ((rb_current_time() - chptr->join_delta <=
805 chptr->mode.join_time) && (chptr->join_count >=
806 chptr->mode.join_num))
807 i = ERR_THROTTLE;
808 }
809
810 /* allow /invite to override +l/+r/+j also -- jilles */
811 if (i != 0 && invite == NULL)
812 {
813 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
814 {
815 if(invite->data == chptr)
816 break;
817 }
818 if (invite == NULL)
819 moduledata.approved = i;
820 }
821
822 finish_join_check:
823 call_hook(h_can_join, &moduledata);
824
825 return moduledata.approved;
826 }
827
828 /* can_send()
829 *
830 * input - user to check in channel, membership pointer
831 * output - whether can explicitly send or not, else CAN_SEND_NONOP
832 * side effects -
833 */
834 int
835 can_send(struct Channel *chptr, struct Client *source_p, struct membership *msptr)
836 {
837 hook_data_channel_approval moduledata;
838
839 moduledata.approved = CAN_SEND_NONOP;
840 moduledata.dir = MODE_QUERY;
841
842 if(IsServer(source_p) || IsService(source_p))
843 return CAN_SEND_OPV;
844
845 if(MyClient(source_p) && hash_find_resv(chptr->chname) &&
846 !IsOper(source_p) && !IsExemptResv(source_p))
847 moduledata.approved = CAN_SEND_NO;
848
849 if(msptr == NULL)
850 {
851 msptr = find_channel_membership(chptr, source_p);
852
853 if(msptr == NULL)
854 {
855 /* if its +m or +n and theyre not in the channel,
856 * they cant send. we dont check bans here because
857 * theres no possibility of caching them --fl
858 */
859 if(chptr->mode.mode & MODE_NOPRIVMSGS || chptr->mode.mode & MODE_MODERATED)
860 moduledata.approved = CAN_SEND_NO;
861 else
862 moduledata.approved = CAN_SEND_NONOP;
863
864 return moduledata.approved;
865 }
866 }
867
868 if(chptr->mode.mode & MODE_MODERATED)
869 moduledata.approved = CAN_SEND_NO;
870
871 if(MyClient(source_p))
872 {
873 /* cached can_send */
874 if(msptr->bants == chptr->bants)
875 {
876 if(can_send_banned(msptr))
877 moduledata.approved = CAN_SEND_NO;
878 }
879 else if(is_banned(chptr, source_p, msptr, NULL, NULL, NULL) == CHFL_BAN
880 || is_quieted(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN)
881 moduledata.approved = CAN_SEND_NO;
882 }
883
884 if(is_chanop_voiced(msptr))
885 moduledata.approved = CAN_SEND_OPV;
886
887 moduledata.client = source_p;
888 moduledata.chptr = msptr->chptr;
889 moduledata.msptr = msptr;
890 moduledata.target = NULL;
891 moduledata.dir = (moduledata.approved == CAN_SEND_NO) ? MODE_ADD : MODE_QUERY;
892
893 call_hook(h_can_send, &moduledata);
894
895 return moduledata.approved;
896 }
897
898 /*
899 * flood_attack_channel
900 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
901 * says NOTICE must not auto reply
902 * - pointer to source Client
903 * - pointer to target channel
904 * output - true if target is under flood attack
905 * side effects - check for flood attack on target chptr
906 */
907 bool
908 flood_attack_channel(int p_or_n, struct Client *source_p, struct Channel *chptr, char *chname)
909 {
910 int delta;
911
912 if(GlobalSetOptions.floodcount && MyClient(source_p))
913 {
914 if((chptr->first_received_message_time + 1) < rb_current_time())
915 {
916 delta = rb_current_time() - chptr->first_received_message_time;
917 chptr->received_number_of_privmsgs -= delta;
918 chptr->first_received_message_time = rb_current_time();
919 if(chptr->received_number_of_privmsgs <= 0)
920 {
921 chptr->received_number_of_privmsgs = 0;
922 chptr->flood_noticed = 0;
923 }
924 }
925
926 if((chptr->received_number_of_privmsgs >= GlobalSetOptions.floodcount)
927 || chptr->flood_noticed)
928 {
929 if(chptr->flood_noticed == 0)
930 {
931 sendto_realops_snomask(SNO_BOTS, *chptr->chname == '&' ? L_ALL : L_NETWIDE,
932 "Possible Flooder %s[%s@%s] on %s target: %s",
933 source_p->name, source_p->username,
934 source_p->orighost,
935 source_p->servptr->name, chptr->chname);
936 chptr->flood_noticed = 1;
937
938 /* Add a bit of penalty */
939 chptr->received_number_of_privmsgs += 2;
940 }
941 if(MyClient(source_p) && (p_or_n != 1))
942 sendto_one(source_p,
943 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
944 me.name, source_p->name, chptr->chname);
945 return true;
946 }
947 else
948 chptr->received_number_of_privmsgs++;
949 }
950
951 return false;
952 }
953
954 /* find_bannickchange_channel()
955 * Input: client to check
956 * Output: channel preventing nick change
957 */
958 struct Channel *
959 find_bannickchange_channel(struct Client *client_p)
960 {
961 struct Channel *chptr;
962 struct membership *msptr;
963 rb_dlink_node *ptr;
964 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
965 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
966
967 if (!MyClient(client_p))
968 return NULL;
969
970 sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
971 sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
972
973 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
974 {
975 msptr = ptr->data;
976 chptr = msptr->chptr;
977 if (is_chanop_voiced(msptr))
978 continue;
979 /* cached can_send */
980 if (msptr->bants == chptr->bants)
981 {
982 if (can_send_banned(msptr))
983 return chptr;
984 }
985 else if (is_banned(chptr, client_p, msptr, src_host, src_iphost, NULL) == CHFL_BAN
986 || is_quieted(chptr, client_p, msptr, src_host, src_iphost) == CHFL_BAN)
987 return chptr;
988 }
989 return NULL;
990 }
991
992 /* void check_spambot_warning(struct Client *source_p)
993 * Input: Client to check, channel name or NULL if this is a part.
994 * Output: none
995 * Side-effects: Updates the client's oper_warn_count_down, warns the
996 * IRC operators if necessary, and updates join_leave_countdown as
997 * needed.
998 */
999 void
1000 check_spambot_warning(struct Client *source_p, const char *name)
1001 {
1002 int t_delta;
1003 int decrement_count;
1004 if((GlobalSetOptions.spam_num &&
1005 (source_p->localClient->join_leave_count >= GlobalSetOptions.spam_num)))
1006 {
1007 if(source_p->localClient->oper_warn_count_down > 0)
1008 source_p->localClient->oper_warn_count_down--;
1009 else
1010 source_p->localClient->oper_warn_count_down = 0;
1011 if(source_p->localClient->oper_warn_count_down == 0 &&
1012 name != NULL)
1013 {
1014 /* Its already known as a possible spambot */
1015 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
1016 "User %s (%s@%s) trying to join %s is a possible spambot",
1017 source_p->name,
1018 source_p->username, source_p->orighost, name);
1019 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
1020 }
1021 }
1022 else
1023 {
1024 if((t_delta =
1025 (rb_current_time() - source_p->localClient->last_leave_time)) >
1026 JOIN_LEAVE_COUNT_EXPIRE_TIME)
1027 {
1028 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
1029 if(name != NULL)
1030 ;
1031 else if(decrement_count > source_p->localClient->join_leave_count)
1032 source_p->localClient->join_leave_count = 0;
1033 else
1034 source_p->localClient->join_leave_count -= decrement_count;
1035 }
1036 else
1037 {
1038 if((rb_current_time() -
1039 (source_p->localClient->last_join_time)) < GlobalSetOptions.spam_time)
1040 {
1041 /* oh, its a possible spambot */
1042 source_p->localClient->join_leave_count++;
1043 }
1044 }
1045 if(name != NULL)
1046 source_p->localClient->last_join_time = rb_current_time();
1047 else
1048 source_p->localClient->last_leave_time = rb_current_time();
1049 }
1050 }
1051
1052 /* check_splitmode()
1053 *
1054 * input -
1055 * output -
1056 * side effects - compares usercount and servercount against their split
1057 * values and adjusts splitmode accordingly
1058 */
1059 void
1060 check_splitmode(void *unused)
1061 {
1062 if(splitchecking && (ConfigChannel.no_join_on_split || ConfigChannel.no_create_on_split))
1063 {
1064 /* not split, we're being asked to check now because someone
1065 * has left
1066 */
1067 if(!splitmode)
1068 {
1069 if(eob_count < split_servers || Count.total < split_users)
1070 {
1071 splitmode = 1;
1072 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1073 "Network split, activating splitmode");
1074 check_splitmode_ev = rb_event_addish("check_splitmode", check_splitmode, NULL, 2);
1075 }
1076 }
1077 /* in splitmode, check whether its finished */
1078 else if(eob_count >= split_servers && Count.total >= split_users)
1079 {
1080 splitmode = 0;
1081
1082 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1083 "Network rejoined, deactivating splitmode");
1084
1085 rb_event_delete(check_splitmode_ev);
1086 check_splitmode_ev = NULL;
1087 }
1088 }
1089 }
1090
1091
1092 /* allocate_topic()
1093 *
1094 * input - channel to allocate topic for
1095 * output - 1 on success, else 0
1096 * side effects - channel gets a topic allocated
1097 */
1098 static void
1099 allocate_topic(struct Channel *chptr)
1100 {
1101 void *ptr;
1102
1103 if(chptr == NULL)
1104 return;
1105
1106 ptr = rb_bh_alloc(topic_heap);
1107
1108 /* Basically we allocate one large block for the topic and
1109 * the topic info. We then split it up into two and shove it
1110 * in the chptr
1111 */
1112 chptr->topic = ptr;
1113 chptr->topic_info = (char *) ptr + TOPICLEN + 1;
1114 *chptr->topic = '\0';
1115 *chptr->topic_info = '\0';
1116 }
1117
1118 /* free_topic()
1119 *
1120 * input - channel which has topic to free
1121 * output -
1122 * side effects - channels topic is free'd
1123 */
1124 static void
1125 free_topic(struct Channel *chptr)
1126 {
1127 void *ptr;
1128
1129 if(chptr == NULL || chptr->topic == NULL)
1130 return;
1131
1132 /* This is safe for now - If you change allocate_topic you
1133 * MUST change this as well
1134 */
1135 ptr = chptr->topic;
1136 rb_bh_free(topic_heap, ptr);
1137 chptr->topic = NULL;
1138 chptr->topic_info = NULL;
1139 }
1140
1141 /* set_channel_topic()
1142 *
1143 * input - channel, topic to set, topic info and topic ts
1144 * output -
1145 * side effects - channels topic, topic info and TS are set.
1146 */
1147 void
1148 set_channel_topic(struct Channel *chptr, const char *topic, const char *topic_info, time_t topicts)
1149 {
1150 if(strlen(topic) > 0)
1151 {
1152 if(chptr->topic == NULL)
1153 allocate_topic(chptr);
1154 rb_strlcpy(chptr->topic, topic, TOPICLEN + 1);
1155 rb_strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
1156 chptr->topic_time = topicts;
1157 }
1158 else
1159 {
1160 if(chptr->topic != NULL)
1161 free_topic(chptr);
1162 chptr->topic_time = 0;
1163 }
1164 }
1165
1166 /* channel_modes()
1167 *
1168 * inputs - pointer to channel
1169 * - pointer to client
1170 * output - string with simple modes
1171 * side effects - result from previous calls overwritten
1172 *
1173 * Stolen from ShadowIRCd 4 --nenolod
1174 */
1175 const char *
1176 channel_modes(struct Channel *chptr, struct Client *client_p)
1177 {
1178 int i;
1179 char buf1[BUFSIZE];
1180 char buf2[BUFSIZE];
1181 static char final[BUFSIZE];
1182 char *mbuf = buf1;
1183 char *pbuf = buf2;
1184
1185 *mbuf++ = '+';
1186 *pbuf = '\0';
1187
1188 for (i = 0; i < 256; i++)
1189 {
1190 if(chmode_table[i].set_func == chm_hidden && (!IsOper(client_p) || !IsClient(client_p)))
1191 continue;
1192 if(chptr->mode.mode & chmode_flags[i])
1193 *mbuf++ = i;
1194 }
1195
1196 if(chptr->mode.limit)
1197 {
1198 *mbuf++ = 'l';
1199
1200 if(!IsClient(client_p) || IsMember(client_p, chptr))
1201 pbuf += sprintf(pbuf, " %d", chptr->mode.limit);
1202 }
1203
1204 if(*chptr->mode.key)
1205 {
1206 *mbuf++ = 'k';
1207
1208 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1209 pbuf += sprintf(pbuf, " %s", chptr->mode.key);
1210 }
1211
1212 if(chptr->mode.join_num)
1213 {
1214 *mbuf++ = 'j';
1215
1216 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1217 pbuf += sprintf(pbuf, " %d:%d", chptr->mode.join_num,
1218 chptr->mode.join_time);
1219 }
1220
1221 if(*chptr->mode.forward &&
1222 (ConfigChannel.use_forward || !IsClient(client_p)))
1223 {
1224 *mbuf++ = 'f';
1225
1226 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1227 pbuf += sprintf(pbuf, " %s", chptr->mode.forward);
1228 }
1229
1230 *mbuf = '\0';
1231
1232 rb_strlcpy(final, buf1, sizeof final);
1233 rb_strlcat(final, buf2, sizeof final);
1234 return final;
1235 }
1236
1237 /* void send_cap_mode_changes(struct Client *client_p,
1238 * struct Client *source_p,
1239 * struct Channel *chptr, int cap, int nocap)
1240 * Input: The client sending(client_p), the source client(source_p),
1241 * the channel to send mode changes for(chptr)
1242 * Output: None.
1243 * Side-effects: Sends the appropriate mode changes to capable servers.
1244 *
1245 * Reverted back to my original design, except that we now keep a count
1246 * of the number of servers which each combination as an optimisation, so
1247 * the capabs combinations which are not needed are not worked out. -A1kmm
1248 *
1249 * Removed most code here because we don't need to be compatible with ircd
1250 * 2.8.21+CSr and stuff. --nenolod
1251 */
1252 void
1253 send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
1254 struct Channel *chptr, struct ChModeChange mode_changes[], int mode_count)
1255 {
1256 static char modebuf[BUFSIZE];
1257 static char parabuf[BUFSIZE];
1258 int i, mbl, pbl, nc, mc, preflen, len;
1259 char *pbuf;
1260 const char *arg;
1261 int dir;
1262 int arglen = 0;
1263
1264 /* Now send to servers... */
1265 mc = 0;
1266 nc = 0;
1267 pbl = 0;
1268 parabuf[0] = 0;
1269 pbuf = parabuf;
1270 dir = MODE_QUERY;
1271
1272 mbl = preflen = sprintf(modebuf, ":%s TMODE %ld %s ",
1273 use_id(source_p), (long) chptr->channelts,
1274 chptr->chname);
1275
1276 /* loop the list of - modes we have */
1277 for (i = 0; i < mode_count; i++)
1278 {
1279 /* if they dont support the cap we need, or they do support a cap they
1280 * cant have, then dont add it to the modebuf.. that way they wont see
1281 * the mode
1282 */
1283 if (mode_changes[i].letter == 0)
1284 continue;
1285
1286 if (!EmptyString(mode_changes[i].id))
1287 arg = mode_changes[i].id;
1288 else
1289 arg = mode_changes[i].arg;
1290
1291 if(arg)
1292 {
1293 arglen = strlen(arg);
1294
1295 /* dont even think about it! --fl */
1296 if(arglen > MODEBUFLEN - 5)
1297 continue;
1298 }
1299
1300 /* if we're creeping past the buf size, we need to send it and make
1301 * another line for the other modes
1302 * XXX - this could give away server topology with uids being
1303 * different lengths, but not much we can do, except possibly break
1304 * them as if they were the longest of the nick or uid at all times,
1305 * which even then won't work as we don't always know the uid -A1kmm.
1306 */
1307 if(arg && ((mc == MAXMODEPARAMSSERV) ||
1308 ((mbl + pbl + arglen + 4) > (BUFSIZE - 3))))
1309 {
1310 if(nc != 0)
1311 sendto_server(client_p, chptr, NOCAPS, NOCAPS,
1312 "%s %s", modebuf, parabuf);
1313 nc = 0;
1314 mc = 0;
1315
1316 mbl = preflen;
1317 pbl = 0;
1318 pbuf = parabuf;
1319 parabuf[0] = 0;
1320 dir = MODE_QUERY;
1321 }
1322
1323 if(dir != mode_changes[i].dir)
1324 {
1325 modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1326 dir = mode_changes[i].dir;
1327 }
1328
1329 modebuf[mbl++] = mode_changes[i].letter;
1330 modebuf[mbl] = 0;
1331 nc++;
1332
1333 if(arg != NULL)
1334 {
1335 len = sprintf(pbuf, "%s ", arg);
1336 pbuf += len;
1337 pbl += len;
1338 mc++;
1339 }
1340 }
1341
1342 if(pbl && parabuf[pbl - 1] == ' ')
1343 parabuf[pbl - 1] = 0;
1344
1345 if(nc != 0)
1346 sendto_server(client_p, chptr, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1347 }
1348
1349 void
1350 resv_chan_forcepart(const char *name, const char *reason, int temp_time)
1351 {
1352 rb_dlink_node *ptr;
1353 rb_dlink_node *next_ptr;
1354 struct Channel *chptr;
1355 struct membership *msptr;
1356 struct Client *target_p;
1357
1358 if(!ConfigChannel.resv_forcepart)
1359 return;
1360
1361 /* for each user on our server in the channel list
1362 * send them a PART, and notify opers.
1363 */
1364 chptr = find_channel(name);
1365 if(chptr != NULL)
1366 {
1367 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->locmembers.head)
1368 {
1369 msptr = ptr->data;
1370 target_p = msptr->client_p;
1371
1372 if(IsExemptResv(target_p))
1373 continue;
1374
1375 sendto_server(target_p, chptr, CAP_TS6, NOCAPS,
1376 ":%s PART %s", target_p->id, chptr->chname);
1377
1378 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
1379 target_p->name, target_p->username,
1380 target_p->host, chptr->chname, target_p->name);
1381
1382 remove_user_from_channel(msptr);
1383
1384 /* notify opers & user they were removed from the channel */
1385 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1386 "Forced PART for %s!%s@%s from %s (%s)",
1387 target_p->name, target_p->username,
1388 target_p->host, name, reason);
1389
1390 if(temp_time > 0)
1391 sendto_one_notice(target_p, ":*** Channel %s is temporarily unavailable on this server.",
1392 name);
1393 else
1394 sendto_one_notice(target_p, ":*** Channel %s is no longer available on this server.",
1395 name);
1396 }
1397 }
1398 }