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