]> jfr.im git - solanum.git/blob - ircd/channel.c
Merge pull request #303 from edk0/modreload-uaf
[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(client_p, 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(client_p, 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[NAMELEN + USERLEN + HOSTLEN + 6];
543 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
544 char src_althost[NAMELEN + USERLEN + HOSTLEN + 6];
545 char src_ip4host[NAMELEN + 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 if(GET_SS_FAMILY(&who->localClient->ip) == AF_INET6 &&
582 rb_ipv4_from_ipv6((const struct sockaddr_in6 *)&who->localClient->ip, &ip4))
583 {
584 sprintf(src_ip4host, "%s!%s@", who->name, who->username);
585 s4 = src_ip4host + strlen(src_ip4host);
586 rb_inet_ntop_sock((struct sockaddr *)&ip4,
587 s4, src_ip4host + sizeof src_ip4host - s4);
588 s4 = src_ip4host;
589 }
590
591 RB_DLINK_FOREACH(ptr, list->head)
592 {
593 actualBan = ptr->data;
594 if(match(actualBan->banstr, s) ||
595 match(actualBan->banstr, s2) ||
596 match_cidr(actualBan->banstr, s2) ||
597 match_extban(actualBan->banstr, who, chptr, CHFL_BAN) ||
598 (s3 != NULL && match(actualBan->banstr, s3)) ||
599 (s4 != NULL && (match(actualBan->banstr, s4) || match_cidr(actualBan->banstr, s4)))
600 )
601 break;
602 else
603 actualBan = NULL;
604 }
605
606 if((actualBan != NULL) && ConfigChannel.use_except)
607 {
608 RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
609 {
610 actualExcept = ptr->data;
611
612 /* theyre exempted.. */
613 if(match(actualExcept->banstr, s) ||
614 match(actualExcept->banstr, s2) ||
615 match_cidr(actualExcept->banstr, s2) ||
616 match_extban(actualExcept->banstr, who, chptr, CHFL_EXCEPTION) ||
617 (s3 != NULL && match(actualExcept->banstr, s3)))
618 {
619 /* cache the fact theyre not banned */
620 if(msptr != NULL)
621 {
622 msptr->bants = chptr->bants;
623 msptr->flags &= ~CHFL_BANNED;
624 }
625
626 return CHFL_EXCEPTION;
627 }
628 }
629 }
630
631 /* cache the banned/not banned status */
632 if(msptr != NULL)
633 {
634 msptr->bants = chptr->bants;
635
636 if(actualBan != NULL)
637 {
638 msptr->flags |= CHFL_BANNED;
639 return CHFL_BAN;
640 }
641 else
642 {
643 msptr->flags &= ~CHFL_BANNED;
644 return 0;
645 }
646 }
647
648 if (actualBan && actualBan->forward && forward)
649 *forward = actualBan->forward;
650
651 return ((actualBan ? CHFL_BAN : 0));
652 }
653
654 /* is_banned()
655 *
656 * input - channel to check bans for, user to check bans against
657 * optional prebuilt buffers, optional forward channel pointer
658 * output - 1 if banned, else 0
659 * side effects -
660 */
661 int
662 is_banned(struct Channel *chptr, struct Client *who, struct membership *msptr,
663 const char *s, const char *s2, const char **forward)
664 {
665 #if 0
666 if (chptr->last_checked_client != NULL &&
667 who == chptr->last_checked_client &&
668 chptr->last_checked_type == CHFL_BAN &&
669 chptr->last_checked_ts > chptr->bants)
670 return chptr->last_checked_result;
671
672 chptr->last_checked_client = who;
673 chptr->last_checked_type = CHFL_BAN;
674 chptr->last_checked_result = is_banned_list(chptr, &chptr->banlist, who, msptr, s, s2, forward);
675 chptr->last_checked_ts = rb_current_time();
676
677 return chptr->last_checked_result;
678 #else
679 return is_banned_list(chptr, &chptr->banlist, who, msptr, s, s2, forward);
680 #endif
681 }
682
683 /* is_quieted()
684 *
685 * input - channel to check bans for, user to check bans against
686 * optional prebuilt buffers
687 * output - 1 if banned, else 0
688 * side effects -
689 */
690 int
691 is_quieted(struct Channel *chptr, struct Client *who, struct membership *msptr,
692 const char *s, const char *s2)
693 {
694 #if 0
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 #else
708 return is_banned_list(chptr, &chptr->quietlist, who, msptr, s, s2, NULL);
709 #endif
710 }
711
712 /* can_join()
713 *
714 * input - client to check, channel to check for, key
715 * output - reason for not being able to join, else 0, channel name to forward to
716 * side effects -
717 * caveats - this function should only be called on a local user.
718 */
719 int
720 can_join(struct Client *source_p, struct Channel *chptr, const char *key, const char **forward)
721 {
722 rb_dlink_node *invite = NULL;
723 rb_dlink_node *ptr;
724 struct Ban *invex = NULL;
725 char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
726 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
727 char src_althost[NAMELEN + USERLEN + HOSTLEN + 6];
728 int use_althost = 0;
729 int i = 0;
730 hook_data_channel moduledata;
731
732 s_assert(source_p->localClient != NULL);
733
734 moduledata.client = source_p;
735 moduledata.chptr = chptr;
736 moduledata.approved = 0;
737
738 sprintf(src_host, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
739 sprintf(src_iphost, "%s!%s@%s", source_p->name, source_p->username, source_p->sockhost);
740 if(source_p->localClient->mangledhost != NULL)
741 {
742 /* if host mangling mode enabled, also check their real host */
743 if(!strcmp(source_p->host, source_p->localClient->mangledhost))
744 {
745 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->orighost);
746 use_althost = 1;
747 }
748 /* if host mangling mode not enabled and no other spoof,
749 * also check the mangled form of their host */
750 else if (!IsDynSpoof(source_p))
751 {
752 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->localClient->mangledhost);
753 use_althost = 1;
754 }
755 }
756
757 if((is_banned(chptr, source_p, NULL, src_host, src_iphost, forward)) == CHFL_BAN)
758 {
759 moduledata.approved = ERR_BANNEDFROMCHAN;
760 goto finish_join_check;
761 }
762
763 if(*chptr->mode.key && (EmptyString(key) || irccmp(chptr->mode.key, key)))
764 {
765 moduledata.approved = ERR_BADCHANNELKEY;
766 goto finish_join_check;
767 }
768
769 /* All checks from this point on will forward... */
770 if(forward)
771 *forward = chptr->mode.forward;
772
773 if(chptr->mode.mode & MODE_INVITEONLY)
774 {
775 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
776 {
777 if(invite->data == chptr)
778 break;
779 }
780 if(invite == NULL)
781 {
782 if(!ConfigChannel.use_invex)
783 moduledata.approved = ERR_INVITEONLYCHAN;
784 RB_DLINK_FOREACH(ptr, chptr->invexlist.head)
785 {
786 invex = ptr->data;
787 if(match(invex->banstr, src_host)
788 || match(invex->banstr, src_iphost)
789 || match_cidr(invex->banstr, src_iphost)
790 || match_extban(invex->banstr, source_p, chptr, CHFL_INVEX)
791 || (use_althost && match(invex->banstr, src_althost)))
792 break;
793 }
794 if(ptr == NULL)
795 moduledata.approved = ERR_INVITEONLYCHAN;
796 }
797 }
798
799 if(chptr->mode.limit &&
800 rb_dlink_list_length(&chptr->members) >= (unsigned long) chptr->mode.limit)
801 i = ERR_CHANNELISFULL;
802 if(chptr->mode.mode & MODE_REGONLY && EmptyString(source_p->user->suser))
803 i = ERR_NEEDREGGEDNICK;
804 /* join throttling stuff --nenolod */
805 else if(chptr->mode.join_num > 0 && chptr->mode.join_time > 0)
806 {
807 if ((rb_current_time() - chptr->join_delta <=
808 chptr->mode.join_time) && (chptr->join_count >=
809 chptr->mode.join_num))
810 i = ERR_THROTTLE;
811 }
812
813 /* allow /invite to override +l/+r/+j also -- jilles */
814 if (i != 0 && invite == NULL)
815 {
816 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
817 {
818 if(invite->data == chptr)
819 break;
820 }
821 if (invite == NULL)
822 moduledata.approved = i;
823 }
824
825 finish_join_check:
826 call_hook(h_can_join, &moduledata);
827
828 return moduledata.approved;
829 }
830
831 /* can_send()
832 *
833 * input - user to check in channel, membership pointer
834 * output - whether can explicitly send or not, else CAN_SEND_NONOP
835 * side effects -
836 */
837 int
838 can_send(struct Channel *chptr, struct Client *source_p, struct membership *msptr)
839 {
840 hook_data_channel_approval moduledata;
841
842 moduledata.approved = CAN_SEND_NONOP;
843 moduledata.dir = MODE_QUERY;
844
845 if(IsServer(source_p) || IsService(source_p))
846 return CAN_SEND_OPV;
847
848 if(MyClient(source_p) && hash_find_resv(chptr->chname) &&
849 !IsOper(source_p) && !IsExemptResv(source_p))
850 moduledata.approved = CAN_SEND_NO;
851
852 if(msptr == NULL)
853 {
854 msptr = find_channel_membership(chptr, source_p);
855
856 if(msptr == NULL)
857 {
858 /* if its +m or +n and theyre not in the channel,
859 * they cant send. we dont check bans here because
860 * theres no possibility of caching them --fl
861 */
862 if(chptr->mode.mode & MODE_NOPRIVMSGS || chptr->mode.mode & MODE_MODERATED)
863 moduledata.approved = CAN_SEND_NO;
864 else
865 moduledata.approved = CAN_SEND_NONOP;
866
867 return moduledata.approved;
868 }
869 }
870
871 if(chptr->mode.mode & MODE_MODERATED)
872 moduledata.approved = CAN_SEND_NO;
873
874 if(MyClient(source_p))
875 {
876 /* cached can_send */
877 if(msptr->bants == chptr->bants)
878 {
879 if(can_send_banned(msptr))
880 moduledata.approved = CAN_SEND_NO;
881 }
882 else if(is_banned(chptr, source_p, msptr, NULL, NULL, NULL) == CHFL_BAN
883 || is_quieted(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN)
884 moduledata.approved = CAN_SEND_NO;
885 }
886
887 if(is_chanop_voiced(msptr))
888 moduledata.approved = CAN_SEND_OPV;
889
890 moduledata.client = source_p;
891 moduledata.chptr = msptr->chptr;
892 moduledata.msptr = msptr;
893 moduledata.target = NULL;
894 moduledata.dir = (moduledata.approved == CAN_SEND_NO) ? MODE_ADD : MODE_QUERY;
895
896 call_hook(h_can_send, &moduledata);
897
898 return moduledata.approved;
899 }
900
901 /*
902 * flood_attack_channel
903 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
904 * says NOTICE must not auto reply
905 * - pointer to source Client
906 * - pointer to target channel
907 * output - true if target is under flood attack
908 * side effects - check for flood attack on target chptr
909 */
910 bool
911 flood_attack_channel(int p_or_n, struct Client *source_p, struct Channel *chptr, char *chname)
912 {
913 int delta;
914
915 if(GlobalSetOptions.floodcount && MyClient(source_p))
916 {
917 if((chptr->first_received_message_time + 1) < rb_current_time())
918 {
919 delta = rb_current_time() - chptr->first_received_message_time;
920 chptr->received_number_of_privmsgs -= delta;
921 chptr->first_received_message_time = rb_current_time();
922 if(chptr->received_number_of_privmsgs <= 0)
923 {
924 chptr->received_number_of_privmsgs = 0;
925 chptr->flood_noticed = 0;
926 }
927 }
928
929 if((chptr->received_number_of_privmsgs >= GlobalSetOptions.floodcount)
930 || chptr->flood_noticed)
931 {
932 if(chptr->flood_noticed == 0)
933 {
934 sendto_realops_snomask(SNO_BOTS, *chptr->chname == '&' ? L_ALL : L_NETWIDE,
935 "Possible Flooder %s[%s@%s] on %s target: %s",
936 source_p->name, source_p->username,
937 source_p->orighost,
938 source_p->servptr->name, chptr->chname);
939 chptr->flood_noticed = 1;
940
941 /* Add a bit of penalty */
942 chptr->received_number_of_privmsgs += 2;
943 }
944 if(MyClient(source_p) && (p_or_n != 1))
945 sendto_one(source_p,
946 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
947 me.name, source_p->name, chptr->chname);
948 return true;
949 }
950 else
951 chptr->received_number_of_privmsgs++;
952 }
953
954 return false;
955 }
956
957 /* find_bannickchange_channel()
958 * Input: client to check
959 * Output: channel preventing nick change
960 */
961 struct Channel *
962 find_bannickchange_channel(struct Client *client_p)
963 {
964 struct Channel *chptr;
965 struct membership *msptr;
966 rb_dlink_node *ptr;
967 char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
968 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
969
970 if (!MyClient(client_p))
971 return NULL;
972
973 sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
974 sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
975
976 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
977 {
978 msptr = ptr->data;
979 chptr = msptr->chptr;
980 if (is_chanop_voiced(msptr))
981 continue;
982 /* cached can_send */
983 if (msptr->bants == chptr->bants)
984 {
985 if (can_send_banned(msptr))
986 return chptr;
987 }
988 else if (is_banned(chptr, client_p, msptr, src_host, src_iphost, NULL) == CHFL_BAN
989 || is_quieted(chptr, client_p, msptr, src_host, src_iphost) == CHFL_BAN)
990 return chptr;
991 }
992 return NULL;
993 }
994
995 /* void check_spambot_warning(struct Client *source_p)
996 * Input: Client to check, channel name or NULL if this is a part.
997 * Output: none
998 * Side-effects: Updates the client's oper_warn_count_down, warns the
999 * IRC operators if necessary, and updates join_leave_countdown as
1000 * needed.
1001 */
1002 void
1003 check_spambot_warning(struct Client *source_p, const char *name)
1004 {
1005 int t_delta;
1006 int decrement_count;
1007 if((GlobalSetOptions.spam_num &&
1008 (source_p->localClient->join_leave_count >= GlobalSetOptions.spam_num)))
1009 {
1010 if(source_p->localClient->oper_warn_count_down > 0)
1011 source_p->localClient->oper_warn_count_down--;
1012 else
1013 source_p->localClient->oper_warn_count_down = 0;
1014 if(source_p->localClient->oper_warn_count_down == 0 &&
1015 name != NULL)
1016 {
1017 /* Its already known as a possible spambot */
1018 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
1019 "User %s (%s@%s) trying to join %s is a possible spambot",
1020 source_p->name,
1021 source_p->username, source_p->orighost, name);
1022 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
1023 }
1024 }
1025 else
1026 {
1027 if((t_delta =
1028 (rb_current_time() - source_p->localClient->last_leave_time)) >
1029 JOIN_LEAVE_COUNT_EXPIRE_TIME)
1030 {
1031 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
1032 if(name != NULL)
1033 ;
1034 else if(decrement_count > source_p->localClient->join_leave_count)
1035 source_p->localClient->join_leave_count = 0;
1036 else
1037 source_p->localClient->join_leave_count -= decrement_count;
1038 }
1039 else
1040 {
1041 if((rb_current_time() -
1042 (source_p->localClient->last_join_time)) < GlobalSetOptions.spam_time)
1043 {
1044 /* oh, its a possible spambot */
1045 source_p->localClient->join_leave_count++;
1046 }
1047 }
1048 if(name != NULL)
1049 source_p->localClient->last_join_time = rb_current_time();
1050 else
1051 source_p->localClient->last_leave_time = rb_current_time();
1052 }
1053 }
1054
1055 /* check_splitmode()
1056 *
1057 * input -
1058 * output -
1059 * side effects - compares usercount and servercount against their split
1060 * values and adjusts splitmode accordingly
1061 */
1062 void
1063 check_splitmode(void *unused)
1064 {
1065 if(splitchecking && (ConfigChannel.no_join_on_split || ConfigChannel.no_create_on_split))
1066 {
1067 /* not split, we're being asked to check now because someone
1068 * has left
1069 */
1070 if(!splitmode)
1071 {
1072 if(eob_count < split_servers || Count.total < split_users)
1073 {
1074 splitmode = 1;
1075 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1076 "Network split, activating splitmode");
1077 check_splitmode_ev = rb_event_addish("check_splitmode", check_splitmode, NULL, 2);
1078 }
1079 }
1080 /* in splitmode, check whether its finished */
1081 else if(eob_count >= split_servers && Count.total >= split_users)
1082 {
1083 splitmode = 0;
1084
1085 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1086 "Network rejoined, deactivating splitmode");
1087
1088 rb_event_delete(check_splitmode_ev);
1089 check_splitmode_ev = NULL;
1090 }
1091 }
1092 }
1093
1094
1095 /* allocate_topic()
1096 *
1097 * input - channel to allocate topic for
1098 * output - 1 on success, else 0
1099 * side effects - channel gets a topic allocated
1100 */
1101 static void
1102 allocate_topic(struct Channel *chptr)
1103 {
1104 void *ptr;
1105
1106 if(chptr == NULL)
1107 return;
1108
1109 ptr = rb_bh_alloc(topic_heap);
1110
1111 /* Basically we allocate one large block for the topic and
1112 * the topic info. We then split it up into two and shove it
1113 * in the chptr
1114 */
1115 chptr->topic = ptr;
1116 chptr->topic_info = (char *) ptr + TOPICLEN + 1;
1117 *chptr->topic = '\0';
1118 *chptr->topic_info = '\0';
1119 }
1120
1121 /* free_topic()
1122 *
1123 * input - channel which has topic to free
1124 * output -
1125 * side effects - channels topic is free'd
1126 */
1127 static void
1128 free_topic(struct Channel *chptr)
1129 {
1130 void *ptr;
1131
1132 if(chptr == NULL || chptr->topic == NULL)
1133 return;
1134
1135 /* This is safe for now - If you change allocate_topic you
1136 * MUST change this as well
1137 */
1138 ptr = chptr->topic;
1139 rb_bh_free(topic_heap, ptr);
1140 chptr->topic = NULL;
1141 chptr->topic_info = NULL;
1142 }
1143
1144 /* set_channel_topic()
1145 *
1146 * input - channel, topic to set, topic info and topic ts
1147 * output -
1148 * side effects - channels topic, topic info and TS are set.
1149 */
1150 void
1151 set_channel_topic(struct Channel *chptr, const char *topic, const char *topic_info, time_t topicts)
1152 {
1153 if(strlen(topic) > 0)
1154 {
1155 if(chptr->topic == NULL)
1156 allocate_topic(chptr);
1157 rb_strlcpy(chptr->topic, topic, TOPICLEN + 1);
1158 rb_strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
1159 chptr->topic_time = topicts;
1160 }
1161 else
1162 {
1163 if(chptr->topic != NULL)
1164 free_topic(chptr);
1165 chptr->topic_time = 0;
1166 }
1167 }
1168
1169 /* channel_modes()
1170 *
1171 * inputs - pointer to channel
1172 * - pointer to client
1173 * output - string with simple modes
1174 * side effects - result from previous calls overwritten
1175 *
1176 * Stolen from ShadowIRCd 4 --nenolod
1177 */
1178 const char *
1179 channel_modes(struct Channel *chptr, struct Client *client_p)
1180 {
1181 int i;
1182 char buf1[BUFSIZE];
1183 char buf2[BUFSIZE];
1184 static char final[BUFSIZE];
1185 char *mbuf = buf1;
1186 char *pbuf = buf2;
1187
1188 *mbuf++ = '+';
1189 *pbuf = '\0';
1190
1191 for (i = 0; i < 256; i++)
1192 {
1193 if(chmode_table[i].set_func == chm_hidden && (!IsOper(client_p) || !IsClient(client_p)))
1194 continue;
1195 if(chptr->mode.mode & chmode_flags[i])
1196 *mbuf++ = i;
1197 }
1198
1199 if(chptr->mode.limit)
1200 {
1201 *mbuf++ = 'l';
1202
1203 if(!IsClient(client_p) || IsMember(client_p, chptr))
1204 pbuf += sprintf(pbuf, " %d", chptr->mode.limit);
1205 }
1206
1207 if(*chptr->mode.key)
1208 {
1209 *mbuf++ = 'k';
1210
1211 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1212 pbuf += sprintf(pbuf, " %s", chptr->mode.key);
1213 }
1214
1215 if(chptr->mode.join_num)
1216 {
1217 *mbuf++ = 'j';
1218
1219 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1220 pbuf += sprintf(pbuf, " %d:%d", chptr->mode.join_num,
1221 chptr->mode.join_time);
1222 }
1223
1224 if(*chptr->mode.forward &&
1225 (ConfigChannel.use_forward || !IsClient(client_p)))
1226 {
1227 *mbuf++ = 'f';
1228
1229 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
1230 pbuf += sprintf(pbuf, " %s", chptr->mode.forward);
1231 }
1232
1233 *mbuf = '\0';
1234
1235 rb_strlcpy(final, buf1, sizeof final);
1236 rb_strlcat(final, buf2, sizeof final);
1237 return final;
1238 }
1239
1240 /* void send_cap_mode_changes(struct Client *client_p,
1241 * struct Client *source_p,
1242 * struct Channel *chptr, int cap, int nocap)
1243 * Input: The client sending(client_p), the source client(source_p),
1244 * the channel to send mode changes for(chptr)
1245 * Output: None.
1246 * Side-effects: Sends the appropriate mode changes to capable servers.
1247 *
1248 * Reverted back to my original design, except that we now keep a count
1249 * of the number of servers which each combination as an optimisation, so
1250 * the capabs combinations which are not needed are not worked out. -A1kmm
1251 *
1252 * Removed most code here because we don't need to be compatible with ircd
1253 * 2.8.21+CSr and stuff. --nenolod
1254 */
1255 void
1256 send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
1257 struct Channel *chptr, struct ChModeChange mode_changes[], int mode_count)
1258 {
1259 static char modebuf[BUFSIZE];
1260 static char parabuf[BUFSIZE];
1261 int i, mbl, pbl, nc, mc, preflen, len;
1262 char *pbuf;
1263 const char *arg;
1264 int dir;
1265 int arglen = 0;
1266
1267 /* Now send to servers... */
1268 mc = 0;
1269 nc = 0;
1270 pbl = 0;
1271 parabuf[0] = 0;
1272 pbuf = parabuf;
1273 dir = MODE_QUERY;
1274
1275 mbl = preflen = sprintf(modebuf, ":%s TMODE %ld %s ",
1276 use_id(source_p), (long) chptr->channelts,
1277 chptr->chname);
1278
1279 /* loop the list of - modes we have */
1280 for (i = 0; i < mode_count; i++)
1281 {
1282 /* if they dont support the cap we need, or they do support a cap they
1283 * cant have, then dont add it to the modebuf.. that way they wont see
1284 * the mode
1285 */
1286 if (mode_changes[i].letter == 0)
1287 continue;
1288
1289 if (!EmptyString(mode_changes[i].id))
1290 arg = mode_changes[i].id;
1291 else
1292 arg = mode_changes[i].arg;
1293
1294 if(arg)
1295 {
1296 arglen = strlen(arg);
1297
1298 /* dont even think about it! --fl */
1299 if(arglen > MODEBUFLEN - 5)
1300 continue;
1301 }
1302
1303 /* if we're creeping past the buf size, we need to send it and make
1304 * another line for the other modes
1305 * XXX - this could give away server topology with uids being
1306 * different lengths, but not much we can do, except possibly break
1307 * them as if they were the longest of the nick or uid at all times,
1308 * which even then won't work as we don't always know the uid -A1kmm.
1309 */
1310 if(arg && ((mc == MAXMODEPARAMSSERV) ||
1311 ((mbl + pbl + arglen + 4) > (BUFSIZE - 3))))
1312 {
1313 if(nc != 0)
1314 sendto_server(client_p, chptr, NOCAPS, NOCAPS,
1315 "%s %s", modebuf, parabuf);
1316 nc = 0;
1317 mc = 0;
1318
1319 mbl = preflen;
1320 pbl = 0;
1321 pbuf = parabuf;
1322 parabuf[0] = 0;
1323 dir = MODE_QUERY;
1324 }
1325
1326 if(dir != mode_changes[i].dir)
1327 {
1328 modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1329 dir = mode_changes[i].dir;
1330 }
1331
1332 modebuf[mbl++] = mode_changes[i].letter;
1333 modebuf[mbl] = 0;
1334 nc++;
1335
1336 if(arg != NULL)
1337 {
1338 len = sprintf(pbuf, "%s ", arg);
1339 pbuf += len;
1340 pbl += len;
1341 mc++;
1342 }
1343 }
1344
1345 if(pbl && parabuf[pbl - 1] == ' ')
1346 parabuf[pbl - 1] = 0;
1347
1348 if(nc != 0)
1349 sendto_server(client_p, chptr, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1350 }
1351
1352 void
1353 resv_chan_forcepart(const char *name, const char *reason, int temp_time)
1354 {
1355 rb_dlink_node *ptr;
1356 rb_dlink_node *next_ptr;
1357 struct Channel *chptr;
1358 struct membership *msptr;
1359 struct Client *target_p;
1360
1361 if(!ConfigChannel.resv_forcepart)
1362 return;
1363
1364 /* for each user on our server in the channel list
1365 * send them a PART, and notify opers.
1366 */
1367 chptr = find_channel(name);
1368 if(chptr != NULL)
1369 {
1370 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->locmembers.head)
1371 {
1372 msptr = ptr->data;
1373 target_p = msptr->client_p;
1374
1375 if(IsExemptResv(target_p))
1376 continue;
1377
1378 sendto_server(target_p, chptr, CAP_TS6, NOCAPS,
1379 ":%s PART %s", target_p->id, chptr->chname);
1380
1381 sendto_channel_local(target_p, ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
1382 target_p->name, target_p->username,
1383 target_p->host, chptr->chname, target_p->name);
1384
1385 remove_user_from_channel(msptr);
1386
1387 /* notify opers & user they were removed from the channel */
1388 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1389 "Forced PART for %s!%s@%s from %s (%s)",
1390 target_p->name, target_p->username,
1391 target_p->host, name, reason);
1392
1393 if(temp_time > 0)
1394 sendto_one_notice(target_p, ":*** Channel %s is temporarily unavailable on this server.",
1395 name);
1396 else
1397 sendto_one_notice(target_p, ":*** Channel %s is no longer available on this server.",
1398 name);
1399 }
1400 }
1401 }