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