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