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