]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Please in the future everyone: DO NOT submit patches via nopaste. Nopaste is not...
[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, jamie\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         modules.resize(255);
186         factory.resize(255);
187         
188         this->Config = new ServerConfig(this);
189         this->Config->opertypes.clear();
190         this->Config->operclass.clear();
191         this->SNO = new SnomaskManager(this);
192         this->Start();
193         this->TIME = this->OLDTIME = this->startup_time = time(NULL);
194         this->next_call = this->TIME + 3;
195         srand(this->TIME);
196         this->Log(DEBUG,"*** InspIRCd starting up!");
197         if (!ServerConfig::FileExists(CONFIG_FILE))
198         {
199                 printf("ERROR: Cannot open config file: %s\nExiting...\n",CONFIG_FILE);
200                 this->Log(DEFAULT,"main: no config");
201                 printf("ERROR: Your config file is missing, this IRCd will self destruct in 10 seconds!\n");
202                 Exit(ERROR);
203         }
204         *this->LogFileName = 0;
205         if (argc > 1) {
206                 for (int i = 1; i < argc; i++)
207                 {
208                         if (!strcmp(argv[i],"-nofork"))
209                         {
210                                 Config->nofork = true;
211                         }
212                         else if(!strcmp(argv[i],"-debug"))
213                         {
214                                 Config->forcedebug = true;
215                         }
216                         else if(!strcmp(argv[i],"-nolog"))
217                         {
218                                 Config->writelog = false;
219                         }
220                         else if (!strcmp(argv[i],"-wait"))
221                         {
222                                 sleep(6);
223                         }
224                         else if (!strcmp(argv[i],"-logfile"))
225                         {
226                                 if (argc > i+1)
227                                 {
228                                         strlcpy(LogFileName,argv[i+1],MAXBUF);
229                                         printf("LOG: Setting logfile to %s\n",LogFileName);
230                                 }
231                                 else
232                                 {
233                                         printf("ERROR: The -logfile parameter must be followed by a log file name and path.\n");
234                                         Exit(ERROR);
235                                 }
236                                 i++;
237                         }
238                         else
239                         {
240                                 printf("Usage: %s [-nofork] [-nolog] [-debug] [-wait] [-logfile <filename>]\n",argv[0]);
241                                 Exit(ERROR);
242                         }
243                 }
244         }
245
246         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
247
248         this->OpenLog(argv, argc);
249         this->stats = new serverstats();
250         this->Parser = new CommandParser(this);
251         this->Timers = new TimerManager();
252         this->XLines = new XLineManager(this);
253         Config->ClearStack();
254         Config->Read(true, NULL);
255         this->CheckRoot();
256         this->Modes = new ModeParser(this);
257         this->AddServerName(Config->ServerName);        
258         CheckDie();
259         InitializeDisabledCommands(Config->DisabledCommands, this);
260         stats->BoundPortCount = BindPorts(true);
261
262         for(int t = 0; t < 255; t++)
263                 Config->global_implementation[t] = 0;
264
265         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
266
267         printf("\n");
268         this->SetSignals();
269         if (!Config->nofork)
270         {
271                 if (!this->DaemonSeed())
272                 {
273                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
274                         Exit(ERROR);
275                 }
276         }
277
278         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
279          * initialize the socket engine.
280          */
281         SocketEngineFactory* SEF = new SocketEngineFactory();
282         SE = SEF->Create(this);
283         delete SEF;
284
285         this->Res = new DNS(this);
286
287         this->LoadAllModules();
288         /* Just in case no modules were loaded - fix for bug #101 */
289         this->BuildISupport();
290
291         if (!stats->BoundPortCount)
292         {
293                 printf("\nERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
294                 Exit(ERROR);
295         }
296
297         /* Add the listening sockets used for client inbound connections
298          * to the socket engine
299          */
300         this->Log(DEBUG,"%d listeners",stats->BoundPortCount);
301         for (unsigned long count = 0; count < stats->BoundPortCount; count++)
302         {
303                 this->Log(DEBUG,"Add listener: %d",Config->openSockfd[count]->GetFd());
304                 if (!SE->AddFd(Config->openSockfd[count]))
305                 {
306                         printf("\nEH? Could not add listener to socketengine. You screwed up, aborting.\n");
307                         Exit(ERROR);
308                 }
309         }
310
311         if (!Config->nofork)
312         {
313                 if (kill(getppid(), SIGTERM) == -1)
314                         printf("Error killing parent process: %s\n",strerror(errno));
315                 fclose(stdin);
316                 fclose(stderr);
317                 fclose(stdout);
318         }
319
320         printf("\nInspIRCd is now running!\n");
321
322         this->WritePID(Config->PID);
323 }
324
325 std::string InspIRCd::GetVersionString()
326 {
327         char versiondata[MAXBUF];
328         char dnsengine[] = "singlethread-object";
329         if (*Config->CustomVersion)
330         {
331                 snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
332         }
333         else
334         {
335                 snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%lu,%s,%s]",VERSION,Config->ServerName,SYSTEM,(unsigned long)OPTIMISATION,SE->GetName().c_str(),dnsengine);
336         }
337         return versiondata;
338 }
339
340 char* InspIRCd::ModuleError()
341 {
342         return MODERR;
343 }
344
345 void InspIRCd::EraseFactory(int j)
346 {
347         int v = 0;
348         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
349         {
350                 if (v == j)
351                 {
352                         delete *t;
353                         factory.erase(t);
354                         factory.push_back(NULL);
355                         return;
356                 }
357                 v++;
358         }
359 }
360
361 void InspIRCd::EraseModule(int j)
362 {
363         int v1 = 0;
364         for (ModuleList::iterator m = modules.begin(); m!= modules.end(); m++)
365         {
366                 if (v1 == j)
367                 {
368                         DELETE(*m);
369                         modules.erase(m);
370                         modules.push_back(NULL);
371                         break;
372                 }
373                 v1++;
374         }
375         int v2 = 0;
376         for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
377         {
378                 if (v2 == j)
379                 {
380                        Config->module_names.erase(v);
381                        break;
382                 }
383                 v2++;
384         }
385
386 }
387
388 void InspIRCd::MoveTo(std::string modulename,int slot)
389 {
390         unsigned int v2 = 256;
391         for (unsigned int v = 0; v < Config->module_names.size(); v++)
392         {
393                 if (Config->module_names[v] == modulename)
394                 {
395                         // found an instance, swap it with the item at the end
396                         v2 = v;
397                         break;
398                 }
399         }
400         if ((v2 != (unsigned int)slot) && (v2 < 256))
401         {
402                 // Swap the module names over
403                 Config->module_names[v2] = Config->module_names[slot];
404                 Config->module_names[slot] = modulename;
405                 // now swap the module factories
406                 ircd_module* temp = factory[v2];
407                 factory[v2] = factory[slot];
408                 factory[slot] = temp;
409                 // now swap the module objects
410                 Module* temp_module = modules[v2];
411                 modules[v2] = modules[slot];
412                 modules[slot] = temp_module;
413                 // now swap the implement lists (we dont
414                 // need to swap the global or recount it)
415                 for (int n = 0; n < 255; n++)
416                 {
417                         char x = Config->implement_lists[v2][n];
418                         Config->implement_lists[v2][n] = Config->implement_lists[slot][n];
419                         Config->implement_lists[slot][n] = x;
420                 }
421         }
422         else
423         {
424                 this->Log(DEBUG,"Move of %s to slot failed!",modulename.c_str());
425         }
426 }
427
428 void InspIRCd::MoveAfter(std::string modulename, std::string after)
429 {
430         for (unsigned int v = 0; v < Config->module_names.size(); v++)
431         {
432                 if (Config->module_names[v] == after)
433                 {
434                         MoveTo(modulename, v);
435                         return;
436                 }
437         }
438 }
439
440 void InspIRCd::MoveBefore(std::string modulename, std::string before)
441 {
442         for (unsigned int v = 0; v < Config->module_names.size(); v++)
443         {
444                 if (Config->module_names[v] == before)
445                 {
446                         if (v > 0)
447                         {
448                                 MoveTo(modulename, v-1);
449                         }
450                         else
451                         {
452                                 MoveTo(modulename, v);
453                         }
454                         return;
455                 }
456         }
457 }
458
459 void InspIRCd::MoveToFirst(std::string modulename)
460 {
461         MoveTo(modulename,0);
462 }
463
464 void InspIRCd::MoveToLast(std::string modulename)
465 {
466         MoveTo(modulename,this->GetModuleCount());
467 }
468
469 void InspIRCd::BuildISupport()
470 {
471         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
472         std::stringstream v;
473         v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << MAXCHANS << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1;
474         v << " CASEMAPPING=rfc1459 STATUSMSG=@%+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets << " AWAYLEN=";
475         v << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32";
476         Config->data005 = v.str();
477         FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005));
478 }
479
480 bool InspIRCd::UnloadModule(const char* filename)
481 {
482         std::string filename_str = filename;
483         for (unsigned int j = 0; j != Config->module_names.size(); j++)
484         {
485                 if (Config->module_names[j] == filename_str)
486                 {
487                         if (modules[j]->GetVersion().Flags & VF_STATIC)
488                         {
489                                 this->Log(DEFAULT,"Failed to unload STATIC module %s",filename);
490                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
491                                 return false;
492                         }
493                         /* Give the module a chance to tidy out all its metadata */
494                         for (chan_hash::iterator c = this->chanlist.begin(); c != this->chanlist.end(); c++)
495                         {
496                                 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
497                         }
498                         for (user_hash::iterator u = this->clientlist.begin(); u != this->clientlist.end(); u++)
499                         {
500                                 modules[j]->OnCleanup(TYPE_USER,u->second);
501                         }
502
503                         FOREACH_MOD_I(this,I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j]));
504
505                         for(int t = 0; t < 255; t++)
506                         {
507                                 Config->global_implementation[t] -= Config->implement_lists[j][t];
508                         }
509
510                         /* We have to renumber implement_lists after unload because the module numbers change!
511                          */
512                         for(int j2 = j; j2 < 254; j2++)
513                         {
514                                 for(int t = 0; t < 255; t++)
515                                 {
516                                         Config->implement_lists[j2][t] = Config->implement_lists[j2+1][t];
517                                 }
518                         }
519
520                         // found the module
521                         this->Log(DEBUG,"Removing dependent commands...");
522                         Parser->RemoveCommands(filename);
523                         this->Log(DEBUG,"Deleting module...");
524                         this->EraseModule(j);
525                         this->Log(DEBUG,"Erasing module entry...");
526                         this->EraseFactory(j);
527                         this->Log(DEFAULT,"Module %s unloaded",filename);
528                         this->ModCount--;
529                         BuildISupport();
530                         return true;
531                 }
532         }
533         this->Log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
534         snprintf(MODERR,MAXBUF,"Module not loaded");
535         return false;
536 }
537
538 bool InspIRCd::LoadModule(const char* filename)
539 {
540         /* Do we have a glob pattern in the filename?
541          * The user wants to load multiple modules which
542          * match the pattern.
543          */
544         if (strchr(filename,'*') || (strchr(filename,'?')))
545         {
546                 int n_match = 0;
547                 DIR* library = opendir(Config->ModPath);
548                 if (library)
549                 {
550                         /* Try and locate and load all modules matching the pattern */
551                         dirent* entry = NULL;
552                         while ((entry = readdir(library)))
553                         {
554                                 if (this->MatchText(entry->d_name, filename))
555                                 {
556                                         if (!this->LoadModule(entry->d_name))
557                                                 n_match++;
558                                 }
559                         }
560                         closedir(library);
561                 }
562                 /* Loadmodule will now return false if any one of the modules failed
563                  * to load (but wont abort when it encounters a bad one) and when 1 or
564                  * more modules were actually loaded.
565                  */
566                 return (n_match > 0);
567         }
568
569         char modfile[MAXBUF];
570         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
571         std::string filename_str = filename;
572
573         if (!ServerConfig::DirValid(modfile))
574         {
575                 this->Log(DEFAULT,"Module %s is not within the modules directory.",modfile);
576                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
577                 return false;
578         }
579         this->Log(DEBUG,"Loading module: %s",modfile);
580
581         if (ServerConfig::FileExists(modfile))
582         {
583
584                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
585                 {
586                         if (Config->module_names[j] == filename_str)
587                         {
588                                 this->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
589                                 snprintf(MODERR,MAXBUF,"Module already loaded");
590                                 return false;
591                         }
592                 }
593                 try
594                 {
595                         ircd_module* a = new ircd_module(this, modfile);
596                         factory[this->ModCount+1] = a;
597                         if (factory[this->ModCount+1]->LastError())
598                         {
599                                 this->Log(DEFAULT,"Unable to load %s: %s",modfile,factory[this->ModCount+1]->LastError());
600                                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[this->ModCount+1]->LastError());
601                                 return false;
602                         }
603                         if ((long)factory[this->ModCount+1]->factory != -1)
604                         {
605                                 Module* m = factory[this->ModCount+1]->factory->CreateModule(this);
606
607                                 Version v = m->GetVersion();
608
609                                 if (v.API != API_VERSION)
610                                 {
611                                         delete m;
612                                         delete a;
613                                         this->Log(DEFAULT,"Unable to load %s: Incorrect module API version: %d (our version: %d)",modfile,v.API,API_VERSION);
614                                         snprintf(MODERR,MAXBUF,"Loader/Linker error: Incorrect module API version: %d (our version: %d)",v.API,API_VERSION);
615                                         return false;
616                                 }
617                                 else
618                                 {
619                                         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]"));
620                                 }
621
622                                 modules[this->ModCount+1] = m;
623                                 /* save the module and the module's classfactory, if
624                                  * this isnt done, random crashes can occur :/ */
625                                 Config->module_names.push_back(filename);
626
627                                 char* x = &Config->implement_lists[this->ModCount+1][0];
628                                 for(int t = 0; t < 255; t++)
629                                         x[t] = 0;
630
631                                 modules[this->ModCount+1]->Implements(x);
632
633                                 for(int t = 0; t < 255; t++)
634                                         Config->global_implementation[t] += Config->implement_lists[this->ModCount+1][t];
635                         }
636                         else
637                         {
638                                 this->Log(DEFAULT,"Unable to load %s",modfile);
639                                 snprintf(MODERR,MAXBUF,"Factory function failed: Probably missing init_module() entrypoint.");
640                                 return false;
641                         }
642                 }
643                 catch (ModuleException& modexcept)
644                 {
645                         this->Log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason());
646                         snprintf(MODERR,MAXBUF,"Factory function threw an exception: %s",modexcept.GetReason());
647                         return false;
648                 }
649         }
650         else
651         {
652                 this->Log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
653                 snprintf(MODERR,MAXBUF,"Module file could not be found");
654                 return false;
655         }
656         this->ModCount++;
657         FOREACH_MOD_I(this,I_OnLoadModule,OnLoadModule(modules[this->ModCount],filename_str));
658         // now work out which modules, if any, want to move to the back of the queue,
659         // and if they do, move them there.
660         std::vector<std::string> put_to_back;
661         std::vector<std::string> put_to_front;
662         std::map<std::string,std::string> put_before;
663         std::map<std::string,std::string> put_after;
664         for (unsigned int j = 0; j < Config->module_names.size(); j++)
665         {
666                 if (modules[j]->Prioritize() == PRIORITY_LAST)
667                         put_to_back.push_back(Config->module_names[j]);
668                 else if (modules[j]->Prioritize() == PRIORITY_FIRST)
669                         put_to_front.push_back(Config->module_names[j]);
670                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_BEFORE)
671                         put_before[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
672                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_AFTER)
673                         put_after[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
674         }
675         for (unsigned int j = 0; j < put_to_back.size(); j++)
676                 MoveToLast(put_to_back[j]);
677         for (unsigned int j = 0; j < put_to_front.size(); j++)
678                 MoveToFirst(put_to_front[j]);
679         for (std::map<std::string,std::string>::iterator j = put_before.begin(); j != put_before.end(); j++)
680                 MoveBefore(j->first,j->second);
681         for (std::map<std::string,std::string>::iterator j = put_after.begin(); j != put_after.end(); j++)
682                 MoveAfter(j->first,j->second);
683         BuildISupport();
684         return true;
685 }
686
687 void InspIRCd::DoOneIteration(bool process_module_sockets)
688 {
689         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
690          * Once per loop iteration is pleanty.
691          */
692         OLDTIME = TIME;
693         TIME = time(NULL);
694
695         /* Run background module timers every few seconds
696          * (the docs say modules shouldnt rely on accurate
697          * timing using this event, so we dont have to
698          * time this exactly).
699          */
700         if (TIME != OLDTIME)
701         {
702                 if (TIME < OLDTIME)
703                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
704                 if ((TIME % 3600) == 0)
705                 {
706                         irc::whowas::MaintainWhoWas(this, TIME);
707                 }
708                 Timers->TickTimers(TIME);
709                 this->DoBackgroundUserStuff(TIME);
710
711                 if ((TIME % 5) == 0)
712                 {
713                         XLines->expire_lines();
714                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
715                         Timers->TickMissedTimers(TIME);
716                 }
717         }
718
719         /* Call the socket engine to wait on the active
720          * file descriptors. The socket engine has everything's
721          * descriptors in its list... dns, modules, users,
722          * servers... so its nice and easy, just one call.
723          * This will cause any read or write events to be 
724          * dispatched to their handlers.
725          */
726         SE->DispatchEvents();
727 }
728
729 bool InspIRCd::IsIdent(const char* n)
730 {
731         if (!n || !*n)
732                 return false;
733
734         for (char* i = (char*)n; *i; i++)
735         {
736                 if ((*i >= 'A') && (*i <= '}'))
737                 {
738                         continue;
739                 }
740                 if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
741                 {
742                         continue;
743                 }
744                 return false;
745         }
746         return true;
747 }
748
749
750 int InspIRCd::Run()
751 {
752         while (true)
753         {
754                 DoOneIteration(true);
755         }
756         /* This is never reached -- we hope! */
757         return 0;
758 }
759
760 /**********************************************************************************/
761
762 /**
763  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
764  */
765
766 int main(int argc, char** argv)
767 {
768         SI = new InspIRCd(argc, argv);
769         SI->Run();
770         delete SI;
771         return 0;
772 }
773
774 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
775  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
776  * registration timeout maximum seconds)
777  */
778 bool InspIRCd::AllModulesReportReady(userrec* user)
779 {
780         if (!Config->global_implementation[I_OnCheckReady])
781                 return true;
782
783         for (int i = 0; i <= this->GetModuleCount(); i++)
784         {
785                 if (Config->implement_lists[i][I_OnCheckReady])
786                 {
787                         int res = modules[i]->OnCheckReady(user);
788                         if (!res)
789                                 return false;
790                 }
791         }
792         return true;
793 }
794
795 int InspIRCd::GetModuleCount()
796 {
797         return this->ModCount;
798 }
799
800 time_t InspIRCd::Time()
801 {
802         return TIME;
803 }
804
805 bool FileLogger::Readable()
806 {
807         return false;
808 }
809
810 void FileLogger::HandleEvent(EventType et, int errornum)
811 {
812         this->WriteLogLine("");
813         ServerInstance->SE->DelFd(this);
814 }
815
816 void FileLogger::WriteLogLine(const std::string &line)
817 {
818         if (line.length())
819                 buffer.append(line);
820
821         if (log)
822         {
823                 int written = fprintf(log,"%s",buffer.c_str());
824                 if ((written >= 0) && (written < (int)buffer.length()))
825                 {
826                         buffer.erase(0, buffer.length());
827                         ServerInstance->SE->AddFd(this);
828                 }
829                 else if (written == -1)
830                 {
831                         if (errno == EAGAIN)
832                                 ServerInstance->SE->AddFd(this);
833                 }
834                 else
835                 {
836                         /* Wrote the whole buffer, and no need for write callback */
837                         buffer = "";
838                 }
839         }
840         if (writeops++ % 20)
841         {
842                 fflush(log);
843         }
844 }
845
846 void FileLogger::Close()
847 {
848         if (log)
849         {
850                 int flags = fcntl(fileno(log), F_GETFL, 0);
851                 fcntl(fileno(log), F_SETFL, flags ^ O_NONBLOCK);
852                 if (buffer.size())
853                         fprintf(log,"%s",buffer.c_str());
854                 fflush(log);
855                 fclose(log);
856         }
857         buffer = "";
858         ServerInstance->SE->DelFd(this);
859 }
860
861 FileLogger::FileLogger(InspIRCd* Instance, FILE* logfile) : ServerInstance(Instance), log(logfile), writeops(0)
862 {
863         irc::sockets::NonBlocking(fileno(log));
864         this->SetFd(fileno(log));
865         buffer = "";
866 }
867
868 FileLogger::~FileLogger()
869 {
870         this->Close();
871 }
872