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