ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/src/channel.c
Revision: 355
Committed: Mon Jan 2 22:04:51 2006 UTC (19 years, 7 months ago) by adx
Content type: text/x-csrc
File size: 24899 byte(s)
Log Message:
+ present halfops as ops to servers which don't support it
+ should work but please review before I break another net ;)


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 "ircd.h"
34 #include "numeric.h"
35 #include "s_serv.h" /* captab */
36 #include "s_user.h"
37 #include "send.h"
38 #include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
39
40 struct config_channel_entry ConfigChannel;
41 dlink_list global_channel_list = { NULL, NULL, 0 };
42 dlink_list lazylink_channels = { 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 == NULL || 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 * \return TRUE (1) if name ok, FALSE (0) otherwise
311 */
312 int
313 check_channel_name(const char *name)
314 {
315 const unsigned char *p = (const unsigned char *)name;
316 assert(name != NULL);
317
318 for (; *p; ++p)
319 if (!IsChanChar(*p))
320 return 0;
321
322 return 1;
323 }
324
325 void
326 remove_ban(struct Ban *bptr, dlink_list *list)
327 {
328 dlinkDelete(&bptr->node, list);
329
330 MyFree(bptr->name);
331 MyFree(bptr->username);
332 MyFree(bptr->host);
333 MyFree(bptr->who);
334
335 BlockHeapFree(ban_heap, bptr);
336 }
337
338 /* free_channel_list()
339 *
340 * inputs - pointer to dlink_list
341 * output - NONE
342 * side effects -
343 */
344 void
345 free_channel_list(dlink_list *list)
346 {
347 dlink_node *ptr = NULL, *next_ptr = NULL;
348
349 DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
350 remove_ban(ptr->data, list);
351
352 assert(list->tail == NULL && list->head == NULL);
353 }
354
355 /*! \brief Get Channel block for chname (and allocate a new channel
356 * block, if it didn't exist before)
357 * \param client_p client pointer
358 * \param chname channel name
359 * \param isnew pointer to int flag whether channel was newly created or not
360 * \return channel block or NULL if illegal name
361 */
362 struct Channel *
363 get_or_create_channel(struct Client *client_p, const char *chname, int *isnew)
364 {
365 struct Channel *chptr = NULL;
366 int len;
367
368 if (EmptyString(chname))
369 return NULL;
370
371 if ((len = strlen(chname)) > CHANNELLEN)
372 {
373 if (IsServer(client_p))
374 sendto_realops_flags(UMODE_DEBUG, L_ALL,
375 "*** Long channel name from %s (%d > %d): %s",
376 client_p->name, len, CHANNELLEN, chname);
377 return NULL;
378 }
379
380 if ((chptr = hash_find_channel(chname)) != NULL)
381 {
382 if (isnew != NULL)
383 *isnew = 0;
384
385 return chptr;
386 }
387
388 if (isnew != NULL)
389 *isnew = 1;
390
391 chptr = BlockHeapAlloc(channel_heap);
392 /* doesn't hurt to set it here */
393 chptr->channelts = chptr->last_join_time = CurrentTime;
394
395 strlcpy(chptr->chname, chname, sizeof(chptr->chname));
396 dlinkAdd(chptr, &chptr->node, &global_channel_list);
397
398 hash_add_channel(chptr);
399
400 return chptr;
401 }
402
403 /*! \brief walk through this channel, and destroy it.
404 * \param chptr channel pointer
405 */
406 void
407 destroy_channel(struct Channel *chptr)
408 {
409 dlink_node *ptr = NULL, *ptr_next = NULL;
410
411 DLINK_FOREACH_SAFE(ptr, ptr_next, chptr->invites.head)
412 del_invite(chptr, ptr->data);
413
414 /* free ban/exception/invex lists */
415 free_channel_list(&chptr->banlist);
416 free_channel_list(&chptr->exceptlist);
417 free_channel_list(&chptr->invexlist);
418
419 /* Free the topic */
420 free_topic(chptr);
421
422 dlinkDelete(&chptr->node, &global_channel_list);
423 hash_del_channel(chptr);
424
425 if (ServerInfo.hub)
426 if ((ptr = dlinkFindDelete(&lazylink_channels, chptr)))
427 free_dlink_node(ptr);
428
429 BlockHeapFree(channel_heap, chptr);
430 }
431
432 /*!
433 * \param chptr pointer to channel
434 * \return string pointer "=" if public, "@" if secret else "*"
435 */
436 static const char *
437 channel_pub_or_secret(struct Channel *chptr)
438 {
439 if (SecretChannel(chptr))
440 return "@";
441 if (ParanoidChannel(chptr))
442 return "*";
443 return "=";
444 }
445
446 /*! \brief lists all names on given channel
447 * \param source_p pointer to client struct requesting names
448 * \param chptr pointer to channel block
449 * \param show_eon show ENDOFNAMES numeric or not
450 * (don't want it with /names with no params)
451 */
452 void
453 channel_member_names(struct Client *source_p, struct Channel *chptr,
454 int show_eon)
455 {
456 struct Client *target_p = NULL;
457 struct Membership *ms = NULL;
458 dlink_node *ptr = NULL;
459 char lbuf[IRCD_BUFSIZE + 1];
460 char *t = NULL, *start = NULL;
461 int tlen = 0;
462 int is_member = IsMember(source_p, chptr);
463
464 if (PubChannel(chptr) || is_member)
465 {
466 t = lbuf + ircsprintf(lbuf, form_str(RPL_NAMREPLY),
467 me.name, source_p->name,
468 channel_pub_or_secret(chptr),
469 chptr->chname);
470 start = t;
471
472 DLINK_FOREACH(ptr, chptr->members.head)
473 {
474 ms = ptr->data;
475 target_p = ms->client_p;
476
477 if (IsInvisible(target_p) && !is_member)
478 continue;
479
480 tlen = strlen(target_p->name) + 1; /* nick + space */
481
482 if (ms->flags & (CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE))
483 ++tlen;
484 if (t + tlen - lbuf > IRCD_BUFSIZE)
485 {
486 *(t - 1) = '\0';
487 sendto_one(source_p, "%s", lbuf);
488 t = start;
489 }
490
491 t += ircsprintf(t, "%s%s ", get_member_status(ms, NO),
492 target_p->name);
493 }
494
495 if (tlen != 0)
496 {
497 *(t - 1) = '\0';
498 sendto_one(source_p, "%s", lbuf);
499 }
500 }
501
502 if (show_eon)
503 sendto_one(source_p, form_str(RPL_ENDOFNAMES),
504 me.name, source_p->name, chptr->chname);
505 }
506
507 /*! \brief adds client to invite list
508 * \param chptr pointer to channel block
509 * \param who pointer to client to add invite to
510 */
511 void
512 add_invite(struct Channel *chptr, struct Client *who)
513 {
514 del_invite(chptr, who);
515
516 /*
517 * delete last link in chain if the list is max length
518 */
519 if (dlink_list_length(&who->localClient->invited) >=
520 ConfigChannel.max_chans_per_user)
521 del_invite(who->localClient->invited.tail->data, who);
522
523 /* add client to channel invite list */
524 dlinkAdd(who, make_dlink_node(), &chptr->invites);
525
526 /* add channel to the end of the client invite list */
527 dlinkAdd(chptr, make_dlink_node(), &who->localClient->invited);
528 }
529
530 /*! \brief Delete Invite block from channel invite list
531 * and client invite list
532 * \param chptr pointer to Channel struct
533 * \param who pointer to client to remove invites from
534 */
535 void
536 del_invite(struct Channel *chptr, struct Client *who)
537 {
538 dlink_node *ptr = NULL;
539
540 if ((ptr = dlinkFindDelete(&who->localClient->invited, chptr)))
541 free_dlink_node(ptr);
542
543 if ((ptr = dlinkFindDelete(&chptr->invites, who)))
544 free_dlink_node(ptr);
545 }
546
547 /* get_member_status()
548 *
549 * inputs - pointer to struct Membership
550 * - YES if we can combine different flags
551 * output - string either @, +, % or "" depending on whether
552 * chanop, voiced or user
553 * side effects -
554 *
555 * NOTE: Returned string is usually a static buffer
556 * (like in get_client_name)
557 */
558 const char *
559 get_member_status(const struct Membership *ms, int combine)
560 {
561 static char buffer[4];
562 char *p = NULL;
563
564 if (ms == NULL)
565 return "";
566 p = buffer;
567
568 if (ms->flags & CHFL_CHANOP)
569 {
570 if (!combine)
571 return "@";
572 *p++ = '@';
573 }
574
575 #ifdef HALFOPS
576 if (ms->flags & CHFL_HALFOP)
577 {
578 if (!combine)
579 return "%";
580 *p++ = '%';
581 }
582 #endif
583
584 if (ms->flags & CHFL_VOICE)
585 *p++ = '+';
586 *p = '\0';
587
588 return buffer;
589 }
590
591 /*!
592 * \param who pointer to Client to check
593 * \param list pointer to ban list to search
594 * \return 1 if ban found for given n!u\@h mask, 0 otherwise
595 *
596 */
597 static int
598 find_bmask(const struct Client *who, const dlink_list *const list)
599 {
600 const dlink_node *ptr = NULL;
601
602 DLINK_FOREACH(ptr, list->head)
603 {
604 const struct Ban *bp = ptr->data;
605
606 if (match(bp->name, who->name) &&
607 match(bp->username, who->username) &&
608 (match(bp->host, who->host) ||
609 match(bp->host, who->sockhost) ||
610 match_cidr(bp->host, who->sockhost)))
611 return 1;
612 }
613
614 return 0;
615 }
616
617 /*!
618 * \param chptr pointer to channel block
619 * \param who pointer to client to check access fo
620 * \return 0 if not banned, 1 otherwise
621 */
622 int
623 is_banned(struct Channel *chptr, struct Client *who)
624 {
625 assert(IsClient(who));
626
627 return find_bmask(who, &chptr->banlist) && (!ConfigChannel.use_except ||
628 !find_bmask(who, &chptr->exceptlist));
629 }
630
631 /*!
632 * \param source_p pointer to client attempting to join
633 * \param chptr pointer to channel
634 * \param key key sent by client attempting to join if present
635 * \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL
636 * or 0 if allowed to join.
637 */
638 int
639 can_join(struct Client *source_p, struct Channel *chptr, const char *key)
640 {
641 if (find_bmask(source_p, &chptr->banlist))
642 if (!ConfigChannel.use_except || !find_bmask(source_p, &chptr->exceptlist))
643 return ERR_BANNEDFROMCHAN;
644
645 if (chptr->mode.mode & MODE_INVITEONLY)
646 if (!dlinkFind(&source_p->localClient->invited, chptr))
647 if (!ConfigChannel.use_invex || !find_bmask(source_p, &chptr->invexlist))
648 return ERR_INVITEONLYCHAN;
649
650 if (chptr->mode.key[0] && (EmptyString(key) || irccmp(chptr->mode.key, key)))
651 return ERR_BADCHANNELKEY;
652
653 if (chptr->mode.limit && dlink_list_length(&chptr->members) >=
654 chptr->mode.limit)
655 return ERR_CHANNELISFULL;
656
657 return 0;
658 }
659
660 int
661 has_member_flags(struct Membership *ms, unsigned int flags)
662 {
663 if (ms != NULL)
664 return ms->flags & flags;
665 return 0;
666 }
667
668 struct Membership *
669 find_channel_link(struct Client *client_p, struct Channel *chptr)
670 {
671 dlink_node *ptr = NULL;
672
673 if (!IsClient(client_p))
674 return NULL;
675
676 DLINK_FOREACH(ptr, client_p->channel.head)
677 if (((struct Membership *)ptr->data)->chptr == chptr)
678 return (struct Membership *)ptr->data;
679
680 return NULL;
681 }
682
683 /*!
684 * \param chptr pointer to Channel struct
685 * \param source_p pointer to Client struct
686 * \return CAN_SEND_OPV if op or voiced on channel\n
687 * CAN_SEND_NONOP if can send to channel but is not an op\n
688 * CAN_SEND_NO if they cannot send to channel\n
689 */
690 int
691 can_send(struct Channel *chptr, struct Client *source_p)
692 {
693 struct Membership *ms = NULL;
694
695 if (IsServer(source_p))
696 return CAN_SEND_OPV;
697
698 if (MyClient(source_p) && !IsExemptResv(source_p) &&
699 !(IsOper(source_p) && ConfigFileEntry.oper_pass_resv) &&
700 (!hash_find_resv(chptr->chname) == ConfigChannel.restrict_channels))
701 return CAN_SEND_NO;
702
703 if ((ms = find_channel_link(source_p, chptr)) == NULL)
704 {
705 if (chptr->mode.mode & MODE_NOPRIVMSGS)
706 return CAN_SEND_NO;
707 }
708 else
709 {
710 if (ms->flags & (CHFL_CHANOP|CHFL_HALFOP|CHFL_VOICE))
711 return CAN_SEND_OPV;
712
713 /* cache can send if quiet_on_ban and banned */
714 if (ConfigChannel.quiet_on_ban && MyClient(source_p))
715 {
716 if (ms->flags & CHFL_BAN_SILENCED)
717 return CAN_SEND_NO;
718
719 if (!(ms->flags & CHFL_BAN_CHECKED))
720 {
721 if (is_banned(chptr, source_p))
722 {
723 ms->flags |= (CHFL_BAN_CHECKED|CHFL_BAN_SILENCED);
724 return CAN_SEND_NO;
725 }
726
727 ms->flags |= CHFL_BAN_CHECKED;
728 }
729 }
730 }
731
732 if (chptr->mode.mode & MODE_MODERATED)
733 return CAN_SEND_NO;
734
735 return CAN_SEND_NONOP;
736 }
737
738 /*! \brief Checks to see if given client can send a part message
739 * \param member pointer to channel membership
740 * \param chptr pointer to channel struct
741 * \param source_p pointer to struct Client to check
742 */
743 int
744 can_send_part(struct Membership *member, struct Channel *chptr,
745 struct Client *source_p)
746 {
747 if (has_member_flags(member, CHFL_CHANOP|CHFL_HALFOP))
748 return CAN_SEND_OPV;
749
750 if (chptr->mode.mode & MODE_MODERATED)
751 return CAN_SEND_NO;
752
753 if (ConfigChannel.quiet_on_ban && MyClient(source_p) &&
754 is_banned(chptr, source_p))
755 return CAN_SEND_NO;
756
757 return CAN_SEND_NONOP;
758 }
759
760 /*! \brief Updates the client's oper_warn_count_down, warns the
761 * IRC operators if necessary, and updates
762 * join_leave_countdown as needed.
763 * \param source_p pointer to struct Client to check
764 * \param name channel name or NULL if this is a part.
765 */
766 void
767 check_spambot_warning(struct Client *source_p, const char *name)
768 {
769 int t_delta = 0;
770 int decrement_count = 0;
771
772 if ((GlobalSetOptions.spam_num &&
773 (source_p->localClient->join_leave_count >=
774 GlobalSetOptions.spam_num)))
775 {
776 if (source_p->localClient->oper_warn_count_down > 0)
777 source_p->localClient->oper_warn_count_down--;
778 else
779 source_p->localClient->oper_warn_count_down = 0;
780
781 if (source_p->localClient->oper_warn_count_down == 0)
782 {
783 /* Its already known as a possible spambot */
784 if (name != NULL)
785 sendto_realops_flags(UMODE_BOTS, L_ALL,
786 "User %s (%s@%s) trying to join %s is a possible spambot",
787 source_p->name, source_p->username,
788 source_p->host, name);
789 else
790 sendto_realops_flags(UMODE_BOTS, L_ALL,
791 "User %s (%s@%s) is a possible spambot",
792 source_p->name, source_p->username,
793 source_p->host);
794 source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
795 }
796 }
797 else
798 {
799 if ((t_delta = (CurrentTime - source_p->localClient->last_leave_time)) >
800 JOIN_LEAVE_COUNT_EXPIRE_TIME)
801 {
802 decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
803 if (decrement_count > source_p->localClient->join_leave_count)
804 source_p->localClient->join_leave_count = 0;
805 else
806 source_p->localClient->join_leave_count -= decrement_count;
807 }
808 else
809 {
810 if ((CurrentTime - (source_p->localClient->last_join_time)) <
811 GlobalSetOptions.spam_time)
812 {
813 /* oh, its a possible spambot */
814 source_p->localClient->join_leave_count++;
815 }
816 }
817
818 if (name != NULL)
819 source_p->localClient->last_join_time = CurrentTime;
820 else
821 source_p->localClient->last_leave_time = CurrentTime;
822 }
823 }
824
825 /*! \brief compares usercount and servercount against their split
826 * values and adjusts splitmode accordingly
827 * \param unused Unused address pointer
828 */
829 void
830 check_splitmode(void *unused)
831 {
832 if (splitchecking && (ConfigChannel.no_join_on_split ||
833 ConfigChannel.no_create_on_split))
834 {
835 const unsigned int server = dlink_list_length(&global_serv_list);
836
837 if (!splitmode && ((server < split_servers) || (Count.total < split_users)))
838 {
839 splitmode = 1;
840
841 sendto_realops_flags(UMODE_ALL,L_ALL,
842 "Network split, activating splitmode");
843 eventAddIsh("check_splitmode", check_splitmode, NULL, 10);
844 }
845 else if (splitmode && (server > split_servers) && (Count.total > split_users))
846 {
847 splitmode = 0;
848
849 sendto_realops_flags(UMODE_ALL, L_ALL,
850 "Network rejoined, deactivating splitmode");
851 eventDelete(check_splitmode, NULL);
852 }
853 }
854 }
855
856 /*! \brief Allocates a new topic
857 * \param chptr Channel to allocate a new topic for
858 */
859 static void
860 allocate_topic(struct Channel *chptr)
861 {
862 void *ptr = NULL;
863
864 if (chptr == NULL)
865 return;
866
867 ptr = BlockHeapAlloc(topic_heap);
868
869 /* Basically we allocate one large block for the topic and
870 * the topic info. We then split it up into two and shove it
871 * in the chptr
872 */
873 chptr->topic = ptr;
874 chptr->topic_info = (char *)ptr + TOPICLEN+1;
875 *chptr->topic = '\0';
876 *chptr->topic_info = '\0';
877 }
878
879 void
880 free_topic(struct Channel *chptr)
881 {
882 void *ptr = NULL;
883 assert(chptr);
884 if (chptr->topic == NULL)
885 return;
886
887 /*
888 * If you change allocate_topic you MUST change this as well
889 */
890 ptr = chptr->topic;
891 BlockHeapFree(topic_heap, ptr);
892 chptr->topic = NULL;
893 chptr->topic_info = NULL;
894 }
895
896 /*! \brief Sets the channel topic for chptr
897 * \param chptr Pointer to struct Channel
898 * \param topic The topic string
899 * \param topic_info n!u\@h formatted string of the topic setter
900 * \param topicts timestamp on the topic
901 */
902 void
903 set_channel_topic(struct Channel *chptr, const char *topic,
904 const char *topic_info, time_t topicts)
905 {
906 if (!EmptyString(topic))
907 {
908 if (chptr->topic == NULL)
909 allocate_topic(chptr);
910
911 strlcpy(chptr->topic, topic, TOPICLEN+1);
912 strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
913 chptr->topic_time = topicts;
914 }
915 else
916 {
917 if (chptr->topic != NULL)
918 free_topic(chptr);
919
920 chptr->topic_time = 0;
921 }
922 }
923

Properties

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