]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Allow wildcards in LoadModule calls. If a filename contains either * or ? it will...
[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         if (strchr(filename,'*') || (strchr(filename,'?')))
541         {
542                 bool all_success = true;
543                 DIR* library = opendir(Config->ModPath);
544                 if (library)
545                 {
546                         dirent* entry = NULL;
547                         while ((entry = readdir(library)))
548                         {
549                                 if (this->MatchText(entry->d_name, filename))
550                                 {
551                                         if (!this->LoadModule(entry->d_name))
552                                                 all_success = false;
553                                 }
554                         }
555                         closedir(library);
556                 }
557                 return all_success;
558         }
559
560         char modfile[MAXBUF];
561         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
562         std::string filename_str = filename;
563
564         if (!ServerConfig::DirValid(modfile))
565         {
566                 this->Log(DEFAULT,"Module %s is not within the modules directory.",modfile);
567                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
568                 return false;
569         }
570         this->Log(DEBUG,"Loading module: %s",modfile);
571
572         if (ServerConfig::FileExists(modfile))
573         {
574
575                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
576                 {
577                         if (Config->module_names[j] == filename_str)
578                         {
579                                 this->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
580                                 snprintf(MODERR,MAXBUF,"Module already loaded");
581                                 return false;
582                         }
583                 }
584                 try
585                 {
586                         ircd_module* a = new ircd_module(this, modfile);
587                         factory[this->ModCount+1] = a;
588                         if (factory[this->ModCount+1]->LastError())
589                         {
590                                 this->Log(DEFAULT,"Unable to load %s: %s",modfile,factory[this->ModCount+1]->LastError());
591                                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[this->ModCount+1]->LastError());
592                                 return false;
593                         }
594                         if ((long)factory[this->ModCount+1]->factory != -1)
595                         {
596                                 Module* m = factory[this->ModCount+1]->factory->CreateModule(this);
597
598                                 Version v = m->GetVersion();
599
600                                 if (v.API != API_VERSION)
601                                 {
602                                         delete m;
603                                         delete a;
604                                         this->Log(DEFAULT,"Unable to load %s: Incorrect module API version: %d (our version: %d)",modfile,v.API,API_VERSION);
605                                         snprintf(MODERR,MAXBUF,"Loader/Linker error: Incorrect module API version: %d (our version: %d)",v.API,API_VERSION);
606                                         return false;
607                                 }
608                                 else
609                                 {
610                                         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]"));
611                                 }
612
613                                 modules[this->ModCount+1] = m;
614                                 /* save the module and the module's classfactory, if
615                                  * this isnt done, random crashes can occur :/ */
616                                 Config->module_names.push_back(filename);
617
618                                 char* x = &Config->implement_lists[this->ModCount+1][0];
619                                 for(int t = 0; t < 255; t++)
620                                         x[t] = 0;
621
622                                 modules[this->ModCount+1]->Implements(x);
623
624                                 for(int t = 0; t < 255; t++)
625                                         Config->global_implementation[t] += Config->implement_lists[this->ModCount+1][t];
626                         }
627                         else
628                         {
629                                 this->Log(DEFAULT,"Unable to load %s",modfile);
630                                 snprintf(MODERR,MAXBUF,"Factory function failed: Probably missing init_module() entrypoint.");
631                                 return false;
632                         }
633                 }
634                 catch (ModuleException& modexcept)
635                 {
636                         this->Log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason());
637                         snprintf(MODERR,MAXBUF,"Factory function threw an exception: %s",modexcept.GetReason());
638                         return false;
639                 }
640         }
641         else
642         {
643                 this->Log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
644                 snprintf(MODERR,MAXBUF,"Module file could not be found");
645                 return false;
646         }
647         this->ModCount++;
648         FOREACH_MOD_I(this,I_OnLoadModule,OnLoadModule(modules[this->ModCount],filename_str));
649         // now work out which modules, if any, want to move to the back of the queue,
650         // and if they do, move them there.
651         std::vector<std::string> put_to_back;
652         std::vector<std::string> put_to_front;
653         std::map<std::string,std::string> put_before;
654         std::map<std::string,std::string> put_after;
655         for (unsigned int j = 0; j < Config->module_names.size(); j++)
656         {
657                 if (modules[j]->Prioritize() == PRIORITY_LAST)
658                         put_to_back.push_back(Config->module_names[j]);
659                 else if (modules[j]->Prioritize() == PRIORITY_FIRST)
660                         put_to_front.push_back(Config->module_names[j]);
661                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_BEFORE)
662                         put_before[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
663                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_AFTER)
664                         put_after[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
665         }
666         for (unsigned int j = 0; j < put_to_back.size(); j++)
667                 MoveToLast(put_to_back[j]);
668         for (unsigned int j = 0; j < put_to_front.size(); j++)
669                 MoveToFirst(put_to_front[j]);
670         for (std::map<std::string,std::string>::iterator j = put_before.begin(); j != put_before.end(); j++)
671                 MoveBefore(j->first,j->second);
672         for (std::map<std::string,std::string>::iterator j = put_after.begin(); j != put_after.end(); j++)
673                 MoveAfter(j->first,j->second);
674         BuildISupport();
675         return true;
676 }
677
678 void InspIRCd::DoOneIteration(bool process_module_sockets)
679 {
680         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
681          * Once per loop iteration is pleanty.
682          */
683         OLDTIME = TIME;
684         TIME = time(NULL);
685
686         /* Run background module timers every few seconds
687          * (the docs say modules shouldnt rely on accurate
688          * timing using this event, so we dont have to
689          * time this exactly).
690          */
691         if (TIME != OLDTIME)
692         {
693                 if (TIME < OLDTIME)
694                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
695                 if ((TIME % 3600) == 0)
696                 {
697                         irc::whowas::MaintainWhoWas(this, TIME);
698                 }
699                 Timers->TickTimers(TIME);
700                 this->DoBackgroundUserStuff(TIME);
701
702                 if ((TIME % 5) == 0)
703                 {
704                         XLines->expire_lines();
705                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
706                         Timers->TickMissedTimers(TIME);
707                 }
708         }
709
710         /* Call the socket engine to wait on the active
711          * file descriptors. The socket engine has everything's
712          * descriptors in its list... dns, modules, users,
713          * servers... so its nice and easy, just one call.
714          * This will cause any read or write events to be 
715          * dispatched to their handlers.
716          */
717         SE->DispatchEvents();
718 }
719
720 bool InspIRCd::IsIdent(const char* n)
721 {
722         if (!n || !*n)
723                 return false;
724
725         for (char* i = (char*)n; *i; i++)
726         {
727                 if ((*i >= 'A') && (*i <= '}'))
728                 {
729                         continue;
730                 }
731                 if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
732                 {
733                         continue;
734                 }
735                 return false;
736         }
737         return true;
738 }
739
740
741 int InspIRCd::Run()
742 {
743         while (true)
744         {
745                 DoOneIteration(true);
746         }
747         /* This is never reached -- we hope! */
748         return 0;
749 }
750
751 /**********************************************************************************/
752
753 /**
754  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
755  */
756
757 int main(int argc, char** argv)
758 {
759         SI = new InspIRCd(argc, argv);
760         SI->Run();
761         delete SI;
762         return 0;
763 }
764
765 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
766  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
767  * registration timeout maximum seconds)
768  */
769 bool InspIRCd::AllModulesReportReady(userrec* user)
770 {
771         if (!Config->global_implementation[I_OnCheckReady])
772                 return true;
773
774         for (int i = 0; i <= this->GetModuleCount(); i++)
775         {
776                 if (Config->implement_lists[i][I_OnCheckReady])
777                 {
778                         int res = modules[i]->OnCheckReady(user);
779                         if (!res)
780                                 return false;
781                 }
782         }
783         return true;
784 }
785
786 int InspIRCd::GetModuleCount()
787 {
788         return this->ModCount;
789 }
790
791 time_t InspIRCd::Time()
792 {
793         return TIME;
794 }
795
796 bool FileLogger::Readable()
797 {
798         return false;
799 }
800
801 void FileLogger::HandleEvent(EventType et, int errornum)
802 {
803         this->WriteLogLine("");
804         ServerInstance->SE->DelFd(this);
805 }
806
807 void FileLogger::WriteLogLine(const std::string &line)
808 {
809         if (line.length())
810                 buffer.append(line);
811
812         if (log)
813         {
814                 int written = fprintf(log,"%s",buffer.c_str());
815                 if ((written >= 0) && (written < (int)buffer.length()))
816                 {
817                         buffer.erase(0, buffer.length());
818                         ServerInstance->SE->AddFd(this);
819                 }
820                 else if (written == -1)
821                 {
822                         if (errno == EAGAIN)
823                                 ServerInstance->SE->AddFd(this);
824                 }
825                 else
826                 {
827                         /* Wrote the whole buffer, and no need for write callback */
828                         buffer = "";
829                 }
830         }
831         if (writeops++ % 20)
832         {
833                 fflush(log);
834         }
835 }
836
837 void FileLogger::Close()
838 {
839         if (log)
840         {
841                 int flags = fcntl(fileno(log), F_GETFL, 0);
842                 fcntl(fileno(log), F_SETFL, flags ^ O_NONBLOCK);
843                 if (buffer.size())
844                         fprintf(log,"%s",buffer.c_str());
845                 fflush(log);
846                 fclose(log);
847         }
848         buffer = "";
849         ServerInstance->SE->DelFd(this);
850 }
851
852 FileLogger::FileLogger(InspIRCd* Instance, FILE* logfile) : ServerInstance(Instance), log(logfile), writeops(0)
853 {
854         irc::sockets::NonBlocking(fileno(log));
855         this->SetFd(fileno(log));
856         buffer = "";
857 }
858
859 FileLogger::~FileLogger()
860 {
861         this->Close();
862 }
863