]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Fix off-by-one error in userrec::ChangeDisplayedHost, some hosts were truncated
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /* ---------------------------------------------------------------------
2  * 
3  *            +------------------------------------+
4  *            | Inspire Internet Relay Chat Daemon |
5  *            +------------------------------------+
6  *
7  *       InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
8  *                           E-mail:
9  *                    <brain@chatspike.net>
10  *                    <Craig@chatspike.net>
11  *     
12  *  Written by Craig Edwards, Craig McLure, and others.
13  *  This program is free but copyrighted software; you can redistribute
14  *  it and/or modify it under the terms of the GNU General Public
15  *  License as published by the Free Software Foundation, version 2
16  *  (two) ONLY.
17  *
18  *  This program is distributed in the hope that it will be useful,
19  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  *  GNU General Public License for more details.
22  *
23  *  You should have received a copy of the GNU General Public License
24  *  along with this program; if not, write to the Free Software
25  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26  *
27  * ---------------------------------------------------------------------
28  */
29
30 #include "inspircd.h"
31 #include "configreader.h"
32 #include <signal.h>
33 #include <dirent.h>
34 #include <exception>
35 #include <fstream>
36 #include "modules.h"
37 #include "mode.h"
38 #include "xline.h"
39 #include "socketengine.h"
40 #include "inspircd_se_config.h"
41 #include "socket.h"
42 #include "typedefs.h"
43 #include "command_parse.h"
44 #include <dlfcn.h>
45
46 using irc::sockets::NonBlocking;
47 using irc::sockets::Blocking;
48 using irc::sockets::insp_ntoa;
49 using irc::sockets::insp_inaddr;
50 using irc::sockets::insp_sockaddr;
51
52 InspIRCd* SI = NULL;
53
54 void InspIRCd::AddServerName(const std::string &servername)
55 {
56         this->Log(DEBUG,"Adding server name: %s",servername.c_str());
57         
58         if(find(servernames.begin(), servernames.end(), servername) == servernames.end())
59                 servernames.push_back(servername); /* Wasn't already there. */
60 }
61
62 const char* InspIRCd::FindServerNamePtr(const std::string &servername)
63 {
64         servernamelist::iterator iter = find(servernames.begin(), servernames.end(), servername);
65         
66         if(iter == servernames.end())
67         {               
68                 AddServerName(servername);
69                 iter = --servernames.end();
70         }
71
72         return iter->c_str();
73 }
74
75 bool InspIRCd::FindServerName(const std::string &servername)
76 {
77         return (find(servernames.begin(), servernames.end(), servername) != servernames.end());
78 }
79
80 void InspIRCd::Exit(int status)
81 {
82         exit (status);
83 }
84
85 void InspIRCd::Start()
86 {
87         printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
88         printf("(C) ChatSpike Development team.\033[0m\n\n");
89         printf("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special, pippijn, peavey\033[0m\n");
90         printf("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n");
91         printf("Name concept:\t\t\033[1;32mLord_Zathras\033[0m\n\n");
92 }
93
94 void InspIRCd::Rehash(int status)
95 {
96         SI->WriteOpers("Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(CONFIG_FILE));
97         fclose(SI->Config->log_file);
98         SI->OpenLog(NULL,0);
99         SI->Config->Read(false,NULL);
100         FOREACH_MOD_I(SI,I_OnRehash,OnRehash(""));
101 }
102
103 void InspIRCd::SetSignals()
104 {
105         signal(SIGALRM, SIG_IGN);
106         signal(SIGHUP, InspIRCd::Rehash);
107         signal(SIGPIPE, SIG_IGN);
108         signal(SIGTERM, InspIRCd::Exit);
109         signal(SIGCHLD, SIG_IGN);
110 }
111
112 bool InspIRCd::DaemonSeed()
113 {
114         int childpid;
115         if ((childpid = fork ()) < 0)
116                 return false;
117         else if (childpid > 0)
118         {
119                 /* We wait here for the child process to kill us,
120                  * so that the shell prompt doesnt come back over
121                  * the output.
122                  * Sending a kill with a signal of 0 just checks
123                  * if the child pid is still around. If theyre not,
124                  * they threw an error and we should give up.
125                  */
126                 while (kill(childpid, 0) != -1)
127                         sleep(1);
128                 exit(ERROR);
129         }
130         setsid ();
131         umask (007);
132         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
133
134         rlimit rl;
135         if (getrlimit(RLIMIT_CORE, &rl) == -1)
136         {
137                 this->Log(DEFAULT,"Failed to getrlimit()!");
138                 return false;
139         }
140         else
141         {
142                 rl.rlim_cur = rl.rlim_max;
143                 if (setrlimit(RLIMIT_CORE, &rl) == -1)
144                         this->Log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
145         }
146
147         return true;
148 }
149
150 void InspIRCd::WritePID(const std::string &filename)
151 {
152         std::string fname = (filename.empty() ? "inspircd.pid" : filename);
153         if (*(fname.begin()) != '/')
154         {
155                 std::string::size_type pos;
156                 std::string confpath = CONFIG_FILE;
157                 if ((pos = confpath.find("/inspircd.conf")) != std::string::npos)
158                 {
159                         /* Leaves us with just the path */
160                         fname = confpath.substr(0, pos) + std::string("/") + fname;
161                 }
162         }                                                                       
163         std::ofstream outfile(fname.c_str());
164         if (outfile.is_open())
165         {
166                 outfile << getpid();
167                 outfile.close();
168         }
169         else
170         {
171                 printf("Failed to write PID-file '%s', exiting.\n",fname.c_str());
172                 this->Log(DEFAULT,"Failed to write PID-file '%s', exiting.",fname.c_str());
173                 Exit(0);
174         }
175 }
176
177 std::string InspIRCd::GetRevision()
178 {
179         return REVISION;
180 }
181
182 InspIRCd::InspIRCd(int argc, char** argv)
183         : ModCount(-1), duration_m(60), duration_h(60*60), duration_d(60*60*24), duration_w(60*60*24*7), duration_y(60*60*24*365)
184 {
185         int found_ports = 0;
186
187         modules.resize(255);
188         factory.resize(255);
189         
190         this->Config = new ServerConfig(this);
191         this->Config->opertypes.clear();
192         this->Config->operclass.clear();
193         this->SNO = new SnomaskManager(this);
194         this->Start();
195         this->TIME = this->OLDTIME = this->startup_time = time(NULL);
196         this->time_delta = 0;
197         this->next_call = this->TIME + 3;
198         srand(this->TIME);
199         this->Log(DEBUG,"*** InspIRCd starting up!");
200         if (!ServerConfig::FileExists(CONFIG_FILE))
201         {
202                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
203                 this->Log(DEFAULT,"main: no config");
204                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
205                 Exit(ERROR);
206         }
207         *this->LogFileName = 0;
208         if (argc > 1) {
209                 for (int i = 1; i < argc; i++)
210                 {
211                         if (!strcmp(argv[i],"-nofork"))
212                         {
213                                 Config->nofork = true;
214                         }
215                         else if(!strcmp(argv[i],"-debug"))
216                         {
217                                 Config->forcedebug = true;
218                         }
219                         else if(!strcmp(argv[i],"-nolog"))
220                         {
221                                 Config->writelog = false;
222                         }
223                         else if (!strcmp(argv[i],"-wait"))
224                         {
225                                 sleep(6);
226                         }
227                         else if (!strcmp(argv[i],"-logfile"))
228                         {
229                                 if (argc > i+1)
230                                 {
231                                         strlcpy(LogFileName,argv[i+1],MAXBUF);
232                                         printf("LOG: Setting logfile to %s\n",LogFileName);
233                                 }
234                                 else
235                                 {
236                                         printf("ERROR: The -logfile parameter must be followed by a log file name and path.\n");
237                                         Exit(ERROR);
238                                 }
239                                 i++;
240                         }
241                         else
242                         {
243                                 printf("Usage: %s [-nofork] [-nolog] [-debug] [-wait] [-logfile <filename>]\n",argv[0]);
244                                 Exit(ERROR);
245                         }
246                 }
247         }
248
249         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
250
251         this->OpenLog(argv, argc);
252         this->stats = new serverstats();
253         this->Parser = new CommandParser(this);
254         this->Timers = new TimerManager();
255         this->XLines = new XLineManager(this);
256         Config->ClearStack();
257         Config->Read(true, NULL);
258         this->CheckRoot();
259         this->Modes = new ModeParser(this);
260         this->AddServerName(Config->ServerName);        
261         CheckDie();
262         InitializeDisabledCommands(Config->DisabledCommands, this);
263         stats->BoundPortCount = BindPorts(true, found_ports);
264
265         for(int t = 0; t < 255; t++)
266                 Config->global_implementation[t] = 0;
267
268         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
269
270         printf("\n");
271         this->SetSignals();
272         if (!Config->nofork)
273         {
274                 if (!this->DaemonSeed())
275                 {
276                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
277                         Exit(ERROR);
278                 }
279         }
280
281         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
282          * initialize the socket engine.
283          */
284         SocketEngineFactory* SEF = new SocketEngineFactory();
285         SE = SEF->Create(this);
286         delete SEF;
287
288         this->Res = new DNS(this);
289
290         this->LoadAllModules();
291         /* Just in case no modules were loaded - fix for bug #101 */
292         this->BuildISupport();
293
294         if ((stats->BoundPortCount == 0) && (found_ports > 0))
295         {
296                 printf("\nERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
297                 Exit(ERROR);
298         }
299         
300         if (stats->BoundPortCount != (unsigned int)found_ports)
301         {
302                 printf("\nWARNING: Not all your client ports could be bound --\n         starting anyway with %ld of %d client ports bound.\n", stats->BoundPortCount, found_ports);
303         }
304
305         /* Add the listening sockets used for client inbound connections
306          * to the socket engine
307          */
308         this->Log(DEBUG,"%d listeners",stats->BoundPortCount);
309         for (unsigned long count = 0; count < stats->BoundPortCount; count++)
310         {
311                 this->Log(DEBUG,"Add listener: %d",Config->openSockfd[count]->GetFd());
312                 if (!SE->AddFd(Config->openSockfd[count]))
313                 {
314                         printf("\nEH? Could not add listener to socketengine. You screwed up, aborting.\n");
315                         Exit(ERROR);
316                 }
317         }
318
319         if (!Config->nofork)
320         {
321                 if (kill(getppid(), SIGTERM) == -1)
322                         printf("Error killing parent process: %s\n",strerror(errno));
323                 fclose(stdin);
324                 fclose(stderr);
325                 fclose(stdout);
326         }
327
328         printf("\nInspIRCd is now running!\n");
329
330         this->WritePID(Config->PID);
331 }
332
333 std::string InspIRCd::GetVersionString()
334 {
335         char versiondata[MAXBUF];
336         char dnsengine[] = "singlethread-object";
337         if (*Config->CustomVersion)
338         {
339                 snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
340         }
341         else
342         {
343                 snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%lu,%s,%s]",VERSION,Config->ServerName,SYSTEM,(unsigned long)OPTIMISATION,SE->GetName().c_str(),dnsengine);
344         }
345         return versiondata;
346 }
347
348 char* InspIRCd::ModuleError()
349 {
350         return MODERR;
351 }
352
353 void InspIRCd::EraseFactory(int j)
354 {
355         int v = 0;
356         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
357         {
358                 if (v == j)
359                 {
360                         delete *t;
361                         factory.erase(t);
362                         factory.push_back(NULL);
363                         return;
364                 }
365                 v++;
366         }
367 }
368
369 void InspIRCd::EraseModule(int j)
370 {
371         int v1 = 0;
372         for (ModuleList::iterator m = modules.begin(); m!= modules.end(); m++)
373         {
374                 if (v1 == j)
375                 {
376                         DELETE(*m);
377                         modules.erase(m);
378                         modules.push_back(NULL);
379                         break;
380                 }
381                 v1++;
382         }
383         int v2 = 0;
384         for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
385         {
386                 if (v2 == j)
387                 {
388                        Config->module_names.erase(v);
389                        break;
390                 }
391                 v2++;
392         }
393
394 }
395
396 void InspIRCd::MoveTo(std::string modulename,int slot)
397 {
398         unsigned int v2 = 256;
399         for (unsigned int v = 0; v < Config->module_names.size(); v++)
400         {
401                 if (Config->module_names[v] == modulename)
402                 {
403                         // found an instance, swap it with the item at the end
404                         v2 = v;
405                         break;
406                 }
407         }
408         if ((v2 != (unsigned int)slot) && (v2 < 256))
409         {
410                 // Swap the module names over
411                 Config->module_names[v2] = Config->module_names[slot];
412                 Config->module_names[slot] = modulename;
413                 // now swap the module factories
414                 ircd_module* temp = factory[v2];
415                 factory[v2] = factory[slot];
416                 factory[slot] = temp;
417                 // now swap the module objects
418                 Module* temp_module = modules[v2];
419                 modules[v2] = modules[slot];
420                 modules[slot] = temp_module;
421                 // now swap the implement lists (we dont
422                 // need to swap the global or recount it)
423                 for (int n = 0; n < 255; n++)
424                 {
425                         char x = Config->implement_lists[v2][n];
426                         Config->implement_lists[v2][n] = Config->implement_lists[slot][n];
427                         Config->implement_lists[slot][n] = x;
428                 }
429         }
430         else
431         {
432                 this->Log(DEBUG,"Move of %s to slot failed!",modulename.c_str());
433         }
434 }
435
436 void InspIRCd::MoveAfter(std::string modulename, std::string after)
437 {
438         for (unsigned int v = 0; v < Config->module_names.size(); v++)
439         {
440                 if (Config->module_names[v] == after)
441                 {
442                         MoveTo(modulename, v);
443                         return;
444                 }
445         }
446 }
447
448 void InspIRCd::MoveBefore(std::string modulename, std::string before)
449 {
450         for (unsigned int v = 0; v < Config->module_names.size(); v++)
451         {
452                 if (Config->module_names[v] == before)
453                 {
454                         if (v > 0)
455                         {
456                                 MoveTo(modulename, v-1);
457                         }
458                         else
459                         {
460                                 MoveTo(modulename, v);
461                         }
462                         return;
463                 }
464         }
465 }
466
467 void InspIRCd::MoveToFirst(std::string modulename)
468 {
469         MoveTo(modulename,0);
470 }
471
472 void InspIRCd::MoveToLast(std::string modulename)
473 {
474         MoveTo(modulename,this->GetModuleCount());
475 }
476
477 void InspIRCd::BuildISupport()
478 {
479         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
480         std::stringstream v;
481         v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << MAXCHANS << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1;
482         v << " CASEMAPPING=rfc1459 STATUSMSG=@%+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets << " AWAYLEN=";
483         v << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32";
484         Config->data005 = v.str();
485         FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005));
486 }
487
488 bool InspIRCd::UnloadModule(const char* filename)
489 {
490         std::string filename_str = filename;
491         for (unsigned int j = 0; j != Config->module_names.size(); j++)
492         {
493                 if (Config->module_names[j] == filename_str)
494                 {
495                         if (modules[j]->GetVersion().Flags & VF_STATIC)
496                         {
497                                 this->Log(DEFAULT,"Failed to unload STATIC module %s",filename);
498                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
499                                 return false;
500                         }
501                         /* Give the module a chance to tidy out all its metadata */
502                         for (chan_hash::iterator c = this->chanlist.begin(); c != this->chanlist.end(); c++)
503                         {
504                                 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
505                         }
506                         for (user_hash::iterator u = this->clientlist.begin(); u != this->clientlist.end(); u++)
507                         {
508                                 modules[j]->OnCleanup(TYPE_USER,u->second);
509                         }
510
511                         /* Tidy up any dangling resolvers */
512                         this->Res->CleanResolvers(modules[j]);
513
514                         FOREACH_MOD_I(this,I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j]));
515
516                         for(int t = 0; t < 255; t++)
517                         {
518                                 Config->global_implementation[t] -= Config->implement_lists[j][t];
519                         }
520
521                         /* We have to renumber implement_lists after unload because the module numbers change!
522                          */
523                         for(int j2 = j; j2 < 254; j2++)
524                         {
525                                 for(int t = 0; t < 255; t++)
526                                 {
527                                         Config->implement_lists[j2][t] = Config->implement_lists[j2+1][t];
528                                 }
529                         }
530
531                         // found the module
532                         this->Log(DEBUG,"Removing dependent commands...");
533                         Parser->RemoveCommands(filename);
534                         this->Log(DEBUG,"Deleting module...");
535                         this->EraseModule(j);
536                         this->Log(DEBUG,"Erasing module entry...");
537                         this->EraseFactory(j);
538                         this->Log(DEFAULT,"Module %s unloaded",filename);
539                         this->ModCount--;
540                         BuildISupport();
541                         return true;
542                 }
543         }
544         this->Log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
545         snprintf(MODERR,MAXBUF,"Module not loaded");
546         return false;
547 }
548
549 bool InspIRCd::LoadModule(const char* filename)
550 {
551         /* Do we have a glob pattern in the filename?
552          * The user wants to load multiple modules which
553          * match the pattern.
554          */
555         if (strchr(filename,'*') || (strchr(filename,'?')))
556         {
557                 int n_match = 0;
558                 DIR* library = opendir(Config->ModPath);
559                 if (library)
560                 {
561                         /* Try and locate and load all modules matching the pattern */
562                         dirent* entry = NULL;
563                         while ((entry = readdir(library)))
564                         {
565                                 if (this->MatchText(entry->d_name, filename))
566                                 {
567                                         if (!this->LoadModule(entry->d_name))
568                                                 n_match++;
569                                 }
570                         }
571                         closedir(library);
572                 }
573                 /* Loadmodule will now return false if any one of the modules failed
574                  * to load (but wont abort when it encounters a bad one) and when 1 or
575                  * more modules were actually loaded.
576                  */
577                 return (n_match > 0);
578         }
579
580         char modfile[MAXBUF];
581         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
582         std::string filename_str = filename;
583
584         if (!ServerConfig::DirValid(modfile))
585         {
586                 this->Log(DEFAULT,"Module %s is not within the modules directory.",modfile);
587                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
588                 return false;
589         }
590         this->Log(DEBUG,"Loading module: %s",modfile);
591
592         if (ServerConfig::FileExists(modfile))
593         {
594
595                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
596                 {
597                         if (Config->module_names[j] == filename_str)
598                         {
599                                 this->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
600                                 snprintf(MODERR,MAXBUF,"Module already loaded");
601                                 return false;
602                         }
603                 }
604                 try
605                 {
606                         ircd_module* a = new ircd_module(this, modfile);
607                         factory[this->ModCount+1] = a;
608                         if (factory[this->ModCount+1]->LastError())
609                         {
610                                 this->Log(DEFAULT,"Unable to load %s: %s",modfile,factory[this->ModCount+1]->LastError());
611                                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[this->ModCount+1]->LastError());
612                                 return false;
613                         }
614                         if ((long)factory[this->ModCount+1]->factory != -1)
615                         {
616                                 Module* m = factory[this->ModCount+1]->factory->CreateModule(this);
617
618                                 Version v = m->GetVersion();
619
620                                 if (v.API != API_VERSION)
621                                 {
622                                         delete m;
623                                         delete a;
624                                         this->Log(DEFAULT,"Unable to load %s: Incorrect module API version: %d (our version: %d)",modfile,v.API,API_VERSION);
625                                         snprintf(MODERR,MAXBUF,"Loader/Linker error: Incorrect module API version: %d (our version: %d)",v.API,API_VERSION);
626                                         return false;
627                                 }
628                                 else
629                                 {
630                                         this->Log(DEFAULT,"New module introduced: %s (API version %d, Module version %d.%d.%d.%d)%s", filename, v.API, v.Major, v.Minor, v.Revision, v.Build, (!(v.Flags & VF_VENDOR) ? " [3rd Party]" : " [Vendor]"));
631                                 }
632
633                                 modules[this->ModCount+1] = m;
634                                 /* save the module and the module's classfactory, if
635                                  * this isnt done, random crashes can occur :/ */
636                                 Config->module_names.push_back(filename);
637
638                                 char* x = &Config->implement_lists[this->ModCount+1][0];
639                                 for(int t = 0; t < 255; t++)
640                                         x[t] = 0;
641
642                                 modules[this->ModCount+1]->Implements(x);
643
644                                 for(int t = 0; t < 255; t++)
645                                         Config->global_implementation[t] += Config->implement_lists[this->ModCount+1][t];
646                         }
647                         else
648                         {
649                                 this->Log(DEFAULT,"Unable to load %s",modfile);
650                                 snprintf(MODERR,MAXBUF,"Factory function failed: Probably missing init_module() entrypoint.");
651                                 return false;
652                         }
653                 }
654                 catch (ModuleException& modexcept)
655                 {
656                         this->Log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason());
657                         snprintf(MODERR,MAXBUF,"Factory function threw an exception: %s",modexcept.GetReason());
658                         return false;
659                 }
660         }
661         else
662         {
663                 this->Log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
664                 snprintf(MODERR,MAXBUF,"Module file could not be found");
665                 return false;
666         }
667         this->ModCount++;
668         FOREACH_MOD_I(this,I_OnLoadModule,OnLoadModule(modules[this->ModCount],filename_str));
669         // now work out which modules, if any, want to move to the back of the queue,
670         // and if they do, move them there.
671         std::vector<std::string> put_to_back;
672         std::vector<std::string> put_to_front;
673         std::map<std::string,std::string> put_before;
674         std::map<std::string,std::string> put_after;
675         for (unsigned int j = 0; j < Config->module_names.size(); j++)
676         {
677                 if (modules[j]->Prioritize() == PRIORITY_LAST)
678                         put_to_back.push_back(Config->module_names[j]);
679                 else if (modules[j]->Prioritize() == PRIORITY_FIRST)
680                         put_to_front.push_back(Config->module_names[j]);
681                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_BEFORE)
682                         put_before[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
683                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_AFTER)
684                         put_after[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
685         }
686         for (unsigned int j = 0; j < put_to_back.size(); j++)
687                 MoveToLast(put_to_back[j]);
688         for (unsigned int j = 0; j < put_to_front.size(); j++)
689                 MoveToFirst(put_to_front[j]);
690         for (std::map<std::string,std::string>::iterator j = put_before.begin(); j != put_before.end(); j++)
691                 MoveBefore(j->first,j->second);
692         for (std::map<std::string,std::string>::iterator j = put_after.begin(); j != put_after.end(); j++)
693                 MoveAfter(j->first,j->second);
694         BuildISupport();
695         return true;
696 }
697
698 void InspIRCd::DoOneIteration(bool process_module_sockets)
699 {
700         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
701          * Once per loop iteration is pleanty.
702          */
703         OLDTIME = TIME;
704         TIME = time(NULL);
705
706         /* Run background module timers every few seconds
707          * (the docs say modules shouldnt rely on accurate
708          * timing using this event, so we dont have to
709          * time this exactly).
710          */
711         if (TIME != OLDTIME)
712         {
713                 if (TIME < OLDTIME)
714                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
715                 if ((TIME % 3600) == 0)
716                 {
717                         irc::whowas::MaintainWhoWas(this, TIME);
718                 }
719                 Timers->TickTimers(TIME);
720                 this->DoBackgroundUserStuff(TIME);
721
722                 if ((TIME % 5) == 0)
723                 {
724                         XLines->expire_lines();
725                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
726                         Timers->TickMissedTimers(TIME);
727                 }
728         }
729
730         /* Call the socket engine to wait on the active
731          * file descriptors. The socket engine has everything's
732          * descriptors in its list... dns, modules, users,
733          * servers... so its nice and easy, just one call.
734          * This will cause any read or write events to be 
735          * dispatched to their handlers.
736          */
737         SE->DispatchEvents();
738 }
739
740 bool InspIRCd::IsIdent(const char* n)
741 {
742         if (!n || !*n)
743                 return false;
744
745         for (char* i = (char*)n; *i; i++)
746         {
747                 if ((*i >= 'A') && (*i <= '}'))
748                 {
749                         continue;
750                 }
751                 if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
752                 {
753                         continue;
754                 }
755                 return false;
756         }
757         return true;
758 }
759
760
761 int InspIRCd::Run()
762 {
763         while (true)
764         {
765                 DoOneIteration(true);
766         }
767         /* This is never reached -- we hope! */
768         return 0;
769 }
770
771 /**********************************************************************************/
772
773 /**
774  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
775  */
776
777 int main(int argc, char** argv)
778 {
779         SI = new InspIRCd(argc, argv);
780         SI->Run();
781         delete SI;
782         return 0;
783 }
784
785 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
786  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
787  * registration timeout maximum seconds)
788  */
789 bool InspIRCd::AllModulesReportReady(userrec* user)
790 {
791         if (!Config->global_implementation[I_OnCheckReady])
792                 return true;
793
794         for (int i = 0; i <= this->GetModuleCount(); i++)
795         {
796                 if (Config->implement_lists[i][I_OnCheckReady])
797                 {
798                         int res = modules[i]->OnCheckReady(user);
799                         if (!res)
800                                 return false;
801                 }
802         }
803         return true;
804 }
805
806 int InspIRCd::GetModuleCount()
807 {
808         return this->ModCount;
809 }
810
811 time_t InspIRCd::Time(bool delta)
812 {
813         if (delta)
814                 return TIME + time_delta;
815         return TIME;
816 }
817
818 int InspIRCd::SetTimeDelta(int delta)
819 {
820         int old = time_delta;
821         time_delta += delta;
822         this->Log(DEBUG, "Time delta set to %d (was %d)", time_delta, old);
823         return old;
824 }
825
826 bool FileLogger::Readable()
827 {
828         return false;
829 }
830
831 void FileLogger::HandleEvent(EventType et, int errornum)
832 {
833         this->WriteLogLine("");
834         ServerInstance->SE->DelFd(this);
835 }
836
837 void FileLogger::WriteLogLine(const std::string &line)
838 {
839         if (line.length())
840                 buffer.append(line);
841
842         if (log)
843         {
844                 int written = fprintf(log,"%s",buffer.c_str());
845                 if ((written >= 0) && (written < (int)buffer.length()))
846                 {
847                         buffer.erase(0, buffer.length());
848                         ServerInstance->SE->AddFd(this);
849                 }
850                 else if (written == -1)
851                 {
852                         if (errno == EAGAIN)
853                                 ServerInstance->SE->AddFd(this);
854                 }
855                 else
856                 {
857                         /* Wrote the whole buffer, and no need for write callback */
858                         buffer = "";
859                 }
860         }
861         if (writeops++ % 20)
862         {
863                 fflush(log);
864         }
865 }
866
867 void FileLogger::Close()
868 {
869         if (log)
870         {
871                 int flags = fcntl(fileno(log), F_GETFL, 0);
872                 fcntl(fileno(log), F_SETFL, flags ^ O_NONBLOCK);
873                 if (buffer.size())
874                         fprintf(log,"%s",buffer.c_str());
875                 fflush(log);
876                 fclose(log);
877         }
878         buffer = "";
879         ServerInstance->SE->DelFd(this);
880 }
881
882 FileLogger::FileLogger(InspIRCd* Instance, FILE* logfile) : ServerInstance(Instance), log(logfile), writeops(0)
883 {
884         irc::sockets::NonBlocking(fileno(log));
885         this->SetFd(fileno(log));
886         buffer = "";
887 }
888
889 FileLogger::~FileLogger()
890 {
891         this->Close();
892 }
893