]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
f11386a268c358274ec56580cb7584ed8a7442ae
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 /* Now with added unF! ;) */
18
19 using namespace std;
20
21 #include "inspircd.h"
22 #include "inspircd_io.h"
23 #include "inspircd_util.h"
24 #include "inspircd_config.h"
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <sys/errno.h>
28 #include <sys/ioctl.h>
29 #include <sys/utsname.h>
30 #ifdef USE_KQUEUE
31 #include <sys/types.h>
32 #include <sys/event.h>
33 #include <sys/time.h>
34 #endif
35 #include <cstdio>
36 #include <time.h>
37 #include <string>
38 #ifdef GCC3
39 #include <ext/hash_map>
40 #else
41 #include <hash_map>
42 #endif
43 #include <map>
44 #include <sstream>
45 #include <vector>
46 #include <errno.h>
47 #include <deque>
48 #include <errno.h>
49 #include <unistd.h>
50 #include <sched.h>
51 #include "connection.h"
52 #include "users.h"
53 #include "servers.h"
54 #include "ctables.h"
55 #include "globals.h"
56 #include "modules.h"
57 #include "dynamic.h"
58 #include "wildcard.h"
59 #include "message.h"
60 #include "mode.h"
61 #include "commands.h"
62 #include "xline.h"
63 #include "inspstring.h"
64 #include "dnsqueue.h"
65
66 #ifdef GCC3
67 #define nspace __gnu_cxx
68 #else
69 #define nspace std
70 #endif
71
72 int LogLevel = DEFAULT;
73 char ServerName[MAXBUF];
74 char Network[MAXBUF];
75 char ServerDesc[MAXBUF];
76 char AdminName[MAXBUF];
77 char AdminEmail[MAXBUF];
78 char AdminNick[MAXBUF];
79 char diepass[MAXBUF];
80 char restartpass[MAXBUF];
81 char motd[MAXBUF];
82 char rules[MAXBUF];
83 char list[MAXBUF];
84 char PrefixQuit[MAXBUF];
85 char DieValue[MAXBUF];
86 char DNSServer[MAXBUF];
87 int debugging =  0;
88 int WHOWAS_STALE = 48; // default WHOWAS Entries last 2 days before they go 'stale'
89 int WHOWAS_MAX = 100;  // default 100 people maximum in the WHOWAS list
90 int DieDelay  =  5;
91 time_t startup_time = time(NULL);
92 int NetBufferSize = 10240; // NetBufferSize used as the buffer size for all read() ops
93 extern int MaxWhoResults;
94 time_t nb_start = 0;
95 int dns_timeout = 5;
96
97 char DisabledCommands[MAXBUF];
98
99 bool AllowHalfop = true;
100 bool AllowProtect = true;
101 bool AllowFounder = true;
102
103 extern std::vector<Module*> modules;
104 std::vector<std::string> module_names;
105 extern std::vector<ircd_module*> factory;
106
107 extern int MODCOUNT;
108 int openSockfd[MAXSOCKS];
109 bool nofork = false;
110 bool unlimitcore = false;
111
112 time_t TIME = time(NULL), OLDTIME = time(NULL);
113
114 #ifdef USE_KQUEUE
115 int kq, lkq, skq;
116 #endif
117
118 namespace nspace
119 {
120 #ifdef GCC34
121         template<> struct hash<in_addr>
122 #else
123         template<> struct nspace::hash<in_addr>
124 #endif
125         {
126                 size_t operator()(const struct in_addr &a) const
127                 {
128                         size_t q;
129                         memcpy(&q,&a,sizeof(size_t));
130                         return q;
131                 }
132         };
133 #ifdef GCC34
134         template<> struct hash<string>
135 #else
136         template<> struct nspace::hash<string>
137 #endif
138         {
139                 size_t operator()(const string &s) const
140                 {
141                         char a[MAXBUF];
142                         static struct hash<const char *> strhash;
143                         strlcpy(a,s.c_str(),MAXBUF);
144                         strlower(a);
145                         return strhash(a);
146                 }
147         };
148 }
149
150
151 struct StrHashComp
152 {
153
154         bool operator()(const string& s1, const string& s2) const
155         {
156                 char a[MAXBUF],b[MAXBUF];
157                 strlcpy(a,s1.c_str(),MAXBUF);
158                 strlcpy(b,s2.c_str(),MAXBUF);
159                 strlower(a);
160                 strlower(b);
161                 return (strcasecmp(a,b) == 0);
162         }
163
164 };
165
166 struct InAddr_HashComp
167 {
168
169         bool operator()(const in_addr &s1, const in_addr &s2) const
170         {
171                 size_t q;
172                 size_t p;
173                 
174                 memcpy(&q,&s1,sizeof(size_t));
175                 memcpy(&p,&s2,sizeof(size_t));
176                 
177                 return (q == p);
178         }
179
180 };
181
182
183 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
184 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
185 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
186 typedef std::deque<command_t> command_table;
187
188 // This table references users by file descriptor.
189 // its an array to make it VERY fast, as all lookups are referenced
190 // by an integer, meaning there is no need for a scan/search operation.
191 userrec* fd_ref_table[65536];
192
193 int statsAccept = 0, statsRefused = 0, statsUnknown = 0, statsCollisions = 0, statsDns = 0, statsDnsGood = 0, statsDnsBad = 0, statsConnects = 0, statsSent= 0, statsRecv = 0;
194
195 serverrec* me[32];
196
197 FILE *log_file;
198
199 user_hash clientlist;
200 chan_hash chanlist;
201 user_hash whowas;
202 command_table cmdlist;
203 file_cache MOTD;
204 file_cache RULES;
205 address_cache IP;
206
207 ClassVector Classes;
208
209 struct linger linger = { 0 };
210 char MyExecutable[1024];
211 int boundPortCount = 0;
212 int portCount = 0, SERVERportCount = 0, ports[MAXSOCKS];
213 int defaultRoute = 0;
214 char ModPath[MAXBUF];
215
216 /* prototypes */
217
218 int has_channel(userrec *u, chanrec *c);
219 int usercount(chanrec *c);
220 int usercount_i(chanrec *c);
221 char* Passwd(userrec *user);
222 bool IsDenied(userrec *user);
223 void AddWhoWas(userrec* u);
224
225 std::vector<long> auth_cookies;
226 std::stringstream config_f(stringstream::in | stringstream::out);
227
228 std::vector<userrec*> all_opers;
229
230 static char already_sent[65536];
231
232 char lowermap[255];
233
234 void AddOper(userrec* user)
235 {
236         log(DEBUG,"Oper added to optimization list");
237         all_opers.push_back(user);
238 }
239
240 void DeleteOper(userrec* user)
241 {
242         for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
243         {
244                 if (*a == user)
245                 {
246                         log(DEBUG,"Oper removed from optimization list");
247                         all_opers.erase(a);
248                         return;
249                 }
250         }
251 }
252
253 long GetRevision()
254 {
255         char Revision[] = "$Revision$";
256         char *s1 = Revision;
257         char *savept;
258         char *v2 = strtok_r(s1," ",&savept);
259         s1 = savept;
260         v2 = strtok_r(s1," ",&savept);
261         s1 = savept;
262         return (long)(atof(v2)*10000);
263 }
264
265
266 std::string getservername()
267 {
268         return ServerName;
269 }
270
271 std::string getserverdesc()
272 {
273         return ServerDesc;
274 }
275
276 std::string getnetworkname()
277 {
278         return Network;
279 }
280
281 std::string getadminname()
282 {
283         return AdminName;
284 }
285
286 std::string getadminemail()
287 {
288         return AdminEmail;
289 }
290
291 std::string getadminnick()
292 {
293         return AdminNick;
294 }
295
296 void log(int level,char *text, ...)
297 {
298         char textbuffer[MAXBUF];
299         va_list argsPtr;
300         time_t rawtime;
301         struct tm * timeinfo;
302         if (level < LogLevel)
303                 return;
304
305         time(&rawtime);
306         timeinfo = localtime (&rawtime);
307
308         if (log_file)
309         {
310                 char b[MAXBUF];
311                 va_start (argsPtr, text);
312                 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
313                 va_end(argsPtr);
314                 strlcpy(b,asctime(timeinfo),MAXBUF);
315                 b[24] = ':';    // we know this is the end of the time string
316                 fprintf(log_file,"%s %s\n",b,textbuffer);
317                 if (nofork)
318                 {
319                         // nofork enabled? display it on terminal too
320                         printf("%s %s\n",b,textbuffer);
321                 }
322         }
323 }
324
325 void readfile(file_cache &F, const char* fname)
326 {
327         FILE* file;
328         char linebuf[MAXBUF];
329         
330         log(DEBUG,"readfile: loading %s",fname);
331         F.clear();
332         file =  fopen(fname,"r");
333         if (file)
334         {
335                 while (!feof(file))
336                 {
337                         fgets(linebuf,sizeof(linebuf),file);
338                         linebuf[strlen(linebuf)-1]='\0';
339                         if (linebuf[0] == 0)
340                         {
341                                 strcpy(linebuf,"  ");
342                         }
343                         if (!feof(file))
344                         {
345                                 F.push_back(linebuf);
346                         }
347                 }
348                 fclose(file);
349         }
350         else
351         {
352                 log(DEBUG,"readfile: failed to load file: %s",fname);
353         }
354         log(DEBUG,"readfile: loaded %s, %lu lines",fname,(unsigned long)F.size());
355 }
356
357 void ReadConfig(bool bail, userrec* user)
358 {
359         char dbg[MAXBUF],pauseval[MAXBUF],Value[MAXBUF],timeout[MAXBUF],NB[MAXBUF],flood[MAXBUF],MW[MAXBUF];
360         char AH[MAXBUF],AP[MAXBUF],AF[MAXBUF],DNT[MAXBUF],pfreq[MAXBUF],thold[MAXBUF],sqmax[MAXBUF],rqmax[MAXBUF];
361         ConnectClass c;
362         std::stringstream errstr;
363         
364         if (!LoadConf(CONFIG_FILE,&config_f,&errstr))
365         {
366                 errstr.seekg(0);
367                 if (bail)
368                 {
369                         printf("There were errors in your configuration:\n%s",errstr.str().c_str());
370                         Exit(0);
371                 }
372                 else
373                 {
374                         char dataline[1024];
375                         if (user)
376                         {
377                                 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
378                                 while (!errstr.eof())
379                                 {
380                                         errstr.getline(dataline,1024);
381                                         WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
382                                 }
383                         }
384                         else
385                         {
386                                 WriteOpers("There were errors in the configuration file:",user->nick);
387                                 while (!errstr.eof())
388                                 {
389                                         errstr.getline(dataline,1024);
390                                         WriteOpers(dataline);
391                                 }
392                         }
393                         return;
394                 }
395         }
396           
397         ConfValue("server","name",0,ServerName,&config_f);
398         ConfValue("server","description",0,ServerDesc,&config_f);
399         ConfValue("server","network",0,Network,&config_f);
400         ConfValue("admin","name",0,AdminName,&config_f);
401         ConfValue("admin","email",0,AdminEmail,&config_f);
402         ConfValue("admin","nick",0,AdminNick,&config_f);
403         ConfValue("files","motd",0,motd,&config_f);
404         ConfValue("files","rules",0,rules,&config_f);
405         ConfValue("power","diepass",0,diepass,&config_f);
406         ConfValue("power","pause",0,pauseval,&config_f);
407         ConfValue("power","restartpass",0,restartpass,&config_f);
408         ConfValue("options","prefixquit",0,PrefixQuit,&config_f);
409         ConfValue("die","value",0,DieValue,&config_f);
410         ConfValue("options","loglevel",0,dbg,&config_f);
411         ConfValue("options","netbuffersize",0,NB,&config_f);
412         ConfValue("options","maxwho",0,MW,&config_f);
413         ConfValue("options","allowhalfop",0,AH,&config_f);
414         ConfValue("options","allowprotect",0,AP,&config_f);
415         ConfValue("options","allowfounder",0,AF,&config_f);
416         ConfValue("dns","server",0,DNSServer,&config_f);
417         ConfValue("dns","timeout",0,DNT,&config_f);
418         ConfValue("options","moduledir",0,ModPath,&config_f);
419         ConfValue("disabled","commands",0,DisabledCommands,&config_f);
420
421         NetBufferSize = atoi(NB);
422         MaxWhoResults = atoi(MW);
423         dns_timeout = atoi(DNT);
424         if (!dns_timeout)
425                 dns_timeout = 5;
426         if (!DNSServer[0])
427                 strlcpy(DNSServer,"127.0.0.1",MAXBUF);
428         if (!ModPath[0])
429                 strlcpy(ModPath,MOD_PATH,MAXBUF);
430         AllowHalfop = ((!strcasecmp(AH,"true")) || (!strcasecmp(AH,"1")) || (!strcasecmp(AH,"yes")));
431         AllowProtect = ((!strcasecmp(AP,"true")) || (!strcasecmp(AP,"1")) || (!strcasecmp(AP,"yes")));
432         AllowFounder = ((!strcasecmp(AF,"true")) || (!strcasecmp(AF,"1")) || (!strcasecmp(AF,"yes")));
433         if ((!NetBufferSize) || (NetBufferSize > 65535) || (NetBufferSize < 1024))
434         {
435                 log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
436                 NetBufferSize = 10240;
437         }
438         if ((!MaxWhoResults) || (MaxWhoResults > 65535) || (MaxWhoResults < 1))
439         {
440                 log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
441                 MaxWhoResults = 128;
442         }
443         if (!strcmp(dbg,"debug"))
444                 LogLevel = DEBUG;
445         if (!strcmp(dbg,"verbose"))
446                 LogLevel = VERBOSE;
447         if (!strcmp(dbg,"default"))
448                 LogLevel = DEFAULT;
449         if (!strcmp(dbg,"sparse"))
450                 LogLevel = SPARSE;
451         if (!strcmp(dbg,"none"))
452                 LogLevel = NONE;
453         readfile(MOTD,motd);
454         log(DEFAULT,"Reading message of the day...");
455         readfile(RULES,rules);
456         log(DEFAULT,"Reading connect classes...");
457         Classes.clear();
458         for (int i = 0; i < ConfValueEnum("connect",&config_f); i++)
459         {
460                 strcpy(Value,"");
461                 ConfValue("connect","allow",i,Value,&config_f);
462                 ConfValue("connect","timeout",i,timeout,&config_f);
463                 ConfValue("connect","flood",i,flood,&config_f);
464                 ConfValue("connect","pingfreq",i,pfreq,&config_f);
465                 ConfValue("connect","threshold",i,thold,&config_f);
466                 ConfValue("connect","sendq",i,sqmax,&config_f);
467                 ConfValue("connect","recvq",i,rqmax,&config_f);
468                 if (Value[0])
469                 {
470                         strlcpy(c.host,Value,MAXBUF);
471                         c.type = CC_ALLOW;
472                         strlcpy(Value,"",MAXBUF);
473                         ConfValue("connect","password",i,Value,&config_f);
474                         strlcpy(c.pass,Value,MAXBUF);
475                         c.registration_timeout = 90; // default is 2 minutes
476                         c.pingtime = 120;
477                         c.flood = atoi(flood);
478                         c.threshold = 5;
479                         c.sendqmax = 262144; // 256k
480                         c.recvqmax = 4096;   // 4k
481                         if (atoi(thold)>0)
482                         {
483                                 c.threshold = atoi(thold);
484                         }
485                         if (atoi(sqmax)>0)
486                         {
487                                 c.sendqmax = atoi(sqmax);
488                         }
489                         if (atoi(rqmax)>0)
490                         {
491                                 c.recvqmax = atoi(rqmax);
492                         }
493                         if (atoi(timeout)>0)
494                         {
495                                 c.registration_timeout = atoi(timeout);
496                         }
497                         if (atoi(pfreq)>0)
498                         {
499                                 c.pingtime = atoi(pfreq);
500                         }
501                         Classes.push_back(c);
502                         log(DEBUG,"Read connect class type ALLOW, host=%s password=%s timeout=%lu flood=%lu",c.host,c.pass,(unsigned long)c.registration_timeout,(unsigned long)c.flood);
503                 }
504                 else
505                 {
506                         ConfValue("connect","deny",i,Value,&config_f);
507                         strlcpy(c.host,Value,MAXBUF);
508                         c.type = CC_DENY;
509                         Classes.push_back(c);
510                         log(DEBUG,"Read connect class type DENY, host=%s",c.host);
511                 }
512         
513         }
514         log(DEFAULT,"Reading K lines,Q lines and Z lines from config...");
515         read_xline_defaults();
516         log(DEFAULT,"Applying K lines, Q lines and Z lines...");
517         apply_lines();
518         log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
519         if (!bail)
520         {
521                 log(DEFAULT,"Adding and removing modules due to rehash...");
522
523                 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
524
525                 // store the old module names
526                 for (std::vector<std::string>::iterator t = module_names.begin(); t != module_names.end(); t++)
527                 {
528                         old_module_names.push_back(*t);
529                 }
530
531                 // get the new module names
532                 for (int count2 = 0; count2 < ConfValueEnum("module",&config_f); count2++)
533                 {
534                         ConfValue("module","name",count2,Value,&config_f);
535                         new_module_names.push_back(Value);
536                 }
537
538                 // now create a list of new modules that are due to be loaded
539                 // and a seperate list of modules which are due to be unloaded
540                 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
541                 {
542                         bool added = true;
543                         for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
544                         {
545                                 if (*old == *_new)
546                                         added = false;
547                         }
548                         if (added)
549                                 added_modules.push_back(*_new);
550                 }
551                 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
552                 {
553                         bool removed = true;
554                         for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
555                         {
556                                 if (*newm == *oldm)
557                                         removed = false;
558                         }
559                         if (removed)
560                                 removed_modules.push_back(*oldm);
561                 }
562                 // now we have added_modules, a vector of modules to be loaded, and removed_modules, a vector of modules
563                 // to be removed.
564                 int rem = 0, add = 0;
565                 if (!removed_modules.empty())
566                 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
567                 {
568                         if (UnloadModule(removing->c_str()))
569                         {
570                                 WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
571                                 WriteServ(user->fd,"973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
572                                 rem++;
573                         }
574                         else
575                         {
576                                 WriteServ(user->fd,"972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ModuleError());
577                         }
578                 }
579                 if (!added_modules.empty())
580                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
581                 {
582                         if (LoadModule(adding->c_str()))
583                         {
584                                 WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
585                                 WriteServ(user->fd,"975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
586                                 add++;
587                         }
588                         else
589                         {
590                                 WriteServ(user->fd,"974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ModuleError());
591                         }
592                 }
593                 log(DEFAULT,"Successfully unloaded %lu of %lu modules and loaded %lu of %lu modules.",(unsigned long)rem,(unsigned long)removed_modules.size(),(unsigned long)add,(unsigned long)added_modules.size());
594         }
595 }
596
597 /* write formatted text to a socket, in same format as printf
598  * New in 1.0 Beta 5 - Nothing is written directly to a users fd any more.
599  * Instead, data builds up in the users sendq and each time around the mainloop
600  * this data is flushed to the user's socket (see userrec::FlushWriteBuf).
601  */
602
603 void Write(int sock,char *text, ...)
604 {
605         if (sock < 0)
606                 return;
607         if (!text)
608         {
609                 log(DEFAULT,"*** BUG *** Write was given an invalid parameter");
610                 return;
611         }
612         char textbuffer[MAXBUF];
613         va_list argsPtr;
614         char tb[MAXBUF];
615         int res;
616         
617         va_start (argsPtr, text);
618         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
619         va_end(argsPtr);
620         int bytes = snprintf(tb,MAXBUF,"%s\r\n",textbuffer);
621         chop(tb);
622         if (fd_ref_table[sock])
623         {
624                 int MOD_RESULT = 0;
625                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes));
626                 fd_ref_table[sock]->AddWriteBuf(tb);
627                 statsSent += bytes;
628         }
629         else log(DEFAULT,"ERROR! attempted write to a user with no fd_ref_table entry!!!");
630 }
631
632 /* write a server formatted numeric response to a single socket */
633
634 void WriteServ(int sock, char* text, ...)
635 {
636         if (sock < 0)
637                 return;
638         if (!text)
639         {
640                 log(DEFAULT,"*** BUG *** WriteServ was given an invalid parameter");
641                 return;
642         }
643         char textbuffer[MAXBUF],tb[MAXBUF];
644         int res;
645         va_list argsPtr;
646         va_start (argsPtr, text);
647         
648         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
649         va_end(argsPtr);
650         int bytes = snprintf(tb,MAXBUF,":%s %s\r\n",ServerName,textbuffer);
651         chop(tb);
652         if (fd_ref_table[sock])
653         {
654                 int MOD_RESULT = 0;
655                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes));
656                 fd_ref_table[sock]->AddWriteBuf(tb);
657                 statsSent += bytes;
658         }
659         else log(DEFAULT,"ERROR! attempted write to a user with no fd_ref_table entry!!!");
660 }
661
662 /* write text from an originating user to originating user */
663
664 void WriteFrom(int sock, userrec *user,char* text, ...)
665 {
666         if (sock < 0)
667                 return;
668         if ((!text) || (!user))
669         {
670                 log(DEFAULT,"*** BUG *** WriteFrom was given an invalid parameter");
671                 return;
672         }
673         char textbuffer[MAXBUF],tb[MAXBUF];
674         va_list argsPtr;
675         int res;
676         va_start (argsPtr, text);
677         
678         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
679         va_end(argsPtr);
680         int bytes = snprintf(tb,MAXBUF,":%s!%s@%s %s\r\n",user->nick,user->ident,user->dhost,textbuffer);
681         chop(tb);
682         if (fd_ref_table[sock])
683         {
684                 int MOD_RESULT = 0;
685                 FOREACH_RESULT(OnRawSocketWrite(sock,tb,bytes));
686                 fd_ref_table[sock]->AddWriteBuf(tb);
687                 statsSent += bytes;
688         }
689         else log(DEFAULT,"ERROR! attempted write to a user with no fd_ref_table entry!!!");
690 }
691
692 /* write text to an destination user from a source user (e.g. user privmsg) */
693
694 void WriteTo(userrec *source, userrec *dest,char *data, ...)
695 {
696         if ((!dest) || (!data))
697         {
698                 log(DEFAULT,"*** BUG *** WriteTo was given an invalid parameter");
699                 return;
700         }
701         if (dest->fd == FD_MAGIC_NUMBER)
702                 return;
703         char textbuffer[MAXBUF],tb[MAXBUF];
704         va_list argsPtr;
705         va_start (argsPtr, data);
706         vsnprintf(textbuffer, MAXBUF, data, argsPtr);
707         va_end(argsPtr);
708         chop(tb);
709
710         // if no source given send it from the server.
711         if (!source)
712         {
713                 WriteServ(dest->fd,":%s %s",ServerName,textbuffer);
714         }
715         else
716         {
717                 WriteFrom(dest->fd,source,"%s",textbuffer);
718         }
719 }
720
721 /* write formatted text from a source user to all users on a channel
722  * including the sender (NOT for privmsg, notice etc!) */
723
724 void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...)
725 {
726         if ((!Ptr) || (!user) || (!text))
727         {
728                 log(DEFAULT,"*** BUG *** WriteChannel was given an invalid parameter");
729                 return;
730         }
731         char textbuffer[MAXBUF];
732         va_list argsPtr;
733         va_start (argsPtr, text);
734         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
735         va_end(argsPtr);
736
737         std::vector<char*> *ulist = Ptr->GetUsers();
738         for (int j = 0; j < ulist->size(); j++)
739         {
740                 char* o = (*ulist)[j];
741                 userrec* otheruser = (userrec*)o;
742                 if (otheruser->fd != FD_MAGIC_NUMBER)
743                         WriteTo(user,otheruser,"%s",textbuffer);
744         }
745 }
746
747 /* write formatted text from a source user to all users on a channel
748  * including the sender (NOT for privmsg, notice etc!) doesnt send to
749  * users on remote servers */
750
751 void WriteChannelLocal(chanrec* Ptr, userrec* user, char* text, ...)
752 {
753         if ((!Ptr) || (!text))
754         {
755                 log(DEFAULT,"*** BUG *** WriteChannel was given an invalid parameter");
756                 return;
757         }
758         char textbuffer[MAXBUF];
759         va_list argsPtr;
760         va_start (argsPtr, text);
761         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
762         va_end(argsPtr);
763
764         std::vector<char*> *ulist = Ptr->GetUsers();
765         for (int j = 0; j < ulist->size(); j++)
766         {
767                 char* o = (*ulist)[j];
768                 userrec* otheruser = (userrec*)o;
769                 if ((otheruser->fd != FD_MAGIC_NUMBER) && (otheruser->fd != -1) && (otheruser != user))
770                 {
771                         if (!user)
772                         {
773                                 WriteServ(otheruser->fd,"%s",textbuffer);
774                         }
775                         else
776                         {
777                                 WriteTo(user,otheruser,"%s",textbuffer);
778                         }
779                 }
780         }
781 }
782
783
784 void WriteChannelWithServ(char* ServName, chanrec* Ptr, char* text, ...)
785 {
786         if ((!Ptr) || (!text))
787         {
788                 log(DEFAULT,"*** BUG *** WriteChannelWithServ was given an invalid parameter");
789                 return;
790         }
791         char textbuffer[MAXBUF];
792         va_list argsPtr;
793         va_start (argsPtr, text);
794         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
795         va_end(argsPtr);
796
797
798         std::vector<char*> *ulist = Ptr->GetUsers();
799         for (int j = 0; j < ulist->size(); j++)
800         {
801                 char* o = (*ulist)[j];
802                 userrec* otheruser = (userrec*)o;
803                 if (otheruser->fd != FD_MAGIC_NUMBER)
804                         WriteServ(otheruser->fd,"%s",textbuffer);
805         }
806 }
807
808
809 /* write formatted text from a source user to all users on a channel except
810  * for the sender (for privmsg etc) */
811
812 void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...)
813 {
814         if ((!Ptr) || (!user) || (!text))
815         {
816                 log(DEFAULT,"*** BUG *** ChanExceptSender was given an invalid parameter");
817                 return;
818         }
819         char textbuffer[MAXBUF];
820         va_list argsPtr;
821         va_start (argsPtr, text);
822         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
823         va_end(argsPtr);
824
825         std::vector<char*> *ulist = Ptr->GetUsers();
826         for (int j = 0; j < ulist->size(); j++)
827         {
828                 char* o = (*ulist)[j];
829                 userrec* otheruser = (userrec*)o;
830                 if ((otheruser->fd != FD_MAGIC_NUMBER) && (user != otheruser))
831                         WriteFrom(otheruser->fd,user,"%s",textbuffer);
832         }
833 }
834
835
836 std::string GetServerDescription(char* servername)
837 {
838         for (int j = 0; j < 32; j++)
839         {
840                 if (me[j] != NULL)
841                 {
842                         for (int k = 0; k < me[j]->connectors.size(); k++)
843                         {
844                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),servername))
845                                 {
846                                         return me[j]->connectors[k].GetDescription();
847                                 }
848                         }
849                 }
850                 return ServerDesc; // not a remote server that can be found, it must be me.
851         }
852 }
853
854
855 /* write a formatted string to all users who share at least one common
856  * channel, including the source user e.g. for use in NICK */
857
858 void WriteCommon(userrec *u, char* text, ...)
859 {
860         if (!u)
861         {
862                 log(DEFAULT,"*** BUG *** WriteCommon was given an invalid parameter");
863                 return;
864         }
865
866         if (u->registered != 7) {
867                 log(DEFAULT,"*** BUG *** WriteCommon on an unregistered user");
868                 return;
869         }
870         
871         char textbuffer[MAXBUF];
872         va_list argsPtr;
873         va_start (argsPtr, text);
874         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
875         va_end(argsPtr);
876
877         // FIX: Stops a message going to the same person more than once
878         bzero(&already_sent,65536);
879
880         bool sent_to_at_least_one = false;
881
882         for (int i = 0; i < MAXCHANS; i++)
883         {
884                 if (u->chans[i].channel)
885                 {
886                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
887                         for (int j = 0; j < ulist->size(); j++)
888                         {
889                                 char* o = (*ulist)[j];
890                                 userrec* otheruser = (userrec*)o;
891                                 if ((otheruser->fd > 0) && (!already_sent[otheruser->fd]))
892                                 {
893                                         already_sent[otheruser->fd] = 1;
894                                         WriteFrom(otheruser->fd,u,"%s",textbuffer);
895                                         sent_to_at_least_one = true;
896                                 }
897                         }
898                 }
899         }
900         // if the user was not in any channels, no users will receive the text. Make sure the user
901         // receives their OWN message for WriteCommon
902         if (!sent_to_at_least_one)
903         {
904                 WriteFrom(u->fd,u,"%s",textbuffer);
905         }
906 }
907
908 /* write a formatted string to all users who share at least one common
909  * channel, NOT including the source user e.g. for use in QUIT */
910
911 void WriteCommonExcept(userrec *u, char* text, ...)
912 {
913         if (!u)
914         {
915                 log(DEFAULT,"*** BUG *** WriteCommon was given an invalid parameter");
916                 return;
917         }
918
919         if (u->registered != 7) {
920                 log(DEFAULT,"*** BUG *** WriteCommon on an unregistered user");
921                 return;
922         }
923
924         char textbuffer[MAXBUF];
925         va_list argsPtr;
926         va_start (argsPtr, text);
927         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
928         va_end(argsPtr);
929
930         bzero(&already_sent,65536);
931
932         for (int i = 0; i < MAXCHANS; i++)
933         {
934                 if (u->chans[i].channel)
935                 {
936                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
937                         for (int j = 0; j < ulist->size(); j++)
938                         {
939                                 char* o = (*ulist)[j];
940                                 userrec* otheruser = (userrec*)o;
941                                 if (u != otheruser)
942                                 {
943                                         if ((otheruser->fd > 0) && (!already_sent[otheruser->fd]))
944                                         {
945                                                 already_sent[otheruser->fd] = 1;
946                                                 WriteFrom(otheruser->fd,u,"%s",textbuffer);
947                                         }
948                                 }
949                         }
950                 }
951         }
952 }
953
954 void WriteOpers(char* text, ...)
955 {
956         if (!text)
957         {
958                 log(DEFAULT,"*** BUG *** WriteOpers was given an invalid parameter");
959                 return;
960         }
961
962         char textbuffer[MAXBUF];
963         va_list argsPtr;
964         va_start (argsPtr, text);
965         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
966         va_end(argsPtr);
967
968         for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++)
969         {
970                 userrec* a = *i;
971                 if ((a) && (a->fd != FD_MAGIC_NUMBER))
972                 {
973                         if (strchr(a->modes,'s'))
974                         {
975                                 // send server notices to all with +s
976                                 WriteServ(a->fd,"NOTICE %s :%s",a->nick,textbuffer);
977                         }
978                 }
979         }
980 }
981
982 void NoticeAllOpers(userrec *source, bool local_only, char* text, ...)
983 {
984         if ((!text) || (!source))
985         {
986                 log(DEFAULT,"*** BUG *** NoticeAllOpers was given an invalid parameter");
987                 return;
988         }
989
990         char textbuffer[MAXBUF];
991         va_list argsPtr;
992         va_start (argsPtr, text);
993         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
994         va_end(argsPtr);
995
996         for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++)
997         {
998                 userrec* a = *i;
999                 if ((a) && (a->fd != FD_MAGIC_NUMBER))
1000                 {
1001                         if (strchr(a->modes,'s'))
1002                         {
1003                                 // send server notices to all with +s
1004                                 WriteServ(a->fd,"NOTICE %s :*** Notice From %s: %s",a->nick,source->nick,textbuffer);
1005                         }
1006                 }
1007         }
1008
1009         if (!local_only)
1010         {
1011                 char buffer[MAXBUF];
1012                 snprintf(buffer,MAXBUF,"V %s @* :%s",source->nick,textbuffer);
1013                 NetSendToAll(buffer);
1014         }
1015 }
1016
1017 // returns TRUE of any users on channel C occupy server 'servername'.
1018
1019 bool ChanAnyOnThisServer(chanrec *c,char* servername)
1020 {
1021         log(DEBUG,"ChanAnyOnThisServer");
1022
1023         std::vector<char*> *ulist = c->GetUsers();
1024         for (int j = 0; j < ulist->size(); j++)
1025         {
1026                 char* o = (*ulist)[j];
1027                 userrec* user = (userrec*)o;
1028                 if (!strcasecmp(user->server,servername))
1029                         return true;
1030         }
1031         return false;
1032 }
1033
1034 // returns true if user 'u' shares any common channels with any users on server 'servername'
1035
1036 bool CommonOnThisServer(userrec* u,const char* servername)
1037 {
1038         log(DEBUG,"ChanAnyOnThisServer");
1039
1040         for (int i = 0; i < MAXCHANS; i++)
1041         {
1042                 if (u->chans[i].channel)
1043                 {
1044                         std::vector<char*> *ulist = u->chans[i].channel->GetUsers();
1045                         for (int j = 0; j < ulist->size(); j++)
1046                         {
1047                                 char* o = (*ulist)[j];
1048                                 userrec* user = (userrec*)o;
1049                                 if (!strcasecmp(user->server,servername))
1050                                         return true;
1051                         }
1052                 }
1053         }
1054         return false;
1055 }
1056
1057
1058 void NetSendToCommon(userrec* u, char* s)
1059 {
1060         char buffer[MAXBUF];
1061         snprintf(buffer,MAXBUF,"%s",s);
1062         
1063         log(DEBUG,"NetSendToCommon: '%s' '%s'",u->nick,s);
1064
1065         std::string msg = buffer;
1066         FOREACH_MOD OnPacketTransmit(msg,s);
1067         strlcpy(buffer,msg.c_str(),MAXBUF);
1068
1069         for (int j = 0; j < 32; j++)
1070         {
1071                 if (me[j] != NULL)
1072                 {
1073                         for (int k = 0; k < me[j]->connectors.size(); k++)
1074                         {
1075                                 if (CommonOnThisServer(u,me[j]->connectors[k].GetServerName().c_str()))
1076                                 {
1077                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1078                                 }
1079                         }
1080                 }
1081         }
1082 }
1083
1084
1085 void NetSendToAll(char* s)
1086 {
1087         char buffer[MAXBUF];
1088         snprintf(buffer,MAXBUF,"%s",s);
1089         
1090         log(DEBUG,"NetSendToAll: '%s'",s);
1091
1092         std::string msg = buffer;
1093         FOREACH_MOD OnPacketTransmit(msg,s);
1094         strlcpy(buffer,msg.c_str(),MAXBUF);
1095
1096         for (int j = 0; j < 32; j++)
1097         {
1098                 if (me[j] != NULL)
1099                 {
1100                         for (int k = 0; k < me[j]->connectors.size(); k++)
1101                         {
1102                                 me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1103                         }
1104                 }
1105         }
1106 }
1107
1108 void NetSendToAllAlive(char* s)
1109 {
1110         char buffer[MAXBUF];
1111         snprintf(buffer,MAXBUF,"%s",s);
1112         
1113         log(DEBUG,"NetSendToAllAlive: '%s'",s);
1114
1115         std::string msg = buffer;
1116         FOREACH_MOD OnPacketTransmit(msg,s);
1117         strlcpy(buffer,msg.c_str(),MAXBUF);
1118
1119         for (int j = 0; j < 32; j++)
1120         {
1121                 if (me[j] != NULL)
1122                 {
1123                         for (int k = 0; k < me[j]->connectors.size(); k++)
1124                         {
1125                                 if (me[j]->connectors[k].GetState() != STATE_DISCONNECTED)
1126                                 {
1127                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1128                                 }
1129                                 else
1130                                 {
1131                                         log(DEBUG,"%s is dead, not sending to it.",me[j]->connectors[k].GetServerName().c_str());
1132                                 }
1133                         }
1134                 }
1135         }
1136 }
1137
1138
1139 void NetSendToOne(char* target,char* s)
1140 {
1141         char buffer[MAXBUF];
1142         snprintf(buffer,MAXBUF,"%s",s);
1143         
1144         log(DEBUG,"NetSendToOne: '%s' '%s'",target,s);
1145
1146         std::string msg = buffer;
1147         FOREACH_MOD OnPacketTransmit(msg,s);
1148         strlcpy(buffer,msg.c_str(),MAXBUF);
1149
1150         for (int j = 0; j < 32; j++)
1151         {
1152                 if (me[j] != NULL)
1153                 {
1154                         for (int k = 0; k < me[j]->connectors.size(); k++)
1155                         {
1156                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),target))
1157                                 {
1158                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1159                                 }
1160                         }
1161                 }
1162         }
1163 }
1164
1165 void NetSendToAllExcept(const char* target,char* s)
1166 {
1167         char buffer[MAXBUF];
1168         snprintf(buffer,MAXBUF,"%s",s);
1169         
1170         log(DEBUG,"NetSendToAllExcept: '%s' '%s'",target,s);
1171         
1172         std::string msg = buffer;
1173         FOREACH_MOD OnPacketTransmit(msg,s);
1174         strlcpy(buffer,msg.c_str(),MAXBUF);
1175
1176         for (int j = 0; j < 32; j++)
1177         {
1178                 if (me[j] != NULL)
1179                 {
1180                         for (int k = 0; k < me[j]->connectors.size(); k++)
1181                         {
1182                                 if (strcasecmp(me[j]->connectors[k].GetServerName().c_str(),target))
1183                                 {
1184                                         me[j]->SendPacket(buffer,me[j]->connectors[k].GetServerName().c_str());
1185                                 }
1186                         }
1187                 }
1188         }
1189 }
1190
1191
1192 void WriteMode(const char* modes, int flags, const char* text, ...)
1193 {
1194         if ((!text) || (!modes) || (!flags))
1195         {
1196                 log(DEFAULT,"*** BUG *** WriteMode was given an invalid parameter");
1197                 return;
1198         }
1199
1200         char textbuffer[MAXBUF];
1201         va_list argsPtr;
1202         va_start (argsPtr, text);
1203         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1204         va_end(argsPtr);
1205         int modelen = strlen(modes);
1206
1207         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1208         {
1209                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1210                 {
1211                         bool send_to_user = false;
1212                         
1213                         if (flags == WM_AND)
1214                         {
1215                                 send_to_user = true;
1216                                 for (int n = 0; n < modelen; n++)
1217                                 {
1218                                         if (!hasumode(i->second,modes[n]))
1219                                         {
1220                                                 send_to_user = false;
1221                                                 break;
1222                                         }
1223                                 }
1224                         }
1225                         else if (flags == WM_OR)
1226                         {
1227                                 send_to_user = false;
1228                                 for (int n = 0; n < modelen; n++)
1229                                 {
1230                                         if (hasumode(i->second,modes[n]))
1231                                         {
1232                                                 send_to_user = true;
1233                                                 break;
1234                                         }
1235                                 }
1236                         }
1237
1238                         if (send_to_user)
1239                         {
1240                                 WriteServ(i->second->fd,"NOTICE %s :%s",i->second->nick,textbuffer);
1241                         }
1242                 }
1243         }
1244 }
1245
1246
1247 void NoticeAll(userrec *source, bool local_only, char* text, ...)
1248 {
1249         if ((!text) || (!source))
1250         {
1251                 log(DEFAULT,"*** BUG *** NoticeAll was given an invalid parameter");
1252                 return;
1253         }
1254
1255         char textbuffer[MAXBUF];
1256         va_list argsPtr;
1257         va_start (argsPtr, text);
1258         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
1259         va_end(argsPtr);
1260
1261         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1262         {
1263                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1264                 {
1265                         WriteFrom(i->second->fd,source,"NOTICE $* :%s",textbuffer);
1266                 }
1267         }
1268
1269         if (!local_only)
1270         {
1271                 char buffer[MAXBUF];
1272                 snprintf(buffer,MAXBUF,"V %s * :%s",source->nick,textbuffer);
1273                 NetSendToAll(buffer);
1274         }
1275
1276 }
1277
1278 void WriteWallOps(userrec *source, bool local_only, char* text, ...)  
1279 {  
1280         if ((!text) || (!source))
1281         {
1282                 log(DEFAULT,"*** BUG *** WriteOpers was given an invalid parameter");
1283                 return;
1284         }
1285
1286         char textbuffer[MAXBUF];  
1287         va_list argsPtr;  
1288         va_start (argsPtr, text);  
1289         vsnprintf(textbuffer, MAXBUF, text, argsPtr);  
1290         va_end(argsPtr);  
1291   
1292         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1293         {
1294                 if ((i->second) && (i->second->fd != FD_MAGIC_NUMBER))
1295                 {
1296                         if (strchr(i->second->modes,'w'))
1297                         {
1298                                 WriteTo(source,i->second,"WALLOPS :%s",textbuffer);
1299                         }
1300                 }
1301         }
1302
1303         if (!local_only)
1304         {
1305                 char buffer[MAXBUF];
1306                 snprintf(buffer,MAXBUF,"@ %s :%s",source->nick,textbuffer);
1307                 NetSendToAll(buffer);
1308         }
1309 }  
1310
1311 /* convert a string to lowercase. Note following special circumstances
1312  * taken from RFC 1459. Many "official" server branches still hold to this
1313  * rule so i will too;
1314  *
1315  *  Because of IRC's scandanavian origin, the characters {}| are
1316  *  considered to be the lower case equivalents of the characters []\,
1317  *  respectively. This is a critical issue when determining the
1318  *  equivalence of two nicknames.
1319  */
1320
1321 void strlower(char *n)
1322 {
1323         if (n)
1324         {
1325                 for (char* t = n; *t; t++)
1326                         *t = lowermap[*t];
1327         }
1328 }
1329
1330
1331
1332 /* Find a user record by nickname and return a pointer to it */
1333
1334 userrec* Find(std::string nick)
1335 {
1336         user_hash::iterator iter = clientlist.find(nick);
1337
1338         if (iter == clientlist.end())
1339                 /* Couldn't find it */
1340                 return NULL;
1341
1342         return iter->second;
1343 }
1344
1345 /* find a channel record by channel name and return a pointer to it */
1346
1347 chanrec* FindChan(const char* chan)
1348 {
1349         if (!chan)
1350         {
1351                 log(DEFAULT,"*** BUG *** Findchan was given an invalid parameter");
1352                 return NULL;
1353         }
1354
1355         chan_hash::iterator iter = chanlist.find(chan);
1356
1357         if (iter == chanlist.end())
1358                 /* Couldn't find it */
1359                 return NULL;
1360
1361         return iter->second;
1362 }
1363
1364
1365 long GetMaxBans(char* name)
1366 {
1367         char CM[MAXBUF];
1368         for (int count = 0; count < ConfValueEnum("banlist",&config_f); count++)
1369         {
1370                 ConfValue("banlist","chan",count,CM,&config_f);
1371                 if (match(name,CM))
1372                 {
1373                         ConfValue("banlist","limit",count,CM,&config_f);
1374                         return atoi(CM);
1375                 }
1376         }
1377         return 64;
1378 }
1379
1380
1381 void purge_empty_chans(userrec* u)
1382 {
1383
1384         int go_again = 1, purge = 0;
1385
1386         // firstly decrement the count on each channel
1387         for (int f = 0; f < MAXCHANS; f++)
1388         {
1389                 if (u->chans[f].channel)
1390                 {
1391                         u->chans[f].channel->DelUser((char*)u);
1392                 }
1393         }
1394
1395         for (int i = 0; i < MAXCHANS; i++)
1396         {
1397                 if (u->chans[i].channel)
1398                 {
1399                         if (!usercount(u->chans[i].channel))
1400                         {
1401                                 chan_hash::iterator i2 = chanlist.find(u->chans[i].channel->name);
1402                                 /* kill the record */
1403                                 if (i2 != chanlist.end())
1404                                 {
1405                                         log(DEBUG,"del_channel: destroyed: %s",i2->second->name);
1406                                         if (i2->second)
1407                                                 delete i2->second;
1408                                         chanlist.erase(i2);
1409                                         go_again = 1;
1410                                         purge++;
1411                                         u->chans[i].channel = NULL;
1412                                 }
1413                         }
1414                         else
1415                         {
1416                                 log(DEBUG,"skipped purge for %s",u->chans[i].channel->name);
1417                         }
1418                 }
1419         }
1420         log(DEBUG,"completed channel purge, killed %lu",(unsigned long)purge);
1421
1422         DeleteOper(u);
1423 }
1424
1425
1426 char scratch[MAXBUF];
1427 char sparam[MAXBUF];
1428
1429 char* chanmodes(chanrec *chan)
1430 {
1431         if (!chan)
1432         {
1433                 log(DEFAULT,"*** BUG *** chanmodes was given an invalid parameter");
1434                 strcpy(scratch,"");
1435                 return scratch;
1436         }
1437
1438         strcpy(scratch,"");
1439         strcpy(sparam,"");
1440         if (chan->noexternal)
1441         {
1442                 strlcat(scratch,"n",MAXMODES);
1443         }
1444         if (chan->topiclock)
1445         {
1446                 strlcat(scratch,"t",MAXMODES);
1447         }
1448         if (chan->key[0])
1449         {
1450                 strlcat(scratch,"k",MAXMODES);
1451         }
1452         if (chan->limit)
1453         {
1454                 strlcat(scratch,"l",MAXMODES);
1455         }
1456         if (chan->inviteonly)
1457         {
1458                 strlcat(scratch,"i",MAXMODES);
1459         }
1460         if (chan->moderated)
1461         {
1462                 strlcat(scratch,"m",MAXMODES);
1463         }
1464         if (chan->secret)
1465         {
1466                 strlcat(scratch,"s",MAXMODES);
1467         }
1468         if (chan->c_private)
1469         {
1470                 strlcat(scratch,"p",MAXMODES);
1471         }
1472         if (chan->key[0])
1473         {
1474                 strlcat(sparam," ",MAXBUF);
1475                 strlcat(sparam,chan->key,MAXBUF);
1476         }
1477         if (chan->limit)
1478         {
1479                 char foo[24];
1480                 sprintf(foo," %lu",(unsigned long)chan->limit);
1481                 strlcat(sparam,foo,MAXBUF);
1482         }
1483         if (*chan->custom_modes)
1484         {
1485                 strlcat(scratch,chan->custom_modes,MAXMODES);
1486                 for (int z = 0; chan->custom_modes[z] != 0; z++)
1487                 {
1488                         std::string extparam = chan->GetModeParameter(chan->custom_modes[z]);
1489                         if (extparam != "")
1490                         {
1491                                 strlcat(sparam," ",MAXBUF);
1492                                 strlcat(sparam,extparam.c_str(),MAXBUF);
1493                         }
1494                 }
1495         }
1496         log(DEBUG,"chanmodes: %s %s%s",chan->name,scratch,sparam);
1497         strlcat(scratch,sparam,MAXMODES);
1498         return scratch;
1499 }
1500
1501
1502 /* compile a userlist of a channel into a string, each nick seperated by
1503  * spaces and op, voice etc status shown as @ and + */
1504
1505 void userlist(userrec *user,chanrec *c)
1506 {
1507         if ((!c) || (!user))
1508         {
1509                 log(DEFAULT,"*** BUG *** userlist was given an invalid parameter");
1510                 return;
1511         }
1512
1513         snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
1514
1515         std::vector<char*> *ulist = c->GetUsers();
1516         for (int i = 0; i < ulist->size(); i++)
1517         {
1518                 char* o = (*ulist)[i];
1519                 userrec* otheruser = (userrec*)o;
1520                 if ((!has_channel(user,c)) && (strchr(otheruser->modes,'i')))
1521                 {
1522                         /* user is +i, and source not on the channel, does not show
1523                          * nick in NAMES list */
1524                         continue;
1525                 }
1526                 strlcat(list,cmode(otheruser,c),MAXBUF);
1527                 strlcat(list,otheruser->nick,MAXBUF);
1528                 strlcat(list," ",MAXBUF);
1529                 if (strlen(list)>(480-NICKMAX))
1530                 {
1531                         /* list overflowed into
1532                          * multiple numerics */
1533                         WriteServ(user->fd,"%s",list);
1534                         snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
1535                 }
1536         }
1537         /* if whats left in the list isnt empty, send it */
1538         if (list[strlen(list)-1] != ':')
1539         {
1540                 WriteServ(user->fd,"%s",list);
1541         }
1542 }
1543
1544 /* return a count of the users on a specific channel accounting for
1545  * invisible users who won't increase the count. e.g. for /LIST */
1546
1547 int usercount_i(chanrec *c)
1548 {
1549         int count = 0;
1550         
1551         if (!c)
1552         {
1553                 log(DEFAULT,"*** BUG *** usercount_i was given an invalid parameter");
1554                 return 0;
1555         }
1556
1557         strcpy(list,"");
1558         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
1559         {
1560                 if (i->second)
1561                 {
1562                         if (has_channel(i->second,c))
1563                         {
1564                                 if (isnick(i->second->nick))
1565                                 {
1566                                         if ((!has_channel(i->second,c)) && (strchr(i->second->modes,'i')))
1567                                         {
1568                                                 /* user is +i, and source not on the channel, does not show
1569                                                  * nick in NAMES list */
1570                                                 continue;
1571                                         }
1572                                         count++;
1573                                 }
1574                         }
1575                 }
1576         }
1577         log(DEBUG,"usercount_i: %s %lu",c->name,(unsigned long)count);
1578         return count;
1579 }
1580
1581
1582 int usercount(chanrec *c)
1583 {
1584         if (!c)
1585         {
1586                 log(DEFAULT,"*** BUG *** usercount was given an invalid parameter");
1587                 return 0;
1588         }
1589         int count = c->GetUserCounter();
1590         log(DEBUG,"usercount: %s %lu",c->name,(unsigned long)count);
1591         return count;
1592 }
1593
1594
1595 /* add a channel to a user, creating the record for it if needed and linking
1596  * it to the user record */
1597
1598 chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override)
1599 {
1600         if ((!user) || (!cn))
1601         {
1602                 log(DEFAULT,"*** BUG *** add_channel was given an invalid parameter");
1603                 return 0;
1604         }
1605
1606         chanrec* Ptr;
1607         int created = 0;
1608         char cname[MAXBUF];
1609
1610         strncpy(cname,cn,MAXBUF);
1611         
1612         // we MUST declare this wherever we use FOREACH_RESULT
1613         int MOD_RESULT = 0;
1614
1615         if (strlen(cname) > CHANMAX-1)
1616         {
1617                 cname[CHANMAX-1] = '\0';
1618         }
1619
1620         log(DEBUG,"add_channel: %s %s",user->nick,cname);
1621         
1622         if ((FindChan(cname)) && (has_channel(user,FindChan(cname))))
1623         {
1624                 return NULL; // already on the channel!
1625         }
1626
1627
1628         if (!FindChan(cname))
1629         {
1630                 MOD_RESULT = 0;
1631                 FOREACH_RESULT(OnUserPreJoin(user,NULL,cname));
1632                 if (MOD_RESULT == 1) {
1633                         return NULL;
1634                 }
1635
1636                 /* create a new one */
1637                 log(DEBUG,"add_channel: creating: %s",cname);
1638                 {
1639                         chanlist[cname] = new chanrec();
1640
1641                         strlcpy(chanlist[cname]->name, cname,CHANMAX);
1642                         chanlist[cname]->topiclock = 1;
1643                         chanlist[cname]->noexternal = 1;
1644                         chanlist[cname]->created = TIME;
1645                         strcpy(chanlist[cname]->topic, "");
1646                         strncpy(chanlist[cname]->setby, user->nick,NICKMAX);
1647                         chanlist[cname]->topicset = 0;
1648                         Ptr = chanlist[cname];
1649                         log(DEBUG,"add_channel: created: %s",cname);
1650                         /* set created to 2 to indicate user
1651                          * is the first in the channel
1652                          * and should be given ops */
1653                         created = 2;
1654                 }
1655         }
1656         else
1657         {
1658                 /* channel exists, just fish out a pointer to its struct */
1659                 Ptr = FindChan(cname);
1660                 if (Ptr)
1661                 {
1662                         log(DEBUG,"add_channel: joining to: %s",Ptr->name);
1663                         
1664                         // the override flag allows us to bypass channel modes
1665                         // and bans (used by servers)
1666                         if ((!override) || (!strcasecmp(user->server,ServerName)))
1667                         {
1668                                 log(DEBUG,"Not overriding...");
1669                                 MOD_RESULT = 0;
1670                                 FOREACH_RESULT(OnUserPreJoin(user,Ptr,cname));
1671                                 if (MOD_RESULT == 1) {
1672                                         return NULL;
1673                                 }
1674                                 log(DEBUG,"MOD_RESULT=%d",MOD_RESULT);
1675                                 
1676                                 if (!MOD_RESULT) 
1677                                 {
1678                                         log(DEBUG,"add_channel: checking key, invite, etc");
1679                                         MOD_RESULT = 0;
1680                                         FOREACH_RESULT(OnCheckKey(user, Ptr, key ? key : ""));
1681                                         if (MOD_RESULT == 0)
1682                                         {
1683                                                 if (Ptr->key[0])
1684                                                 {
1685                                                         log(DEBUG,"add_channel: %s has key %s",Ptr->name,Ptr->key);
1686                                                         if (!key)
1687                                                         {
1688                                                                 log(DEBUG,"add_channel: no key given in JOIN");
1689                                                                 WriteServ(user->fd,"475 %s %s :Cannot join channel (Requires key)",user->nick, Ptr->name);
1690                                                                 return NULL;
1691                                                         }
1692                                                         else
1693                                                         {
1694                                                                 if (strcasecmp(key,Ptr->key))
1695                                                                 {
1696                                                                         log(DEBUG,"add_channel: bad key given in JOIN");
1697                                                                         WriteServ(user->fd,"475 %s %s :Cannot join channel (Incorrect key)",user->nick, Ptr->name);
1698                                                                         return NULL;
1699                                                                 }
1700                                                         }
1701                                                 }
1702                                                 log(DEBUG,"add_channel: no key");
1703                                         }
1704                                         MOD_RESULT = 0;
1705                                         FOREACH_RESULT(OnCheckInvite(user, Ptr));
1706                                         if (MOD_RESULT == 0)
1707                                         {
1708                                                 if (Ptr->inviteonly)
1709                                                 {
1710                                                         log(DEBUG,"add_channel: channel is +i");
1711                                                         if (user->IsInvited(Ptr->name))
1712                                                         {
1713                                                                 /* user was invited to channel */
1714                                                                 /* there may be an optional channel NOTICE here */
1715                                                         }
1716                                                         else
1717                                                         {
1718                                                                 WriteServ(user->fd,"473 %s %s :Cannot join channel (Invite only)",user->nick, Ptr->name);
1719                                                                 return NULL;
1720                                                         }
1721                                                 }
1722                                                 log(DEBUG,"add_channel: channel is not +i");
1723                                         }
1724                                         MOD_RESULT = 0;
1725                                         FOREACH_RESULT(OnCheckLimit(user, Ptr));
1726                                         if (MOD_RESULT == 0)
1727                                         {
1728                                                 if (Ptr->limit)
1729                                                 {
1730                                                         if (usercount(Ptr) >= Ptr->limit)
1731                                                         {
1732                                                                 WriteServ(user->fd,"471 %s %s :Cannot join channel (Channel is full)",user->nick, Ptr->name);
1733                                                                 return NULL;
1734                                                         }
1735                                                 }
1736                                         }
1737                                         log(DEBUG,"add_channel: about to walk banlist");
1738                                         MOD_RESULT = 0;
1739                                         FOREACH_RESULT(OnCheckBan(user, Ptr));
1740                                         if (MOD_RESULT == 0)
1741                                         {
1742                                                 /* check user against the channel banlist */
1743                                                 if (Ptr)
1744                                                 {
1745                                                         if (Ptr->bans.size())
1746                                                         {
1747                                                                 for (BanList::iterator i = Ptr->bans.begin(); i != Ptr->bans.end(); i++)
1748                                                                 {
1749                                                                         if (match(user->GetFullHost(),i->data))
1750                                                                         {
1751                                                                                 WriteServ(user->fd,"474 %s %s :Cannot join channel (You're banned)",user->nick, Ptr->name);
1752                                                                                 return NULL;
1753                                                                         }
1754                                                                 }
1755                                                         }
1756                                                 }
1757                                                 log(DEBUG,"add_channel: bans checked");
1758                                         }
1759                                 
1760                                 }
1761                                 
1762
1763                                 if ((Ptr) && (user))
1764                                 {
1765                                         user->RemoveInvite(Ptr->name);
1766                                 }
1767         
1768                                 log(DEBUG,"add_channel: invites removed");
1769
1770                         }
1771                         else
1772                         {
1773                                 log(DEBUG,"Overridden checks");
1774                         }
1775
1776                         
1777                 }
1778                 created = 1;
1779         }
1780
1781         log(DEBUG,"Passed channel checks");
1782         
1783         for (int index =0; index != MAXCHANS; index++)
1784         {
1785                 log(DEBUG,"Check location %d",index);
1786                 if (user->chans[index].channel == NULL)
1787                 {
1788                         log(DEBUG,"Adding into their channel list at location %d",index);
1789
1790                         if (created == 2) 
1791                         {
1792                                 /* first user in is given ops */
1793                                 user->chans[index].uc_modes = UCMODE_OP;
1794                         }
1795                         else
1796                         {
1797                                 user->chans[index].uc_modes = 0;
1798                         }
1799                         user->chans[index].channel = Ptr;
1800                         Ptr->IncUserCounter();
1801                         Ptr->AddUser((char*)user);
1802                         WriteChannel(Ptr,user,"JOIN :%s",Ptr->name);
1803                         
1804                         if (!override) // we're not overriding... so this isnt part of a netburst, broadcast it.
1805                         {
1806                                 // use the stamdard J token with no privilages.
1807                                 char buffer[MAXBUF];
1808                                 if (created == 2)
1809                                 {
1810                                         snprintf(buffer,MAXBUF,"J %s @%s",user->nick,Ptr->name);
1811                                 }
1812                                 else
1813                                 {
1814                                         snprintf(buffer,MAXBUF,"J %s %s",user->nick,Ptr->name);
1815                                 }
1816                                 NetSendToAll(buffer);
1817                         }
1818
1819                         log(DEBUG,"Sent JOIN to client");
1820
1821                         if (Ptr->topicset)
1822                         {
1823                                 WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
1824                                 WriteServ(user->fd,"333 %s %s %s %lu", user->nick, Ptr->name, Ptr->setby, (unsigned long)Ptr->topicset);
1825                         }
1826                         userlist(user,Ptr);
1827                         WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
1828                         //WriteServ(user->fd,"324 %s %s +%s",user->nick, Ptr->name,chanmodes(Ptr));
1829                         //WriteServ(user->fd,"329 %s %s %lu", user->nick, Ptr->name, (unsigned long)Ptr->created);
1830                         FOREACH_MOD OnUserJoin(user,Ptr);
1831                         return Ptr;
1832                 }
1833         }
1834         log(DEBUG,"add_channel: user channel max exceeded: %s %s",user->nick,cname);
1835         WriteServ(user->fd,"405 %s %s :You are on too many channels",user->nick, cname);
1836         return NULL;
1837 }
1838
1839 /* remove a channel from a users record, and remove the record from memory
1840  * if the channel has become empty */
1841
1842 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local)
1843 {
1844         if ((!user) || (!cname))
1845         {
1846                 log(DEFAULT,"*** BUG *** del_channel was given an invalid parameter");
1847                 return NULL;
1848         }
1849
1850         chanrec* Ptr;
1851
1852         if ((!cname) || (!user))
1853         {
1854                 return NULL;
1855         }
1856
1857         Ptr = FindChan(cname);
1858         
1859         if (!Ptr)
1860         {
1861                 return NULL;
1862         }
1863
1864         FOREACH_MOD OnUserPart(user,Ptr);
1865         log(DEBUG,"del_channel: removing: %s %s",user->nick,Ptr->name);
1866         
1867         for (int i =0; i != MAXCHANS; i++)
1868         {
1869                 /* zap it from the channel list of the user */
1870                 if (user->chans[i].channel == Ptr)
1871                 {
1872                         if (reason)
1873                         {
1874                                 WriteChannel(Ptr,user,"PART %s :%s",Ptr->name, reason);
1875
1876                                 if (!local)
1877                                 {
1878                                         char buffer[MAXBUF];
1879                                         snprintf(buffer,MAXBUF,"L %s %s :%s",user->nick,Ptr->name,reason);
1880                                         NetSendToAll(buffer);
1881                                 }
1882
1883                                 
1884                         }
1885                         else
1886                         {
1887                                 if (!local)
1888                                 {
1889                                         char buffer[MAXBUF];
1890                                         snprintf(buffer,MAXBUF,"L %s %s :",user->nick,Ptr->name);
1891                                         NetSendToAll(buffer);
1892                                 }
1893                         
1894                                 WriteChannel(Ptr,user,"PART :%s",Ptr->name);
1895                         }
1896                         user->chans[i].uc_modes = 0;
1897                         user->chans[i].channel = NULL;
1898                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
1899                         break;
1900                 }
1901         }
1902
1903         Ptr->DelUser((char*)user);
1904         
1905         /* if there are no users left on the channel */
1906         if (!usercount(Ptr))
1907         {
1908                 chan_hash::iterator iter = chanlist.find(Ptr->name);
1909
1910                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
1911
1912                 /* kill the record */
1913                 if (iter != chanlist.end())
1914                 {
1915                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
1916                         delete Ptr;
1917                         chanlist.erase(iter);
1918                 }
1919         }
1920 }
1921
1922
1923 void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason)
1924 {
1925         if ((!src) || (!user) || (!Ptr) || (!reason))
1926         {
1927                 log(DEFAULT,"*** BUG *** kick_channel was given an invalid parameter");
1928                 return;
1929         }
1930
1931         if ((!Ptr) || (!user) || (!src))
1932         {
1933                 return;
1934         }
1935
1936         log(DEBUG,"kick_channel: removing: %s %s %s",user->nick,Ptr->name,src->nick);
1937
1938         if (!has_channel(user,Ptr))
1939         {
1940                 WriteServ(src->fd,"441 %s %s %s :They are not on that channel",src->nick, user->nick, Ptr->name);
1941                 return;
1942         }
1943
1944         int MOD_RESULT = 0;
1945         FOREACH_RESULT(OnAccessCheck(src,user,Ptr,AC_KICK));
1946         if (MOD_RESULT == ACR_DENY)
1947                 return;
1948
1949         if (MOD_RESULT == ACR_DEFAULT)
1950         {
1951                 if (((cstatus(src,Ptr) < STATUS_HOP) || (cstatus(src,Ptr) < cstatus(user,Ptr))) && (!is_uline(src->server)))
1952                 {
1953                         if (cstatus(src,Ptr) == STATUS_HOP)
1954                         {
1955                                 WriteServ(src->fd,"482 %s %s :You must be a channel operator",src->nick, Ptr->name);
1956                         }
1957                         else
1958                         {
1959                                 WriteServ(src->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",src->nick, Ptr->name);
1960                         }
1961                         
1962                         return;
1963                 }
1964         }
1965
1966         MOD_RESULT = 0;
1967         FOREACH_RESULT(OnUserPreKick(src,user,Ptr,reason));
1968         if (MOD_RESULT)
1969                 return;
1970
1971         FOREACH_MOD OnUserKick(src,user,Ptr,reason);
1972
1973         for (int i =0; i != MAXCHANS; i++)
1974         {
1975                 /* zap it from the channel list of the user */
1976                 if (user->chans[i].channel)
1977                 if (!strcasecmp(user->chans[i].channel->name,Ptr->name))
1978                 {
1979                         WriteChannel(Ptr,src,"KICK %s %s :%s",Ptr->name, user->nick, reason);
1980                         user->chans[i].uc_modes = 0;
1981                         user->chans[i].channel = NULL;
1982                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
1983                         break;
1984                 }
1985         }
1986
1987         Ptr->DelUser((char*)user);
1988
1989         /* if there are no users left on the channel */
1990         if (!usercount(Ptr))
1991         {
1992                 chan_hash::iterator iter = chanlist.find(Ptr->name);
1993
1994                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
1995
1996                 /* kill the record */
1997                 if (iter != chanlist.end())
1998                 {
1999                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
2000                         delete Ptr;
2001                         chanlist.erase(iter);
2002                 }
2003         }
2004 }
2005
2006
2007
2008
2009 /* This function pokes and hacks at a parameter list like the following:
2010  *
2011  * PART #winbot,#darkgalaxy :m00!
2012  *
2013  * to turn it into a series of individual calls like this:
2014  *
2015  * PART #winbot :m00!
2016  * PART #darkgalaxy :m00!
2017  *
2018  * The seperate calls are sent to a callback function provided by the caller
2019  * (the caller will usually call itself recursively). The callback function
2020  * must be a command handler. Calling this function on a line with no list causes
2021  * no action to be taken. You must provide a starting and ending parameter number
2022  * where the range of the list can be found, useful if you have a terminating
2023  * parameter as above which is actually not part of the list, or parameters
2024  * before the actual list as well. This code is used by many functions which
2025  * can function as "one to list" (see the RFC) */
2026
2027 int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins)
2028 {
2029         char plist[MAXBUF];
2030         char *param;
2031         char *pars[32];
2032         char blog[32][MAXBUF];
2033         char blog2[32][MAXBUF];
2034         int j = 0, q = 0, total = 0, t = 0, t2 = 0, total2 = 0;
2035         char keystr[MAXBUF];
2036         char moo[MAXBUF];
2037
2038         for (int i = 0; i <32; i++)
2039                 strcpy(blog[i],"");
2040
2041         for (int i = 0; i <32; i++)
2042                 strcpy(blog2[i],"");
2043
2044         strcpy(moo,"");
2045         for (int i = 0; i <10; i++)
2046         {
2047                 if (!parameters[i])
2048                 {
2049                         parameters[i] = moo;
2050                 }
2051         }
2052         if (joins)
2053         {
2054                 if (pcnt > 1) /* we have a key to copy */
2055                 {
2056                         strlcpy(keystr,parameters[1],MAXBUF);
2057                 }
2058         }
2059
2060         if (!parameters[start])
2061         {
2062                 return 0;
2063         }
2064         if (!strchr(parameters[start],','))
2065         {
2066                 return 0;
2067         }
2068         strcpy(plist,"");
2069         for (int i = start; i <= end; i++)
2070         {
2071                 if (parameters[i])
2072                 {
2073                         strlcat(plist,parameters[i],MAXBUF);
2074                 }
2075         }
2076         
2077         j = 0;
2078         param = plist;
2079
2080         t = strlen(plist);
2081         for (int i = 0; i < t; i++)
2082         {
2083                 if (plist[i] == ',')
2084                 {
2085                         plist[i] = '\0';
2086                         strlcpy(blog[j++],param,MAXBUF);
2087                         param = plist+i+1;
2088                         if (j>20)
2089                         {
2090                                 WriteServ(u->fd,"407 %s %s :Too many targets in list, message not delivered.",u->nick,blog[j-1]);
2091                                 return 1;
2092                         }
2093                 }
2094         }
2095         strlcpy(blog[j++],param,MAXBUF);
2096         total = j;
2097
2098         if ((joins) && (keystr) && (total>0)) // more than one channel and is joining
2099         {
2100                 strcat(keystr,",");
2101         }
2102         
2103         if ((joins) && (keystr))
2104         {
2105                 if (strchr(keystr,','))
2106                 {
2107                         j = 0;
2108                         param = keystr;
2109                         t2 = strlen(keystr);
2110                         for (int i = 0; i < t2; i++)
2111                         {
2112                                 if (keystr[i] == ',')
2113                                 {
2114                                         keystr[i] = '\0';
2115                                         strlcpy(blog2[j++],param,MAXBUF);
2116                                         param = keystr+i+1;
2117                                 }
2118                         }
2119                         strlcpy(blog2[j++],param,MAXBUF);
2120                         total2 = j;
2121                 }
2122         }
2123
2124         for (j = 0; j < total; j++)
2125         {
2126                 if (blog[j])
2127                 {
2128                         pars[0] = blog[j];
2129                 }
2130                 for (q = end; q < pcnt-1; q++)
2131                 {
2132                         if (parameters[q+1])
2133                         {
2134                                 pars[q-end+1] = parameters[q+1];
2135                         }
2136                 }
2137                 if ((joins) && (parameters[1]))
2138                 {
2139                         if (pcnt > 1)
2140                         {
2141                                 pars[1] = blog2[j];
2142                         }
2143                         else
2144                         {
2145                                 pars[1] = NULL;
2146                         }
2147                 }
2148                 /* repeatedly call the function with the hacked parameter list */
2149                 if ((joins) && (pcnt > 1))
2150                 {
2151                         if (pars[1])
2152                         {
2153                                 // pars[1] already set up and containing key from blog2[j]
2154                                 fn(pars,2,u);
2155                         }
2156                         else
2157                         {
2158                                 pars[1] = parameters[1];
2159                                 fn(pars,2,u);
2160                         }
2161                 }
2162                 else
2163                 {
2164                         fn(pars,pcnt-(end-start),u);
2165                 }
2166         }
2167
2168         return 1;
2169 }
2170
2171
2172
2173 void kill_link(userrec *user,const char* r)
2174 {
2175         user_hash::iterator iter = clientlist.find(user->nick);
2176         
2177         char reason[MAXBUF];
2178         
2179         strncpy(reason,r,MAXBUF);
2180
2181         if (strlen(reason)>MAXQUIT)
2182         {
2183                 reason[MAXQUIT-1] = '\0';
2184         }
2185
2186         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
2187         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
2188         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
2189
2190         if (user->registered == 7) {
2191                 FOREACH_MOD OnUserQuit(user);
2192                 WriteCommonExcept(user,"QUIT :%s",reason);
2193
2194                 // Q token must go to ALL servers!!!
2195                 char buffer[MAXBUF];
2196                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
2197                 NetSendToAll(buffer);
2198         }
2199
2200         FOREACH_MOD OnUserDisconnect(user);
2201
2202         if (user->fd > -1)
2203         {
2204                 FOREACH_MOD OnRawSocketClose(user->fd);
2205 #ifdef USE_KQUEUE
2206                 struct kevent ke;
2207                 EV_SET(&ke, user->fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
2208                 int i = kevent(kq, &ke, 1, 0, 0, NULL);
2209                 if (i == -1)
2210                 {
2211                         log(DEBUG,"kqueue: Failed to remove user from queue!");
2212                 }
2213 #endif
2214                 shutdown(user->fd,2);
2215                 close(user->fd);
2216         }
2217         
2218         if (user->registered == 7) {
2219                 WriteOpers("*** Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason);
2220                 AddWhoWas(user);
2221         }
2222
2223         if (user->registered == 7) {
2224                 purge_empty_chans(user);
2225         }
2226
2227         if (iter != clientlist.end())
2228         {
2229                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
2230                 if (user->fd > -1)
2231                         fd_ref_table[user->fd] = NULL;
2232                 clientlist.erase(iter);
2233         }
2234         delete user;
2235 }
2236
2237 void kill_link_silent(userrec *user,const char* r)
2238 {
2239         user_hash::iterator iter = clientlist.find(user->nick);
2240         
2241         char reason[MAXBUF];
2242         
2243         strncpy(reason,r,MAXBUF);
2244
2245         if (strlen(reason)>MAXQUIT)
2246         {
2247                 reason[MAXQUIT-1] = '\0';
2248         }
2249
2250         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
2251         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
2252         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
2253
2254         if (user->registered == 7) {
2255                 FOREACH_MOD OnUserQuit(user);
2256                 WriteCommonExcept(user,"QUIT :%s",reason);
2257
2258                 // Q token must go to ALL servers!!!
2259                 char buffer[MAXBUF];
2260                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
2261                 NetSendToAll(buffer);
2262         }
2263
2264         FOREACH_MOD OnUserDisconnect(user);
2265
2266         if (user->fd > -1)
2267         {
2268                 FOREACH_MOD OnRawSocketClose(user->fd);
2269 #ifdef USE_KQUEUE
2270                 struct kevent ke;
2271                 EV_SET(&ke, user->fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
2272                 int i = kevent(kq, &ke, 1, 0, 0, NULL);
2273                 if (i == -1)
2274                 {
2275                         log(DEBUG,"kqueue: Failed to remove user from queue!");
2276                 }
2277 #endif
2278                 shutdown(user->fd,2);
2279                 close(user->fd);
2280         }
2281
2282         if (user->registered == 7) {
2283                 purge_empty_chans(user);
2284         }
2285         
2286         if (iter != clientlist.end())
2287         {
2288                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
2289                 if (user->fd > -1)
2290                         fd_ref_table[user->fd] = NULL;
2291                 clientlist.erase(iter);
2292         }
2293         delete user;
2294 }
2295
2296
2297
2298 // looks up a users password for their connection class (<ALLOW>/<DENY> tags)
2299
2300 char* Passwd(userrec *user)
2301 {
2302         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2303         {
2304                 if (match(user->host,i->host) && (i->type == CC_ALLOW))
2305                 {
2306                         return i->pass;
2307                 }
2308         }
2309         return "";
2310 }
2311
2312 bool IsDenied(userrec *user)
2313 {
2314         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2315         {
2316                 if (match(user->host,i->host) && (i->type == CC_DENY))
2317                 {
2318                         return true;
2319                 }
2320         }
2321         return false;
2322 }
2323
2324
2325
2326
2327 /* sends out an error notice to all connected clients (not to be used
2328  * lightly!) */
2329
2330 void send_error(char *s)
2331 {
2332         log(DEBUG,"send_error: %s",s);
2333         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2334         {
2335                 if (isnick(i->second->nick))
2336                 {
2337                         WriteServ(i->second->fd,"NOTICE %s :%s",i->second->nick,s);
2338                 }
2339                 else
2340                 {
2341                         // fix - unregistered connections receive ERROR, not NOTICE
2342                         Write(i->second->fd,"ERROR :%s",s);
2343                 }
2344         }
2345 }
2346
2347 void Error(int status)
2348 {
2349         signal (SIGALRM, SIG_IGN);
2350         signal (SIGPIPE, SIG_IGN);
2351         signal (SIGTERM, SIG_IGN);
2352         signal (SIGABRT, SIG_IGN);
2353         signal (SIGSEGV, SIG_IGN);
2354         signal (SIGURG, SIG_IGN);
2355         signal (SIGKILL, SIG_IGN);
2356         log(DEFAULT,"*** fell down a pothole in the road to perfection ***");
2357         send_error("Error! Segmentation fault! save meeeeeeeeeeeeee *splat!*");
2358         Exit(status);
2359 }
2360
2361
2362 int main(int argc, char** argv)
2363 {
2364         Start();
2365         srand(time(NULL));
2366         log(DEBUG,"*** InspIRCd starting up!");
2367         if (!FileExists(CONFIG_FILE))
2368         {
2369                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
2370                 log(DEFAULT,"main: no config");
2371                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
2372                 Exit(ERROR);
2373         }
2374         if (argc > 1) {
2375                 for (int i = 1; i < argc; i++)
2376                 {
2377                         if (!strcmp(argv[i],"-nofork")) {
2378                                 nofork = true;
2379                         }
2380                         if (!strcmp(argv[i],"-wait")) {
2381                                 sleep(6);
2382                         }
2383                         if (!strcmp(argv[i],"-nolimit")) {
2384                                 unlimitcore = true;
2385                         }
2386                 }
2387         }
2388         strlcpy(MyExecutable,argv[0],MAXBUF);
2389         
2390         // initialize the lowercase mapping table
2391         for (int cn = 0; cn < 256; cn++)
2392                 lowermap[cn] = cn;
2393         // lowercase the uppercase chars
2394         for (int cn = 65; cn < 91; cn++)
2395                 lowermap[cn] = tolower(cn);
2396         // now replace the specific chars for scandanavian comparison
2397         lowermap['['] = '{';
2398         lowermap[']'] = '}';
2399         lowermap['\\'] = '|';
2400
2401         if (InspIRCd(argv,argc) == ERROR)
2402         {
2403                 log(DEFAULT,"main: daemon function bailed");
2404                 printf("ERROR: could not initialise. Shutting down.\n");
2405                 Exit(ERROR);
2406         }
2407         Exit(TRUE);
2408         return 0;
2409 }
2410
2411 template<typename T> inline string ConvToStr(const T &in)
2412 {
2413         stringstream tmp;
2414         if (!(tmp << in)) return string();
2415         return tmp.str();
2416 }
2417
2418 /* re-allocates a nick in the user_hash after they change nicknames,
2419  * returns a pointer to the new user as it may have moved */
2420
2421 userrec* ReHashNick(char* Old, char* New)
2422 {
2423         //user_hash::iterator newnick;
2424         user_hash::iterator oldnick = clientlist.find(Old);
2425
2426         log(DEBUG,"ReHashNick: %s %s",Old,New);
2427         
2428         if (!strcasecmp(Old,New))
2429         {
2430                 log(DEBUG,"old nick is new nick, skipping");
2431                 return oldnick->second;
2432         }
2433         
2434         if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
2435
2436         log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
2437
2438         userrec* olduser = oldnick->second;
2439         clientlist[New] = olduser;
2440         clientlist.erase(oldnick);
2441
2442         log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
2443         
2444         return clientlist[New];
2445 }
2446
2447 /* adds or updates an entry in the whowas list */
2448 void AddWhoWas(userrec* u)
2449 {
2450         user_hash::iterator iter = whowas.find(u->nick);
2451         userrec *a = new userrec();
2452         strlcpy(a->nick,u->nick,NICKMAX);
2453         strlcpy(a->ident,u->ident,64);
2454         strlcpy(a->dhost,u->dhost,256);
2455         strlcpy(a->host,u->host,256);
2456         strlcpy(a->fullname,u->fullname,128);
2457         strlcpy(a->server,u->server,256);
2458         a->signon = u->signon;
2459
2460         /* MAX_WHOWAS:   max number of /WHOWAS items
2461          * WHOWAS_STALE: number of hours before a WHOWAS item is marked as stale and
2462          *               can be replaced by a newer one
2463          */
2464         
2465         if (iter == whowas.end())
2466         {
2467                 if (whowas.size() >= WHOWAS_MAX)
2468                 {
2469                         for (user_hash::iterator i = whowas.begin(); i != whowas.end(); i++)
2470                         {
2471                                 // 3600 seconds in an hour ;)
2472                                 if ((i->second->signon)<(TIME-(WHOWAS_STALE*3600)))
2473                                 {
2474                                         // delete the old one
2475                                         if (i->second) delete i->second;
2476                                         // replace with new one
2477                                         i->second = a;
2478                                         log(DEBUG,"added WHOWAS entry, purged an old record");
2479                                         return;
2480                                 }
2481                         }
2482                         // no space left and user doesnt exist. Don't leave ram in use!
2483                         log(DEBUG,"Not able to update whowas (list at WHOWAS_MAX entries and trying to add new?), freeing excess ram");
2484                         delete a;
2485                 }
2486                 else
2487                 {
2488                         log(DEBUG,"added fresh WHOWAS entry");
2489                         whowas[a->nick] = a;
2490                 }
2491         }
2492         else
2493         {
2494                 log(DEBUG,"updated WHOWAS entry");
2495                 if (iter->second) delete iter->second;
2496                 iter->second = a;
2497         }
2498 }
2499
2500
2501 /* add a client connection to the sockets list */
2502 void AddClient(int socket, char* host, int port, bool iscached, char* ip)
2503 {
2504         string tempnick;
2505         char tn2[MAXBUF];
2506         user_hash::iterator iter;
2507
2508         tempnick = ConvToStr(socket) + "-unknown";
2509         sprintf(tn2,"%lu-unknown",(unsigned long)socket);
2510
2511         iter = clientlist.find(tempnick);
2512
2513         // fix by brain.
2514         // as these nicknames are 'RFC impossible', we can be sure nobody is going to be
2515         // using one as a registered connection. As theyre per fd, we can also safely assume
2516         // that we wont have collisions. Therefore, if the nick exists in the list, its only
2517         // used by a dead socket, erase the iterator so that the new client may reclaim it.
2518         // this was probably the cause of 'server ignores me when i hammer it with reconnects'
2519         // issue in earlier alphas/betas
2520         if (iter != clientlist.end())
2521         {
2522                 userrec* goner = iter->second;
2523                 delete goner;
2524                 clientlist.erase(iter);
2525         }
2526
2527         /*
2528          * It is OK to access the value here this way since we know
2529          * it exists, we just created it above.
2530          *
2531          * At NO other time should you access a value in a map or a
2532          * hash_map this way.
2533          */
2534         clientlist[tempnick] = new userrec();
2535
2536         NonBlocking(socket);
2537         log(DEBUG,"AddClient: %lu %s %d %s",(unsigned long)socket,host,port,ip);
2538
2539         clientlist[tempnick]->fd = socket;
2540         strncpy(clientlist[tempnick]->nick, tn2,NICKMAX);
2541         strncpy(clientlist[tempnick]->host, host,160);
2542         strncpy(clientlist[tempnick]->dhost, host,160);
2543         strncpy(clientlist[tempnick]->server, ServerName,256);
2544         strncpy(clientlist[tempnick]->ident, "unknown",12);
2545         clientlist[tempnick]->registered = 0;
2546         clientlist[tempnick]->signon = TIME+dns_timeout;
2547         clientlist[tempnick]->lastping = 1;
2548         clientlist[tempnick]->port = port;
2549         strncpy(clientlist[tempnick]->ip,ip,32);
2550
2551         // set the registration timeout for this user
2552         unsigned long class_regtimeout = 90;
2553         int class_flood = 0;
2554         long class_threshold = 5;
2555         long class_sqmax = 262144;      // 256kb
2556         long class_rqmax = 4096;        // 4k
2557
2558         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
2559         {
2560                 if (match(clientlist[tempnick]->host,i->host) && (i->type == CC_ALLOW))
2561                 {
2562                         class_regtimeout = (unsigned long)i->registration_timeout;
2563                         class_flood = i->flood;
2564                         clientlist[tempnick]->pingmax = i->pingtime;
2565                         class_threshold = i->threshold;
2566                         class_sqmax = i->sendqmax;
2567                         class_rqmax = i->recvqmax;
2568                         break;
2569                 }
2570         }
2571
2572         clientlist[tempnick]->nping = TIME+clientlist[tempnick]->pingmax+dns_timeout;
2573         clientlist[tempnick]->timeout = TIME+class_regtimeout;
2574         clientlist[tempnick]->flood = class_flood;
2575         clientlist[tempnick]->threshold = class_threshold;
2576         clientlist[tempnick]->sendqmax = class_sqmax;
2577         clientlist[tempnick]->recvqmax = class_rqmax;
2578
2579         for (int i = 0; i < MAXCHANS; i++)
2580         {
2581                 clientlist[tempnick]->chans[i].channel = NULL;
2582                 clientlist[tempnick]->chans[i].uc_modes = 0;
2583         }
2584
2585         if (clientlist.size() == MAXCLIENTS)
2586         {
2587                 kill_link(clientlist[tempnick],"No more connections allowed in this class");
2588                 return;
2589         }
2590
2591         // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
2592         // its a pretty big but for the moment valid assumption:
2593         // file descriptors are handed out starting at 0, and are recycled as theyre freed.
2594         // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
2595         // irc server at once (or the irc server otherwise initiating this many connections, files etc)
2596         // which for the time being is a physical impossibility (even the largest networks dont have more
2597         // than about 10,000 users on ONE server!)
2598         if (socket > 65534)
2599         {
2600                 kill_link(clientlist[tempnick],"Server is full");
2601                 return;
2602         }
2603                 
2604
2605         char* e = matches_exception(ip);
2606         if (!e)
2607         {
2608                 char* r = matches_zline(ip);
2609                 if (r)
2610                 {
2611                         char reason[MAXBUF];
2612                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
2613                         kill_link(clientlist[tempnick],reason);
2614                         return;
2615                 }
2616         }
2617         fd_ref_table[socket] = clientlist[tempnick];
2618
2619 #ifdef USE_KQUEUE
2620         struct kevent ke;
2621         log(DEBUG,"kqueue: Add user to events, kq=%d socket=%d",kq,socket);
2622         EV_SET(&ke, socket, EVFILT_READ, EV_ADD, 0, 0, NULL);
2623         int i = kevent(kq, &ke, 1, 0, 0, NULL);
2624         if (i == -1)
2625         {
2626                 switch (errno)
2627                 {
2628                         case EACCES:
2629                                 log(DEBUG,"kqueue: EACCES");
2630                         break;
2631                         case EFAULT:
2632                                 log(DEBUG,"kqueue: EFAULT");
2633                         break;
2634                         case EBADF:
2635                                 log(DEBUG,"kqueue: EBADF=%d",ke.ident);
2636                         break;
2637                         case EINTR:
2638                                 log(DEBUG,"kqueue: EINTR");
2639                         break;
2640                         case EINVAL:
2641                                 log(DEBUG,"kqueue: EINVAL");
2642                         break;
2643                         case ENOENT:
2644                                 log(DEBUG,"kqueue: ENOENT");
2645                         break;
2646                         case ENOMEM:
2647                                 log(DEBUG,"kqueue: ENOMEM");
2648                         break;
2649                         case ESRCH:
2650                                 log(DEBUG,"kqueue: ESRCH");
2651                         break;
2652                         default:
2653                                 log(DEBUG,"kqueue: UNKNOWN!");
2654                         break;
2655                 }
2656                 log(DEBUG,"kqueue: Failed to add user to queue!");
2657         }
2658
2659 #endif
2660 }
2661
2662 // this function counts all users connected, wether they are registered or NOT.
2663 int usercnt(void)
2664 {
2665         return clientlist.size();
2666 }
2667
2668 // this counts only registered users, so that the percentages in /MAP don't mess up when users are sitting in an unregistered state
2669 int registered_usercount(void)
2670 {
2671         int c = 0;
2672         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2673         {
2674                 if ((i->second->fd) && (isnick(i->second->nick))) c++;
2675         }
2676         return c;
2677 }
2678
2679 int usercount_invisible(void)
2680 {
2681         int c = 0;
2682
2683         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2684         {
2685                 if ((i->second->fd) && (isnick(i->second->nick)) && (strchr(i->second->modes,'i'))) c++;
2686         }
2687         return c;
2688 }
2689
2690 int usercount_opers(void)
2691 {
2692         int c = 0;
2693
2694         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2695         {
2696                 if ((i->second->fd) && (isnick(i->second->nick)) && (strchr(i->second->modes,'o'))) c++;
2697         }
2698         return c;
2699 }
2700
2701 int usercount_unknown(void)
2702 {
2703         int c = 0;
2704
2705         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2706         {
2707                 if ((i->second->fd) && (i->second->registered != 7))
2708                         c++;
2709         }
2710         return c;
2711 }
2712
2713 long chancount(void)
2714 {
2715         return chanlist.size();
2716 }
2717
2718 long count_servs(void)
2719 {
2720         int c = 0;
2721         for (int i = 0; i < 32; i++)
2722         {
2723                 if (me[i] != NULL)
2724                 {
2725                         for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
2726                         {
2727                                 if (strcasecmp(j->GetServerName().c_str(),ServerName))
2728                                 {
2729                                         c++;
2730                                 }
2731                         }
2732                 }
2733         }
2734         return c;
2735 }
2736
2737 long servercount(void)
2738 {
2739         return count_servs()+1;
2740 }
2741
2742 long local_count()
2743 {
2744         int c = 0;
2745         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
2746         {
2747                 if ((i->second->fd) && (isnick(i->second->nick)) && (!strcasecmp(i->second->server,ServerName))) c++;
2748         }
2749         return c;
2750 }
2751
2752
2753 void ShowMOTD(userrec *user)
2754 {
2755         char buf[65536];
2756         std::string WholeMOTD = "";
2757         if (!MOTD.size())
2758         {
2759                 WriteServ(user->fd,"422 %s :Message of the day file is missing.",user->nick);
2760                 return;
2761         }
2762         snprintf(buf,65535,":%s 375 %s :- %s message of the day\r\n", ServerName, user->nick, ServerName);
2763         WholeMOTD = WholeMOTD + buf;
2764         for (int i = 0; i != MOTD.size(); i++)
2765         {
2766                 snprintf(buf,65535,":%s 372 %s :- %s\r\n", ServerName, user->nick, MOTD[i].c_str());
2767                 WholeMOTD = WholeMOTD + buf;
2768         }
2769         snprintf(buf,65535,":%s 376 %s :End of message of the day.\r\n", ServerName, user->nick);
2770         WholeMOTD = WholeMOTD + buf;
2771         // only one write operation
2772         user->AddWriteBuf(WholeMOTD);
2773         statsSent += WholeMOTD.length();
2774 }
2775
2776 void ShowRULES(userrec *user)
2777 {
2778         if (!RULES.size())
2779         {
2780                 WriteServ(user->fd,"NOTICE %s :Rules file is missing.",user->nick);
2781                 return;
2782         }
2783         WriteServ(user->fd,"NOTICE %s :%s rules",user->nick,ServerName);
2784         for (int i = 0; i != RULES.size(); i++)
2785         {
2786                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,RULES[i].c_str());
2787         }
2788         WriteServ(user->fd,"NOTICE %s :End of %s rules.",user->nick,ServerName);
2789 }
2790
2791 /* shows the message of the day, and any other on-logon stuff */
2792 void FullConnectUser(userrec* user)
2793 {
2794         statsConnects++;
2795         user->idle_lastmsg = TIME;
2796         log(DEBUG,"ConnectUser: %s",user->nick);
2797
2798         if ((strcmp(Passwd(user),"")) && (!user->haspassed))
2799         {
2800                 kill_link(user,"Invalid password");
2801                 return;
2802         }
2803         if (IsDenied(user))
2804         {
2805                 kill_link(user,"Unauthorised connection");
2806                 return;
2807         }
2808
2809         char match_against[MAXBUF];
2810         snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
2811         char* e = matches_exception(match_against);
2812         if (!e)
2813         {
2814                 char* r = matches_gline(match_against);
2815                 if (r)
2816                 {
2817                         char reason[MAXBUF];
2818                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
2819                         kill_link_silent(user,reason);
2820                         return;
2821                 }
2822                 r = matches_kline(user->host);
2823                 if (r)
2824                 {
2825                         char reason[MAXBUF];
2826                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
2827                         kill_link_silent(user,reason);
2828                         return;
2829                 }
2830         }
2831
2832         // fix by brain: move this below the xline checks to prevent spurious quits going onto the net that dont belong
2833         user->registered = 7;
2834
2835         WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Network);
2836         WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Network,user->nick,user->ident,user->host);
2837         WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,ServerName,VERSION);
2838         WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
2839         WriteServ(user->fd,"004 %s %s %s iowghraAsORVSxNCWqBzvdHtGI lvhopsmntikrRcaqOALQbSeKVfHGCuzN",user->nick,ServerName,VERSION);
2840         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
2841         std::stringstream v;
2842         v << "MESHED WALLCHOPS MODES=13 CHANTYPES=# PREFIX=(ohv)@%+ MAP SAFELIST MAXCHANNELS=" << MAXCHANS;
2843         v << " MAXBANS=60 NICKLEN=" << NICKMAX;
2844         v << " TOPICLEN=307 KICKLEN=307 MAXTARGETS=20 AWAYLEN=307 CHANMODES=ohvb,k,l,psmnti NETWORK=";
2845         v << Network;
2846         std::string data005 = v.str();
2847         FOREACH_MOD On005Numeric(data005);
2848         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
2849         // so i'd better split it :)
2850         std::stringstream out(data005);
2851         std::string token = "";
2852         std::string line5 = "";
2853         int token_counter = 0;
2854         while (!out.eof())
2855         {
2856                 out >> token;
2857                 line5 = line5 + token + " ";
2858                 token_counter++;
2859                 if ((token_counter >= 13) || (out.eof() == true))
2860                 {
2861                         WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
2862                         line5 = "";
2863                         token_counter = 0;
2864                 }
2865         }
2866         ShowMOTD(user);
2867
2868         char buffer[MAXBUF];
2869         snprintf(buffer,MAXBUF,"N %lu %s %s %s %s +%s %s %s :%s",(unsigned long)user->age,user->nick,user->host,user->dhost,user->ident,user->modes,user->ip,ServerName,user->fullname);
2870         NetSendToAll(buffer);
2871
2872         // fix by brain: these should be AFTER the N token, so other servers know what the HELL we're on about... :)
2873         FOREACH_MOD OnUserConnect(user);
2874         WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,user->ip);
2875 }
2876
2877
2878 // this returns 1 when all modules are satisfied that the user should be allowed onto the irc server
2879 // (until this returns true, a user will block in the waiting state, waiting to connect up to the
2880 // registration timeout maximum seconds)
2881 bool AllModulesReportReady(userrec* user)
2882 {
2883         for (int i = 0; i <= MODCOUNT; i++)
2884         {
2885                 int res = modules[i]->OnCheckReady(user);
2886                         if (!res)
2887                                 return false;
2888         }
2889         return true;
2890 }
2891
2892 /* shows the message of the day, and any other on-logon stuff */
2893 void ConnectUser(userrec *user)
2894 {
2895         // dns is already done, things are fast. no need to wait for dns to complete just pass them straight on
2896         if ((user->dns_done) && (user->registered >= 3) && (AllModulesReportReady(user)))
2897         {
2898                 FullConnectUser(user);
2899         }
2900 }
2901
2902 std::string GetVersionString()
2903 {
2904         char Revision[] = "$Revision$";
2905         char versiondata[MAXBUF];
2906         char *s1 = Revision;
2907         char *savept;
2908         char *v2 = strtok_r(s1," ",&savept);
2909         s1 = savept;
2910         v2 = strtok_r(s1," ",&savept);
2911         s1 = savept;
2912 #ifdef USE_KQUEUE
2913         char socketengine[] = "kqueue";
2914 #else
2915         char socketengine[] = "select";
2916 #endif
2917         snprintf(versiondata,MAXBUF,"%s Rev. %s %s :%s (O=%lu) [SE=%s]",VERSION,v2,ServerName,SYSTEM,(unsigned long)OPTIMISATION,socketengine);
2918         return versiondata;
2919 }
2920
2921 void handle_version(char **parameters, int pcnt, userrec *user)
2922 {
2923         if (!pcnt)
2924         {
2925                 WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
2926         }
2927         else
2928         {
2929                 if (!strcmp(parameters[0],"*"))
2930                 {
2931                         for (int j = 0; j < 32; j++)
2932                         {
2933                                 if (me[j] != NULL)
2934                                 {
2935                                         for (int x = 0; x < me[j]->connectors.size(); x++)
2936                                         {
2937                                                 WriteServ(user->fd,"351 %s :Server %d:%d (%s): %s",user->nick,j,x,me[j]->connectors[x].GetServerName().c_str(),me[j]->connectors[x].GetVersionString().c_str());
2938                                         }
2939                                 }
2940                         }
2941                         return;
2942                 }
2943                 if (match(ServerName,parameters[0]))
2944                 {
2945                         WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
2946                         return;
2947                 }
2948                 bool displayed = false, found = false;
2949                 for (int j = 0; j < 32; j++)
2950                 {
2951                         if (me[j] != NULL)
2952                         {
2953                                 for (int x = 0; x < me[j]->connectors.size(); x++)
2954                                 {
2955                                         if (match(me[j]->connectors[x].GetServerName().c_str(),parameters[0]))
2956                                         {
2957                                                 found = true;
2958                                                 if ((me[j]->connectors[x].GetVersionString() != "") && (!displayed))
2959                                                 {
2960                                                         displayed = true;
2961                                                         WriteServ(user->fd,"351 %s :%s",user->nick,me[j]->connectors[x].GetVersionString().c_str());
2962                                                 }
2963                                         }
2964                                 }
2965                         }
2966                 }
2967                 if ((!displayed) && (found))
2968                 {
2969                         WriteServ(user->fd,"402 %s %s :Server %s has no version information",user->nick,parameters[0],parameters[0]);
2970                         return;
2971                 }
2972                 if (!found)
2973                 {
2974                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
2975                 }
2976         }
2977         return;
2978 }
2979
2980
2981 // calls a handler function for a command
2982
2983 void call_handler(const char* commandname,char **parameters, int pcnt, userrec *user)
2984 {
2985                 for (int i = 0; i < cmdlist.size(); i++)
2986                 {
2987                         if (!strcasecmp(cmdlist[i].command,commandname))
2988                         {
2989                                 if (cmdlist[i].handler_function)
2990                                 {
2991                                         if (pcnt>=cmdlist[i].min_params)
2992                                         {
2993                                                 if (strchr(user->modes,cmdlist[i].flags_needed))
2994                                                 {
2995                                                         cmdlist[i].handler_function(parameters,pcnt,user);
2996                                                 }
2997                                         }
2998                                 }
2999                         }
3000                 }
3001 }
3002
3003 void DoSplitEveryone()
3004 {
3005         bool go_again = true;
3006         while (go_again)
3007         {
3008                 go_again = false;
3009                 for (int i = 0; i < 32; i++)
3010                 {
3011                         if (me[i] != NULL)
3012                         {
3013                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
3014                                 {
3015                                         if (strcasecmp(j->GetServerName().c_str(),ServerName))
3016                                         {
3017                                                 j->routes.clear();
3018                                                 j->CloseConnection();
3019                                                 me[i]->connectors.erase(j);
3020                                                 go_again = true;
3021                                                 break;
3022                                         }
3023                                 }
3024                         }
3025                 }
3026         }
3027         log(DEBUG,"Removed server. Will remove clients...");
3028         // iterate through the userlist and remove all users on this server.
3029         // because we're dealing with a mesh, we dont have to deal with anything
3030         // "down-route" from this server (nice huh)
3031         go_again = true;
3032         char reason[MAXBUF];
3033         while (go_again)
3034         {
3035                 go_again = false;
3036                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
3037                 {
3038                         if (strcasecmp(u->second->server,ServerName))
3039                         {
3040                                 snprintf(reason,MAXBUF,"%s %s",ServerName,u->second->server);
3041                                 kill_link(u->second,reason);
3042                                 go_again = true;
3043                                 break;
3044                         }
3045                 }
3046         }
3047 }
3048
3049
3050
3051 char islast(const char* s)
3052 {
3053         char c = '`';
3054         for (int j = 0; j < 32; j++)
3055         {
3056                 if (me[j] != NULL)
3057                 {
3058                         for (int k = 0; k < me[j]->connectors.size(); k++)
3059                         {
3060                                 if (strcasecmp(me[j]->connectors[k].GetServerName().c_str(),s))
3061                                 {
3062                                         c = '|';
3063                                 }
3064                                 if (!strcasecmp(me[j]->connectors[k].GetServerName().c_str(),s))
3065                                 {
3066                                         c = '`';
3067                                 }
3068                         }
3069                 }
3070         }
3071         return c;
3072 }
3073
3074 long map_count(const char* s)
3075 {
3076         int c = 0;
3077         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
3078         {
3079                 if ((i->second->fd) && (isnick(i->second->nick)) && (!strcasecmp(i->second->server,s))) c++;
3080         }
3081         return c;
3082 }
3083
3084
3085 void force_nickchange(userrec* user,const char* newnick)
3086 {
3087         char nick[MAXBUF];
3088         int MOD_RESULT = 0;
3089         
3090         strcpy(nick,"");
3091
3092         FOREACH_RESULT(OnUserPreNick(user,newnick));
3093         if (MOD_RESULT) {
3094                 statsCollisions++;
3095                 kill_link(user,"Nickname collision");
3096                 return;
3097         }
3098         if (matches_qline(newnick))
3099         {
3100                 statsCollisions++;
3101                 kill_link(user,"Nickname collision");
3102                 return;
3103         }
3104         
3105         if (user)
3106         {
3107                 if (newnick)
3108                 {
3109                         strncpy(nick,newnick,MAXBUF);
3110                 }
3111                 if (user->registered == 7)
3112                 {
3113                         char* pars[1];
3114                         pars[0] = nick;
3115                         handle_nick(pars,1,user);
3116                 }
3117         }
3118 }
3119                                 
3120
3121 int process_parameters(char **command_p,char *parameters)
3122 {
3123         int j = 0;
3124         int q = strlen(parameters);
3125         if (!q)
3126         {
3127                 /* no parameters, command_p invalid! */
3128                 return 0;
3129         }
3130         if (parameters[0] == ':')
3131         {
3132                 command_p[0] = parameters+1;
3133                 return 1;
3134         }
3135         if (q)
3136         {
3137                 if ((strchr(parameters,' ')==NULL) || (parameters[0] == ':'))
3138                 {
3139                         /* only one parameter */
3140                         command_p[0] = parameters;
3141                         if (parameters[0] == ':')
3142                         {
3143                                 if (strchr(parameters,' ') != NULL)
3144                                 {
3145                                         command_p[0]++;
3146                                 }
3147                         }
3148                         return 1;
3149                 }
3150         }
3151         command_p[j++] = parameters;
3152         for (int i = 0; i <= q; i++)
3153         {
3154                 if (parameters[i] == ' ')
3155                 {
3156                         command_p[j++] = parameters+i+1;
3157                         parameters[i] = '\0';
3158                         if (command_p[j-1][0] == ':')
3159                         {
3160                                 *command_p[j-1]++; /* remove dodgy ":" */
3161                                 break;
3162                                 /* parameter like this marks end of the sequence */
3163                         }
3164                 }
3165         }
3166         return j; /* returns total number of items in the list */
3167 }
3168
3169 void process_command(userrec *user, char* cmd)
3170 {
3171         char *parameters;
3172         char *command;
3173         char *command_p[127];
3174         char p[MAXBUF], temp[MAXBUF];
3175         int j, items, cmd_found;
3176
3177         for (int i = 0; i < 127; i++)
3178                 command_p[i] = NULL;
3179
3180         if (!user)
3181         {
3182                 return;
3183         }
3184         if (!cmd)
3185         {
3186                 return;
3187         }
3188         if (!cmd[0])
3189         {
3190                 return;
3191         }
3192         
3193         int total_params = 0;
3194         if (strlen(cmd)>2)
3195         {
3196                 for (int q = 0; q < strlen(cmd)-1; q++)
3197                 {
3198                         if ((cmd[q] == ' ') && (cmd[q+1] == ':'))
3199                         {
3200                                 total_params++;
3201                                 // found a 'trailing', we dont count them after this.
3202                                 break;
3203                         }
3204                         if (cmd[q] == ' ')
3205                                 total_params++;
3206                 }
3207         }
3208
3209         // another phidjit bug...
3210         if (total_params > 126)
3211         {
3212                 *(strchr(cmd,' ')) = '\0';
3213                 WriteServ(user->fd,"421 %s %s :Too many parameters given",user->nick,cmd);
3214                 return;
3215         }
3216
3217         strlcpy(temp,cmd,MAXBUF);
3218         
3219         std::string tmp = cmd;
3220         for (int i = 0; i <= MODCOUNT; i++)
3221         {
3222                 std::string oldtmp = tmp;
3223                 modules[i]->OnServerRaw(tmp,true,user);
3224                 if (oldtmp != tmp)
3225                 {
3226                         log(DEBUG,"A Module changed the input string!");
3227                         log(DEBUG,"New string: %s",tmp.c_str());
3228                         log(DEBUG,"Old string: %s",oldtmp.c_str());
3229                         break;
3230                 }
3231         }
3232         strlcpy(cmd,tmp.c_str(),MAXBUF);
3233         strlcpy(temp,cmd,MAXBUF);
3234
3235         if (!strchr(cmd,' '))
3236         {
3237                 /* no parameters, lets skip the formalities and not chop up
3238                  * the string */
3239                 log(DEBUG,"About to preprocess command with no params");
3240                 items = 0;
3241                 command_p[0] = NULL;
3242                 parameters = NULL;
3243                 for (int i = 0; i <= strlen(cmd); i++)
3244                 {
3245                         cmd[i] = toupper(cmd[i]);
3246                 }
3247                 command = cmd;
3248         }
3249         else
3250         {
3251                 strcpy(cmd,"");
3252                 j = 0;
3253                 /* strip out extraneous linefeeds through mirc's crappy pasting (thanks Craig) */
3254                 for (int i = 0; i < strlen(temp); i++)
3255                 {
3256                         if ((temp[i] != 10) && (temp[i] != 13) && (temp[i] != 0) && (temp[i] != 7))
3257                         {
3258                                 cmd[j++] = temp[i];
3259                                 cmd[j] = 0;
3260                         }
3261                 }
3262                 /* split the full string into a command plus parameters */
3263                 parameters = p;
3264                 strcpy(p," ");
3265                 command = cmd;
3266                 if (strchr(cmd,' '))
3267                 {
3268                         for (int i = 0; i <= strlen(cmd); i++)
3269                         {
3270                                 /* capitalise the command ONLY, leave params intact */
3271                                 cmd[i] = toupper(cmd[i]);
3272                                 /* are we nearly there yet?! :P */
3273                                 if (cmd[i] == ' ')
3274                                 {
3275                                         command = cmd;
3276                                         parameters = cmd+i+1;
3277                                         cmd[i] = '\0';
3278                                         break;
3279                                 }
3280                         }
3281                 }
3282                 else
3283                 {
3284                         for (int i = 0; i <= strlen(cmd); i++)
3285                         {
3286                                 cmd[i] = toupper(cmd[i]);
3287                         }
3288                 }
3289
3290         }
3291         cmd_found = 0;
3292         
3293         if (strlen(command)>MAXCOMMAND)
3294         {
3295                 WriteServ(user->fd,"421 %s %s :Command too long",user->nick,command);
3296                 return;
3297         }
3298         
3299         for (int x = 0; x < strlen(command); x++)
3300         {
3301                 if (((command[x] < 'A') || (command[x] > 'Z')) && (command[x] != '.'))
3302                 {
3303                         if (((command[x] < '0') || (command[x]> '9')) && (command[x] != '-'))
3304                         {
3305                                 if (strchr("@!\"$%^&*(){}[]_=+;:'#~,<>/?\\|`",command[x]))
3306                                 {
3307                                         statsUnknown++;
3308                                         WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
3309                                         return;
3310                                 }
3311                         }
3312                 }
3313         }
3314
3315         for (int i = 0; i != cmdlist.size(); i++)
3316         {
3317                 if (cmdlist[i].command[0])
3318                 {
3319                         if (strlen(command)>=(strlen(cmdlist[i].command))) if (!strncmp(command, cmdlist[i].command,MAXCOMMAND))
3320                         {
3321                                 if (parameters)
3322                                 {
3323                                         if (parameters[0])
3324                                         {
3325                                                 items = process_parameters(command_p,parameters);
3326                                         }
3327                                         else
3328                                         {
3329                                                 items = 0;
3330                                                 command_p[0] = NULL;
3331                                         }
3332                                 }
3333                                 else
3334                                 {
3335                                         items = 0;
3336                                         command_p[0] = NULL;
3337                                 }
3338                                 
3339                                 if (user)
3340                                 {
3341                                         /* activity resets the ping pending timer */
3342                                         user->nping = TIME + user->pingmax;
3343                                         if ((items) < cmdlist[i].min_params)
3344                                         {
3345                                                 log(DEBUG,"process_command: not enough parameters: %s %s",user->nick,command);
3346                                                 WriteServ(user->fd,"461 %s %s :Not enough parameters",user->nick,command);
3347                                                 return;
3348                                         }
3349                                         if ((!strchr(user->modes,cmdlist[i].flags_needed)) && (cmdlist[i].flags_needed))
3350                                         {
3351                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
3352                                                 WriteServ(user->fd,"481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
3353                                                 cmd_found = 1;
3354                                                 return;
3355                                         }
3356                                         if ((cmdlist[i].flags_needed) && (!user->HasPermission(command)))
3357                                         {
3358                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
3359                                                 WriteServ(user->fd,"481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command);
3360                                                 cmd_found = 1;
3361                                                 return;
3362                                         }
3363                                         /* if the command isnt USER, PASS, or NICK, and nick is empty,
3364                                          * deny command! */
3365                                         if ((strncmp(command,"USER",4)) && (strncmp(command,"NICK",4)) && (strncmp(command,"PASS",4)))
3366                                         {
3367                                                 if ((!isnick(user->nick)) || (user->registered != 7))
3368                                                 {
3369                                                         log(DEBUG,"process_command: not registered: %s %s",user->nick,command);
3370                                                         WriteServ(user->fd,"451 %s :You have not registered",command);
3371                                                         return;
3372                                                 }
3373                                         }
3374                                         if ((user->registered == 7) && (!strchr(user->modes,'o')))
3375                                         {
3376                                                 char* mycmd;
3377                                                 char* savept2;
3378                                                 mycmd = strtok_r(DisabledCommands," ",&savept2);
3379                                                 while (mycmd)
3380                                                 {
3381                                                         if (!strcasecmp(mycmd,command))
3382                                                         {
3383                                                                 // command is disabled!
3384                                                                 WriteServ(user->fd,"421 %s %s :This command has been disabled.",user->nick,command);
3385                                                                 return;
3386                                                         }
3387                                                         mycmd = strtok_r(NULL," ",&savept2);
3388                                                 }
3389         
3390
3391                                         }
3392                                         if ((user->registered == 7) || (!strncmp(command,"USER",4)) || (!strncmp(command,"NICK",4)) || (!strncmp(command,"PASS",4)))
3393                                         {
3394                                                 if (cmdlist[i].handler_function)
3395                                                 {
3396                                                         
3397                                                         /* ikky /stats counters */
3398                                                         if (temp)
3399                                                         {
3400                                                                 cmdlist[i].use_count++;
3401                                                                 cmdlist[i].total_bytes+=strlen(temp);
3402                                                         }
3403
3404                                                         int MOD_RESULT = 0;
3405                                                         FOREACH_RESULT(OnPreCommand(command,command_p,items,user));
3406                                                         if (MOD_RESULT == 1) {
3407                                                                 return;
3408                                                         }
3409
3410                                                         /* WARNING: nothing may come after the
3411                                                          * command handler call, as the handler
3412                                                          * may free the user structure! */
3413
3414                                                         cmdlist[i].handler_function(command_p,items,user);
3415                                                 }
3416                                                 return;
3417                                         }
3418                                         else
3419                                         {
3420                                                 WriteServ(user->fd,"451 %s :You have not registered",command);
3421                                                 return;
3422                                         }
3423                                 }
3424                                 cmd_found = 1;
3425                         }
3426                 }
3427         }
3428         if ((!cmd_found) && (user))
3429         {
3430                 statsUnknown++;
3431                 WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
3432         }
3433 }
3434
3435
3436 void createcommand(char* cmd, handlerfunc f, char flags, int minparams,char* source)
3437 {
3438         command_t comm;
3439         /* create the command and push it onto the table */     
3440         strlcpy(comm.command,cmd,MAXBUF);
3441         strlcpy(comm.source,source,MAXBUF);
3442         comm.handler_function = f;
3443         comm.flags_needed = flags;
3444         comm.min_params = minparams;
3445         comm.use_count = 0;
3446         comm.total_bytes = 0;
3447         cmdlist.push_back(comm);
3448         log(DEBUG,"Added command %s (%lu parameters)",cmd,(unsigned long)minparams);
3449 }
3450
3451 bool removecommands(const char* source)
3452 {
3453         bool go_again = true;
3454         while (go_again)
3455         {
3456                 go_again = false;
3457                 for (std::deque<command_t>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
3458                 {
3459                         if (!strcmp(i->source,source))
3460                         {
3461                                 log(DEBUG,"removecommands(%s) Removing dependent command: %s",i->source,i->command);
3462                                 cmdlist.erase(i);
3463                                 go_again = true;
3464                                 break;
3465                         }
3466                 }
3467         }
3468         return true;
3469 }
3470
3471 void SetupCommandTable(void)
3472 {
3473         createcommand("USER",handle_user,0,4,"<core>");
3474         createcommand("NICK",handle_nick,0,1,"<core>");
3475         createcommand("QUIT",handle_quit,0,0,"<core>");
3476         createcommand("VERSION",handle_version,0,0,"<core>");
3477         createcommand("PING",handle_ping,0,1,"<core>");
3478         createcommand("PONG",handle_pong,0,1,"<core>");
3479         createcommand("ADMIN",handle_admin,0,0,"<core>");
3480         createcommand("PRIVMSG",handle_privmsg,0,2,"<core>");
3481         createcommand("INFO",handle_info,0,0,"<core>");
3482         createcommand("TIME",handle_time,0,0,"<core>");
3483         createcommand("WHOIS",handle_whois,0,1,"<core>");
3484         createcommand("WALLOPS",handle_wallops,'o',1,"<core>");
3485         createcommand("NOTICE",handle_notice,0,2,"<core>");
3486         createcommand("JOIN",handle_join,0,1,"<core>");
3487         createcommand("NAMES",handle_names,0,0,"<core>");
3488         createcommand("PART",handle_part,0,1,"<core>");
3489         createcommand("KICK",handle_kick,0,2,"<core>");
3490         createcommand("MODE",handle_mode,0,1,"<core>");
3491         createcommand("TOPIC",handle_topic,0,1,"<core>");
3492         createcommand("WHO",handle_who,0,1,"<core>");
3493         createcommand("MOTD",handle_motd,0,0,"<core>");
3494         createcommand("RULES",handle_rules,0,0,"<core>");
3495         createcommand("OPER",handle_oper,0,2,"<core>");
3496         createcommand("LIST",handle_list,0,0,"<core>");
3497         createcommand("DIE",handle_die,'o',1,"<core>");
3498         createcommand("RESTART",handle_restart,'o',1,"<core>");
3499         createcommand("KILL",handle_kill,'o',2,"<core>");
3500         createcommand("REHASH",handle_rehash,'o',0,"<core>");
3501         createcommand("LUSERS",handle_lusers,0,0,"<core>");
3502         createcommand("STATS",handle_stats,0,1,"<core>");
3503         createcommand("USERHOST",handle_userhost,0,1,"<core>");
3504         createcommand("AWAY",handle_away,0,0,"<core>");
3505         createcommand("ISON",handle_ison,0,0,"<core>");
3506         createcommand("SUMMON",handle_summon,0,0,"<core>");
3507         createcommand("USERS",handle_users,0,0,"<core>");
3508         createcommand("INVITE",handle_invite,0,2,"<core>");
3509         createcommand("PASS",handle_pass,0,1,"<core>");
3510         createcommand("TRACE",handle_trace,'o',0,"<core>");
3511         createcommand("WHOWAS",handle_whowas,0,1,"<core>");
3512         createcommand("CONNECT",handle_connect,'o',1,"<core>");
3513         createcommand("SQUIT",handle_squit,'o',0,"<core>");
3514         createcommand("MODULES",handle_modules,0,0,"<core>");
3515         createcommand("LINKS",handle_links,0,0,"<core>");
3516         createcommand("MAP",handle_map,0,0,"<core>");
3517         createcommand("KLINE",handle_kline,'o',1,"<core>");
3518         createcommand("GLINE",handle_gline,'o',1,"<core>");
3519         createcommand("ZLINE",handle_zline,'o',1,"<core>");
3520         createcommand("QLINE",handle_qline,'o',1,"<core>");
3521         createcommand("ELINE",handle_eline,'o',1,"<core>");
3522         createcommand("LOADMODULE",handle_loadmodule,'o',1,"<core>");
3523         createcommand("UNLOADMODULE",handle_unloadmodule,'o',1,"<core>");
3524         createcommand("SERVER",handle_server,0,0,"<core>");
3525 }
3526
3527 void process_buffer(const char* cmdbuf,userrec *user)
3528 {
3529         if (!user)
3530         {
3531                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
3532                 return;
3533         }
3534         char cmd[MAXBUF];
3535         if (!cmdbuf)
3536         {
3537                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
3538                 return;
3539         }
3540         if (!cmdbuf[0])
3541         {
3542                 return;
3543         }
3544         while (*cmdbuf == ' ') cmdbuf++; // strip leading spaces
3545
3546         strlcpy(cmd,cmdbuf,MAXBUF);
3547         if (!cmd[0])
3548         {
3549                 return;
3550         }
3551         int sl = strlen(cmd)-1;
3552         if ((cmd[sl] == 13) || (cmd[sl] == 10))
3553         {
3554                 cmd[sl] = '\0';
3555         }
3556         sl = strlen(cmd)-1;
3557         if ((cmd[sl] == 13) || (cmd[sl] == 10))
3558         {
3559                 cmd[sl] = '\0';
3560         }
3561         sl = strlen(cmd)-1;
3562         while (cmd[sl] == ' ') // strip trailing spaces
3563         {
3564                 cmd[sl] = '\0';
3565                 sl = strlen(cmd)-1;
3566         }
3567
3568         if (!cmd[0])
3569         {
3570                 return;
3571         }
3572         log(DEBUG,"CMDIN: %s %s",user->nick,cmd);
3573         tidystring(cmd);
3574         if ((user) && (cmd))
3575         {
3576                 process_command(user,cmd);
3577         }
3578 }
3579
3580 void DoSync(serverrec* serv, char* tcp_host)
3581 {
3582         char data[MAXBUF];
3583         log(DEBUG,"Sending sync");
3584         // send start of sync marker: Y <timestamp>
3585         // at this point the ircd receiving it starts broadcasting this netburst to all ircds
3586         // except the ones its receiving it from.
3587         snprintf(data,MAXBUF,"Y %lu",(unsigned long)TIME);
3588         serv->SendPacket(data,tcp_host);
3589         // send users and channels
3590
3591         NetSendMyRoutingTable();
3592
3593         // send all routing table and uline voodoo. The ordering of these commands is IMPORTANT!
3594         for (int j = 0; j < 32; j++)
3595         {
3596                 if (me[j] != NULL)
3597                 {
3598                         for (int k = 0; k < me[j]->connectors.size(); k++)
3599                         {
3600                                 if (is_uline(me[j]->connectors[k].GetServerName().c_str()))
3601                                 {
3602                                         snprintf(data,MAXBUF,"H %s",me[j]->connectors[k].GetServerName().c_str());
3603                                         serv->SendPacket(data,tcp_host);
3604                                 }
3605                         }
3606                 }
3607         }
3608
3609         // send our version for the remote side to cache
3610         snprintf(data,MAXBUF,"v %s %s",ServerName,GetVersionString().c_str());
3611         serv->SendPacket(data,tcp_host);
3612
3613         // sync the users and channels, give the modules a look-in.
3614         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
3615         {
3616                 snprintf(data,MAXBUF,"N %lu %s %s %s %s +%s %s %s :%s",(unsigned long)u->second->age,u->second->nick,u->second->host,u->second->dhost,u->second->ident,u->second->modes,u->second->ip,u->second->server,u->second->fullname);
3617                 serv->SendPacket(data,tcp_host);
3618                 if (strchr(u->second->modes,'o'))
3619                 {
3620                         snprintf(data,MAXBUF,"| %s %s",u->second->nick,u->second->oper);
3621                         serv->SendPacket(data,tcp_host);
3622                 }
3623                 for (int i = 0; i <= MODCOUNT; i++)
3624                 {
3625                         string_list l = modules[i]->OnUserSync(u->second);
3626                         for (int j = 0; j < l.size(); j++)
3627                         {
3628                                 strlcpy(data,l[j].c_str(),MAXBUF);
3629                                 serv->SendPacket(data,tcp_host);
3630                         }
3631                 }
3632                 char* chl = chlist(u->second,u->second);
3633                 if (strcmp(chl,""))
3634                 {
3635                         snprintf(data,MAXBUF,"J %s %s",u->second->nick,chl);
3636                         serv->SendPacket(data,tcp_host);
3637                 }
3638         }
3639         // send channel modes, topics etc...
3640         for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
3641         {
3642                 snprintf(data,MAXBUF,"M %s +%s",c->second->name,chanmodes(c->second));
3643                 serv->SendPacket(data,tcp_host);
3644                 for (int i = 0; i <= MODCOUNT; i++)
3645                 {
3646                         string_list l = modules[i]->OnChannelSync(c->second);
3647                         for (int j = 0; j < l.size(); j++)
3648                         {
3649                                 strlcpy(data,l[j].c_str(),MAXBUF);
3650                                 serv->SendPacket(data,tcp_host);
3651                         }
3652                 }
3653                 if (c->second->topic[0])
3654                 {
3655                         snprintf(data,MAXBUF,"T %lu %s %s :%s",(unsigned long)c->second->topicset,c->second->setby,c->second->name,c->second->topic);
3656                         serv->SendPacket(data,tcp_host);
3657                 }
3658                 // send current banlist
3659                 
3660                 for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
3661                 {
3662                         snprintf(data,MAXBUF,"M %s +b %s",c->second->name,b->data);
3663                         serv->SendPacket(data,tcp_host);
3664                 }
3665         }
3666         // sync global zlines, glines, etc
3667         sync_xlines(serv,tcp_host);
3668
3669         snprintf(data,MAXBUF,"F %lu",(unsigned long)TIME);
3670         serv->SendPacket(data,tcp_host);
3671         log(DEBUG,"Sent sync");
3672         // ircd sends its serverlist after the end of sync here
3673 }
3674
3675
3676 void NetSendMyRoutingTable()
3677 {
3678         // send out a line saying what is reachable to us.
3679         // E.g. if A is linked to B C and D, send out:
3680         // $ A B C D
3681         // if its only linked to B and D send out:
3682         // $ A B D
3683         // if it has no links, dont even send out the line at all.
3684         char buffer[MAXBUF];
3685         snprintf(buffer,MAXBUF,"$ %s",ServerName);
3686         bool sendit = false;
3687         for (int i = 0; i < 32; i++)
3688         {
3689                 if (me[i] != NULL)
3690                 {
3691                         for (int j = 0; j < me[i]->connectors.size(); j++)
3692                         {
3693                                 if ((me[i]->connectors[j].GetState() != STATE_DISCONNECTED) || (is_uline(me[i]->connectors[j].GetServerName().c_str())))
3694                                 {
3695                                         strlcat(buffer," ",MAXBUF);
3696                                         strlcat(buffer,me[i]->connectors[j].GetServerName().c_str(),MAXBUF);
3697                                         sendit = true;
3698                                 }
3699                         }
3700                 }
3701         }
3702         if (sendit)
3703                 NetSendToAll(buffer);
3704 }
3705
3706
3707 void DoSplit(const char* params)
3708 {
3709         bool go_again = true;
3710         while (go_again)
3711         {
3712                 go_again = false;
3713                 for (int i = 0; i < 32; i++)
3714                 {
3715                         if (me[i] != NULL)
3716                         {
3717                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
3718                                 {
3719                                         if (!strcasecmp(j->GetServerName().c_str(),params))
3720                                         {
3721                                                 j->routes.clear();
3722                                                 j->CloseConnection();
3723                                                 me[i]->connectors.erase(j);
3724                                                 go_again = true;
3725                                                 break;
3726                                         }
3727                                 }
3728                         }
3729                 }
3730         }
3731         log(DEBUG,"Removed server. Will remove clients...");
3732         // iterate through the userlist and remove all users on this server.
3733         // because we're dealing with a mesh, we dont have to deal with anything
3734         // "down-route" from this server (nice huh)
3735         go_again = true;
3736         char reason[MAXBUF];
3737         snprintf(reason,MAXBUF,"%s %s",ServerName,params);
3738         while (go_again)
3739         {
3740                 go_again = false;
3741                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
3742                 {
3743                         if (!strcasecmp(u->second->server,params))
3744                         {
3745                                 kill_link(u->second,reason);
3746                                 go_again = true;
3747                                 break;
3748                         }
3749                 }
3750         }
3751 }
3752
3753 // removes a server. Will NOT remove its users!
3754
3755 void RemoveServer(const char* name)
3756 {
3757         bool go_again = true;
3758         while (go_again)
3759         {
3760                 go_again = false;
3761                 for (int i = 0; i < 32; i++)
3762                 {
3763                         if (me[i] != NULL)
3764                         {
3765                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
3766                                 {
3767                                         if (!strcasecmp(j->GetServerName().c_str(),name))
3768                                         {
3769                                                 j->routes.clear();
3770                                                 j->CloseConnection();
3771                                                 me[i]->connectors.erase(j);
3772                                                 go_again = true;
3773                                                 break;
3774                                         }
3775                                 }
3776                         }
3777                 }
3778         }
3779 }
3780
3781
3782 char MODERR[MAXBUF];
3783
3784 char* ModuleError()
3785 {
3786         return MODERR;
3787 }
3788
3789 void erase_factory(int j)
3790 {
3791         int v = 0;
3792         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
3793         {
3794                 if (v == j)
3795                 {
3796                         factory.erase(t);
3797                         factory.push_back(NULL);
3798                         return;
3799                 }
3800                 v++;
3801         }
3802 }
3803
3804 void erase_module(int j)
3805 {
3806         int v1 = 0;
3807         for (std::vector<Module*>::iterator m = modules.begin(); m!= modules.end(); m++)
3808         {
3809                 if (v1 == j)
3810                 {
3811                         delete *m;
3812                         modules.erase(m);
3813                         modules.push_back(NULL);
3814                         break;
3815                 }
3816                 v1++;
3817         }
3818         int v2 = 0;
3819         for (std::vector<std::string>::iterator v = module_names.begin(); v != module_names.end(); v++)
3820         {
3821                 if (v2 == j)
3822                 {
3823                        module_names.erase(v);
3824                        break;
3825                 }
3826                 v2++;
3827         }
3828
3829 }
3830
3831 bool UnloadModule(const char* filename)
3832 {
3833         std::string filename_str = filename;
3834         for (int j = 0; j != module_names.size(); j++)
3835         {
3836                 if (module_names[j] == filename_str)
3837                 {
3838                         if (modules[j]->GetVersion().Flags & VF_STATIC)
3839                         {
3840                                 log(DEFAULT,"Failed to unload STATIC module %s",filename);
3841                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
3842                                 return false;
3843                         }
3844                         // found the module
3845                         log(DEBUG,"Deleting module...");
3846                         erase_module(j);
3847                         log(DEBUG,"Erasing module entry...");
3848                         erase_factory(j);
3849                         log(DEBUG,"Removing dependent commands...");
3850                         removecommands(filename);
3851                         log(DEFAULT,"Module %s unloaded",filename);
3852                         MODCOUNT--;
3853                         return true;
3854                 }
3855         }
3856         log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
3857         snprintf(MODERR,MAXBUF,"Module not loaded");
3858         return false;
3859 }
3860
3861 bool DirValid(char* dirandfile)
3862 {
3863         char work[MAXBUF];
3864         strlcpy(work,dirandfile,MAXBUF);
3865         int p = strlen(work);
3866         // we just want the dir
3867         while (strlen(work))
3868         {
3869                 if (work[p] == '/')
3870                 {
3871                         work[p] = '\0';
3872                         break;
3873                 }
3874                 work[p--] = '\0';
3875         }
3876         char buffer[MAXBUF], otherdir[MAXBUF];
3877         // Get the current working directory
3878         if( getcwd( buffer, MAXBUF ) == NULL )
3879                 return false;
3880         chdir(work);
3881         if( getcwd( otherdir, MAXBUF ) == NULL )
3882                 return false;
3883         chdir(buffer);
3884         if (strlen(otherdir) >= strlen(work))
3885         {
3886                 otherdir[strlen(work)] = '\0';
3887                 if (!strcmp(otherdir,work))
3888                 {
3889                         return true;
3890                 }
3891                 return false;
3892         }
3893         else return false;
3894 }
3895
3896 std::string GetFullProgDir(char** argv, int argc)
3897 {
3898         char work[MAXBUF];
3899         strlcpy(work,argv[0],MAXBUF);
3900         int p = strlen(work);
3901         // we just want the dir
3902         while (strlen(work))
3903         {
3904                 if (work[p] == '/')
3905                 {
3906                         work[p] = '\0';
3907                         break;
3908                 }
3909                 work[p--] = '\0';
3910         }
3911         char buffer[MAXBUF], otherdir[MAXBUF];
3912         // Get the current working directory
3913         if( getcwd( buffer, MAXBUF ) == NULL )
3914                 return "";
3915         chdir(work);
3916         if( getcwd( otherdir, MAXBUF ) == NULL )
3917                 return "";
3918         chdir(buffer);
3919         return otherdir;
3920 }
3921
3922 bool LoadModule(const char* filename)
3923 {
3924         char modfile[MAXBUF];
3925         snprintf(modfile,MAXBUF,"%s/%s",ModPath,filename);
3926         std::string filename_str = filename;
3927         if (!DirValid(modfile))
3928         {
3929                 log(DEFAULT,"Module %s is not within the modules directory.",modfile);
3930                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
3931                 return false;
3932         }
3933         log(DEBUG,"Loading module: %s",modfile);
3934         if (FileExists(modfile))
3935         {
3936                 for (int j = 0; j < module_names.size(); j++)
3937                 {
3938                         if (module_names[j] == filename_str)
3939                         {
3940                                 log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
3941                                 snprintf(MODERR,MAXBUF,"Module already loaded");
3942                                 return false;
3943                         }
3944                 }
3945                 ircd_module* a = new ircd_module(modfile);
3946                 factory[MODCOUNT+1] = a;
3947                 if (factory[MODCOUNT+1]->LastError())
3948                 {
3949                         log(DEFAULT,"Unable to load %s: %s",modfile,factory[MODCOUNT+1]->LastError());
3950                         snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[MODCOUNT+1]->LastError());
3951                         MODCOUNT--;
3952                         return false;
3953                 }
3954                 if (factory[MODCOUNT+1]->factory)
3955                 {
3956                         Module* m = factory[MODCOUNT+1]->factory->CreateModule();
3957                         modules[MODCOUNT+1] = m;
3958                         /* save the module and the module's classfactory, if
3959                          * this isnt done, random crashes can occur :/ */
3960                         module_names.push_back(filename);
3961                 }
3962                 else
3963                 {
3964                         log(DEFAULT,"Unable to load %s",modfile);
3965                         snprintf(MODERR,MAXBUF,"Factory function failed!");
3966                         return false;
3967                 }
3968         }
3969         else
3970         {
3971                 log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
3972                 snprintf(MODERR,MAXBUF,"Module file could not be found");
3973                 return false;
3974         }
3975         MODCOUNT++;
3976         return true;
3977 }
3978
3979 int InspIRCd(char** argv, int argc)
3980 {
3981         struct sockaddr_in client,server;
3982         char addrs[MAXBUF][255];
3983         int incomingSockfd, result = TRUE;
3984         socklen_t length;
3985         int count = 0;
3986         int selectResult = 0, selectResult2 = 0;
3987         char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
3988         fd_set selectFds;
3989         timeval tv;
3990
3991         std::string logpath = GetFullProgDir(argv,argc) + "/ircd.log";
3992         log_file = fopen(logpath.c_str(),"a+");
3993         if (!log_file)
3994         {
3995                 printf("ERROR: Could not write to logfile %s, bailing!\n\n",logpath.c_str());
3996                 Exit(ERROR);
3997         }
3998         printf("Logging to %s...\n",logpath.c_str());
3999
4000         log(DEFAULT,"$Id$");
4001         if (geteuid() == 0)
4002         {
4003                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
4004                 Exit(ERROR);
4005                 log(DEFAULT,"InspIRCd: startup: not starting with UID 0!");
4006         }
4007         SetupCommandTable();
4008         log(DEBUG,"InspIRCd: startup: default command table set up");
4009         
4010         ReadConfig(true,NULL);
4011         if (DieValue[0])
4012         { 
4013                 printf("WARNING: %s\n\n",DieValue);
4014                 log(DEFAULT,"Ut-Oh, somebody didn't read their config file: '%s'",DieValue);
4015                 exit(0); 
4016         }  
4017         log(DEBUG,"InspIRCd: startup: read config");
4018
4019         int clientportcount = 0, serverportcount = 0;
4020
4021         for (count = 0; count < ConfValueEnum("bind",&config_f); count++)
4022         {
4023                 ConfValue("bind","port",count,configToken,&config_f);
4024                 ConfValue("bind","address",count,Addr,&config_f);
4025                 ConfValue("bind","type",count,Type,&config_f);
4026                 if (!strcmp(Type,"servers"))
4027                 {
4028                         char Default[MAXBUF];
4029                         strcpy(Default,"no");
4030                         ConfValue("bind","default",count,Default,&config_f);
4031                         if (strchr(Default,'y'))
4032                         {
4033                                 defaultRoute = serverportcount;
4034                                 log(DEBUG,"InspIRCd: startup: binding '%s:%s' is default server route",Addr,configToken);
4035                         }
4036                         me[serverportcount] = new serverrec(ServerName,100L,false);
4037                         if (!me[serverportcount]->CreateListener(Addr,atoi(configToken)))
4038                         {
4039                                 log(DEFAULT,"Warning: Failed to bind port %lu",(unsigned long)atoi(configToken));
4040                                 printf("Warning: Failed to bind port %lu\n",(unsigned long)atoi(configToken));
4041                         }
4042                         else
4043                         {
4044                                 serverportcount++;
4045                         }
4046                 }
4047                 else
4048                 {
4049                         ports[clientportcount] = atoi(configToken);
4050                         strlcpy(addrs[clientportcount],Addr,256);
4051                         clientportcount++;
4052                 }
4053                 log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type);
4054         }
4055         portCount = clientportcount;
4056         SERVERportCount = serverportcount;
4057           
4058         log(DEBUG,"InspIRCd: startup: read %lu total client ports and %lu total server ports",(unsigned long)portCount,(unsigned long)SERVERportCount);
4059         log(DEBUG,"InspIRCd: startup: InspIRCd is now starting!");
4060         
4061         printf("\n");
4062         
4063         /* BugFix By Craig! :p */
4064         MODCOUNT = -1;
4065         for (count = 0; count < ConfValueEnum("module",&config_f); count++)
4066         {
4067                 ConfValue("module","name",count,configToken,&config_f);
4068                 printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
4069                 if (!LoadModule(configToken))
4070                 {
4071                         log(DEFAULT,"Exiting due to a module loader error.");
4072                         printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ModuleError());
4073                         Exit(0);
4074                 }
4075         }
4076         log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
4077         
4078         startup_time = time(NULL);
4079           
4080         char PID[MAXBUF];
4081         ConfValue("pid","file",0,PID,&config_f);
4082         // write once here, to try it out and make sure its ok
4083         WritePID(PID);
4084           
4085         /* setup select call */
4086 #ifndef USE_KQUEUE
4087         FD_ZERO(&selectFds);
4088 #endif
4089         log(DEBUG,"InspIRCd: startup: zero selects");
4090         log(VERBOSE,"InspIRCd: startup: portCount = %lu", (unsigned long)portCount);
4091         
4092         for (count = 0; count < portCount; count++)
4093         {
4094                 if ((openSockfd[boundPortCount] = OpenTCPSocket()) == ERROR)
4095                 {
4096                         log(DEBUG,"InspIRCd: startup: bad fd %lu",(unsigned long)openSockfd[boundPortCount]);
4097                         return(ERROR);
4098                 }
4099                 if (BindSocket(openSockfd[boundPortCount],client,server,ports[count],addrs[count]) == ERROR)
4100                 {
4101                         log(DEFAULT,"InspIRCd: startup: failed to bind port %lu",(unsigned long)ports[count]);
4102                 }
4103                 else    /* well we at least bound to one socket so we'll continue */
4104                 {
4105                         boundPortCount++;
4106                 }
4107         }
4108         
4109         log(DEBUG,"InspIRCd: startup: total bound ports %lu",(unsigned long)boundPortCount);
4110           
4111         /* if we didn't bind to anything then abort */
4112         if (boundPortCount == 0)
4113         {
4114                 log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!");
4115                 printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)portCount);
4116                 return (ERROR);
4117         }
4118         
4119
4120         printf("\nInspIRCd is now running!\n");
4121
4122         if (nofork)
4123         {
4124                 log(VERBOSE,"Not forking as -nofork was specified");
4125         }
4126         else
4127         {
4128                 if (DaemonSeed() == ERROR)
4129                 {
4130                         log(DEFAULT,"InspIRCd: startup: can't daemonise");
4131                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
4132                         Exit(ERROR);
4133                 }
4134         }
4135
4136         // BUGFIX: We cannot initialize this before forking, as the kqueue data is not inherited by child processes!
4137 #ifdef USE_KQUEUE
4138         kq = kqueue();
4139         lkq = kqueue();
4140         skq = kqueue();
4141         if ((kq == -1) || (lkq == -1) || (skq == -1))
4142         {
4143                 log(DEFAULT,"main: kqueue() failed!");
4144                 printf("ERROR: could not initialise kqueue event system. Shutting down.\n");
4145                 Exit(ERROR);
4146         }
4147 #endif
4148
4149
4150 #ifdef USE_KQUEUE
4151         log(DEFAULT,"kqueue socket engine is enabled. Filling listen list.");
4152         for (count = 0; count < boundPortCount; count++)
4153         {
4154                 struct kevent ke;
4155                 log(DEBUG,"kqueue: Add listening socket to events, kq=%d socket=%d",lkq,openSockfd[count]);
4156                 EV_SET(&ke, openSockfd[count], EVFILT_READ, EV_ADD, 0, 5, NULL);
4157                 int i = kevent(lkq, &ke, 1, 0, 0, NULL);
4158                 if (i == -1)
4159                 {
4160                         log(DEFAULT,"main: add listen ports to kqueue failed!");
4161                         printf("ERROR: could not initialise listening sockets in kqueue. Shutting down.\n");
4162                 }
4163         }
4164         for (int t = 0; t != SERVERportCount; t++)
4165         {
4166                 struct kevent ke;
4167                 if (me[t])
4168                 {
4169                         log(DEBUG,"kqueue: Add listening SERVER socket to events, kq=%d socket=%d",skq,me[t]->fd);
4170                         EV_SET(&ke, me[t]->fd, EVFILT_READ, EV_ADD, 0, 5, NULL);
4171                         int i = kevent(skq, &ke, 1, 0, 0, NULL);
4172                         if (i == -1)
4173                         {
4174                                 log(DEFAULT,"main: add server listen ports to kqueue failed!");
4175                                 printf("ERROR: could not initialise listening server sockets in kqueue. Shutting down.\n");
4176                         }
4177                 }
4178         }
4179
4180
4181 #else
4182         log(DEFAULT,"Using standard select socket engine.");
4183 #endif
4184
4185         WritePID(PID);
4186
4187         length = sizeof (client);
4188         char tcp_msg[MAXBUF],tcp_host[MAXBUF];
4189
4190 #ifdef USE_KQUEUE
4191         struct kevent ke;
4192         struct kevent ke_list[33];
4193         struct timespec ts;
4194 #endif
4195         fd_set serverfds;
4196         timeval tvs;
4197         tvs.tv_usec = 10000L;
4198         tvs.tv_sec = 0;
4199         tv.tv_sec = 0;
4200         tv.tv_usec = 10000L;
4201         char data[65536];
4202         timeval tval;
4203         fd_set sfd;
4204         tval.tv_usec = 10000L;
4205         tval.tv_sec = 0;
4206         int total_in_this_set = 0;
4207         int i = 0, v = 0, j = 0, cycle_iter = 0;
4208         bool expire_run = false;
4209           
4210         /* main loop, this never returns */
4211         for (;;)
4212         {
4213 #ifdef _POSIX_PRIORITY_SCHEDULING
4214                 sched_yield();
4215 #endif
4216 #ifndef USE_KQUEUE
4217                 FD_ZERO(&sfd);
4218 #endif
4219
4220                 // we only read time() once per iteration rather than tons of times!
4221                 OLDTIME = TIME;
4222                 TIME = time(NULL);
4223
4224                 dns_poll();
4225
4226                 // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue
4227                 // them in a list, then reap the list every second or so.
4228                 if (((TIME % 5) == 0) && (!expire_run))
4229                 {
4230                         expire_lines();
4231                         FOREACH_MOD OnBackgroundTimer(TIME);
4232                         expire_run = true;
4233                         continue;
4234                 }
4235                 if ((TIME % 5) == 1)
4236                         expire_run = false;
4237                 
4238                 // fix by brain - this must be below any manipulation of the hashmap by modules
4239                 user_hash::iterator count2 = clientlist.begin();
4240
4241 #ifdef USE_KQUEUE
4242                 ts.tv_sec = 0;
4243                 ts.tv_nsec = 30000L;
4244                 i = kevent(skq, NULL, 0, &ke, 1, &ts);
4245                 if (i > 0)
4246                 {
4247                         log(DEBUG,"kqueue: Listening server socket event, i=%d, ke.ident=%d",i,ke.ident);
4248                         for (int x = 0; x != SERVERportCount; x++)
4249                         {
4250                                 if ((me[x]) && (ke.ident == me[x]->fd))
4251                                 {
4252
4253 #else
4254                 FD_ZERO(&serverfds);
4255                 for (int x = 0; x != SERVERportCount; x++)
4256                 {
4257                         if (me[x])
4258                                 FD_SET(me[x]->fd, &serverfds);
4259                 }
4260                 tvs.tv_usec = 30000L;
4261                 tvs.tv_sec = 0;
4262                 int servresult = select(32767, &serverfds, NULL, NULL, &tvs);
4263                 if (servresult > 0)
4264                 {
4265                         for (int x = 0; x != SERVERportCount; x++)
4266                         {
4267                                 if ((me[x]) && (FD_ISSET (me[x]->fd, &serverfds)))
4268                                 {
4269 #endif
4270                                         char remotehost[MAXBUF],resolved[MAXBUF];
4271                                         length = sizeof (client);
4272                                         incomingSockfd = accept (me[x]->fd, (sockaddr *) &client, &length);
4273                                         if (incomingSockfd != -1)
4274                                         {
4275                                                 strlcpy(remotehost,(char *)inet_ntoa(client.sin_addr),MAXBUF);
4276                                                 if(CleanAndResolve(resolved, remotehost) != TRUE)
4277                                                 {
4278                                                         strlcpy(resolved,remotehost,MAXBUF);
4279                                                 }
4280                                                 // add to this connections ircd_connector vector
4281                                                 // *FIX* - we need the LOCAL port not the remote port in &client!
4282                                                 me[x]->AddIncoming(incomingSockfd,resolved,me[x]->port);
4283                                         }
4284                                 }
4285                         }
4286                 }
4287      
4288                 for (int x = 0; x < SERVERportCount; x++)
4289                 {
4290                         std::deque<std::string> msgs;
4291                         msgs.clear();
4292                         if ((me[x]) && (me[x]->RecvPacket(msgs, tcp_host)))
4293                         {
4294                                 for (int ctr = 0; ctr < msgs.size(); ctr++)
4295                                 {
4296                                         strlcpy(tcp_msg,msgs[ctr].c_str(),MAXBUF);
4297                                         log(DEBUG,"Processing: %s",tcp_msg);
4298                                         if (!tcp_msg[0])
4299                                         {
4300                                                 log(DEBUG,"Invalid string from %s [route%lu]",tcp_host,(unsigned long)x);
4301                                                 break;
4302                                         }
4303                                         // during a netburst, send all data to all other linked servers
4304                                         if ((((nb_start>0) && (tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))) || (is_uline(tcp_host)))
4305                                         {
4306                                                 if (is_uline(tcp_host))
4307                                                 {
4308                                                         if ((tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))
4309                                                         {
4310                                                                 NetSendToAllExcept(tcp_host,tcp_msg);
4311                                                         }
4312                                                 }
4313                                                 else
4314                                                         NetSendToAllExcept(tcp_host,tcp_msg);
4315                                         }
4316                                         std::string msg = tcp_msg;
4317                                         FOREACH_MOD OnPacketReceive(msg,tcp_host);
4318                                         strlcpy(tcp_msg,msg.c_str(),MAXBUF);
4319                                         handle_link_packet(tcp_msg, tcp_host, me[x]);
4320                                 }
4321                                 goto label;
4322                         }
4323                 }
4324         
4325         while (count2 != clientlist.end())
4326         {
4327 #ifndef USE_KQUEUE
4328                 FD_ZERO(&sfd);
4329 #endif
4330
4331                 total_in_this_set = 0;
4332
4333                 user_hash::iterator xcount = count2;
4334                 user_hash::iterator endingiter = count2;
4335
4336                 if (count2 == clientlist.end()) break;
4337
4338                 userrec* curr = NULL;
4339
4340                 if (count2->second)
4341                         curr = count2->second;
4342
4343                 if ((curr) && (curr->fd != 0))
4344                 {
4345 #ifdef _POSIX_PRIORITY_SCHEDULING
4346         sched_yield();
4347 #endif
4348                         // assemble up to 64 sockets into an fd_set
4349                         // to implement a pooling mechanism.
4350                         //
4351                         // This should be up to 64x faster than the
4352                         // old implementation.
4353 #ifndef USE_KQUEUE
4354                         while (total_in_this_set < 1024)
4355                         {
4356                                 if (count2 != clientlist.end())
4357                                 {
4358                                         curr = count2->second;
4359                                         // we don't check the state of remote users.
4360                                         if ((curr->fd != -1) && (curr->fd != FD_MAGIC_NUMBER))
4361                                         {
4362                                                 curr->FlushWriteBuf();
4363                                                 if (curr->GetWriteError() != "")
4364                                                 {
4365                                                         log(DEBUG,"InspIRCd: write error: %s",curr->GetWriteError().c_str());
4366                                                         kill_link(curr,curr->GetWriteError().c_str());
4367                                                         goto label;
4368                                                 }
4369
4370                                                 FD_SET (curr->fd, &sfd);
4371
4372                                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
4373                                                 // their connection class.
4374                                                 if ((TIME > curr->timeout) && (curr->registered != 7)) 
4375                                                 {
4376                                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
4377                                                         kill_link(curr,"Registration timeout");
4378                                                         goto label;
4379                                                 }
4380                                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
4381                                                 {
4382                                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK");
4383                                                         curr->dns_done = true;
4384                                                         statsDnsBad++;
4385                                                         FullConnectUser(curr);
4386                                                         goto label;
4387                                                 }
4388                                                 if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr))) // both NICK and USER... and DNS
4389                                                 {
4390                                                         log(DEBUG,"dns done, registered=3, and modules ready, OK");
4391                                                         FullConnectUser(curr);
4392                                                         goto label;
4393                                                 }
4394                                                 if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
4395                                                 {
4396                                                         if ((!curr->lastping) && (curr->registered == 7))
4397                                                         {
4398                                                                 log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
4399                                                                 kill_link(curr,"Ping timeout");
4400                                                                 goto label;
4401                                                         }
4402                                                         Write(curr->fd,"PING :%s",ServerName);
4403                                                         log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
4404                                                         curr->lastping = 0;
4405                                                         curr->nping = TIME+curr->pingmax;       // was hard coded to 120
4406                                                 }
4407                                         }
4408                                         count2++;
4409                                         total_in_this_set++;
4410                                 }
4411                                 else break;
4412                         }
4413                         endingiter = count2;
4414                         count2 = xcount; // roll back to where we were
4415 #else
4416                         // KQUEUE: We don't go through a loop to fill the fd_set so instead we must manually do this loop every now and again.
4417                         // TODO: We dont need to do all this EVERY loop iteration, tone down the visits to this if we're using kqueue.
4418                         cycle_iter++;
4419                         if (cycle_iter > 10) while (count2 != clientlist.end())
4420                         {
4421                                 cycle_iter = 0;
4422                                 if (count2 != clientlist.end())
4423                                 {
4424                                         curr = count2->second;
4425                                         // we don't check the state of remote users.
4426                                         if ((curr->fd != -1) && (curr->fd != FD_MAGIC_NUMBER))
4427                                         {
4428
4429                                                 curr->FlushWriteBuf();
4430                                                 if (curr->GetWriteError() != "")
4431                                                 {
4432                                                         log(DEBUG,"InspIRCd: write error: %s",curr->GetWriteError().c_str());
4433                                                         kill_link(curr,curr->GetWriteError().c_str());
4434                                                         goto label;
4435                                                 }
4436
4437                                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
4438                                                 // their connection class.
4439                                                 if ((TIME > curr->timeout) && (curr->registered != 7))
4440                                                 {
4441                                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
4442                                                         kill_link(curr,"Registration timeout");
4443                                                         goto label;
4444                                                 }
4445                                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
4446                                                 {
4447                                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK: %d %d",TIME,curr->signon);
4448                                                         curr->dns_done = true;
4449                                                         statsDnsBad++;
4450                                                         FullConnectUser(curr);
4451                                                         goto label;
4452                                                 }
4453                                                 if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr)))
4454                                                 {
4455                                                         log(DEBUG,"dns done, registered=3, and modules ready, OK");
4456                                                         FullConnectUser(curr);
4457                                                         goto label;
4458                                                 }
4459                                                 if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
4460                                                 {
4461                                                         if ((!curr->lastping) && (curr->registered == 7))
4462                                                         {
4463                                                                 log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
4464                                                                 kill_link(curr,"Ping timeout");
4465                                                                 goto label;
4466                                                         }
4467                                                         Write(curr->fd,"PING :%s",ServerName);
4468                                                         log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
4469                                                         curr->lastping = 0;
4470                                                         curr->nping = TIME+curr->pingmax;       // was hard coded to 120
4471                                                 }
4472                                         }
4473                                 }
4474                                 else break;
4475                                 count2++;
4476                         }
4477                         // increment the counter right to the end of the list, as kqueue processes everything in one go
4478 #endif
4479         
4480                         v = 0;
4481
4482 #ifdef USE_KQUEUE
4483                         ts.tv_sec = 0;
4484                         ts.tv_nsec = 1000L;
4485                         // for now, we only read 1 event. We could read soooo many more :)
4486                         int i = kevent(kq, NULL, 0, &ke, 1, &ts);
4487                         if (i > 0)
4488                         {
4489                                 log(DEBUG,"kevent call: kq=%d, i=%d",kq,i);
4490                                 // KQUEUE: kevent gives us ONE fd which is ready to have something done to it. Do something to it.
4491                                 userrec* cu = fd_ref_table[ke.ident];
4492 #else
4493                         tval.tv_usec = 1000L;
4494                         selectResult2 = select(65535, &sfd, NULL, NULL, &tval);
4495                         
4496                         // now loop through all of the items in this pool if any are waiting
4497                         if (selectResult2 > 0)
4498                         for (user_hash::iterator count2a = xcount; count2a != endingiter; count2a++)
4499                         {
4500                                 // SELECT: we have to iterate...
4501                                 userrec* cu = count2a->second;
4502 #endif
4503
4504 #ifdef _POSIX_PRIORITY_SCHEDULING
4505                                 sched_yield();
4506 #endif
4507                                 result = EAGAIN;
4508 #ifdef USE_KQUEUE
4509                                 // KQUEUE: We already know we have a valid FD. No checks needed.
4510                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1))
4511 #else
4512                                 // SELECT: We don't know if our FD is valid.
4513                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1) && (FD_ISSET (cu->fd, &sfd)))
4514 #endif
4515                                 {
4516                                         log(DEBUG,"Data waiting on socket %d",cu->fd);
4517                                         int MOD_RESULT = 0;
4518                                         int result2 = 0;
4519                                         FOREACH_RESULT(OnRawSocketRead(cu->fd,data,65535,result2));
4520                                         if (!MOD_RESULT)
4521                                         {
4522                                                 result = read(cu->fd, data, 65535);
4523                                         }
4524                                         else result = result2;
4525                                         log(DEBUG,"Read result: %d",result);
4526                                         if (result)
4527                                         {
4528                                                 statsRecv += result;
4529                                                 // perform a check on the raw buffer as an array (not a string!) to remove
4530                                                 // characters 0 and 7 which are illegal in the RFC - replace them with spaces.
4531                                                 // hopefully this should stop even more people whining about "Unknown command: *"
4532                                                 for (int checker = 0; checker < result; checker++)
4533                                                 {
4534                                                         if ((data[checker] == 0) || (data[checker] == 7))
4535                                                                 data[checker] = ' ';
4536                                                 }
4537                                                 if (result > 0)
4538                                                         data[result] = '\0';
4539                                                 userrec* current = cu;
4540                                                 int currfd = current->fd;
4541                                                 int floodlines = 0;
4542                                                 // add the data to the users buffer
4543                                                 if (result > 0)
4544                                                 if (!current->AddBuffer(data))
4545                                                 {
4546                                                         // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
4547                                                         if (current->registered == 7)
4548                                                         {
4549                                                                 kill_link(current,"RecvQ exceeded");
4550                                                         }
4551                                                         else
4552                                                         {
4553                                                                 WriteOpers("*** Excess flood from %s",current->ip);
4554                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
4555                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4556                                                                 apply_lines();
4557                                                         }
4558                                                         goto label;
4559                                                 }
4560                                                 if (current->recvq.length() > NetBufferSize)
4561                                                 {
4562                                                         if (current->registered == 7)
4563                                                         {
4564                                                                 kill_link(current,"RecvQ exceeded");
4565                                                         }
4566                                                         else
4567                                                         {
4568                                                                 WriteOpers("*** Excess flood from %s",current->ip);
4569                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
4570                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4571                                                                 apply_lines();
4572                                                         }
4573                                                         goto label;
4574                                                 }
4575                                                 // while there are complete lines to process...
4576                                                 while (current->BufferIsReady())
4577                                                 {
4578                                                         floodlines++;
4579                                                         if (TIME > current->reset_due)
4580                                                         {
4581                                                                 current->reset_due = TIME + current->threshold;
4582                                                                 current->lines_in = 0;
4583                                                         }
4584                                                         current->lines_in++;
4585                                                         if (current->lines_in > current->flood)
4586                                                         {
4587                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4588                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4589                                                                 kill_link(current,"Excess flood");
4590                                                                 goto label;
4591                                                         }
4592                                                         if ((floodlines > current->flood) && (current->flood != 0))
4593                                                         {
4594                                                                 if (current->registered == 7)
4595                                                                 {
4596                                                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4597                                                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4598                                                                         kill_link(current,"Excess flood");
4599                                                                 }
4600                                                                 else
4601                                                                 {
4602                                                                         add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
4603                                                                         apply_lines();
4604                                                                 }
4605                                                                 goto label;
4606                                                         }
4607                                                         char sanitized[MAXBUF];
4608                                                         // use GetBuffer to copy single lines into the sanitized string
4609                                                         std::string single_line = current->GetBuffer();
4610                                                         current->bytes_in += single_line.length();
4611                                                         current->cmds_in++;
4612                                                         if (single_line.length()>512)
4613                                                         {
4614                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4615                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
4616                                                                 kill_link(current,"Excess flood");
4617                                                                 goto label;
4618                                                         }
4619                                                         strlcpy(sanitized,single_line.c_str(),MAXBUF);
4620                                                         if (*sanitized)
4621                                                         {
4622                                                                 userrec* old_comp = fd_ref_table[currfd];
4623                                                                 // we're gonna re-scan to check if the nick is gone, after every
4624                                                                 // command - if it has, we're gonna bail
4625                                                                 process_buffer(sanitized,current);
4626                                                                 // look for the user's record in case it's changed... if theyve quit,
4627                                                                 // we cant do anything more with their buffer, so bail.
4628                                                                 // there used to be an ugly, slow loop here. Now we have a reference
4629                                                                 // table, life is much easier (and FASTER)
4630                                                                 userrec* new_comp = fd_ref_table[currfd];
4631                                                                 if ((currfd < 0) || (!fd_ref_table[currfd]) || (old_comp != new_comp))
4632                                                                         goto label;
4633
4634                                                         }
4635                                                 }
4636                                                 goto label;
4637                                         }
4638
4639                                         if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
4640                                         {
4641                                                 log(DEBUG,"killing: %s",cu->nick);
4642                                                 kill_link(cu,strerror(errno));
4643                                                 goto label;
4644                                         }
4645                                 }
4646                                 // result EAGAIN means nothing read
4647                                 if (result == EAGAIN)
4648                                 {
4649                                 }
4650                                 else
4651                                 if (result == 0)
4652                                 {
4653 #ifndef USE_KQUEUE
4654                                         if (count2->second)
4655                                         {
4656 #endif
4657                                                 log(DEBUG,"InspIRCd: Exited: %s",cu->nick);
4658                                                 kill_link(cu,"Client exited");
4659                                                 // must bail here? kill_link removes the hash, corrupting the iterator
4660                                                 log(DEBUG,"Bailing from client exit");
4661                                                 goto label;
4662 #ifndef USE_KQUEUE
4663                                         }
4664 #endif
4665                                 }
4666                                 else if (result > 0)
4667                                 {
4668                                 }
4669                         }
4670                 }
4671                 for (int q = 0; q < total_in_this_set; q++)
4672                 {
4673                         count2++;
4674                 }
4675         }
4676
4677 #ifdef _POSIX_PRIORITY_SCHEDULING
4678         sched_yield();
4679 #endif
4680         
4681 #ifndef USE_KQUEUE
4682         // set up select call
4683         for (count = 0; count < boundPortCount; count++)
4684         {
4685                 FD_SET (openSockfd[count], &selectFds);
4686         }
4687
4688         tv.tv_usec = 30000L;
4689         selectResult = select(MAXSOCKS, &selectFds, NULL, NULL, &tv);
4690
4691         /* select is reporting a waiting socket. Poll them all to find out which */
4692         if (selectResult > 0)
4693         {
4694                 for (count = 0; count < boundPortCount; count++)
4695                 {
4696                         if (FD_ISSET (openSockfd[count], &selectFds))
4697                         {
4698 #else
4699         ts.tv_sec = 0;
4700         ts.tv_nsec = 30000L;
4701         i = kevent(lkq, NULL, 0, ke_list, 32, &ts);
4702         if (i > 0) for (j = 0; j < i; j++)
4703         {
4704                 log(DEBUG,"kqueue: Listening socket event, i=%d, ke.ident=%d",i,ke.ident);
4705                 // this isnt as efficient as it could be, we could create a reference table
4706                 // to reference bound ports by fd, but this isnt a big bottleneck as the actual
4707                 // number of listening ports on the average ircd is a small number (less than 20)
4708                 // compared to the number of clients (possibly over 2000)
4709                 for (count = 0; count < boundPortCount; count++)
4710                 {
4711                         if (ke_list[j].ident == openSockfd[count])
4712                         {
4713 #endif
4714                                 char target[MAXBUF], resolved[MAXBUF];
4715                                 length = sizeof (client);
4716                                 incomingSockfd = accept (openSockfd[count], (struct sockaddr *) &client, &length);
4717                               
4718                                 strlcpy (target, (char *) inet_ntoa (client.sin_addr), MAXBUF);
4719                                 strlcpy (resolved, target, MAXBUF);
4720                         
4721                                 if (incomingSockfd < 0)
4722                                 {
4723                                         WriteOpers("*** WARNING: Accept failed on port %lu (%s)",(unsigned long)ports[count],target);
4724                                         log(DEBUG,"InspIRCd: accept failed: %lu",(unsigned long)ports[count]);
4725                                         statsRefused++;
4726                                 }
4727                                 else
4728                                 {
4729                                         FOREACH_MOD OnRawSocketAccept(incomingSockfd, resolved, ports[count]);
4730                                         statsAccept++;
4731                                         AddClient(incomingSockfd, resolved, ports[count], false, inet_ntoa (client.sin_addr));
4732                                         log(DEBUG,"InspIRCd: adding client on port %lu fd=%lu",(unsigned long)ports[count],(unsigned long)incomingSockfd);
4733                                 }
4734                                 //goto label;
4735                         }
4736                 }
4737         }
4738         label:
4739         if (0) {};
4740 #ifdef _POSIX_PRIORITY_SCHEDULING
4741         sched_yield();
4742         sched_yield();
4743 #endif
4744 }
4745 /* not reached */
4746 close (incomingSockfd);
4747 }
4748