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