]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Merge pull request #1106 from SaberUK/master+purge-pkg-path
[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 << "For contributors & authors: " << con_green << "See /INFO Output" << con_reset << std::endl;
371
372 #ifndef _WIN32
373         if (!do_root)
374                 this->CheckRoot();
375         else
376         {
377                 std::cout << "* WARNING * WARNING * WARNING * WARNING * WARNING *" << std::endl
378                 << "YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED" << std::endl
379                 << "AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED" << std::endl
380                 << "OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR" << std::endl
381                 << "SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN" << std::endl
382                 << "TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART" << std::endl
383                 << "THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!" << std::endl << std::endl
384                 << "InspIRCd starting in 20 seconds, ctrl+c to abort..." << std::endl;
385                 sleep(20);
386         }
387 #endif
388
389         this->SetSignals();
390
391         if (!Config->cmdline.nofork)
392         {
393                 if (!this->DaemonSeed())
394                 {
395                         std::cout << "ERROR: could not go into daemon mode. Shutting down." << std::endl;
396                         Logs->Log("STARTUP", LOG_DEFAULT, "ERROR: could not go into daemon mode. Shutting down.");
397                         Exit(EXIT_STATUS_FORK);
398                 }
399         }
400
401         SocketEngine::RecoverFromFork();
402
403         /* During startup we read the configuration now, not in
404          * a seperate thread
405          */
406         this->Config->Read();
407         this->Config->Apply(NULL, "");
408         Logs->OpenFileLogs();
409         ModeParser::InitBuiltinModes();
410
411         // If we don't have a SID, generate one based on the server name and the server description
412         if (Config->sid.empty())
413                 Config->sid = UIDGenerator::GenerateSID(Config->ServerName, Config->ServerDesc);
414
415         // Initialize the UID generator with our sid
416         this->UIDGen.init(Config->sid);
417
418         // Create the server user for this server
419         this->FakeClient = new FakeUser(Config->sid, Config->ServerName, Config->ServerDesc);
420
421         // This is needed as all new XLines are marked pending until ApplyLines() is called
422         this->XLines->ApplyLines();
423
424         int bounditems = BindPorts(pl);
425
426         std::cout << std::endl;
427
428         this->Modules->LoadAll();
429
430         // Build ISupport as ModuleManager::LoadAll() does not do it
431         this->ISupport.Build();
432         Config->ApplyDisabledCommands(Config->DisabledCommands);
433
434         if (!pl.empty())
435         {
436                 std::cout << std::endl << "WARNING: Not all your client ports could be bound -- " << std::endl << "starting anyway with " << bounditems
437                         << " of " << bounditems + (int)pl.size() << " client ports bound." << std::endl << std::endl;
438                 std::cout << "The following port(s) failed to bind:" << std::endl << std::endl;
439                 int j = 1;
440                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
441                 {
442                         std::cout << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first) << " \tReason: " << i->second << std::endl;
443                 }
444
445                 std::cout << std::endl << "Hint: Try using a public IP instead of blank or *" << std::endl;
446         }
447
448         std::cout << "InspIRCd is now running as '" << Config->ServerName << "'[" << Config->GetSID() << "] with " << SocketEngine::GetMaxFds() << " max open sockets" << std::endl;
449
450 #ifndef _WIN32
451         if (!Config->cmdline.nofork)
452         {
453                 if (kill(getppid(), SIGTERM) == -1)
454                 {
455                         std::cout << "Error killing parent process: " << strerror(errno) << std::endl;
456                         Logs->Log("STARTUP", LOG_DEFAULT, "Error killing parent process: %s",strerror(errno));
457                 }
458         }
459
460         /* Explicitly shut down stdio's stdin/stdout/stderr.
461          *
462          * The previous logic here was to only do this if stdio was connected to a controlling
463          * terminal.  However, we must do this always to avoid information leaks and other
464          * problems related to stdio.
465          *
466          * The only exception is if we are in debug mode.
467          *
468          *    -- nenolod
469          */
470         if ((!do_nofork) && (!Config->cmdline.forcedebug))
471         {
472                 int fd = open("/dev/null", O_RDWR);
473
474                 fclose(stdin);
475                 fclose(stderr);
476                 fclose(stdout);
477
478                 if (dup2(fd, STDIN_FILENO) < 0)
479                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdin.");
480                 if (dup2(fd, STDOUT_FILENO) < 0)
481                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stdout.");
482                 if (dup2(fd, STDERR_FILENO) < 0)
483                         Logs->Log("STARTUP", LOG_DEFAULT, "Failed to dup /dev/null to stderr.");
484                 close(fd);
485         }
486         else
487         {
488                 Logs->Log("STARTUP", LOG_DEFAULT, "Keeping pseudo-tty open as we are running in the foreground.");
489         }
490 #else
491         /* Set win32 service as running, if we are running as a service */
492         SetServiceRunning();
493
494         // Handle forking
495         if(!do_nofork)
496         {
497                 FreeConsole();
498         }
499
500         QueryPerformanceFrequency(&stats.QPFrequency);
501 #endif
502
503         Logs->Log("STARTUP", LOG_DEFAULT, "Startup complete as '%s'[%s], %d max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SocketEngine::GetMaxFds());
504
505 #ifndef _WIN32
506         std::string SetUser = Config->ConfValue("security")->getString("runasuser");
507         std::string SetGroup = Config->ConfValue("security")->getString("runasgroup");
508         if (!SetGroup.empty())
509         {
510                 int ret;
511
512                 // setgroups
513                 ret = setgroups(0, NULL);
514
515                 if (ret == -1)
516                 {
517                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgroups() failed (wtf?): %s", strerror(errno));
518                         this->QuickExit(0);
519                 }
520
521                 // setgid
522                 struct group *g;
523
524                 errno = 0;
525                 g = getgrnam(SetGroup.c_str());
526
527                 if (!g)
528                 {
529                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getgrnam(%s) failed (wrong group?): %s", SetGroup.c_str(), strerror(errno));
530                         this->QuickExit(0);
531                 }
532
533                 ret = setgid(g->gr_gid);
534
535                 if (ret == -1)
536                 {
537                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setgid() failed (wrong group?): %s", strerror(errno));
538                         this->QuickExit(0);
539                 }
540         }
541
542         if (!SetUser.empty())
543         {
544                 // setuid
545                 struct passwd *u;
546
547                 errno = 0;
548                 u = getpwnam(SetUser.c_str());
549
550                 if (!u)
551                 {
552                         this->Logs->Log("STARTUP", LOG_DEFAULT, "getpwnam(%s) failed (wrong user?): %s", SetUser.c_str(), strerror(errno));
553                         this->QuickExit(0);
554                 }
555
556                 int ret = setuid(u->pw_uid);
557
558                 if (ret == -1)
559                 {
560                         this->Logs->Log("STARTUP", LOG_DEFAULT, "setuid() failed (wrong user?): %s", strerror(errno));
561                         this->QuickExit(0);
562                 }
563         }
564
565         this->WritePID(Config->PID);
566 #endif
567 }
568
569 void InspIRCd::UpdateTime()
570 {
571 #ifdef _WIN32
572         SYSTEMTIME st;
573         GetSystemTime(&st);
574
575         TIME.tv_sec = time(NULL);
576         TIME.tv_nsec = st.wMilliseconds;
577 #else
578         #ifdef HAS_CLOCK_GETTIME
579                 clock_gettime(CLOCK_REALTIME, &TIME);
580         #else
581                 struct timeval tv;
582                 gettimeofday(&tv, NULL);
583                 TIME.tv_sec = tv.tv_sec;
584                 TIME.tv_nsec = tv.tv_usec * 1000;
585         #endif
586 #endif
587 }
588
589 void InspIRCd::Run()
590 {
591 #ifdef INSPIRCD_ENABLE_TESTSUITE
592         /* See if we're supposed to be running the test suite rather than entering the mainloop */
593         if (do_testsuite)
594         {
595                 TestSuite* ts = new TestSuite;
596                 delete ts;
597                 return;
598         }
599 #endif
600
601         UpdateTime();
602         time_t OLDTIME = TIME.tv_sec;
603
604         while (true)
605         {
606 #ifndef _WIN32
607                 static rusage ru;
608 #endif
609
610                 /* Check if there is a config thread which has finished executing but has not yet been freed */
611                 if (this->ConfigThread && this->ConfigThread->IsDone())
612                 {
613                         /* Rehash has completed */
614                         this->Logs->Log("CONFIG", LOG_DEBUG, "Detected ConfigThread exiting, tidying up...");
615
616                         this->ConfigThread->Finish();
617
618                         ConfigThread->join();
619                         delete ConfigThread;
620                         ConfigThread = NULL;
621                 }
622
623                 UpdateTime();
624
625                 /* Run background module timers every few seconds
626                  * (the docs say modules shouldnt rely on accurate
627                  * timing using this event, so we dont have to
628                  * time this exactly).
629                  */
630                 if (TIME.tv_sec != OLDTIME)
631                 {
632 #ifndef _WIN32
633                         getrusage(RUSAGE_SELF, &ru);
634                         stats.LastSampled = TIME;
635                         stats.LastCPU = ru.ru_utime;
636 #else
637                         if(QueryPerformanceCounter(&stats.LastSampled))
638                         {
639                                 FILETIME CreationTime;
640                                 FILETIME ExitTime;
641                                 FILETIME KernelTime;
642                                 FILETIME UserTime;
643                                 GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime, &KernelTime, &UserTime);
644                                 stats.LastCPU.dwHighDateTime = KernelTime.dwHighDateTime + UserTime.dwHighDateTime;
645                                 stats.LastCPU.dwLowDateTime = KernelTime.dwLowDateTime + UserTime.dwLowDateTime;
646                         }
647 #endif
648
649                         /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */
650                         if (TIME.tv_sec < OLDTIME - 2)
651                         {
652                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)OLDTIME-TIME.tv_sec);
653                         }
654                         else if (TIME.tv_sec > OLDTIME + 2)
655                         {
656                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)TIME.tv_sec - OLDTIME);
657                         }
658
659                         OLDTIME = TIME.tv_sec;
660
661                         if ((TIME.tv_sec % 3600) == 0)
662                                 FOREACH_MOD(OnGarbageCollect, ());
663
664                         Timers.TickTimers(TIME.tv_sec);
665                         Users->DoBackgroundUserStuff();
666
667                         if ((TIME.tv_sec % 5) == 0)
668                         {
669                                 FOREACH_MOD(OnBackgroundTimer, (TIME.tv_sec));
670                                 SNO->FlushSnotices();
671                         }
672                 }
673
674                 /* Call the socket engine to wait on the active
675                  * file descriptors. The socket engine has everything's
676                  * descriptors in its list... dns, modules, users,
677                  * servers... so its nice and easy, just one call.
678                  * This will cause any read or write events to be
679                  * dispatched to their handlers.
680                  */
681                 SocketEngine::DispatchTrialWrites();
682                 SocketEngine::DispatchEvents();
683
684                 /* if any users were quit, take them out */
685                 GlobalCulls.Apply();
686                 AtomicActions.Run();
687
688                 if (s_signal)
689                 {
690                         this->SignalHandler(s_signal);
691                         s_signal = 0;
692                 }
693         }
694 }
695
696 sig_atomic_t InspIRCd::s_signal = 0;
697
698 void InspIRCd::SetSignal(int signal)
699 {
700         s_signal = signal;
701 }
702
703 /* On posix systems, the flow of the program starts right here, with
704  * ENTRYPOINT being a #define that defines main(). On Windows, ENTRYPOINT
705  * defines smain() and the real main() is in the service code under
706  * win32service.cpp. This allows the service control manager to control
707  * the process where we are running as a windows service.
708  */
709 ENTRYPOINT
710 {
711         new InspIRCd(argc, argv);
712         ServerInstance->Run();
713         delete ServerInstance;
714         return 0;
715 }