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