]> jfr.im git - solanum.git/blame - ircd/channel.c
recheck users after applying SASL account cloaks
[solanum.git] / ircd / channel.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * channel.c: Controls channels.
4 *
55abcbb2
KB
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
212380e3
AC
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
212380e3
AC
23 */
24
25#include "stdinc.h"
212380e3 26#include "channel.h"
392ae75c 27#include "chmode.h"
212380e3 28#include "client.h"
212380e3
AC
29#include "hash.h"
30#include "hook.h"
4562c604 31#include "match.h"
212380e3
AC
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"
4016731b 40#include "logger.h"
77d3d2db 41#include "s_assert.h"
212380e3 42
18e4d421 43struct config_channel_entry ConfigChannel;
c3d10343 44rb_dlink_list global_channel_list;
b617afdc
VY
45static rb_bh *channel_heap;
46static rb_bh *ban_heap;
47static rb_bh *topic_heap;
48static rb_bh *member_heap;
49
212380e3
AC
50static void free_topic(struct Channel *chptr);
51
52static int h_can_join;
0aa36c5f 53static int h_can_send;
749d8c11 54int h_get_channel_access;
212380e3
AC
55
56/* init_channels()
57 *
58 * input -
59 * output -
60 * side effects - initialises the various blockheaps
61 */
62void
63init_channels(void)
64{
c608a061
AC
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");
212380e3
AC
69
70 h_can_join = register_hook("can_join");
0aa36c5f 71 h_can_send = register_hook("can_send");
749d8c11 72 h_get_channel_access = register_hook("get_channel_access");
212380e3
AC
73}
74
75/*
76 * allocate_channel - Allocates a channel
77 */
78struct Channel *
79allocate_channel(const char *chname)
80{
81 struct Channel *chptr;
398b6a73 82 chptr = rb_bh_alloc(channel_heap);
47a03750 83 chptr->chname = rb_strdup(chname);
212380e3
AC
84 return (chptr);
85}
86
87void
88free_channel(struct Channel *chptr)
89{
637c4932 90 rb_free(chptr->chname);
78e6b731 91 rb_free(chptr->mode_lock);
398b6a73 92 rb_bh_free(channel_heap, chptr);
212380e3
AC
93}
94
95struct Ban *
765d839d 96allocate_ban(const char *banstr, const char *who, const char *forward)
212380e3
AC
97{
98 struct Ban *bptr;
398b6a73 99 bptr = rb_bh_alloc(ban_heap);
47a03750
VY
100 bptr->banstr = rb_strdup(banstr);
101 bptr->who = rb_strdup(who);
765d839d 102 bptr->forward = forward ? rb_strdup(forward) : NULL;
212380e3
AC
103
104 return (bptr);
105}
106
107void
108free_ban(struct Ban *bptr)
109{
637c4932
VY
110 rb_free(bptr->banstr);
111 rb_free(bptr->who);
765d839d 112 rb_free(bptr->forward);
398b6a73 113 rb_bh_free(ban_heap, bptr);
212380e3
AC
114}
115
27912fd4
AC
116/*
117 * send_channel_join()
118 *
119 * input - channel to join, client joining.
120 * output - none
121 * side effects - none
122 */
123void
124send_channel_join(struct Channel *chptr, struct Client *client_p)
125{
126 if (!IsClient(client_p))
127 return;
128
4b1cce65 129 sendto_channel_local_with_capability(client_p, ALL_MEMBERS, NOCAPS, CLICAP_EXTENDED_JOIN, chptr, ":%s!%s@%s JOIN %s",
92052a5c
AC
130 client_p->name, client_p->username, client_p->host, chptr->chname);
131
4b1cce65 132 sendto_channel_local_with_capability(client_p, ALL_MEMBERS, CLICAP_EXTENDED_JOIN, NOCAPS, chptr, ":%s!%s@%s JOIN %s %s :%s",
92052a5c
AC
133 client_p->name, client_p->username, client_p->host, chptr->chname,
134 EmptyString(client_p->user->suser) ? "*" : client_p->user->suser,
26e9dd93 135 client_p->info);
c5bbc603
KB
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);
27912fd4 142}
212380e3
AC
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 */
150struct membership *
151find_channel_membership(struct Channel *chptr, struct Client *client_p)
152{
153 struct membership *msptr;
330fc5c1 154 rb_dlink_node *ptr;
212380e3
AC
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 */
330fc5c1 162 if(rb_dlink_list_length(&chptr->members) < rb_dlink_list_length(&client_p->user->channel))
212380e3 163 {
5cefa1d6 164 RB_DLINK_FOREACH(ptr, chptr->members.head)
212380e3
AC
165 {
166 msptr = ptr->data;
167
168 if(msptr->client_p == client_p)
169 return msptr;
170 }
171 }
172 else
173 {
5cefa1d6 174 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3
AC
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 */
192const char *
193find_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
55abcbb2 217 * output -
212380e3
AC
218 * side effects - user is added to channel
219 */
220void
221add_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
398b6a73 229 msptr = rb_bh_alloc(member_heap);
212380e3
AC
230
231 msptr->chptr = chptr;
232 msptr->client_p = client_p;
233 msptr->flags = flags;
234
330fc5c1
AC
235 rb_dlinkAdd(msptr, &msptr->usernode, &client_p->user->channel);
236 rb_dlinkAdd(msptr, &msptr->channode, &chptr->members);
212380e3
AC
237
238 if(MyClient(client_p))
330fc5c1 239 rb_dlinkAdd(msptr, &msptr->locchannode, &chptr->locmembers);
212380e3
AC
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 */
248void
249remove_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
330fc5c1
AC
260 rb_dlinkDelete(&msptr->usernode, &client_p->user->channel);
261 rb_dlinkDelete(&msptr->channode, &chptr->members);
212380e3
AC
262
263 if(client_p->servptr == &me)
330fc5c1 264 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
212380e3 265
330fc5c1 266 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
212380e3
AC
267 destroy_channel(chptr);
268
398b6a73 269 rb_bh_free(member_heap, msptr);
212380e3
AC
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 */
280void
281remove_user_from_channels(struct Client *client_p)
282{
283 struct Channel *chptr;
284 struct membership *msptr;
330fc5c1 285 rb_dlink_node *ptr;
637c4932 286 rb_dlink_node *next_ptr;
212380e3
AC
287
288 if(client_p == NULL)
289 return;
290
637c4932 291 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->user->channel.head)
212380e3
AC
292 {
293 msptr = ptr->data;
294 chptr = msptr->chptr;
295
330fc5c1 296 rb_dlinkDelete(&msptr->channode, &chptr->members);
212380e3
AC
297
298 if(client_p->servptr == &me)
330fc5c1 299 rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
212380e3 300
330fc5c1 301 if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
212380e3
AC
302 destroy_channel(chptr);
303
398b6a73 304 rb_bh_free(member_heap, msptr);
212380e3
AC
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 */
318void
319invalidate_bancache_user(struct Client *client_p)
320{
321 struct membership *msptr;
330fc5c1 322 rb_dlink_node *ptr;
212380e3
AC
323
324 if(client_p == NULL)
325 return;
326
5cefa1d6 327 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3
AC
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
216f58a2 338 * output - true if valid channel name, else false
212380e3
AC
339 * side effects -
340 */
3a46803f 341bool
212380e3
AC
342check_channel_name(const char *name)
343{
344 s_assert(name != NULL);
345 if(name == NULL)
3a46803f 346 return false;
212380e3
AC
347
348 for (; *name; ++name)
349 {
350 if(!IsChanChar(*name))
3a46803f 351 return false;
212380e3
AC
352 }
353
3a46803f 354 return true;
212380e3
AC
355}
356
357/* free_channel_list()
358 *
330fc5c1 359 * input - rb_dlink list to free
212380e3
AC
360 * output -
361 * side effects - list of b/e/I modes is cleared
362 */
363void
330fc5c1 364free_channel_list(rb_dlink_list * list)
212380e3 365{
330fc5c1 366 rb_dlink_node *ptr;
637c4932 367 rb_dlink_node *next_ptr;
212380e3
AC
368 struct Ban *actualBan;
369
637c4932 370 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
212380e3
AC
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 */
386void
387destroy_channel(struct Channel *chptr)
388{
637c4932 389 rb_dlink_node *ptr, *next_ptr;
212380e3 390
637c4932 391 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
212380e3
AC
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);
fea1ad52 400 free_channel_list(&chptr->quietlist);
212380e3
AC
401
402 /* Free the topic */
403 free_topic(chptr);
404
330fc5c1 405 rb_dlinkDelete(&chptr->node, &global_channel_list);
212380e3
AC
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 */
416static const char *
417channel_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 */
432void
433channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eon)
434{
435 struct membership *msptr;
436 struct Client *target_p;
330fc5c1 437 rb_dlink_node *ptr;
212380e3
AC
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
5203cba5 450 cur_len = mlen = sprintf(lbuf, form_str(RPL_NAMREPLY),
212380e3
AC
451 me.name, client_p->name,
452 channel_pub_or_secret(chptr), chptr->chname);
453
454 t = lbuf + cur_len;
455
5cefa1d6 456 RB_DLINK_FOREACH(ptr, chptr->members.head)
212380e3
AC
457 {
458 msptr = ptr->data;
459 target_p = msptr->client_p;
460
461 if(IsInvisible(target_p) && !is_member)
462 continue;
463
1b54aa5c 464 if (IsCapable(client_p, CLICAP_USERHOST_IN_NAMES))
212380e3 465 {
1b54aa5c
MT
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
5203cba5 475 tlen = sprintf(t, "%s%s!%s@%s ", find_channel_status(msptr, stack),
1b54aa5c
MT
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
5203cba5 489 tlen = sprintf(t, "%s%s ", find_channel_status(msptr, stack),
1b54aa5c 490 target_p->name);
212380e3 491 }
212380e3
AC
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 */
522void
523del_invite(struct Channel *chptr, struct Client *who)
524{
330fc5c1
AC
525 rb_dlinkFindDestroy(who, &chptr->invites);
526 rb_dlinkFindDestroy(chptr, &who->user->invited);
212380e3
AC
527}
528
a14de124 529/* is_banned_list()
212380e3 530 *
a14de124
JT
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
212380e3
AC
534 * output - 1 if banned, else 0
535 * side effects -
536 */
a14de124
JT
537static int
538is_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)
212380e3 541{
fe5fc851
SA
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];
212380e3 546 char *s3 = NULL;
1c60de97
JT
547 char *s4 = NULL;
548 struct sockaddr_in ip4;
330fc5c1 549 rb_dlink_node *ptr;
212380e3
AC
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 {
5203cba5
VI
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);
212380e3
AC
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 {
5203cba5 570 sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->orighost);
212380e3
AC
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 {
5203cba5 577 sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->localClient->mangledhost);
212380e3
AC
578 s3 = src_althost;
579 }
580 }
e867208d 581 if(GET_SS_FAMILY(&who->localClient->ip) == AF_INET6 &&
4eafa9e6 582 rb_ipv4_from_ipv6((const struct sockaddr_in6 *)&who->localClient->ip, &ip4))
1c60de97 583 {
5203cba5 584 sprintf(src_ip4host, "%s!%s@", who->name, who->username);
1c60de97
JT
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 }
212380e3 590
a14de124 591 RB_DLINK_FOREACH(ptr, list->head)
212380e3
AC
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) ||
de293496 598 (s3 != NULL && match(actualBan->banstr, s3)) ||
1c60de97 599 (s4 != NULL && (match(actualBan->banstr, s4) || match_cidr(actualBan->banstr, s4)))
1c60de97 600 )
212380e3
AC
601 break;
602 else
603 actualBan = NULL;
604 }
605
606 if((actualBan != NULL) && ConfigChannel.use_except)
607 {
5cefa1d6 608 RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
212380e3
AC
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
765d839d
EM
648 if (actualBan && actualBan->forward && forward)
649 *forward = actualBan->forward;
650
212380e3
AC
651 return ((actualBan ? CHFL_BAN : 0));
652}
653
a14de124
JT
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 */
661int
662is_banned(struct Channel *chptr, struct Client *who, struct membership *msptr,
663 const char *s, const char *s2, const char **forward)
664{
ed9f6a65 665#if 0
2f9687c4
AC
666 if (chptr->last_checked_client != NULL &&
667 who == chptr->last_checked_client &&
668 chptr->last_checked_type == CHFL_BAN &&
1e8138af 669 chptr->last_checked_ts > chptr->bants)
2f9687c4
AC
670 return chptr->last_checked_result;
671
bcbc6bd9 672 chptr->last_checked_client = who;
2f9687c4
AC
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;
ed9f6a65
AJ
678#else
679 return is_banned_list(chptr, &chptr->banlist, who, msptr, s, s2, forward);
680#endif
a14de124
JT
681}
682
212380e3
AC
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 */
690int
691is_quieted(struct Channel *chptr, struct Client *who, struct membership *msptr,
692 const char *s, const char *s2)
693{
ed9f6a65 694#if 0
2f9687c4
AC
695 if (chptr->last_checked_client != NULL &&
696 who == chptr->last_checked_client &&
697 chptr->last_checked_type == CHFL_QUIET &&
1e8138af 698 chptr->last_checked_ts > chptr->bants)
2f9687c4
AC
699 return chptr->last_checked_result;
700
bcbc6bd9 701 chptr->last_checked_client = who;
2f9687c4
AC
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;
ed9f6a65
AJ
707#else
708 return is_banned_list(chptr, &chptr->quietlist, who, msptr, s, s2, NULL);
709#endif
212380e3
AC
710}
711
712/* can_join()
713 *
714 * input - client to check, channel to check for, key
765d839d 715 * output - reason for not being able to join, else 0, channel name to forward to
212380e3 716 * side effects -
a63f7af7 717 * caveats - this function should only be called on a local user.
212380e3
AC
718 */
719int
fe74401b 720can_join(struct Client *source_p, struct Channel *chptr, const char *key, const char **forward)
212380e3 721{
330fc5c1
AC
722 rb_dlink_node *invite = NULL;
723 rb_dlink_node *ptr;
212380e3 724 struct Ban *invex = NULL;
fe5fc851
SA
725 char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
726 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
727 char src_althost[NAMELEN + USERLEN + HOSTLEN + 6];
212380e3 728 int use_althost = 0;
1ebf4db4 729 int i = 0;
212380e3
AC
730 hook_data_channel moduledata;
731
732 s_assert(source_p->localClient != NULL);
733
8bb19bd7
AC
734 moduledata.client = source_p;
735 moduledata.chptr = chptr;
736 moduledata.approved = 0;
737
5203cba5
VI
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);
212380e3
AC
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 {
5203cba5 745 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->orighost);
212380e3
AC
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 {
5203cba5 752 sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->localClient->mangledhost);
212380e3
AC
753 use_althost = 1;
754 }
755 }
756
765d839d 757 if((is_banned(chptr, source_p, NULL, src_host, src_iphost, forward)) == CHFL_BAN)
8bb19bd7
AC
758 {
759 moduledata.approved = ERR_BANNEDFROMCHAN;
760 goto finish_join_check;
761 }
212380e3 762
765d839d
EM
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
212380e3
AC
773 if(chptr->mode.mode & MODE_INVITEONLY)
774 {
5cefa1d6 775 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
212380e3 776 {
1ebf4db4 777 if(invite->data == chptr)
212380e3
AC
778 break;
779 }
1ebf4db4 780 if(invite == NULL)
212380e3
AC
781 {
782 if(!ConfigChannel.use_invex)
8bb19bd7 783 moduledata.approved = ERR_INVITEONLYCHAN;
5cefa1d6 784 RB_DLINK_FOREACH(ptr, chptr->invexlist.head)
212380e3
AC
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)
8bb19bd7 795 moduledata.approved = ERR_INVITEONLYCHAN;
212380e3
AC
796 }
797 }
798
212380e3 799 if(chptr->mode.limit &&
330fc5c1 800 rb_dlink_list_length(&chptr->members) >= (unsigned long) chptr->mode.limit)
1ebf4db4 801 i = ERR_CHANNELISFULL;
212380e3 802 if(chptr->mode.mode & MODE_REGONLY && EmptyString(source_p->user->suser))
1ebf4db4 803 i = ERR_NEEDREGGEDNICK;
212380e3 804 /* join throttling stuff --nenolod */
1ebf4db4 805 else if(chptr->mode.join_num > 0 && chptr->mode.join_time > 0)
212380e3 806 {
55abcbb2 807 if ((rb_current_time() - chptr->join_delta <=
212380e3
AC
808 chptr->mode.join_time) && (chptr->join_count >=
809 chptr->mode.join_num))
1ebf4db4
JT
810 i = ERR_THROTTLE;
811 }
812
813 /* allow /invite to override +l/+r/+j also -- jilles */
814 if (i != 0 && invite == NULL)
815 {
5cefa1d6 816 RB_DLINK_FOREACH(invite, source_p->user->invited.head)
1ebf4db4
JT
817 {
818 if(invite->data == chptr)
819 break;
820 }
821 if (invite == NULL)
8bb19bd7 822 moduledata.approved = i;
212380e3
AC
823 }
824
8bb19bd7 825finish_join_check:
212380e3
AC
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 */
837int
838can_send(struct Channel *chptr, struct Client *source_p, struct membership *msptr)
839{
0aa36c5f
AC
840 hook_data_channel_approval moduledata;
841
842 moduledata.approved = CAN_SEND_NONOP;
202d4966 843 moduledata.dir = MODE_QUERY;
0aa36c5f 844
212380e3
AC
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))
0aa36c5f 850 moduledata.approved = CAN_SEND_NO;
212380e3
AC
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)
0aa36c5f 863 moduledata.approved = CAN_SEND_NO;
212380e3 864 else
0aa36c5f 865 moduledata.approved = CAN_SEND_NONOP;
b697041e
AC
866
867 return moduledata.approved;
212380e3
AC
868 }
869 }
870
212380e3 871 if(chptr->mode.mode & MODE_MODERATED)
0aa36c5f 872 moduledata.approved = CAN_SEND_NO;
212380e3
AC
873
874 if(MyClient(source_p))
875 {
876 /* cached can_send */
877 if(msptr->bants == chptr->bants)
878 {
879 if(can_send_banned(msptr))
0aa36c5f 880 moduledata.approved = CAN_SEND_NO;
212380e3 881 }
765d839d 882 else if(is_banned(chptr, source_p, msptr, NULL, NULL, NULL) == CHFL_BAN
212380e3 883 || is_quieted(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN)
0aa36c5f 884 moduledata.approved = CAN_SEND_NO;
212380e3
AC
885 }
886
e06988c6
AC
887 if(is_chanop_voiced(msptr))
888 moduledata.approved = CAN_SEND_OPV;
889
f4b52a0a
EM
890 moduledata.client = source_p;
891 moduledata.chptr = msptr->chptr;
892 moduledata.msptr = msptr;
893 moduledata.target = NULL;
202d4966 894 moduledata.dir = (moduledata.approved == CAN_SEND_NO) ? MODE_ADD : MODE_QUERY;
f4b52a0a 895
0aa36c5f
AC
896 call_hook(h_can_send, &moduledata);
897
898 return moduledata.approved;
212380e3
AC
899}
900
15484f02
BG
901/*
902 * flood_attack_channel
903 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
904 * says NOTICE must not auto reply
55abcbb2 905 * - pointer to source Client
3b9507d0
MU
906 * - pointer to target channel
907 * output - true if target is under flood attack
15484f02
BG
908 * side effects - check for flood attack on target chptr
909 */
3b9507d0 910bool
15484f02
BG
911flood_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);
3b9507d0 948 return true;
15484f02
BG
949 }
950 else
951 chptr->received_number_of_privmsgs++;
952 }
953
3b9507d0 954 return false;
15484f02
BG
955}
956
212380e3
AC
957/* find_bannickchange_channel()
958 * Input: client to check
959 * Output: channel preventing nick change
960 */
961struct Channel *
962find_bannickchange_channel(struct Client *client_p)
963{
964 struct Channel *chptr;
965 struct membership *msptr;
330fc5c1 966 rb_dlink_node *ptr;
fe5fc851
SA
967 char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
968 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
212380e3
AC
969
970 if (!MyClient(client_p))
971 return NULL;
972
5203cba5
VI
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);
212380e3 975
5cefa1d6 976 RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
212380e3
AC
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 }
765d839d 988 else if (is_banned(chptr, client_p, msptr, src_host, src_iphost, NULL) == CHFL_BAN
212380e3
AC
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 */
1002void
1003check_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;
e0c1f4ec
JT
1014 if(source_p->localClient->oper_warn_count_down == 0 &&
1015 name != NULL)
212380e3
AC
1016 {
1017 /* Its already known as a possible spambot */
e0c1f4ec
JT
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);
212380e3
AC
1022 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
1023 }
1024 }
1025 else
1026 {
1027 if((t_delta =
e3354945 1028 (rb_current_time() - source_p->localClient->last_leave_time)) >
212380e3
AC
1029 JOIN_LEAVE_COUNT_EXPIRE_TIME)
1030 {
1031 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
981586df
JT
1032 if(name != NULL)
1033 ;
1034 else if(decrement_count > source_p->localClient->join_leave_count)
212380e3
AC
1035 source_p->localClient->join_leave_count = 0;
1036 else
1037 source_p->localClient->join_leave_count -= decrement_count;
1038 }
1039 else
1040 {
e3354945 1041 if((rb_current_time() -
212380e3
AC
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)
e3354945 1049 source_p->localClient->last_join_time = rb_current_time();
212380e3 1050 else
e3354945 1051 source_p->localClient->last_leave_time = rb_current_time();
212380e3
AC
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 */
1062void
1063check_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");
c608a061 1077 check_splitmode_ev = rb_event_addish("check_splitmode", check_splitmode, NULL, 2);
212380e3
AC
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
c608a061 1088 rb_event_delete(check_splitmode_ev);
6a309903 1089 check_splitmode_ev = NULL;
212380e3
AC
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 */
1101static void
1102allocate_topic(struct Channel *chptr)
1103{
1104 void *ptr;
1105
1106 if(chptr == NULL)
1107 return;
1108
398b6a73 1109 ptr = rb_bh_alloc(topic_heap);
212380e3
AC
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
55abcbb2 1113 * in the chptr
212380e3
AC
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 */
1127static void
1128free_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;
398b6a73 1139 rb_bh_free(topic_heap, ptr);
212380e3
AC
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 */
1150void
1151set_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);
f427c8b0
VY
1157 rb_strlcpy(chptr->topic, topic, TOPICLEN + 1);
1158 rb_strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
212380e3
AC
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
3b8a6350 1169/* channel_modes()
212380e3
AC
1170 *
1171 * inputs - pointer to channel
1172 * - pointer to client
f1e35c19
JT
1173 * output - string with simple modes
1174 * side effects - result from previous calls overwritten
212380e3
AC
1175 *
1176 * Stolen from ShadowIRCd 4 --nenolod
1177 */
1178const char *
3b8a6350 1179channel_modes(struct Channel *chptr, struct Client *client_p)
212380e3
AC
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
efccc22c 1191 for (i = 0; i < 256; i++)
be29ec79
AC
1192 {
1193 if(chmode_table[i].set_func == chm_hidden && (!IsOper(client_p) || !IsClient(client_p)))
1194 continue;
3b8a6350 1195 if(chptr->mode.mode & chmode_flags[i])
efccc22c 1196 *mbuf++ = i;
be29ec79 1197 }
212380e3 1198
3b8a6350 1199 if(chptr->mode.limit)
212380e3
AC
1200 {
1201 *mbuf++ = 'l';
1202
f1e35c19 1203 if(!IsClient(client_p) || IsMember(client_p, chptr))
5203cba5 1204 pbuf += sprintf(pbuf, " %d", chptr->mode.limit);
212380e3
AC
1205 }
1206
3b8a6350 1207 if(*chptr->mode.key)
212380e3
AC
1208 {
1209 *mbuf++ = 'k';
1210
f1e35c19 1211 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
5203cba5 1212 pbuf += sprintf(pbuf, " %s", chptr->mode.key);
212380e3
AC
1213 }
1214
3b8a6350 1215 if(chptr->mode.join_num)
212380e3
AC
1216 {
1217 *mbuf++ = 'j';
1218
f1e35c19 1219 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
5203cba5 1220 pbuf += sprintf(pbuf, " %d:%d", chptr->mode.join_num,
3b8a6350 1221 chptr->mode.join_time);
212380e3
AC
1222 }
1223
2da6f6eb
JT
1224 if(*chptr->mode.forward &&
1225 (ConfigChannel.use_forward || !IsClient(client_p)))
212380e3
AC
1226 {
1227 *mbuf++ = 'f';
1228
f1e35c19 1229 if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
5203cba5 1230 pbuf += sprintf(pbuf, " %s", chptr->mode.forward);
212380e3
AC
1231 }
1232
1233 *mbuf = '\0';
1234
f427c8b0 1235 rb_strlcpy(final, buf1, sizeof final);
1f9de103 1236 rb_strlcat(final, buf2, sizeof final);
212380e3
AC
1237 return final;
1238}
1239
212380e3
AC
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
346fba92
AC
1251 *
1252 * Removed most code here because we don't need to be compatible with ircd
1253 * 2.8.21+CSr and stuff. --nenolod
212380e3
AC
1254 */
1255void
1256send_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;
346fba92 1264 int dir;
d352ca15 1265 int arglen = 0;
212380e3
AC
1266
1267 /* Now send to servers... */
346fba92
AC
1268 mc = 0;
1269 nc = 0;
1270 pbl = 0;
1271 parabuf[0] = 0;
1272 pbuf = parabuf;
1273 dir = MODE_QUERY;
1274
5203cba5 1275 mbl = preflen = sprintf(modebuf, ":%s TMODE %ld %s ",
346fba92
AC
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++)
212380e3 1281 {
346fba92
AC
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)
212380e3
AC
1287 continue;
1288
346fba92
AC
1289 if (!EmptyString(mode_changes[i].id))
1290 arg = mode_changes[i].id;
1291 else
1292 arg = mode_changes[i].arg;
212380e3 1293
346fba92 1294 if(arg)
212380e3 1295 {
346fba92 1296 arglen = strlen(arg);
212380e3 1297
346fba92
AC
1298 /* dont even think about it! --fl */
1299 if(arglen > MODEBUFLEN - 5)
1300 continue;
1301 }
212380e3 1302
346fba92
AC
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)
51452a37 1314 sendto_server(client_p, chptr, NOCAPS, NOCAPS,
346fba92
AC
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 }
212380e3 1325
346fba92
AC
1326 if(dir != mode_changes[i].dir)
1327 {
1328 modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1329 dir = mode_changes[i].dir;
1330 }
212380e3 1331
346fba92
AC
1332 modebuf[mbl++] = mode_changes[i].letter;
1333 modebuf[mbl] = 0;
1334 nc++;
212380e3 1335
346fba92
AC
1336 if(arg != NULL)
1337 {
5203cba5 1338 len = sprintf(pbuf, "%s ", arg);
346fba92
AC
1339 pbuf += len;
1340 pbl += len;
1341 mc++;
212380e3 1342 }
346fba92 1343 }
212380e3 1344
346fba92
AC
1345 if(pbl && parabuf[pbl - 1] == ' ')
1346 parabuf[pbl - 1] = 0;
212380e3 1347
346fba92 1348 if(nc != 0)
51452a37 1349 sendto_server(client_p, chptr, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
212380e3 1350}
dca9e552 1351
346fba92 1352void
dca9e552
JT
1353resv_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
4b1cce65 1381 sendto_channel_local(target_p, ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
dca9e552
JT
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)",
55abcbb2 1390 target_p->name, target_p->username,
dca9e552
JT
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}