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