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