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