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