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