]> jfr.im git - irc/quakenet/newserv.git/blame - channel/channelhandlers.c
Sanitize IP addresses/domain names.
[irc/quakenet/newserv.git] / channel / channelhandlers.c
CommitLineData
c86edd1d
Q
1/* channel.c */
2
f2b36aa8
CP
3#include <stdio.h>
4#include <string.h>
5
c86edd1d
Q
6#include "channel.h"
7#include "../server/server.h"
8#include "../nick/nick.h"
9#include "../lib/irc_string.h"
10#include "../irc/irc_config.h"
11#include "../parser/parser.h"
12#include "../irc/irc.h"
13#include "../lib/base64.h"
f2b36aa8 14#include "../lib/strlfunc.h"
c86edd1d
Q
15
16int handleburstmsg(void *source, int cargc, char **cargv) {
17 channel *cp;
18 time_t timestamp;
19 int wipeout=0;
20 int i;
21 int arg=0;
22 char *charp;
23 int newlimit;
24 int waslimit,waskeyed;
25 char *nextnum;
26 unsigned long currentmode;
27 int isnewchan;
28
29 /* (we don't see the first 2 params in cargc) */
0dd93b00 30 /* AK B #+lod+ 1017561154 +tnk eits ATJWu:o,AiW1a,Ag3lV,AiWnl,AE6oI :%*!@123.example.net */
c86edd1d
Q
31
32 if (cargc<2) {
33 Error("channel",ERR_WARNING,"Burst message with only %d parameters",cargc);
34 return CMD_OK;
35 }
36
37 timestamp=strtol(cargv[1],NULL,10);
38
39 if ((cp=findchannel(cargv[0]))==NULL) {
40 /* We don't have this channel already */
41 cp=createchannel(cargv[0]);
42 cp->timestamp=timestamp;
43 isnewchan=1;
44 } else {
45 isnewchan=0;
46 if (timestamp<cp->timestamp) {
47 /* The incoming timestamp is older. Erase all our current channel modes, and the topic. */
48 cp->timestamp=timestamp;
49 freesstring(cp->topic);
50 cp->topic=NULL;
51 cp->topictime=0;
52 freesstring(cp->key);
53 cp->key=NULL;
54 cp->limit=0;
55 cp->flags=0;
56 clearallbans(cp);
57 /* Remove all +v, +o we currently have */
58 for(i=0;i<cp->users->hashsize;i++) {
59 if (cp->users->content[i]!=nouser) {
60 cp->users->content[i]&=CU_NUMERICMASK;
61 }
62 }
63 } else if (timestamp>cp->timestamp) {
64 /* The incoming timestamp is greater. Ignore any incoming modes they may happen to set */
65 wipeout=1;
66 }
67 }
68
69 /* OK, dealt with the name and timestamp.
70 * Loop over the remaining args */
71 for (arg=2;arg<cargc;arg++) {
72 if (cargv[arg][0]=='+') {
73 /* Channel modes */
74 if (wipeout) {
75 /* We ignore the modes, but we need to see if they include +l or +k
76 * so that we can ignore their corresponding values */
77 for (charp=cargv[arg];*charp;charp++) {
78 if (*charp=='k' || *charp=='l') {
79 arg++;
80 }
81 }
82 } else {
83 /* Clear off the limit and key flags before calling setflags so we can see if the burst tried to set them */
84 /* If the burst doesn't set them, we restore them afterwards */
85 waslimit=IsLimit(cp); ClearLimit(cp);
86 waskeyed=IsKey(cp); ClearKey(cp);
87 /* We can then use the flag function for these modes */
88 setflags(&(cp->flags),CHANMODE_ALL,cargv[arg],cmodeflags,REJECT_NONE);
89 /* Pick up the limit and key, if they were set. Note that the limit comes first */
90 if (IsLimit(cp)) { /* A limit was SET by the burst */
91 if (++arg>=cargc) {
92 /* Ran out of args -- damn ircd is spewing out crap again */
93 Error("channel",ERR_WARNING,"Burst +l with no argument");
94 break; /* "break" being the operative word */
95 } else {
96 newlimit=strtol(cargv[arg],NULL,10);
97 }
98 if (cp->limit>0 && waslimit) {
99 /* We had a limit before -- we now have the lowest one of the two */
100 if (newlimit<cp->limit) {
101 cp->limit=newlimit;
102 }
103 } else {
104 /* No limit before -- we just have the new one */
105 cp->limit=newlimit;
106 }
107 } else if (waslimit) {
108 SetLimit(cp); /* We had a limit before, but the burst didn't set one. Restore flag. */
109 }
110
111 if (IsKey(cp)) { /* A key was SET by the burst */
112 if (++arg>=cargc) {
113 /* Ran out of args -- oopsie! */
114 Error("channel",ERR_WARNING,"Burst +k with no argument");
115 break;
116 }
117 if (waskeyed) {
118 /* We had a key before -- alphabetically first wins */
119 if (ircd_strcmp(cargv[arg],cp->key->content)<0) {
120 /* Replace our key */
121 freesstring(cp->key);
122 cp->key=getsstring(cargv[arg],KEYLEN);
123 }
124 } else {
125 /* No key before -- just the new one */
126 cp->key=getsstring(cargv[arg],KEYLEN);
127 }
128 } else if (waskeyed) {
129 SetKey(cp); /* We had a key before, but the burst didn't set one. Restore flag. */
130 }
131 }
132 } else if (cargv[arg][0]=='%') {
133 /* We have one or more bans here */
134 nextnum=cargv[arg]+1;
135 while (*nextnum) {
136 /* Split off the next ban */
137 for (charp=nextnum;*charp;charp++) {
138 if (*charp==' ') {
139 *charp='\0';
140 charp++;
141 break;
142 }
143 }
144 setban(cp,nextnum);
145 nextnum=charp;
146 }
147 } else {
148 /* List of numerics */
149 nextnum=charp=cargv[arg];
150 currentmode=0;
151 while (*nextnum!='\0') {
152 /* Step over the next numeric */
153 for (i=0;i<5;i++) {
154 if (*charp++=='\0')
155 break;
156 }
157 if (i<5) {
158 break;
159 }
160 if (*charp==',') {
161 *charp='\0';
162 charp++;
163 } else if (*charp==':') {
164 *charp='\0';
165 charp++;
166 currentmode=0;
167 /* Look for modes */
168 for (;*charp;charp++) {
169 if (*charp=='v') {
170 currentmode|=CUMODE_VOICE;
171 } else if (*charp=='o') {
172 currentmode|=CUMODE_OP;
173 } else if (*charp==',') {
174 charp++;
175 break;
176 }
177 }
178 /* If we're ignore incoming modes, zap it to zero again */
179 if (wipeout) {
180 currentmode=0;
181 }
182 }
183 /* OK. At this point charp points to either '\0' if we're at the end,
184 * or the start of the next numeric otherwise. nextnum points at a valid numeric
185 * we need to add, and currentmode reflects the correct mode */
186 addnicktochannel(cp,(numerictolong(nextnum,5)|currentmode));
187 nextnum=charp;
188 }
189 }
190 }
191 if (cp->users->totalusers==0) {
192 /* Oh dear, the channel is now empty. Perhaps one of those
193 * charming empty burst messages you get sometimes.. */
194 if (!isnewchan) {
195 /* I really don't think this can happen, can it..? */
196 /* Only send the LOSTCHANNEL if the channel existed before */
197 triggerhook(HOOK_CHANNEL_LOSTCHANNEL,cp);
198 }
199 delchannel(cp);
200 } else {
201 /* If this is a new channel, we do the NEWCHANNEL hook also */
202 if (isnewchan) {
203 triggerhook(HOOK_CHANNEL_NEWCHANNEL,cp);
204 }
205 /* Just one hook to say "something happened to this channel" */
206 triggerhook(HOOK_CHANNEL_BURST,cp);
207 }
208
209 return CMD_OK;
210}
211
212int handlejoinmsg(void *source, int cargc, char **cargv) {
213 char *pos,*nextchan;
214 nick *np;
62f9b4e9 215 void *harg[3];
c86edd1d
Q
216 channel *cp,**ch;
217 long timestamp=0;
218 int i;
219 int newchan=0;
220
221 if (cargc<1) {
222 return CMD_OK;
223 }
224
225 if (cargc>1) {
226 /* We must have received a timestamp too */
227 timestamp=strtol(cargv[1],NULL,10);
228 }
229
230 /* Find out who we are talking about here */
231 np=getnickbynumericstr(source);
232 if (np==NULL) {
16739dbe 233 Error("channel",ERR_WARNING,"Channel join from non existent user %s",(char *)source);
c86edd1d
Q
234 return CMD_OK;
235 }
236
237 nextchan=pos=cargv[0];
238 while (*nextchan!='\0') {
239 /* Find the next chan position */
240 for (;*pos!='\0' && *pos!=',';pos++)
241 ; /* Empty loop */
242
243 if (*pos==',') {
244 *pos='\0';
245 pos++;
246 }
247
248 /* OK, pos now points at either null or the next chan
249 * and nextchan now points at the channel name we want to parse next */
250
251 if(nextchan[0]=='0' && nextchan[1]=='\0') {
252 /* Leave all channels
253 * We do this as if they were leaving the network,
254 * then vape their channels array and start again */
255 ch=(channel **)(np->channels->content);
256 for(i=0;i<np->channels->cursi;i++) {
257 /* Send hook */
258 harg[0]=ch[i];
259 harg[1]=np;
5328e616 260 harg[2]=NULL;
c86edd1d
Q
261 triggerhook(HOOK_CHANNEL_PART,harg);
262 delnickfromchannel(ch[i],np->numeric,0);
263 }
264 array_free(np->channels);
265 array_init(np->channels,sizeof(channel *));
266 } else {
267 /* It's an actual channel join */
268 newchan=0;
269 if ((cp=findchannel(nextchan))==NULL) {
270 /* User joined non-existent channel - create it. Note that createchannel automatically
271 * puts the right magic timestamp in for us */
272 Error("channel",ERR_DEBUG,"User %s joined non existent channel %s.",np->nick,nextchan);
273 cp=createchannel(nextchan);
274 newchan=1;
275 }
276 if (cp->timestamp==MAGIC_REMOTE_JOIN_TS && timestamp) {
277 /* No valid timestamp on the chan and we received one -- set */
278 cp->timestamp=timestamp;
279 }
280 /* OK, this is slightly inefficient since we turn the nick * into a numeric,
281 * and addnicktochannel then converts it back again. BUT it's fewer lines of code :) */
282 if (addnicktochannel(cp,np->numeric)) {
283 /* The user wasn't added */
284 if (newchan) {
285 delchannel(cp);
286 }
e2f3cad8 287 } else {
288 chanindex *cip=cp->index;
289
c86edd1d
Q
290 /* If we just created a channel, flag it */
291 if (newchan) {
292 triggerhook(HOOK_CHANNEL_NEWCHANNEL,cp);
293 }
e2f3cad8 294
295 /* Don't send HOOK_CHANNEL_JOIN if the channel doesn't exist any
296 * more (can happen if something destroys it in response to
297 * HOOK_CHANNEL_NEWCHANNEL) */
298 if (cp == cip->channel) {
299 /* send hook */
300 harg[0]=cp;
301 harg[1]=np;
302 triggerhook(HOOK_CHANNEL_JOIN,harg);
303 }
c86edd1d
Q
304 }
305 }
306 nextchan=pos;
307 }
308 return CMD_OK;
309}
310
311int handlecreatemsg(void *source, int cargc, char **cargv) {
312 char *pos,*nextchan;
313 nick *np;
314 channel *cp;
315 long timestamp=0;
316 int newchan=1;
317 void *harg[2];
318
319 if (cargc<2) {
320 return CMD_OK;
321 }
322
323 timestamp=strtol(cargv[1],NULL,10);
324
325 /* Find out who we are talking about here */
326 np=getnickbynumericstr(source);
327 if (np==NULL) {
16739dbe 328 Error("channel",ERR_WARNING,"Channel create from non existent user %s",(char *)source);
c86edd1d
Q
329 return CMD_OK;
330 }
331
332 nextchan=pos=cargv[0];
333 while (*nextchan!='\0') {
334 /* Find the next chan position */
335 for (;*pos!='\0' && *pos!=',';pos++)
336 ; /* Empty loop */
337
338 if (*pos==',') {
339 *pos='\0';
340 pos++;
341 }
342
343 /* OK, pos now points at either null or the next chan
344 * and nextchan now points at the channel name we want to parse next */
345
346 /* It's a channel create */
347 if ((cp=findchannel(nextchan))==NULL) {
348 /* This is the expected case -- the channel didn't exist before */
349 cp=createchannel(nextchan);
350 cp->timestamp=timestamp;
351 newchan=1;
352 } else {
353 Error("channel",ERR_DEBUG,"Received CREATE for already existing channel %s",cp->index->name->content);
354 if (cp->timestamp==MAGIC_REMOTE_JOIN_TS && timestamp) {
355 /* No valid timestamp on the chan and we received one -- set */
356 cp->timestamp=timestamp;
357 }
358 newchan=0;
359 }
360 /* Add the user to the channel, preopped */
361 if (addnicktochannel(cp,(np->numeric)|CUMODE_OP)) {
362 if (newchan) {
363 delchannel(cp);
364 }
e2f3cad8 365 } else {
366 chanindex *cip = cp->index;
367
c86edd1d
Q
368 /* Flag the channel as new if necessary */
369 if (newchan) {
370 triggerhook(HOOK_CHANNEL_NEWCHANNEL,cp);
371 }
372
e2f3cad8 373 /* If HOOK_CHANNEL_NEWCHANNEL has caused the channel to be deleted,
374 * don't trigger the CREATE hook. */
375 if (cip->channel == cp) {
376 /* Trigger hook */
377 harg[0]=cp;
378 harg[1]=np;
379 triggerhook(HOOK_CHANNEL_CREATE,harg);
380 }
c86edd1d
Q
381 }
382 nextchan=pos;
383 }
384
385 return CMD_OK;
386}
387
388int handlepartmsg(void *source, int cargc, char **cargv) {
389 char *pos,*nextchan;
390 nick *np;
391 channel *cp;
392 void *harg[3];
393
394 if (cargc<1) {
395 return CMD_OK;
396 }
397
398 if (cargc>2) {
399 Error("channel",ERR_WARNING,"PART with too many parameters (%d)",cargc);
400 }
401
402 if (cargc>1) {
403 harg[2]=(void *)cargv[1];
404 } else {
405 harg[2]=(void *)"";
406 }
407
408 /* Find out who we are talking about here */
409 np=getnickbynumericstr(source);
410 if (np==NULL) {
16739dbe 411 Error("channel",ERR_WARNING,"PART from non existent numeric %s",(char *)source);
c86edd1d
Q
412 return CMD_OK;
413 }
414
415 harg[1]=np;
416
417 nextchan=pos=cargv[0];
418 while (*nextchan!='\0') {
419 /* Find the next chan position */
420 for (;*pos!='\0' && *pos!=',';pos++)
421 ; /* Empty loop */
422
423 if (*pos==',') {
424 *pos='\0';
425 pos++;
426 }
427
428 /* OK, pos now points at either null or the next chan
429 * and nextchan now points at the channel name we want to parse next */
430
431 if ((cp=findchannel(nextchan))==NULL) {
432 /* Erm, parting a channel that's not there?? */
433 Error("channel",ERR_WARNING,"Nick %s left non-existent channel %s",np->nick,nextchan);
434 } else {
435 /* Trigger hook *FIRST* */
436 harg[0]=cp;
437 triggerhook(HOOK_CHANNEL_PART,harg);
438
439 delnickfromchannel(cp,np->numeric,1);
440 }
441 nextchan=pos;
442 }
443
444 return CMD_OK;
445}
446
447int handlekickmsg(void *source, int cargc, char **cargv) {
448 nick *np,*kicker;
449 channel *cp;
450 void *harg[4];
451
452 if (cargc<3) {
453 return CMD_OK;
454 }
455
456 /* Find out who we are talking about here */
457 if ((np=getnickbynumericstr(cargv[1]))==NULL) {
16739dbe 458 Error("channel",ERR_DEBUG,"Non-existant numeric %s kicked from channel %s",(char *)source,cargv[0]);
c86edd1d
Q
459 return CMD_OK;
460 }
461
462 /* And who did the kicking */
463 if (((char *)source)[2]=='\0') {
464 /* 'Twas a server.. */
465 kicker=NULL;
466 } else if ((kicker=getnickbynumericstr((char *)source))==NULL) {
467 /* It looks strange, but we let the kick go through anyway */
468 Error("channel",ERR_DEBUG,"Kick from non-existant nick %s",(char *)source);
469 }
470
471 /* And find out which channel */
472 if ((cp=findchannel(cargv[0]))==NULL) {
473 /* OK, not a channel that actually exists then.. */
474 Error("channel",ERR_DEBUG,"Nick %s kicked from non-existent channel %s",np->nick,cargv[0]);
475 } else {
476 /* Before we do anything else, we have to acknowledge the kick to the network */
477 if (homeserver(np->numeric)==mylongnum) {
478 irc_send("%s L %s",longtonumeric(np->numeric,5),cp->index->name->content);
479 }
480
481 /* Trigger hook *FIRST* */
482 harg[0]=cp;
483 harg[1]=np;
484 harg[2]=kicker;
485 harg[3]=cargv[2];
486 triggerhook(HOOK_CHANNEL_KICK,harg);
487
488 /* We let delnickfromchannel() worry about whether this nick is actually on this channel */
489 delnickfromchannel(cp,np->numeric,1);
490 }
491
492 return CMD_OK;
493}
494
495int handletopicmsg(void *source, int cargc, char **cargv) {
496 channel *cp;
497 nick *np;
498 void *harg[2];
499 time_t topictime=0, timestamp=0;
500
501 if (cargc<2) {
502 return CMD_OK;
503 }
504
505 if (cargc>2)
506 topictime=strtol(cargv[cargc-2], NULL, 10);
507
508 if (cargc>3)
509 timestamp=strtol(cargv[cargc-3], NULL, 10);
510
266bf9c1
CP
511 np=getnickbynumericstr((char *)source);
512
6404bd54 513 /* The following check removed because servers can set topics.. */
514#if 0
266bf9c1 515 if (np==NULL) {
c86edd1d
Q
516 /* We should check the sender exists, but we still change the topic even if it doesn't */
517 Error("channel",ERR_WARNING,"Topic change by non-existent user %s",(char *)source);
518 }
6404bd54 519#endif
c86edd1d
Q
520
521 /* Grab channel pointer */
522 if ((cp=findchannel(cargv[0]))==NULL) {
523 /* We're not going to create a channel for the sake of a topic.. */
524 return CMD_OK;
525 } else {
526 if (timestamp && (cp->timestamp < timestamp)) {
527 /* Ignore topic change for younger channel
528 * (note that topic change for OLDER channel should be impossible!) */
529 return CMD_OK;
530 }
531 if (topictime && (cp->topictime > topictime)) {
532 /* Ignore topic change with older topic */
533 return CMD_OK;
534 }
535 if (cp->topic!=NULL) {
536 freesstring(cp->topic);
537 }
538 if (cargv[cargc-1][0]=='\0') {
539 cp->topic=NULL;
540 cp->topictime=0;
541 } else {
542 cp->topic=getsstring(cargv[cargc-1],TOPICLEN);
543 cp->topictime=topictime?topictime:getnettime();
544 }
545 /* Trigger hook */
546 harg[0]=cp;
547 harg[1]=np;
548 triggerhook(HOOK_CHANNEL_TOPIC,harg);
549 }
550
551 return CMD_OK;
552}
553
554/*
555 * Note that this function is also used for processing OPMODE messages.
556 * There is no checking on the source etc. anyway, so this should be OK.
557 * (we are trusting ircd not to feed us bogus modes)
558 */
559
560int handlemodemsg(void *source, int cargc, char **cargv) {
561 channel *cp;
562 int dir=1;
563 int arg=2;
564 char *modestr;
565 unsigned long *lp;
d968d1fe 566 void *harg[4];
c86edd1d
Q
567 nick *np, *target;
568 int hooknum;
569 int changes=0;
d968d1fe 570
c86edd1d
Q
571 if (cargc<2) {
572 return CMD_OK;
573 }
574
575 if (cargv[0][0]!='#' && cargv[0][0]!='+') {
576 /* Not a channel, ignore */
577 return CMD_OK;
578 }
579
580 if ((cp=findchannel(cargv[0]))==NULL) {
581 /* No channel, abort */
582 Error("channel",ERR_WARNING,"Mode change on non-existent channel %s",cargv[0]);
583 return CMD_OK;
584 }
585
586 if (((char *)source)[2]=='\0') {
587 /* Server mode change, treat as divine intervention */
588 np=NULL;
589 } else if ((np=getnickbynumericstr((char *)source))==NULL) {
590 /* No sender, continue but moan */
591 Error("channel",ERR_WARNING,"Mode change by non-existent user %s on channel %s",(char *)source,cp->index->name->content);
592 }
593
594 /* Set up the hook data */
595 harg[0]=cp;
596 harg[1]=np;
d968d1fe 597 harg[3]=(void *)(long)(cp->flags);
c86edd1d
Q
598
599 /* Process the mode string one character at a time */
600 /* Maybe I'll write this more intelligently one day if I can comprehend the ircu code that does this */
601 for (modestr=cargv[1];*modestr;modestr++) {
602 switch(*modestr) {
603 /* Set whether we are adding or removing modes */
604
605 case '+':
606 dir=1;
607 break;
608
609 case '-':
610 dir=0;
611 break;
612
613 /* Simple modes: just set or clear based on value of dir */
614
615 case 'n':
616 if (dir) { SetNoExtMsg(cp); } else { ClearNoExtMsg(cp); }
617 changes |= MODECHANGE_MODES;
618 break;
619
620 case 't':
621 if (dir) { SetTopicLimit(cp); } else { ClearTopicLimit(cp); }
622 changes |= MODECHANGE_MODES;
623 break;
624
625 case 's':
626 if (dir) { SetSecret(cp); ClearPrivate(cp); } else { ClearSecret(cp); }
627 changes |= MODECHANGE_MODES;
628 break;
629
630 case 'p':
631 if (dir) { SetPrivate(cp); ClearSecret(cp); } else { ClearPrivate(cp); }
632 changes |= MODECHANGE_MODES;
633 break;
634
635 case 'i':
636 if (dir) { SetInviteOnly(cp); } else { ClearInviteOnly(cp); }
637 changes |= MODECHANGE_MODES;
638 break;
639
640 case 'm':
641 if (dir) { SetModerated(cp); } else { ClearModerated(cp); }
642 changes |= MODECHANGE_MODES;
643 break;
644
645 case 'c':
646 if (dir) { SetNoColour(cp); } else { ClearNoColour(cp); }
647 changes |= MODECHANGE_MODES;
648 break;
649
650 case 'C':
651 if (dir) { SetNoCTCP(cp); } else { ClearNoCTCP(cp); }
652 changes |= MODECHANGE_MODES;
653 break;
654
655 case 'r':
656 if (dir) { SetRegOnly(cp); } else { ClearRegOnly(cp); }
657 changes |= MODECHANGE_MODES;
658 break;
659
660 case 'D':
661 if (dir) { SetDelJoins(cp); } else { ClearDelJoins(cp); }
662 changes |= MODECHANGE_MODES;
663 break;
664
665 case 'u':
666 if (dir) { SetNoQuitMsg(cp); } else { ClearNoQuitMsg(cp); }
667 changes |= MODECHANGE_MODES;
668 break;
669
670 case 'N':
671 if (dir) { SetNoNotice(cp); } else { ClearNoNotice(cp); }
672 changes |= MODECHANGE_MODES;
673 break;
674
73a2c60a 675 case 'M':
676 if (dir) { SetModNoAuth(cp); } else { ClearModNoAuth(cp); }
677 changes |= MODECHANGE_MODES;
678 break;
679
680 case 'T':
681 if (dir) { SetSingleTarg(cp); } else { ClearSingleTarg(cp); }
682 changes |= MODECHANGE_MODES;
683 break;
684
c86edd1d
Q
685 /* Parameter modes: advance parameter and possibly read it in */
686
687 case 'l':
688 if (dir) {
689 /* +l uses a parameter, but -l does not.
690 * If there is no parameter, don't set the mode.
691 * I guess we should moan too in that case, but
692 * they might be even nastier to us if we do ;) */
693 if (arg<cargc) {
694 cp->limit=strtol(cargv[arg++],NULL,10);
695 SetLimit(cp);
696 }
697 } else {
698 ClearLimit(cp);
699 cp->limit=0;
700 }
701 changes |= MODECHANGE_MODES;
702 break;
703
704 case 'k':
705 if (dir) {
706 /* +k uses a parameter in both directions */
707 if (arg<cargc) {
708 freesstring(cp->key); /* It's probably NULL, but be safe */
709 cp->key=getsstring(cargv[arg++],KEYLEN);
710 SetKey(cp);
711 }
712 } else {
713 freesstring(cp->key);
714 cp->key=NULL;
715 ClearKey(cp);
716 arg++; /* Eat the arg without looking at it, even if it's not there */
717 }
718 changes |= MODECHANGE_MODES;
719 break;
720
721 /* Op/Voice */
722
723 case 'o':
724 case 'v':
725 if (arg<cargc) {
726 if((lp=getnumerichandlefromchanhash(cp->users,numerictolong(cargv[arg++],5)))==NULL) {
727 /* They're not on the channel; MODE crossed with part/kill/kick/blah */
728 Error("channel",ERR_DEBUG,"Mode change for user %s not on channel %s",cargv[arg-1],cp->index->name->content);
729 } else {
730 if ((target=getnickbynumeric(*lp))==NULL) {
731 /* This really is a fuckup, we found them on the channel but there isn't a user with that numeric */
732 /* This means there's a serious bug in the nick/channel tracking code */
733 Error("channel",ERR_ERROR,"Mode change for user %s on channel %s who doesn't exist",cargv[arg-1],cp->index->name->content);
734 } else { /* Do the mode change whilst admiring the beautiful code layout */
735 harg[2]=target;
736 if (*modestr=='o') { if (dir) { *lp |= CUMODE_OP; hooknum=HOOK_CHANNEL_OPPED; } else
737 { *lp &= ~CUMODE_OP; hooknum=HOOK_CHANNEL_DEOPPED; } }
738 else { if (dir) { *lp |= CUMODE_VOICE; hooknum=HOOK_CHANNEL_VOICED; } else
739 { *lp &= ~CUMODE_VOICE; hooknum=HOOK_CHANNEL_DEVOICED; } }
740 triggerhook(hooknum,harg);
741 }
742 }
743 }
744 changes |= MODECHANGE_USERS;
745 break;
746
747 case 'b':
748 if (arg<cargc) {
749 if (dir) {
750 setban(cp,cargv[arg++]);
751 triggerhook(HOOK_CHANNEL_BANSET,harg);
752 } else {
753 clearban(cp,cargv[arg++],0);
754 triggerhook(HOOK_CHANNEL_BANCLEAR,harg);
755 }
756 }
757 changes |= MODECHANGE_BANS;
758 break;
759
760 default:
761 Error("channel",ERR_DEBUG,"Unknown mode char '%c' %s on %s",*modestr,dir?"set":"cleared",cp->index->name->content);
762 break;
763 }
764 }
765
c3db6f7e 766 harg[2]=(void *)((long)changes);
c86edd1d
Q
767 triggerhook(HOOK_CHANNEL_MODECHANGE,(void *)harg);
768 return CMD_OK;
769}
770
771/*
772 * Deal with 2.10.11ism: CLEARMODE
773 *
774 * [hAAA CM #twilightzone ovpsmikbl
775 */
776
777int handleclearmodemsg(void *source, int cargc, char **cargv) {
778 channel *cp;
d968d1fe 779 void *harg[4];
c86edd1d
Q
780 nick *np, *target;
781 char *mcp;
782 unsigned long usermask=0;
783 int i;
784 int changes=0;
785
786 if (cargc<2) {
787 return CMD_OK;
788 }
789
790 if ((cp=findchannel(cargv[0]))==NULL) {
791 /* No channel, abort */
792 Error("channel",ERR_WARNING,"Mode change on non-existent channel %s",cargv[0]);
793 return CMD_OK;
794 }
795
796 if (((char *)source)[2]=='\0') {
797 /* Server mode change? (I don't think servers are allowed to do CLEARMODE) */
798 np=NULL;
799 } else if ((np=getnickbynumericstr((char *)source))==NULL) {
800 /* No sender, continue but moan */
801 Error("channel",ERR_WARNING,"Mode change by non-existent user %s on channel %s",(char *)source,cp->index->name->content);
802 }
803
804 harg[0]=cp;
805 harg[1]=np;
d968d1fe
CP
806 harg[3]=(void *)(long)(cp->flags);
807
c86edd1d
Q
808 for (mcp=cargv[1];*mcp;mcp++) {
809 switch (*mcp) {
810 case 'o':
811 usermask |= CUMODE_OP;
812 changes |= MODECHANGE_USERS;
813 break;
814
815 case 'v':
816 usermask |= CUMODE_VOICE;
817 changes |= MODECHANGE_USERS;
818 break;
819
820 case 'n':
821 ClearNoExtMsg(cp);
822 changes |= MODECHANGE_MODES;
823 break;
824
825 case 't':
826 ClearTopicLimit(cp);
827 changes |= MODECHANGE_MODES;
828 break;
829
830 case 's':
831 ClearSecret(cp);
832 changes |= MODECHANGE_MODES;
833 break;
834
835 case 'p':
836 ClearPrivate(cp);
837 changes |= MODECHANGE_MODES;
838 break;
839
840 case 'i':
841 ClearInviteOnly(cp);
842 changes |= MODECHANGE_MODES;
843 break;
844
845 case 'm':
846 ClearModerated(cp);
847 changes |= MODECHANGE_MODES;
848 break;
849
850 case 'c':
851 ClearNoColour(cp);
852 changes |= MODECHANGE_MODES;
853 break;
854
855 case 'C':
856 ClearNoCTCP(cp);
857 changes |= MODECHANGE_MODES;
858 break;
859
860 case 'r':
861 ClearRegOnly(cp);
862 changes |= MODECHANGE_MODES;
863 break;
864
865 case 'D':
866 ClearDelJoins(cp);
867 changes |= MODECHANGE_MODES;
868 break;
869
870 case 'u':
871 ClearNoQuitMsg(cp);
872 changes |= MODECHANGE_MODES;
873 break;
874
875 case 'N':
876 ClearNoNotice(cp);
877 changes |= MODECHANGE_MODES;
878 break;
73a2c60a 879
880 case 'M':
881 ClearModNoAuth(cp);
882 changes |= MODECHANGE_MODES;
883 break;
884
885 case 'T':
886 ClearSingleTarg(cp);
887 changes |= MODECHANGE_MODES;
888 break;
c86edd1d
Q
889
890 case 'b':
891 clearallbans(cp);
892 changes |= MODECHANGE_BANS;
893 break;
894
895 case 'k':
896 /* This is all safe even if there is no key atm */
897 freesstring(cp->key);
898 cp->key=NULL;
899 ClearKey(cp);
900 changes |= MODECHANGE_MODES;
901 break;
902
903 case 'l':
904 cp->limit=0;
905 ClearLimit(cp);
906 changes |= MODECHANGE_MODES;
907 break;
908 }
909 }
910
911 if (usermask) {
912 /* We have to strip something off each user */
913 for (i=0;i<cp->users->hashsize;i++) {
914 if (cp->users->content[i]!=nouser && (cp->users->content[i] & usermask)) {
915 /* This user exists and has at least one of the modes we're clearing */
916 if ((target=getnickbynumeric(cp->users->content[i]))==NULL) {
917 /* This really is a fuckup, we found them on the channel but there isn't a user with that numeric */
918 /* This means there's a serious bug in the nick/channel tracking code */
919 Error("channel",ERR_ERROR,"CLEARMODE failed: user on channel who doesn't exist?");
920 } else {
921 harg[2]=target;
922 /* Yes, these are deliberate three way bitwise ANDs.. */
923 if (cp->users->content[i] & usermask & CUMODE_OP)
924 triggerhook(HOOK_CHANNEL_DEOPPED, harg);
925 if (cp->users->content[i] & usermask & CUMODE_VOICE)
926 triggerhook(HOOK_CHANNEL_DEVOICED, harg);
927 cp->users->content[i] &= ~usermask;
928 }
929 }
930 }
931 }
932
c3db6f7e 933 harg[2]=(void *)((long)changes);
c86edd1d
Q
934 triggerhook(HOOK_CHANNEL_MODECHANGE, harg);
935 return CMD_OK;
936}
f2b36aa8
CP
937
938void handlewhoischannels(int hooknum, void *arg) {
e40b9754 939 channel **chans;
f2b36aa8 940 char buffer[1024];
e40b9754 941 unsigned int bufpos;
942 sstring *name;
943 unsigned long *num;
f2b36aa8 944 int i;
a7697869 945 char **args = (char **)arg;
946 nick *sender = (nick *)args[0]; /* sender nick */
947 nick *target = (nick *)args[1]; /* target nick */
948 char *sourcenum = args[2]; /* source numeric */
949
950 /* do not show channels for +k service clients or IRC Operators
951 * do not show channels for +n users
952 * unless they whois themselves
953 */
954 if ((IsService(target) || IsHideChan(target)) && sender != target)
f2b36aa8
CP
955 return;
956
957 chans = (channel **)(target->channels->content);
958
959 buffer[0] = '\0';
e40b9754 960 bufpos=0;
961
f2b36aa8 962 /* Not handling delayed joins. */
bfae7e88 963 for(i=target->channels->cursi-1;i>=0;i--) {
e40b9754 964 /* Secret / Private channels: only show if the sender is on the channel as well */
965 if(IsSecret(chans[i]) || IsPrivate(chans[i])) {
966 if (!getnumerichandlefromchanhash(chans[i]->users, sender->numeric))
f2b36aa8
CP
967 continue;
968 }
e40b9754 969
f2b36aa8 970 name = chans[i]->index->name;
e40b9754 971 if (bufpos + name->length > 508) { /* why 508? - need room for -@#channame\0 + 1 slack */
f2b36aa8
CP
972 irc_send("%s", buffer);
973 buffer[0] = '\0';
e40b9754 974 bufpos=0;
f2b36aa8
CP
975 }
976
7bec4aeb 977 /*
978 * 319 RPL_WHOISCHANNELS "source 319 target nick :channels"
979 * "irc.netsplit.net 319 foobar barfoo :@#chan1 +#chan2 #chan3"
980 * "irc.netsplit.net 319 foobar barfoo :-@#chan1 -+#chan2 -#chan3"
981 */
f2b36aa8 982 if(buffer[0] == '\0')
a7697869 983 bufpos=snprintf(buffer, sizeof(buffer), "%s 319 %s %s :", getmynumeric(), sourcenum, target->nick);
f2b36aa8
CP
984
985 num = getnumerichandlefromchanhash(chans[i]->users, target->numeric);
e40b9754 986
987 /* Adding these flags might make the string "unsafe" (without terminating \0). */
988 /* sprintf'ing the channel name afterwards is guaranteed to fix it though */
989 if (IsDeaf(target))
990 buffer[bufpos++]='-';
f2b36aa8 991 if (*num & CUMODE_OP)
e40b9754 992 buffer[bufpos++]='@';
f2b36aa8 993 else if (*num & CUMODE_VOICE)
e40b9754 994 buffer[bufpos++]='+';
f2b36aa8 995
e40b9754 996 bufpos += sprintf(buffer+bufpos, "%s ",name->content);
f2b36aa8
CP
997 }
998
999 if (buffer[0] != '\0')
1000 irc_send("%s", buffer);
1001}
1002