ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/src/channel.c
Revision: 580
Committed: Mon May 1 21:27:23 2006 UTC (19 years, 4 months ago) by michael
Content type: text/x-csrc
File size: 24385 byte(s)
Log Message:
- Minor changes to pending_gline struct to improve readability
- Fixed compile error in channel.c

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 *
4 * Copyright (C) 2002 by the past and present ircd coders, and others.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file channel.c
23 * \brief Responsible for managing channels, members, bans and topics
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "channel.h"
29 #include "channel_mode.h"
30 #include "client.h"
31 #include "common.h"
32 #include "hash.h"
33 #include "hostmask.h"
34 #include "ircd.h"
35 #include "numeric.h"
36 #include "s_serv.h" /* captab */
37 #include "s_user.h"
38 #include "send.h"
39 #include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
40
41 struct config_channel_entry ConfigChannel;
42 dlink_list global_channel_list = { NULL, NULL, 0 };
43 BlockHeap *ban_heap; /*! \todo ban_heap shouldn't be a global var */
44
45 static BlockHeap *topic_heap = NULL;
46 static BlockHeap *member_heap = NULL;
47 static BlockHeap *channel_heap = NULL;
48
49 static char buf[IRCD_BUFSIZE];
50 static char modebuf[MODEBUFLEN];
51 static char parabuf[MODEBUFLEN];
52
53
54 /*! \brief Initializes the channel blockheap, adds known channel CAPAB
55 */
56 void
57 init_channels(void)
58 {
59 /*
60 * XXX - These should get moved to somwhere else once we have
61 * a modular channelmode system
62 */
63 add_capability("EX", CAP_EX, 1);
64 add_capability("IE", CAP_IE, 1);
65 add_capability("CHW", CAP_CHW, 1);
66
67 channel_heap = BlockHeapCreate("channel", sizeof(struct Channel), CHANNEL_HEAP_SIZE);
68 ban_heap = BlockHeapCreate("ban", sizeof(struct Ban), BAN_HEAP_SIZE);
69 topic_heap = BlockHeapCreate("topic", TOPICLEN+1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE);
70 member_heap = BlockHeapCreate("member", sizeof(struct Membership), CHANNEL_HEAP_SIZE*2);
71 }
72
73 /*! \brief adds a user to a channel by adding another link to the
74 * channels member chain.
75 * \param chptr pointer to channel to add client to
76 * \param who pointer to client (who) to add
77 * \param flags flags for chanops etc
78 * \param flood_ctrl whether to count this join in flood calculations
79 */
80 void
81 add_user_to_channel(struct Channel *chptr, struct Client *who,
82 unsigned int flags, int flood_ctrl)
83 {
84 struct Membership *ms = NULL;
85
86 if (GlobalSetOptions.joinfloodtime > 0)
87 {
88 if (flood_ctrl)
89 chptr->number_joined++;
90
91 chptr->number_joined -= (CurrentTime - chptr->last_join_time) *
92 (((float)GlobalSetOptions.joinfloodcount) /
93 (float)GlobalSetOptions.joinfloodtime);
94
95 if (chptr->number_joined <= 0)
96 {
97 chptr->number_joined = 0;
98 ClearJoinFloodNoticed(chptr);
99 }
100 else if (chptr->number_joined >= GlobalSetOptions.joinfloodcount)
101 {
102 chptr->number_joined = GlobalSetOptions.joinfloodcount;
103
104 if (!IsSetJoinFloodNoticed(chptr))
105 {
106 SetJoinFloodNoticed(chptr);
107 sendto_realops_flags(UMODE_BOTS, L_ALL,
108 "Possible Join Flooder %s on %s target: %s",
109 get_client_name(who, HIDE_IP),
110 who->servptr->name, chptr->chname);
111 }
112 }
113
114 chptr->last_join_time = CurrentTime;
115 }
116
117 ms = BlockHeapAlloc(member_heap);
118 ms->client_p = who;
119 ms->chptr = chptr;
120 ms->flags = flags;
121
122 dlinkAdd(ms, &ms->channode, &chptr->members);
123 dlinkAdd(ms, &ms->usernode, &who->channel);
124 }
125
126 /*! \brief deletes an user from a channel by removing a link in the
127 * channels member chain.
128 * \param member pointer to Membership struct
129 */
130 void
131 remove_user_from_channel(struct Membership *member)
132 {
133 struct Client *client_p = member->client_p;
134 struct Channel *chptr = member->chptr;
135
136 dlinkDelete(&member->channode, &chptr->members);
137 dlinkDelete(&member->usernode, &client_p->channel);
138
139 BlockHeapFree(member_heap, member);
140
141 if (chptr->members.head == NULL)
142 {
143 assert(dlink_list_length(&chptr->members) == 0);
144 destroy_channel(chptr);
145 }
146 }
147
148 /* send_members()
149 *
150 * inputs -
151 * output - NONE
152 * side effects -
153 */
154 static void
155 send_members(struct Client *client_p, struct Channel *chptr,
156 char *lmodebuf, char *lparabuf)
157 {
158 struct Membership *ms;
159 dlink_node *ptr;
160 int tlen; /* length of text to append */
161 char *t, *start; /* temp char pointer */
162
163 start = t = buf + ircsprintf(buf, ":%s SJOIN %lu %s %s %s:",
164 ID_or_name(&me, client_p),
165 (unsigned long)chptr->channelts,
166 chptr->chname, lmodebuf, lparabuf);
167
168 DLINK_FOREACH(ptr, chptr->members.head)
169 {
170 ms = ptr->data;
171
172 tlen = strlen(IsCapable(client_p, CAP_TS6) ?
173 ID(ms->client_p) : ms->client_p->name) + 1; /* nick + space */
174
175 if (ms->flags & CHFL_CHANOP)
176 ++tlen;
177 #ifdef HALFOPS
178 else if (ms->flags & CHFL_HALFOP)
179 ++tlen;
180 #endif
181 if (ms->flags & CHFL_VOICE)
182 ++tlen;
183
184 /* space will be converted into CR, but we also need space for LF..
185 * That's why we use '- 1' here
186 * -adx */
187 if (t + tlen - buf > sizeof(buf) - 1)
188 {
189 *(t - 1) = '\0'; /* kill the space and terminate the string */
190 sendto_one(client_p, "%s", buf);
191 t = start;
192 }
193
194 if ((ms->flags & (CHFL_CHANOP | CHFL_HALFOP)))
195 *t++ = (!(ms->flags & CHFL_CHANOP) && IsCapable(client_p, CAP_HOPS)) ?
196 '%' : '@';
197 if ((ms->flags & CHFL_VOICE))
198 *t++ = '+';
199
200 if (IsCapable(client_p, CAP_TS6))
201 strcpy(t, ID(ms->client_p));
202 else
203 strcpy(t, ms->client_p->name);
204 t += strlen(t);
205 *t++ = ' ';
206 }
207
208 /* should always be non-NULL unless we have a kind of persistent channels */
209 if (chptr->members.head != NULL)
210 t--; /* take the space out */
211 *t = '\0';
212 sendto_one(client_p, "%s", buf);
213 }
214
215 /*! \brief sends +b/+e/+I
216 * \param client_p client pointer to server
217 * \param chptr pointer to channel
218 * \param top pointer to top of mode link list to send
219 * \param flag char flag flagging type of mode. Currently this can be 'b', e' or 'I'
220 */
221 static void
222 send_mode_list(struct Client *client_p, struct Channel *chptr,
223 dlink_list *top, char flag)
224 {
225 int ts5 = !IsCapable(client_p, CAP_TS6);
226 dlink_node *lp;
227 struct Ban *banptr;
228 char pbuf[IRCD_BUFSIZE];
229 int tlen, mlen, cur_len, count = 0;
230 char *mp = NULL, *pp = pbuf;
231
232 if (top->length == 0)
233 return;
234
235 if (ts5)
236 mlen = ircsprintf(buf, ":%s MODE %s +", me.name, chptr->chname);
237 else
238 mlen = ircsprintf(buf, ":%s BMASK %lu %s %c :", me.id,
239 (unsigned long)chptr->channelts, chptr->chname, flag);
240
241 /* MODE needs additional one byte for space between buf and pbuf */
242 cur_len = mlen + ts5;
243 mp = buf + mlen;
244
245 DLINK_FOREACH(lp, top->head)
246 {
247 banptr = lp->data;
248
249 /* must add another b/e/I letter if we use MODE */
250 tlen = banptr->len + 3 + ts5;
251
252 /*
253 * send buffer and start over if we cannot fit another ban,
254 * or if the target is non-ts6 and we have too many modes in
255 * in this line.
256 */
257 if (cur_len + (tlen - 1) > IRCD_BUFSIZE - 2 ||
258 (!IsCapable(client_p, CAP_TS6) &&
259 (count >= MAXMODEPARAMS || pp - pbuf >= MODEBUFLEN)))
260 {
261 *(pp - 1) = '\0'; /* get rid of trailing space on buffer */
262 sendto_one(client_p, "%s%s%s", buf, ts5 ? " " : "", pbuf);
263
264 cur_len = mlen + ts5;
265 mp = buf + mlen;
266 pp = pbuf;
267 count = 0;
268 }
269
270 count++;
271 if (ts5)
272 {
273 *mp++ = flag;
274 *mp = '\0';
275 }
276
277 pp += ircsprintf(pp, "%s!%s@%s ", banptr->name, banptr->username,
278 banptr->host);
279 cur_len += tlen;
280 }
281
282 *(pp - 1) = '\0'; /* get rid of trailing space on buffer */
283 sendto_one(client_p, "%s%s%s", buf, ts5 ? " " : "", pbuf);
284 }
285
286 /*! \brief send "client_p" a full list of the modes for channel chptr
287 * \param client_p pointer to client client_p
288 * \param chptr pointer to channel pointer
289 */
290 void
291 send_channel_modes(struct Client *client_p, struct Channel *chptr)
292 {
293 if (chptr->chname[0] != '#')
294 return;
295
296 *modebuf = *parabuf = '\0';
297 channel_modes(chptr, client_p, modebuf, parabuf);
298 send_members(client_p, chptr, modebuf, parabuf);
299
300 send_mode_list(client_p, chptr, &chptr->banlist, 'b');
301
302 if (IsCapable(client_p, CAP_EX))
303 send_mode_list(client_p, chptr, &chptr->exceptlist, 'e');
304 if (IsCapable(client_p, CAP_IE))
305 send_mode_list(client_p, chptr, &chptr->invexlist, 'I');
306 }
307
308 /*! \brief check channel name for invalid characters
309 * \param name pointer to channel name string
310 * \param local indicates whether it's a local or remote creation
311 * \return 0 if invalid, 1 otherwise
312 */
313 int
314 check_channel_name(const char *name, int local)
315 {
316 const char *p = name;
317 int max_length = local ? LOCAL_CHANNELLEN : CHANNELLEN;
318 assert(name != NULL);
319
320 if (!IsChanPrefix(*p))
321 return 0;
322
323 while (*++p)
324 if (!IsChanChar(*p))
325 return 0;
326
327 return p - name <= max_length;
328 }
329
330 void
331 remove_ban(struct Ban *bptr, dlink_list *list)
332 {
333 dlinkDelete(&bptr->node, list);
334
335 MyFree(bptr->name);
336 MyFree(bptr->username);
337 MyFree(bptr->host);
338 MyFree(bptr->who);
339
340 BlockHeapFree(ban_heap, bptr);
341 }
342
343 /* free_channel_list()
344 *
345 * inputs - pointer to dlink_list
346 * output - NONE
347 * side effects -
348 */
349 void
350 free_channel_list(dlink_list *list)
351 {
352 dlink_node *ptr = NULL, *next_ptr = NULL;
353
354 DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
355 remove_ban(ptr->data, list);
356
357 assert(list->tail == NULL && list->head == NULL);
358 }
359
360 /*! \brief Get Channel block for chname (and allocate a new channel
361 * block, if it didn't exist before)
362 * \param chname channel name
363 * \return channel block
364 */
365 struct Channel *
366 make_channel(const char *chname)
367 {
368 struct Channel *chptr = NULL;
369
370 assert(!EmptyString(chname));
371
372 chptr = BlockHeapAlloc(channel_heap);
373
374 /* doesn't hurt to set it here */
375 chptr->channelts = CurrentTime;
376 chptr->last_join_time = CurrentTime;
377
378 strlcpy(chptr->chname, chname, sizeof(chptr->chname));
379 dlinkAdd(chptr, &chptr->node, &global_channel_list);
380
381 hash_add_channel(chptr);
382
383 return chptr;
384 }
385
386 /*! \brief walk through this channel, and destroy it.
387 * \param chptr channel pointer
388 */
389 void
390 destroy_channel(struct Channel *chptr)
391 {
392 dlink_node *ptr = NULL, *ptr_next = NULL;
393
394 DLINK_FOREACH_SAFE(ptr, ptr_next, chptr->invites.head)
395 del_invite(chptr, ptr->data);
396
397 /* free ban/exception/invex lists */
398 free_channel_list(&chptr->banlist);
399 free_channel_list(&chptr->exceptlist);
400 free_channel_list(&chptr->invexlist);
401
402 /* Free the topic */
403 free_topic(chptr);
404
405 dlinkDelete(&chptr->node, &global_channel_list);
406 hash_del_channel(chptr);
407
408 BlockHeapFree(channel_heap, chptr);
409 }
410
411 /*!
412 * \param chptr pointer to channel
413 * \return string pointer "=" if public, "@" if secret else "*"
414 */
415 static const char *
416 channel_pub_or_secret(struct Channel *chptr)
417 {
418 if (SecretChannel(chptr))
419 return "@";
420 if (ParanoidChannel(chptr))
421 return "*";
422 return "=";
423 }
424
425 /*! \brief lists all names on given channel
426 * \param source_p pointer to client struct requesting names
427 * \param chptr pointer to channel block
428 * \param show_eon show ENDOFNAMES numeric or not
429 * (don't want it with /names with no params)
430 */
431 void
432 channel_member_names(struct Client *source_p, struct Channel *chptr,
433 int show_eon)
434 {
435 struct Client *target_p = NULL;
436 struct Membership *ms = NULL;
437 dlink_node *ptr = NULL;
438 char lbuf[IRCD_BUFSIZE + 1];
439 char *t = NULL, *start = NULL;
440 int tlen = 0;
441 int is_member = IsMember(source_p, chptr);
442 int multi_prefix = (source_p->localClient->cap_active & CAP_MULTI_PREFIX) != 0;
443
444 if (PubChannel(chptr) || is_member)
445 {
446 t = lbuf + ircsprintf(lbuf, form_str(RPL_NAMREPLY),
447 me.name, source_p->name,
448 channel_pub_or_secret(chptr),
449 chptr->chname);
450 start = t;
451
452 DLINK_FOREACH(ptr, chptr->members.head)
453 {
454 ms = ptr->data;
455 target_p = ms->client_p;
456
457 if (IsInvisible(target_p) && !is_member)
458 continue;
459
460 tlen = strlen(target_p->name) + 1; /* nick + space */
461
462 if (!multi_prefix)
463 {
464 if (ms->flags & (CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE))
465 ++tlen;
466 }
467 else
468 {
469 if (ms->flags & CHFL_CHANOP)
470 ++tlen;
471 if (ms->flags & CHFL_HALFOP)
472 ++tlen;
473 if (ms->flags & CHFL_VOICE)
474 ++tlen;
475 }
476
477 if (t + tlen - lbuf > IRCD_BUFSIZE)
478 {
479 *(t - 1) = '\0';
480 sendto_one(source_p, "%s", lbuf);
481 t = start;
482 }
483
484 t += ircsprintf(t, "%s%s ", get_member_status(ms, multi_prefix),
485 target_p->name);
486 }
487
488 if (tlen != 0)
489 {
490 *(t - 1) = '\0';
491 sendto_one(source_p, "%s", lbuf);
492 }
493 }
494
495 if (show_eon)
496 sendto_one(source_p, form_str(RPL_ENDOFNAMES),
497 me.name, source_p->name, chptr->chname);
498 }
499
500 /*! \brief adds client to invite list
501 * \param chptr pointer to channel block
502 * \param who pointer to client to add invite to
503 */
504 void
505 add_invite(struct Channel *chptr, struct Client *who)
506 {
507 del_invite(chptr, who);
508
509 /*
510 * delete last link in chain if the list is max length
511 */
512 if (dlink_list_length(&who->localClient->invited) >=
513 ConfigChannel.max_chans_per_user)
514 del_invite(who->localClient->invited.tail->data, who);
515
516 /* add client to channel invite list */
517 dlinkAdd(who, make_dlink_node(), &chptr->invites);
518
519 /* add channel to the end of the client invite list */
520 dlinkAdd(chptr, make_dlink_node(), &who->localClient->invited);
521 }
522
523 /*! \brief Delete Invite block from channel invite list
524 * and client invite list
525 * \param chptr pointer to Channel struct
526 * \param who pointer to client to remove invites from
527 */
528 void
529 del_invite(struct Channel *chptr, struct Client *who)
530 {
531 dlink_node *ptr = NULL;
532
533 if ((ptr = dlinkFindDelete(&who->localClient->invited, chptr)))
534 free_dlink_node(ptr);
535
536 if ((ptr = dlinkFindDelete(&chptr->invites, who)))
537 free_dlink_node(ptr);
538 }
539
540 /* get_member_status()
541 *
542 * inputs - pointer to struct Membership
543 * - YES if we can combine different flags
544 * output - string either @, +, % or "" depending on whether
545 * chanop, voiced or user
546 * side effects -
547 *
548 * NOTE: Returned string is usually a static buffer
549 * (like in get_client_name)
550 */
551 const char *
552 get_member_status(const struct Membership *ms, int combine)
553 {
554 static char buffer[4];
555 char *p = NULL;
556
557 if (ms == NULL)
558 return "";
559 p = buffer;
560
561 if (ms->flags & CHFL_CHANOP)
562 {
563 if (!combine)
564 return "@";
565 *p++ = '@';
566 }
567
568 #ifdef HALFOPS
569 if (ms->flags & CHFL_HALFOP)
570 {
571 if (!combine)
572 return "%";
573 *p++ = '%';
574 }
575 #endif
576
577 if (ms->flags & CHFL_VOICE)
578 *p++ = '+';
579 *p = '\0';
580
581 return buffer;
582 }
583
584 /*!
585 * \param who pointer to Client to check
586 * \param list pointer to ban list to search
587 * \return 1 if ban found for given n!u\@h mask, 0 otherwise
588 *
589 */
590 static int
591 find_bmask(const struct Client *who, const dlink_list *const list)
592 {
593 const dlink_node *ptr = NULL;
594
595 DLINK_FOREACH(ptr, list->head)
596 {
597 struct Ban *bp = ptr->data;
598
599 if (match(bp->name, who->name) && match(bp->username, who->username))
600 {
601 switch (bp->type)
602 {
603 case HM_HOST:
604 if (match(bp->host, who->host) || match(bp->host, who->sockhost))
605 return 1;
606 break;
607 case HM_IPV4:
608 if (who->localClient->aftype == AF_INET)
609 if (match_ipv4(&who->localClient->ip, &bp->addr, bp->bits))
610 return 1;
611 break;
612 #ifdef IPV6
613 case HM_IPV6:
614 if (who->localClient->aftype == AF_INET6)
615 if (match_ipv6(&who->localClient->ip, &bp->addr, bp->bits))
616 return 1;
617 break;
618 #endif
619 default:
620 assert(0);
621 }
622 }
623 }
624
625 return 0;
626 }
627
628 /*!
629 * \param chptr pointer to channel block
630 * \param who pointer to client to check access fo
631 * \return 0 if not banned, 1 otherwise
632 */
633 int
634 is_banned(const struct Channel *chptr, const struct Client *who)
635 {
636 assert(IsClient(who));
637
638 if (find_bmask(who, &chptr->banlist))
639 if (!ConfigChannel.use_except || !find_bmask(who, &chptr->exceptlist))
640 return 1;
641
642 return 0;
643 }
644
645 /*!
646 * \param source_p pointer to client attempting to join
647 * \param chptr pointer to channel
648 * \param key key sent by client attempting to join if present
649 * \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL
650 * or 0 if allowed to join.
651 */
652 int
653 can_join(struct Client *source_p, struct Channel *chptr, const char *key)
654 {
655 if (is_banned(chptr, source_p))
656 return ERR_BANNEDFROMCHAN;
657
658 if (chptr->mode.mode & MODE_INVITEONLY)
659 if (!dlinkFind(&source_p->localClient->invited, chptr))
660 if (!ConfigChannel.use_invex || !find_bmask(source_p, &chptr->invexlist))
661 return ERR_INVITEONLYCHAN;
662
663 if (chptr->mode.key[0] && (EmptyString(key) || irccmp(chptr->mode.key, key)))
664 return ERR_BADCHANNELKEY;
665
666 if (chptr->mode.limit && dlink_list_length(&chptr->members) >=
667 chptr->mode.limit)
668 return ERR_CHANNELISFULL;
669
670 return 0;
671 }
672
673 int
674 has_member_flags(struct Membership *ms, unsigned int flags)
675 {
676 if (ms != NULL)
677 return ms->flags & flags;
678 return 0;
679 }
680
681 struct Membership *
682 find_channel_link(struct Client *client_p, struct Channel *chptr)
683 {
684 dlink_node *ptr = NULL;
685
686 if (!IsClient(client_p))
687 return NULL;
688
689 DLINK_FOREACH(ptr, client_p->channel.head)
690 if (((struct Membership *)ptr->data)->chptr == chptr)
691 return (struct Membership *)ptr->data;
692
693 return NULL;
694 }
695
696 /*!
697 * \param chptr pointer to Channel struct
698 * \param source_p pointer to Client struct
699 * \param ms pointer to Membership struct (can be NULL)
700 * \return CAN_SEND_OPV if op or voiced on channel\n
701 * CAN_SEND_NONOP if can send to channel but is not an op\n
702 * CAN_SEND_NO if they cannot send to channel\n
703 */
704 int
705 can_send(struct Channel *chptr, struct Client *source_p, struct Membership *ms)
706 {
707 if (IsServer(source_p))
708 return CAN_SEND_OPV;
709
710 if (MyClient(source_p) && !IsExemptResv(source_p))
711 if (!(IsOper(source_p) && ConfigFileEntry.oper_pass_resv))
712 if (!hash_find_resv(chptr->chname) == ConfigChannel.restrict_channels)
713 return CAN_SEND_NO;
714
715 if (ms != NULL || (ms = find_channel_link(source_p, chptr)))
716 {
717 if (ms->flags & (CHFL_CHANOP|CHFL_HALFOP|CHFL_VOICE))
718 return CAN_SEND_OPV;
719
720 /* cache can send if quiet_on_ban and banned */
721 if (ConfigChannel.quiet_on_ban && MyClient(source_p))
722 {
723 if (ms->flags & CHFL_BAN_SILENCED)
724 return CAN_SEND_NO;
725
726 if (!(ms->flags & CHFL_BAN_CHECKED))
727 {
728 if (is_banned(chptr, source_p))
729 {
730 ms->flags |= (CHFL_BAN_CHECKED|CHFL_BAN_SILENCED);
731 return CAN_SEND_NO;
732 }
733
734 ms->flags |= CHFL_BAN_CHECKED;
735 }
736 }
737 }
738 else if (chptr->mode.mode & MODE_NOPRIVMSGS)
739 return CAN_SEND_NO;
740
741 if (chptr->mode.mode & MODE_MODERATED)
742 return CAN_SEND_NO;
743
744 return CAN_SEND_NONOP;
745 }
746
747 /*! \brief Updates the client's oper_warn_count_down, warns the
748 * IRC operators if necessary, and updates
749 * join_leave_countdown as needed.
750 * \param source_p pointer to struct Client to check
751 * \param name channel name or NULL if this is a part.
752 */
753 void
754 check_spambot_warning(struct Client *source_p, const char *name)
755 {
756 int t_delta = 0;
757 int decrement_count = 0;
758
759 if ((GlobalSetOptions.spam_num &&
760 (source_p->localClient->join_leave_count >=
761 GlobalSetOptions.spam_num)))
762 {
763 if (source_p->localClient->oper_warn_count_down > 0)
764 source_p->localClient->oper_warn_count_down--;
765 else
766 source_p->localClient->oper_warn_count_down = 0;
767
768 if (source_p->localClient->oper_warn_count_down == 0)
769 {
770 /* Its already known as a possible spambot */
771 if (name != NULL)
772 sendto_realops_flags(UMODE_BOTS, L_ALL,
773 "User %s (%s@%s) trying to join %s is a possible spambot",
774 source_p->name, source_p->username,
775 source_p->host, name);
776 else
777 sendto_realops_flags(UMODE_BOTS, L_ALL,
778 "User %s (%s@%s) is a possible spambot",
779 source_p->name, source_p->username,
780 source_p->host);
781 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
782 }
783 }
784 else
785 {
786 if ((t_delta = (CurrentTime - source_p->localClient->last_leave_time)) >
787 JOIN_LEAVE_COUNT_EXPIRE_TIME)
788 {
789 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
790 if (decrement_count > source_p->localClient->join_leave_count)
791 source_p->localClient->join_leave_count = 0;
792 else
793 source_p->localClient->join_leave_count -= decrement_count;
794 }
795 else
796 {
797 if ((CurrentTime - (source_p->localClient->last_join_time)) <
798 GlobalSetOptions.spam_time)
799 {
800 /* oh, its a possible spambot */
801 source_p->localClient->join_leave_count++;
802 }
803 }
804
805 if (name != NULL)
806 source_p->localClient->last_join_time = CurrentTime;
807 else
808 source_p->localClient->last_leave_time = CurrentTime;
809 }
810 }
811
812 /*! \brief compares usercount and servercount against their split
813 * values and adjusts splitmode accordingly
814 * \param unused Unused address pointer
815 */
816 void
817 check_splitmode(void *unused)
818 {
819 if (splitchecking && (ConfigChannel.no_join_on_split ||
820 ConfigChannel.no_create_on_split))
821 {
822 const unsigned int server = dlink_list_length(&global_serv_list);
823
824 if (!splitmode && ((server < split_servers) || (Count.total < split_users)))
825 {
826 splitmode = 1;
827
828 sendto_realops_flags(UMODE_ALL,L_ALL,
829 "Network split, activating splitmode");
830 eventAddIsh("check_splitmode", check_splitmode, NULL, 10);
831 }
832 else if (splitmode && (server > split_servers) && (Count.total > split_users))
833 {
834 splitmode = 0;
835
836 sendto_realops_flags(UMODE_ALL, L_ALL,
837 "Network rejoined, deactivating splitmode");
838 eventDelete(check_splitmode, NULL);
839 }
840 }
841 }
842
843 /*! \brief Allocates a new topic
844 * \param chptr Channel to allocate a new topic for
845 */
846 static void
847 allocate_topic(struct Channel *chptr)
848 {
849 void *ptr = NULL;
850 assert(chptr);
851
852 ptr = BlockHeapAlloc(topic_heap);
853
854 /* Basically we allocate one large block for the topic and
855 * the topic info. We then split it up into two and shove it
856 * in the chptr
857 */
858 chptr->topic = ptr;
859 chptr->topic_info = (char *)ptr + TOPICLEN+1;
860 *chptr->topic = '\0';
861 *chptr->topic_info = '\0';
862 }
863
864 void
865 free_topic(struct Channel *chptr)
866 {
867 void *ptr = NULL;
868 assert(chptr);
869 if (chptr->topic == NULL)
870 return;
871
872 /*
873 * If you change allocate_topic you MUST change this as well
874 */
875 ptr = chptr->topic;
876 BlockHeapFree(topic_heap, ptr);
877 chptr->topic = NULL;
878 chptr->topic_info = NULL;
879 }
880
881 /*! \brief Sets the channel topic for chptr
882 * \param chptr Pointer to struct Channel
883 * \param topic The topic string
884 * \param topic_info n!u\@h formatted string of the topic setter
885 * \param topicts timestamp on the topic
886 */
887 void
888 set_channel_topic(struct Channel *chptr, const char *topic,
889 const char *topic_info, time_t topicts)
890 {
891 if (!EmptyString(topic))
892 {
893 if (chptr->topic == NULL)
894 allocate_topic(chptr);
895
896 strlcpy(chptr->topic, topic, TOPICLEN+1);
897 strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
898 chptr->topic_time = topicts;
899 }
900 else
901 {
902 if (chptr->topic != NULL)
903 free_topic(chptr);
904
905 chptr->topic_time = 0;
906 }
907 }
908

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision