]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Made erroneous included configs cause the reader to bail
[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_config.h"
22 #include "inspircd.h"
23 #include "inspircd_io.h"
24 #include "inspircd_util.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
31 #ifdef USE_KQUEUE
32 #include <sys/types.h>
33 #include <sys/event.h>
34 #include <sys/time.h>
35 #endif
36
37 #ifdef USE_EPOLL
38 #include <sys/epoll.h>
39 #define EP_DELAY 50
40 #endif
41
42 #include <time.h>
43 #include <string>
44 #ifdef GCC3
45 #include <ext/hash_map>
46 #else
47 #include <hash_map>
48 #endif
49 #include <map>
50 #include <sstream>
51 #include <vector>
52 #include <deque>
53 #include <sched.h>
54 #include "connection.h"
55 #include "users.h"
56 #include "servers.h"
57 #include "ctables.h"
58 #include "globals.h"
59 #include "modules.h"
60 #include "dynamic.h"
61 #include "wildcard.h"
62 #include "message.h"
63 #include "mode.h"
64 #include "commands.h"
65 #include "xline.h"
66 #include "inspstring.h"
67 #include "dnsqueue.h"
68 #include "helperfuncs.h"
69 #include "hashcomp.h"
70
71 int LogLevel = DEFAULT;
72 char ServerName[MAXBUF];
73 char Network[MAXBUF];
74 char ServerDesc[MAXBUF];
75 char AdminName[MAXBUF];
76 char AdminEmail[MAXBUF];
77 char AdminNick[MAXBUF];
78 char diepass[MAXBUF];
79 char restartpass[MAXBUF];
80 char motd[MAXBUF];
81 char rules[MAXBUF];
82 char list[MAXBUF];
83 char PrefixQuit[MAXBUF];
84 char DieValue[MAXBUF];
85 char DNSServer[MAXBUF];
86 int debugging =  0;
87 int WHOWAS_STALE = 48; // default WHOWAS Entries last 2 days before they go 'stale'
88 int WHOWAS_MAX = 100;  // default 100 people maximum in the WHOWAS list
89 int DieDelay  =  5;
90 time_t startup_time = time(NULL);
91 int NetBufferSize = 10240;      // NetBufferSize used as the buffer size for all read() ops
92 int MaxConn = SOMAXCONN;        // size of accept() backlog (128 by default on *BSD)
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 #ifdef USE_EPOLL
119 int ep, lep, sep;
120 #endif
121
122 bool has_been_netsplit = false;
123 extern std::vector<std::string> include_stack;
124
125 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
126 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
127 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, irc::InAddr_HashComp> address_cache;
128 typedef nspace::hash_map<std::string, WhoWasUser*, nspace::hash<string>, irc::StrHashComp> whowas_hash;
129 typedef std::deque<command_t> command_table;
130 typedef std::map<std::string,time_t> autoconnects;
131 typedef std::vector<std::string> servernamelist;
132
133 // This table references users by file descriptor.
134 // its an array to make it VERY fast, as all lookups are referenced
135 // by an integer, meaning there is no need for a scan/search operation.
136 userrec* fd_ref_table[65536];
137
138 int statsAccept = 0, statsRefused = 0, statsUnknown = 0, statsCollisions = 0, statsDns = 0, statsDnsGood = 0, statsDnsBad = 0, statsConnects = 0, statsSent= 0, statsRecv = 0;
139
140 serverrec* me[32];
141
142 FILE *log_file;
143
144 user_hash clientlist;
145 chan_hash chanlist;
146 whowas_hash whowas;
147 command_table cmdlist;
148 autoconnects autoconns;
149 file_cache MOTD;
150 file_cache RULES;
151 address_cache IP;
152
153 ClassVector Classes;
154 servernamelist servernames;
155
156 struct linger linger = { 0 };
157 char MyExecutable[1024];
158 int boundPortCount = 0;
159 int portCount = 0, SERVERportCount = 0, ports[MAXSOCKS];
160 int defaultRoute = 0;
161 char ModPath[MAXBUF];
162
163 /* prototypes */
164
165 int has_channel(userrec *u, chanrec *c);
166 int usercount(chanrec *c);
167 int usercount_i(chanrec *c);
168 char* Passwd(userrec *user);
169 bool IsDenied(userrec *user);
170 void AddWhoWas(userrec* u);
171
172 std::vector<long> auth_cookies;
173 std::stringstream config_f(stringstream::in | stringstream::out);
174
175 std::vector<userrec*> all_opers;
176
177 char lowermap[255];
178
179 void AddOper(userrec* user)
180 {
181         log(DEBUG,"Oper added to optimization list");
182         all_opers.push_back(user);
183 }
184
185 void AddServerName(std::string servername)
186 {
187         for (servernamelist::iterator a = servernames.begin(); a < servernames.end(); a++)
188         {
189                 if (*a == servername)
190                         return;
191         }
192         servernames.push_back(servername);
193 }
194
195 const char* FindServerNamePtr(std::string servername)
196 {
197         for (servernamelist::iterator a = servernames.begin(); a < servernames.end(); a++)
198         {
199                 if (*a == servername)
200                         return a->c_str();
201         }
202         return "";
203 }
204
205 void DeleteOper(userrec* user)
206 {
207         for (std::vector<userrec*>::iterator a = all_opers.begin(); a < all_opers.end(); a++)
208         {
209                 if (*a == user)
210                 {
211                         log(DEBUG,"Oper removed from optimization list");
212                         all_opers.erase(a);
213                         return;
214                 }
215         }
216 }
217
218 std::string GetRevision()
219 {
220         char Revision[] = "$Revision$";
221         char *s1 = Revision;
222         char *savept;
223         char *v2 = strtok_r(s1," ",&savept);
224         s1 = savept;
225         v2 = strtok_r(s1," ",&savept);
226         s1 = savept;
227         return std::string(v2);
228 }
229
230
231 std::string getservername()
232 {
233         return ServerName;
234 }
235
236 std::string getserverdesc()
237 {
238         return ServerDesc;
239 }
240
241 std::string getnetworkname()
242 {
243         return Network;
244 }
245
246 std::string getadminname()
247 {
248         return AdminName;
249 }
250
251 std::string getadminemail()
252 {
253         return AdminEmail;
254 }
255
256 std::string getadminnick()
257 {
258         return AdminNick;
259 }
260
261 void ReadConfig(bool bail, userrec* user)
262 {
263         char dbg[MAXBUF],pauseval[MAXBUF],Value[MAXBUF],timeout[MAXBUF],NB[MAXBUF],flood[MAXBUF],MW[MAXBUF],MCON[MAXBUF];
264         char AH[MAXBUF],AP[MAXBUF],AF[MAXBUF],DNT[MAXBUF],pfreq[MAXBUF],thold[MAXBUF],sqmax[MAXBUF],rqmax[MAXBUF];
265         ConnectClass c;
266         std::stringstream errstr;
267         include_stack.clear();
268         
269         if (!LoadConf(CONFIG_FILE,&config_f,&errstr))
270         {
271                 errstr.seekg(0);
272                 if (bail)
273                 {
274                         printf("There were errors in your configuration:\n%s",errstr.str().c_str());
275                         Exit(0);
276                 }
277                 else
278                 {
279                         char dataline[1024];
280                         if (user)
281                         {
282                                 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
283                                 while (!errstr.eof())
284                                 {
285                                         errstr.getline(dataline,1024);
286                                         WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
287                                 }
288                         }
289                         else
290                         {
291                                 WriteOpers("There were errors in the configuration file:",user->nick);
292                                 while (!errstr.eof())
293                                 {
294                                         errstr.getline(dataline,1024);
295                                         WriteOpers(dataline);
296                                 }
297                         }
298                         return;
299                 }
300         }
301           
302         ConfValue("server","name",0,ServerName,&config_f);
303         ConfValue("server","description",0,ServerDesc,&config_f);
304         ConfValue("server","network",0,Network,&config_f);
305         ConfValue("admin","name",0,AdminName,&config_f);
306         ConfValue("admin","email",0,AdminEmail,&config_f);
307         ConfValue("admin","nick",0,AdminNick,&config_f);
308         ConfValue("files","motd",0,motd,&config_f);
309         ConfValue("files","rules",0,rules,&config_f);
310         ConfValue("power","diepass",0,diepass,&config_f);
311         ConfValue("power","pause",0,pauseval,&config_f);
312         ConfValue("power","restartpass",0,restartpass,&config_f);
313         ConfValue("options","prefixquit",0,PrefixQuit,&config_f);
314         ConfValue("die","value",0,DieValue,&config_f);
315         ConfValue("options","loglevel",0,dbg,&config_f);
316         ConfValue("options","netbuffersize",0,NB,&config_f);
317         ConfValue("options","maxwho",0,MW,&config_f);
318         ConfValue("options","allowhalfop",0,AH,&config_f);
319         ConfValue("options","allowprotect",0,AP,&config_f);
320         ConfValue("options","allowfounder",0,AF,&config_f);
321         ConfValue("dns","server",0,DNSServer,&config_f);
322         ConfValue("dns","timeout",0,DNT,&config_f);
323         ConfValue("options","moduledir",0,ModPath,&config_f);
324         ConfValue("disabled","commands",0,DisabledCommands,&config_f);
325         ConfValue("options","somaxconn",0,MCON,&config_f);
326
327         MaxConn = atoi(MCON);
328         if (MaxConn > SOMAXCONN)
329                 log(DEFAULT,"WARNING: <options:somaxconn> value may be higher than the system-defined SOMAXCONN value!");
330         NetBufferSize = atoi(NB);
331         MaxWhoResults = atoi(MW);
332         dns_timeout = atoi(DNT);
333         if (!dns_timeout)
334                 dns_timeout = 5;
335         if (!MaxConn)
336                 MaxConn = SOMAXCONN;
337         if (!DNSServer[0])
338                 strlcpy(DNSServer,"127.0.0.1",MAXBUF);
339         if (!ModPath[0])
340                 strlcpy(ModPath,MOD_PATH,MAXBUF);
341         AllowHalfop = ((!strcasecmp(AH,"true")) || (!strcasecmp(AH,"1")) || (!strcasecmp(AH,"yes")));
342         AllowProtect = ((!strcasecmp(AP,"true")) || (!strcasecmp(AP,"1")) || (!strcasecmp(AP,"yes")));
343         AllowFounder = ((!strcasecmp(AF,"true")) || (!strcasecmp(AF,"1")) || (!strcasecmp(AF,"yes")));
344         if ((!NetBufferSize) || (NetBufferSize > 65535) || (NetBufferSize < 1024))
345         {
346                 log(DEFAULT,"No NetBufferSize specified or size out of range, setting to default of 10240.");
347                 NetBufferSize = 10240;
348         }
349         if ((!MaxWhoResults) || (MaxWhoResults > 65535) || (MaxWhoResults < 1))
350         {
351                 log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
352                 MaxWhoResults = 128;
353         }
354         if (!strcmp(dbg,"debug"))
355                 LogLevel = DEBUG;
356         if (!strcmp(dbg,"verbose"))
357                 LogLevel = VERBOSE;
358         if (!strcmp(dbg,"default"))
359                 LogLevel = DEFAULT;
360         if (!strcmp(dbg,"sparse"))
361                 LogLevel = SPARSE;
362         if (!strcmp(dbg,"none"))
363                 LogLevel = NONE;
364         readfile(MOTD,motd);
365         log(DEFAULT,"Reading message of the day...");
366         readfile(RULES,rules);
367         log(DEFAULT,"Reading connect classes...");
368         Classes.clear();
369         for (int i = 0; i < ConfValueEnum("connect",&config_f); i++)
370         {
371                 strcpy(Value,"");
372                 ConfValue("connect","allow",i,Value,&config_f);
373                 ConfValue("connect","timeout",i,timeout,&config_f);
374                 ConfValue("connect","flood",i,flood,&config_f);
375                 ConfValue("connect","pingfreq",i,pfreq,&config_f);
376                 ConfValue("connect","threshold",i,thold,&config_f);
377                 ConfValue("connect","sendq",i,sqmax,&config_f);
378                 ConfValue("connect","recvq",i,rqmax,&config_f);
379                 if (Value[0])
380                 {
381                         strlcpy(c.host,Value,MAXBUF);
382                         c.type = CC_ALLOW;
383                         strlcpy(Value,"",MAXBUF);
384                         ConfValue("connect","password",i,Value,&config_f);
385                         strlcpy(c.pass,Value,MAXBUF);
386                         c.registration_timeout = 90; // default is 2 minutes
387                         c.pingtime = 120;
388                         c.flood = atoi(flood);
389                         c.threshold = 5;
390                         c.sendqmax = 262144; // 256k
391                         c.recvqmax = 4096;   // 4k
392                         if (atoi(thold)>0)
393                         {
394                                 c.threshold = atoi(thold);
395                         }
396                         if (atoi(sqmax)>0)
397                         {
398                                 c.sendqmax = atoi(sqmax);
399                         }
400                         if (atoi(rqmax)>0)
401                         {
402                                 c.recvqmax = atoi(rqmax);
403                         }
404                         if (atoi(timeout)>0)
405                         {
406                                 c.registration_timeout = atoi(timeout);
407                         }
408                         if (atoi(pfreq)>0)
409                         {
410                                 c.pingtime = atoi(pfreq);
411                         }
412                         Classes.push_back(c);
413                         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);
414                 }
415                 else
416                 {
417                         ConfValue("connect","deny",i,Value,&config_f);
418                         strlcpy(c.host,Value,MAXBUF);
419                         c.type = CC_DENY;
420                         Classes.push_back(c);
421                         log(DEBUG,"Read connect class type DENY, host=%s",c.host);
422                 }
423         
424         }
425         log(DEFAULT,"Reading K lines,Q lines and Z lines from config...");
426         read_xline_defaults();
427         log(DEFAULT,"Applying K lines, Q lines and Z lines...");
428         apply_lines();
429
430         autoconns.clear();
431         for (int i = 0; i < ConfValueEnum("link",&config_f); i++)
432         {
433                 char Link_ServerName[MAXBUF],Link_AConn[MAXBUF];
434                 ConfValue("link","name",i,Link_ServerName,&config_f);
435                 ConfValue("link","autoconnect",i,Link_AConn,&config_f);
436                 if (strcmp(Link_AConn,""))
437                 {
438                         autoconns[std::string(Link_ServerName)] = atoi(Link_AConn) + time(NULL);
439                 }
440         }
441
442
443         log(DEFAULT,"Done reading configuration file, InspIRCd is now starting.");
444         if (!bail)
445         {
446                 log(DEFAULT,"Adding and removing modules due to rehash...");
447
448                 std::vector<std::string> old_module_names, new_module_names, added_modules, removed_modules;
449
450                 // store the old module names
451                 for (std::vector<std::string>::iterator t = module_names.begin(); t != module_names.end(); t++)
452                 {
453                         old_module_names.push_back(*t);
454                 }
455
456                 // get the new module names
457                 for (int count2 = 0; count2 < ConfValueEnum("module",&config_f); count2++)
458                 {
459                         ConfValue("module","name",count2,Value,&config_f);
460                         new_module_names.push_back(Value);
461                 }
462
463                 // now create a list of new modules that are due to be loaded
464                 // and a seperate list of modules which are due to be unloaded
465                 for (std::vector<std::string>::iterator _new = new_module_names.begin(); _new != new_module_names.end(); _new++)
466                 {
467                         bool added = true;
468                         for (std::vector<std::string>::iterator old = old_module_names.begin(); old != old_module_names.end(); old++)
469                         {
470                                 if (*old == *_new)
471                                         added = false;
472                         }
473                         if (added)
474                                 added_modules.push_back(*_new);
475                 }
476                 for (std::vector<std::string>::iterator oldm = old_module_names.begin(); oldm != old_module_names.end(); oldm++)
477                 {
478                         bool removed = true;
479                         for (std::vector<std::string>::iterator newm = new_module_names.begin(); newm != new_module_names.end(); newm++)
480                         {
481                                 if (*newm == *oldm)
482                                         removed = false;
483                         }
484                         if (removed)
485                                 removed_modules.push_back(*oldm);
486                 }
487                 // now we have added_modules, a vector of modules to be loaded, and removed_modules, a vector of modules
488                 // to be removed.
489                 int rem = 0, add = 0;
490                 if (!removed_modules.empty())
491                 for (std::vector<std::string>::iterator removing = removed_modules.begin(); removing != removed_modules.end(); removing++)
492                 {
493                         if (UnloadModule(removing->c_str()))
494                         {
495                                 WriteOpers("*** REHASH UNLOADED MODULE: %s",removing->c_str());
496                                 WriteServ(user->fd,"973 %s %s :Module %s successfully unloaded.",user->nick, removing->c_str(), removing->c_str());
497                                 rem++;
498                         }
499                         else
500                         {
501                                 WriteServ(user->fd,"972 %s %s :Failed to unload module %s: %s",user->nick, removing->c_str(), removing->c_str(), ModuleError());
502                         }
503                 }
504                 if (!added_modules.empty())
505                 for (std::vector<std::string>::iterator adding = added_modules.begin(); adding != added_modules.end(); adding++)
506                 {
507                         if (LoadModule(adding->c_str()))
508                         {
509                                 WriteOpers("*** REHASH LOADED MODULE: %s",adding->c_str());
510                                 WriteServ(user->fd,"975 %s %s :Module %s successfully loaded.",user->nick, adding->c_str(), adding->c_str());
511                                 add++;
512                         }
513                         else
514                         {
515                                 WriteServ(user->fd,"974 %s %s :Failed to load module %s: %s",user->nick, adding->c_str(), adding->c_str(), ModuleError());
516                         }
517                 }
518                 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());
519         }
520 }
521
522
523 /* add a channel to a user, creating the record for it if needed and linking
524  * it to the user record */
525
526 chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override)
527 {
528         if ((!user) || (!cn))
529         {
530                 log(DEFAULT,"*** BUG *** add_channel was given an invalid parameter");
531                 return 0;
532         }
533
534         chanrec* Ptr;
535         int created = 0;
536         char cname[MAXBUF];
537
538         strncpy(cname,cn,MAXBUF);
539         
540         // we MUST declare this wherever we use FOREACH_RESULT
541         int MOD_RESULT = 0;
542
543         if (strlen(cname) > CHANMAX)
544         {
545                 cname[CHANMAX] = '\0';
546         }
547
548         log(DEBUG,"add_channel: %s %s",user->nick,cname);
549         
550         if ((FindChan(cname)) && (has_channel(user,FindChan(cname))))
551         {
552                 return NULL; // already on the channel!
553         }
554
555
556         if (!FindChan(cname))
557         {
558                 MOD_RESULT = 0;
559                 FOREACH_RESULT(OnUserPreJoin(user,NULL,cname));
560                 if (MOD_RESULT == 1) {
561                         return NULL;
562                 }
563
564                 /* create a new one */
565                 log(DEBUG,"add_channel: creating: %s",cname);
566                 {
567                         chanlist[cname] = new chanrec();
568
569                         strlcpy(chanlist[cname]->name, cname,CHANMAX);
570                         chanlist[cname]->binarymodes = CM_TOPICLOCK | CM_NOEXTERNAL;
571                         chanlist[cname]->created = TIME;
572                         strcpy(chanlist[cname]->topic, "");
573                         strncpy(chanlist[cname]->setby, user->nick,NICKMAX);
574                         chanlist[cname]->topicset = 0;
575                         Ptr = chanlist[cname];
576                         log(DEBUG,"add_channel: created: %s",cname);
577                         /* set created to 2 to indicate user
578                          * is the first in the channel
579                          * and should be given ops */
580                         created = 2;
581                 }
582         }
583         else
584         {
585                 /* channel exists, just fish out a pointer to its struct */
586                 Ptr = FindChan(cname);
587                 if (Ptr)
588                 {
589                         log(DEBUG,"add_channel: joining to: %s",Ptr->name);
590                         
591                         // the override flag allows us to bypass channel modes
592                         // and bans (used by servers)
593                         if ((!override) || (!strcasecmp(user->server,ServerName)))
594                         {
595                                 log(DEBUG,"Not overriding...");
596                                 MOD_RESULT = 0;
597                                 FOREACH_RESULT(OnUserPreJoin(user,Ptr,cname));
598                                 if (MOD_RESULT == 1) {
599                                         return NULL;
600                                 }
601                                 log(DEBUG,"MOD_RESULT=%d",MOD_RESULT);
602                                 
603                                 if (!MOD_RESULT) 
604                                 {
605                                         log(DEBUG,"add_channel: checking key, invite, etc");
606                                         MOD_RESULT = 0;
607                                         FOREACH_RESULT(OnCheckKey(user, Ptr, key ? key : ""));
608                                         if (MOD_RESULT == 0)
609                                         {
610                                                 if (Ptr->key[0])
611                                                 {
612                                                         log(DEBUG,"add_channel: %s has key %s",Ptr->name,Ptr->key);
613                                                         if (!key)
614                                                         {
615                                                                 log(DEBUG,"add_channel: no key given in JOIN");
616                                                                 WriteServ(user->fd,"475 %s %s :Cannot join channel (Requires key)",user->nick, Ptr->name);
617                                                                 return NULL;
618                                                         }
619                                                         else
620                                                         {
621                                                                 if (strcasecmp(key,Ptr->key))
622                                                                 {
623                                                                         log(DEBUG,"add_channel: bad key given in JOIN");
624                                                                         WriteServ(user->fd,"475 %s %s :Cannot join channel (Incorrect key)",user->nick, Ptr->name);
625                                                                         return NULL;
626                                                                 }
627                                                         }
628                                                 }
629                                                 log(DEBUG,"add_channel: no key");
630                                         }
631                                         MOD_RESULT = 0;
632                                         FOREACH_RESULT(OnCheckInvite(user, Ptr));
633                                         if (MOD_RESULT == 0)
634                                         {
635                                                 if (Ptr->binarymodes & CM_INVITEONLY)
636                                                 {
637                                                         log(DEBUG,"add_channel: channel is +i");
638                                                         if (user->IsInvited(Ptr->name))
639                                                         {
640                                                                 /* user was invited to channel */
641                                                                 /* there may be an optional channel NOTICE here */
642                                                         }
643                                                         else
644                                                         {
645                                                                 WriteServ(user->fd,"473 %s %s :Cannot join channel (Invite only)",user->nick, Ptr->name);
646                                                                 return NULL;
647                                                         }
648                                                 }
649                                                 log(DEBUG,"add_channel: channel is not +i");
650                                         }
651                                         MOD_RESULT = 0;
652                                         FOREACH_RESULT(OnCheckLimit(user, Ptr));
653                                         if (MOD_RESULT == 0)
654                                         {
655                                                 if (Ptr->limit)
656                                                 {
657                                                         if (usercount(Ptr) >= Ptr->limit)
658                                                         {
659                                                                 WriteServ(user->fd,"471 %s %s :Cannot join channel (Channel is full)",user->nick, Ptr->name);
660                                                                 return NULL;
661                                                         }
662                                                 }
663                                         }
664                                         log(DEBUG,"add_channel: about to walk banlist");
665                                         MOD_RESULT = 0;
666                                         FOREACH_RESULT(OnCheckBan(user, Ptr));
667                                         if (MOD_RESULT == 0)
668                                         {
669                                                 /* check user against the channel banlist */
670                                                 if (Ptr)
671                                                 {
672                                                         if (Ptr->bans.size())
673                                                         {
674                                                                 for (BanList::iterator i = Ptr->bans.begin(); i != Ptr->bans.end(); i++)
675                                                                 {
676                                                                         if (match(user->GetFullHost(),i->data))
677                                                                         {
678                                                                                 WriteServ(user->fd,"474 %s %s :Cannot join channel (You're banned)",user->nick, Ptr->name);
679                                                                                 return NULL;
680                                                                         }
681                                                                 }
682                                                         }
683                                                 }
684                                                 log(DEBUG,"add_channel: bans checked");
685                                         }
686                                 
687                                 }
688                                 
689
690                                 if ((Ptr) && (user))
691                                 {
692                                         user->RemoveInvite(Ptr->name);
693                                 }
694         
695                                 log(DEBUG,"add_channel: invites removed");
696
697                         }
698                         else
699                         {
700                                 log(DEBUG,"Overridden checks");
701                         }
702
703                         
704                 }
705                 created = 1;
706         }
707
708         log(DEBUG,"Passed channel checks");
709         
710         for (int index =0; index != MAXCHANS; index++)
711         {
712                 log(DEBUG,"Check location %d",index);
713                 if (user->chans[index].channel == NULL)
714                 {
715                         log(DEBUG,"Adding into their channel list at location %d",index);
716
717                         if (created == 2) 
718                         {
719                                 /* first user in is given ops */
720                                 user->chans[index].uc_modes = UCMODE_OP;
721                         }
722                         else
723                         {
724                                 user->chans[index].uc_modes = 0;
725                         }
726                         user->chans[index].channel = Ptr;
727                         Ptr->AddUser((char*)user);
728                         WriteChannel(Ptr,user,"JOIN :%s",Ptr->name);
729                         
730                         if (!override) // we're not overriding... so this isnt part of a netburst, broadcast it.
731                         {
732                                 // use the stamdard J token with no privilages.
733                                 char buffer[MAXBUF];
734                                 if (created == 2)
735                                 {
736                                         snprintf(buffer,MAXBUF,"J %s @%s",user->nick,Ptr->name);
737                                 }
738                                 else
739                                 {
740                                         snprintf(buffer,MAXBUF,"J %s %s",user->nick,Ptr->name);
741                                 }
742                                 NetSendToAll(buffer);
743                         }
744
745                         log(DEBUG,"Sent JOIN to client");
746
747                         if (Ptr->topicset)
748                         {
749                                 WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
750                                 WriteServ(user->fd,"333 %s %s %s %lu", user->nick, Ptr->name, Ptr->setby, (unsigned long)Ptr->topicset);
751                         }
752                         userlist(user,Ptr);
753                         WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
754                         //WriteServ(user->fd,"324 %s %s +%s",user->nick, Ptr->name,chanmodes(Ptr));
755                         //WriteServ(user->fd,"329 %s %s %lu", user->nick, Ptr->name, (unsigned long)Ptr->created);
756                         FOREACH_MOD OnUserJoin(user,Ptr);
757                         return Ptr;
758                 }
759         }
760         log(DEBUG,"add_channel: user channel max exceeded: %s %s",user->nick,cname);
761         WriteServ(user->fd,"405 %s %s :You are on too many channels",user->nick, cname);
762         return NULL;
763 }
764
765 /* remove a channel from a users record, and remove the record from memory
766  * if the channel has become empty */
767
768 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local)
769 {
770         if ((!user) || (!cname))
771         {
772                 log(DEFAULT,"*** BUG *** del_channel was given an invalid parameter");
773                 return NULL;
774         }
775
776         chanrec* Ptr;
777
778         if ((!cname) || (!user))
779         {
780                 return NULL;
781         }
782
783         Ptr = FindChan(cname);
784         
785         if (!Ptr)
786         {
787                 return NULL;
788         }
789
790         FOREACH_MOD OnUserPart(user,Ptr);
791         log(DEBUG,"del_channel: removing: %s %s",user->nick,Ptr->name);
792         
793         for (int i =0; i != MAXCHANS; i++)
794         {
795                 /* zap it from the channel list of the user */
796                 if (user->chans[i].channel == Ptr)
797                 {
798                         if (reason)
799                         {
800                                 WriteChannel(Ptr,user,"PART %s :%s",Ptr->name, reason);
801
802                                 if (!local)
803                                 {
804                                         char buffer[MAXBUF];
805                                         snprintf(buffer,MAXBUF,"L %s %s :%s",user->nick,Ptr->name,reason);
806                                         NetSendToAll(buffer);
807                                 }
808
809                                 
810                         }
811                         else
812                         {
813                                 if (!local)
814                                 {
815                                         char buffer[MAXBUF];
816                                         snprintf(buffer,MAXBUF,"L %s %s :",user->nick,Ptr->name);
817                                         NetSendToAll(buffer);
818                                 }
819                         
820                                 WriteChannel(Ptr,user,"PART :%s",Ptr->name);
821                         }
822                         user->chans[i].uc_modes = 0;
823                         user->chans[i].channel = NULL;
824                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
825                         break;
826                 }
827         }
828
829         Ptr->DelUser((char*)user);
830         
831         /* if there are no users left on the channel */
832         if (!usercount(Ptr))
833         {
834                 chan_hash::iterator iter = chanlist.find(Ptr->name);
835
836                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
837
838                 /* kill the record */
839                 if (iter != chanlist.end())
840                 {
841                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
842                         delete Ptr;
843                         chanlist.erase(iter);
844                 }
845         }
846 }
847
848
849 void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason)
850 {
851         if ((!src) || (!user) || (!Ptr) || (!reason))
852         {
853                 log(DEFAULT,"*** BUG *** kick_channel was given an invalid parameter");
854                 return;
855         }
856
857         if ((!Ptr) || (!user) || (!src))
858         {
859                 return;
860         }
861
862         log(DEBUG,"kick_channel: removing: %s %s %s",user->nick,Ptr->name,src->nick);
863
864         if (!has_channel(user,Ptr))
865         {
866                 WriteServ(src->fd,"441 %s %s %s :They are not on that channel",src->nick, user->nick, Ptr->name);
867                 return;
868         }
869
870         int MOD_RESULT = 0;
871         FOREACH_RESULT(OnAccessCheck(src,user,Ptr,AC_KICK));
872         if (MOD_RESULT == ACR_DENY)
873                 return;
874
875         if (MOD_RESULT == ACR_DEFAULT)
876         {
877                 if (((cstatus(src,Ptr) < STATUS_HOP) || (cstatus(src,Ptr) < cstatus(user,Ptr))) && (!is_uline(src->server)))
878                 {
879                         if (cstatus(src,Ptr) == STATUS_HOP)
880                         {
881                                 WriteServ(src->fd,"482 %s %s :You must be a channel operator",src->nick, Ptr->name);
882                         }
883                         else
884                         {
885                                 WriteServ(src->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",src->nick, Ptr->name);
886                         }
887                         
888                         return;
889                 }
890         }
891
892         MOD_RESULT = 0;
893         FOREACH_RESULT(OnUserPreKick(src,user,Ptr,reason));
894         if (MOD_RESULT)
895                 return;
896
897         FOREACH_MOD OnUserKick(src,user,Ptr,reason);
898
899         for (int i =0; i != MAXCHANS; i++)
900         {
901                 /* zap it from the channel list of the user */
902                 if (user->chans[i].channel)
903                 if (!strcasecmp(user->chans[i].channel->name,Ptr->name))
904                 {
905                         WriteChannel(Ptr,src,"KICK %s %s :%s",Ptr->name, user->nick, reason);
906                         user->chans[i].uc_modes = 0;
907                         user->chans[i].channel = NULL;
908                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
909                         break;
910                 }
911         }
912
913         Ptr->DelUser((char*)user);
914
915         /* if there are no users left on the channel */
916         if (!usercount(Ptr))
917         {
918                 chan_hash::iterator iter = chanlist.find(Ptr->name);
919
920                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
921
922                 /* kill the record */
923                 if (iter != chanlist.end())
924                 {
925                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
926                         delete Ptr;
927                         chanlist.erase(iter);
928                 }
929         }
930 }
931
932
933
934
935 /* This function pokes and hacks at a parameter list like the following:
936  *
937  * PART #winbot,#darkgalaxy :m00!
938  *
939  * to turn it into a series of individual calls like this:
940  *
941  * PART #winbot :m00!
942  * PART #darkgalaxy :m00!
943  *
944  * The seperate calls are sent to a callback function provided by the caller
945  * (the caller will usually call itself recursively). The callback function
946  * must be a command handler. Calling this function on a line with no list causes
947  * no action to be taken. You must provide a starting and ending parameter number
948  * where the range of the list can be found, useful if you have a terminating
949  * parameter as above which is actually not part of the list, or parameters
950  * before the actual list as well. This code is used by many functions which
951  * can function as "one to list" (see the RFC) */
952
953 int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins)
954 {
955         char plist[MAXBUF];
956         char *param;
957         char *pars[32];
958         char blog[32][MAXBUF];
959         char blog2[32][MAXBUF];
960         int j = 0, q = 0, total = 0, t = 0, t2 = 0, total2 = 0;
961         char keystr[MAXBUF];
962         char moo[MAXBUF];
963
964         for (int i = 0; i <32; i++)
965                 strcpy(blog[i],"");
966
967         for (int i = 0; i <32; i++)
968                 strcpy(blog2[i],"");
969
970         strcpy(moo,"");
971         for (int i = 0; i <10; i++)
972         {
973                 if (!parameters[i])
974                 {
975                         parameters[i] = moo;
976                 }
977         }
978         if (joins)
979         {
980                 if (pcnt > 1) /* we have a key to copy */
981                 {
982                         strlcpy(keystr,parameters[1],MAXBUF);
983                 }
984         }
985
986         if (!parameters[start])
987         {
988                 return 0;
989         }
990         if (!strchr(parameters[start],','))
991         {
992                 return 0;
993         }
994         strcpy(plist,"");
995         for (int i = start; i <= end; i++)
996         {
997                 if (parameters[i])
998                 {
999                         strlcat(plist,parameters[i],MAXBUF);
1000                 }
1001         }
1002         
1003         j = 0;
1004         param = plist;
1005
1006         t = strlen(plist);
1007         for (int i = 0; i < t; i++)
1008         {
1009                 if (plist[i] == ',')
1010                 {
1011                         plist[i] = '\0';
1012                         strlcpy(blog[j++],param,MAXBUF);
1013                         param = plist+i+1;
1014                         if (j>20)
1015                         {
1016                                 WriteServ(u->fd,"407 %s %s :Too many targets in list, message not delivered.",u->nick,blog[j-1]);
1017                                 return 1;
1018                         }
1019                 }
1020         }
1021         strlcpy(blog[j++],param,MAXBUF);
1022         total = j;
1023
1024         if ((joins) && (keystr) && (total>0)) // more than one channel and is joining
1025         {
1026                 strcat(keystr,",");
1027         }
1028         
1029         if ((joins) && (keystr))
1030         {
1031                 if (strchr(keystr,','))
1032                 {
1033                         j = 0;
1034                         param = keystr;
1035                         t2 = strlen(keystr);
1036                         for (int i = 0; i < t2; i++)
1037                         {
1038                                 if (keystr[i] == ',')
1039                                 {
1040                                         keystr[i] = '\0';
1041                                         strlcpy(blog2[j++],param,MAXBUF);
1042                                         param = keystr+i+1;
1043                                 }
1044                         }
1045                         strlcpy(blog2[j++],param,MAXBUF);
1046                         total2 = j;
1047                 }
1048         }
1049
1050         for (j = 0; j < total; j++)
1051         {
1052                 if (blog[j])
1053                 {
1054                         pars[0] = blog[j];
1055                 }
1056                 for (q = end; q < pcnt-1; q++)
1057                 {
1058                         if (parameters[q+1])
1059                         {
1060                                 pars[q-end+1] = parameters[q+1];
1061                         }
1062                 }
1063                 if ((joins) && (parameters[1]))
1064                 {
1065                         if (pcnt > 1)
1066                         {
1067                                 pars[1] = blog2[j];
1068                         }
1069                         else
1070                         {
1071                                 pars[1] = NULL;
1072                         }
1073                 }
1074                 /* repeatedly call the function with the hacked parameter list */
1075                 if ((joins) && (pcnt > 1))
1076                 {
1077                         if (pars[1])
1078                         {
1079                                 // pars[1] already set up and containing key from blog2[j]
1080                                 fn(pars,2,u);
1081                         }
1082                         else
1083                         {
1084                                 pars[1] = parameters[1];
1085                                 fn(pars,2,u);
1086                         }
1087                 }
1088                 else
1089                 {
1090                         fn(pars,pcnt-(end-start),u);
1091                 }
1092         }
1093
1094         return 1;
1095 }
1096
1097
1098
1099 void kill_link(userrec *user,const char* r)
1100 {
1101         user_hash::iterator iter = clientlist.find(user->nick);
1102         
1103         char reason[MAXBUF];
1104         
1105         strncpy(reason,r,MAXBUF);
1106
1107         if (strlen(reason)>MAXQUIT)
1108         {
1109                 reason[MAXQUIT-1] = '\0';
1110         }
1111
1112         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
1113         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
1114         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
1115
1116         if (user->registered == 7) {
1117                 FOREACH_MOD OnUserQuit(user);
1118                 WriteCommonExcept(user,"QUIT :%s",reason);
1119
1120                 // Q token must go to ALL servers!!!
1121                 char buffer[MAXBUF];
1122                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
1123                 NetSendToAll(buffer);
1124         }
1125
1126         user->FlushWriteBuf();
1127
1128         FOREACH_MOD OnUserDisconnect(user);
1129
1130         if (user->fd > -1)
1131         {
1132                 FOREACH_MOD OnRawSocketClose(user->fd);
1133 #ifdef USE_KQUEUE
1134                 struct kevent ke;
1135                 EV_SET(&ke, user->fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
1136                 int i = kevent(kq, &ke, 1, 0, 0, NULL);
1137                 if (i == -1)
1138                 {
1139                         log(DEBUG,"kqueue: Failed to remove user from queue!");
1140                 }
1141 #endif
1142 #ifdef USE_EPOLL
1143                 struct epoll_event ev;
1144                 ev.events = EPOLLIN | EPOLLET;
1145                 ev.data.fd = user->fd;
1146                 int i = epoll_ctl(ep, EPOLL_CTL_DEL, user->fd, &ev);
1147                 if (i < 0)
1148                 {
1149                         log(DEBUG,"epoll: List deletion failure!");
1150                 }
1151 #endif
1152                 user->CloseSocket();
1153         }
1154
1155         // this must come before the WriteOpers so that it doesnt try to fill their buffer with anything
1156         // if they were an oper with +s.
1157         if (user->registered == 7) {
1158                 purge_empty_chans(user);
1159                 // fix by brain: only show local quits because we only show local connects (it just makes SENSE)
1160                 if (!strcmp(user->server,ServerName))
1161                         WriteOpers("*** Client exiting: %s!%s@%s [%s]",user->nick,user->ident,user->host,reason);
1162                 AddWhoWas(user);
1163         }
1164
1165         if (iter != clientlist.end())
1166         {
1167                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
1168                 if (user->fd > -1)
1169                         fd_ref_table[user->fd] = NULL;
1170                 clientlist.erase(iter);
1171         }
1172         delete user;
1173 }
1174
1175 void kill_link_silent(userrec *user,const char* r)
1176 {
1177         user_hash::iterator iter = clientlist.find(user->nick);
1178         
1179         char reason[MAXBUF];
1180         
1181         strncpy(reason,r,MAXBUF);
1182
1183         if (strlen(reason)>MAXQUIT)
1184         {
1185                 reason[MAXQUIT-1] = '\0';
1186         }
1187
1188         log(DEBUG,"kill_link: %s '%s'",user->nick,reason);
1189         Write(user->fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,reason);
1190         log(DEBUG,"closing fd %lu",(unsigned long)user->fd);
1191
1192         user->FlushWriteBuf();
1193
1194         if (user->registered == 7) {
1195                 FOREACH_MOD OnUserQuit(user);
1196                 WriteCommonExcept(user,"QUIT :%s",reason);
1197
1198                 // Q token must go to ALL servers!!!
1199                 char buffer[MAXBUF];
1200                 snprintf(buffer,MAXBUF,"Q %s :%s",user->nick,reason);
1201                 NetSendToAll(buffer);
1202         }
1203
1204         FOREACH_MOD OnUserDisconnect(user);
1205
1206         if (user->fd > -1)
1207         {
1208                 FOREACH_MOD OnRawSocketClose(user->fd);
1209 #ifdef USE_KQUEUE
1210                 struct kevent ke;
1211                 EV_SET(&ke, user->fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
1212                 int i = kevent(kq, &ke, 1, 0, 0, NULL);
1213                 if (i == -1)
1214                 {
1215                         log(DEBUG,"kqueue: Failed to remove user from queue!");
1216                 }
1217 #endif
1218 #ifdef USE_EPOLL
1219                 struct epoll_event ev;
1220                 ev.events = EPOLLIN | EPOLLET;
1221                 ev.data.fd = user->fd;
1222                 int i = epoll_ctl(ep, EPOLL_CTL_DEL, user->fd, &ev);
1223                 if (i < 0)
1224                 {
1225                         log(DEBUG,"epoll: List deletion failure!");
1226                 }
1227 #endif
1228                 user->CloseSocket();
1229         }
1230
1231         if (user->registered == 7) {
1232                 purge_empty_chans(user);
1233         }
1234         
1235         if (iter != clientlist.end())
1236         {
1237                 log(DEBUG,"deleting user hash value %lu",(unsigned long)user);
1238                 if (user->fd > -1)
1239                         fd_ref_table[user->fd] = NULL;
1240                 clientlist.erase(iter);
1241         }
1242         delete user;
1243 }
1244
1245
1246 int main(int argc, char** argv)
1247 {
1248         Start();
1249         srand(time(NULL));
1250         log(DEBUG,"*** InspIRCd starting up!");
1251         if (!FileExists(CONFIG_FILE))
1252         {
1253                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
1254                 log(DEFAULT,"main: no config");
1255                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
1256                 Exit(ERROR);
1257         }
1258         if (argc > 1) {
1259                 for (int i = 1; i < argc; i++)
1260                 {
1261                         if (!strcmp(argv[i],"-nofork")) {
1262                                 nofork = true;
1263                         }
1264                         if (!strcmp(argv[i],"-wait")) {
1265                                 sleep(6);
1266                         }
1267                         if (!strcmp(argv[i],"-nolimit")) {
1268                                 unlimitcore = true;
1269                         }
1270                 }
1271         }
1272         strlcpy(MyExecutable,argv[0],MAXBUF);
1273         
1274         // initialize the lowercase mapping table
1275         for (int cn = 0; cn < 256; cn++)
1276                 lowermap[cn] = cn;
1277         // lowercase the uppercase chars
1278         for (int cn = 65; cn < 91; cn++)
1279                 lowermap[cn] = tolower(cn);
1280         // now replace the specific chars for scandanavian comparison
1281         lowermap['['] = '{';
1282         lowermap[']'] = '}';
1283         lowermap['\\'] = '|';
1284
1285         if (InspIRCd(argv,argc) == ERROR)
1286         {
1287                 log(DEFAULT,"main: daemon function bailed");
1288                 printf("ERROR: could not initialise. Shutting down.\n");
1289                 Exit(ERROR);
1290         }
1291         Exit(TRUE);
1292         return 0;
1293 }
1294
1295 template<typename T> inline string ConvToStr(const T &in)
1296 {
1297         stringstream tmp;
1298         if (!(tmp << in)) return string();
1299         return tmp.str();
1300 }
1301
1302 /* re-allocates a nick in the user_hash after they change nicknames,
1303  * returns a pointer to the new user as it may have moved */
1304
1305 userrec* ReHashNick(char* Old, char* New)
1306 {
1307         //user_hash::iterator newnick;
1308         user_hash::iterator oldnick = clientlist.find(Old);
1309
1310         log(DEBUG,"ReHashNick: %s %s",Old,New);
1311         
1312         if (!strcasecmp(Old,New))
1313         {
1314                 log(DEBUG,"old nick is new nick, skipping");
1315                 return oldnick->second;
1316         }
1317         
1318         if (oldnick == clientlist.end()) return NULL; /* doesnt exist */
1319
1320         log(DEBUG,"ReHashNick: Found hashed nick %s",Old);
1321
1322         userrec* olduser = oldnick->second;
1323         clientlist[New] = olduser;
1324         clientlist.erase(oldnick);
1325
1326         log(DEBUG,"ReHashNick: Nick rehashed as %s",New);
1327         
1328         return clientlist[New];
1329 }
1330
1331 /* adds or updates an entry in the whowas list */
1332 void AddWhoWas(userrec* u)
1333 {
1334         whowas_hash::iterator iter = whowas.find(u->nick);
1335         WhoWasUser *a = new WhoWasUser();
1336         strlcpy(a->nick,u->nick,NICKMAX);
1337         strlcpy(a->ident,u->ident,IDENTMAX);
1338         strlcpy(a->dhost,u->dhost,160);
1339         strlcpy(a->host,u->host,160);
1340         strlcpy(a->fullname,u->fullname,MAXGECOS);
1341         strlcpy(a->server,u->server,256);
1342         a->signon = u->signon;
1343
1344         /* MAX_WHOWAS:   max number of /WHOWAS items
1345          * WHOWAS_STALE: number of hours before a WHOWAS item is marked as stale and
1346          *               can be replaced by a newer one
1347          */
1348         
1349         if (iter == whowas.end())
1350         {
1351                 if (whowas.size() >= WHOWAS_MAX)
1352                 {
1353                         for (whowas_hash::iterator i = whowas.begin(); i != whowas.end(); i++)
1354                         {
1355                                 // 3600 seconds in an hour ;)
1356                                 if ((i->second->signon)<(TIME-(WHOWAS_STALE*3600)))
1357                                 {
1358                                         // delete the old one
1359                                         if (i->second) delete i->second;
1360                                         // replace with new one
1361                                         i->second = a;
1362                                         log(DEBUG,"added WHOWAS entry, purged an old record");
1363                                         return;
1364                                 }
1365                         }
1366                         // no space left and user doesnt exist. Don't leave ram in use!
1367                         log(DEBUG,"Not able to update whowas (list at WHOWAS_MAX entries and trying to add new?), freeing excess ram");
1368                         delete a;
1369                 }
1370                 else
1371                 {
1372                         log(DEBUG,"added fresh WHOWAS entry");
1373                         whowas[a->nick] = a;
1374                 }
1375         }
1376         else
1377         {
1378                 log(DEBUG,"updated WHOWAS entry");
1379                 if (iter->second) delete iter->second;
1380                 iter->second = a;
1381         }
1382 }
1383
1384
1385 /* add a client connection to the sockets list */
1386 void AddClient(int socket, char* host, int port, bool iscached, char* ip)
1387 {
1388         string tempnick;
1389         char tn2[MAXBUF];
1390         user_hash::iterator iter;
1391
1392         tempnick = ConvToStr(socket) + "-unknown";
1393         sprintf(tn2,"%lu-unknown",(unsigned long)socket);
1394
1395         iter = clientlist.find(tempnick);
1396
1397         // fix by brain.
1398         // as these nicknames are 'RFC impossible', we can be sure nobody is going to be
1399         // using one as a registered connection. As theyre per fd, we can also safely assume
1400         // that we wont have collisions. Therefore, if the nick exists in the list, its only
1401         // used by a dead socket, erase the iterator so that the new client may reclaim it.
1402         // this was probably the cause of 'server ignores me when i hammer it with reconnects'
1403         // issue in earlier alphas/betas
1404         if (iter != clientlist.end())
1405         {
1406                 userrec* goner = iter->second;
1407                 delete goner;
1408                 clientlist.erase(iter);
1409         }
1410
1411         /*
1412          * It is OK to access the value here this way since we know
1413          * it exists, we just created it above.
1414          *
1415          * At NO other time should you access a value in a map or a
1416          * hash_map this way.
1417          */
1418         clientlist[tempnick] = new userrec();
1419
1420         NonBlocking(socket);
1421         log(DEBUG,"AddClient: %lu %s %d %s",(unsigned long)socket,host,port,ip);
1422
1423         clientlist[tempnick]->fd = socket;
1424         strlcpy(clientlist[tempnick]->nick, tn2,NICKMAX);
1425         strlcpy(clientlist[tempnick]->host, host,160);
1426         strlcpy(clientlist[tempnick]->dhost, host,160);
1427         clientlist[tempnick]->server = (char*)FindServerNamePtr(ServerName);
1428         strlcpy(clientlist[tempnick]->ident, "unknown",IDENTMAX);
1429         clientlist[tempnick]->registered = 0;
1430         clientlist[tempnick]->signon = TIME+dns_timeout;
1431         clientlist[tempnick]->lastping = 1;
1432         clientlist[tempnick]->port = port;
1433         strlcpy(clientlist[tempnick]->ip,ip,16);
1434
1435         // set the registration timeout for this user
1436         unsigned long class_regtimeout = 90;
1437         int class_flood = 0;
1438         long class_threshold = 5;
1439         long class_sqmax = 262144;      // 256kb
1440         long class_rqmax = 4096;        // 4k
1441
1442         for (ClassVector::iterator i = Classes.begin(); i != Classes.end(); i++)
1443         {
1444                 if (match(clientlist[tempnick]->host,i->host) && (i->type == CC_ALLOW))
1445                 {
1446                         class_regtimeout = (unsigned long)i->registration_timeout;
1447                         class_flood = i->flood;
1448                         clientlist[tempnick]->pingmax = i->pingtime;
1449                         class_threshold = i->threshold;
1450                         class_sqmax = i->sendqmax;
1451                         class_rqmax = i->recvqmax;
1452                         break;
1453                 }
1454         }
1455
1456         clientlist[tempnick]->nping = TIME+clientlist[tempnick]->pingmax+dns_timeout;
1457         clientlist[tempnick]->timeout = TIME+class_regtimeout;
1458         clientlist[tempnick]->flood = class_flood;
1459         clientlist[tempnick]->threshold = class_threshold;
1460         clientlist[tempnick]->sendqmax = class_sqmax;
1461         clientlist[tempnick]->recvqmax = class_rqmax;
1462
1463         for (int i = 0; i < MAXCHANS; i++)
1464         {
1465                 clientlist[tempnick]->chans[i].channel = NULL;
1466                 clientlist[tempnick]->chans[i].uc_modes = 0;
1467         }
1468
1469         if (clientlist.size() == MAXCLIENTS)
1470         {
1471                 kill_link(clientlist[tempnick],"No more connections allowed in this class");
1472                 return;
1473         }
1474
1475         // this is done as a safety check to keep the file descriptors within range of fd_ref_table.
1476         // its a pretty big but for the moment valid assumption:
1477         // file descriptors are handed out starting at 0, and are recycled as theyre freed.
1478         // therefore if there is ever an fd over 65535, 65536 clients must be connected to the
1479         // irc server at once (or the irc server otherwise initiating this many connections, files etc)
1480         // which for the time being is a physical impossibility (even the largest networks dont have more
1481         // than about 10,000 users on ONE server!)
1482         if (socket > 65534)
1483         {
1484                 kill_link(clientlist[tempnick],"Server is full");
1485                 return;
1486         }
1487                 
1488
1489         char* e = matches_exception(ip);
1490         if (!e)
1491         {
1492                 char* r = matches_zline(ip);
1493                 if (r)
1494                 {
1495                         char reason[MAXBUF];
1496                         snprintf(reason,MAXBUF,"Z-Lined: %s",r);
1497                         kill_link(clientlist[tempnick],reason);
1498                         return;
1499                 }
1500         }
1501         fd_ref_table[socket] = clientlist[tempnick];
1502
1503 #ifdef USE_EPOLL
1504         struct epoll_event ev;
1505         log(DEBUG,"epoll: Adduser to events, ep=%d socket=%d",ep,socket);
1506         ev.events = EPOLLIN | EPOLLET;
1507         ev.data.fd = socket;
1508         int i = epoll_ctl(ep, EPOLL_CTL_ADD, socket, &ev);
1509         if (i < 0)
1510         {
1511                 log(DEBUG,"epoll: List insertion failure!");
1512         }
1513 #endif
1514 #ifdef USE_KQUEUE
1515         struct kevent ke;
1516         log(DEBUG,"kqueue: Add user to events, kq=%d socket=%d",kq,socket);
1517         EV_SET(&ke, socket, EVFILT_READ, EV_ADD, 0, 0, NULL);
1518         int i = kevent(kq, &ke, 1, 0, 0, NULL);
1519         if (i == -1)
1520         {
1521                 log(DEBUG,"kqueue: List insertion failure!");
1522         }
1523
1524 #endif
1525 }
1526
1527 /* shows the message of the day, and any other on-logon stuff */
1528 void FullConnectUser(userrec* user)
1529 {
1530         statsConnects++;
1531         user->idle_lastmsg = TIME;
1532         log(DEBUG,"ConnectUser: %s",user->nick);
1533
1534         if ((strcmp(Passwd(user),"")) && (!user->haspassed))
1535         {
1536                 kill_link(user,"Invalid password");
1537                 return;
1538         }
1539         if (IsDenied(user))
1540         {
1541                 kill_link(user,"Unauthorised connection");
1542                 return;
1543         }
1544
1545         char match_against[MAXBUF];
1546         snprintf(match_against,MAXBUF,"%s@%s",user->ident,user->host);
1547         char* e = matches_exception(match_against);
1548         if (!e)
1549         {
1550                 char* r = matches_gline(match_against);
1551                 if (r)
1552                 {
1553                         char reason[MAXBUF];
1554                         snprintf(reason,MAXBUF,"G-Lined: %s",r);
1555                         kill_link_silent(user,reason);
1556                         return;
1557                 }
1558                 r = matches_kline(user->host);
1559                 if (r)
1560                 {
1561                         char reason[MAXBUF];
1562                         snprintf(reason,MAXBUF,"K-Lined: %s",r);
1563                         kill_link_silent(user,reason);
1564                         return;
1565                 }
1566         }
1567
1568         // fix by brain: move this below the xline checks to prevent spurious quits going onto the net that dont belong
1569         user->registered = 7;
1570
1571         WriteServ(user->fd,"NOTICE Auth :Welcome to \002%s\002!",Network);
1572         WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Network,user->nick,user->ident,user->host);
1573         WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,ServerName,VERSION);
1574         WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
1575         WriteServ(user->fd,"004 %s %s %s iowghraAsORVSxNCWqBzvdHtGI lvhopsmntikrRcaqOALQbSeKVfHGCuzN",user->nick,ServerName,VERSION);
1576         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
1577         std::stringstream v;
1578         v << "MESHED WALLCHOPS MODES=13 CHANTYPES=# PREFIX=(ohv)@%+ MAP SAFELIST MAXCHANNELS=" << MAXCHANS;
1579         v << " MAXBANS=60 NICKLEN=" << NICKMAX;
1580         v << " TOPICLEN=307 KICKLEN=307 MAXTARGETS=20 AWAYLEN=307 CHANMODES=ohvb,k,l,psmnti NETWORK=";
1581         v << Network;
1582         std::string data005 = v.str();
1583         FOREACH_MOD On005Numeric(data005);
1584         // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
1585         // so i'd better split it :)
1586         std::stringstream out(data005);
1587         std::string token = "";
1588         std::string line5 = "";
1589         int token_counter = 0;
1590         while (!out.eof())
1591         {
1592                 out >> token;
1593                 line5 = line5 + token + " ";
1594                 token_counter++;
1595                 if ((token_counter >= 13) || (out.eof() == true))
1596                 {
1597                         WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
1598                         line5 = "";
1599                         token_counter = 0;
1600                 }
1601         }
1602         ShowMOTD(user);
1603
1604         char buffer[MAXBUF];
1605         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);
1606         NetSendToAll(buffer);
1607
1608         // fix by brain: these should be AFTER the N token, so other servers know what the HELL we're on about... :)
1609         FOREACH_MOD OnUserConnect(user);
1610         WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,user->ip);
1611 }
1612
1613
1614 /* shows the message of the day, and any other on-logon stuff */
1615 void ConnectUser(userrec *user)
1616 {
1617         // dns is already done, things are fast. no need to wait for dns to complete just pass them straight on
1618         if ((user->dns_done) && (user->registered >= 3) && (AllModulesReportReady(user)))
1619         {
1620                 FullConnectUser(user);
1621         }
1622 }
1623
1624 std::string GetVersionString()
1625 {
1626         char Revision[] = "$Revision$";
1627         char versiondata[MAXBUF];
1628         char *s1 = Revision;
1629         char *savept;
1630         char *v2 = strtok_r(s1," ",&savept);
1631         s1 = savept;
1632         v2 = strtok_r(s1," ",&savept);
1633         s1 = savept;
1634 #ifdef USE_KQUEUE
1635         char socketengine[] = "kqueue";
1636 #endif
1637 #ifdef USE_SELECT
1638         char socketengine[] = "select";
1639 #endif
1640 #ifdef USE_EPOLL
1641         char socketengine[] = "epoll";
1642 #endif
1643         snprintf(versiondata,MAXBUF,"%s Rev. %s %s :%s (O=%lu) [SE=%s]",VERSION,v2,ServerName,SYSTEM,(unsigned long)OPTIMISATION,socketengine);
1644         return versiondata;
1645 }
1646
1647 void handle_version(char **parameters, int pcnt, userrec *user)
1648 {
1649         if (!pcnt)
1650         {
1651                 WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
1652         }
1653         else
1654         {
1655                 if (!strcmp(parameters[0],"*"))
1656                 {
1657                         for (int j = 0; j < 32; j++)
1658                         {
1659                                 if (me[j] != NULL)
1660                                 {
1661                                         for (int x = 0; x < me[j]->connectors.size(); x++)
1662                                         {
1663                                                 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());
1664                                         }
1665                                 }
1666                         }
1667                         return;
1668                 }
1669                 if (match(ServerName,parameters[0]))
1670                 {
1671                         WriteServ(user->fd,"351 %s :%s",user->nick,GetVersionString().c_str());
1672                         return;
1673                 }
1674                 bool displayed = false, found = false;
1675                 for (int j = 0; j < 32; j++)
1676                 {
1677                         if (me[j] != NULL)
1678                         {
1679                                 for (int x = 0; x < me[j]->connectors.size(); x++)
1680                                 {
1681                                         if (match(me[j]->connectors[x].GetServerName().c_str(),parameters[0]))
1682                                         {
1683                                                 found = true;
1684                                                 if ((me[j]->connectors[x].GetVersionString() != "") && (!displayed))
1685                                                 {
1686                                                         displayed = true;
1687                                                         WriteServ(user->fd,"351 %s :%s",user->nick,me[j]->connectors[x].GetVersionString().c_str());
1688                                                 }
1689                                         }
1690                                 }
1691                         }
1692                 }
1693                 if ((!displayed) && (found))
1694                 {
1695                         WriteServ(user->fd,"402 %s %s :Server %s has no version information",user->nick,parameters[0],parameters[0]);
1696                         return;
1697                 }
1698                 if (!found)
1699                 {
1700                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
1701                 }
1702         }
1703         return;
1704 }
1705
1706
1707 // calls a handler function for a command
1708
1709 void call_handler(const char* commandname,char **parameters, int pcnt, userrec *user)
1710 {
1711                 for (int i = 0; i < cmdlist.size(); i++)
1712                 {
1713                         if (!strcasecmp(cmdlist[i].command,commandname))
1714                         {
1715                                 if (cmdlist[i].handler_function)
1716                                 {
1717                                         if (pcnt>=cmdlist[i].min_params)
1718                                         {
1719                                                 if (strchr(user->modes,cmdlist[i].flags_needed))
1720                                                 {
1721                                                         cmdlist[i].handler_function(parameters,pcnt,user);
1722                                                 }
1723                                         }
1724                                 }
1725                         }
1726                 }
1727 }
1728
1729 void DoSplitEveryone()
1730 {
1731         bool go_again = true;
1732         while (go_again)
1733         {
1734                 go_again = false;
1735                 for (int i = 0; i < 32; i++)
1736                 {
1737                         if (me[i] != NULL)
1738                         {
1739                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
1740                                 {
1741                                         if (strcasecmp(j->GetServerName().c_str(),ServerName))
1742                                         {
1743                                                 j->routes.clear();
1744                                                 j->CloseConnection();
1745                                                 me[i]->connectors.erase(j);
1746                                                 go_again = true;
1747                                                 break;
1748                                         }
1749                                 }
1750                         }
1751                 }
1752         }
1753         log(DEBUG,"Removed server. Will remove clients...");
1754         // iterate through the userlist and remove all users on this server.
1755         // because we're dealing with a mesh, we dont have to deal with anything
1756         // "down-route" from this server (nice huh)
1757         go_again = true;
1758         char reason[MAXBUF];
1759         while (go_again)
1760         {
1761                 go_again = false;
1762                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
1763                 {
1764                         if (strcasecmp(u->second->server,ServerName))
1765                         {
1766                                 snprintf(reason,MAXBUF,"%s %s",ServerName,u->second->server);
1767                                 kill_link(u->second,reason);
1768                                 go_again = true;
1769                                 break;
1770                         }
1771                 }
1772         }
1773         has_been_netsplit = true;
1774 }
1775
1776
1777
1778 void force_nickchange(userrec* user,const char* newnick)
1779 {
1780         char nick[MAXBUF];
1781         int MOD_RESULT = 0;
1782         
1783         strcpy(nick,"");
1784
1785         FOREACH_RESULT(OnUserPreNick(user,newnick));
1786         if (MOD_RESULT) {
1787                 statsCollisions++;
1788                 kill_link(user,"Nickname collision");
1789                 return;
1790         }
1791         if (matches_qline(newnick))
1792         {
1793                 statsCollisions++;
1794                 kill_link(user,"Nickname collision");
1795                 return;
1796         }
1797         
1798         if (user)
1799         {
1800                 if (newnick)
1801                 {
1802                         strncpy(nick,newnick,MAXBUF);
1803                 }
1804                 if (user->registered == 7)
1805                 {
1806                         char* pars[1];
1807                         pars[0] = nick;
1808                         handle_nick(pars,1,user);
1809                 }
1810         }
1811 }
1812                                 
1813
1814 int process_parameters(char **command_p,char *parameters)
1815 {
1816         int j = 0;
1817         int q = strlen(parameters);
1818         if (!q)
1819         {
1820                 /* no parameters, command_p invalid! */
1821                 return 0;
1822         }
1823         if (parameters[0] == ':')
1824         {
1825                 command_p[0] = parameters+1;
1826                 return 1;
1827         }
1828         if (q)
1829         {
1830                 if ((strchr(parameters,' ')==NULL) || (parameters[0] == ':'))
1831                 {
1832                         /* only one parameter */
1833                         command_p[0] = parameters;
1834                         if (parameters[0] == ':')
1835                         {
1836                                 if (strchr(parameters,' ') != NULL)
1837                                 {
1838                                         command_p[0]++;
1839                                 }
1840                         }
1841                         return 1;
1842                 }
1843         }
1844         command_p[j++] = parameters;
1845         for (int i = 0; i <= q; i++)
1846         {
1847                 if (parameters[i] == ' ')
1848                 {
1849                         command_p[j++] = parameters+i+1;
1850                         parameters[i] = '\0';
1851                         if (command_p[j-1][0] == ':')
1852                         {
1853                                 *command_p[j-1]++; /* remove dodgy ":" */
1854                                 break;
1855                                 /* parameter like this marks end of the sequence */
1856                         }
1857                 }
1858         }
1859         return j; /* returns total number of items in the list */
1860 }
1861
1862 void process_command(userrec *user, char* cmd)
1863 {
1864         char *parameters;
1865         char *command;
1866         char *command_p[127];
1867         char p[MAXBUF], temp[MAXBUF];
1868         int j, items, cmd_found;
1869
1870         for (int i = 0; i < 127; i++)
1871                 command_p[i] = NULL;
1872
1873         if (!user)
1874         {
1875                 return;
1876         }
1877         if (!cmd)
1878         {
1879                 return;
1880         }
1881         if (!cmd[0])
1882         {
1883                 return;
1884         }
1885         
1886         int total_params = 0;
1887         if (strlen(cmd)>2)
1888         {
1889                 for (int q = 0; q < strlen(cmd)-1; q++)
1890                 {
1891                         if ((cmd[q] == ' ') && (cmd[q+1] == ':'))
1892                         {
1893                                 total_params++;
1894                                 // found a 'trailing', we dont count them after this.
1895                                 break;
1896                         }
1897                         if (cmd[q] == ' ')
1898                                 total_params++;
1899                 }
1900         }
1901
1902         // another phidjit bug...
1903         if (total_params > 126)
1904         {
1905                 *(strchr(cmd,' ')) = '\0';
1906                 WriteServ(user->fd,"421 %s %s :Too many parameters given",user->nick,cmd);
1907                 return;
1908         }
1909
1910         strlcpy(temp,cmd,MAXBUF);
1911         
1912         std::string tmp = cmd;
1913         for (int i = 0; i <= MODCOUNT; i++)
1914         {
1915                 std::string oldtmp = tmp;
1916                 modules[i]->OnServerRaw(tmp,true,user);
1917                 if (oldtmp != tmp)
1918                 {
1919                         log(DEBUG,"A Module changed the input string!");
1920                         log(DEBUG,"New string: %s",tmp.c_str());
1921                         log(DEBUG,"Old string: %s",oldtmp.c_str());
1922                         break;
1923                 }
1924         }
1925         strlcpy(cmd,tmp.c_str(),MAXBUF);
1926         strlcpy(temp,cmd,MAXBUF);
1927
1928         if (!strchr(cmd,' '))
1929         {
1930                 /* no parameters, lets skip the formalities and not chop up
1931                  * the string */
1932                 log(DEBUG,"About to preprocess command with no params");
1933                 items = 0;
1934                 command_p[0] = NULL;
1935                 parameters = NULL;
1936                 for (int i = 0; i <= strlen(cmd); i++)
1937                 {
1938                         cmd[i] = toupper(cmd[i]);
1939                 }
1940                 command = cmd;
1941         }
1942         else
1943         {
1944                 strcpy(cmd,"");
1945                 j = 0;
1946                 /* strip out extraneous linefeeds through mirc's crappy pasting (thanks Craig) */
1947                 for (int i = 0; i < strlen(temp); i++)
1948                 {
1949                         if ((temp[i] != 10) && (temp[i] != 13) && (temp[i] != 0) && (temp[i] != 7))
1950                         {
1951                                 cmd[j++] = temp[i];
1952                                 cmd[j] = 0;
1953                         }
1954                 }
1955                 /* split the full string into a command plus parameters */
1956                 parameters = p;
1957                 strcpy(p," ");
1958                 command = cmd;
1959                 if (strchr(cmd,' '))
1960                 {
1961                         for (int i = 0; i <= strlen(cmd); i++)
1962                         {
1963                                 /* capitalise the command ONLY, leave params intact */
1964                                 cmd[i] = toupper(cmd[i]);
1965                                 /* are we nearly there yet?! :P */
1966                                 if (cmd[i] == ' ')
1967                                 {
1968                                         command = cmd;
1969                                         parameters = cmd+i+1;
1970                                         cmd[i] = '\0';
1971                                         break;
1972                                 }
1973                         }
1974                 }
1975                 else
1976                 {
1977                         for (int i = 0; i <= strlen(cmd); i++)
1978                         {
1979                                 cmd[i] = toupper(cmd[i]);
1980                         }
1981                 }
1982
1983         }
1984         cmd_found = 0;
1985         
1986         if (strlen(command)>MAXCOMMAND)
1987         {
1988                 WriteServ(user->fd,"421 %s %s :Command too long",user->nick,command);
1989                 return;
1990         }
1991         
1992         for (int x = 0; x < strlen(command); x++)
1993         {
1994                 if (((command[x] < 'A') || (command[x] > 'Z')) && (command[x] != '.'))
1995                 {
1996                         if (((command[x] < '0') || (command[x]> '9')) && (command[x] != '-'))
1997                         {
1998                                 if (strchr("@!\"$%^&*(){}[]_=+;:'#~,<>/?\\|`",command[x]))
1999                                 {
2000                                         statsUnknown++;
2001                                         WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
2002                                         return;
2003                                 }
2004                         }
2005                 }
2006         }
2007
2008         for (int i = 0; i != cmdlist.size(); i++)
2009         {
2010                 if (cmdlist[i].command[0])
2011                 {
2012                         if (strlen(command)>=(strlen(cmdlist[i].command))) if (!strncmp(command, cmdlist[i].command,MAXCOMMAND))
2013                         {
2014                                 if (parameters)
2015                                 {
2016                                         if (parameters[0])
2017                                         {
2018                                                 items = process_parameters(command_p,parameters);
2019                                         }
2020                                         else
2021                                         {
2022                                                 items = 0;
2023                                                 command_p[0] = NULL;
2024                                         }
2025                                 }
2026                                 else
2027                                 {
2028                                         items = 0;
2029                                         command_p[0] = NULL;
2030                                 }
2031                                 
2032                                 if (user)
2033                                 {
2034                                         /* activity resets the ping pending timer */
2035                                         user->nping = TIME + user->pingmax;
2036                                         if ((items) < cmdlist[i].min_params)
2037                                         {
2038                                                 log(DEBUG,"process_command: not enough parameters: %s %s",user->nick,command);
2039                                                 WriteServ(user->fd,"461 %s %s :Not enough parameters",user->nick,command);
2040                                                 return;
2041                                         }
2042                                         if ((!strchr(user->modes,cmdlist[i].flags_needed)) && (cmdlist[i].flags_needed))
2043                                         {
2044                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
2045                                                 WriteServ(user->fd,"481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
2046                                                 cmd_found = 1;
2047                                                 return;
2048                                         }
2049                                         if ((cmdlist[i].flags_needed) && (!user->HasPermission(command)))
2050                                         {
2051                                                 log(DEBUG,"process_command: permission denied: %s %s",user->nick,command);
2052                                                 WriteServ(user->fd,"481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command);
2053                                                 cmd_found = 1;
2054                                                 return;
2055                                         }
2056                                         /* if the command isnt USER, PASS, or NICK, and nick is empty,
2057                                          * deny command! */
2058                                         if ((strncmp(command,"USER",4)) && (strncmp(command,"NICK",4)) && (strncmp(command,"PASS",4)))
2059                                         {
2060                                                 if ((!isnick(user->nick)) || (user->registered != 7))
2061                                                 {
2062                                                         log(DEBUG,"process_command: not registered: %s %s",user->nick,command);
2063                                                         WriteServ(user->fd,"451 %s :You have not registered",command);
2064                                                         return;
2065                                                 }
2066                                         }
2067                                         if ((user->registered == 7) && (!strchr(user->modes,'o')))
2068                                         {
2069                                                 std::stringstream dcmds(DisabledCommands);
2070                                                 while (!dcmds.eof())
2071                                                 {
2072                                                         std::string thiscmd;
2073                                                         dcmds >> thiscmd;
2074                                                         if (!strcasecmp(thiscmd.c_str(),command))
2075                                                         {
2076                                                                 // command is disabled!
2077                                                                 WriteServ(user->fd,"421 %s %s :This command has been disabled.",user->nick,command);
2078                                                                 return;
2079                                                         }
2080                                                 }
2081                                         }
2082                                         if ((user->registered == 7) || (!strncmp(command,"USER",4)) || (!strncmp(command,"NICK",4)) || (!strncmp(command,"PASS",4)))
2083                                         {
2084                                                 if (cmdlist[i].handler_function)
2085                                                 {
2086                                                         
2087                                                         /* ikky /stats counters */
2088                                                         if (temp)
2089                                                         {
2090                                                                 cmdlist[i].use_count++;
2091                                                                 cmdlist[i].total_bytes+=strlen(temp);
2092                                                         }
2093
2094                                                         int MOD_RESULT = 0;
2095                                                         FOREACH_RESULT(OnPreCommand(command,command_p,items,user));
2096                                                         if (MOD_RESULT == 1) {
2097                                                                 return;
2098                                                         }
2099
2100                                                         /* WARNING: nothing may come after the
2101                                                          * command handler call, as the handler
2102                                                          * may free the user structure! */
2103
2104                                                         cmdlist[i].handler_function(command_p,items,user);
2105                                                 }
2106                                                 return;
2107                                         }
2108                                         else
2109                                         {
2110                                                 WriteServ(user->fd,"451 %s :You have not registered",command);
2111                                                 return;
2112                                         }
2113                                 }
2114                                 cmd_found = 1;
2115                         }
2116                 }
2117         }
2118         if ((!cmd_found) && (user))
2119         {
2120                 statsUnknown++;
2121                 WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
2122         }
2123 }
2124
2125 bool removecommands(const char* source)
2126 {
2127         bool go_again = true;
2128         while (go_again)
2129         {
2130                 go_again = false;
2131                 for (std::deque<command_t>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
2132                 {
2133                         if (!strcmp(i->source,source))
2134                         {
2135                                 log(DEBUG,"removecommands(%s) Removing dependent command: %s",i->source,i->command);
2136                                 cmdlist.erase(i);
2137                                 go_again = true;
2138                                 break;
2139                         }
2140                 }
2141         }
2142         return true;
2143 }
2144
2145
2146 void process_buffer(const char* cmdbuf,userrec *user)
2147 {
2148         if (!user)
2149         {
2150                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
2151                 return;
2152         }
2153         char cmd[MAXBUF];
2154         if (!cmdbuf)
2155         {
2156                 log(DEFAULT,"*** BUG *** process_buffer was given an invalid parameter");
2157                 return;
2158         }
2159         if (!cmdbuf[0])
2160         {
2161                 return;
2162         }
2163         while (*cmdbuf == ' ') cmdbuf++; // strip leading spaces
2164
2165         strlcpy(cmd,cmdbuf,MAXBUF);
2166         if (!cmd[0])
2167         {
2168                 return;
2169         }
2170         int sl = strlen(cmd)-1;
2171         if ((cmd[sl] == 13) || (cmd[sl] == 10))
2172         {
2173                 cmd[sl] = '\0';
2174         }
2175         sl = strlen(cmd)-1;
2176         if ((cmd[sl] == 13) || (cmd[sl] == 10))
2177         {
2178                 cmd[sl] = '\0';
2179         }
2180         sl = strlen(cmd)-1;
2181         while (cmd[sl] == ' ') // strip trailing spaces
2182         {
2183                 cmd[sl] = '\0';
2184                 sl = strlen(cmd)-1;
2185         }
2186
2187         if (!cmd[0])
2188         {
2189                 return;
2190         }
2191         log(DEBUG,"CMDIN: %s %s",user->nick,cmd);
2192         tidystring(cmd);
2193         if ((user) && (cmd))
2194         {
2195                 process_command(user,cmd);
2196         }
2197 }
2198
2199 void DoSync(serverrec* serv, char* tcp_host)
2200 {
2201         char data[MAXBUF];
2202         log(DEBUG,"Sending sync");
2203         // send start of sync marker: Y <timestamp>
2204         // at this point the ircd receiving it starts broadcasting this netburst to all ircds
2205         // except the ones its receiving it from.
2206         snprintf(data,MAXBUF,"%s Y %lu",CreateSum().c_str(),(unsigned long)TIME);
2207         serv->SendPacket(data,tcp_host);
2208         // send users and channels
2209
2210         NetSendMyRoutingTable();
2211
2212         // send all routing table and uline voodoo. The ordering of these commands is IMPORTANT!
2213         for (int j = 0; j < 32; j++)
2214         {
2215                 if (me[j] != NULL)
2216                 {
2217                         for (int k = 0; k < me[j]->connectors.size(); k++)
2218                         {
2219                                 if (is_uline(me[j]->connectors[k].GetServerName().c_str()))
2220                                 {
2221                                         snprintf(data,MAXBUF,"%s H %s",CreateSum().c_str(),me[j]->connectors[k].GetServerName().c_str());
2222                                         serv->SendPacket(data,tcp_host);
2223                                 }
2224                         }
2225                 }
2226         }
2227
2228         // send our version for the remote side to cache
2229         snprintf(data,MAXBUF,"%s v %s %s",CreateSum().c_str(),ServerName,GetVersionString().c_str());
2230         serv->SendPacket(data,tcp_host);
2231
2232         // sync the users and channels, give the modules a look-in.
2233         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
2234         {
2235                 snprintf(data,MAXBUF,"%s N %lu %s %s %s %s +%s %s %s :%s",CreateSum().c_str(),(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);
2236                 serv->SendPacket(data,tcp_host);
2237                 if (strchr(u->second->modes,'o'))
2238                 {
2239                         snprintf(data,MAXBUF,"%s | %s %s",CreateSum().c_str(),u->second->nick,u->second->oper);
2240                         serv->SendPacket(data,tcp_host);
2241                 }
2242                 for (int i = 0; i <= MODCOUNT; i++)
2243                 {
2244                         string_list l = modules[i]->OnUserSync(u->second);
2245                         for (int j = 0; j < l.size(); j++)
2246                         {
2247                                 snprintf(data,MAXBUF,"%s %s",CreateSum().c_str(),l[j].c_str());
2248                                 serv->SendPacket(data,tcp_host);
2249                         }
2250                 }
2251                 char* chl = chlist(u->second,u->second);
2252                 if (strcmp(chl,""))
2253                 {
2254                         snprintf(data,MAXBUF,"%s J %s %s",CreateSum().c_str(),u->second->nick,chl);
2255                         serv->SendPacket(data,tcp_host);
2256                 }
2257         }
2258         // send channel modes, topics etc...
2259         for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
2260         {
2261                 snprintf(data,MAXBUF,"M %s +%s",c->second->name,chanmodes(c->second));
2262                 serv->SendPacket(data,tcp_host);
2263                 for (int i = 0; i <= MODCOUNT; i++)
2264                 {
2265                         string_list l = modules[i]->OnChannelSync(c->second);
2266                         for (int j = 0; j < l.size(); j++)
2267                         {
2268                                 snprintf(data,MAXBUF,"%s %s",CreateSum().c_str(),l[j].c_str());
2269                                 serv->SendPacket(data,tcp_host);
2270                         }
2271                 }
2272                 if (c->second->topic[0])
2273                 {
2274                         snprintf(data,MAXBUF,"%s T %lu %s %s :%s",CreateSum().c_str(),(unsigned long)c->second->topicset,c->second->setby,c->second->name,c->second->topic);
2275                         serv->SendPacket(data,tcp_host);
2276                 }
2277                 // send current banlist
2278                 
2279                 for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
2280                 {
2281                         snprintf(data,MAXBUF,"%s M %s +b %s",CreateSum().c_str(),c->second->name,b->data);
2282                         serv->SendPacket(data,tcp_host);
2283                 }
2284         }
2285         // sync global zlines, glines, etc
2286         sync_xlines(serv,tcp_host);
2287
2288         snprintf(data,MAXBUF,"%s F %lu",CreateSum().c_str(),(unsigned long)TIME);
2289         serv->SendPacket(data,tcp_host);
2290         log(DEBUG,"Sent sync");
2291         // ircd sends its serverlist after the end of sync here
2292 }
2293
2294
2295 void NetSendMyRoutingTable()
2296 {
2297         // send out a line saying what is reachable to us.
2298         // E.g. if A is linked to B C and D, send out:
2299         // $ A B C D
2300         // if its only linked to B and D send out:
2301         // $ A B D
2302         // if it has no links, dont even send out the line at all.
2303         char buffer[MAXBUF];
2304         snprintf(buffer,MAXBUF,"$ %s",ServerName);
2305         bool sendit = false;
2306         for (int i = 0; i < 32; i++)
2307         {
2308                 if (me[i] != NULL)
2309                 {
2310                         for (int j = 0; j < me[i]->connectors.size(); j++)
2311                         {
2312                                 if ((me[i]->connectors[j].GetState() != STATE_DISCONNECTED) || (is_uline(me[i]->connectors[j].GetServerName().c_str())))
2313                                 {
2314                                         strlcat(buffer," ",MAXBUF);
2315                                         strlcat(buffer,me[i]->connectors[j].GetServerName().c_str(),MAXBUF);
2316                                         sendit = true;
2317                                 }
2318                         }
2319                 }
2320         }
2321         if (sendit)
2322                 NetSendToAll(buffer);
2323 }
2324
2325
2326 void DoSplit(const char* params)
2327 {
2328         bool go_again = true;
2329         while (go_again)
2330         {
2331                 go_again = false;
2332                 for (int i = 0; i < 32; i++)
2333                 {
2334                         if (me[i] != NULL)
2335                         {
2336                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
2337                                 {
2338                                         if (!strcasecmp(j->GetServerName().c_str(),params))
2339                                         {
2340                                                 j->routes.clear();
2341                                                 j->CloseConnection();
2342                                                 me[i]->connectors.erase(j);
2343                                                 go_again = true;
2344                                                 break;
2345                                         }
2346                                 }
2347                         }
2348                 }
2349         }
2350         log(DEBUG,"Removed server. Will remove clients...");
2351         // iterate through the userlist and remove all users on this server.
2352         // because we're dealing with a mesh, we dont have to deal with anything
2353         // "down-route" from this server (nice huh)
2354         go_again = true;
2355         char reason[MAXBUF];
2356         snprintf(reason,MAXBUF,"%s %s",ServerName,params);
2357         while (go_again)
2358         {
2359                 go_again = false;
2360                 for (user_hash::const_iterator u = clientlist.begin(); u != clientlist.end(); u++)
2361                 {
2362                         if (!strcasecmp(u->second->server,params))
2363                         {
2364                                 kill_link(u->second,reason);
2365                                 go_again = true;
2366                                 break;
2367                         }
2368                 }
2369         }
2370         has_been_netsplit = true;
2371 }
2372
2373 // removes a server. Will NOT remove its users!
2374
2375 void RemoveServer(const char* name)
2376 {
2377         bool go_again = true;
2378         while (go_again)
2379         {
2380                 go_again = false;
2381                 for (int i = 0; i < 32; i++)
2382                 {
2383                         if (me[i] != NULL)
2384                         {
2385                                 for (vector<ircd_connector>::iterator j = me[i]->connectors.begin(); j != me[i]->connectors.end(); j++)
2386                                 {
2387                                         if (!strcasecmp(j->GetServerName().c_str(),name))
2388                                         {
2389                                                 j->routes.clear();
2390                                                 j->CloseConnection();
2391                                                 me[i]->connectors.erase(j);
2392                                                 go_again = true;
2393                                                 break;
2394                                         }
2395                                 }
2396                         }
2397                 }
2398         }
2399 }
2400
2401
2402 char MODERR[MAXBUF];
2403
2404 char* ModuleError()
2405 {
2406         return MODERR;
2407 }
2408
2409 void erase_factory(int j)
2410 {
2411         int v = 0;
2412         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
2413         {
2414                 if (v == j)
2415                 {
2416                         factory.erase(t);
2417                         factory.push_back(NULL);
2418                         return;
2419                 }
2420                 v++;
2421         }
2422 }
2423
2424 void erase_module(int j)
2425 {
2426         int v1 = 0;
2427         for (std::vector<Module*>::iterator m = modules.begin(); m!= modules.end(); m++)
2428         {
2429                 if (v1 == j)
2430                 {
2431                         delete *m;
2432                         modules.erase(m);
2433                         modules.push_back(NULL);
2434                         break;
2435                 }
2436                 v1++;
2437         }
2438         int v2 = 0;
2439         for (std::vector<std::string>::iterator v = module_names.begin(); v != module_names.end(); v++)
2440         {
2441                 if (v2 == j)
2442                 {
2443                        module_names.erase(v);
2444                        break;
2445                 }
2446                 v2++;
2447         }
2448
2449 }
2450
2451 bool UnloadModule(const char* filename)
2452 {
2453         std::string filename_str = filename;
2454         for (int j = 0; j != module_names.size(); j++)
2455         {
2456                 if (module_names[j] == filename_str)
2457                 {
2458                         if (modules[j]->GetVersion().Flags & VF_STATIC)
2459                         {
2460                                 log(DEFAULT,"Failed to unload STATIC module %s",filename);
2461                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
2462                                 return false;
2463                         }
2464                         // found the module
2465                         log(DEBUG,"Deleting module...");
2466                         erase_module(j);
2467                         log(DEBUG,"Erasing module entry...");
2468                         erase_factory(j);
2469                         log(DEBUG,"Removing dependent commands...");
2470                         removecommands(filename);
2471                         log(DEFAULT,"Module %s unloaded",filename);
2472                         MODCOUNT--;
2473                         return true;
2474                 }
2475         }
2476         log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
2477         snprintf(MODERR,MAXBUF,"Module not loaded");
2478         return false;
2479 }
2480
2481 bool LoadModule(const char* filename)
2482 {
2483         char modfile[MAXBUF];
2484 #ifdef STATIC_LINK
2485         snprintf(modfile,MAXBUF,"%s",filename);
2486 #else
2487         snprintf(modfile,MAXBUF,"%s/%s",ModPath,filename);
2488 #endif
2489         std::string filename_str = filename;
2490 #ifndef STATIC_LINK
2491         if (!DirValid(modfile))
2492         {
2493                 log(DEFAULT,"Module %s is not within the modules directory.",modfile);
2494                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
2495                 return false;
2496         }
2497 #endif
2498         log(DEBUG,"Loading module: %s",modfile);
2499 #ifndef STATIC_LINK
2500         if (FileExists(modfile))
2501         {
2502 #endif
2503                 for (int j = 0; j < module_names.size(); j++)
2504                 {
2505                         if (module_names[j] == filename_str)
2506                         {
2507                                 log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
2508                                 snprintf(MODERR,MAXBUF,"Module already loaded");
2509                                 return false;
2510                         }
2511                 }
2512                 ircd_module* a = new ircd_module(modfile);
2513                 factory[MODCOUNT+1] = a;
2514                 if (factory[MODCOUNT+1]->LastError())
2515                 {
2516                         log(DEFAULT,"Unable to load %s: %s",modfile,factory[MODCOUNT+1]->LastError());
2517                         snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[MODCOUNT+1]->LastError());
2518                         MODCOUNT--;
2519                         return false;
2520                 }
2521                 if (factory[MODCOUNT+1]->factory)
2522                 {
2523                         Module* m = factory[MODCOUNT+1]->factory->CreateModule();
2524                         modules[MODCOUNT+1] = m;
2525                         /* save the module and the module's classfactory, if
2526                          * this isnt done, random crashes can occur :/ */
2527                         module_names.push_back(filename);
2528                 }
2529                 else
2530                 {
2531                         log(DEFAULT,"Unable to load %s",modfile);
2532                         snprintf(MODERR,MAXBUF,"Factory function failed!");
2533                         return false;
2534                 }
2535 #ifndef STATIC_LINK
2536         }
2537         else
2538         {
2539                 log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
2540                 snprintf(MODERR,MAXBUF,"Module file could not be found");
2541                 return false;
2542         }
2543 #endif
2544         MODCOUNT++;
2545         return true;
2546 }
2547
2548
2549 bool GotServer(std::string name)
2550 {
2551         for (int j = 0; j < 32; j++)
2552         {
2553                 if (me[j] != NULL)
2554                 {
2555                         for (int k = 0; k < me[j]->connectors.size(); k++)
2556                         {
2557                                 if (name == me[j]->connectors[k].GetServerName())
2558                                 {
2559                                         return true;
2560                                 }
2561                         }
2562                 }
2563         }
2564         return false;
2565 }
2566
2567
2568 int InspIRCd(char** argv, int argc)
2569 {
2570         struct sockaddr_in client,server;
2571         char addrs[MAXBUF][255];
2572         int incomingSockfd, result = TRUE;
2573         socklen_t length;
2574         int count = 0;
2575         int selectResult = 0, selectResult2 = 0;
2576         char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
2577         fd_set selectFds;
2578         timeval tv;
2579
2580         std::string logpath = GetFullProgDir(argv,argc) + "/ircd.log";
2581         log_file = fopen(logpath.c_str(),"a+");
2582         if (!log_file)
2583         {
2584                 printf("ERROR: Could not write to logfile %s, bailing!\n\n",logpath.c_str());
2585                 Exit(ERROR);
2586         }
2587
2588 #ifdef IS_CYGWIN
2589         printf("Logging to ircd.log...\n");
2590 #else
2591         printf("Logging to %s...\n",logpath.c_str());
2592 #endif
2593
2594         log(DEFAULT,"$Id$");
2595         if (geteuid() == 0)
2596         {
2597                 printf("WARNING!!! You are running an irc server as ROOT!!! DO NOT DO THIS!!!\n\n");
2598                 Exit(ERROR);
2599                 log(DEFAULT,"InspIRCd: startup: not starting with UID 0!");
2600         }
2601         SetupCommandTable();
2602         log(DEBUG,"InspIRCd: startup: default command table set up");
2603         
2604         ReadConfig(true,NULL);
2605         if (DieValue[0])
2606         { 
2607                 printf("WARNING: %s\n\n",DieValue);
2608                 log(DEFAULT,"Ut-Oh, somebody didn't read their config file: '%s'",DieValue);
2609                 exit(0); 
2610         }  
2611         log(DEBUG,"InspIRCd: startup: read config");
2612
2613         AddServerName(ServerName);
2614
2615         int clientportcount = 0, serverportcount = 0;
2616
2617         for (count = 0; count < ConfValueEnum("bind",&config_f); count++)
2618         {
2619                 ConfValue("bind","port",count,configToken,&config_f);
2620                 ConfValue("bind","address",count,Addr,&config_f);
2621                 ConfValue("bind","type",count,Type,&config_f);
2622                 if (!strcmp(Type,"servers"))
2623                 {
2624                         char Default[MAXBUF];
2625                         strcpy(Default,"no");
2626                         ConfValue("bind","default",count,Default,&config_f);
2627                         if (strchr(Default,'y'))
2628                         {
2629                                 defaultRoute = serverportcount;
2630                                 log(DEBUG,"InspIRCd: startup: binding '%s:%s' is default server route",Addr,configToken);
2631                         }
2632                         me[serverportcount] = new serverrec(ServerName,100L,false);
2633                         if (!me[serverportcount]->CreateListener(Addr,atoi(configToken)))
2634                         {
2635                                 log(DEFAULT,"Warning: Failed to bind port %lu",(unsigned long)atoi(configToken));
2636                                 printf("Warning: Failed to bind port %lu\n",(unsigned long)atoi(configToken));
2637                         }
2638                         else
2639                         {
2640                                 serverportcount++;
2641                         }
2642                 }
2643                 else
2644                 {
2645                         ports[clientportcount] = atoi(configToken);
2646                         strlcpy(addrs[clientportcount],Addr,256);
2647                         clientportcount++;
2648                 }
2649                 log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type);
2650         }
2651         portCount = clientportcount;
2652         SERVERportCount = serverportcount;
2653           
2654         log(DEBUG,"InspIRCd: startup: read %lu total client ports and %lu total server ports",(unsigned long)portCount,(unsigned long)SERVERportCount);
2655         log(DEBUG,"InspIRCd: startup: InspIRCd is now starting!");
2656         
2657         printf("\n");
2658         
2659         /* BugFix By Craig! :p */
2660         MODCOUNT = -1;
2661         for (count = 0; count < ConfValueEnum("module",&config_f); count++)
2662         {
2663                 ConfValue("module","name",count,configToken,&config_f);
2664                 printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
2665                 if (!LoadModule(configToken))
2666                 {
2667                         log(DEFAULT,"Exiting due to a module loader error.");
2668                         printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ModuleError());
2669                         Exit(0);
2670                 }
2671         }
2672         log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
2673         
2674         startup_time = time(NULL);
2675           
2676         char PID[MAXBUF];
2677         ConfValue("pid","file",0,PID,&config_f);
2678         // write once here, to try it out and make sure its ok
2679         WritePID(PID);
2680           
2681         /* setup select call */
2682 #ifndef USE_KQUEUE
2683         FD_ZERO(&selectFds);
2684 #endif
2685         log(DEBUG,"InspIRCd: startup: zero selects");
2686         log(VERBOSE,"InspIRCd: startup: portCount = %lu", (unsigned long)portCount);
2687         
2688         for (count = 0; count < portCount; count++)
2689         {
2690                 if ((openSockfd[boundPortCount] = OpenTCPSocket()) == ERROR)
2691                 {
2692                         log(DEBUG,"InspIRCd: startup: bad fd %lu",(unsigned long)openSockfd[boundPortCount]);
2693                         return(ERROR);
2694                 }
2695                 if (BindSocket(openSockfd[boundPortCount],client,server,ports[count],addrs[count]) == ERROR)
2696                 {
2697                         log(DEFAULT,"InspIRCd: startup: failed to bind port %lu",(unsigned long)ports[count]);
2698                 }
2699                 else    /* well we at least bound to one socket so we'll continue */
2700                 {
2701                         boundPortCount++;
2702                 }
2703         }
2704         
2705         log(DEBUG,"InspIRCd: startup: total bound ports %lu",(unsigned long)boundPortCount);
2706           
2707         /* if we didn't bind to anything then abort */
2708         if (boundPortCount == 0)
2709         {
2710                 log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!");
2711                 printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)portCount);
2712                 return (ERROR);
2713         }
2714         
2715
2716         printf("\nInspIRCd is now running!\n");
2717
2718         if (nofork)
2719         {
2720                 log(VERBOSE,"Not forking as -nofork was specified");
2721         }
2722         else
2723         {
2724                 if (DaemonSeed() == ERROR)
2725                 {
2726                         log(DEFAULT,"InspIRCd: startup: can't daemonise");
2727                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
2728                         Exit(ERROR);
2729                 }
2730         }
2731
2732         // BUGFIX: We cannot initialize this before forking, as the kqueue data is not inherited by child processes!
2733 #ifdef USE_KQUEUE
2734         kq = kqueue();
2735         lkq = kqueue();
2736         skq = kqueue();
2737         if ((kq == -1) || (lkq == -1) || (skq == -1))
2738         {
2739                 log(DEFAULT,"main: kqueue() failed!");
2740                 printf("ERROR: could not initialise kqueue event system. Shutting down.\n");
2741                 Exit(ERROR);
2742         }
2743 #endif
2744
2745 #ifdef USE_EPOLL
2746         ep = epoll_create(MAXCLIENTS);
2747         lep = epoll_create(32);
2748         sep = epoll_create(128);
2749         if ((ep == -1) || (lep == -1) || (sep == -1))
2750         {
2751                 log(DEFAULT,"main: epoll_create() failed!");
2752                 printf("ERROR: could not initialise epoll event system. Shutting down.\n");
2753                 Exit(ERROR);
2754         }
2755 #endif
2756
2757 #ifdef USE_EPOLL
2758         log(DEFAULT,"epoll socket engine is enabled. Filling listen list. boundPortcount=%d",boundPortCount);
2759         for (count = 0; count < boundPortCount; count++)
2760         {
2761                 struct epoll_event ev;
2762                 log(DEBUG,"epoll: Add listening socket to events, ep=%d socket=%d",lep,openSockfd[count]);
2763                 ev.events = EPOLLIN | EPOLLET;
2764                 ev.data.fd = openSockfd[count];
2765                 int i = epoll_ctl(lep, EPOLL_CTL_ADD, openSockfd[count], &ev);
2766                 if (i < 0)
2767                 {
2768                         log(DEFAULT,"main: add listen ports, epoll_ctl failed!");
2769                         printf("ERROR: could not initialise listening sockets in epoll list. Shutting down.\n");
2770                         Exit(ERROR);
2771                 }
2772                 
2773         }
2774         for (int t = 0; t != SERVERportCount; t++)
2775         {
2776                 struct epoll_event ev;
2777                 log(DEBUG,"epoll: Add listening server socket to events, ep=%d socket=%d",sep,me[t]->fd);
2778                 ev.events = EPOLLIN | EPOLLET;
2779                 ev.data.fd = me[t]->fd;
2780                 int i = epoll_ctl(sep, EPOLL_CTL_ADD, me[t]->fd, &ev);
2781                 if (i == -1)
2782                 {
2783                         log(DEFAULT,"main: add server listen ports, epoll_ctl failed!");
2784                         printf("ERROR: could not initialise server listening sockets in epoll list. Shutting down.\n");
2785                         Exit(ERROR);
2786                 }
2787         }
2788 #else
2789 #ifdef USE_KQUEUE
2790         log(DEFAULT,"kqueue socket engine is enabled. Filling listen list.");
2791         for (count = 0; count < boundPortCount; count++)
2792         {
2793                 struct kevent ke;
2794                 log(DEBUG,"kqueue: Add listening socket to events, kq=%d socket=%d",lkq,openSockfd[count]);
2795                 EV_SET(&ke, openSockfd[count], EVFILT_READ, EV_ADD, 0, MaxConn, NULL);
2796                 int i = kevent(lkq, &ke, 1, 0, 0, NULL);
2797                 if (i == -1)
2798                 {
2799                         log(DEFAULT,"main: add listen ports to kqueue failed!");
2800                         printf("ERROR: could not initialise listening sockets in kqueue. Shutting down.\n");
2801                         Exit(ERROR);
2802                 }
2803         }
2804         for (int t = 0; t != SERVERportCount; t++)
2805         {
2806                 struct kevent ke;
2807                 if (me[t])
2808                 {
2809                         log(DEBUG,"kqueue: Add listening SERVER socket to events, kq=%d socket=%d",skq,me[t]->fd);
2810                         EV_SET(&ke, me[t]->fd, EVFILT_READ, EV_ADD, 0, MaxConn, NULL);
2811                         int i = kevent(skq, &ke, 1, 0, 0, NULL);
2812                         if (i == -1)
2813                         {
2814                                 log(DEFAULT,"main: add server listen ports to kqueue failed!");
2815                                 printf("ERROR: could not initialise listening server sockets in kqueue. Shutting down.\n");
2816                                 Exit(ERROR);
2817                         }
2818                 }
2819         }
2820
2821
2822 #else
2823         log(DEFAULT,"Using standard select socket engine.");
2824 #endif
2825 #endif
2826
2827         WritePID(PID);
2828
2829         length = sizeof (client);
2830         char tcp_msg[MAXBUF],tcp_host[MAXBUF],tcp_sum[MAXBUF];
2831
2832 #ifdef USE_KQUEUE
2833         struct kevent ke;
2834         struct kevent ke_list[33];
2835         struct timespec ts;
2836 #endif
2837 #ifdef USE_EPOLL
2838         struct epoll_event event[33];
2839 #endif
2840         fd_set serverfds;
2841         timeval tvs;
2842         tvs.tv_usec = 10000L;
2843         tvs.tv_sec = 0;
2844         tv.tv_sec = 0;
2845         tv.tv_usec = 10000L;
2846         char data[65536];
2847         timeval tval;
2848         fd_set sfd;
2849         tval.tv_usec = 10000L;
2850         tval.tv_sec = 0;
2851         int total_in_this_set = 0;
2852         int i = 0, v = 0, j = 0, cycle_iter = 0;
2853         bool expire_run = false;
2854           
2855         /* main loop, this never returns */
2856         for (;;)
2857         {
2858 #ifdef _POSIX_PRIORITY_SCHEDULING
2859                 sched_yield();
2860 #endif
2861 #ifdef USE_SELECT
2862                 FD_ZERO(&sfd);
2863 #endif
2864                 // we only read time() once per iteration rather than tons of times!
2865                 OLDTIME = TIME;
2866                 TIME = time(NULL);
2867
2868                 dns_poll();
2869
2870                 // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue
2871                 // them in a list, then reap the list every second or so.
2872                 if (((TIME % 5) == 0) && (!expire_run))
2873                 {
2874                         for (int i = 0; i < ConfValueEnum("link",&config_f); i++)
2875                         {
2876                                 char Link_ServerName[MAXBUF],Link_AConn[MAXBUF];
2877                                 ConfValue("link","name",i,Link_ServerName,&config_f);
2878                                 ConfValue("link","autoconnect",i,Link_AConn,&config_f);
2879                                 if ((Link_AConn[0]) && (!GotServer(Link_ServerName)))
2880                                 {
2881                                         autoconnects::iterator a = autoconns.find(std::string(Link_ServerName));
2882                                         if (a != autoconns.end())
2883                                         {
2884                                                 if (TIME > a->second)
2885                                                 {
2886                                                         ConnectServer(Link_ServerName,NULL);
2887                                                         a->second = TIME + atoi(Link_AConn);
2888                                                 }
2889                                         }
2890                                 }
2891                         }
2892
2893                         expire_lines();
2894                         FOREACH_MOD OnBackgroundTimer(TIME);
2895                         expire_run = true;
2896                         continue;
2897                 }
2898                 if ((TIME % 5) == 1)
2899                         expire_run = false;
2900                 
2901                 // fix by brain - this must be below any manipulation of the hashmap by modules
2902                 user_hash::iterator count2 = clientlist.begin();
2903
2904 #ifdef USE_EPOLL
2905                 i = epoll_wait(sep, event, 1, EP_DELAY);
2906                 if (i > 0)
2907                 {
2908                         log(DEBUG,"epoll: Listening server socket event, i=%d, event.data.fd=%d",i,event[0].data.fd);
2909                         for (int x = 0; x != SERVERportCount; x++)
2910                         {
2911                                 if ((me[x]) && (event[0].data.fd == me[x]->fd))
2912                                 {
2913 #endif
2914 #ifdef USE_KQUEUE
2915                 ts.tv_sec = 0;
2916                 ts.tv_nsec = 30000L;
2917                 i = kevent(skq, NULL, 0, &ke, 1, &ts);
2918                 if (i > 0)
2919                 {
2920                         log(DEBUG,"kqueue: Listening server socket event, i=%d, ke.ident=%d",i,ke.ident);
2921                         for (int x = 0; x != SERVERportCount; x++)
2922                         {
2923                                 if ((me[x]) && (ke.ident == me[x]->fd))
2924                                 {
2925
2926 #endif
2927 #ifdef USE_SELECT
2928                 FD_ZERO(&serverfds);
2929                 for (int x = 0; x != SERVERportCount; x++)
2930                 {
2931                         if (me[x])
2932                                 FD_SET(me[x]->fd, &serverfds);
2933                 }
2934                 tvs.tv_usec = 30000L;
2935                 tvs.tv_sec = 0;
2936                 int servresult = select(FD_SETSIZE, &serverfds, NULL, NULL, &tvs);
2937                 if (servresult > 0)
2938                 {
2939                         for (int x = 0; x != SERVERportCount; x++)
2940                         {
2941                                 if ((me[x]) && (FD_ISSET (me[x]->fd, &serverfds)))
2942                                 {
2943 #endif
2944                                         char remotehost[MAXBUF],resolved[MAXBUF];
2945                                         length = sizeof (client);
2946                                         incomingSockfd = accept (me[x]->fd, (sockaddr *) &client, &length);
2947                                         if (incomingSockfd != -1)
2948                                         {
2949                                                 strlcpy(remotehost,(char *)inet_ntoa(client.sin_addr),MAXBUF);
2950                                                 if(CleanAndResolve(resolved, remotehost) != TRUE)
2951                                                 {
2952                                                         strlcpy(resolved,remotehost,MAXBUF);
2953                                                 }
2954                                                 // add to this connections ircd_connector vector
2955                                                 // *FIX* - we need the LOCAL port not the remote port in &client!
2956                                                 me[x]->AddIncoming(incomingSockfd,resolved,me[x]->port);
2957                                         }
2958                                 }
2959                         }
2960                 }
2961      
2962                 std::deque<std::string> msgs;
2963                 std::deque<std::string> sums;
2964                 for (int x = 0; x < SERVERportCount; x++)
2965                 {
2966                         if (me[x])
2967                                 me[x]->FlushWriteBuffers();
2968                         sums.clear();
2969                         msgs.clear();
2970                         while ((me[x]) && (me[x]->RecvPacket(msgs, tcp_host, sums))) // returns 0 or more lines (can be multiple lines!)
2971                         {
2972                                 has_been_netsplit = false;
2973                                 for (int ctr = 0; ctr < msgs.size(); ctr++)
2974                                 {
2975                                         strlcpy(tcp_msg,msgs[ctr].c_str(),MAXBUF);
2976                                         strlcpy(tcp_sum,sums[ctr].c_str(),MAXBUF);
2977                                         log(DEBUG,"Processing: %s",tcp_msg);
2978                                         if (!tcp_msg[0])
2979                                         {
2980                                                 log(DEBUG,"Invalid string from %s [route%lu]",tcp_host,(unsigned long)x);
2981                                                 break;
2982                                         }
2983                                         // during a netburst, send all data to all other linked servers
2984                                         if ((((nb_start>0) && (tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))) || (is_uline(tcp_host)))
2985                                         {
2986                                                 if (is_uline(tcp_host))
2987                                                 {
2988                                                         if ((tcp_msg[0] != 'Y') && (tcp_msg[0] != 'X') && (tcp_msg[0] != 'F'))
2989                                                         {
2990                                                                 NetSendToAllExcept_WithSum(tcp_host,tcp_msg,tcp_sum);
2991                                                         }
2992                                                 }
2993                                                 else
2994                                                         NetSendToAllExcept_WithSum(tcp_host,tcp_msg,tcp_sum);
2995                                         }
2996                                         std::string msg = tcp_msg;
2997                                         FOREACH_MOD OnPacketReceive(msg,tcp_host);
2998                                         strlcpy(tcp_msg,msg.c_str(),MAXBUF);
2999                                         if (me[x])
3000                                                 handle_link_packet(tcp_msg, tcp_host, me[x], tcp_sum);
3001                                         if (!me[x]->FindHost(tcp_host))
3002                                         {
3003                                                 log(DEBUG,"Connector gone, bailing!");
3004                                                 goto label;
3005                                         }
3006                                 }
3007                                 goto label;
3008                         }
3009                 }
3010         
3011         while (count2 != clientlist.end())
3012         {
3013 #ifdef USE_SELECT
3014                 FD_ZERO(&sfd);
3015 #endif
3016
3017                 total_in_this_set = 0;
3018
3019                 user_hash::iterator xcount = count2;
3020                 user_hash::iterator endingiter = count2;
3021
3022                 if (count2 == clientlist.end()) break;
3023
3024                 userrec* curr = NULL;
3025
3026                 if (count2->second)
3027                         curr = count2->second;
3028
3029                 if ((long)curr == -1)
3030                         goto label;
3031
3032                 if ((curr) && (curr->fd != 0))
3033                 {
3034 #ifdef _POSIX_PRIORITY_SCHEDULING
3035         sched_yield();
3036 #endif
3037                         // assemble up to 64 sockets into an fd_set
3038                         // to implement a pooling mechanism.
3039                         //
3040                         // This should be up to 64x faster than the
3041                         // old implementation.
3042 #ifdef USE_SELECT
3043                         while (total_in_this_set < 1024)
3044                         {
3045                                 if (count2 != clientlist.end())
3046                                 {
3047                                         curr = count2->second;
3048                                         if ((long)curr == -1)
3049                                                 goto label;
3050                                         int currfd = curr->fd;
3051                                         // we don't check the state of remote users.
3052                                         if ((currfd != -1) && (currfd != FD_MAGIC_NUMBER))
3053                                         {
3054                                                 curr->FlushWriteBuf();
3055                                                 if (curr->GetWriteError() != "")
3056                                                 {
3057                                                         log(DEBUG,"InspIRCd: write error: %s",curr->GetWriteError().c_str());
3058                                                         kill_link(curr,curr->GetWriteError().c_str());
3059                                                         goto label;
3060                                                 }
3061
3062                                                 FD_SET (curr->fd, &sfd);
3063
3064                                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
3065                                                 // their connection class.
3066                                                 if ((TIME > curr->timeout) && (curr->registered != 7)) 
3067                                                 {
3068                                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
3069                                                         kill_link(curr,"Registration timeout");
3070                                                         goto label;
3071                                                 }
3072                                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
3073                                                 {
3074                                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK");
3075                                                         curr->dns_done = true;
3076                                                         statsDnsBad++;
3077                                                         FullConnectUser(curr);
3078                                                         if (fd_ref_table[currfd] != curr) // something changed, bail pronto
3079                                                                 goto label;                                                        
3080                                                 }
3081                                                 if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr))) // both NICK and USER... and DNS
3082                                                 {
3083                                                         log(DEBUG,"dns done, registered=3, and modules ready, OK");
3084                                                         FullConnectUser(curr);
3085                                                         if (fd_ref_table[currfd] != curr) // something changed, bail pronto
3086                                                                 goto label;
3087                                                 }
3088                                                 if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
3089                                                 {
3090                                                         if ((!curr->lastping) && (curr->registered == 7))
3091                                                         {
3092                                                                 log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
3093                                                                 kill_link(curr,"Ping timeout");
3094                                                                 goto label;
3095                                                         }
3096                                                         Write(curr->fd,"PING :%s",ServerName);
3097                                                         log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
3098                                                         curr->lastping = 0;
3099                                                         curr->nping = TIME+curr->pingmax;       // was hard coded to 120
3100                                                 }
3101                                         }
3102                                         count2++;
3103                                         total_in_this_set++;
3104                                 }
3105                                 else break;
3106                         }
3107                         endingiter = count2;
3108                         count2 = xcount; // roll back to where we were
3109 #else
3110                         // KQUEUE and EPOLL: We don't go through a loop to fill the fd_set so instead we must manually do this loop every now and again.
3111                         // TODO: We dont need to do all this EVERY loop iteration, tone down the visits to this if we're using kqueue.
3112                         cycle_iter++;
3113                         if (cycle_iter > 20) while (count2 != clientlist.end())
3114                         {
3115                                 cycle_iter = 0;
3116                                 if (count2 != clientlist.end())
3117                                 {
3118                                         curr = count2->second;
3119                                         if ((long)curr == -1)
3120                                                 goto label;
3121                                         int currfd = curr->fd;
3122                                         // we don't check the state of remote users.
3123                                         if ((currfd != -1) && (currfd != FD_MAGIC_NUMBER))
3124                                         {
3125
3126                                                 curr->FlushWriteBuf();
3127                                                 if (curr->GetWriteError() != "")
3128                                                 {
3129                                                         log(DEBUG,"InspIRCd: write error: %s",curr->GetWriteError().c_str());
3130                                                         kill_link(curr,curr->GetWriteError().c_str());
3131                                                         goto label;
3132                                                 }
3133
3134                                                 // registration timeout -- didnt send USER/NICK/HOST in the time specified in
3135                                                 // their connection class.
3136                                                 if ((TIME > curr->timeout) && (curr->registered != 7))
3137                                                 {
3138                                                         log(DEBUG,"InspIRCd: registration timeout: %s",curr->nick);
3139                                                         kill_link(curr,"Registration timeout");
3140                                                         goto label;
3141
3142                                                 }
3143                                                 if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
3144                                                 {
3145                                                         log(DEBUG,"signon exceed, registered=3, and modules ready, OK: %d %d",TIME,curr->signon);
3146                                                         curr->dns_done = true;
3147                                                         statsDnsBad++;
3148                                                         FullConnectUser(curr);
3149                                                         if (fd_ref_table[currfd] != curr) // something changed, bail pronto
3150                                                                 goto label;
3151                                                 }
3152                                                 if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr)))
3153                                                 {
3154                                                         log(DEBUG,"dns done, registered=3, and modules ready, OK");
3155                                                         FullConnectUser(curr);
3156                                                         if (fd_ref_table[currfd] != curr) // something changed, bail pronto
3157                                                                 goto label;
3158                                                 }
3159                                                 if ((TIME > curr->nping) && (isnick(curr->nick)) && (curr->registered == 7))
3160                                                 {
3161                                                         if ((!curr->lastping) && (curr->registered == 7))
3162                                                         {
3163                                                                 log(DEBUG,"InspIRCd: ping timeout: %s",curr->nick);
3164                                                                 kill_link(curr,"Ping timeout");
3165                                                                 goto label;
3166                                                         }
3167                                                         Write(curr->fd,"PING :%s",ServerName);
3168                                                         log(DEBUG,"InspIRCd: pinging: %s",curr->nick);
3169                                                         curr->lastping = 0;
3170                                                         curr->nping = TIME+curr->pingmax;       // was hard coded to 120
3171                                                 }
3172                                         }
3173                                 }
3174                                 else break;
3175                                 count2++;
3176                         }
3177                         // increment the counter right to the end of the list, as kqueue processes everything in one go
3178 #endif
3179         
3180                         v = 0;
3181 #ifdef USE_EPOLL
3182                         int i = epoll_wait(ep, event, 1, 5);
3183                         if (i > 0)
3184                         {
3185                                 log(DEBUG,"epoll_wait call: ep=%d, i=%d",ep,i);
3186                                 // EPOLL: we asked epoll_wait for ONE fd which is ready. Do something.
3187                                 userrec* cu = fd_ref_table[event[0].data.fd];
3188 #endif
3189 #ifdef USE_KQUEUE
3190                         ts.tv_sec = 0;
3191                         ts.tv_nsec = 1000L;
3192                         // for now, we only read 1 event. We could read soooo many more :)
3193                         int i = kevent(kq, NULL, 0, &ke, 1, &ts);
3194                         if (i > 0)
3195                         {
3196                                 log(DEBUG,"kevent call: kq=%d, i=%d",kq,i);
3197                                 // KQUEUE: kevent gives us ONE fd which is ready to have something done to it. Do something to it.
3198                                 userrec* cu = fd_ref_table[ke.ident];
3199 #endif
3200 #ifdef USE_SELECT
3201                         tval.tv_sec = 0;
3202                         tval.tv_usec = 1000L;
3203                         selectResult2 = select(FD_SETSIZE, &sfd, NULL, NULL, &tval);
3204                         // now loop through all of the items in this pool if any are waiting
3205                         if ((selectResult2 > 0) && (xcount != clientlist.end()))
3206                         for (user_hash::iterator count2a = xcount; count2a != endingiter; count2a++)
3207                         {
3208                                 // SELECT: we have to iterate...
3209                                 if (count2a == clientlist.end())
3210                                         break;
3211                                 userrec* cu = count2a->second;
3212 #endif
3213
3214 #ifdef _POSIX_PRIORITY_SCHEDULING
3215                                 sched_yield();
3216 #endif
3217                                 result = EAGAIN;
3218 #ifdef USE_EPOLL
3219                                 // EPOLL: We already know we have a valid FD. No checks needed.
3220                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1))
3221 #endif
3222 #ifdef USE_KQUEUE
3223                                 // KQUEUE: We already know we have a valid FD. No checks needed.
3224                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1))
3225 #endif
3226 #ifdef USE_SELECT
3227                                 // SELECT: We don't know if our FD is valid.
3228                                 if ((cu->fd != FD_MAGIC_NUMBER) && (cu->fd != -1) && (FD_ISSET (cu->fd, &sfd)))
3229 #endif
3230                                 {
3231                                         log(DEBUG,"Data waiting on socket %d",cu->fd);
3232                                         int MOD_RESULT = 0;
3233                                         int result2 = 0;
3234                                         FOREACH_RESULT(OnRawSocketRead(cu->fd,data,65535,result2));
3235                                         if (!MOD_RESULT)
3236                                         {
3237                                                 result = cu->ReadData(data, 65535);
3238                                         }
3239                                         else result = result2;
3240                                         log(DEBUG,"Read result: %d",result);
3241                                         if (result)
3242                                         {
3243                                                 statsRecv += result;
3244                                                 // perform a check on the raw buffer as an array (not a string!) to remove
3245                                                 // characters 0 and 7 which are illegal in the RFC - replace them with spaces.
3246                                                 // hopefully this should stop even more people whining about "Unknown command: *"
3247                                                 for (int checker = 0; checker < result; checker++)
3248                                                 {
3249                                                         if ((data[checker] == 0) || (data[checker] == 7))
3250                                                                 data[checker] = ' ';
3251                                                 }
3252                                                 if (result > 0)
3253                                                         data[result] = '\0';
3254                                                 userrec* current = cu;
3255                                                 int currfd = current->fd;
3256                                                 int floodlines = 0;
3257                                                 // add the data to the users buffer
3258                                                 if (result > 0)
3259                                                 if (!current->AddBuffer(data))
3260                                                 {
3261                                                         // AddBuffer returned false, theres too much data in the user's buffer and theyre up to no good.
3262                                                         if (current->registered == 7)
3263                                                         {
3264                                                                 kill_link(current,"RecvQ exceeded");
3265                                                         }
3266                                                         else
3267                                                         {
3268                                                                 WriteOpers("*** Excess flood from %s",current->ip);
3269                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
3270                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
3271                                                                 apply_lines();
3272                                                         }
3273                                                         goto label;
3274                                                 }
3275                                                 if (current->recvq.length() > NetBufferSize)
3276                                                 {
3277                                                         if (current->registered == 7)
3278                                                         {
3279                                                                 kill_link(current,"RecvQ exceeded");
3280                                                         }
3281                                                         else
3282                                                         {
3283                                                                 WriteOpers("*** Excess flood from %s",current->ip);
3284                                                                 log(DEFAULT,"Excess flood from: %s",current->ip);
3285                                                                 add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
3286                                                                 apply_lines();
3287                                                         }
3288                                                         goto label;
3289                                                 }
3290                                                 // while there are complete lines to process...
3291                                                 while (current->BufferIsReady())
3292                                                 {
3293                                                         floodlines++;
3294                                                         if (TIME > current->reset_due)
3295                                                         {
3296                                                                 current->reset_due = TIME + current->threshold;
3297                                                                 current->lines_in = 0;
3298                                                         }
3299                                                         current->lines_in++;
3300                                                         if (current->lines_in > current->flood)
3301                                                         {
3302                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3303                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3304                                                                 kill_link(current,"Excess flood");
3305                                                                 goto label;
3306                                                         }
3307                                                         if ((floodlines > current->flood) && (current->flood != 0))
3308                                                         {
3309                                                                 if (current->registered == 7)
3310                                                                 {
3311                                                                         log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3312                                                                         WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3313                                                                         kill_link(current,"Excess flood");
3314                                                                 }
3315                                                                 else
3316                                                                 {
3317                                                                         add_zline(120,ServerName,"Flood from unregistered connection",current->ip);
3318                                                                         apply_lines();
3319                                                                 }
3320                                                                 goto label;
3321                                                         }
3322                                                         char sanitized[MAXBUF];
3323                                                         // use GetBuffer to copy single lines into the sanitized string
3324                                                         std::string single_line = current->GetBuffer();
3325                                                         current->bytes_in += single_line.length();
3326                                                         current->cmds_in++;
3327                                                         if (single_line.length()>512)
3328                                                         {
3329                                                                 log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3330                                                                 WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
3331                                                                 kill_link(current,"Excess flood");
3332                                                                 goto label;
3333                                                         }
3334                                                         strlcpy(sanitized,single_line.c_str(),MAXBUF);
3335                                                         if (*sanitized)
3336                                                         {
3337                                                                 userrec* old_comp = fd_ref_table[currfd];
3338                                                                 // we're gonna re-scan to check if the nick is gone, after every
3339                                                                 // command - if it has, we're gonna bail
3340                                                                 process_buffer(sanitized,current);
3341                                                                 // look for the user's record in case it's changed... if theyve quit,
3342                                                                 // we cant do anything more with their buffer, so bail.
3343                                                                 // there used to be an ugly, slow loop here. Now we have a reference
3344                                                                 // table, life is much easier (and FASTER)
3345                                                                 userrec* new_comp = fd_ref_table[currfd];
3346                                                                 if ((currfd < 0) || (!fd_ref_table[currfd]) || (old_comp != new_comp))
3347                                                                         goto label;
3348
3349                                                         }
3350                                                 }
3351                                                 goto label;
3352                                         }
3353
3354                                         if ((result == -1) && (errno != EAGAIN) && (errno != EINTR))
3355                                         {
3356                                                 log(DEBUG,"killing: %s",cu->nick);
3357                                                 kill_link(cu,strerror(errno));
3358                                                 goto label;
3359                                         }
3360                                 }
3361                                 // result EAGAIN means nothing read
3362                                 if (result == EAGAIN)
3363                                 {
3364                                 }
3365                                 else
3366                                 if (result == 0)
3367                                 {
3368 #ifdef USE_SELECT
3369                                         if (count2->second)
3370                                         {
3371 #endif
3372                                                 log(DEBUG,"InspIRCd: Exited: %s",cu->nick);
3373                                                 kill_link(cu,"Client exited");
3374                                                 // must bail here? kill_link removes the hash, corrupting the iterator
3375                                                 log(DEBUG,"Bailing from client exit");
3376                                                 goto label;
3377 #ifdef USE_SELECT
3378                                         }
3379 #endif
3380                                 }
3381                                 else if (result > 0)
3382                                 {
3383                                 }
3384                         }
3385                 }
3386                 for (int q = 0; q < total_in_this_set; q++)
3387                 {
3388                         count2++;
3389                 }
3390         }
3391
3392 #ifdef _POSIX_PRIORITY_SCHEDULING
3393         sched_yield();
3394 #endif
3395         
3396 #ifdef USE_SELECT
3397         // set up select call
3398         for (count = 0; count < boundPortCount; count++)
3399         {
3400                 FD_SET (openSockfd[count], &selectFds);
3401         }
3402
3403         tv.tv_usec = 30000L;
3404         selectResult = select(MAXSOCKS, &selectFds, NULL, NULL, &tv);
3405
3406         /* select is reporting a waiting socket. Poll them all to find out which */
3407         if (selectResult > 0)
3408         {
3409                 for (count = 0; count < boundPortCount; count++)
3410                 {
3411                         if (FD_ISSET (openSockfd[count], &selectFds))
3412                         {
3413 #endif
3414 #ifdef USE_KQUEUE
3415         ts.tv_sec = 0;
3416         ts.tv_nsec = 30000L;
3417         i = kevent(lkq, NULL, 0, ke_list, 32, &ts);
3418         if (i > 0) for (j = 0; j < i; j++)
3419         {
3420                 log(DEBUG,"kqueue: Listening socket event, i=%d, ke.ident=%d",i,ke_list[j].ident);
3421                 // this isnt as efficient as it could be, we could create a reference table
3422                 // to reference bound ports by fd, but this isnt a big bottleneck as the actual
3423                 // number of listening ports on the average ircd is a small number (less than 20)
3424                 // compared to the number of clients (possibly over 2000)
3425                 for (count = 0; count < boundPortCount; count++)
3426                 {
3427                         if (ke_list[j].ident == openSockfd[count])
3428                         {
3429 #endif
3430 #ifdef USE_EPOLL
3431         i = epoll_wait(lep, event, 32, EP_DELAY);
3432         if (i > 0) for (j = 0; j < i; j++)
3433         {
3434                 log(DEBUG,"epoll: Listening socket event, i=%d,events[j].data.fd=%d",i,event[j].data.fd);
3435                 for (count = 0; count < boundPortCount; count++)
3436                 {
3437                         if (event[j].data.fd == openSockfd[count])
3438                         {
3439 #endif
3440                                 char target[MAXBUF], resolved[MAXBUF];
3441                                 length = sizeof (client);
3442                                 incomingSockfd = accept (openSockfd[count], (struct sockaddr *) &client, &length);
3443                               
3444                                 strlcpy (target, (char *) inet_ntoa (client.sin_addr), MAXBUF);
3445                                 strlcpy (resolved, target, MAXBUF);
3446                         
3447                                 if (incomingSockfd < 0)
3448                                 {
3449                                         WriteOpers("*** WARNING: Accept failed on port %lu (%s)",(unsigned long)ports[count],target);
3450                                         log(DEBUG,"InspIRCd: accept failed: %lu",(unsigned long)ports[count]);
3451                                         statsRefused++;
3452                                 }
3453                                 else
3454                                 {
3455                                         FOREACH_MOD OnRawSocketAccept(incomingSockfd, resolved, ports[count]);
3456                                         statsAccept++;
3457                                         AddClient(incomingSockfd, resolved, ports[count], false, inet_ntoa (client.sin_addr));
3458                                         log(DEBUG,"InspIRCd: adding client on port %lu fd=%lu",(unsigned long)ports[count],(unsigned long)incomingSockfd);
3459                                 }
3460                         }
3461                 }
3462         }
3463         label:
3464         if (0) {};
3465 #ifdef _POSIX_PRIORITY_SCHEDULING
3466         sched_yield();
3467         sched_yield();
3468 #endif
3469 }
3470 /* not reached */
3471 close (incomingSockfd);
3472 }
3473