]> jfr.im git - irc/rqf/shadowircd.git/blame - src/channel.c
Add chmode +N, which prevents nickchanges.
[irc/rqf/shadowircd.git] / src / channel.c
CommitLineData
212380e3 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 *
83294285 24 * $Id: channel.c 3580 2007-11-07 23:45:14Z jilles $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "channel.h"
fba62b01 29#include "chmode.h"
212380e3 30#include "client.h"
31#include "common.h"
32#include "hash.h"
33#include "hook.h"
13ae2f4b 34#include "match.h"
212380e3 35#include "ircd.h"
36#include "numeric.h"
37#include "s_serv.h" /* captab */
38#include "s_user.h"
39#include "send.h"
40#include "whowas.h"
41#include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
42#include "s_newconf.h"
d3455e2c 43#include "logger.h"
3472ff3f 44#include "packet.h"
212380e3 45
9813daca 46struct config_channel_entry ConfigChannel;
1a218aaf 47rb_dlink_list global_channel_list;
5475a932
VY
48static rb_bh *channel_heap;
49static rb_bh *ban_heap;
50static rb_bh *topic_heap;
51static rb_bh *member_heap;
52
212380e3 53static int channel_capabs[] = { CAP_EX, CAP_IE,
54 CAP_SERVICE,
55 CAP_TS6
56};
57
58#define NCHCAPS (sizeof(channel_capabs)/sizeof(int))
59#define NCHCAP_COMBOS (1 << NCHCAPS)
60
61static struct ChCapCombo chcap_combos[NCHCAP_COMBOS];
62
63static void free_topic(struct Channel *chptr);
64
65static int h_can_join;
67b90240
JH
66static int h_can_create_channel;
67static int h_channel_join;
212380e3 68
69/* init_channels()
70 *
71 * input -
72 * output -
73 * side effects - initialises the various blockheaps
74 */
75void
76init_channels(void)
77{
dd9be678
WP
78 channel_heap = rb_bh_create(sizeof(struct Channel), CHANNEL_HEAP_SIZE, "channel_heap");
79 ban_heap = rb_bh_create(sizeof(struct Ban), BAN_HEAP_SIZE, "ban_heap");
80 topic_heap = rb_bh_create(TOPICLEN + 1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE, "topic_heap");
81 member_heap = rb_bh_create(sizeof(struct membership), MEMBER_HEAP_SIZE, "member_heap");
212380e3 82
83 h_can_join = register_hook("can_join");
67b90240
JH
84 h_channel_join = register_hook("channel_join");
85 h_can_create_channel = register_hook("can_create_channel");
212380e3 86}
87
88/*
89 * allocate_channel - Allocates a channel
90 */
91struct Channel *
92allocate_channel(const char *chname)
93{
94 struct Channel *chptr;
6e9b4415 95 chptr = rb_bh_alloc(channel_heap);
62d28946 96 chptr->chname = rb_strdup(chname);
212380e3 97 return (chptr);
98}
99
100void
101free_channel(struct Channel *chptr)
102{
90a3c35b 103 rb_free(chptr->chname);
6e9b4415 104 rb_bh_free(channel_heap, chptr);
212380e3 105}
106
107struct Ban *
108allocate_ban(const char *banstr, const char *who)
109{
110 struct Ban *bptr;
6e9b4415 111 bptr = rb_bh_alloc(ban_heap);
62d28946
VY
112 bptr->banstr = rb_strdup(banstr);
113 bptr->who = rb_strdup(who);
212380e3 114
115 return (bptr);
116}
117
118void
119free_ban(struct Ban *bptr)
120{
90a3c35b
VY
121 rb_free(bptr->banstr);
122 rb_free(bptr->who);
6e9b4415 123 rb_bh_free(ban_heap, bptr);
212380e3 124}
125
126
127/* find_channel_membership()
128 *
129 * input - channel to find them in, client to find
130 * output - membership of client in channel, else NULL
131 * side effects -
132 */
133struct membership *
134find_channel_membership(struct Channel *chptr, struct Client *client_p)
135{
136 struct membership *msptr;
af81d5a0 137 rb_dlink_node *ptr;
212380e3 138
139 if(!IsClient(client_p))
140 return NULL;
141
142 /* Pick the most efficient list to use to be nice to things like
143 * CHANSERV which could be in a large number of channels
144 */
af81d5a0 145 if(rb_dlink_list_length(&chptr->members) < rb_dlink_list_length(&client_p->user->channel))
212380e3 146 {
8e69bb4e 147 RB_DLINK_FOREACH(ptr, chptr->members.head)
212380e3 148 {
149 msptr = ptr->data;
150
151 if(msptr->client_p == client_p)
152 return msptr;
153 }
154 }
155 else
156 {
8e69bb4e 157 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3 158 {
159 msptr = ptr->data;
160
161 if(msptr->chptr == chptr)
162 return msptr;
163 }
164 }
165
166 return NULL;
167}
168
169/* find_channel_status()
170 *
171 * input - membership to get status for, whether we can combine flags
172 * output - flags of user on channel
173 * side effects -
174 */
175const char *
176find_channel_status(struct membership *msptr, int combine)
177{
178 static char buffer[3];
179 char *p;
180
181 p = buffer;
182
183 if(is_chanop(msptr))
184 {
185 if(!combine)
186 return "@";
187 *p++ = '@';
188 }
189
190 if(is_voiced(msptr))
191 *p++ = '+';
192
193 *p = '\0';
194 return buffer;
195}
196
197/* add_user_to_channel()
198 *
199 * input - channel to add client to, client to add, channel flags
200 * output -
201 * side effects - user is added to channel
202 */
203void
204add_user_to_channel(struct Channel *chptr, struct Client *client_p, int flags)
205{
206 struct membership *msptr;
207
208 s_assert(client_p->user != NULL);
209 if(client_p->user == NULL)
210 return;
211
6e9b4415 212 msptr = rb_bh_alloc(member_heap);
212380e3 213
214 msptr->chptr = chptr;
215 msptr->client_p = client_p;
216 msptr->flags = flags;
217
af81d5a0
WP
218 rb_dlinkAdd(msptr, &msptr->usernode, &client_p->user->channel);
219 rb_dlinkAdd(msptr, &msptr->channode, &chptr->members);
212380e3 220
221 if(MyClient(client_p))
af81d5a0 222 rb_dlinkAdd(msptr, &msptr->locchannode, &chptr->locmembers);
212380e3 223}
224
225/* remove_user_from_channel()
226 *
227 * input - membership pointer to remove from channel
228 * output -
229 * side effects - membership (thus user) is removed from channel
230 */
231void
232remove_user_from_channel(struct membership *msptr)
233{
234 struct Client *client_p;
235 struct Channel *chptr;
236 s_assert(msptr != NULL);
237 if(msptr == NULL)
238 return;
239
240 client_p = msptr->client_p;
241 chptr = msptr->chptr;
242
af81d5a0
WP
243 rb_dlinkDelete(&msptr->usernode, &client_p->user->channel);
244 rb_dlinkDelete(&msptr->channode, &chptr->members);
212380e3 245
246 if(client_p->servptr == &me)
af81d5a0 247 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
212380e3 248
af81d5a0 249 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
212380e3 250 destroy_channel(chptr);
251
6e9b4415 252 rb_bh_free(member_heap, msptr);
212380e3 253
254 return;
255}
256
257/* remove_user_from_channels()
258 *
259 * input - user to remove from all channels
260 * output -
261 * side effects - user is removed from all channels
262 */
263void
264remove_user_from_channels(struct Client *client_p)
265{
266 struct Channel *chptr;
267 struct membership *msptr;
af81d5a0 268 rb_dlink_node *ptr;
90a3c35b 269 rb_dlink_node *next_ptr;
212380e3 270
271 if(client_p == NULL)
272 return;
273
90a3c35b 274 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->user->channel.head)
212380e3 275 {
276 msptr = ptr->data;
277 chptr = msptr->chptr;
278
af81d5a0 279 rb_dlinkDelete(&msptr->channode, &chptr->members);
212380e3 280
281 if(client_p->servptr == &me)
af81d5a0 282 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
212380e3 283
af81d5a0 284 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
212380e3 285 destroy_channel(chptr);
286
6e9b4415 287 rb_bh_free(member_heap, msptr);
212380e3 288 }
289
290 client_p->user->channel.head = client_p->user->channel.tail = NULL;
291 client_p->user->channel.length = 0;
292}
293
294/* invalidate_bancache_user()
295 *
296 * input - user to invalidate ban cache for
297 * output -
298 * side effects - ban cache is invalidated for all memberships of that user
299 * to be used after a nick change
300 */
301void
302invalidate_bancache_user(struct Client *client_p)
303{
304 struct membership *msptr;
af81d5a0 305 rb_dlink_node *ptr;
212380e3 306
307 if(client_p == NULL)
308 return;
309
8e69bb4e 310 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3 311 {
312 msptr = ptr->data;
313 msptr->bants = 0;
314 msptr->flags &= ~CHFL_BANNED;
315 }
316}
317
318/* check_channel_name()
319 *
320 * input - channel name
321 * output - 1 if valid channel name, else 0
322 * side effects -
323 */
324int
325check_channel_name(const char *name)
326{
327 s_assert(name != NULL);
328 if(name == NULL)
329 return 0;
330
331 for (; *name; ++name)
332 {
333 if(!IsChanChar(*name))
334 return 0;
335 }
336
337 return 1;
338}
339
340/* free_channel_list()
341 *
af81d5a0 342 * input - rb_dlink list to free
212380e3 343 * output -
344 * side effects - list of b/e/I modes is cleared
345 */
346void
af81d5a0 347free_channel_list(rb_dlink_list * list)
212380e3 348{
af81d5a0 349 rb_dlink_node *ptr;
90a3c35b 350 rb_dlink_node *next_ptr;
212380e3 351 struct Ban *actualBan;
352
90a3c35b 353 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
212380e3 354 {
355 actualBan = ptr->data;
356 free_ban(actualBan);
357 }
358
359 list->head = list->tail = NULL;
360 list->length = 0;
361}
362
363/* destroy_channel()
364 *
365 * input - channel to destroy
366 * output -
367 * side effects - channel is obliterated
368 */
369void
370destroy_channel(struct Channel *chptr)
371{
90a3c35b 372 rb_dlink_node *ptr, *next_ptr;
212380e3 373
90a3c35b 374 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
212380e3 375 {
376 del_invite(chptr, ptr->data);
377 }
378
379 /* free all bans/exceptions/denies */
380 free_channel_list(&chptr->banlist);
381 free_channel_list(&chptr->exceptlist);
382 free_channel_list(&chptr->invexlist);
fea1ad52 383 free_channel_list(&chptr->quietlist);
212380e3 384
385 /* Free the topic */
386 free_topic(chptr);
387
af81d5a0 388 rb_dlinkDelete(&chptr->node, &global_channel_list);
212380e3 389 del_from_channel_hash(chptr->chname, chptr);
390 free_channel(chptr);
391}
392
393/* channel_pub_or_secret()
394 *
395 * input - channel
396 * output - "=" if public, "@" if secret, else "*"
397 * side effects -
398 */
399static const char *
400channel_pub_or_secret(struct Channel *chptr)
401{
402 if(PubChannel(chptr))
403 return ("=");
404 else if(SecretChannel(chptr))
405 return ("@");
406 return ("*");
407}
408
409/* channel_member_names()
410 *
411 * input - channel to list, client to list to, show endofnames
412 * output -
413 * side effects - client is given list of users on channel
414 */
415void
416channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eon)
417{
418 struct membership *msptr;
419 struct Client *target_p;
af81d5a0 420 rb_dlink_node *ptr;
212380e3 421 char lbuf[BUFSIZE];
422 char *t;
423 int mlen;
424 int tlen;
425 int cur_len;
426 int is_member;
427 int stack = IsCapable(client_p, CLICAP_MULTI_PREFIX);
428
429 if(ShowChannel(client_p, chptr))
430 {
431 is_member = IsMember(client_p, chptr);
432
38e6acdd 433 cur_len = mlen = rb_sprintf(lbuf, form_str(RPL_NAMREPLY),
212380e3 434 me.name, client_p->name,
435 channel_pub_or_secret(chptr), chptr->chname);
436
437 t = lbuf + cur_len;
438
8e69bb4e 439 RB_DLINK_FOREACH(ptr, chptr->members.head)
212380e3 440 {
441 msptr = ptr->data;
442 target_p = msptr->client_p;
443
444 if(IsInvisible(target_p) && !is_member)
445 continue;
446
447 /* space, possible "@+" prefix */
448 if(cur_len + strlen(target_p->name) + 3 >= BUFSIZE - 3)
449 {
450 *(t - 1) = '\0';
451 sendto_one(client_p, "%s", lbuf);
452 cur_len = mlen;
453 t = lbuf + mlen;
454 }
455
38e6acdd 456 tlen = rb_sprintf(t, "%s%s ", find_channel_status(msptr, stack),
212380e3 457 target_p->name);
458
459 cur_len += tlen;
460 t += tlen;
461 }
462
463 /* The old behaviour here was to always output our buffer,
464 * even if there are no clients we can show. This happens
465 * when a client does "NAMES" with no parameters, and all
466 * the clients on a -sp channel are +i. I dont see a good
467 * reason for keeping that behaviour, as it just wastes
468 * bandwidth. --anfl
469 */
470 if(cur_len != mlen)
471 {
472 *(t - 1) = '\0';
473 sendto_one(client_p, "%s", lbuf);
474 }
475 }
476
477 if(show_eon)
478 sendto_one(client_p, form_str(RPL_ENDOFNAMES),
479 me.name, client_p->name, chptr->chname);
480}
481
482/* del_invite()
483 *
484 * input - channel to remove invite from, client to remove
485 * output -
486 * side effects - user is removed from invite list, if exists
487 */
488void
489del_invite(struct Channel *chptr, struct Client *who)
490{
af81d5a0
WP
491 rb_dlinkFindDestroy(who, &chptr->invites);
492 rb_dlinkFindDestroy(chptr, &who->user->invited);
212380e3 493}
494
495/* is_banned()
496 *
497 * input - channel to check bans for, user to check bans against
498 * optional prebuilt buffers
499 * output - 1 if banned, else 0
500 * side effects -
501 */
502int
503is_banned(struct Channel *chptr, struct Client *who, struct membership *msptr,
504 const char *s, const char *s2)
505{
506 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
507 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
508 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
509 char *s3 = NULL;
af81d5a0 510 rb_dlink_node *ptr;
212380e3 511 struct Ban *actualBan = NULL;
512 struct Ban *actualExcept = NULL;
513
514 if(!MyClient(who))
515 return 0;
516
517 /* if the buffers havent been built, do it here */
518 if(s == NULL)
519 {
38e6acdd
WP
520 rb_sprintf(src_host, "%s!%s@%s", who->name, who->username, who->host);
521 rb_sprintf(src_iphost, "%s!%s@%s", who->name, who->username, who->sockhost);
212380e3 522
523 s = src_host;
524 s2 = src_iphost;
525 }
526 if(who->localClient->mangledhost != NULL)
527 {
528 /* if host mangling mode enabled, also check their real host */
529 if(!strcmp(who->host, who->localClient->mangledhost))
530 {
38e6acdd 531 rb_sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->orighost);
212380e3 532 s3 = src_althost;
533 }
534 /* if host mangling mode not enabled and no other spoof,
535 * also check the mangled form of their host */
536 else if (!IsDynSpoof(who))
537 {
38e6acdd 538 rb_sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->localClient->mangledhost);
212380e3 539 s3 = src_althost;
540 }
541 }
542
8e69bb4e 543 RB_DLINK_FOREACH(ptr, chptr->banlist.head)
212380e3 544 {
545 actualBan = ptr->data;
546 if(match(actualBan->banstr, s) ||
547 match(actualBan->banstr, s2) ||
548 match_cidr(actualBan->banstr, s2) ||
549 match_extban(actualBan->banstr, who, chptr, CHFL_BAN) ||
550 (s3 != NULL && match(actualBan->banstr, s3)))
551 break;
552 else
553 actualBan = NULL;
554 }
555
556 if((actualBan != NULL) && ConfigChannel.use_except)
557 {
8e69bb4e 558 RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
212380e3 559 {
560 actualExcept = ptr->data;
561
562 /* theyre exempted.. */
563 if(match(actualExcept->banstr, s) ||
564 match(actualExcept->banstr, s2) ||
565 match_cidr(actualExcept->banstr, s2) ||
566 match_extban(actualExcept->banstr, who, chptr, CHFL_EXCEPTION) ||
567 (s3 != NULL && match(actualExcept->banstr, s3)))
568 {
569 /* cache the fact theyre not banned */
570 if(msptr != NULL)
571 {
572 msptr->bants = chptr->bants;
573 msptr->flags &= ~CHFL_BANNED;
574 }
575
576 return CHFL_EXCEPTION;
577 }
578 }
579 }
580
581 /* cache the banned/not banned status */
582 if(msptr != NULL)
583 {
584 msptr->bants = chptr->bants;
585
586 if(actualBan != NULL)
587 {
588 msptr->flags |= CHFL_BANNED;
589 return CHFL_BAN;
590 }
591 else
592 {
593 msptr->flags &= ~CHFL_BANNED;
594 return 0;
595 }
596 }
597
598 return ((actualBan ? CHFL_BAN : 0));
599}
600
601/* is_quieted()
602 *
603 * input - channel to check bans for, user to check bans against
604 * optional prebuilt buffers
605 * output - 1 if banned, else 0
606 * side effects -
607 */
608int
609is_quieted(struct Channel *chptr, struct Client *who, struct membership *msptr,
610 const char *s, const char *s2)
611{
612 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
613 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
614 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
615 char *s3 = NULL;
af81d5a0 616 rb_dlink_node *ptr;
212380e3 617 struct Ban *actualBan = NULL;
618 struct Ban *actualExcept = NULL;
619
620 if(!MyClient(who))
621 return 0;
622
623 /* if the buffers havent been built, do it here */
624 if(s == NULL)
625 {
38e6acdd
WP
626 rb_sprintf(src_host, "%s!%s@%s", who->name, who->username, who->host);
627 rb_sprintf(src_iphost, "%s!%s@%s", who->name, who->username, who->sockhost);
212380e3 628
629 s = src_host;
630 s2 = src_iphost;
631 }
632 if(who->localClient->mangledhost != NULL)
633 {
634 /* if host mangling mode enabled, also check their real host */
635 if(!strcmp(who->host, who->localClient->mangledhost))
636 {
38e6acdd 637 rb_sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->orighost);
212380e3 638 s3 = src_althost;
639 }
640 /* if host mangling mode not enabled and no other spoof,
641 * also check the mangled form of their host */
642 else if (!IsDynSpoof(who))
643 {
38e6acdd 644 rb_sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->localClient->mangledhost);
212380e3 645 s3 = src_althost;
646 }
647 }
648
8e69bb4e 649 RB_DLINK_FOREACH(ptr, chptr->quietlist.head)
212380e3 650 {
651 actualBan = ptr->data;
652 if(match(actualBan->banstr, s) ||
653 match(actualBan->banstr, s2) ||
654 match_cidr(actualBan->banstr, s2) ||
655 match_extban(actualBan->banstr, who, chptr, CHFL_QUIET) ||
656 (s3 != NULL && match(actualBan->banstr, s3)))
657 break;
658 else
659 actualBan = NULL;
660 }
661
662 if((actualBan != NULL) && ConfigChannel.use_except)
663 {
8e69bb4e 664 RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
212380e3 665 {
666 actualExcept = ptr->data;
667
668 /* theyre exempted.. */
669 if(match(actualExcept->banstr, s) ||
670 match(actualExcept->banstr, s2) ||
671 match_cidr(actualExcept->banstr, s2) ||
672 match_extban(actualExcept->banstr, who, chptr, CHFL_EXCEPTION) ||
673 (s3 != NULL && match(actualExcept->banstr, s3)))
674 {
675 /* cache the fact theyre not banned */
676 if(msptr != NULL)
677 {
678 msptr->bants = chptr->bants;
679 msptr->flags &= ~CHFL_BANNED;
680 }
681
682 return CHFL_EXCEPTION;
683 }
684 }
685 }
686
687 /* cache the banned/not banned status */
688 if(msptr != NULL)
689 {
690 msptr->bants = chptr->bants;
691
692 if(actualBan != NULL)
693 {
694 msptr->flags |= CHFL_BANNED;
695 return CHFL_BAN;
696 }
697 else
698 {
699 msptr->flags &= ~CHFL_BANNED;
700 return 0;
701 }
702 }
703
704 return ((actualBan ? CHFL_BAN : 0));
705}
706
707/* can_join()
708 *
709 * input - client to check, channel to check for, key
710 * output - reason for not being able to join, else 0
711 * side effects -
712 */
713int
714can_join(struct Client *source_p, struct Channel *chptr, char *key)
715{
af81d5a0
WP
716 rb_dlink_node *invite = NULL;
717 rb_dlink_node *ptr;
212380e3 718 struct Ban *invex = NULL;
719 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
720 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
721 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
722 int use_althost = 0;
1ebf4db4 723 int i = 0;
212380e3 724 hook_data_channel moduledata;
725
726 s_assert(source_p->localClient != NULL);
727
38e6acdd
WP
728 rb_sprintf(src_host, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
729 rb_sprintf(src_iphost, "%s!%s@%s", source_p->name, source_p->username, source_p->sockhost);
212380e3 730 if(source_p->localClient->mangledhost != NULL)
731 {
732 /* if host mangling mode enabled, also check their real host */
733 if(!strcmp(source_p->host, source_p->localClient->mangledhost))
734 {
38e6acdd 735 rb_sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->orighost);
212380e3 736 use_althost = 1;
737 }
738 /* if host mangling mode not enabled and no other spoof,
739 * also check the mangled form of their host */
740 else if (!IsDynSpoof(source_p))
741 {
38e6acdd 742 rb_sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->localClient->mangledhost);
212380e3 743 use_althost = 1;
744 }
745 }
746
747 if((is_banned(chptr, source_p, NULL, src_host, src_iphost)) == CHFL_BAN)
748 return (ERR_BANNEDFROMCHAN);
749
750 if(chptr->mode.mode & MODE_INVITEONLY)
751 {
8e69bb4e 752 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
212380e3 753 {
1ebf4db4 754 if(invite->data == chptr)
212380e3 755 break;
756 }
1ebf4db4 757 if(invite == NULL)
212380e3 758 {
759 if(!ConfigChannel.use_invex)
760 return (ERR_INVITEONLYCHAN);
8e69bb4e 761 RB_DLINK_FOREACH(ptr, chptr->invexlist.head)
212380e3 762 {
763 invex = ptr->data;
764 if(match(invex->banstr, src_host)
765 || match(invex->banstr, src_iphost)
766 || match_cidr(invex->banstr, src_iphost)
767 || match_extban(invex->banstr, source_p, chptr, CHFL_INVEX)
768 || (use_althost && match(invex->banstr, src_althost)))
769 break;
770 }
771 if(ptr == NULL)
772 return (ERR_INVITEONLYCHAN);
773 }
774 }
775
776 if(*chptr->mode.key && (EmptyString(key) || irccmp(chptr->mode.key, key)))
777 return (ERR_BADCHANNELKEY);
778
779 if(chptr->mode.limit &&
af81d5a0 780 rb_dlink_list_length(&chptr->members) >= (unsigned long) chptr->mode.limit)
1ebf4db4 781 i = ERR_CHANNELISFULL;
212380e3 782 if(chptr->mode.mode & MODE_REGONLY && EmptyString(source_p->user->suser))
1ebf4db4 783 i = ERR_NEEDREGGEDNICK;
212380e3 784 /* join throttling stuff --nenolod */
1ebf4db4 785 else if(chptr->mode.join_num > 0 && chptr->mode.join_time > 0)
212380e3 786 {
9f6bbe3c 787 if ((rb_current_time() - chptr->join_delta <=
212380e3 788 chptr->mode.join_time) && (chptr->join_count >=
789 chptr->mode.join_num))
1ebf4db4 790 i = ERR_THROTTLE;
791 }
792
793 /* allow /invite to override +l/+r/+j also -- jilles */
794 if (i != 0 && invite == NULL)
795 {
8e69bb4e 796 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
1ebf4db4 797 {
798 if(invite->data == chptr)
799 break;
800 }
801 if (invite == NULL)
802 return i;
212380e3 803 }
804
805 moduledata.client = source_p;
806 moduledata.chptr = chptr;
807 moduledata.approved = 0;
808
809 call_hook(h_can_join, &moduledata);
810
811 return moduledata.approved;
812}
813
814/* can_send()
815 *
816 * input - user to check in channel, membership pointer
817 * output - whether can explicitly send or not, else CAN_SEND_NONOP
818 * side effects -
819 */
820int
821can_send(struct Channel *chptr, struct Client *source_p, struct membership *msptr)
822{
823 if(IsServer(source_p) || IsService(source_p))
824 return CAN_SEND_OPV;
825
826 if(MyClient(source_p) && hash_find_resv(chptr->chname) &&
827 !IsOper(source_p) && !IsExemptResv(source_p))
828 return CAN_SEND_NO;
829
830 if(msptr == NULL)
831 {
832 msptr = find_channel_membership(chptr, source_p);
833
834 if(msptr == NULL)
835 {
836 /* if its +m or +n and theyre not in the channel,
837 * they cant send. we dont check bans here because
838 * theres no possibility of caching them --fl
839 */
840 if(chptr->mode.mode & MODE_NOPRIVMSGS || chptr->mode.mode & MODE_MODERATED)
841 return CAN_SEND_NO;
842 else
843 return CAN_SEND_NONOP;
844 }
845 }
846
847 if(is_chanop_voiced(msptr))
848 return CAN_SEND_OPV;
849
850 if(chptr->mode.mode & MODE_MODERATED)
851 return CAN_SEND_NO;
852
853 if(MyClient(source_p))
854 {
855 /* cached can_send */
856 if(msptr->bants == chptr->bants)
857 {
858 if(can_send_banned(msptr))
859 return CAN_SEND_NO;
860 }
861 else if(is_banned(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN
862 || is_quieted(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN)
863 return CAN_SEND_NO;
864 }
865
866 return CAN_SEND_NONOP;
867}
868
869/* find_bannickchange_channel()
870 * Input: client to check
871 * Output: channel preventing nick change
872 */
873struct Channel *
874find_bannickchange_channel(struct Client *client_p)
875{
876 struct Channel *chptr;
877 struct membership *msptr;
af81d5a0 878 rb_dlink_node *ptr;
212380e3 879 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
880 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
881
882 if (!MyClient(client_p))
883 return NULL;
884
38e6acdd
WP
885 rb_sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
886 rb_sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
212380e3 887
8e69bb4e 888 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3 889 {
890 msptr = ptr->data;
891 chptr = msptr->chptr;
892 if (is_chanop_voiced(msptr))
893 continue;
894 /* cached can_send */
895 if (msptr->bants == chptr->bants)
896 {
897 if (can_send_banned(msptr))
898 return chptr;
899 }
900 else if (is_banned(chptr, client_p, msptr, src_host, src_iphost) == CHFL_BAN
901 || is_quieted(chptr, client_p, msptr, src_host, src_iphost) == CHFL_BAN)
902 return chptr;
903 }
904 return NULL;
905}
906
afd4834b
G
907/* find_nonickchange_channel()
908 * Input: client to check
909 * Output: channel preventing nick change
910 */
911struct Channel *
912find_nonickchange_channel(struct Client *client_p)
913{
914 struct Channel *chptr;
915 struct membership *msptr;
916 rb_dlink_node *ptr;
917
918 if (!MyClient(client_p))
919 return NULL;
920
921 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
922 {
923 msptr = ptr->data;
924 chptr = msptr->chptr;
925 if (is_chanop_voiced(msptr))
926 continue;
927 if (chptr->mode.mode & MODE_NONICK)
928 return chptr;
929 }
930 return NULL;
931}
932
212380e3 933/* void check_spambot_warning(struct Client *source_p)
934 * Input: Client to check, channel name or NULL if this is a part.
935 * Output: none
936 * Side-effects: Updates the client's oper_warn_count_down, warns the
937 * IRC operators if necessary, and updates join_leave_countdown as
938 * needed.
939 */
940void
941check_spambot_warning(struct Client *source_p, const char *name)
942{
943 int t_delta;
944 int decrement_count;
945 if((GlobalSetOptions.spam_num &&
946 (source_p->localClient->join_leave_count >= GlobalSetOptions.spam_num)))
947 {
948 if(source_p->localClient->oper_warn_count_down > 0)
949 source_p->localClient->oper_warn_count_down--;
950 else
951 source_p->localClient->oper_warn_count_down = 0;
05d8a68c
JT
952 if(source_p->localClient->oper_warn_count_down == 0 &&
953 name != NULL)
212380e3 954 {
955 /* Its already known as a possible spambot */
05d8a68c
JT
956 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
957 "User %s (%s@%s) trying to join %s is a possible spambot",
958 source_p->name,
959 source_p->username, source_p->orighost, name);
212380e3 960 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
961 }
962 }
963 else
964 {
965 if((t_delta =
9f6bbe3c 966 (rb_current_time() - source_p->localClient->last_leave_time)) >
212380e3 967 JOIN_LEAVE_COUNT_EXPIRE_TIME)
968 {
969 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
b6698246
JT
970 if(name != NULL)
971 ;
972 else if(decrement_count > source_p->localClient->join_leave_count)
212380e3 973 source_p->localClient->join_leave_count = 0;
974 else
975 source_p->localClient->join_leave_count -= decrement_count;
976 }
977 else
978 {
9f6bbe3c 979 if((rb_current_time() -
212380e3 980 (source_p->localClient->last_join_time)) < GlobalSetOptions.spam_time)
981 {
982 /* oh, its a possible spambot */
983 source_p->localClient->join_leave_count++;
984 }
985 }
986 if(name != NULL)
9f6bbe3c 987 source_p->localClient->last_join_time = rb_current_time();
212380e3 988 else
9f6bbe3c 989 source_p->localClient->last_leave_time = rb_current_time();
212380e3 990 }
991}
992
993/* check_splitmode()
994 *
995 * input -
996 * output -
997 * side effects - compares usercount and servercount against their split
998 * values and adjusts splitmode accordingly
999 */
1000void
1001check_splitmode(void *unused)
1002{
1003 if(splitchecking && (ConfigChannel.no_join_on_split || ConfigChannel.no_create_on_split))
1004 {
1005 /* not split, we're being asked to check now because someone
1006 * has left
1007 */
1008 if(!splitmode)
1009 {
1010 if(eob_count < split_servers || Count.total < split_users)
1011 {
1012 splitmode = 1;
1013 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1014 "Network split, activating splitmode");
dd9be678 1015 check_splitmode_ev = rb_event_addish("check_splitmode", check_splitmode, NULL, 2);
212380e3 1016 }
1017 }
1018 /* in splitmode, check whether its finished */
1019 else if(eob_count >= split_servers && Count.total >= split_users)
1020 {
1021 splitmode = 0;
1022
1023 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1024 "Network rejoined, deactivating splitmode");
1025
dd9be678 1026 rb_event_delete(check_splitmode_ev);
0ae330b4 1027 check_splitmode_ev = NULL;
212380e3 1028 }
1029 }
1030}
1031
1032
1033/* allocate_topic()
1034 *
1035 * input - channel to allocate topic for
1036 * output - 1 on success, else 0
1037 * side effects - channel gets a topic allocated
1038 */
1039static void
1040allocate_topic(struct Channel *chptr)
1041{
1042 void *ptr;
1043
1044 if(chptr == NULL)
1045 return;
1046
6e9b4415 1047 ptr = rb_bh_alloc(topic_heap);
212380e3 1048
1049 /* Basically we allocate one large block for the topic and
1050 * the topic info. We then split it up into two and shove it
1051 * in the chptr
1052 */
1053 chptr->topic = ptr;
1054 chptr->topic_info = (char *) ptr + TOPICLEN + 1;
1055 *chptr->topic = '\0';
1056 *chptr->topic_info = '\0';
1057}
1058
1059/* free_topic()
1060 *
1061 * input - channel which has topic to free
1062 * output -
1063 * side effects - channels topic is free'd
1064 */
1065static void
1066free_topic(struct Channel *chptr)
1067{
1068 void *ptr;
1069
1070 if(chptr == NULL || chptr->topic == NULL)
1071 return;
1072
1073 /* This is safe for now - If you change allocate_topic you
1074 * MUST change this as well
1075 */
1076 ptr = chptr->topic;
6e9b4415 1077 rb_bh_free(topic_heap, ptr);
212380e3 1078 chptr->topic = NULL;
1079 chptr->topic_info = NULL;
1080}
1081
1082/* set_channel_topic()
1083 *
1084 * input - channel, topic to set, topic info and topic ts
1085 * output -
1086 * side effects - channels topic, topic info and TS are set.
1087 */
1088void
1089set_channel_topic(struct Channel *chptr, const char *topic, const char *topic_info, time_t topicts)
1090{
1091 if(strlen(topic) > 0)
1092 {
1093 if(chptr->topic == NULL)
1094 allocate_topic(chptr);
907468c4
VY
1095 rb_strlcpy(chptr->topic, topic, TOPICLEN + 1);
1096 rb_strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
212380e3 1097 chptr->topic_time = topicts;
1098 }
1099 else
1100 {
1101 if(chptr->topic != NULL)
1102 free_topic(chptr);
1103 chptr->topic_time = 0;
1104 }
1105}
1106
212380e3 1107/* channel_modes()
1108 *
1109 * inputs - pointer to channel
1110 * - pointer to client
f1e35c19 1111 * output - string with simple modes
1112 * side effects - result from previous calls overwritten
212380e3 1113 *
1114 * Stolen from ShadowIRCd 4 --nenolod
1115 */
1116const char *
1117channel_modes(struct Channel *chptr, struct Client *client_p)
1118{
1119 int i;
1120 char buf1[BUFSIZE];
1121 char buf2[BUFSIZE];
1122 static char final[BUFSIZE];
1123 char *mbuf = buf1;
1124 char *pbuf = buf2;
1125
1126 *mbuf++ = '+';
1127 *pbuf = '\0';
1128
75818939
VY
1129 for (i = 0; i < 256; i++)
1130 if(chptr->mode.mode & chmode_flags[i])
1131 *mbuf++ = i;
212380e3 1132
1133 if(chptr->mode.limit)
1134 {
1135 *mbuf++ = 'l';
1136
f1e35c19 1137 if(!IsClient(client_p) || IsMember(client_p, chptr))
38e6acdd 1138 pbuf += rb_sprintf(pbuf, " %d", chptr->mode.limit);
212380e3 1139 }
1140
1141 if(*chptr->mode.key)
1142 {
1143 *mbuf++ = 'k';
1144
f1e35c19 1145 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
38e6acdd 1146 pbuf += rb_sprintf(pbuf, " %s", chptr->mode.key);
212380e3 1147 }
1148
1149 if(chptr->mode.join_num)
1150 {
1151 *mbuf++ = 'j';
1152
f1e35c19 1153 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
38e6acdd 1154 pbuf += rb_sprintf(pbuf, " %d:%d", chptr->mode.join_num,
212380e3 1155 chptr->mode.join_time);
1156 }
1157
f1e35c19 1158 if(*chptr->mode.forward && (ConfigChannel.use_forward || !IsClient(client_p)))
212380e3 1159 {
1160 *mbuf++ = 'f';
1161
f1e35c19 1162 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
38e6acdd 1163 pbuf += rb_sprintf(pbuf, " %s", chptr->mode.forward);
212380e3 1164 }
1165
1166 *mbuf = '\0';
1167
907468c4 1168 rb_strlcpy(final, buf1, sizeof final);
a64c5173 1169 rb_strlcat(final, buf2, sizeof final);
212380e3 1170 return final;
1171}
1172
1173/* Now lets do some stuff to keep track of what combinations of
1174 * servers exist...
1175 * Note that the number of combinations doubles each time you add
1176 * something to this list. Each one is only quick if no servers use that
1177 * combination, but if the numbers get too high here MODE will get too
1178 * slow. I suggest if you get more than 7 here, you consider getting rid
1179 * of some and merging or something. If it wasn't for irc+cs we would
1180 * probably not even need to bother about most of these, but unfortunately
1181 * we do. -A1kmm
1182 */
1183
1184/* void init_chcap_usage_counts(void)
1185 *
1186 * Inputs - none
1187 * Output - none
1188 * Side-effects - Initialises the usage counts to zero. Fills in the
1189 * chcap_yes and chcap_no combination tables.
1190 */
1191void
1192init_chcap_usage_counts(void)
1193{
1194 unsigned long m, c, y, n;
1195
1196 memset(chcap_combos, 0, sizeof(chcap_combos));
1197
1198 /* For every possible combination */
1199 for (m = 0; m < NCHCAP_COMBOS; m++)
1200 {
1201 /* Check each capab */
1202 for (c = y = n = 0; c < NCHCAPS; c++)
1203 {
1204 if((m & (1 << c)) == 0)
1205 n |= channel_capabs[c];
1206 else
1207 y |= channel_capabs[c];
1208 }
1209 chcap_combos[m].cap_yes = y;
1210 chcap_combos[m].cap_no = n;
1211 }
1212}
1213
1214/* void set_chcap_usage_counts(struct Client *serv_p)
1215 * Input: serv_p; The client whose capabs to register.
1216 * Output: none
1217 * Side-effects: Increments the usage counts for the correct capab
1218 * combination.
1219 */
1220void
1221set_chcap_usage_counts(struct Client *serv_p)
1222{
1223 int n;
1224
1225 for (n = 0; n < NCHCAP_COMBOS; n++)
1226 {
1227 if(IsCapable(serv_p, chcap_combos[n].cap_yes) &&
1228 NotCapable(serv_p, chcap_combos[n].cap_no))
1229 {
1230 chcap_combos[n].count++;
1231 return;
1232 }
1233 }
1234
1235 /* This should be impossible -A1kmm. */
1236 s_assert(0);
1237}
1238
1239/* void set_chcap_usage_counts(struct Client *serv_p)
1240 *
1241 * Inputs - serv_p; The client whose capabs to register.
1242 * Output - none
1243 * Side-effects - Decrements the usage counts for the correct capab
1244 * combination.
1245 */
1246void
1247unset_chcap_usage_counts(struct Client *serv_p)
1248{
1249 int n;
1250
1251 for (n = 0; n < NCHCAP_COMBOS; n++)
1252 {
1253 if(IsCapable(serv_p, chcap_combos[n].cap_yes) &&
1254 NotCapable(serv_p, chcap_combos[n].cap_no))
1255 {
1256 /* Hopefully capabs can't change dynamically or anything... */
1257 s_assert(chcap_combos[n].count > 0);
1258
1259 if(chcap_combos[n].count > 0)
1260 chcap_combos[n].count--;
1261 return;
1262 }
1263 }
1264
1265 /* This should be impossible -A1kmm. */
1266 s_assert(0);
1267}
1268
1269/* void send_cap_mode_changes(struct Client *client_p,
1270 * struct Client *source_p,
1271 * struct Channel *chptr, int cap, int nocap)
1272 * Input: The client sending(client_p), the source client(source_p),
1273 * the channel to send mode changes for(chptr)
1274 * Output: None.
1275 * Side-effects: Sends the appropriate mode changes to capable servers.
1276 *
1277 * Reverted back to my original design, except that we now keep a count
1278 * of the number of servers which each combination as an optimisation, so
1279 * the capabs combinations which are not needed are not worked out. -A1kmm
1280 */
1281void
1282send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
1283 struct Channel *chptr, struct ChModeChange mode_changes[], int mode_count)
1284{
1285 static char modebuf[BUFSIZE];
1286 static char parabuf[BUFSIZE];
1287 int i, mbl, pbl, nc, mc, preflen, len;
1288 char *pbuf;
1289 const char *arg;
1290 int dir;
1291 int j;
1292 int cap;
1293 int nocap;
1294 int arglen;
1295
1296 /* Now send to servers... */
1297 for (j = 0; j < NCHCAP_COMBOS; j++)
1298 {
1299 if(chcap_combos[j].count == 0)
1300 continue;
1301
1302 mc = 0;
1303 nc = 0;
1304 pbl = 0;
1305 parabuf[0] = 0;
1306 pbuf = parabuf;
1307 dir = MODE_QUERY;
1308
1309 cap = chcap_combos[j].cap_yes;
1310 nocap = chcap_combos[j].cap_no;
1311
9f9b4d7b
WP
1312 mbl = preflen = rb_sprintf(modebuf, ":%s TMODE %ld %s ",
1313 use_id(source_p), (long) chptr->channelts,
1314 chptr->chname);
212380e3 1315
1316 /* loop the list of - modes we have */
1317 for (i = 0; i < mode_count; i++)
1318 {
1319 /* if they dont support the cap we need, or they do support a cap they
1320 * cant have, then dont add it to the modebuf.. that way they wont see
1321 * the mode
1322 */
1323 if((mode_changes[i].letter == 0) ||
1324 ((cap & mode_changes[i].caps) != mode_changes[i].caps)
1325 || ((nocap & mode_changes[i].nocaps) != mode_changes[i].nocaps))
1326 continue;
1327
7592f950
JT
1328 if(!EmptyString(mode_changes[i].id))
1329 arg = mode_changes[i].id;
1330 else
1331 arg = mode_changes[i].arg;
212380e3 1332
1333 if(arg)
1334 {
1335 arglen = strlen(arg);
1336
1337 /* dont even think about it! --fl */
1338 if(arglen > MODEBUFLEN - 5)
1339 continue;
1340 }
1341
1342 /* if we're creeping past the buf size, we need to send it and make
1343 * another line for the other modes
1344 * XXX - this could give away server topology with uids being
1345 * different lengths, but not much we can do, except possibly break
1346 * them as if they were the longest of the nick or uid at all times,
1347 * which even then won't work as we don't always know the uid -A1kmm.
1348 */
1349 if(arg && ((mc == MAXMODEPARAMSSERV) ||
1350 ((mbl + pbl + arglen + 4) > (BUFSIZE - 3))))
1351 {
1352 if(nc != 0)
1353 sendto_server(client_p, chptr, cap, nocap,
1354 "%s %s", modebuf, parabuf);
1355 nc = 0;
1356 mc = 0;
1357
1358 mbl = preflen;
1359 pbl = 0;
1360 pbuf = parabuf;
1361 parabuf[0] = 0;
1362 dir = MODE_QUERY;
1363 }
1364
1365 if(dir != mode_changes[i].dir)
1366 {
1367 modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1368 dir = mode_changes[i].dir;
1369 }
1370
1371 modebuf[mbl++] = mode_changes[i].letter;
1372 modebuf[mbl] = 0;
1373 nc++;
1374
1375 if(arg != NULL)
1376 {
38e6acdd 1377 len = rb_sprintf(pbuf, "%s ", arg);
212380e3 1378 pbuf += len;
1379 pbl += len;
1380 mc++;
1381 }
1382 }
1383
1384 if(pbl && parabuf[pbl - 1] == ' ')
1385 parabuf[pbl - 1] = 0;
1386
1387 if(nc != 0)
1388 sendto_server(client_p, chptr, cap, nocap, "%s %s", modebuf, parabuf);
1389 }
1390}
080bb5cf
JH
1391
1392/* Check what we will forward to, without sending any notices to the user
1393 * -- jilles
1394 */
1395struct Channel *
1396check_forward(struct Client *source_p, struct Channel *chptr,
1397 char *key)
1398{
1399 int depth = 0, i;
1400
1401 /* User is +Q */
1402 if (IsNoForward(source_p))
1403 return NULL;
1404
1405 while (depth < 16)
1406 {
1407 chptr = find_channel(chptr->mode.forward);
1408 /* Can only forward to existing channels */
1409 if (chptr == NULL)
1410 return NULL;
1411 /* Already on there, show original error message */
1412 if (IsMember(source_p, chptr))
1413 return NULL;
1414 /* Juped. Sending a warning notice would be unfair */
1415 if (hash_find_resv(chptr->chname))
1416 return NULL;
1417 /* Don't forward to +Q channel */
1418 if (chptr->mode.mode & MODE_DISFORWARD)
1419 return NULL;
1420 i = can_join(source_p, chptr, key);
1421 if (i == 0)
1422 return chptr;
1423 if (i != ERR_INVITEONLYCHAN && i != ERR_NEEDREGGEDNICK && i != ERR_THROTTLE && i != ERR_CHANNELISFULL)
1424 return NULL;
1425 depth++;
1426 }
1427
1428 return NULL;
1429}
67b90240 1430
9230426e
JH
1431/*
1432 * do_join_0
1433 *
1434 * inputs - pointer to client doing join 0
1435 * output - NONE
1436 * side effects - Use has decided to join 0. This is legacy
1437 * from the days when channels were numbers not names. *sigh*
9230426e
JH
1438 */
1439void
1440do_join_0(struct Client *client_p, struct Client *source_p)
1441{
1442 struct membership *msptr;
1443 struct Channel *chptr = NULL;
1444 rb_dlink_node *ptr;
1445
1446 /* Finish the flood grace period... */
1447 if(MyClient(source_p) && !IsFloodDone(source_p))
1448 flood_endgrace(source_p);
1449
1450 sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s JOIN 0", use_id(source_p));
1451
aa35afbb
JH
1452 while((ptr = source_p->user->channel.head))
1453 {
9230426e
JH
1454 if(source_p->user->channel.head && MyConnect(source_p) &&
1455 !IsOper(source_p) && !IsExemptSpambot(source_p))
1456 check_spambot_warning(source_p, NULL);
1457
9230426e
JH
1458 msptr = ptr->data;
1459 chptr = msptr->chptr;
1460 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s",
1461 source_p->name,
1462 source_p->username, source_p->host, chptr->chname);
1463 remove_user_from_channel(msptr);
1464 }
1465}
1466
1467int
1468check_channel_name_loc(struct Client *source_p, const char *name)
1469{
aa35afbb
JH
1470 const char *p;
1471
9230426e
JH
1472 s_assert(name != NULL);
1473 if(EmptyString(name))
1474 return 0;
1475
1476 if(ConfigFileEntry.disable_fake_channels && !IsOper(source_p))
1477 {
aa35afbb 1478 for(p = name; *p; ++p)
9230426e 1479 {
aa35afbb 1480 if(!IsChanChar(*p) || IsFakeChanChar(*p))
9230426e
JH
1481 return 0;
1482 }
1483 }
1484 else
1485 {
aa35afbb 1486 for(p = name; *p; ++p)
9230426e 1487 {
aa35afbb 1488 if(!IsChanChar(*p))
9230426e
JH
1489 return 0;
1490 }
1491 }
1492
aa35afbb
JH
1493 if(ConfigChannel.only_ascii_channels)
1494 {
1495 for(p = name; *p; ++p)
1496 if(*p < 33 || *p > 126)
1497 return 0;
1498 }
1499
1500
9230426e
JH
1501 return 1;
1502}
1503
824455ab 1504void user_join(struct Client * client_p, struct Client * source_p, const char * channels, const char * keys)
67b90240
JH
1505{
1506 static char jbuf[BUFSIZE];
1507 struct Channel *chptr = NULL;
1508 struct ConfItem *aconf;
1509 char *name;
1510 char *key = NULL;
1511 const char *modes;
1512 int i, flags = 0;
1513 char *p = NULL, *p2 = NULL;
1514 char *chanlist;
1515 char *mykey;
67b90240
JH
1516
1517 jbuf[0] = '\0';
1518
1519 if(channels == NULL)
1520 return;
1521
1522 /* rebuild the list of channels theyre supposed to be joining.
1523 * this code has a side effect of losing keys, but..
1524 */
1525 chanlist = LOCAL_COPY(channels);
1526 for(name = rb_strtok_r(chanlist, ",", &p); name; name = rb_strtok_r(NULL, ",", &p))
1527 {
1528 /* check the length and name of channel is ok */
1529 if(!check_channel_name_loc(source_p, name) || (strlen(name) > LOC_CHANNELLEN))
1530 {
1531 sendto_one_numeric(source_p, ERR_BADCHANNAME,
1532 form_str(ERR_BADCHANNAME), (unsigned char *) name);
1533 continue;
1534 }
1535
1536 /* join 0 parts all channels */
1537 if(*name == '0' && (name[1] == ',' || name[1] == '\0') && name == chanlist)
1538 {
1539 (void) strcpy(jbuf, "0");
1540 continue;
1541 }
1542
1543 /* check it begins with # or &, and local chans are disabled */
1544 else if(!IsChannelName(name))
1545 {
1546 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
1547 form_str(ERR_NOSUCHCHANNEL), name);
1548 continue;
1549 }
1550
1551 /* see if its resv'd */
1552 if(!IsExemptResv(source_p) && (aconf = hash_find_resv(name)))
1553 {
1554 sendto_one_numeric(source_p, ERR_BADCHANNAME,
1555 form_str(ERR_BADCHANNAME), name);
1556
1557 /* dont warn for opers */
1558 if(!IsExemptJupe(source_p) && !IsOper(source_p))
1559 sendto_realops_snomask(SNO_SPY, L_NETWIDE,
1560 "User %s (%s@%s) is attempting to join locally juped channel %s (%s)",
1561 source_p->name, source_p->username,
1562 source_p->orighost, name, aconf->passwd);
1563 /* dont update tracking for jupe exempt users, these
1564 * are likely to be spamtrap leaves
1565 */
1566 else if(IsExemptJupe(source_p))
1567 aconf->port--;
1568
1569 continue;
1570 }
1571
1572 if(splitmode && !IsOper(source_p) && (*name != '&') &&
1573 ConfigChannel.no_join_on_split)
1574 {
1575 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
1576 me.name, source_p->name, name);
1577 continue;
1578 }
1579
1580 if(*jbuf)
1581 (void) strcat(jbuf, ",");
1582 (void) rb_strlcat(jbuf, name, sizeof(jbuf));
1583 }
1584
1585 if(keys != NULL)
1586 {
1587 mykey = LOCAL_COPY(keys);
1588 key = rb_strtok_r(mykey, ",", &p2);
1589 }
1590
1591 for(name = rb_strtok_r(jbuf, ",", &p); name;
1592 key = (key) ? rb_strtok_r(NULL, ",", &p2) : NULL, name = rb_strtok_r(NULL, ",", &p))
1593 {
1594 hook_data_channel_activity hook_info;
1595
1596 /* JOIN 0 simply parts all channels the user is in */
1597 if(*name == '0' && !atoi(name))
1598 {
1599 if(source_p->user->channel.head == NULL)
1600 continue;
1601
1602 do_join_0(&me, source_p);
1603 continue;
1604 }
1605
1606 /* look for the channel */
1607 if((chptr = find_channel(name)) != NULL)
1608 {
1609 if(IsMember(source_p, chptr))
1610 continue;
1611
1612 flags = 0;
1613 }
1614 else
1615 {
1616 hook_data_client_approval moduledata;
1617
1618 moduledata.client = source_p;
1619 moduledata.approved = 0;
1620
1621 call_hook(h_can_create_channel, &moduledata);
1622
1623 if(moduledata.approved != 0)
1624 {
1625 sendto_one(source_p, form_str(moduledata.approved),
1626 me.name, source_p->name, name);
1627 continue;
1628 }
1629
1630 if(splitmode && !IsOper(source_p) && (*name != '&') &&
1631 ConfigChannel.no_create_on_split)
1632 {
1633 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
1634 me.name, source_p->name, name);
1635 continue;
1636 }
1637
1638 flags = CHFL_CHANOP;
1639 }
1640
1641 if((rb_dlink_list_length(&source_p->user->channel) >=
1642 (unsigned long) ConfigChannel.max_chans_per_user) &&
1643 (!IsOper(source_p) ||
1644 (rb_dlink_list_length(&source_p->user->channel) >=
1645 (unsigned long) ConfigChannel.max_chans_per_user * 3)))
1646 {
1647 sendto_one(source_p, form_str(ERR_TOOMANYCHANNELS),
1648 me.name, source_p->name, name);
67b90240
JH
1649 return;
1650 }
1651
67b90240
JH
1652 if(chptr == NULL) /* If I already have a chptr, no point doing this */
1653 {
1654 chptr = get_or_create_channel(source_p, name, NULL);
1655
1656 if(chptr == NULL)
1657 {
1658 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
1659 me.name, source_p->name, name);
67b90240
JH
1660 continue;
1661 }
1662 }
1663
67b90240
JH
1664 /* can_join checks for +i key, bans etc */
1665 if((i = can_join(source_p, chptr, key)))
1666 {
1667 if ((i != ERR_NEEDREGGEDNICK && i != ERR_THROTTLE && i != ERR_INVITEONLYCHAN && i != ERR_CHANNELISFULL) ||
1668 (!ConfigChannel.use_forward || (chptr = check_forward(source_p, chptr, key)) == NULL))
1669 {
1670 /* might be wrong, but is there any other better location for such?
1671 * see extensions/chm_operonly.c for other comments on this
1672 * -- dwr
1673 */
1674 if(i != ERR_CUSTOM)
1675 sendto_one(source_p, form_str(i), me.name, source_p->name, name);
1676
67b90240
JH
1677 continue;
1678 }
1679
1680 sendto_one_numeric(source_p, ERR_LINKCHANNEL, form_str(ERR_LINKCHANNEL), name, chptr->chname);
1681 }
aa35afbb
JH
1682
1683 if(flags == 0 &&
1684 !IsOper(source_p) && !IsExemptSpambot(source_p))
1685 check_spambot_warning(source_p, name);
67b90240
JH
1686
1687 /* add the user to the channel */
1688 add_user_to_channel(chptr, source_p, flags);
1689 if (chptr->mode.join_num &&
1690 rb_current_time() - chptr->join_delta >= chptr->mode.join_time)
1691 {
1692 chptr->join_count = 0;
1693 chptr->join_delta = rb_current_time();
1694 }
1695 chptr->join_count++;
1696
1697 /* we send the user their join here, because we could have to
1698 * send a mode out next.
1699 */
1700 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
1701 source_p->name,
1702 source_p->username, source_p->host, chptr->chname);
1703
1704 /* its a new channel, set +nt and burst. */
1705 if(flags & CHFL_CHANOP)
1706 {
1707 chptr->channelts = rb_current_time();
1708 chptr->mode.mode |= MODE_TOPICLIMIT;
1709 chptr->mode.mode |= MODE_NOPRIVMSGS;
1710 modes = channel_modes(chptr, &me);
1711
1712 sendto_channel_local(ONLY_CHANOPS, chptr, ":%s MODE %s %s",
1713 me.name, chptr->chname, modes);
1714
1715 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
1716 ":%s SJOIN %ld %s %s :@%s",
1717 me.id, (long) chptr->channelts,
1718 chptr->chname, modes, source_p->id);
1719 }
1720 else
1721 {
1722 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
1723 ":%s JOIN %ld %s +",
1724 use_id(source_p), (long) chptr->channelts,
1725 chptr->chname);
1726 }
1727
1728 del_invite(chptr, source_p);
1729
1730 if(chptr->topic != NULL)
1731 {
1732 sendto_one(source_p, form_str(RPL_TOPIC), me.name,
1733 source_p->name, chptr->chname, chptr->topic);
1734
1735 sendto_one(source_p, form_str(RPL_TOPICWHOTIME),
1736 me.name, source_p->name, chptr->chname,
1737 chptr->topic_info, chptr->topic_time);
1738 }
1739
1740 channel_member_names(chptr, source_p, 1);
1741
67b90240
JH
1742 hook_info.client = source_p;
1743 hook_info.chptr = chptr;
1744 hook_info.key = key;
1745 call_hook(h_channel_join, &hook_info);
1746 }
1747
1748 return;
1749}