]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Merge pull request #1351 from SaberUK/master+webirc
[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, bool exitonfail)
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                 if (exitonfail)
212                         std::cout << "Failed to write PID-file '" << fname << "', exiting." << std::endl;
213                 this->Logs->Log("STARTUP", LOG_DEFAULT, "Failed to write PID-file '%s'%s", fname.c_str(), (exitonfail ? ", exiting." : ""));
214                 if (exitonfail)
215                         Exit(EXIT_STATUS_PID);
216         }
217 #endif
218 }
219
220 InspIRCd::InspIRCd(int argc, char** argv) :
221          ConfigFileName(INSPIRCD_CONFIG_PATH "/inspircd.conf"),
222          PI(&DefaultProtocolInterface),
223
224          /* Functor pointer initialisation.
225           *
226           * THIS MUST MATCH THE ORDER OF DECLARATION OF THE FUNCTORS, e.g. the methods
227           * themselves within the class.
228           */
229          OperQuit("operquit", ExtensionItem::EXT_USER, NULL),
230          GenRandom(&HandleGenRandom),
231          IsChannel(&HandleIsChannel),
232          IsNick(&HandleIsNick),
233          IsIdent(&HandleIsIdent)
234 {
235         ServerInstance = this;
236
237         Extensions.Register(&OperQuit);
238
239         FailedPortList pl;
240         // Flag variables passed to getopt_long() later
241         int do_version = 0, do_nofork = 0, do_debug = 0,
242             do_nolog = 0, do_root = 0;
243
244         // Initialize so that if we exit before proper initialization they're not deleted
245         this->Config = 0;
246         this->XLines = 0;
247         this->ConfigThread = NULL;
248         this->FakeClient = NULL;
249
250         UpdateTime();
251         this->startup_time = TIME.tv_sec;
252
253         SocketEngine::Init();
254
255         this->Config = new ServerConfig;
256         dynamic_reference_base::reset_all();
257         this->XLines = new XLineManager;
258
259         this->Config->cmdline.argv = argv;
260         this->Config->cmdline.argc = argc;
261
262 #ifdef _WIN32
263         srand(TIME.tv_nsec ^ TIME.tv_sec);
264
265         // Initialize the console values
266         g_hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
267         CONSOLE_SCREEN_BUFFER_INFO bufinf;
268         if(GetConsoleScreenBufferInfo(g_hStdout, &bufinf))
269         {
270                 g_wOriginalColors = bufinf.wAttributes & 0x00FF;
271                 g_wBackgroundColor = bufinf.wAttributes & 0x00F0;
272         }
273         else
274         {
275                 g_wOriginalColors = FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN;
276                 g_wBackgroundColor = 0;
277         }
278 #else
279         srandom(TIME.tv_nsec ^ TIME.tv_sec);
280 #endif
281
282         struct option longopts[] =
283         {
284                 { "nofork",     no_argument,            &do_nofork,     1       },
285                 { "config",     required_argument,      NULL,           'c'     },
286                 { "debug",      no_argument,            &do_debug,      1       },
287                 { "nolog",      no_argument,            &do_nolog,      1       },
288                 { "runasroot",  no_argument,            &do_root,       1       },
289                 { "version",    no_argument,            &do_version,    1       },
290 #ifdef INSPIRCD_ENABLE_TESTSUITE
291                 { "testsuite",  no_argument,            &do_testsuite,  1       },
292 #endif
293                 { 0, 0, 0, 0 }
294         };
295
296         int c;
297         int index;
298         while ((c = getopt_long(argc, argv, ":c:", longopts, &index)) != -1)
299         {
300                 switch (c)
301                 {
302                         case 'c':
303                                 /* Config filename was set */
304                                 ConfigFileName = ServerInstance->Config->Paths.PrependConfig(optarg);
305                         break;
306                         case 0:
307                                 /* getopt_long_only() set an int variable, just keep going */
308                         break;
309                         case '?':
310                                 /* Unknown parameter */
311                         default:
312                                 /* Fall through to handle other weird values too */
313                                 std::cout << "Unknown parameter '" << argv[optind-1] << "'" << std::endl;
314                                 std::cout << "Usage: " << argv[0] << " [--nofork] [--nolog] [--debug] [--config <config>]" << std::endl <<
315                                         std::string(static_cast<int>(8+strlen(argv[0])), ' ') << "[--runasroot] [--version]" << std::endl;
316                                 Exit(EXIT_STATUS_ARGV);
317                         break;
318                 }
319         }
320
321 #ifdef INSPIRCD_ENABLE_TESTSUITE
322         if (do_testsuite)
323                 do_nofork = do_debug = true;
324 #endif
325
326         if (do_version)
327         {
328                 std::cout << std::endl << INSPIRCD_VERSION << std::endl;
329                 Exit(EXIT_STATUS_NOERROR);
330         }
331
332 #ifdef _WIN32
333         // Set up winsock
334         WSADATA wsadata;
335         WSAStartup(MAKEWORD(2,2), &wsadata);
336 #endif
337
338         /* Set the finished argument values */
339         Config->cmdline.nofork = (do_nofork != 0);
340         Config->cmdline.forcedebug = (do_debug != 0);
341         Config->cmdline.writelog = !do_nolog;
342
343         if (do_debug)
344         {
345                 FileWriter* fw = new FileWriter(stdout, 1);
346                 FileLogStream* fls = new FileLogStream(LOG_RAWIO, fw);
347                 Logs->AddLogTypes("*", fls, true);
348         }
349
350         if (!FileSystem::FileExists(ConfigFileName))
351         {
352 #ifdef _WIN32
353                 /* Windows can (and defaults to) hide file extensions, so let's play a bit nice for windows users. */
354                 std::string txtconf = this->ConfigFileName;
355                 txtconf.append(".txt");
356
357                 if (FileSystem::FileExists(txtconf))
358                 {
359                         ConfigFileName = txtconf;
360                 }
361                 else
362 #endif
363                 {
364                         std::cout << "ERROR: Cannot open config file: " << ConfigFileName << std::endl << "Exiting..." << std::endl;
365                         this->Logs->Log("STARTUP", LOG_DEFAULT, "Unable to open config file %s", ConfigFileName.c_str());
366                         Exit(EXIT_STATUS_CONFIG);
367                 }
368         }
369
370         std::cout << con_green << "InspIRCd - Internet Relay Chat Daemon" << con_reset << ", compiled on " __DATE__ " at " __TIME__ << std::endl;
371         std::cout << "For contributors & authors: " << con_green << "See /INFO Output" << con_reset << std::endl;
372
373 #ifndef _WIN32
374         if (!do_root)
375                 this->CheckRoot();
376         else
377         {
378                 std::cout << "* WARNING * WARNING * WARNING * WARNING * WARNING *" << std::endl
379                 << "YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED" << std::endl
380                 << "AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED" << std::endl
381                 << "OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR" << std::endl
382                 << "SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN" << std::endl
383                 << "TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART" << std::endl
384                 << "THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!" << std::endl << std::endl
385                 << "InspIRCd starting in 20 seconds, ctrl+c to abort..." << std::endl;
386                 sleep(20);
387         }
388 #endif
389
390         this->SetSignals();
391
392         if (!Config->cmdline.nofork)
393         {
394                 if (!this->DaemonSeed())
395                 {
396                         std::cout << "ERROR: could not go into daemon mode. Shutting down." << std::endl;
397                         Logs->Log("STARTUP", LOG_DEFAULT, "ERROR: could not go into daemon mode. Shutting down.");
398                         Exit(EXIT_STATUS_FORK);
399                 }
400         }
401
402         SocketEngine::RecoverFromFork();
403
404         /* During startup we read the configuration now, not in
405          * a seperate thread
406          */
407         this->Config->Read();
408         this->Config->Apply(NULL, "");
409         Logs->OpenFileLogs();
410         ModeParser::InitBuiltinModes();
411
412         // If we don't have a SID, generate one based on the server name and the server description
413         if (Config->sid.empty())
414                 Config->sid = UIDGenerator::GenerateSID(Config->ServerName, Config->ServerDesc);
415
416         // Initialize the UID generator with our sid
417         this->UIDGen.init(Config->sid);
418
419         // Create the server user for this server
420         this->FakeClient = new FakeUser(Config->sid, Config->ServerName, Config->ServerDesc);
421
422         // This is needed as all new XLines are marked pending until ApplyLines() is called
423         this->XLines->ApplyLines();
424
425         int bounditems = BindPorts(pl);
426
427         std::cout << std::endl;
428
429         this->Modules->LoadAll();
430
431         // Build ISupport as ModuleManager::LoadAll() does not do it
432         this->ISupport.Build();
433         Config->ApplyDisabledCommands(Config->DisabledCommands);
434
435         if (!pl.empty())
436         {
437                 std::cout << std::endl << "WARNING: Not all your client ports could be bound -- " << std::endl << "starting anyway with " << bounditems
438                         << " of " << bounditems + (int)pl.size() << " client ports bound." << std::endl << std::endl;
439                 std::cout << "The following port(s) failed to bind:" << std::endl << std::endl;
440                 int j = 1;
441                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
442                 {
443                         std::cout << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first) << " \tReason: " << i->second << std::endl;
444                 }
445
446                 std::cout << std::endl << "Hint: Try using a public IP instead of blank or *" << std::endl;
447         }
448
449         std::cout << "InspIRCd is now running as '" << Config->ServerName << "'[" << Config->GetSID() << "] with " << SocketEngine::GetMaxFds() << " max open sockets" << std::endl;
450
451 #ifndef _WIN32
452         if (!Config->cmdline.nofork)
453         {
454                 if (kill(getppid(), SIGTERM) == -1)
455                 {
456                         std::cout << "Error killing parent process: " << strerror(errno) << std::endl;
457                         Logs->Log("STARTUP", LOG_DEFAULT, "Error killing parent process: %s",strerror(errno));
458                 }
459         }
460
461         /* Explicitly shut down stdio's stdin/stdout/stderr.
462          *
463          * The previous logic here was to only do this if stdio was connected to a controlling
464          * terminal.  However, we must do this always to avoid information leaks and other
465          * problems related to stdio.
466          *
467          * The only exception is if we are in debug mode.
468          *
469          *    -- nenolod
470          */
471         if ((!do_nofork) && (!Config->cmdline.forcedebug))
472         {
473                 int fd = open("/dev/null", O_RDWR);
474
475                 fclose(stdin);
476                 fclose(stderr);
477                 fclose(stdout);
478
479                 if (dup2(fd, STDIN_FILENO) < 0)
480                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdin.");
481                 if (dup2(fd, STDOUT_FILENO) < 0)
482                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdout.");
483                 if (dup2(fd, STDERR_FILENO) < 0)
484                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stderr.");
485                 close(fd);
486         }
487         else
488         {
489                 Logs->Log("STARTUP", LOG_DEFAULT, "Keeping pseudo-tty open as we are running in the foreground.");
490         }
491 #else
492         /* Set win32 service as running, if we are running as a service */
493         SetServiceRunning();
494
495         // Handle forking
496         if(!do_nofork)
497         {
498                 FreeConsole();
499         }
500
501         QueryPerformanceFrequency(&stats.QPFrequency);
502 #endif
503
504         Logs->Log("STARTUP", LOG_DEFAULT, "Startup complete as '%s'[%s], %d max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SocketEngine::GetMaxFds());
505
506 #ifndef _WIN32
507         std::string SetUser = Config->ConfValue("security")->getString("runasuser");
508         std::string SetGroup = Config->ConfValue("security")->getString("runasgroup");
509         if (!SetGroup.empty())
510         {
511                 int ret;
512
513                 // setgroups
514                 ret = setgroups(0, NULL);
515
516                 if (ret == -1)
517                 {
518                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgroups() failed (wtf?): %s", strerror(errno));
519                         this->QuickExit(0);
520                 }
521
522                 // setgid
523                 struct group *g;
524
525                 errno = 0;
526                 g = getgrnam(SetGroup.c_str());
527
528                 if (!g)
529                 {
530                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getgrnam(%s) failed (wrong group?): %s", SetGroup.c_str(), strerror(errno));
531                         this->QuickExit(0);
532                 }
533
534                 ret = setgid(g->gr_gid);
535
536                 if (ret == -1)
537                 {
538                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgid() failed (wrong group?): %s", strerror(errno));
539                         this->QuickExit(0);
540                 }
541         }
542
543         if (!SetUser.empty())
544         {
545                 // setuid
546                 struct passwd *u;
547
548                 errno = 0;
549                 u = getpwnam(SetUser.c_str());
550
551                 if (!u)
552                 {
553                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getpwnam(%s) failed (wrong user?): %s", SetUser.c_str(), strerror(errno));
554                         this->QuickExit(0);
555                 }
556
557                 int ret = setuid(u->pw_uid);
558
559                 if (ret == -1)
560                 {
561                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setuid() failed (wrong user?): %s", strerror(errno));
562                         this->QuickExit(0);
563                 }
564         }
565
566         this->WritePID(Config->PID);
567 #endif
568 }
569
570 void InspIRCd::UpdateTime()
571 {
572 #ifdef _WIN32
573         SYSTEMTIME st;
574         GetSystemTime(&st);
575
576         TIME.tv_sec = time(NULL);
577         TIME.tv_nsec = st.wMilliseconds;
578 #else
579         #ifdef HAS_CLOCK_GETTIME
580                 clock_gettime(CLOCK_REALTIME, &TIME);
581         #else
582                 struct timeval tv;
583                 gettimeofday(&tv, NULL);
584                 TIME.tv_sec = tv.tv_sec;
585                 TIME.tv_nsec = tv.tv_usec * 1000;
586         #endif
587 #endif
588 }
589
590 void InspIRCd::Run()
591 {
592 #ifdef INSPIRCD_ENABLE_TESTSUITE
593         /* See if we're supposed to be running the test suite rather than entering the mainloop */
594         if (do_testsuite)
595         {
596                 TestSuite* ts = new TestSuite;
597                 delete ts;
598                 return;
599         }
600 #endif
601
602         UpdateTime();
603         time_t OLDTIME = TIME.tv_sec;
604
605         while (true)
606         {
607 #ifndef _WIN32
608                 static rusage ru;
609 #endif
610
611                 /* Check if there is a config thread which has finished executing but has not yet been freed */
612                 if (this->ConfigThread && this->ConfigThread->IsDone())
613                 {
614                         /* Rehash has completed */
615                         this->Logs->Log("CONFIG", LOG_DEBUG, "Detected ConfigThread exiting, tidying up...");
616
617                         this->ConfigThread->Finish();
618
619                         ConfigThread->join();
620                         delete ConfigThread;
621                         ConfigThread = NULL;
622                 }
623
624                 UpdateTime();
625
626                 /* Run background module timers every few seconds
627                  * (the docs say modules shouldnt rely on accurate
628                  * timing using this event, so we dont have to
629                  * time this exactly).
630                  */
631                 if (TIME.tv_sec != OLDTIME)
632                 {
633 #ifndef _WIN32
634                         getrusage(RUSAGE_SELF, &ru);
635                         stats.LastSampled = TIME;
636                         stats.LastCPU = ru.ru_utime;
637 #else
638                         if(QueryPerformanceCounter(&stats.LastSampled))
639                         {
640                                 FILETIME CreationTime;
641                                 FILETIME ExitTime;
642                                 FILETIME KernelTime;
643                                 FILETIME UserTime;
644                                 GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime, &KernelTime, &UserTime);
645                                 stats.LastCPU.dwHighDateTime = KernelTime.dwHighDateTime + UserTime.dwHighDateTime;
646                                 stats.LastCPU.dwLowDateTime = KernelTime.dwLowDateTime + UserTime.dwLowDateTime;
647                         }
648 #endif
649
650                         /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */
651                         if (TIME.tv_sec < OLDTIME - 2)
652                         {
653                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)(OLDTIME-TIME.tv_sec));
654                         }
655                         else if (TIME.tv_sec > OLDTIME + 2)
656                         {
657                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)(TIME.tv_sec - OLDTIME));
658                         }
659
660                         OLDTIME = TIME.tv_sec;
661
662                         if ((TIME.tv_sec % 3600) == 0)
663                                 FOREACH_MOD(OnGarbageCollect, ());
664
665                         Timers.TickTimers(TIME.tv_sec);
666                         Users->DoBackgroundUserStuff();
667
668                         if ((TIME.tv_sec % 5) == 0)
669                         {
670                                 FOREACH_MOD(OnBackgroundTimer, (TIME.tv_sec));
671                                 SNO->FlushSnotices();
672                         }
673                 }
674
675                 /* Call the socket engine to wait on the active
676                  * file descriptors. The socket engine has everything's
677                  * descriptors in its list... dns, modules, users,
678                  * servers... so its nice and easy, just one call.
679                  * This will cause any read or write events to be
680                  * dispatched to their handlers.
681                  */
682                 SocketEngine::DispatchTrialWrites();
683                 SocketEngine::DispatchEvents();
684
685                 /* if any users were quit, take them out */
686                 GlobalCulls.Apply();
687                 AtomicActions.Run();
688
689                 if (s_signal)
690                 {
691                         this->SignalHandler(s_signal);
692                         s_signal = 0;
693                 }
694         }
695 }
696
697 sig_atomic_t InspIRCd::s_signal = 0;
698
699 void InspIRCd::SetSignal(int signal)
700 {
701         s_signal = signal;
702 }
703
704 /* On posix systems, the flow of the program starts right here, with
705  * ENTRYPOINT being a #define that defines main(). On Windows, ENTRYPOINT
706  * defines smain() and the real main() is in the service code under
707  * win32service.cpp. This allows the service control manager to control
708  * the process where we are running as a windows service.
709  */
710 ENTRYPOINT
711 {
712         new InspIRCd(argc, argv);
713         ServerInstance->Run();
714         delete ServerInstance;
715         return 0;
716 }