]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
fb33f1937cb7f6ff6de11bace05aa239b79fa99e
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2012 William Pitcock <nenolod@dereferenced.org>
5  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
6  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Uli Schlachter <psychon@znc.in>
8  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
9  *   Copyright (C) 2006-2007 Oliver Lupton <oliverlupton@gmail.com>
10  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
11  *   Copyright (C) 2007 Burlex <???@???>
12  *   Copyright (C) 2003 Craig McLure <craig@chatspike.net>
13  *   Copyright (C) 2003 randomdan <???@???>
14  *
15  * This file is part of InspIRCd.  InspIRCd is free software: you can
16  * redistribute it and/or modify it under the terms of the GNU General Public
17  * License as published by the Free Software Foundation, version 2.
18  *
19  * This program is distributed in the hope that it will be useful, but WITHOUT
20  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
26  */
27
28
29 #include "inspircd.h"
30 #include <signal.h>
31
32 #ifndef _WIN32
33         #include <dirent.h>
34         #include <unistd.h>
35         #include <sys/resource.h>
36         #include <dlfcn.h>
37         #include <getopt.h>
38
39         /* Some systems don't define RUSAGE_SELF. This should fix them. */
40         #ifndef RUSAGE_SELF
41                 #define RUSAGE_SELF 0
42         #endif
43
44         #include <pwd.h> // setuid
45         #include <grp.h> // setgid
46 #else
47         WORD g_wOriginalColors;
48         WORD g_wBackgroundColor;
49         HANDLE g_hStdout;
50 #endif
51
52 #include <fstream>
53 #include <iostream>
54 #include "xline.h"
55 #include "bancache.h"
56 #include "socketengine.h"
57 #include "socket.h"
58 #include "command_parse.h"
59 #include "exitcodes.h"
60 #include "caller.h"
61 #include "testsuite.h"
62
63 InspIRCd* ServerInstance = NULL;
64
65 /** Seperate from the other casemap tables so that code *can* still exclusively rely on RFC casemapping
66  * if it must.
67  *
68  * This is provided as a pointer so that modules can change it to their custom mapping tables,
69  * e.g. for national character support.
70  */
71 unsigned const char *national_case_insensitive_map = rfc_case_insensitive_map;
72
73
74 /* Moved from exitcodes.h -- due to duplicate symbols -- Burlex
75  * XXX this is a bit ugly. -- w00t
76  */
77 const char* ExitCodes[] =
78 {
79                 "No error",                                                             // 0
80                 "DIE command",                                                  // 1
81                 "Config file error",                                    // 2
82                 "Logfile error",                                                // 3
83                 "POSIX fork failed",                                    // 4
84                 "Bad commandline parameters",                   // 5
85                 "Can't write PID file",                                 // 6
86                 "SocketEngine could not initialize",    // 7
87                 "Refusing to start up as root",                 // 8
88                 "Couldn't load module on startup",              // 9
89                 "Received SIGTERM"                                              // 10
90 };
91
92 template<typename T> static void DeleteZero(T*&n)
93 {
94         T* t = n;
95         n = NULL;
96         delete t;
97 }
98
99 void InspIRCd::Cleanup()
100 {
101         // Close all listening sockets
102         for (unsigned int i = 0; i < ports.size(); i++)
103         {
104                 ports[i]->cull();
105                 delete ports[i];
106         }
107         ports.clear();
108
109         /* Close all client sockets, or the new process inherits them */
110         LocalUserList::reverse_iterator i = Users->local_users.rbegin();
111         while (i != this->Users->local_users.rend())
112         {
113                 User* u = *i++;
114                 Users->QuitUser(u, "Server shutdown");
115         }
116
117         GlobalCulls.Apply();
118         Modules->UnloadAll();
119
120         /* Delete objects dynamically allocated in constructor (destructor would be more appropriate, but we're likely exiting) */
121         /* Must be deleted before modes as it decrements modelines */
122         if (FakeClient)
123         {
124                 delete FakeClient->server;
125                 FakeClient->cull();
126         }
127         DeleteZero(this->FakeClient);
128         DeleteZero(this->Users);
129         DeleteZero(this->Modes);
130         DeleteZero(this->XLines);
131         DeleteZero(this->Parser);
132         DeleteZero(this->stats);
133         DeleteZero(this->Modules);
134         DeleteZero(this->BanCache);
135         DeleteZero(this->SNO);
136         DeleteZero(this->Config);
137         DeleteZero(this->chanlist);
138         DeleteZero(this->PI);
139         DeleteZero(this->Threads);
140         DeleteZero(this->Timers);
141         DeleteZero(this->SE);
142         Logs->CloseLogs();
143         DeleteZero(this->Logs);
144 }
145
146 void InspIRCd::SetSignals()
147 {
148 #ifndef _WIN32
149         signal(SIGALRM, SIG_IGN);
150         signal(SIGHUP, InspIRCd::SetSignal);
151         signal(SIGPIPE, SIG_IGN);
152         signal(SIGCHLD, SIG_IGN);
153         /* We want E2BIG not a signal! */
154         signal(SIGXFSZ, SIG_IGN);
155 #endif
156         signal(SIGTERM, InspIRCd::SetSignal);
157 }
158
159 void InspIRCd::QuickExit(int status)
160 {
161         exit(status);
162 }
163
164 // Required for returning the proper value of EXIT_SUCCESS for the parent process
165 static void VoidSignalHandler(int signalreceived)
166 {
167         exit(0);
168 }
169
170 bool InspIRCd::DaemonSeed()
171 {
172 #ifdef _WIN32
173         std::cout << "InspIRCd Process ID: " << con_green << GetCurrentProcessId() << con_reset << std::endl;
174         return true;
175 #else
176         // Do not use QuickExit here: It will exit with status SIGTERM which would break e.g. daemon scripts
177         signal(SIGTERM, VoidSignalHandler);
178
179         int childpid = fork();
180         if (childpid < 0)
181                 return false;
182         else if (childpid > 0)
183         {
184                 /* We wait here for the child process to kill us,
185                  * so that the shell prompt doesnt come back over
186                  * the output.
187                  * Sending a kill with a signal of 0 just checks
188                  * if the child pid is still around. If theyre not,
189                  * they threw an error and we should give up.
190                  */
191                 while (kill(childpid, 0) != -1)
192                         sleep(1);
193                 exit(0);
194         }
195         setsid ();
196         std::cout << "InspIRCd Process ID: " << con_green << getpid() << con_reset << std::endl;
197
198         signal(SIGTERM, InspIRCd::SetSignal);
199
200         rlimit rl;
201         if (getrlimit(RLIMIT_CORE, &rl) == -1)
202         {
203                 this->Logs->Log("STARTUP", LOG_DEFAULT, "Failed to getrlimit()!");
204                 return false;
205         }
206         rl.rlim_cur = rl.rlim_max;
207
208         if (setrlimit(RLIMIT_CORE, &rl) == -1)
209                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setrlimit() failed, cannot increase coredump size.");
210
211         return true;
212 #endif
213 }
214
215 void InspIRCd::WritePID(const std::string &filename)
216 {
217 #ifndef _WIN32
218         std::string fname(filename);
219         if (fname.empty())
220                 fname = ServerInstance->Config->Paths.PrependData("inspircd.pid");
221         std::ofstream outfile(fname.c_str());
222         if (outfile.is_open())
223         {
224                 outfile << getpid();
225                 outfile.close();
226         }
227         else
228         {
229                 std::cout << "Failed to write PID-file '" << fname << "', exiting." << std::endl;
230                 this->Logs->Log("STARTUP", LOG_DEFAULT, "Failed to write PID-file '%s', exiting.",fname.c_str());
231                 Exit(EXIT_STATUS_PID);
232         }
233 #endif
234 }
235
236 InspIRCd::InspIRCd(int argc, char** argv) :
237          ConfigFileName(CONFIG_PATH "/inspircd.conf"),
238
239          /* Functor pointer initialisation.
240           *
241           * THIS MUST MATCH THE ORDER OF DECLARATION OF THE FUNCTORS, e.g. the methods
242           * themselves within the class.
243           */
244          OperQuit("operquit", NULL),
245          GenRandom(&HandleGenRandom),
246          IsChannel(&HandleIsChannel),
247          IsNick(&HandleIsNick),
248          IsIdent(&HandleIsIdent),
249          OnCheckExemption(&HandleOnCheckExemption)
250 {
251         ServerInstance = this;
252
253         Extensions.Register(&OperQuit);
254
255         FailedPortList pl;
256         int do_version = 0, do_nofork = 0, do_debug = 0,
257             do_nolog = 0, do_root = 0, do_testsuite = 0;    /* flag variables */
258
259         // Initialize so that if we exit before proper initialization they're not deleted
260         this->Logs = 0;
261         this->Threads = 0;
262         this->PI = 0;
263         this->Users = 0;
264         this->chanlist = 0;
265         this->Config = 0;
266         this->SNO = 0;
267         this->BanCache = 0;
268         this->Modules = 0;
269         this->stats = 0;
270         this->Timers = 0;
271         this->Parser = 0;
272         this->XLines = 0;
273         this->Modes = 0;
274         this->ConfigThread = NULL;
275         this->FakeClient = NULL;
276
277         UpdateTime();
278         this->startup_time = TIME.tv_sec;
279
280         // This must be created first, so other parts of Insp can use it while starting up
281         this->Logs = new LogManager;
282
283         SE = CreateSocketEngine();
284
285         this->Threads = new ThreadEngine;
286
287         /* Default implementation does nothing */
288         this->PI = new ProtocolInterface;
289
290         // Create base manager classes early, so nothing breaks
291         this->Users = new UserManager;
292
293         this->chanlist = new chan_hash();
294
295         this->Config = new ServerConfig;
296         this->SNO = new SnomaskManager;
297         this->BanCache = new BanCacheManager;
298         this->Modules = new ModuleManager();
299         dynamic_reference_base::reset_all();
300         this->stats = new serverstats();
301         this->Timers = new TimerManager;
302         this->Parser = new CommandParser;
303         this->XLines = new XLineManager;
304
305         this->Config->cmdline.argv = argv;
306         this->Config->cmdline.argc = argc;
307
308 #ifdef _WIN32
309         srand(TIME.tv_nsec ^ TIME.tv_sec);
310
311         // Initialize the console values
312         g_hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
313         CONSOLE_SCREEN_BUFFER_INFO bufinf;
314         if(GetConsoleScreenBufferInfo(g_hStdout, &bufinf))
315         {
316                 g_wOriginalColors = bufinf.wAttributes & 0x00FF;
317                 g_wBackgroundColor = bufinf.wAttributes & 0x00F0;
318         }
319         else
320         {
321                 g_wOriginalColors = FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN;
322                 g_wBackgroundColor = 0;
323         }
324 #else
325         srandom(TIME.tv_nsec ^ TIME.tv_sec);
326 #endif
327
328         struct option longopts[] =
329         {
330                 { "nofork",     no_argument,            &do_nofork,     1       },
331                 { "config",     required_argument,      NULL,           'c'     },
332                 { "debug",      no_argument,            &do_debug,      1       },
333                 { "nolog",      no_argument,            &do_nolog,      1       },
334                 { "runasroot",  no_argument,            &do_root,       1       },
335                 { "version",    no_argument,            &do_version,    1       },
336                 { "testsuite",  no_argument,            &do_testsuite,  1       },
337                 { 0, 0, 0, 0 }
338         };
339
340         int c;
341         int index;
342         while ((c = getopt_long(argc, argv, ":c:", longopts, &index)) != -1)
343         {
344                 switch (c)
345                 {
346                         case 'c':
347                                 /* Config filename was set */
348                                 ConfigFileName = ServerInstance->Config->Paths.PrependConfig(optarg);
349                         break;
350                         case 0:
351                                 /* getopt_long_only() set an int variable, just keep going */
352                         break;
353                         case '?':
354                                 /* Unknown parameter */
355                         default:
356                                 /* Fall through to handle other weird values too */
357                                 std::cout << "Unknown parameter '" << argv[optind-1] << "'" << std::endl;
358                                 std::cout << "Usage: " << argv[0] << " [--nofork] [--nolog] [--debug] [--config <config>]" << std::endl <<
359                                         std::string(static_cast<int>(8+strlen(argv[0])), ' ') << "[--runasroot] [--version] [--testsuite]" << std::endl;
360                                 Exit(EXIT_STATUS_ARGV);
361                         break;
362                 }
363         }
364
365         if (do_testsuite)
366                 do_nofork = do_debug = true;
367
368         if (do_version)
369         {
370                 std::cout << std::endl << VERSION << " " << REVISION << std::endl;
371                 Exit(EXIT_STATUS_NOERROR);
372         }
373
374 #ifdef _WIN32
375         // Set up winsock
376         WSADATA wsadata;
377         WSAStartup(MAKEWORD(2,2), &wsadata);
378 #endif
379
380         /* Set the finished argument values */
381         Config->cmdline.nofork = (do_nofork != 0);
382         Config->cmdline.forcedebug = (do_debug != 0);
383         Config->cmdline.writelog = (!do_nolog != 0);
384         Config->cmdline.TestSuite = (do_testsuite != 0);
385
386         if (do_debug)
387         {
388                 FileWriter* fw = new FileWriter(stdout);
389                 FileLogStream* fls = new FileLogStream(LOG_RAWIO, fw);
390                 Logs->AddLogTypes("*", fls, true);
391         }
392
393         if (!FileSystem::FileExists(ConfigFileName))
394         {
395 #ifdef _WIN32
396                 /* Windows can (and defaults to) hide file extensions, so let's play a bit nice for windows users. */
397                 std::string txtconf = this->ConfigFileName;
398                 txtconf.append(".txt");
399
400                 if (FileSystem::FileExists(txtconf))
401                 {
402                         ConfigFileName = txtconf;
403                 }
404                 else
405 #endif
406                 {
407                         std::cout << "ERROR: Cannot open config file: " << ConfigFileName << std::endl << "Exiting..." << std::endl;
408                         this->Logs->Log("STARTUP", LOG_DEFAULT, "Unable to open config file %s", ConfigFileName.c_str());
409                         Exit(EXIT_STATUS_CONFIG);
410                 }
411         }
412
413         std::cout << con_green << "Inspire Internet Relay Chat Server" << con_reset << ", compiled on " __DATE__ " at " __TIME__ << std::endl;
414         std::cout << con_green << "(C) InspIRCd Development Team." << con_reset << std::endl << std::endl;
415         std::cout << "Developers:" << std::endl;
416         std::cout << con_green << "\tBrain, FrostyCoolSlug, w00t, Om, Special, peavey" << std::endl;
417         std::cout << "\taquanight, psychon, dz, danieldg, jackmcbarn" << std::endl;
418         std::cout << "\tAttila" << con_reset << std::endl << std::endl;
419         std::cout << "Others:\t\t\t" << con_green << "See /INFO Output" << con_reset << std::endl;
420
421         this->Modes = new ModeParser;
422
423 #ifndef _WIN32
424         if (!do_root)
425                 this->CheckRoot();
426         else
427         {
428                 std::cout << "* WARNING * WARNING * WARNING * WARNING * WARNING *" << std::endl
429                 << "YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED" << std::endl
430                 << "AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED" << std::endl
431                 << "OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR" << std::endl
432                 << "SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN" << std::endl
433                 << "TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART" << std::endl
434                 << "THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!" << std::endl << std::endl
435                 << "InspIRCd starting in 20 seconds, ctrl+c to abort..." << std::endl;
436                 sleep(20);
437         }
438 #endif
439
440         this->SetSignals();
441
442         if (!Config->cmdline.nofork)
443         {
444                 if (!this->DaemonSeed())
445                 {
446                         std::cout << "ERROR: could not go into daemon mode. Shutting down." << std::endl;
447                         Logs->Log("STARTUP", LOG_DEFAULT, "ERROR: could not go into daemon mode. Shutting down.");
448                         Exit(EXIT_STATUS_FORK);
449                 }
450         }
451
452         SE->RecoverFromFork();
453
454         /* During startup we read the configuration now, not in
455          * a seperate thread
456          */
457         this->Config->Read();
458         this->Config->Apply(NULL, "");
459         Logs->OpenFileLogs();
460         ModeParser::InitBuiltinModes();
461
462         // If we don't have a SID, generate one based on the server name and the server description
463         if (Config->sid.empty())
464                 Config->sid = UIDGenerator::GenerateSID(Config->ServerName, Config->ServerDesc);
465
466         // Initialize the UID generator with our sid
467         this->UIDGen.init(Config->sid);
468
469         // Create the server user for this server
470         this->FakeClient = new FakeUser(Config->sid, Config->ServerName, Config->ServerDesc);
471
472         // This is needed as all new XLines are marked pending until ApplyLines() is called
473         this->XLines->ApplyLines();
474
475         int bounditems = BindPorts(pl);
476
477         std::cout << std::endl;
478
479         this->Modules->LoadAll();
480
481         // Build ISupport as ModuleManager::LoadAll() does not do it
482         this->ISupport.Build();
483         Config->ApplyDisabledCommands(Config->DisabledCommands);
484
485         if (!pl.empty())
486         {
487                 std::cout << std::endl << "WARNING: Not all your client ports could be bound -- " << std::endl << "starting anyway with " << bounditems
488                         << " of " << bounditems + (int)pl.size() << " client ports bound." << std::endl << std::endl;
489                 std::cout << "The following port(s) failed to bind:" << std::endl << std::endl;
490                 int j = 1;
491                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
492                 {
493                         std::cout << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first) << " \tReason: " << i->second << std::endl;
494                 }
495
496                 std::cout << std::endl << "Hint: Try using a public IP instead of blank or *" << std::endl;
497         }
498
499         std::cout << "InspIRCd is now running as '" << Config->ServerName << "'[" << Config->GetSID() << "] with " << SE->GetMaxFds() << " max open sockets" << std::endl;
500
501 #ifndef _WIN32
502         if (!Config->cmdline.nofork)
503         {
504                 if (kill(getppid(), SIGTERM) == -1)
505                 {
506                         std::cout << "Error killing parent process: " << strerror(errno) << std::endl;
507                         Logs->Log("STARTUP", LOG_DEFAULT, "Error killing parent process: %s",strerror(errno));
508                 }
509         }
510
511         /* Explicitly shut down stdio's stdin/stdout/stderr.
512          *
513          * The previous logic here was to only do this if stdio was connected to a controlling
514          * terminal.  However, we must do this always to avoid information leaks and other
515          * problems related to stdio.
516          *
517          * The only exception is if we are in debug mode.
518          *
519          *    -- nenolod
520          */
521         if ((!do_nofork) && (!do_testsuite) && (!Config->cmdline.forcedebug))
522         {
523                 int fd = open("/dev/null", O_RDWR);
524
525                 fclose(stdin);
526                 fclose(stderr);
527                 fclose(stdout);
528
529                 if (dup2(fd, STDIN_FILENO) < 0)
530                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdin.");
531                 if (dup2(fd, STDOUT_FILENO) < 0)
532                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdout.");
533                 if (dup2(fd, STDERR_FILENO) < 0)
534                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stderr.");
535                 close(fd);
536         }
537         else
538         {
539                 Logs->Log("STARTUP", LOG_DEFAULT, "Keeping pseudo-tty open as we are running in the foreground.");
540         }
541 #else
542         /* Set win32 service as running, if we are running as a service */
543         SetServiceRunning();
544
545         // Handle forking
546         if(!do_nofork)
547         {
548                 FreeConsole();
549         }
550
551         QueryPerformanceFrequency(&stats->QPFrequency);
552 #endif
553
554         Logs->Log("STARTUP", LOG_DEFAULT, "Startup complete as '%s'[%s], %d max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SE->GetMaxFds());
555
556 #ifndef _WIN32
557         std::string SetUser = Config->ConfValue("security")->getString("runasuser");
558         std::string SetGroup = Config->ConfValue("security")->getString("runasgroup");
559         if (!SetGroup.empty())
560         {
561                 int ret;
562
563                 // setgroups
564                 ret = setgroups(0, NULL);
565
566                 if (ret == -1)
567                 {
568                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgroups() failed (wtf?): %s", strerror(errno));
569                         this->QuickExit(0);
570                 }
571
572                 // setgid
573                 struct group *g;
574
575                 errno = 0;
576                 g = getgrnam(SetGroup.c_str());
577
578                 if (!g)
579                 {
580                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getgrnam(%s) failed (wrong group?): %s", SetGroup.c_str(), strerror(errno));
581                         this->QuickExit(0);
582                 }
583
584                 ret = setgid(g->gr_gid);
585
586                 if (ret == -1)
587                 {
588                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgid() failed (wrong group?): %s", strerror(errno));
589                         this->QuickExit(0);
590                 }
591         }
592
593         if (!SetUser.empty())
594         {
595                 // setuid
596                 struct passwd *u;
597
598                 errno = 0;
599                 u = getpwnam(SetUser.c_str());
600
601                 if (!u)
602                 {
603                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getpwnam(%s) failed (wrong user?): %s", SetUser.c_str(), strerror(errno));
604                         this->QuickExit(0);
605                 }
606
607                 int ret = setuid(u->pw_uid);
608
609                 if (ret == -1)
610                 {
611                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setuid() failed (wrong user?): %s", strerror(errno));
612                         this->QuickExit(0);
613                 }
614         }
615
616         this->WritePID(Config->PID);
617 #endif
618 }
619
620 void InspIRCd::UpdateTime()
621 {
622 #ifdef _WIN32
623         SYSTEMTIME st;
624         GetSystemTime(&st);
625
626         TIME.tv_sec = time(NULL);
627         TIME.tv_nsec = st.wMilliseconds;
628 #else
629         #ifdef HAS_CLOCK_GETTIME
630                 clock_gettime(CLOCK_REALTIME, &TIME);
631         #else
632                 struct timeval tv;
633                 gettimeofday(&tv, NULL);
634                 TIME.tv_sec = tv.tv_sec;
635                 TIME.tv_nsec = tv.tv_usec * 1000;
636         #endif
637 #endif
638 }
639
640 void InspIRCd::Run()
641 {
642         /* See if we're supposed to be running the test suite rather than entering the mainloop */
643         if (Config->cmdline.TestSuite)
644         {
645                 TestSuite* ts = new TestSuite;
646                 delete ts;
647                 return;
648         }
649
650         UpdateTime();
651         time_t OLDTIME = TIME.tv_sec;
652
653         while (true)
654         {
655 #ifndef _WIN32
656                 static rusage ru;
657 #endif
658
659                 /* Check if there is a config thread which has finished executing but has not yet been freed */
660                 if (this->ConfigThread && this->ConfigThread->IsDone())
661                 {
662                         /* Rehash has completed */
663                         this->Logs->Log("CONFIG", LOG_DEBUG, "Detected ConfigThread exiting, tidying up...");
664
665                         this->ConfigThread->Finish();
666
667                         ConfigThread->join();
668                         delete ConfigThread;
669                         ConfigThread = NULL;
670                 }
671
672                 UpdateTime();
673
674                 /* Run background module timers every few seconds
675                  * (the docs say modules shouldnt rely on accurate
676                  * timing using this event, so we dont have to
677                  * time this exactly).
678                  */
679                 if (TIME.tv_sec != OLDTIME)
680                 {
681 #ifndef _WIN32
682                         getrusage(RUSAGE_SELF, &ru);
683                         stats->LastSampled = TIME;
684                         stats->LastCPU = ru.ru_utime;
685 #else
686                         if(QueryPerformanceCounter(&stats->LastSampled))
687                         {
688                                 FILETIME CreationTime;
689                                 FILETIME ExitTime;
690                                 FILETIME KernelTime;
691                                 FILETIME UserTime;
692                                 GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime, &KernelTime, &UserTime);
693                                 stats->LastCPU.dwHighDateTime = KernelTime.dwHighDateTime + UserTime.dwHighDateTime;
694                                 stats->LastCPU.dwLowDateTime = KernelTime.dwLowDateTime + UserTime.dwLowDateTime;
695                         }
696 #endif
697
698                         /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */
699                         if (TIME.tv_sec < OLDTIME - 2)
700                         {
701                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)OLDTIME-TIME.tv_sec);
702                         }
703                         else if (TIME.tv_sec > OLDTIME + 2)
704                         {
705                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)TIME.tv_sec - OLDTIME);
706                         }
707
708                         OLDTIME = TIME.tv_sec;
709
710                         if ((TIME.tv_sec % 3600) == 0)
711                         {
712                                 Users->GarbageCollect();
713                                 FOREACH_MOD(OnGarbageCollect, ());
714                         }
715
716                         Timers->TickTimers(TIME.tv_sec);
717                         Users->DoBackgroundUserStuff();
718
719                         if ((TIME.tv_sec % 5) == 0)
720                         {
721                                 FOREACH_MOD(OnBackgroundTimer, (TIME.tv_sec));
722                                 SNO->FlushSnotices();
723                         }
724                 }
725
726                 /* Call the socket engine to wait on the active
727                  * file descriptors. The socket engine has everything's
728                  * descriptors in its list... dns, modules, users,
729                  * servers... so its nice and easy, just one call.
730                  * This will cause any read or write events to be
731                  * dispatched to their handlers.
732                  */
733                 this->SE->DispatchTrialWrites();
734                 this->SE->DispatchEvents();
735
736                 /* if any users were quit, take them out */
737                 GlobalCulls.Apply();
738                 AtomicActions.Run();
739
740                 if (s_signal)
741                 {
742                         this->SignalHandler(s_signal);
743                         s_signal = 0;
744                 }
745         }
746 }
747
748 sig_atomic_t InspIRCd::s_signal = 0;
749
750 void InspIRCd::SetSignal(int signal)
751 {
752         s_signal = signal;
753 }
754
755 /* On posix systems, the flow of the program starts right here, with
756  * ENTRYPOINT being a #define that defines main(). On Windows, ENTRYPOINT
757  * defines smain() and the real main() is in the service code under
758  * win32service.cpp. This allows the service control manager to control
759  * the process where we are running as a windows service.
760  */
761 ENTRYPOINT
762 {
763         new InspIRCd(argc, argv);
764         ServerInstance->Run();
765         delete ServerInstance;
766         return 0;
767 }