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