]> jfr.im git - solanum.git/blob - modules/core/m_join.c
SJOIN: remove various TS5 stuff
[solanum.git] / modules / core / m_join.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_join.c: Joins a channel.
4 *
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
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
23 *
24 * $Id: m_join.c 3494 2007-05-27 13:07:27Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "channel.h"
29 #include "client.h"
30 #include "common.h"
31 #include "hash.h"
32 #include "match.h"
33 #include "ircd.h"
34 #include "numeric.h"
35 #include "send.h"
36 #include "s_serv.h"
37 #include "s_conf.h"
38 #include "s_newconf.h"
39 #include "msg.h"
40 #include "parse.h"
41 #include "modules.h"
42 #include "packet.h"
43
44 static int m_join(struct Client *, struct Client *, int, const char **);
45 static int ms_join(struct Client *, struct Client *, int, const char **);
46 static int ms_sjoin(struct Client *, struct Client *, int, const char **);
47
48 static int h_can_create_channel;
49 static int h_channel_join;
50
51 struct Message join_msgtab = {
52 "JOIN", 0, 0, 0, MFLG_SLOW,
53 {mg_unreg, {m_join, 2}, {ms_join, 2}, mg_ignore, mg_ignore, {m_join, 2}}
54 };
55
56 struct Message sjoin_msgtab = {
57 "SJOIN", 0, 0, 0, MFLG_SLOW,
58 {mg_unreg, mg_ignore, mg_ignore, {ms_sjoin, 4}, mg_ignore, mg_ignore}
59 };
60
61 mapi_clist_av1 join_clist[] = { &join_msgtab, &sjoin_msgtab, NULL };
62
63 mapi_hlist_av1 join_hlist[] = {
64 { "can_create_channel", &h_can_create_channel },
65 { "channel_join", &h_channel_join },
66 { NULL, NULL },
67 };
68
69 DECLARE_MODULE_AV1(join, NULL, NULL, join_clist, join_hlist, NULL, "$Revision: 3494 $");
70
71 static void do_join_0(struct Client *client_p, struct Client *source_p);
72 static int check_channel_name_loc(struct Client *source_p, const char *name);
73
74 static void set_final_mode(struct Mode *mode, struct Mode *oldmode);
75 static void remove_our_modes(struct Channel *chptr, struct Client *source_p);
76
77 static void remove_ban_list(struct Channel *chptr, struct Client *source_p,
78 rb_dlink_list * list, char c, int mems);
79
80 static char modebuf[MODEBUFLEN];
81 static char parabuf[MODEBUFLEN];
82 static const char *para[MAXMODEPARAMS];
83 static char *mbuf;
84 static int pargs;
85
86 /* Check what we will forward to, without sending any notices to the user
87 * -- jilles
88 */
89 static struct Channel *
90 check_forward(struct Client *source_p, struct Channel *chptr,
91 char *key)
92 {
93 int depth = 0, i;
94
95 /* User is +Q */
96 if (IsNoForward(source_p))
97 return NULL;
98
99 while (depth < 16)
100 {
101 chptr = find_channel(chptr->mode.forward);
102 /* Can only forward to existing channels */
103 if (chptr == NULL)
104 return NULL;
105 /* Already on there, show original error message */
106 if (IsMember(source_p, chptr))
107 return NULL;
108 /* Juped. Sending a warning notice would be unfair */
109 if (hash_find_resv(chptr->chname))
110 return NULL;
111 /* Don't forward to +Q channel */
112 if (chptr->mode.mode & MODE_DISFORWARD)
113 return NULL;
114 i = can_join(source_p, chptr, key);
115 if (i == 0)
116 return chptr;
117 if (i != ERR_INVITEONLYCHAN && i != ERR_NEEDREGGEDNICK && i != ERR_THROTTLE && i != ERR_CHANNELISFULL)
118 return NULL;
119 depth++;
120 }
121
122 return NULL;
123 }
124
125 /*
126 * m_join
127 * parv[0] = sender prefix
128 * parv[1] = channel
129 * parv[2] = channel password (key)
130 */
131 static int
132 m_join(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
133 {
134 static char jbuf[BUFSIZE];
135 struct Channel *chptr = NULL;
136 struct ConfItem *aconf;
137 char *name;
138 char *key = NULL;
139 int i, flags = 0;
140 char *p = NULL, *p2 = NULL;
141 char *chanlist;
142 char *mykey;
143 int successful_join_count = 0; /* Number of channels successfully joined */
144
145 jbuf[0] = '\0';
146
147 /* rebuild the list of channels theyre supposed to be joining.
148 * this code has a side effect of losing keys, but..
149 */
150 chanlist = LOCAL_COPY(parv[1]);
151 for(name = rb_strtok_r(chanlist, ",", &p); name; name = rb_strtok_r(NULL, ",", &p))
152 {
153 /* check the length and name of channel is ok */
154 if(!check_channel_name_loc(source_p, name) || (strlen(name) > LOC_CHANNELLEN))
155 {
156 sendto_one_numeric(source_p, ERR_BADCHANNAME,
157 form_str(ERR_BADCHANNAME), (unsigned char *) name);
158 continue;
159 }
160
161 /* join 0 parts all channels */
162 if(*name == '0' && (name[1] == ',' || name[1] == '\0') && name == chanlist)
163 {
164 (void) strcpy(jbuf, "0");
165 continue;
166 }
167
168 /* check it begins with # or &, and local chans are disabled */
169 else if(!IsChannelName(name))
170 {
171 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
172 form_str(ERR_NOSUCHCHANNEL), name);
173 continue;
174 }
175
176 /* see if its resv'd */
177 if(!IsExemptResv(source_p) && (aconf = hash_find_resv(name)))
178 {
179 sendto_one_numeric(source_p, ERR_BADCHANNAME,
180 form_str(ERR_BADCHANNAME), name);
181
182 /* dont warn for opers */
183 if(!IsExemptJupe(source_p) && !IsOper(source_p))
184 sendto_realops_snomask(SNO_SPY, L_NETWIDE,
185 "User %s (%s@%s) is attempting to join locally juped channel %s (%s)",
186 source_p->name, source_p->username,
187 source_p->orighost, name, aconf->passwd);
188 /* dont update tracking for jupe exempt users, these
189 * are likely to be spamtrap leaves
190 */
191 else if(IsExemptJupe(source_p))
192 aconf->port--;
193
194 continue;
195 }
196
197 if(splitmode && !IsOper(source_p) && (*name != '&') &&
198 ConfigChannel.no_join_on_split)
199 {
200 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
201 me.name, source_p->name, name);
202 continue;
203 }
204
205 if(*jbuf)
206 (void) strcat(jbuf, ",");
207 (void) rb_strlcat(jbuf, name, sizeof(jbuf));
208 }
209
210 if(parc > 2)
211 {
212 mykey = LOCAL_COPY(parv[2]);
213 key = rb_strtok_r(mykey, ",", &p2);
214 }
215
216 for(name = rb_strtok_r(jbuf, ",", &p); name;
217 key = (key) ? rb_strtok_r(NULL, ",", &p2) : NULL, name = rb_strtok_r(NULL, ",", &p))
218 {
219 hook_data_channel_activity hook_info;
220
221 /* JOIN 0 simply parts all channels the user is in */
222 if(*name == '0' && !atoi(name))
223 {
224 if(source_p->user->channel.head == NULL)
225 continue;
226
227 do_join_0(&me, source_p);
228 continue;
229 }
230
231 /* look for the channel */
232 if((chptr = find_channel(name)) != NULL)
233 {
234 if(IsMember(source_p, chptr))
235 continue;
236
237 flags = 0;
238 }
239 else
240 {
241 hook_data_client_approval moduledata;
242
243 moduledata.client = source_p;
244 moduledata.approved = 0;
245
246 call_hook(h_can_create_channel, &moduledata);
247
248 if(moduledata.approved != 0)
249 {
250 sendto_one(source_p, form_str(moduledata.approved),
251 me.name, source_p->name, name);
252 continue;
253 }
254
255 if(splitmode && !IsOper(source_p) && (*name != '&') &&
256 ConfigChannel.no_create_on_split)
257 {
258 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
259 me.name, source_p->name, name);
260 continue;
261 }
262
263 flags = CHFL_CHANOP;
264 }
265
266 if((rb_dlink_list_length(&source_p->user->channel) >=
267 (unsigned long) ConfigChannel.max_chans_per_user) &&
268 (!IsOper(source_p) ||
269 (rb_dlink_list_length(&source_p->user->channel) >=
270 (unsigned long) ConfigChannel.max_chans_per_user * 3)))
271 {
272 sendto_one(source_p, form_str(ERR_TOOMANYCHANNELS),
273 me.name, source_p->name, name);
274 if(successful_join_count)
275 source_p->localClient->last_join_time = rb_current_time();
276 return 0;
277 }
278
279 if(flags == 0) /* if channel doesn't exist, don't penalize */
280 successful_join_count++;
281
282 if(chptr == NULL) /* If I already have a chptr, no point doing this */
283 {
284 chptr = get_or_create_channel(source_p, name, NULL);
285
286 if(chptr == NULL)
287 {
288 sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
289 me.name, source_p->name, name);
290 if(successful_join_count > 0)
291 successful_join_count--;
292 continue;
293 }
294 }
295
296 if(!IsOper(source_p) && !IsExemptSpambot(source_p))
297 check_spambot_warning(source_p, name);
298
299 /* can_join checks for +i key, bans etc */
300 if((i = can_join(source_p, chptr, key)))
301 {
302 if ((i != ERR_NEEDREGGEDNICK && i != ERR_THROTTLE && i != ERR_INVITEONLYCHAN && i != ERR_CHANNELISFULL) ||
303 (!ConfigChannel.use_forward || (chptr = check_forward(source_p, chptr, key)) == NULL))
304 {
305 sendto_one(source_p, form_str(i), me.name, source_p->name, name);
306 if(successful_join_count > 0)
307 successful_join_count--;
308 continue;
309 }
310 sendto_one_numeric(source_p, ERR_LINKCHANNEL, form_str(ERR_LINKCHANNEL), name, chptr->chname);
311 }
312
313 /* add the user to the channel */
314 add_user_to_channel(chptr, source_p, flags);
315 if (chptr->mode.join_num &&
316 rb_current_time() - chptr->join_delta >= chptr->mode.join_time)
317 {
318 chptr->join_count = 0;
319 chptr->join_delta = rb_current_time();
320 }
321 chptr->join_count++;
322
323 /* we send the user their join here, because we could have to
324 * send a mode out next.
325 */
326 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
327 source_p->name,
328 source_p->username, source_p->host, chptr->chname);
329
330 /* its a new channel, set +nt and burst. */
331 if(flags & CHFL_CHANOP)
332 {
333 chptr->channelts = rb_current_time();
334 chptr->mode.mode |= MODE_TOPICLIMIT;
335 chptr->mode.mode |= MODE_NOPRIVMSGS;
336
337 sendto_channel_local(ONLY_CHANOPS, chptr, ":%s MODE %s +nt",
338 me.name, chptr->chname);
339
340 if(*chptr->chname == '#')
341 {
342 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
343 ":%s SJOIN %ld %s +nt :@%s",
344 me.id, (long) chptr->channelts,
345 chptr->chname, source_p->id);
346 }
347 }
348 else
349 {
350 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
351 ":%s JOIN %ld %s +",
352 use_id(source_p), (long) chptr->channelts,
353 chptr->chname);
354 }
355
356 del_invite(chptr, source_p);
357
358 if(chptr->topic != NULL)
359 {
360 sendto_one(source_p, form_str(RPL_TOPIC), me.name,
361 source_p->name, chptr->chname, chptr->topic);
362
363 sendto_one(source_p, form_str(RPL_TOPICWHOTIME),
364 me.name, source_p->name, chptr->chname,
365 chptr->topic_info, chptr->topic_time);
366 }
367
368 channel_member_names(chptr, source_p, 1);
369
370 if(successful_join_count)
371 source_p->localClient->last_join_time = rb_current_time();
372
373 hook_info.client = source_p;
374 hook_info.chptr = chptr;
375 hook_info.key = key;
376 call_hook(h_channel_join, &hook_info);
377 }
378
379 return 0;
380 }
381
382 /*
383 * ms_join
384 *
385 * inputs -
386 * output - none
387 * side effects - handles remote JOIN's sent by servers. In TSora
388 * remote clients are joined using SJOIN, hence a
389 * JOIN sent by a server on behalf of a client is an error.
390 * here, the initial code is in to take an extra parameter
391 * and use it for the TimeStamp on a new channel.
392 */
393 static int
394 ms_join(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
395 {
396 struct Channel *chptr;
397 static struct Mode mode;
398 time_t oldts;
399 time_t newts;
400 int isnew;
401 int keep_our_modes = YES;
402 int keep_new_modes = YES;
403 rb_dlink_node *ptr, *next_ptr;
404
405 /* special case for join 0 */
406 if((parv[1][0] == '0') && (parv[1][1] == '\0') && parc == 2)
407 {
408 do_join_0(client_p, source_p);
409 return 0;
410 }
411
412 if(parc < 4)
413 return 0;
414
415 if(!IsChannelName(parv[2]) || !check_channel_name(parv[2]))
416 return 0;
417
418 /* joins for local channels cant happen. */
419 if(parv[2][0] == '&')
420 return 0;
421
422 mbuf = modebuf;
423 mode.key[0] = mode.forward[0] = '\0';
424 mode.mode = mode.limit = mode.join_num = mode.join_time = 0;
425
426 if((chptr = get_or_create_channel(source_p, parv[2], &isnew)) == NULL)
427 return 0;
428
429 newts = atol(parv[1]);
430 oldts = chptr->channelts;
431
432 #ifdef IGNORE_BOGUS_TS
433 if(newts < 800000000)
434 {
435 sendto_realops_snomask(SNO_DEBUG, L_ALL,
436 "*** Bogus TS %ld on %s ignored from %s",
437 (long) newts, chptr->chname, client_p->name);
438 newts = (oldts == 0) ? oldts : 800000000;
439 }
440 #else
441 /* making a channel TS0 */
442 if(!isnew && !newts && oldts)
443 {
444 sendto_channel_local(ALL_MEMBERS, chptr,
445 ":%s NOTICE %s :*** Notice -- TS for %s changed from %ld to 0",
446 me.name, chptr->chname, chptr->chname, (long) oldts);
447 sendto_realops_snomask(SNO_GENERAL, L_ALL,
448 "Server %s changing TS on %s from %ld to 0",
449 source_p->name, chptr->chname, (long) oldts);
450 }
451 #endif
452
453 if(isnew)
454 chptr->channelts = newts;
455 else if(newts == 0 || oldts == 0)
456 chptr->channelts = 0;
457 else if(newts == oldts)
458 ;
459 else if(newts < oldts)
460 {
461 keep_our_modes = NO;
462 chptr->channelts = newts;
463 }
464 else
465 keep_new_modes = NO;
466
467 /* Lost the TS, other side wins, so remove modes on this side */
468 if(!keep_our_modes)
469 {
470 set_final_mode(&mode, &chptr->mode);
471 chptr->mode = mode;
472 remove_our_modes(chptr, source_p);
473 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
474 {
475 del_invite(chptr, ptr->data);
476 }
477 /* If setting -j, clear join throttle state -- jilles */
478 chptr->join_count = chptr->join_delta = 0;
479 sendto_channel_local(ALL_MEMBERS, chptr,
480 ":%s NOTICE %s :*** Notice -- TS for %s changed from %ld to %ld",
481 me.name, chptr->chname, chptr->chname,
482 (long) oldts, (long) newts);
483 /* Update capitalization in channel name, this makes the
484 * capitalization timestamped like modes are -- jilles */
485 strcpy(chptr->chname, parv[2]);
486 if(*modebuf != '\0')
487 sendto_channel_local(ALL_MEMBERS, chptr,
488 ":%s MODE %s %s %s",
489 source_p->servptr->name,
490 chptr->chname, modebuf, parabuf);
491 *modebuf = *parabuf = '\0';
492 }
493
494 if(!IsMember(source_p, chptr))
495 {
496 add_user_to_channel(chptr, source_p, CHFL_PEON);
497 if (chptr->mode.join_num &&
498 rb_current_time() - chptr->join_delta >= chptr->mode.join_time)
499 {
500 chptr->join_count = 0;
501 chptr->join_delta = rb_current_time();
502 }
503 chptr->join_count++;
504 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
505 source_p->name, source_p->username,
506 source_p->host, chptr->chname);
507 }
508
509 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
510 ":%s JOIN %ld %s +",
511 source_p->id, (long) chptr->channelts, chptr->chname);
512 return 0;
513 }
514
515 static int
516 ms_sjoin(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
517 {
518 static char buf_uid[BUFSIZE];
519 static const char empty_modes[] = "0";
520 struct Channel *chptr;
521 struct Client *target_p, *fakesource_p;
522 time_t newts;
523 time_t oldts;
524 static struct Mode mode, *oldmode;
525 const char *modes;
526 int args = 0;
527 int keep_our_modes = 1;
528 int keep_new_modes = 1;
529 int fl;
530 int isnew;
531 int mlen_uid;
532 int len_nick;
533 int len_uid;
534 int len;
535 int joins = 0;
536 const char *s;
537 char *ptr_uid;
538 char *p;
539 int i, joinc = 0, timeslice = 0;
540 static char empty[] = "";
541 rb_dlink_node *ptr, *next_ptr;
542
543 if(!IsChannelName(parv[2]) || !check_channel_name(parv[2]))
544 return 0;
545
546 /* SJOIN's for local channels can't happen. */
547 if(*parv[2] == '&')
548 return 0;
549
550 modebuf[0] = parabuf[0] = mode.key[0] = mode.forward[0] = '\0';
551 pargs = mode.mode = mode.limit = mode.join_num = mode.join_time = 0;
552
553 /* Hide connecting server on netburst -- jilles */
554 if (ConfigServerHide.flatten_links && !HasSentEob(source_p))
555 fakesource_p = &me;
556 else
557 fakesource_p = source_p;
558
559 mbuf = modebuf;
560 newts = atol(parv[1]);
561
562 s = parv[3];
563 while (*s)
564 {
565 switch (*(s++))
566 {
567 case 'i':
568 mode.mode |= MODE_INVITEONLY;
569 break;
570 case 'n':
571 mode.mode |= MODE_NOPRIVMSGS;
572 break;
573 case 'p':
574 mode.mode |= MODE_PRIVATE;
575 break;
576 case 's':
577 mode.mode |= MODE_SECRET;
578 break;
579 case 'm':
580 mode.mode |= MODE_MODERATED;
581 break;
582 case 't':
583 mode.mode |= MODE_TOPICLIMIT;
584 break;
585 case 'r':
586 mode.mode |= MODE_REGONLY;
587 break;
588 case 'L':
589 mode.mode |= MODE_EXLIMIT;
590 break;
591 case 'P':
592 mode.mode |= MODE_PERMANENT;
593 break;
594 case 'c':
595 mode.mode |= MODE_NOCOLOR;
596 break;
597 case 'g':
598 mode.mode |= MODE_FREEINVITE;
599 break;
600 case 'z':
601 mode.mode |= MODE_OPMODERATE;
602 break;
603 case 'F':
604 mode.mode |= MODE_FREETARGET;
605 break;
606 case 'Q':
607 mode.mode |= MODE_DISFORWARD;
608 break;
609 case 'f':
610 rb_strlcpy(mode.forward, parv[4 + args], sizeof(mode.forward));
611 args++;
612 if(parc < 5 + args)
613 return 0;
614 break;
615 case 'j':
616 sscanf(parv[4 + args], "%d:%d", &joinc, &timeslice);
617 args++;
618 mode.join_num = joinc;
619 mode.join_time = timeslice;
620 if(parc < 5 + args)
621 return 0;
622 break;
623 case 'k':
624 rb_strlcpy(mode.key, parv[4 + args], sizeof(mode.key));
625 args++;
626 if(parc < 5 + args)
627 return 0;
628 break;
629 case 'l':
630 mode.limit = atoi(parv[4 + args]);
631 args++;
632 if(parc < 5 + args)
633 return 0;
634 break;
635 }
636 }
637
638 if(parv[args + 4])
639 {
640 s = parv[args + 4];
641
642 /* remove any leading spaces */
643 while (*s == ' ')
644 s++;
645 }
646 else
647 s = "";
648
649 if((chptr = get_or_create_channel(source_p, parv[2], &isnew)) == NULL)
650 return 0; /* channel name too long? */
651
652
653 oldts = chptr->channelts;
654 oldmode = &chptr->mode;
655
656 #ifdef IGNORE_BOGUS_TS
657 if(newts < 800000000)
658 {
659 sendto_realops_snomask(SNO_DEBUG, L_ALL,
660 "*** Bogus TS %ld on %s ignored from %s",
661 (long) newts, chptr->chname, client_p->name);
662
663 newts = (oldts == 0) ? oldts : 800000000;
664 }
665 #else
666 if(!isnew && !newts && oldts)
667 {
668 sendto_channel_local(ALL_MEMBERS, chptr,
669 ":%s NOTICE %s :*** Notice -- TS for %s "
670 "changed from %ld to 0",
671 me.name, chptr->chname, chptr->chname, (long) oldts);
672 sendto_realops_snomask(SNO_GENERAL, L_ALL,
673 "Server %s changing TS on %s from %ld to 0",
674 source_p->name, chptr->chname, (long) oldts);
675 }
676 #endif
677
678 if(isnew)
679 chptr->channelts = newts;
680
681 else if(newts == 0 || oldts == 0)
682 chptr->channelts = 0;
683 else if(newts == oldts)
684 ;
685 else if(newts < oldts)
686 {
687 /* If configured, kick people trying to join +i/+k
688 * channels by recreating them on split servers.
689 * Don't kick if the source has sent EOB (services
690 * deopping everyone by TS-1 SJOIN).
691 * -- jilles */
692 if (ConfigChannel.kick_on_split_riding &&
693 !HasSentEob(source_p) &&
694 ((mode.mode & MODE_INVITEONLY) ||
695 (mode.key[0] != 0 && irccmp(mode.key, oldmode->key) != 0)))
696 {
697 struct membership *msptr;
698 struct Client *who;
699 int l = rb_dlink_list_length(&chptr->members);
700
701 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->locmembers.head)
702 {
703 msptr = ptr->data;
704 who = msptr->client_p;
705 sendto_one(who, ":%s KICK %s %s :Net Rider",
706 me.name, chptr->chname, who->name);
707
708 sendto_server(NULL, chptr, CAP_TS6, NOCAPS,
709 ":%s KICK %s %s :Net Rider",
710 me.id, chptr->chname,
711 who->id);
712 remove_user_from_channel(msptr);
713 if (--l == 0)
714 break;
715 }
716 if (l == 0)
717 {
718 /* Channel was emptied, create a new one */
719 if((chptr = get_or_create_channel(source_p, parv[2], &isnew)) == NULL)
720 return 0; /* oops! */
721
722 oldmode = &chptr->mode;
723 }
724 }
725 keep_our_modes = NO;
726 chptr->channelts = newts;
727 }
728 else
729 keep_new_modes = NO;
730
731 if(!keep_new_modes)
732 mode = *oldmode;
733 else if(keep_our_modes)
734 {
735 mode.mode |= oldmode->mode;
736 if(oldmode->limit > mode.limit)
737 mode.limit = oldmode->limit;
738 if(strcmp(mode.key, oldmode->key) < 0)
739 strcpy(mode.key, oldmode->key);
740 if(oldmode->join_num > mode.join_num ||
741 (oldmode->join_num == mode.join_num &&
742 oldmode->join_time > mode.join_time))
743 {
744 mode.join_num = oldmode->join_num;
745 mode.join_time = oldmode->join_time;
746 }
747 if(irccmp(mode.forward, oldmode->forward) < 0)
748 strcpy(mode.forward, oldmode->forward);
749 }
750 else
751 {
752 /* If setting -j, clear join throttle state -- jilles */
753 if (!mode.join_num)
754 chptr->join_count = chptr->join_delta = 0;
755 }
756
757 set_final_mode(&mode, oldmode);
758 chptr->mode = mode;
759
760 /* Lost the TS, other side wins, so remove modes on this side */
761 if(!keep_our_modes)
762 {
763 remove_our_modes(chptr, fakesource_p);
764 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
765 {
766 del_invite(chptr, ptr->data);
767 }
768 sendto_channel_local(ALL_MEMBERS, chptr,
769 ":%s NOTICE %s :*** Notice -- TS for %s changed from %ld to %ld",
770 me.name, chptr->chname, chptr->chname,
771 (long) oldts, (long) newts);
772 /* Update capitalization in channel name, this makes the
773 * capitalization timestamped like modes are -- jilles */
774 strcpy(chptr->chname, parv[2]);
775 }
776
777 if(*modebuf != '\0')
778 sendto_channel_local(ALL_MEMBERS, chptr, ":%s MODE %s %s %s",
779 fakesource_p->name, chptr->chname, modebuf, parabuf);
780
781 *modebuf = *parabuf = '\0';
782
783 if(parv[3][0] != '0' && keep_new_modes)
784 modes = channel_modes(chptr, source_p);
785 else
786 modes = empty_modes;
787
788 /* working on the presumption eventually itll be more efficient to
789 * build a TS6 buffer without checking its needed..
790 */
791 mlen_uid = rb_sprintf(buf_uid, ":%s SJOIN %ld %s %s :",
792 use_id(source_p), (long) chptr->channelts, parv[2], modes);
793 ptr_uid = buf_uid + mlen_uid;
794
795 mbuf = modebuf;
796 para[0] = para[1] = para[2] = para[3] = empty;
797 pargs = 0;
798 len_nick = len_uid = 0;
799
800 /* if theres a space, theres going to be more than one nick, change the
801 * first space to \0, so s is just the first nick, and point p to the
802 * second nick
803 */
804 if((p = strchr(s, ' ')) != NULL)
805 {
806 *p++ = '\0';
807 }
808
809 *mbuf++ = '+';
810
811 while (s)
812 {
813 fl = 0;
814
815 for (i = 0; i < 2; i++)
816 {
817 if(*s == '@')
818 {
819 fl |= CHFL_CHANOP;
820 s++;
821 }
822 else if(*s == '+')
823 {
824 fl |= CHFL_VOICE;
825 s++;
826 }
827 }
828
829 /* if the client doesnt exist or is fake direction, skip. */
830 if(!(target_p = find_client(s)) ||
831 (target_p->from != client_p) || !IsPerson(target_p))
832 goto nextnick;
833
834 /* we assume for these we can fit at least one nick/uid in.. */
835
836 /* check we can fit another status+nick+space into a buffer */
837 if((mlen_uid + len_uid + IDLEN + 3) > (BUFSIZE - 3))
838 {
839 *(ptr_uid - 1) = '\0';
840 sendto_server(client_p->from, NULL, CAP_TS6, NOCAPS, "%s", buf_uid);
841 ptr_uid = buf_uid + mlen_uid;
842 len_uid = 0;
843 }
844
845 if(keep_new_modes)
846 {
847 if(fl & CHFL_CHANOP)
848 {
849 *ptr_uid++ = '@';
850 len_nick++;
851 len_uid++;
852 }
853 if(fl & CHFL_VOICE)
854 {
855 *ptr_uid++ = '+';
856 len_nick++;
857 len_uid++;
858 }
859 }
860
861 /* copy the nick to the two buffers */
862 len = rb_sprintf(ptr_uid, "%s ", use_id(target_p));
863 ptr_uid += len;
864 len_uid += len;
865
866 if(!keep_new_modes)
867 fl = 0;
868
869 if(!IsMember(target_p, chptr))
870 {
871 add_user_to_channel(chptr, target_p, fl);
872 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
873 target_p->name,
874 target_p->username, target_p->host, parv[2]);
875 joins++;
876 }
877
878 if(fl & CHFL_CHANOP)
879 {
880 *mbuf++ = 'o';
881 para[pargs++] = target_p->name;
882
883 /* a +ov user.. bleh */
884 if(fl & CHFL_VOICE)
885 {
886 /* its possible the +o has filled up MAXMODEPARAMS, if so, start
887 * a new buffer
888 */
889 if(pargs >= MAXMODEPARAMS)
890 {
891 *mbuf = '\0';
892 sendto_channel_local(ALL_MEMBERS, chptr,
893 ":%s MODE %s %s %s %s %s %s",
894 fakesource_p->name, chptr->chname,
895 modebuf,
896 para[0], para[1], para[2], para[3]);
897 mbuf = modebuf;
898 *mbuf++ = '+';
899 para[0] = para[1] = para[2] = para[3] = NULL;
900 pargs = 0;
901 }
902
903 *mbuf++ = 'v';
904 para[pargs++] = target_p->name;
905 }
906 }
907 else if(fl & CHFL_VOICE)
908 {
909 *mbuf++ = 'v';
910 para[pargs++] = target_p->name;
911 }
912
913 if(pargs >= MAXMODEPARAMS)
914 {
915 *mbuf = '\0';
916 sendto_channel_local(ALL_MEMBERS, chptr,
917 ":%s MODE %s %s %s %s %s %s",
918 fakesource_p->name,
919 chptr->chname,
920 modebuf, para[0], para[1], para[2], para[3]);
921 mbuf = modebuf;
922 *mbuf++ = '+';
923 para[0] = para[1] = para[2] = para[3] = NULL;
924 pargs = 0;
925 }
926
927 nextnick:
928 /* p points to the next nick */
929 s = p;
930
931 /* if there was a trailing space and p was pointing to it, then we
932 * need to exit.. this has the side effect of breaking double spaces
933 * in an sjoin.. but that shouldnt happen anyway
934 */
935 if(s && (*s == '\0'))
936 s = p = NULL;
937
938 /* if p was NULL due to no spaces, s wont exist due to the above, so
939 * we cant check it for spaces.. if there are no spaces, then when
940 * we next get here, s will be NULL
941 */
942 if(s && ((p = strchr(s, ' ')) != NULL))
943 {
944 *p++ = '\0';
945 }
946 }
947
948 *mbuf = '\0';
949 if(pargs)
950 {
951 sendto_channel_local(ALL_MEMBERS, chptr,
952 ":%s MODE %s %s %s %s %s %s",
953 fakesource_p->name, chptr->chname, modebuf,
954 para[0], CheckEmpty(para[1]),
955 CheckEmpty(para[2]), CheckEmpty(para[3]));
956 }
957
958 if(!joins && !(chptr->mode.mode & MODE_PERMANENT) && isnew)
959 {
960 destroy_channel(chptr);
961
962 return 0;
963 }
964
965 /* Keep the colon if we're sending an SJOIN without nicks -- jilles */
966 if (joins)
967 {
968 *(ptr_uid - 1) = '\0';
969 }
970
971 sendto_server(client_p->from, NULL, CAP_TS6, NOCAPS, "%s", buf_uid);
972
973 /* if the source does TS6 we have to remove our bans. */
974 if(!keep_our_modes)
975 {
976 if(rb_dlink_list_length(&chptr->banlist) > 0)
977 remove_ban_list(chptr, fakesource_p, &chptr->banlist, 'b', ALL_MEMBERS);
978
979 if(rb_dlink_list_length(&chptr->exceptlist) > 0)
980 remove_ban_list(chptr, fakesource_p, &chptr->exceptlist,
981 'e', ONLY_CHANOPS);
982
983 if(rb_dlink_list_length(&chptr->invexlist) > 0)
984 remove_ban_list(chptr, fakesource_p, &chptr->invexlist,
985 'I', ONLY_CHANOPS);
986
987 if(rb_dlink_list_length(&chptr->quietlist) > 0)
988 remove_ban_list(chptr, fakesource_p, &chptr->quietlist,
989 'q', ALL_MEMBERS);
990
991 chptr->bants++;
992 }
993
994 return 0;
995 }
996
997 /*
998 * do_join_0
999 *
1000 * inputs - pointer to client doing join 0
1001 * output - NONE
1002 * side effects - Use has decided to join 0. This is legacy
1003 * from the days when channels were numbers not names. *sigh*
1004 * There is a bunch of evilness necessary here due to
1005 * anti spambot code.
1006 */
1007 static void
1008 do_join_0(struct Client *client_p, struct Client *source_p)
1009 {
1010 struct membership *msptr;
1011 struct Channel *chptr = NULL;
1012 rb_dlink_node *ptr;
1013
1014 /* Finish the flood grace period... */
1015 if(MyClient(source_p) && !IsFloodDone(source_p))
1016 flood_endgrace(source_p);
1017
1018 sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s JOIN 0", use_id(source_p));
1019
1020 if(source_p->user->channel.head && MyConnect(source_p) &&
1021 !IsOper(source_p) && !IsExemptSpambot(source_p))
1022 check_spambot_warning(source_p, NULL);
1023
1024 while((ptr = source_p->user->channel.head))
1025 {
1026 msptr = ptr->data;
1027 chptr = msptr->chptr;
1028 sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s",
1029 source_p->name,
1030 source_p->username, source_p->host, chptr->chname);
1031 remove_user_from_channel(msptr);
1032 }
1033 }
1034
1035 static int
1036 check_channel_name_loc(struct Client *source_p, const char *name)
1037 {
1038 s_assert(name != NULL);
1039 if(EmptyString(name))
1040 return 0;
1041
1042 if(ConfigFileEntry.disable_fake_channels && !IsOper(source_p))
1043 {
1044 for(; *name; ++name)
1045 {
1046 if(!IsChanChar(*name) || IsFakeChanChar(*name))
1047 return 0;
1048 }
1049 }
1050 else
1051 {
1052 for(; *name; ++name)
1053 {
1054 if(!IsChanChar(*name))
1055 return 0;
1056 }
1057 }
1058
1059 return 1;
1060 }
1061
1062 static void
1063 set_final_mode(struct Mode *mode, struct Mode *oldmode)
1064 {
1065 int dir = MODE_QUERY;
1066 char *pbuf = parabuf;
1067 int len;
1068 int i;
1069
1070 /* ok, first get a list of modes we need to add */
1071 for (i = 0; chmode_flags[i].letter; i++)
1072 {
1073 if((mode->mode & chmode_flags[i].mode) && !(oldmode->mode & chmode_flags[i].mode))
1074 {
1075 if(dir != MODE_ADD)
1076 {
1077 *mbuf++ = '+';
1078 dir = MODE_ADD;
1079 }
1080 *mbuf++ = chmode_flags[i].letter;
1081 }
1082 }
1083
1084 /* now the ones we need to remove. */
1085 for (i = 0; chmode_flags[i].letter; i++)
1086 {
1087 if((oldmode->mode & chmode_flags[i].mode) && !(mode->mode & chmode_flags[i].mode))
1088 {
1089 if(dir != MODE_DEL)
1090 {
1091 *mbuf++ = '-';
1092 dir = MODE_DEL;
1093 }
1094 *mbuf++ = chmode_flags[i].letter;
1095 }
1096 }
1097
1098 if(oldmode->limit && !mode->limit)
1099 {
1100 if(dir != MODE_DEL)
1101 {
1102 *mbuf++ = '-';
1103 dir = MODE_DEL;
1104 }
1105 *mbuf++ = 'l';
1106 }
1107 if(oldmode->key[0] && !mode->key[0])
1108 {
1109 if(dir != MODE_DEL)
1110 {
1111 *mbuf++ = '-';
1112 dir = MODE_DEL;
1113 }
1114 *mbuf++ = 'k';
1115 len = rb_sprintf(pbuf, "%s ", oldmode->key);
1116 pbuf += len;
1117 }
1118 if(oldmode->join_num && !mode->join_num)
1119 {
1120 if(dir != MODE_DEL)
1121 {
1122 *mbuf++ = '-';
1123 dir = MODE_DEL;
1124 }
1125 *mbuf++ = 'j';
1126 }
1127 if(oldmode->forward[0] && !mode->forward[0])
1128 {
1129 if(dir != MODE_DEL)
1130 {
1131 *mbuf++ = '-';
1132 dir = MODE_DEL;
1133 }
1134 *mbuf++ = 'f';
1135 }
1136 if(mode->limit && oldmode->limit != mode->limit)
1137 {
1138 if(dir != MODE_ADD)
1139 {
1140 *mbuf++ = '+';
1141 dir = MODE_ADD;
1142 }
1143 *mbuf++ = 'l';
1144 len = rb_sprintf(pbuf, "%d ", mode->limit);
1145 pbuf += len;
1146 }
1147 if(mode->key[0] && strcmp(oldmode->key, mode->key))
1148 {
1149 if(dir != MODE_ADD)
1150 {
1151 *mbuf++ = '+';
1152 dir = MODE_ADD;
1153 }
1154 *mbuf++ = 'k';
1155 len = rb_sprintf(pbuf, "%s ", mode->key);
1156 pbuf += len;
1157 }
1158 if(mode->join_num && (oldmode->join_num != mode->join_num || oldmode->join_time != mode->join_time))
1159 {
1160 if(dir != MODE_ADD)
1161 {
1162 *mbuf++ = '+';
1163 dir = MODE_ADD;
1164 }
1165 *mbuf++ = 'j';
1166 len = rb_sprintf(pbuf, "%d:%d ", mode->join_num, mode->join_time);
1167 pbuf += len;
1168 }
1169 if(mode->forward[0] && strcmp(oldmode->forward, mode->forward) && ConfigChannel.use_forward)
1170 {
1171 if(dir != MODE_ADD)
1172 {
1173 *mbuf++ = '+';
1174 dir = MODE_ADD;
1175 }
1176 *mbuf++ = 'f';
1177 len = rb_sprintf(pbuf, "%s ", mode->forward);
1178 pbuf += len;
1179 }
1180 *mbuf = '\0';
1181 }
1182
1183 /*
1184 * remove_our_modes
1185 *
1186 * inputs -
1187 * output -
1188 * side effects -
1189 */
1190 static void
1191 remove_our_modes(struct Channel *chptr, struct Client *source_p)
1192 {
1193 struct membership *msptr;
1194 rb_dlink_node *ptr;
1195 char lmodebuf[MODEBUFLEN];
1196 char *lpara[MAXMODEPARAMS];
1197 int count = 0;
1198 int i;
1199
1200 mbuf = lmodebuf;
1201 *mbuf++ = '-';
1202
1203 for(i = 0; i < MAXMODEPARAMS; i++)
1204 lpara[i] = NULL;
1205
1206 RB_DLINK_FOREACH(ptr, chptr->members.head)
1207 {
1208 msptr = ptr->data;
1209
1210 if(is_chanop(msptr))
1211 {
1212 msptr->flags &= ~CHFL_CHANOP;
1213 lpara[count++] = msptr->client_p->name;
1214 *mbuf++ = 'o';
1215
1216 /* +ov, might not fit so check. */
1217 if(is_voiced(msptr))
1218 {
1219 if(count >= MAXMODEPARAMS)
1220 {
1221 *mbuf = '\0';
1222 sendto_channel_local(ALL_MEMBERS, chptr,
1223 ":%s MODE %s %s %s %s %s %s",
1224 me.name, chptr->chname,
1225 lmodebuf, lpara[0], lpara[1],
1226 lpara[2], lpara[3]);
1227
1228 /* preserve the initial '-' */
1229 mbuf = lmodebuf;
1230 *mbuf++ = '-';
1231 count = 0;
1232
1233 for(i = 0; i < MAXMODEPARAMS; i++)
1234 lpara[i] = NULL;
1235 }
1236
1237 msptr->flags &= ~CHFL_VOICE;
1238 lpara[count++] = msptr->client_p->name;
1239 *mbuf++ = 'v';
1240 }
1241 }
1242 else if(is_voiced(msptr))
1243 {
1244 msptr->flags &= ~CHFL_VOICE;
1245 lpara[count++] = msptr->client_p->name;
1246 *mbuf++ = 'v';
1247 }
1248 else
1249 continue;
1250
1251 if(count >= MAXMODEPARAMS)
1252 {
1253 *mbuf = '\0';
1254 sendto_channel_local(ALL_MEMBERS, chptr,
1255 ":%s MODE %s %s %s %s %s %s",
1256 me.name, chptr->chname, lmodebuf,
1257 lpara[0], lpara[1], lpara[2], lpara[3]);
1258 mbuf = lmodebuf;
1259 *mbuf++ = '-';
1260 count = 0;
1261
1262 for(i = 0; i < MAXMODEPARAMS; i++)
1263 lpara[i] = NULL;
1264 }
1265 }
1266
1267 if(count != 0)
1268 {
1269 *mbuf = '\0';
1270 sendto_channel_local(ALL_MEMBERS, chptr,
1271 ":%s MODE %s %s %s %s %s %s",
1272 me.name, chptr->chname, lmodebuf,
1273 EmptyString(lpara[0]) ? "" : lpara[0],
1274 EmptyString(lpara[1]) ? "" : lpara[1],
1275 EmptyString(lpara[2]) ? "" : lpara[2],
1276 EmptyString(lpara[3]) ? "" : lpara[3]);
1277
1278 }
1279 }
1280
1281 /* remove_ban_list()
1282 *
1283 * inputs - channel, source, list to remove, char of mode, caps needed
1284 * outputs -
1285 * side effects - given list is removed, with modes issued to local clients
1286 */
1287 static void
1288 remove_ban_list(struct Channel *chptr, struct Client *source_p,
1289 rb_dlink_list * list, char c, int mems)
1290 {
1291 static char lmodebuf[BUFSIZE];
1292 static char lparabuf[BUFSIZE];
1293 struct Ban *banptr;
1294 rb_dlink_node *ptr;
1295 rb_dlink_node *next_ptr;
1296 char *pbuf;
1297 int count = 0;
1298 int cur_len, mlen, plen;
1299
1300 pbuf = lparabuf;
1301
1302 cur_len = mlen = rb_sprintf(lmodebuf, ":%s MODE %s -", source_p->name, chptr->chname);
1303 mbuf = lmodebuf + mlen;
1304
1305 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
1306 {
1307 banptr = ptr->data;
1308
1309 /* trailing space, and the mode letter itself */
1310 plen = strlen(banptr->banstr) + 2;
1311
1312 if(count >= MAXMODEPARAMS || (cur_len + plen) > BUFSIZE - 4)
1313 {
1314 /* remove trailing space */
1315 *mbuf = '\0';
1316 *(pbuf - 1) = '\0';
1317
1318 sendto_channel_local(mems, chptr, "%s %s", lmodebuf, lparabuf);
1319
1320 cur_len = mlen;
1321 mbuf = lmodebuf + mlen;
1322 pbuf = lparabuf;
1323 count = 0;
1324 }
1325
1326 *mbuf++ = c;
1327 cur_len += plen;
1328 pbuf += rb_sprintf(pbuf, "%s ", banptr->banstr);
1329 count++;
1330
1331 free_ban(banptr);
1332 }
1333
1334 *mbuf = '\0';
1335 *(pbuf - 1) = '\0';
1336 sendto_channel_local(mems, chptr, "%s %s", lmodebuf, lparabuf);
1337
1338 list->head = list->tail = NULL;
1339 list->length = 0;
1340 }