]> jfr.im git - irc/quakenet/newserv.git/blob - chanserv/chanservuser.c
Clearup some uninitialised variables.
[irc/quakenet/newserv.git] / chanserv / chanservuser.c
1 /*
2 * chanservuser.c:
3 * This file maintains the functions associated with the
4 * user on the network relating to the channel service
5 */
6
7 #include "chanserv.h"
8
9 #include "../core/hooks.h"
10 #include "../core/schedule.h"
11 #include "../core/config.h"
12 #include "../localuser/localuser.h"
13 #include "../localuser/localuserchannel.h"
14 #include "../irc/irc_config.h"
15 #include "../lib/sstring.h"
16 #include "../nick/nick.h"
17 #include "../parser/parser.h"
18 #include "../lib/splitline.h"
19 #include "../lib/irc_string.h"
20
21 #include <string.h>
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <stdlib.h>
25
26 nick *chanservnick;
27 CommandTree *cscommands;
28 CommandTree *csctcpcommands;
29
30 /* Local prototypes */
31 void chanservuserhandler(nick *target, int message, void **params);
32
33 void chanservreguser(void *arg) {
34 sstring *csnick,*csuser,*cshost,*csrealname,*csaccount;
35 chanindex *cip;
36 regchan *rcp;
37 int i;
38
39 csnick=getcopyconfigitem("chanserv","nick","Q",NICKLEN);
40 csuser=getcopyconfigitem("chanserv","user","TheQBot",USERLEN);
41 cshost=getcopyconfigitem("chanserv","host","some.host",HOSTLEN);
42 csrealname=getcopyconfigitem("chanserv","realname","ChannelService",REALLEN);
43 csaccount=getcopyconfigitem("chanserv","account",csnick&&csnick->content&&csnick->content[0]?csnick->content:"Q",ACCOUNTLEN);
44
45 Error("chanserv",ERR_INFO,"Connecting %s...",csnick->content);
46
47 chanservnick=registerlocaluser(csnick->content,csuser->content,cshost->content,
48 csrealname->content,csaccount->content,
49 UMODE_INV|UMODE_SERVICE|UMODE_DEAF|UMODE_OPER|UMODE_ACCOUNT,
50 &chanservuserhandler);
51
52 freesstring(csnick);
53 freesstring(csuser);
54 freesstring(cshost);
55 freesstring(csrealname);
56 freesstring(csaccount);
57
58 /* Now join channels */
59 for (i=0;i<CHANNELHASHSIZE;i++) {
60 for (cip=chantable[i];cip;cip=cip->next) {
61 if (cip->channel && (rcp=cip->exts[chanservext]) && !CIsSuspended(rcp)) {
62 /* This will do timestamp faffing even if it won't actually join */
63 chanservjoinchan(cip->channel);
64 /* Do a check at some future time.. */
65 cs_schedupdate(cip, 1, 5);
66 rcp->status |= (QCSTAT_OPCHECK | QCSTAT_MODECHECK | QCSTAT_BANCHECK);
67 if (CIsForceTopic(rcp) || CIsTopicSave(rcp))
68 localsettopic(chanservnick, cip->channel, (rcp->topic) ? rcp->topic->content : "");
69 }
70 }
71 }
72
73 Error("chanserv",ERR_INFO,"Loaded and joined channels.");
74
75 if (chanserv_init_status == CS_INIT_NOUSER) {
76 /* If this is the first time, perform last init tasks */
77 chanserv_finalinit();
78 }
79 }
80
81 void chanservuserhandler(nick *target, int message, void **params) {
82 nick *sender;
83 char *msg;
84 Command *cmd;
85 char *cargv[30];
86 int cargc;
87 reguser *rup;
88 char *chp;
89
90 switch(message) {
91 case LU_KILLED:
92 scheduleoneshot(time(NULL),&chanservreguser,NULL);
93 chanservnick=NULL;
94 break;
95
96 case LU_PRIVMSG:
97 case LU_SECUREMSG:
98 sender=(nick *)params[0];
99 msg=(char *)params[1];
100
101 if (!(cargc=splitline(msg,cargv,30,0)))
102 return; /* Ignore blank lines */
103
104 if (cargv[0][0]==1) {
105 /* CTCP */
106 for (chp=cargv[0]+1;*chp;chp++) {
107 if (*chp=='\001') {
108 *chp='\0';
109 break;
110 }
111 }
112 cmd=findcommandintree(csctcpcommands, cargv[0]+1, 1);
113 if (cmd) {
114 rejoinline(cargv[1],cargc-1);
115 cmd->handler((void *)sender, cargc-1, &(cargv[1]));
116 }
117 } else {
118 cmd=findcommandintree(cscommands, cargv[0], 1);
119
120 if (!cmd) {
121 chanservstdmessage(sender, QM_UNKNOWNCMD, cargv[0]);
122 break;
123 }
124
125 if ((cmd->level & QCMD_SECURE) && (message != LU_SECUREMSG)) {
126 chanservstdmessage(sender, QM_SECUREONLY, cargv[0], chanservnick->nick, myserver->content);
127 break;
128 }
129
130 if ((cmd->level & QCMD_AUTHED)) {
131 if (!(rup=getreguserfromnick(sender))) {
132 chanservstdmessage(sender, QM_AUTHEDONLY, cargv[0]);
133 break;
134 }
135 if (UIsSuspended(rup) || (rup->status & QUSTAT_DEAD)) {
136 chanservstdmessage(sender, QM_BADAUTH, cargv[0]);
137 break;
138 }
139 }
140
141 if ((cmd->level & QCMD_NOTAUTHED) && (getreguserfromnick(sender))) {
142 chanservstdmessage(sender, QM_UNAUTHEDONLY, cargv[0]);
143 break;
144 }
145
146 if ((cmd->level & QCMD_HELPER) &&
147 (!(rup=getreguserfromnick(sender)) || !UHasHelperPriv(rup))) {
148 chanservstdmessage(sender, QM_NOACCESS, cargv[0]);
149 break;
150 }
151
152 if ((cmd->level & QCMD_OPER) &&
153 (!IsOper(sender) || !(rup=getreguserfromnick(sender)) || !UHasOperPriv(rup))) {
154 chanservstdmessage(sender, QM_NOACCESS, cargv[0]);
155 break;
156 }
157
158 if ((cmd->level & QCMD_ADMIN) &&
159 (!IsOper(sender) || !(rup=getreguserfromnick(sender)) || !UHasAdminPriv(rup))) {
160 chanservstdmessage(sender, QM_NOACCESS, cargv[0]);
161 break;
162 }
163
164 if ((cmd->level & QCMD_DEV) &&
165 (!IsOper(sender) || !(rup=getreguserfromnick(sender)) || !UIsDev(rup))) {
166 chanservstdmessage(sender, QM_NOACCESS, cargv[0]);
167 break;
168 }
169
170 if (cmd->maxparams < (cargc-1)) {
171 rejoinline(cargv[cmd->maxparams],cargc-(cmd->maxparams));
172 cargc=(cmd->maxparams)+1;
173 }
174
175 cmd->handler((void *)sender, cargc-1, &(cargv[1]));
176 }
177 break;
178
179 default:
180 break;
181 }
182 }
183
184 void chanservcommandinit() {
185 cscommands=newcommandtree();
186 csctcpcommands=newcommandtree();
187 }
188
189 void chanservcommandclose() {
190 destroycommandtree(cscommands);
191 destroycommandtree(csctcpcommands);
192 }
193
194 void chanservaddcommand(char *command, int flags, int maxparams, CommandHandler handler, char *description, const char *help) {
195 Command *newcmd;
196 cmdsummary *summary;
197
198 newcmd=addcommandtotree(cscommands, command, flags, maxparams, handler);
199 /* Allocate a summary record to put the description in */
200 summary=(cmdsummary *)malloc(sizeof(cmdsummary));
201 memset((void *)summary,0,sizeof(cmdsummary));
202
203 summary->def=getsstring(description, 250);
204 summary->defhelp=(char *)help; /* Assume that help is a constant */
205
206 newcmd->ext=(void *)summary;
207 loadcommandsummary(newcmd);
208 }
209
210 void chanservaddctcpcommand(char *command, CommandHandler handler) {
211 addcommandtotree(csctcpcommands, command, 0, 1, handler);
212 }
213
214 void chanservremovectcpcommand(char *command, CommandHandler handler) {
215 deletecommandfromtree(csctcpcommands, command, handler);
216 }
217
218 void chanservremovecommand(char *command, CommandHandler handler) {
219 Command *cmd;
220 cmdsummary *summary;
221 int i;
222
223 if (!(cmd=findcommandintree(cscommands, command, 1))) {
224 Error("chanserv",ERR_WARNING,"Tried to unregister unknown command %s",command);
225 return;
226 }
227
228 summary=(cmdsummary *)cmd->ext;
229 freesstring(summary->def);
230 for (i=0;i<MAXLANG;i++) {
231 if (summary->bylang[i])
232 freesstring(summary->bylang[i]);
233 }
234
235 free(summary);
236
237 deletecommandfromtree(cscommands, command, handler);
238 }
239
240 void chanservjoinchan(channel *cp) {
241 regchan *rcp;
242 unsigned int i;
243 nick *np;
244 reguser *rup;
245 regchanuser *rcup;
246 flag_t themodes = 0;
247
248 /* Skip unregistered channels */
249 if (!(rcp=cp->index->exts[chanservext]))
250 return;
251
252 /* Check for a new timestamp. But don't do anything stupid if the incoming timestamp is 0 */
253 if (cp->timestamp && ((!rcp->ltimestamp) || (cp->timestamp < rcp->ltimestamp))) {
254 rcp->ltimestamp=cp->timestamp;
255 csdb_updatechanneltimestamp(rcp);
256 }
257
258 /* We won't be doing any joining or parting if we're not online */
259 if (!chanservnick)
260 return;
261
262 if ((CIsSuspended(rcp) || !CIsJoined(rcp)) && getnumerichandlefromchanhash(cp->users, chanservnick->numeric)) {
263 if(rcp->suspendreason) {
264 localpartchannel(chanservnick, cp, rcp->suspendreason->content);
265 } else {
266 localpartchannel(chanservnick, cp, NULL);
267 }
268 }
269
270 /* Right, we are definately going to either join the channel or at least
271 * burst some modes onto it.
272 *
273 * We will try and burst our view of the world; if the timestamps are
274 * actually equal this will be mostly ignored and we will have to fix it
275 * up later. For modes we use the forced modes, plus the default channel
276 * modes (unless any of those are explicitly denied) */
277
278 /* By default, we set the forcemodes and the default modes, but never denymodes..
279 * OK, actually we should only set the default modes if our timestamp is older.*/
280 if (cp->timestamp > rcp->ltimestamp)
281 themodes |= CHANMODE_DEFAULT;
282 else
283 themodes=0;
284
285 themodes = (themodes | rcp->forcemodes) & ~rcp->denymodes;
286
287 /* Now, if someone has just created a channel and we are going to set +i
288 * or +k on it, this will kick them off. This could be construed as a
289 * bit rude if it's their channel, so if there is only one person on the
290 * channel and they have a right to be there, burst with default modes
291 * only to avoid them being netrider kicked.
292 */
293 if (cp->users->totalusers==1) {
294 for (i=0;i<cp->users->hashsize;i++) {
295 if (cp->users->content[i] != nouser) {
296 if ((np=getnickbynumeric(cp->users->content[i]&CU_NUMERICMASK)) &&
297 (rup=getreguserfromnick(np)) &&
298 (rcup=findreguseronchannel(rcp,rup)) &&
299 CUKnown(rcup)) {
300 /* OK, there was one user, and they are known on this channel.
301 * Don't burst with +i or +k */
302 themodes &= ~(CHANMODE_INVITEONLY | CHANMODE_KEY);
303 }
304 }
305 }
306 }
307
308 /* We should be on the channel - join with our nick */
309 if (!CIsSuspended(rcp) && CIsJoined(rcp) && !getnumerichandlefromchanhash(cp->users, chanservnick->numeric)) {
310 /* If we pass the key parameter here but are not setting +k (see above)
311 * then localburstontochannel() will ignore the key */
312 localburstontochannel(cp, chanservnick, rcp->ltimestamp, themodes,
313 rcp->limit, (rcp->key)?rcp->key->content:NULL);
314 }
315
316 /* We're not joining the channel - send the burst with no nick */
317 if (!CIsSuspended(rcp) && !CIsJoined(rcp) && (cp->timestamp > rcp->ltimestamp)) {
318 localburstontochannel(cp, NULL, rcp->ltimestamp, themodes,
319 rcp->limit, (rcp->key)?rcp->key->content:NULL);
320 }
321 }
322
323 void chanservstdmessage(nick *np, int messageid, ... ) {
324 char buf[5010];
325 char buf2[512];
326 int notice;
327 reguser *rup;
328 int language;
329 va_list va, va2;
330 char *message, *messageargs;
331 char *bp2,*bp;
332 int len;
333
334 if (getreguserfromnick(np) == NULL) {
335 notice=1;
336 language=0;
337 } else {
338 rup=getreguserfromnick(np);
339 if(UIsNotice(rup)) {
340 notice=1;
341 } else {
342 notice=0;
343 }
344 language=rup->languageid;
345 }
346
347 if (csmessages[language][messageid]) {
348 message=csmessages[language][messageid]->content;
349 } else if (csmessages[0][messageid]) {
350 message=csmessages[0][messageid]->content;
351 } else {
352 message=defaultmessages[messageid*2];
353 }
354
355 messageargs=defaultmessages[messageid*2+1];
356
357 va_start(va,messageid);
358 va_copy(va2, va);
359 q9vsnprintf(buf,5000,message,messageargs,va);
360 va_end(va);
361
362 len=0;
363 bp2=buf2;
364 for (bp=buf; ;bp++) {
365 /* We send something if we hit a \n, fill the buffer or run out of source */
366 if (*bp=='\n' || len>490 || !*bp) {
367 if (*bp && *bp!='\n') {
368 bp--;
369 }
370
371 *bp2='\0';
372
373 if (chanservnick && *buf2) {
374 if (notice) {
375 sendnoticetouser(chanservnick,np,"%s",buf2);
376 } else {
377 sendmessagetouser(chanservnick,np,"%s",buf2);
378 }
379 }
380
381 /* If we ran out of buffer, get out here */
382 if (!*bp)
383 break;
384
385 bp2=buf2;
386 len=0;
387 } else {
388 len++;
389 *bp2++=*bp;
390 }
391 }
392
393 /* Special case: If it's a "not enough parameters" message, show the first line of help */
394 if (messageid==QM_NOTENOUGHPARAMS) {
395 char *command=va_arg(va2, char *);
396 cs_sendhelp(np, command, 1);
397 chanservstdmessage(np, QM_TYPEHELPFORHELP, command);
398 }
399
400 va_end(va2);
401 }
402
403 void chanservsendmessage_real(nick *np, int oneline, char *message, ... ) {
404 char buf[5010]; /* Very large buffer.. */
405 char buf2[512], *bp, *bp2;
406 int notice;
407 int len;
408 reguser *rup;
409
410 va_list va;
411
412 va_start(va,message);
413 vsnprintf(buf,5000,message,va);
414 va_end(va);
415
416 if (getreguserfromnick(np) == NULL) {
417 notice=1;
418 } else {
419 rup=getreguserfromnick(np);
420 if(UIsNotice(rup)) {
421 notice=1;
422 } else {
423 notice=0;
424 }
425 }
426
427 len=0;
428 bp2=buf2;
429 for (bp=buf; ;bp++) {
430 /* We send something if we hit a \n, fill the buffer or run out of source */
431 if (*bp=='\n' || len>490 || !*bp) {
432 if (*bp && *bp!='\n') {
433 bp--;
434 }
435
436 *bp2='\0';
437
438 if (chanservnick && *buf2) {
439 if (notice) {
440 sendnoticetouser(chanservnick,np,"%s",buf2);
441 } else {
442 sendmessagetouser(chanservnick,np,"%s",buf2);
443 }
444 }
445
446 /* If we ran out of buffer, get out here */
447 if (!*bp || (*bp=='\n' && oneline))
448 break;
449
450 bp2=buf2;
451 len=0;
452 } else {
453 len++;
454 *bp2++=*bp;
455 }
456 }
457 }
458
459 void chanservwallmessage(char *message, ... ) {
460 char buf[5010]; /* Very large buffer.. */
461 va_list va;
462 nick *np;
463 unsigned int i=0;
464
465 va_start(va,message);
466 vsnprintf(buf,5000,message,va);
467 va_end(va);
468
469 /* Scan for users */
470 for (i=0;i<NICKHASHSIZE;i++)
471 for (np=nicktable[i];np;np=np->next)
472 if (IsOper(np))
473 chanservsendmessage(np, "%s", buf);
474 }
475
476 void chanservkillstdmessage(nick *target, int messageid, ... ) {
477 char buf[512];
478 int language;
479 char *message, *messageargs;
480 va_list va;
481 reguser *rup;
482
483 if (!(rup=getreguserfromnick(target)))
484 language=0;
485 else
486 language=rup->languageid;
487
488 if (csmessages[language][messageid])
489 message=csmessages[language][messageid]->content;
490 else if (csmessages[0][messageid])
491 message=csmessages[0][messageid]->content;
492 else
493 message=defaultmessages[messageid*2];
494
495 messageargs=defaultmessages[messageid*2+1];
496 va_start(va, messageid);
497 q9vsnprintf(buf, 511, message, messageargs, va);
498 va_end(va);
499 killuser(chanservnick, target, buf);
500 }
501
502 int checkpassword(reguser *rup, const char *pass) {
503 if (!strncmp(rup->password, pass, PASSLEN))
504 return 1;
505 return 0;
506 }
507
508 int checkresponse(reguser *rup, const unsigned char *entropy, const char *response, CRAlgorithm algorithm) {
509 char usernamel[NICKLEN+1], *dp, *up;
510
511 for(up=rup->username,dp=usernamel;*up;)
512 *dp++ = ToLower(*up++);
513 *dp = '\0';
514
515 return algorithm(usernamel, rup->password, cs_calcchallenge(entropy), response);
516 }
517
518 int checkhashpass(reguser *rup, const char *junk, const char *hash) {
519 char usernamel[NICKLEN+1], *dp, *up;
520
521 for(up=rup->username,dp=usernamel;*up;)
522 *dp++ = ToLower(*up++);
523 *dp = '\0';
524
525 return cs_checkhashpass(usernamel, rup->password, junk, hash);
526 }
527
528 int setpassword(reguser *rup, const char *pass) {
529 strncpy(rup->password, pass, PASSLEN);
530 rup->password[PASSLEN]='\0';
531 return 1;
532 }
533
534 void cs_checknick(nick *np) {
535 activeuser* aup;
536 reguser *rup;
537 char userhost[USERLEN+HOSTLEN+3];
538
539 if (!(aup=getactiveuserfromnick(np))) {
540 aup=getactiveuser();
541 np->exts[chanservnext]=aup;
542 }
543
544 assert(getactiveuserfromnick(np));
545
546 if (IsAccount(np) && np->auth) {
547 if (np->auth->exts[chanservaext]) {
548 rup=getreguserfromnick(np);
549 /* safe? */
550 if(rup && UHasSuspension(rup)) {
551 chanservkillstdmessage(np, QM_SUSPENDKILL);
552 return;
553 }
554 cs_doallautomodes(np);
555 } else {
556 /* Auto create user.. */
557 rup=getreguser();
558 rup->status=0;
559 rup->ID=np->auth->userid;
560 if (rup->ID > lastuserID)
561 lastuserID=rup->ID;
562 strncpy(rup->username,np->authname,NICKLEN); rup->username[NICKLEN]='\0';
563 rup->created=time(NULL);
564 rup->lastauth=0;
565 rup->lastemailchange=0;
566 rup->flags=QUFLAG_NOTICE;
567 rup->languageid=0;
568 rup->suspendby=0;
569 rup->suspendexp=0;
570 rup->suspendtime=0;
571 rup->lockuntil=0;
572 rup->password[0]='\0';
573 rup->email=NULL;
574 rup->lastemail=NULL;
575 rup->localpart=NULL;
576 rup->domain=NULL;
577 rup->info=NULL;
578 sprintf(userhost,"%s@%s",np->ident,np->host->name->content);
579 rup->lastuserhost=getsstring(userhost,USERLEN+HOSTLEN+1);
580 rup->suspendreason=NULL;
581 rup->comment=NULL;
582 rup->knownon=NULL;
583 rup->checkshd=NULL;
584 rup->stealcount=0;
585 rup->fakeuser=NULL;
586 addregusertohash(rup);
587
588 csdb_createuser(rup);
589 }
590 }
591
592 cs_checknickbans(np);
593 }
594
595 void cs_checkchanmodes(channel *cp) {
596 modechanges changes;
597
598 localsetmodeinit (&changes, cp, chanservnick);
599 cs_docheckchanmodes(cp, &changes);
600 localsetmodeflush (&changes, 1);
601 }
602
603 void cs_docheckchanmodes(channel *cp, modechanges *changes) {
604 regchan *rcp;
605
606 if (!cp)
607 return;
608
609 if ((rcp=cp->index->exts[chanservext])==NULL || CIsSuspended(rcp))
610 return;
611
612 /* Take care of the simple modes */
613 localdosetmode_simple(changes, rcp->forcemodes & ~(cp->flags), rcp->denymodes & cp->flags);
614
615 /* Check for forced key. Note that we ALWAYS call localdosetmode_key
616 * in case the wrong key is set atm */
617 if (rcp->forcemodes & CHANMODE_KEY) {
618 if (!rcp->key) {
619 Error("chanserv",ERR_WARNING,"Key forced but no key specified for %s: cleared forcemode.",rcp->index->name->content);
620 rcp->forcemodes &= ~CHANMODE_KEY;
621 csdb_updatechannel(rcp);
622 } else {
623 localdosetmode_key(changes, rcp->key->content, MCB_ADD);
624 }
625 }
626
627 /* Check for denied key */
628 if ((rcp->denymodes & CHANMODE_KEY) && IsKey(cp)) {
629 localdosetmode_key(changes, NULL, MCB_DEL);
630 }
631
632 /* Check for forced limit. Always call in case of wrong limit */
633 if (rcp->forcemodes & CHANMODE_LIMIT) {
634 localdosetmode_limit(changes, rcp->limit, MCB_ADD);
635 }
636 }
637
638 void cs_docheckopvoice(channel *cp, modechanges *changes) {
639 regchan *rcp;
640 reguser *rup;
641 regchanuser *rcup;
642 nick *np;
643 int i;
644
645 if (!cp)
646 return;
647
648 if ((rcp=cp->index->exts[chanservext])==NULL || CIsSuspended(rcp))
649 return;
650
651 for (i=0;i<cp->users->hashsize;i++) {
652 if (cp->users->content[i]==nouser)
653 continue;
654
655 if ((np=getnickbynumeric(cp->users->content[i]))==NULL) {
656 Error("chanserv",ERR_ERROR,"Found non-existent numeric %d on channel %s",cp->users->content[i],
657 cp->index->name->content);
658 continue;
659 }
660
661 if ((rup=getreguserfromnick(np)))
662 rcup=findreguseronchannel(rcp,rup);
663 else
664 rcup=NULL;
665
666 if (rcup && CUIsBanned(rcup) && !IsService(np)) {
667 cs_banuser(changes, cp->index, np, NULL);
668 continue;
669 }
670
671 if (!IsService(np) && CIsKnownOnly(rcp) && !(rcup && CUKnown(rcup))) {
672 cs_banuser(changes, cp->index, np, "Authorised users only.");
673 continue;
674 }
675
676 if ((cp->users->content[i] & CUMODE_OP) && !IsService(np)) {
677 if ((CIsBitch(rcp) && (!rcup || !CUHasOpPriv(rcup))) ||
678 (rcup && CUIsDeny(rcup)))
679 localdosetmode_nick(changes, np, MC_DEOP);
680 } else {
681 if (rcup && (CUIsProtect(rcup) || CIsProtect(rcp)) && CUIsOp(rcup) && !CUIsDeny(rcup)) {
682 localdosetmode_nick(changes, np, MC_OP);
683 cs_logchanop(rcp, np->nick, rcup->user);
684 }
685 }
686
687 if (cp->users->content[i] & CUMODE_VOICE) {
688 if (rcup && CUIsQuiet(rcup))
689 localdosetmode_nick(changes, np, MC_DEVOICE);
690 } else {
691 if (rcup && (CUIsProtect(rcup) || CIsProtect(rcp)) && CUIsVoice(rcup) && !CUIsQuiet(rcup) && !(cp->users->content[i] & CUMODE_OP))
692 localdosetmode_nick(changes, np, MC_VOICE);
693 }
694 }
695 }
696
697 void cs_doallautomodes(nick *np) {
698 reguser *rup;
699 regchanuser *rcup;
700 unsigned long *lp;
701 modechanges changes;
702
703 if (!(rup=getreguserfromnick(np)))
704 return;
705
706 for (rcup=rup->knownon;rcup;rcup=rcup->nextbyuser) {
707 if (rcup->chan->index->channel) {
708 /* Channel exists */
709 if ((lp=getnumerichandlefromchanhash(rcup->chan->index->channel->users, np->numeric))) {
710 /* User is on channel.. */
711
712 /* Update last use time */
713 rcup->usetime=getnettime();
714
715 localsetmodeinit(&changes, rcup->chan->index->channel, chanservnick);
716 if (*lp & CUMODE_OP) {
717 if (!IsService(np) && (CUIsDeny(rcup) || (CIsBitch(rcup->chan) && !CUHasOpPriv(rcup))))
718 localdosetmode_nick(&changes, np, MC_DEOP);
719 } else {
720 if (!CUIsDeny(rcup) && CUIsOp(rcup) &&
721 (CUIsProtect(rcup) || CIsProtect(rcup->chan) || CUIsAutoOp(rcup))) {
722 localdosetmode_nick(&changes, np, MC_OP);
723 cs_logchanop(rcup->chan, np->nick, rup);
724 }
725 }
726
727 if (*lp & CUMODE_VOICE) {
728 if (CUIsQuiet(rcup))
729 localdosetmode_nick(&changes, np, MC_DEVOICE);
730 } else {
731 if (!CUIsQuiet(rcup) && CUIsVoice(rcup) && !(*lp & CUMODE_OP) &&
732 (CUIsProtect(rcup) || CIsProtect(rcup->chan) || CUIsAutoVoice(rcup)))
733 localdosetmode_nick(&changes, np, MC_VOICE);
734 }
735 localsetmodeflush(&changes, 1);
736 } else {
737 /* Channel exists but user is not joined: invite if they are +j-b */
738 if (CUIsAutoInvite(rcup) && CUKnown(rcup) && !CUIsBanned(rcup)) {
739 localinvite(chanservnick, rcup->chan->index->channel, np);
740 }
741 }
742 }
743 }
744 }
745
746 void cs_checknickbans(nick *np) {
747 channel **ca;
748 regchan *rcp;
749 int i,j;
750
751 if (IsService(np))
752 return;
753
754 /* Avoid races: memcpy the channel array */
755 i=np->channels->cursi;
756 ca=(channel **)malloc(i*sizeof(channel *));
757 memcpy(ca, np->channels->content,i*sizeof(channel *));
758
759 for (j=0;j<i;j++) {
760 if ((rcp=ca[j]->index->exts[chanservext]) && !CIsSuspended(rcp) &&
761 CIsEnforce(rcp) && nickbanned(np, ca[j]))
762 localkickuser(chanservnick, ca[j], np, "Banned.");
763 }
764
765 free(ca);
766 }
767
768 void cs_checkbans(channel *cp) {
769 regchan *rcp;
770 int i;
771 nick *np;
772 chanban *cbp;
773 regban *rbp;
774 time_t now;
775 modechanges changes;
776
777 if (!cp)
778 return;
779
780 if ((rcp=cp->index->exts[chanservext])==NULL || CIsSuspended(rcp))
781 return;
782
783 now=time(NULL);
784
785 localsetmodeinit(&changes, cp, chanservnick);
786
787 for (i=0;i<cp->users->hashsize;i++) {
788 if (cp->users->content[i]==nouser)
789 continue;
790
791 if ((np=getnickbynumeric(cp->users->content[i]))==NULL) {
792 Error("chanserv",ERR_ERROR,"Found numeric %d on channel %s who doesn't exist.",
793 cp->users->content[i], cp->index->name->content);
794 continue;
795 }
796
797 if (IsService(np))
798 continue;
799
800 for (rbp=rcp->bans;rbp;rbp=rbp->next) {
801 if (((!rbp->expiry) || (rbp->expiry <= now)) &&
802 nickmatchban(np, rbp->cbp)) {
803 if (!nickbanned(np, cp)) {
804 localdosetmode_ban(&changes, bantostring(rbp->cbp), MCB_ADD);
805 }
806 localkickuser(chanservnick,cp,np,rbp->reason?rbp->reason->content:"Banned.");
807 break;
808 }
809 }
810
811 if (rbp) /* If we broke out of above loop (due to kick) rbp will be set.. */
812 continue;
813
814 if (CIsEnforce(rcp)) {
815 for (cbp=cp->bans;cbp;cbp=cbp->next) {
816 if ((cbp->timeset>=rcp->lastbancheck) && nickmatchban(np, cbp))
817 localkickuser(chanservnick,cp,np,"Banned.");
818 }
819 rcp->lastbancheck=time(NULL);
820 }
821 }
822
823 localsetmodeflush(&changes,1);
824 }
825
826 /*
827 * cs_schedupdate:
828 * This function schedules an update check on a channel
829 */
830 void cs_schedupdate(chanindex *cip, int mintime, int maxtime) {
831 int delay=mintime+(rand()%(maxtime-mintime));
832 regchan *rcp;
833
834 if (!(rcp=cip->exts[chanservext]) || CIsSuspended(rcp))
835 return;
836
837 if (rcp->checksched) {
838 deleteschedule(rcp->checksched, cs_timerfunc, cip);
839 }
840
841 rcp->checksched=scheduleoneshot(time(NULL)+delay, cs_timerfunc, cip);
842 }
843
844 /*
845 * cs_timerfunc:
846 * This function does several things:
847 * * Updates auto-limit and/or removes bans as necessary
848 * * Schedules the next timed call
849 * * Does any pending op/ban/mode checks
850 * It is safe to use either as a target for a schedule() call, or to call
851 * directly when parameters change (e.g. autolimit settings or ban expire
852 * timers).
853 * To force a limit update, set rcp->limit to 0..
854 */
855
856 void cs_timerfunc(void *arg) {
857 chanindex *cip=arg;
858 channel *cp=cip->channel;
859 regchan *rcp;
860 chanban *cbp, *ncbp;
861 regban **rbh, *rbp;
862 time_t nextsched=0;
863 time_t now=time(NULL);
864 modechanges changes;
865
866 if (!(rcp=cip->exts[chanservext]))
867 return;
868
869 verifyregchan(rcp);
870
871 /* Always nullify the checksched even if the channel is suspended.. */
872 if (rcp->checksched) {
873 deleteschedule(rcp->checksched, cs_timerfunc, arg);
874 rcp->checksched=NULL;
875 }
876
877 if (!cp || CIsSuspended(rcp))
878 return;
879
880 /* Check if we need to leave the channel first */
881 if (chanservnick && CIsJoined(rcp) && cip->channel &&
882 cip->channel->users->totalusers==1 &&
883 getnumerichandlefromchanhash(cip->channel->users, chanservnick->numeric)) {
884
885 /* Only chanserv left in this channel */
886 if (now >= (rcp->lastpart + LINGERTIME)) {
887 /* Time to go */
888 localpartchannel(chanservnick, cip->channel, "Empty Channel");
889 return;
890 } else {
891 if (!nextsched || nextsched > (rcp->lastpart + LINGERTIME))
892 nextsched=rcp->lastpart+LINGERTIME;
893 }
894 }
895
896 localsetmodeinit(&changes, cp, chanservnick);
897
898 if (CIsAutoLimit(rcp)) {
899 if (!rcp->limit || rcp->autoupdate <= now) {
900 /* Update limit.. */
901 rcp->limit=cp->users->totalusers+rcp->autolimit;
902 rcp->status |= QCSTAT_MODECHECK;
903
904 /* And set the schedule for the next update */
905 rcp->autoupdate = now + AUTOLIMIT_INTERVAL;
906 }
907
908 if (!nextsched || rcp->autoupdate <= nextsched)
909 nextsched=rcp->autoupdate;
910 }
911
912 if (rcp->status & QCSTAT_OPCHECK) {
913 rcp->status &= ~QCSTAT_OPCHECK;
914 cs_docheckopvoice(cp, &changes);
915 }
916
917 if (rcp->status & QCSTAT_MODECHECK) {
918 rcp->status &= ~QCSTAT_MODECHECK;
919 cs_docheckchanmodes(cp, &changes);
920 }
921
922 if (rcp->status & QCSTAT_BANCHECK) {
923 rcp->status &= ~QCSTAT_BANCHECK;
924 cs_checkbans(cp);
925 }
926
927 /* This ban check is AFTER docheckopvoice in case checkopvoice set a
928 * ban which we need to automatically remove later.. */
929
930 if (rcp->banduration) {
931 for (cbp=cp->bans;cbp;cbp=ncbp) {
932 ncbp=cbp->next;
933 if (cbp->timeset+rcp->banduration<=now) {
934 localdosetmode_ban(&changes, bantostring(cbp), MCB_DEL);
935 } else {
936 if (!nextsched || cbp->timeset+rcp->banduration <= nextsched) {
937 nextsched=rcp->banduration+cbp->timeset;
938 }
939 }
940 }
941 }
942
943 /* Check for expiry of registered bans */
944 if (rcp->bans) {
945 for (rbh=&(rcp->bans);*rbh;) {
946 rbp=*rbh;
947 verifyregchanban(rbp);
948 if (rbp->expiry && (rbp->expiry < now)) {
949 /* Expired ban */
950 /* Remove ban if it's on the channel (localdosetmode_ban will silently
951 * skip bans that don't exist) */
952 localdosetmode_ban(&changes, bantostring(rbp->cbp), MCB_DEL);
953 /* Remove from database */
954 csdb_deleteban(rbp);
955 /* Remove from list */
956 (*rbh)=rbp->next;
957 /* Free ban/string and update setby refcount, and free actual regban */
958 freesstring(rbp->reason);
959 freechanban(rbp->cbp);
960 freeregban(rbp);
961 } else {
962 if (rbp->expiry && (!nextsched || rbp->expiry <= nextsched)) {
963 nextsched=rbp->expiry;
964 }
965 rbh=&(rbp->next);
966 }
967 }
968 }
969
970 if (nextsched)
971 rcp->checksched=scheduleoneshot(nextsched, cs_timerfunc, arg);
972
973 localsetmodeflush(&changes, 1);
974 }
975
976 void cs_removechannel(regchan *rcp) {
977 int i;
978 chanindex *cip;
979 regchanuser *rcup, *nrcup;
980 regban *rbp, *nrbp;
981
982 cip=rcp->index;
983
984 for (i=0;i<REGCHANUSERHASHSIZE;i++) {
985 for (rcup=rcp->regusers[i];rcup;rcup=nrcup) {
986 nrcup=rcup->nextbychan;
987 delreguserfromchannel(rcp, rcup->user);
988 freeregchanuser(rcup);
989 }
990 }
991
992 for (rbp=rcp->bans;rbp;rbp=nrbp) {
993 nrbp=rbp->next;
994 freesstring(rbp->reason);
995 freechanban(rbp->cbp);
996 freeregban(rbp);
997 }
998
999 rcp->bans=NULL;
1000
1001 if (rcp->checksched)
1002 deleteschedule(rcp->checksched, cs_timerfunc, rcp->index);
1003
1004 if (cip->channel) {
1005 rcp->flags=QCFLAG_SUSPENDED;
1006 chanservjoinchan(cip->channel); /* Force off the channel */
1007 }
1008
1009 csdb_deletechannel(rcp);
1010
1011 freesstring(rcp->welcome);
1012 freesstring(rcp->topic);
1013 freesstring(rcp->key);
1014 freesstring(rcp->suspendreason);
1015 freesstring(rcp->comment);
1016
1017 freeregchan(rcp);
1018
1019 cip->exts[chanservext]=NULL;
1020 releasechanindex(cip);
1021 }
1022
1023 /* Sender is who the DELCHAN is attributed to.. */
1024 int cs_removechannelifempty(nick *sender, regchan *rcp) {
1025 unsigned int i;
1026 regchanuser *rcup;
1027
1028 for (i=0;i<REGCHANUSERHASHSIZE;i++) {
1029 for (rcup=rcp->regusers[i];rcup;rcup=rcup->nextbychan) {
1030 if (rcup->flags & ~(QCUFLAGS_PUNISH))
1031 return 0;
1032 }
1033 }
1034
1035 cs_log(sender,"DELCHAN %s (Empty)",rcp->index->name->content);
1036 cs_removechannel(rcp);
1037
1038 return 1;
1039 }
1040
1041 void cs_removeuser(reguser *rup) {
1042 regchanuser *rcup, *nrcup;
1043 regchan *rcp;
1044 struct authname *anp;
1045
1046 /* Remove the user from all its channels */
1047 for (rcup=rup->knownon;rcup;rcup=nrcup) {
1048 nrcup=rcup->nextbyuser;
1049 rcp=rcup->chan;
1050
1051 delreguserfromchannel(rcp, rup);
1052 cs_removechannelifempty(NULL, rcp);
1053 }
1054
1055 if(rup->domain)
1056 delreguserfrommaildomain(rup,rup->domain);
1057 freesstring(rup->localpart);
1058 freesstring(rup->email);
1059 freesstring(rup->lastemail);
1060 freesstring(rup->lastuserhost);
1061 freesstring(rup->suspendreason);
1062 freesstring(rup->comment);
1063 freesstring(rup->info);
1064
1065 csdb_deleteuser(rup);
1066
1067 removereguserfromhash(rup);
1068
1069 if ((anp=findauthname(rup->ID)) && anp->nicks) {
1070 rup->status |= QUSTAT_DEAD;
1071 } else {
1072 freereguser(rup);
1073 }
1074 }
1075
1076 int cs_bancheck(nick *np, channel *cp) {
1077 time_t now=time(NULL);
1078 regban **rbh, *rbp;
1079 modechanges changes;
1080 regchan *rcp;
1081
1082 if (!(rcp=cp->index->exts[chanservext]))
1083 return 0;
1084
1085 for (rbh=&(rcp->bans);*rbh;) {
1086 if ((*rbh)->expiry && ((*rbh)->expiry < now)) {
1087 /* Expired ban */
1088 csdb_deleteban(*rbh);
1089 rbp=*rbh;
1090 (*rbh)=rbp->next;
1091
1092 freesstring(rbp->reason);
1093 freechanban(rbp->cbp);
1094 freeregban(rbp);
1095 } else if (nickmatchban(np,(*rbh)->cbp)) {
1096 /* This user matches this ban.. */
1097 if (!nickbanned(np,cp)) {
1098 /* Only bother putting the ban on the channel if they're not banned already */
1099 /* (might be covered by this ban or a different one.. doesn't really matter */
1100 localsetmodeinit(&changes, cp, chanservnick);
1101 localdosetmode_ban(&changes, bantostring((*rbh)->cbp), MCB_ADD);
1102 localsetmodeflush(&changes, 1);
1103 cs_timerfunc(cp->index);
1104 }
1105 localkickuser(chanservnick, cp, np, (*rbh)->reason ? (*rbh)->reason->content : "Banned.");
1106 return 1;
1107 } else {
1108 rbh=&((*rbh)->next);
1109 }
1110 }
1111
1112 return 0;
1113 }
1114
1115 void cs_setregban(chanindex *cip, regban *rbp) {
1116 modechanges changes;
1117 int i;
1118 nick *np;
1119
1120 if (!cip->channel)
1121 return;
1122
1123 localsetmodeinit(&changes, cip->channel, chanservnick);
1124 localdosetmode_ban(&changes, bantostring(rbp->cbp), MCB_ADD);
1125 localsetmodeflush(&changes, 1);
1126
1127 for (i=0;(cip->channel) && i<cip->channel->users->hashsize;i++) {
1128 if (cip->channel->users->content[i]!=nouser &&
1129 (np=getnickbynumeric(cip->channel->users->content[i])) &&
1130 !IsService(np) &&
1131 nickmatchban(np, rbp->cbp))
1132 localkickuser(chanservnick, cip->channel, np, rbp->reason ? rbp->reason->content : "Banned.");
1133 }
1134
1135 cs_timerfunc(cip);
1136 }
1137
1138 void cs_banuser(modechanges *changes, chanindex *cip, nick *np, const char *reason) {
1139 modechanges lchanges;
1140 char banmask[NICKLEN+USERLEN+HOSTLEN+3];
1141
1142 if (!cip->channel)
1143 return;
1144
1145 if (nickbanned(np, cip->channel)) {
1146 localkickuser(chanservnick, cip->channel, np, reason?reason:"Banned.");
1147 return;
1148 }
1149
1150 if (IsAccount(np)) {
1151 /* Ban their account.. */
1152 sprintf(banmask,"*!*@%s.%s",np->authname,HIS_HIDDENHOST);
1153 } else if (IsSetHost(np)) {
1154 /* sethosted: ban ident@host */
1155 sprintf(banmask,"*!%s@%s",np->shident->content,np->sethost->content);
1156 } else if (np->host->clonecount>3) {
1157 /* >3 clones, ban user@host */
1158 sprintf(banmask,"*!%s@%s",np->ident,np->host->name->content);
1159 } else {
1160 sprintf(banmask,"*!*@%s",np->host->name->content);
1161 }
1162
1163 if (!changes) {
1164 localsetmodeinit(&lchanges, cip->channel, chanservnick);
1165 localdosetmode_ban(&lchanges, banmask, MCB_ADD);
1166 localsetmodeflush(&lchanges, 1);
1167 } else {
1168 localdosetmode_ban(changes, banmask, MCB_ADD);
1169 }
1170
1171 localkickuser(chanservnick, cip->channel, np, reason?reason:"Banned.");
1172 }
1173
1174 /*
1175 * cs_sanitisechanlev: Removes impossible combinations from chanlev flags.
1176 * chanservuser.c is probably not the right file for this, but nowhere better
1177 * presented itself...
1178 */
1179 flag_t cs_sanitisechanlev(flag_t flags) {
1180 /* +m or +n cannot have any "punishment" flags */
1181 if (flags & (QCUFLAG_MASTER | QCUFLAG_OWNER))
1182 flags &= ~(QCUFLAGS_PUNISH);
1183
1184 /* +d can't be +o */
1185 if (flags & QCUFLAG_DENY)
1186 flags &= ~QCUFLAG_OP;
1187
1188 /* +q can't be +v */
1189 if (flags & QCUFLAG_QUIET)
1190 flags &= ~QCUFLAG_VOICE;
1191
1192 /* +p trumps +a and +g */
1193 if (flags & QCUFLAG_PROTECT)
1194 flags &= ~(QCUFLAG_AUTOOP | QCUFLAG_AUTOVOICE);
1195
1196 /* -o can't be +a */
1197 if (!(flags & QCUFLAG_OP))
1198 flags &= ~QCUFLAG_AUTOOP;
1199
1200 /* +a or -v can't be +g. +a implies +o at this stage (see above) */
1201 if (!(flags & QCUFLAG_VOICE) || (flags & QCUFLAG_AUTOOP))
1202 flags &= ~QCUFLAG_AUTOVOICE;
1203
1204 /* +p requires +o or +v */
1205 if (!(flags & (QCUFLAG_VOICE | QCUFLAG_OP)))
1206 flags &= ~QCUFLAG_PROTECT;
1207
1208 /* The personal flags require one of +mnovk, as does +t */
1209 if (!(flags & (QCUFLAG_OWNER | QCUFLAG_MASTER | QCUFLAG_OP | QCUFLAG_VOICE | QCUFLAG_KNOWN)))
1210 flags &= ~(QCUFLAGS_PERSONAL | QCUFLAG_TOPIC);
1211
1212 return flags;
1213 }
1214
1215 /*
1216 * findreguser:
1217 * This function does the standard "nick or #user" lookup.
1218 * If "sender" is not NULL, a suitable error message will
1219 * be sent if the lookup fails.
1220 * "sender" MUST be sent when a user is requesting a lookup
1221 * as there is some policy code here.
1222 */
1223
1224 reguser *findreguser(nick *sender, const char *str) {
1225 reguser *rup, *vrup = getreguserfromnick(sender);;
1226 nick *np;
1227
1228 if (!str || !*str)
1229 return NULL;
1230
1231 if (*str=='#') {
1232 if (str[1]=='\0') {
1233 if (sender)
1234 chanservstdmessage(sender, QM_UNKNOWNUSER, str);
1235 return NULL;
1236 }
1237 if (!(rup=findreguserbynick(str+1)) && sender)
1238 chanservstdmessage(sender, QM_UNKNOWNUSER, str);
1239 } else if (*str=='&' && vrup && UHasHelperPriv(vrup)) {
1240 if (str[1]=='\0') {
1241 if (sender)
1242 chanservstdmessage(sender, QM_UNKNOWNUSER, str);
1243 return NULL;
1244 }
1245 if (!(rup=findreguserbyID(atoi(str+1))) && sender)
1246 chanservstdmessage(sender, QM_UNKNOWNUSER, str);
1247 } else {
1248 if (!(np=getnickbynick(str))) {
1249 if (sender)
1250 chanservstdmessage(sender, QM_UNKNOWNUSER, str);
1251 return NULL;
1252 }
1253 if (!(rup=getreguserfromnick(np)) && sender)
1254 chanservstdmessage(sender, QM_USERNOTAUTHED, str);
1255 }
1256
1257 /* removed the suspended check from here, I don't see the point... */
1258 if (rup && (rup->status & QUSTAT_DEAD)) {
1259 chanservstdmessage(sender, QM_USERHASBADAUTH, rup->username);
1260 return NULL;
1261 }
1262
1263 return rup;
1264 }
1265
1266 /*
1267 * Unbans a mask from a channel, including permbans if user has correct privs.
1268 *
1269 * Return 0 if it works, 1 if it don't.
1270 */
1271 int cs_unbanfn(nick *sender, chanindex *cip, UnbanFN fn, void *arg, int removepermbans, int abortonfailure) {
1272 regban **rbh, *rbp;
1273 chanban **cbh, *cbp;
1274 regchan *rcp;
1275 modechanges changes;
1276 char *banstr;
1277
1278 rcp=cip->exts[chanservext];
1279
1280 if (cip->channel)
1281 localsetmodeinit(&changes, cip->channel, chanservnick);
1282
1283 for (rbh=&(rcp->bans); *rbh; ) {
1284 rbp=*rbh;
1285 if (fn(arg, rbp->cbp)) {
1286 banstr=bantostring(rbp->cbp);
1287 /* Check perms and remove */
1288 if(!removepermbans) {
1289 chanservstdmessage(sender, QM_WARNNOTREMOVEDPERMBAN, banstr, cip->name->content);
1290 rbh=&(rbp->next);
1291 } else if (!cs_checkaccess(sender, NULL, CA_MASTERPRIV, cip, NULL, 0, 1)) {
1292 chanservstdmessage(sender, QM_NOTREMOVEDPERMBAN, banstr, cip->name->content);
1293 if (abortonfailure) return 1; /* Just give up... */
1294 rbh=&(rbp->next);
1295 } else {
1296 chanservstdmessage(sender, QM_REMOVEDPERMBAN, banstr, cip->name->content);
1297 if (cip->channel)
1298 localdosetmode_ban(&changes, banstr, MCB_DEL);
1299 /* Remove from database */
1300 csdb_deleteban(rbp);
1301 /* Remove from list */
1302 (*rbh)=rbp->next;
1303 /* Free ban/string and update setby refcount, and free actual regban */
1304 freesstring(rbp->reason);
1305 freechanban(rbp->cbp);
1306 freeregban(rbp);
1307 }
1308 } else {
1309 rbh=&(rbp->next);
1310 }
1311 }
1312
1313 if (cip->channel) {
1314 for (cbh=&(cip->channel->bans); *cbh; ) {
1315 cbp=*cbh;
1316 if (fn(arg, cbp)) {
1317 /* Remove */
1318 banstr=bantostring(cbp);
1319 chanservstdmessage(sender, QM_REMOVEDCHANBAN, banstr, cip->name->content);
1320 localdosetmode_ban(&changes, banstr, MCB_DEL);
1321 } else {
1322 cbh=&(cbp->next);
1323 }
1324 }
1325 localsetmodeflush(&changes,1);
1326 }
1327
1328 return 0;
1329 }
1330
1331 /* Add entry to channel op history when someone gets ops. */
1332 void cs_logchanop(regchan *rcp, char *nick, reguser *rup) {
1333 strncpy(rcp->chanopnicks[rcp->chanoppos], nick, NICKLEN);
1334 rcp->chanopnicks[rcp->chanoppos][NICKLEN]='\0';
1335 rcp->chanopaccts[rcp->chanoppos]=rup->ID;
1336 rcp->chanoppos=(rcp->chanoppos+1)%CHANOPHISTORY;
1337 }