ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/channel.c
Revision: 9364
Committed: Thu Apr 30 19:24:10 2020 UTC (3 years, 11 months ago) by michael
Content type: text/x-csrc
File size: 31728 byte(s)
Log Message:
- Fixed various style inconsistencies

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2020 ircd-hybrid development team
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
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 "list.h"
29 #include "channel.h"
30 #include "channel_invite.h"
31 #include "channel_mode.h"
32 #include "client.h"
33 #include "hash.h"
34 #include "conf.h"
35 #include "conf_resv.h"
36 #include "hostmask.h"
37 #include "irc_string.h"
38 #include "ircd.h"
39 #include "numeric.h"
40 #include "server.h"
41 #include "send.h"
42 #include "event.h"
43 #include "memory.h"
44 #include "misc.h"
45 #include "extban.h"
46
47
48 /** Doubly linked list containing a list of all channels. */
49 static dlink_list channel_list;
50
51
52 /*! \brief Returns the channel_list as constant
53 * \return channel_list
54 */
55 const dlink_list *
56 channel_get_list(void)
57 {
58 return &channel_list;
59 }
60
61 /*! \brief Adds a user to a channel by adding another link to the
62 * channels member chain.
63 * \param channel Pointer to channel to add client to
64 * \param client Pointer to client (who) to add
65 * \param flags Flags for chanops etc
66 * \param flood_ctrl Whether to count this join in flood calculations
67 */
68 void
69 add_user_to_channel(struct Channel *channel, struct Client *client,
70 unsigned int flags, bool flood_ctrl)
71 {
72 assert(IsClient(client));
73
74 if (GlobalSetOptions.joinfloodtime)
75 {
76 if (flood_ctrl == true)
77 ++channel->number_joined;
78
79 channel->number_joined -= (event_base->time.sec_monotonic - channel->last_join_time) *
80 (((float)GlobalSetOptions.joinfloodcount) /
81 (float)GlobalSetOptions.joinfloodtime);
82
83 if (channel->number_joined <= 0)
84 {
85 channel->number_joined = 0;
86 ClearJoinFloodNoticed(channel);
87 }
88 else if (channel->number_joined >= GlobalSetOptions.joinfloodcount)
89 {
90 channel->number_joined = GlobalSetOptions.joinfloodcount;
91
92 if (!IsSetJoinFloodNoticed(channel))
93 {
94 SetJoinFloodNoticed(channel);
95 sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE,
96 "Possible Join Flooder %s on %s target: %s",
97 client_get_name(client, HIDE_IP),
98 client->servptr->name, channel->name);
99 }
100 }
101
102 channel->last_join_time = event_base->time.sec_monotonic;
103 }
104
105 struct ChannelMember *member = xcalloc(sizeof(*member));
106 member->client = client;
107 member->channel = channel;
108 member->flags = flags;
109
110 dlinkAdd(member, &member->channode, &channel->members);
111
112 if (MyConnect(client))
113 dlinkAdd(member, &member->locchannode, &channel->members_local);
114
115 dlinkAdd(member, &member->usernode, &client->channel);
116 }
117
118 /*! \brief Deletes an user from a channel by removing a link in the
119 * channels member chain.
120 * \param member Pointer to Membership struct
121 */
122 void
123 remove_user_from_channel(struct ChannelMember *member)
124 {
125 struct Client *const client = member->client;
126 struct Channel *const channel = member->channel;
127
128 dlinkDelete(&member->channode, &channel->members);
129
130 if (MyConnect(client))
131 dlinkDelete(&member->locchannode, &channel->members_local);
132
133 dlinkDelete(&member->usernode, &client->channel);
134
135 xfree(member);
136
137 if (channel->members.head == NULL)
138 channel_free(channel);
139 }
140
141 /* channel_send_members()
142 *
143 * inputs -
144 * output - NONE
145 * side effects -
146 */
147 static void
148 channel_send_members(struct Client *client, const struct Channel *channel,
149 const char *modebuf, const char *parabuf)
150 {
151 dlink_node *node;
152 char buf[IRCD_BUFSIZE];
153 int tlen; /* length of text to append */
154 char *t, *start; /* temp char pointer */
155
156 start = t = buf + snprintf(buf, sizeof(buf), ":%s SJOIN %ju %s %s %s:",
157 me.id, channel->creation_time,
158 channel->name, modebuf, parabuf);
159
160 DLINK_FOREACH(node, channel->members.head)
161 {
162 const struct ChannelMember *member = node->data;
163
164 tlen = strlen(member->client->id) + 1; /* +1 for space */
165
166 if (member->flags & CHFL_CHANOP)
167 ++tlen;
168 if (member->flags & CHFL_HALFOP)
169 ++tlen;
170 if (member->flags & CHFL_VOICE)
171 ++tlen;
172
173 /*
174 * Space will be converted into CR, but we also need space for LF..
175 * That's why we use '- 1' here -adx
176 */
177 if (t + tlen - buf > IRCD_BUFSIZE - 1)
178 {
179 *(t - 1) = '\0'; /* Kill the space and terminate the string */
180 sendto_one(client, "%s", buf);
181 t = start;
182 }
183
184 if (member->flags & CHFL_CHANOP)
185 *t++ = '@';
186 if (member->flags & CHFL_HALFOP)
187 *t++ = '%';
188 if (member->flags & CHFL_VOICE)
189 *t++ = '+';
190
191 strcpy(t, member->client->id);
192
193 t += strlen(t);
194 *t++ = ' ';
195 }
196
197 /* Should always be non-NULL unless we have a kind of persistent channels */
198 if (channel->members.head)
199 --t; /* Take the space out */
200 *t = '\0';
201 sendto_one(client, "%s", buf);
202 }
203
204 /*! \brief Sends +b/+e/+I
205 * \param client Client pointer to server
206 * \param channel Pointer to channel
207 * \param list Pointer to list of modes to send
208 * \param flag Char flag flagging type of mode. Currently this can be 'b', e' or 'I'
209 */
210 static void
211 channel_send_mask_list(struct Client *client, const struct Channel *channel,
212 const dlink_list *list, const char flag)
213 {
214 dlink_node *node;
215 char mbuf[IRCD_BUFSIZE];
216 char pbuf[IRCD_BUFSIZE];
217 size_t tlen, mlen, cur_len;
218 char *pp = pbuf;
219
220 if (dlink_list_length(list) == 0)
221 return;
222
223 mlen = snprintf(mbuf, sizeof(mbuf), ":%s BMASK %ju %s %c :", me.id,
224 channel->creation_time, channel->name, flag);
225 cur_len = mlen;
226
227 DLINK_FOREACH(node, list->head)
228 {
229 const struct Ban *ban = node->data;
230
231 tlen = ban->banstr_len + 1; /* +1 for space */
232
233 /*
234 * Send buffer and start over if we cannot fit another ban
235 */
236 if (cur_len + (tlen - 1) > sizeof(pbuf) - 2)
237 {
238 *(pp - 1) = '\0'; /* Get rid of trailing space on buffer */
239 sendto_one(client, "%s%s", mbuf, pbuf);
240
241 cur_len = mlen;
242 pp = pbuf;
243 }
244
245 pp += snprintf(pp, sizeof(pbuf) - (pp - pbuf), "%s ", ban->banstr);
246 cur_len += tlen;
247 }
248
249 *(pp - 1) = '\0'; /* Get rid of trailing space on buffer */
250 sendto_one(client, "%s%s", mbuf, pbuf);
251 }
252
253 /*! \brief Send "client" a full list of the modes for channel channel
254 * \param client Pointer to client client
255 * \param channel Pointer to channel pointer
256 */
257 void
258 channel_send_modes(struct Client *client, const struct Channel *channel)
259 {
260 char modebuf[MODEBUFLEN] = "";
261 char parabuf[MODEBUFLEN] = "";
262
263 channel_modes(channel, client, modebuf, parabuf);
264 channel_send_members(client, channel, modebuf, parabuf);
265
266 channel_send_mask_list(client, channel, &channel->banlist, 'b');
267 channel_send_mask_list(client, channel, &channel->exceptlist, 'e');
268 channel_send_mask_list(client, channel, &channel->invexlist, 'I');
269 }
270
271 /*! \brief Check channel name for invalid characters
272 * \param name Pointer to channel name string
273 * \param local Indicates whether it's a local or remote creation
274 * \return 0 if invalid, 1 otherwise
275 */
276 bool
277 channel_check_name(const char *name, bool local)
278 {
279 const char *p = name;
280
281 assert(!EmptyString(p));
282
283 if (!IsChanPrefix(*p))
284 return false;
285
286 if (local == false || ConfigChannel.disable_fake_channels == 0)
287 {
288 while (*++p)
289 if (!IsChanChar(*p))
290 return false;
291 }
292 else
293 {
294 while (*++p)
295 if (!IsVisibleChanChar(*p))
296 return false;
297 }
298
299 return p - name <= CHANNELLEN;
300 }
301
302 void
303 remove_ban(struct Ban *ban, dlink_list *list)
304 {
305 dlinkDelete(&ban->node, list);
306 xfree(ban);
307 }
308
309 /* channel_free_mask_list()
310 *
311 * inputs - pointer to dlink_list
312 * output - NONE
313 * side effects -
314 */
315 static void
316 channel_free_mask_list(dlink_list *list)
317 {
318 while (list->head)
319 {
320 struct Ban *ban = list->head->data;
321 remove_ban(ban, list);
322 }
323 }
324
325 /*! \brief Get Channel block for name (and allocate a new channel
326 * block, if it didn't exist before)
327 * \param name Channel name
328 * \return Channel block
329 */
330 struct Channel *
331 channel_make(const char *name)
332 {
333 assert(!EmptyString(name));
334
335 struct Channel *channel = xcalloc(sizeof(*channel));
336 channel->hnextch = channel;
337 /* Doesn't hurt to set it here */
338 channel->creation_time = event_base->time.sec_real;
339 channel->last_join_time = event_base->time.sec_monotonic;
340
341 /* Cache channel name length to avoid repetitive strlen() calls. */
342 channel->name_len = strlcpy(channel->name, name, sizeof(channel->name));
343 if (channel->name_len >= sizeof(channel->name))
344 channel->name_len = sizeof(channel->name) - 1;
345
346 dlinkAdd(channel, &channel->node, &channel_list);
347 hash_add_channel(channel);
348
349 return channel;
350 }
351
352 /*! \brief Walk through this channel, and destroy it.
353 * \param channel Channel pointer
354 */
355 void
356 channel_free(struct Channel *channel)
357 {
358 invite_clear_list(&channel->invites);
359
360 /* Free ban/exception/invex lists */
361 channel_free_mask_list(&channel->banlist);
362 channel_free_mask_list(&channel->exceptlist);
363 channel_free_mask_list(&channel->invexlist);
364
365 dlinkDelete(&channel->node, &channel_list);
366 hash_del_channel(channel);
367
368 assert(channel->hnextch == channel);
369
370 assert(channel->node.prev == NULL);
371 assert(channel->node.next == NULL);
372
373 assert(dlink_list_length(&channel->members_local) == 0);
374 assert(channel->members_local.head == NULL);
375 assert(channel->members_local.tail == NULL);
376
377 assert(dlink_list_length(&channel->members) == 0);
378 assert(channel->members.head == NULL);
379 assert(channel->members.tail == NULL);
380
381 assert(dlink_list_length(&channel->invites) == 0);
382 assert(channel->invites.head == NULL);
383 assert(channel->invites.tail == NULL);
384
385 assert(dlink_list_length(&channel->banlist) == 0);
386 assert(channel->banlist.head == NULL);
387 assert(channel->banlist.tail == NULL);
388
389 assert(dlink_list_length(&channel->exceptlist) == 0);
390 assert(channel->exceptlist.head == NULL);
391 assert(channel->exceptlist.tail == NULL);
392
393 assert(dlink_list_length(&channel->invexlist) == 0);
394 assert(channel->invexlist.head == NULL);
395 assert(channel->invexlist.tail == NULL);
396
397 xfree(channel);
398 }
399
400 /*!
401 * \param channel Pointer to channel
402 * \return String pointer "=" if public, "@" if secret else "*"
403 */
404 static const char *
405 channel_pub_or_secret(const struct Channel *channel)
406 {
407 if (SecretChannel(channel))
408 return "@";
409 if (PrivateChannel(channel))
410 return "*";
411 return "=";
412 }
413
414 /*! \brief lists all names on given channel
415 * \param client Pointer to client struct requesting names
416 * \param channel Pointer to channel block
417 * \param show_eon Show RPL_ENDOFNAMES numeric or not
418 * (don't want it with /names with no params)
419 */
420 void
421 channel_member_names(struct Client *client, struct Channel *channel, bool show_eon)
422 {
423 dlink_node *node;
424 char buf[IRCD_BUFSIZE + 1];
425 int tlen = 0;
426 bool is_member = IsMember(client, channel);
427 bool multi_prefix = HasCap(client, CAP_MULTI_PREFIX) != 0;
428 bool uhnames = HasCap(client, CAP_UHNAMES) != 0;
429
430 assert(IsClient(client));
431
432 if (PubChannel(channel) || is_member == true)
433 {
434 char *t = buf + snprintf(buf, sizeof(buf), numeric_form(RPL_NAMREPLY), me.name, client->name,
435 channel_pub_or_secret(channel), channel->name);
436 char *start = t;
437
438 DLINK_FOREACH(node, channel->members.head)
439 {
440 const struct ChannelMember *member = node->data;
441
442 if (HasUMode(member->client, UMODE_INVISIBLE) && is_member == false)
443 continue;
444
445 if (uhnames == true)
446 tlen = strlen(member->client->name) + strlen(member->client->username) +
447 strlen(member->client->host) + 3; /* +3 for ! + @ + space */
448 else
449 tlen = strlen(member->client->name) + 1; /* +1 for space */
450
451 if (multi_prefix == true)
452 {
453 if (member->flags & CHFL_CHANOP)
454 ++tlen;
455 if (member->flags & CHFL_HALFOP)
456 ++tlen;
457 if (member->flags & CHFL_VOICE)
458 ++tlen;
459 }
460 else
461 {
462 if (member->flags & (CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE))
463 ++tlen;
464 }
465
466 if (t + tlen - buf > IRCD_BUFSIZE - 2)
467 {
468 *(t - 1) = '\0';
469 sendto_one(client, "%s", buf);
470 t = start;
471 }
472
473 if (uhnames == true)
474 t += sprintf(t, "%s%s!%s@%s ", get_member_status(member, multi_prefix),
475 member->client->name, member->client->username,
476 member->client->host);
477 else
478 t += sprintf(t, "%s%s ", get_member_status(member, multi_prefix),
479 member->client->name);
480 }
481
482 if (tlen)
483 {
484 *(t - 1) = '\0';
485 sendto_one(client, "%s", buf);
486 }
487 }
488
489 if (show_eon == true)
490 sendto_one_numeric(client, &me, RPL_ENDOFNAMES, channel->name);
491 }
492
493 /* get_member_status()
494 *
495 * inputs - pointer to struct ChannelMember
496 * - YES if we can combine different flags
497 * output - string either @, +, % or "" depending on whether
498 * chanop, voiced or user
499 * side effects -
500 *
501 * NOTE: Returned string is usually a static buffer
502 * (like in client_get_name)
503 */
504 const char *
505 get_member_status(const struct ChannelMember *member, bool combine)
506 {
507 static char buffer[CMEMBER_STATUS_FLAGS_LEN + 1]; /* +1 for \0 */
508 char *p = buffer;
509
510 if (member->flags & CHFL_CHANOP)
511 {
512 if (combine == false)
513 return "@";
514 *p++ = '@';
515 }
516
517 if (member->flags & CHFL_HALFOP)
518 {
519 if (combine == false)
520 return "%";
521 *p++ = '%';
522 }
523
524 if (member->flags & CHFL_VOICE)
525 *p++ = '+';
526 *p = '\0';
527
528 return buffer;
529 }
530
531 /*!
532 * \param client Pointer to Client to check
533 * \param list Pointer to ban list to search
534 * \return 1 if ban found for given n!u\@h mask, 0 otherwise
535 */
536 static bool
537 ban_matches(struct Client *client, struct Channel *channel, struct Ban *ban)
538 {
539 /* Is a matching extban, call custom match handler */
540 if (ban->extban & extban_matching_mask())
541 {
542 struct Extban *extban = extban_find_flag(ban->extban & extban_matching_mask());
543 if (extban == NULL)
544 return false;
545
546 if (extban->matches == NULL || extban->matches(client, channel, ban) == EXTBAN_NO_MATCH)
547 return false;
548
549 return true;
550 }
551
552 if (match(ban->name, client->name) == 0 && match(ban->user, client->username) == 0)
553 {
554 switch (ban->type)
555 {
556 case HM_HOST:
557 if (match(ban->host, client->realhost) == 0 ||
558 match(ban->host, client->sockhost) == 0 || match(ban->host, client->host) == 0)
559 return true;
560 break;
561 case HM_IPV4:
562 if (client->ip.ss.ss_family == AF_INET)
563 if (match_ipv4(&client->ip, &ban->addr, ban->bits))
564 return true;
565 break;
566 case HM_IPV6:
567 if (client->ip.ss.ss_family == AF_INET6)
568 if (match_ipv6(&client->ip, &ban->addr, ban->bits))
569 return true;
570 break;
571 default:
572 assert(0);
573 }
574 }
575
576 return false;
577 }
578
579 bool
580 find_bmask(struct Client *client, struct Channel *channel, const dlink_list *list, struct Extban *extban)
581 {
582 dlink_node *node;
583
584 DLINK_FOREACH(node, list->head)
585 {
586 struct Ban *ban = node->data;
587
588 /* Looking for a specific type of extban? */
589 if (extban)
590 {
591 if (!(ban->extban & extban->flag))
592 continue;
593 }
594 else
595 {
596 /*
597 * Acting extbans have their own time they act and are not general purpose bans,
598 * so skip them unless we are hunting them.
599 */
600 if (ban->extban & extban_acting_mask())
601 continue;
602 }
603
604 bool matches = ban_matches(client, channel, ban);
605 if (matches == false)
606 continue;
607
608 return true;
609 }
610
611 return false;
612 }
613
614 /*!
615 * \param channel Pointer to channel block
616 * \param client Pointer to client to check access fo
617 * \return 0 if not banned, 1 otherwise
618 */
619 bool
620 is_banned(struct Channel *channel, struct Client *client)
621 {
622 if (find_bmask(client, channel, &channel->banlist, NULL) == true)
623 return find_bmask(client, channel, &channel->exceptlist, NULL) == false;
624 return false;
625 }
626
627 /*! Tests if a client can join a certain channel
628 * \param client Pointer to client attempting to join
629 * \param channel Pointer to channel
630 * \param key Key sent by client attempting to join if present
631 * \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL
632 * or 0 if allowed to join.
633 */
634 static int
635 can_join(struct Client *client, struct Channel *channel, const char *key)
636 {
637 if (HasCMode(channel, MODE_SECUREONLY) && !HasUMode(client, UMODE_SECURE))
638 return ERR_SECUREONLYCHAN;
639
640 if (HasCMode(channel, MODE_REGONLY) && !HasUMode(client, UMODE_REGISTERED))
641 return ERR_NEEDREGGEDNICK;
642
643 if (HasCMode(channel, MODE_OPERONLY) && !HasUMode(client, UMODE_OPER))
644 return ERR_OPERONLYCHAN;
645
646 if (HasCMode(channel, MODE_INVITEONLY))
647 if (invite_find(channel, client) == NULL)
648 if (find_bmask(client, channel, &channel->invexlist, NULL) == false)
649 return ERR_INVITEONLYCHAN;
650
651 if (channel->mode.key[0] && (key == NULL || strcmp(channel->mode.key, key)))
652 return ERR_BADCHANNELKEY;
653
654 if (channel->mode.limit && dlink_list_length(&channel->members) >=
655 channel->mode.limit)
656 return ERR_CHANNELISFULL;
657
658 if (is_banned(channel, client) == true)
659 return ERR_BANNEDFROMCHAN;
660
661 return extban_join_can_join(channel, client, NULL);
662 }
663
664 int
665 has_member_flags(const struct ChannelMember *member, const unsigned int flags)
666 {
667 return member && (member->flags & flags);
668 }
669
670 struct ChannelMember *
671 find_channel_link(const struct Client *client, const struct Channel *channel)
672 {
673 dlink_node *node;
674
675 if (!IsClient(client))
676 return NULL;
677
678 /* Take the shortest of the two lists */
679 if (dlink_list_length(&channel->members) < dlink_list_length(&client->channel))
680 {
681 DLINK_FOREACH(node, channel->members.head)
682 if (((struct ChannelMember *)node->data)->client == client)
683 return node->data;
684 }
685 else
686 {
687 DLINK_FOREACH(node, client->channel.head)
688 if (((struct ChannelMember *)node->data)->channel == channel)
689 return node->data;
690 }
691
692 return NULL;
693 }
694
695 /*! Checks if a message contains control codes
696 * \param message The actual message string the client wants to send
697 * \return 1 if the message does contain any control codes, 0 otherwise
698 */
699 static bool
700 msg_has_ctrls(const char *message)
701 {
702 const unsigned char *p = (const unsigned char *)message;
703
704 for (; *p; ++p)
705 {
706 if (*p > 31 || *p == 1)
707 continue; /* No control code or CTCP */
708
709 if (*p == 27) /* Escape */
710 {
711 /* ISO 2022 charset shift sequence */
712 if (*(p + 1) == '$' ||
713 *(p + 1) == '(')
714 {
715 ++p;
716 continue;
717 }
718 }
719
720 return true; /* Control code */
721 }
722
723 return false; /* No control code found */
724 }
725
726 /*! Tests if a client can send to a channel
727 * \param channel Pointer to Channel struct
728 * \param client Pointer to Client struct
729 * \param member Pointer to Membership struct (can be NULL)
730 * \param message The actual message string the client wants to send
731 * \return CAN_SEND_OPV if op or voiced on channel\n
732 * CAN_SEND_NONOP if can send to channel but is not an op\n
733 * ERR_CANNOTSENDTOCHAN or ERR_NEEDREGGEDNICK if they cannot send to channel\n
734 */
735 int
736 can_send(struct Channel *channel, struct Client *client,
737 struct ChannelMember *member, const char *message, bool notice)
738 {
739 const struct ResvItem *resv;
740
741 if (IsServer(client) || HasFlag(client, FLAGS_SERVICE))
742 return CAN_SEND_OPV;
743
744 if (MyConnect(client) && !HasFlag(client, FLAGS_EXEMPTRESV))
745 if (!(HasUMode(client, UMODE_OPER) && HasOFlag(client, OPER_FLAG_JOIN_RESV)))
746 if ((resv = resv_find(channel->name, match)) && resv_exempt_find(client, resv) == false)
747 return ERR_CANNOTSENDTOCHAN;
748
749 if (HasCMode(channel, MODE_NOCTRL) && msg_has_ctrls(message) == true)
750 return ERR_NOCTRLSONCHAN;
751
752 if (HasCMode(channel, MODE_NOCTCP))
753 if (*message == '\001' && strncmp(message + 1, "ACTION ", 7))
754 return ERR_NOCTCP;
755
756 if (member || (member = find_channel_link(client, channel)))
757 if (member->flags & (CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE))
758 return CAN_SEND_OPV;
759
760 if (member == NULL && HasCMode(channel, MODE_NOPRIVMSGS))
761 return ERR_CANNOTSENDTOCHAN;
762
763 if (HasCMode(channel, MODE_MODERATED))
764 return ERR_CANNOTSENDTOCHAN;
765
766 if (HasCMode(channel, MODE_MODREG) && !HasUMode(client, UMODE_REGISTERED))
767 return ERR_NEEDREGGEDNICK;
768
769 if (HasCMode(channel, MODE_NONOTICE) && notice == true)
770 return ERR_CANNOTSENDTOCHAN;
771
772 /* Cache can send if banned */
773 if (MyConnect(client))
774 {
775 if (member)
776 {
777 if (member->flags & CHFL_BAN_SILENCED)
778 return ERR_CANNOTSENDTOCHAN;
779
780 if (!(member->flags & CHFL_BAN_CHECKED))
781 {
782 if (is_banned(channel, client) == true)
783 {
784 member->flags |= (CHFL_BAN_CHECKED | CHFL_BAN_SILENCED);
785 return ERR_CANNOTSENDTOCHAN;
786 }
787
788 member->flags |= CHFL_BAN_CHECKED;
789 }
790 }
791 else if (is_banned(channel, client) == true)
792 return ERR_CANNOTSENDTOCHAN;
793 }
794
795 return extban_mute_can_send(channel, client, member);
796 }
797
798 /*! \brief Updates the client's oper_warn_count_down, warns the
799 * IRC operators if necessary, and updates
800 * join_leave_countdown as needed.
801 * \param client Pointer to struct Client to check
802 * \param name Channel name or NULL if this is a part.
803 */
804 void
805 check_spambot_warning(struct Client *client, const char *name)
806 {
807 if (GlobalSetOptions.spam_num &&
808 (client->connection->join_leave_count >= GlobalSetOptions.spam_num))
809 {
810 if (client->connection->oper_warn_count_down)
811 --client->connection->oper_warn_count_down;
812
813 if (client->connection->oper_warn_count_down == 0)
814 {
815 /* It's already known as a possible spambot */
816 if (name)
817 sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE,
818 "User %s (%s@%s) trying to join %s is a possible spambot",
819 client->name, client->username,
820 client->host, name);
821 else
822 sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE,
823 "User %s (%s@%s) is a possible spambot",
824 client->name, client->username,
825 client->host);
826 client->connection->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
827 }
828 }
829 else
830 {
831 unsigned int t_delta = event_base->time.sec_monotonic - client->connection->last_leave_time;
832 if (t_delta > JOIN_LEAVE_COUNT_EXPIRE_TIME)
833 {
834 unsigned int decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
835 if (decrement_count > client->connection->join_leave_count)
836 client->connection->join_leave_count = 0;
837 else
838 client->connection->join_leave_count -= decrement_count;
839 }
840 else
841 {
842 if ((event_base->time.sec_monotonic - client->connection->last_join_time) < GlobalSetOptions.spam_time)
843 ++client->connection->join_leave_count; /* It's a possible spambot */
844 }
845
846 if (name)
847 client->connection->last_join_time = event_base->time.sec_monotonic;
848 else
849 client->connection->last_leave_time = event_base->time.sec_monotonic;
850 }
851 }
852
853 /*! \brief Sets the channel topic for a certain channel
854 * \param channel Pointer to struct Channel
855 * \param topic The topic string
856 * \param topic_info n!u\@h formatted string of the topic setter
857 * \param topicts Timestamp on the topic
858 * \param local Whether the topic is set by a local client
859 */
860 void
861 channel_set_topic(struct Channel *channel, const char *topic,
862 const char *topic_info, uintmax_t topicts, bool local)
863 {
864 if (local == true)
865 strlcpy(channel->topic, topic, IRCD_MIN(sizeof(channel->topic), ConfigServerInfo.max_topic_length + 1));
866 else
867 strlcpy(channel->topic, topic, sizeof(channel->topic));
868
869 strlcpy(channel->topic_info, topic_info, sizeof(channel->topic_info));
870 channel->topic_time = topicts;
871 }
872
873 void
874 channel_do_join(struct Client *client, char *chan_list, char *key_list)
875 {
876 char *p = NULL;
877 const struct ResvItem *resv = NULL;
878 const struct ClassItem *const class = class_get_ptr(&client->connection->confs);
879 unsigned int flags = 0;
880
881 assert(MyClient(client));
882
883 for (const char *name = strtok_r(chan_list, ",", &p); name;
884 name = strtok_r(NULL, ",", &p))
885 {
886 const char *key = NULL;
887
888 /* If we have any more keys, take the first for this channel. */
889 if (!EmptyString(key_list) && (key_list = strchr(key = key_list, ',')))
890 *key_list++ = '\0';
891
892 /* Empty keys are the same as no keys. */
893 if (key && *key == '\0')
894 key = NULL;
895
896 if (channel_check_name(name, true) == false)
897 {
898 sendto_one_numeric(client, &me, ERR_BADCHANNAME, name);
899 continue;
900 }
901
902 if (!HasFlag(client, FLAGS_EXEMPTRESV) &&
903 !(HasUMode(client, UMODE_OPER) && HasOFlag(client, OPER_FLAG_JOIN_RESV)) &&
904 ((resv = resv_find(name, match)) && resv_exempt_find(client, resv) == false))
905 {
906 sendto_one_numeric(client, &me, ERR_CHANBANREASON, name, resv->reason);
907 sendto_realops_flags(UMODE_REJ, L_ALL, SEND_NOTICE,
908 "Forbidding reserved channel %s from user %s",
909 name, client_get_name(client, HIDE_IP));
910 continue;
911 }
912
913 if (dlink_list_length(&client->channel) >=
914 ((class->max_channels) ? class->max_channels : ConfigChannel.max_channels))
915 {
916 sendto_one_numeric(client, &me, ERR_TOOMANYCHANNELS, name);
917 break;
918 }
919
920 struct Channel *channel = hash_find_channel(name);
921 if (channel)
922 {
923 if (IsMember(client, channel))
924 continue;
925
926 /* can_join() checks for +i, +l, key, bans, etc. */
927 int ret = can_join(client, channel, key);
928 if (ret)
929 {
930 sendto_one_numeric(client, &me, ret, channel->name);
931 continue;
932 }
933
934 /*
935 * This should never be the case unless there is some sort of
936 * persistent channels.
937 */
938 if (dlink_list_length(&channel->members) == 0)
939 flags = CHFL_CHANOP;
940 else
941 flags = 0;
942 }
943 else
944 {
945 flags = CHFL_CHANOP;
946 channel = channel_make(name);
947 }
948
949 if (!HasUMode(client, UMODE_OPER))
950 check_spambot_warning(client, channel->name);
951
952 add_user_to_channel(channel, client, flags, true);
953
954 /*
955 * Set timestamp if appropriate, and propagate
956 */
957 if (flags == CHFL_CHANOP)
958 {
959 channel->creation_time = event_base->time.sec_real;
960 AddCMode(channel, MODE_TOPICLIMIT);
961 AddCMode(channel, MODE_NOPRIVMSGS);
962
963 sendto_server(NULL, 0, 0, ":%s SJOIN %ju %s +nt :@%s",
964 me.id, channel->creation_time,
965 channel->name, client->id);
966
967 /*
968 * Notify all other users on the new channel
969 */
970 sendto_channel_local(NULL, channel, 0, CAP_EXTENDED_JOIN, 0, ":%s!%s@%s JOIN %s %s :%s",
971 client->name, client->username,
972 client->host, channel->name, client->account, client->info);
973 sendto_channel_local(NULL, channel, 0, 0, CAP_EXTENDED_JOIN, ":%s!%s@%s JOIN :%s",
974 client->name, client->username,
975 client->host, channel->name);
976 sendto_channel_local(NULL, channel, 0, 0, 0, ":%s MODE %s +nt",
977 me.name, channel->name);
978 }
979 else
980 {
981 sendto_server(NULL, 0, 0, ":%s JOIN %ju %s +",
982 client->id, channel->creation_time,
983 channel->name);
984
985 sendto_channel_local(NULL, channel, 0, CAP_EXTENDED_JOIN, 0, ":%s!%s@%s JOIN %s %s :%s",
986 client->name, client->username,
987 client->host, channel->name, client->account, client->info);
988 sendto_channel_local(NULL, channel, 0, 0, CAP_EXTENDED_JOIN, ":%s!%s@%s JOIN :%s",
989 client->name, client->username,
990 client->host, channel->name);
991 }
992
993 if (client->away[0])
994 sendto_channel_local(client, channel, 0, CAP_AWAY_NOTIFY, 0,
995 ":%s!%s@%s AWAY :%s",
996 client->name, client->username,
997 client->host, client->away);
998
999 struct Invite *invite = invite_find(channel, client);
1000 if (invite)
1001 invite_del(invite);
1002
1003 if (channel->topic[0])
1004 {
1005 sendto_one_numeric(client, &me, RPL_TOPIC, channel->name, channel->topic);
1006 sendto_one_numeric(client, &me, RPL_TOPICWHOTIME, channel->name,
1007 channel->topic_info, channel->topic_time);
1008 }
1009
1010 channel_member_names(client, channel, true);
1011
1012 client->connection->last_join_time = event_base->time.sec_monotonic;
1013 }
1014 }
1015
1016 /*! \brief Removes a client from a specific channel
1017 * \param client Pointer to client to remove
1018 * \param name Name of channel to remove from
1019 * \param reason Part reason to show
1020 */
1021 static void
1022 channel_part_one_client(struct Client *client, const char *name, const char *reason)
1023 {
1024 struct Channel *channel = hash_find_channel(name);
1025 if (channel == NULL)
1026 {
1027 sendto_one_numeric(client, &me, ERR_NOSUCHCHANNEL, name);
1028 return;
1029 }
1030
1031 struct ChannelMember *member = find_channel_link(client, channel);
1032 if (member == NULL)
1033 {
1034 sendto_one_numeric(client, &me, ERR_NOTONCHANNEL, channel->name);
1035 return;
1036 }
1037
1038 if (MyConnect(client) && !HasUMode(client, UMODE_OPER))
1039 check_spambot_warning(client, NULL);
1040
1041 /*
1042 * Remove user from the old channel (if any). Only allow /part reasons in -m chans.
1043 */
1044 if (*reason && (!MyConnect(client) ||
1045 ((client->connection->created_monotonic +
1046 ConfigGeneral.anti_spam_exit_message_time) < event_base->time.sec_monotonic &&
1047 can_send(channel, client, member, reason, false) < 0)))
1048 {
1049 sendto_server(client, 0, 0, ":%s PART %s :%s",
1050 client->id, channel->name, reason);
1051 sendto_channel_local(NULL, channel, 0, 0, 0, ":%s!%s@%s PART %s :%s",
1052 client->name, client->username,
1053 client->host, channel->name, reason);
1054 }
1055 else
1056 {
1057 sendto_server(client, 0, 0, ":%s PART %s",
1058 client->id, channel->name);
1059 sendto_channel_local(NULL, channel, 0, 0, 0, ":%s!%s@%s PART %s",
1060 client->name, client->username,
1061 client->host, channel->name);
1062 }
1063
1064 remove_user_from_channel(member);
1065 }
1066
1067 void
1068 channel_do_part(struct Client *client, char *channel, const char *reason)
1069 {
1070 char *p = NULL;
1071 char buf[KICKLEN + 1] = "";
1072
1073 assert(IsClient(client));
1074
1075 if (!EmptyString(reason))
1076 strlcpy(buf, reason, sizeof(buf));
1077
1078 for (const char *name = strtok_r(channel, ",", &p); name;
1079 name = strtok_r(NULL, ",", &p))
1080 channel_part_one_client(client, name, buf);
1081 }

Properties

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