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