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