]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Fix mistakenly using Clang instead of GCC on older FreeBSD versions.
[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 "inspircd_version.h"
32 #include <signal.h>
33
34 #ifndef _WIN32
35         #include <dirent.h>
36         #include <unistd.h>
37         #include <sys/resource.h>
38         #include <dlfcn.h>
39         #include <getopt.h>
40
41         /* Some systems don't define RUSAGE_SELF. This should fix them. */
42         #ifndef RUSAGE_SELF
43                 #define RUSAGE_SELF 0
44         #endif
45
46         #include <pwd.h> // setuid
47         #include <grp.h> // setgid
48 #else
49         WORD g_wOriginalColors;
50         WORD g_wBackgroundColor;
51         HANDLE g_hStdout;
52 #endif
53
54 #include <fstream>
55 #include <iostream>
56 #include "xline.h"
57 #include "bancache.h"
58 #include "socketengine.h"
59 #include "socket.h"
60 #include "command_parse.h"
61 #include "exitcodes.h"
62 #include "caller.h"
63 #include "testsuite.h"
64
65 InspIRCd* ServerInstance = NULL;
66
67 /** Seperate from the other casemap tables so that code *can* still exclusively rely on RFC casemapping
68  * if it must.
69  *
70  * This is provided as a pointer so that modules can change it to their custom mapping tables,
71  * e.g. for national character support.
72  */
73 unsigned const char *national_case_insensitive_map = rfc_case_insensitive_map;
74
75
76 /* Moved from exitcodes.h -- due to duplicate symbols -- Burlex
77  * XXX this is a bit ugly. -- w00t
78  */
79 const char* ExitCodes[] =
80 {
81                 "No error", /* 0 */
82                 "DIE command", /* 1 */
83                 "execv() failed", /* 2 */
84                 "Internal error", /* 3 */
85                 "Config file error", /* 4 */
86                 "Logfile error", /* 5 */
87                 "POSIX fork failed", /* 6 */
88                 "Bad commandline parameters", /* 7 */
89                 "No ports could be bound", /* 8 */
90                 "Can't write PID file", /* 9 */
91                 "SocketEngine could not initialize", /* 10 */
92                 "Refusing to start up as root", /* 11 */
93                 "Found a <die> tag!", /* 12 */
94                 "Couldn't load module on startup", /* 13 */
95                 "Could not create windows forked process", /* 14 */
96                 "Received SIGTERM", /* 15 */
97                 "Bad command handler loaded", /* 16 */
98                 "RegisterServiceCtrlHandler failed", /* 17 */
99                 "UpdateSCMStatus failed", /* 18 */
100                 "CreateEvent failed" /* 19 */
101 };
102
103 template<typename T> static void DeleteZero(T*&n)
104 {
105         T* t = n;
106         n = NULL;
107         delete t;
108 }
109
110 void InspIRCd::Cleanup()
111 {
112         for (unsigned int i = 0; i < ports.size(); i++)
113         {
114                 /* This calls the constructor and closes the listening socket */
115                 ports[i]->cull();
116                 delete ports[i];
117         }
118         ports.clear();
119
120         /* Close all client sockets, or the new process inherits them */
121         LocalUserList::reverse_iterator i = Users->local_users.rbegin();
122         while (i != this->Users->local_users.rend())
123         {
124                 User* u = *i++;
125                 Users->QuitUser(u, "Server shutdown");
126         }
127
128         GlobalCulls.Apply();
129         Modules->UnloadAll();
130
131         /* Delete objects dynamically allocated in constructor (destructor would be more appropriate, but we're likely exiting) */
132         /* Must be deleted before modes as it decrements modelines */
133         if (FakeClient)
134                 FakeClient->cull();
135         if (Res)
136                 Res->cull();
137         DeleteZero(this->FakeClient);
138         DeleteZero(this->Users);
139         DeleteZero(this->Modes);
140         DeleteZero(this->XLines);
141         DeleteZero(this->Parser);
142         DeleteZero(this->stats);
143         DeleteZero(this->Modules);
144         DeleteZero(this->BanCache);
145         DeleteZero(this->SNO);
146         DeleteZero(this->Config);
147         DeleteZero(this->Res);
148         DeleteZero(this->chanlist);
149         DeleteZero(this->PI);
150         DeleteZero(this->Threads);
151         DeleteZero(this->Timers);
152         DeleteZero(this->SE);
153         /* Close logging */
154         this->Logs->CloseLogs();
155         DeleteZero(this->Logs);
156 }
157
158 void InspIRCd::Restart(const std::string &reason)
159 {
160         /* SendError flushes each client's queue,
161          * regardless of writeability state
162          */
163         this->SendError(reason);
164
165         /* Figure out our filename (if theyve renamed it, we're boned) */
166         std::string me;
167
168         char** argv = Config->cmdline.argv;
169
170 #ifdef _WIN32
171         char module[MAX_PATH];
172         if (GetModuleFileNameA(NULL, module, MAX_PATH))
173                 me = module;
174 #else
175         me = argv[0];
176 #endif
177
178         this->Cleanup();
179
180         if (execv(me.c_str(), argv) == -1)
181         {
182                 /* Will raise a SIGABRT if not trapped */
183                 throw CoreException(std::string("Failed to execv()! error: ") + strerror(errno));
184         }
185 }
186
187 void InspIRCd::ResetMaxBans()
188 {
189         for (chan_hash::const_iterator i = chanlist->begin(); i != chanlist->end(); i++)
190                 i->second->ResetMaxBans();
191 }
192
193 /** Because hash_map doesn't free its buckets when we delete items, we occasionally
194  * recreate the hash to free them up.
195  * We do this by copying the entries from the old hash to a new hash, causing all
196  * empty buckets to be weeded out of the hash.
197  * Since this is quite expensive, it's not done very often.
198  */
199 void InspIRCd::RehashUsersAndChans()
200 {
201         user_hash* old_users = Users->clientlist;
202         Users->clientlist = new user_hash;
203         for (user_hash::const_iterator n = old_users->begin(); n != old_users->end(); n++)
204                 Users->clientlist->insert(*n);
205         delete old_users;
206
207         user_hash* old_uuid = Users->uuidlist;
208         Users->uuidlist = new user_hash;
209         for (user_hash::const_iterator n = old_uuid->begin(); n != old_uuid->end(); n++)
210                 Users->uuidlist->insert(*n);
211         delete old_uuid;
212
213         chan_hash* old_chans = chanlist;
214         chanlist = new chan_hash;
215         for (chan_hash::const_iterator n = old_chans->begin(); n != old_chans->end(); n++)
216                 chanlist->insert(*n);
217         delete old_chans;
218
219         // Reset the already_sent IDs so we don't wrap it around and drop a message
220         LocalUser::already_sent_id = 0;
221         for (LocalUserList::const_iterator i = Users->local_users.begin(); i != Users->local_users.end(); i++)
222         {
223                 (**i).already_sent = 0;
224                 (**i).RemoveExpiredInvites();
225         }
226 }
227
228 void InspIRCd::SetSignals()
229 {
230 #ifndef _WIN32
231         signal(SIGALRM, SIG_IGN);
232         signal(SIGHUP, InspIRCd::SetSignal);
233         signal(SIGPIPE, SIG_IGN);
234         signal(SIGCHLD, SIG_IGN);
235         /* We want E2BIG not a signal! */
236         signal(SIGXFSZ, SIG_IGN);
237 #endif
238         signal(SIGTERM, InspIRCd::SetSignal);
239 }
240
241 void InspIRCd::QuickExit(int status)
242 {
243         exit(status);
244 }
245
246 // Required for returning the proper value of EXIT_SUCCESS for the parent process
247 static void VoidSignalHandler(int signalreceived)
248 {
249         exit(0);
250 }
251
252 bool InspIRCd::DaemonSeed()
253 {
254 #ifdef _WIN32
255         std::cout << "InspIRCd Process ID: " << con_green << GetCurrentProcessId() << con_reset << std::endl;
256         return true;
257 #else
258         // Do not use QuickExit here: It will exit with status SIGTERM which would break e.g. daemon scripts
259         signal(SIGTERM, VoidSignalHandler);
260
261         int childpid;
262         if ((childpid = fork ()) < 0)
263                 return false;
264         else if (childpid > 0)
265         {
266                 /* We wait here for the child process to kill us,
267                  * so that the shell prompt doesnt come back over
268                  * the output.
269                  * Sending a kill with a signal of 0 just checks
270                  * if the child pid is still around. If theyre not,
271                  * they threw an error and we should give up.
272                  */
273                 while (kill(childpid, 0) != -1)
274                         sleep(1);
275                 exit(0);
276         }
277         setsid ();
278         std::cout << "InspIRCd Process ID: " << con_green << getpid() << con_reset << std::endl;
279
280         signal(SIGTERM, InspIRCd::SetSignal);
281
282         rlimit rl;
283         if (getrlimit(RLIMIT_CORE, &rl) == -1)
284         {
285                 this->Logs->Log("STARTUP",DEFAULT,"Failed to getrlimit()!");
286                 return false;
287         }
288         rl.rlim_cur = rl.rlim_max;
289
290         if (setrlimit(RLIMIT_CORE, &rl) == -1)
291                         this->Logs->Log("STARTUP",DEFAULT,"setrlimit() failed, cannot increase coredump size.");
292
293         return true;
294 #endif
295 }
296
297 void InspIRCd::WritePID(const std::string &filename)
298 {
299 #ifndef _WIN32
300         std::string fname(filename);
301         if (fname.empty())
302                 fname = DATA_PATH "/inspircd.pid";
303         std::ofstream outfile(fname.c_str());
304         if (outfile.is_open())
305         {
306                 outfile << getpid();
307                 outfile.close();
308         }
309         else
310         {
311                 std::cout << "Failed to write PID-file '" << fname << "', exiting." << std::endl;
312                 this->Logs->Log("STARTUP",DEFAULT,"Failed to write PID-file '%s', exiting.",fname.c_str());
313                 Exit(EXIT_STATUS_PID);
314         }
315 #endif
316 }
317
318 InspIRCd::InspIRCd(int argc, char** argv) :
319          ConfigFileName(CONFIG_PATH "/inspircd.conf"),
320
321          /* Functor pointer initialisation.
322           *
323           * THIS MUST MATCH THE ORDER OF DECLARATION OF THE FUNCTORS, e.g. the methods
324           * themselves within the class.
325           */
326          NICKForced("NICKForced", NULL),
327          OperQuit("OperQuit", NULL),
328          GenRandom(&HandleGenRandom),
329          IsChannel(&HandleIsChannel),
330          IsSID(&HandleIsSID),
331          Rehash(&HandleRehash),
332          IsNick(&HandleIsNick),
333          IsIdent(&HandleIsIdent),
334          FloodQuitUser(&HandleFloodQuitUser),
335          OnCheckExemption(&HandleOnCheckExemption)
336 {
337         ServerInstance = this;
338
339         Extensions.Register(&NICKForced);
340         Extensions.Register(&OperQuit);
341
342         FailedPortList pl;
343         int do_version = 0, do_nofork = 0, do_debug = 0,
344             do_nolog = 0, do_root = 0, do_testsuite = 0;    /* flag variables */
345         int c = 0;
346
347         // Initialize so that if we exit before proper initialization they're not deleted
348         this->Logs = 0;
349         this->Threads = 0;
350         this->PI = 0;
351         this->Users = 0;
352         this->chanlist = 0;
353         this->Config = 0;
354         this->SNO = 0;
355         this->BanCache = 0;
356         this->Modules = 0;
357         this->stats = 0;
358         this->Timers = 0;
359         this->Parser = 0;
360         this->XLines = 0;
361         this->Modes = 0;
362         this->Res = 0;
363         this->ConfigThread = NULL;
364         this->FakeClient = NULL;
365
366         UpdateTime();
367         this->startup_time = TIME.tv_sec;
368
369         // This must be created first, so other parts of Insp can use it while starting up
370         this->Logs = new LogManager;
371
372         SE = CreateSocketEngine();
373
374         this->Threads = new ThreadEngine;
375
376         /* Default implementation does nothing */
377         this->PI = new ProtocolInterface;
378
379         this->s_signal = 0;
380
381         // Create base manager classes early, so nothing breaks
382         this->Users = new UserManager;
383
384         this->Users->clientlist = new user_hash();
385         this->Users->uuidlist = new user_hash();
386         this->chanlist = new chan_hash();
387
388         this->Config = new ServerConfig;
389         this->SNO = new SnomaskManager;
390         this->BanCache = new BanCacheManager;
391         this->Modules = new ModuleManager();
392         this->stats = new serverstats();
393         this->Timers = new TimerManager;
394         this->Parser = new CommandParser;
395         this->XLines = new XLineManager;
396
397         this->Config->cmdline.argv = argv;
398         this->Config->cmdline.argc = argc;
399
400 #ifdef _WIN32
401         srand(TIME.tv_nsec ^ TIME.tv_sec);
402
403         // Initialize the console values
404         g_hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
405         CONSOLE_SCREEN_BUFFER_INFO bufinf;
406         if(GetConsoleScreenBufferInfo(g_hStdout, &bufinf))
407         {
408                 g_wOriginalColors = bufinf.wAttributes & 0x00FF;
409                 g_wBackgroundColor = bufinf.wAttributes & 0x00F0;
410         }
411         else
412         {
413                 g_wOriginalColors = FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN;
414                 g_wBackgroundColor = 0;
415         }
416 #else
417         srandom(TIME.tv_nsec ^ TIME.tv_sec);
418 #endif
419
420         struct option longopts[] =
421         {
422                 { "nofork",     no_argument,            &do_nofork,     1       },
423                 { "logfile",    required_argument,      NULL,           'f'     },
424                 { "config",     required_argument,      NULL,           'c'     },
425                 { "debug",      no_argument,            &do_debug,      1       },
426                 { "nolog",      no_argument,            &do_nolog,      1       },
427                 { "runasroot",  no_argument,            &do_root,       1       },
428                 { "version",    no_argument,            &do_version,    1       },
429                 { "testsuite",  no_argument,            &do_testsuite,  1       },
430                 { 0, 0, 0, 0 }
431         };
432
433         int index;
434         while ((c = getopt_long(argc, argv, ":c:f:", longopts, &index)) != -1)
435         {
436                 switch (c)
437                 {
438                         case 'f':
439                                 /* Log filename was set */
440                                 Config->cmdline.startup_log = optarg;
441                         break;
442                         case 'c':
443                                 /* Config filename was set */
444                                 ConfigFileName = optarg;
445                         break;
446                         case 0:
447                                 /* getopt_long_only() set an int variable, just keep going */
448                         break;
449                         case '?':
450                                 /* Unknown parameter */
451                         default:
452                                 /* Fall through to handle other weird values too */
453                                 std::cout << "Unknown parameter '" << argv[optind-1] << "'" << std::endl;
454                                 std::cout << "Usage: " << argv[0] << " [--nofork] [--nolog] [--debug] [--logfile <filename>] " << std::endl <<
455                                         std::string(static_cast<int>(8+strlen(argv[0])), ' ') << "[--runasroot] [--version] [--config <config>] [--testsuite]" << std::endl;
456                                 Exit(EXIT_STATUS_ARGV);
457                         break;
458                 }
459         }
460
461         if (do_testsuite)
462                 do_nofork = do_debug = true;
463
464         if (do_version)
465         {
466                 std::cout << std::endl << VERSION << " r" << REVISION << std::endl;
467                 Exit(EXIT_STATUS_NOERROR);
468         }
469
470 #ifdef _WIN32
471         // Set up winsock
472         WSADATA wsadata;
473         WSAStartup(MAKEWORD(2,2), &wsadata);
474 #endif
475
476         /* Set the finished argument values */
477         Config->cmdline.nofork = (do_nofork != 0);
478         Config->cmdline.forcedebug = (do_debug != 0);
479         Config->cmdline.writelog = !do_nolog;
480         Config->cmdline.TestSuite = (do_testsuite != 0);
481
482         if (do_debug)
483         {
484                 FileWriter* fw = new FileWriter(stdout);
485                 FileLogStream* fls = new FileLogStream(RAWIO, fw);
486                 Logs->AddLogTypes("*", fls, true);
487         }
488         else if (!this->OpenLog(argv, argc))
489         {
490                 std::cout << "ERROR: Could not open initial logfile " << Config->cmdline.startup_log << ": " << strerror(errno) << std::endl << std::endl;
491                 Exit(EXIT_STATUS_LOG);
492         }
493
494         if (!ServerConfig::FileExists(ConfigFileName.c_str()))
495         {
496 #ifdef _WIN32
497                 /* Windows can (and defaults to) hide file extensions, so let's play a bit nice for windows users. */
498                 std::string txtconf = this->ConfigFileName;
499                 txtconf.append(".txt");
500
501                 if (ServerConfig::FileExists(txtconf.c_str()))
502                 {
503                         ConfigFileName = txtconf;
504                 }
505                 else
506 #endif
507                 {
508                         std::cout << "ERROR: Cannot open config file: " << ConfigFileName << std::endl << "Exiting..." << std::endl;
509                         this->Logs->Log("STARTUP",DEFAULT,"Unable to open config file %s", ConfigFileName.c_str());
510                         Exit(EXIT_STATUS_CONFIG);
511                 }
512         }
513
514         std::cout << con_green << "Inspire Internet Relay Chat Server" << con_reset << ", compiled on " __DATE__ " at " __TIME__ << std::endl;
515         std::cout << con_green << "(C) InspIRCd Development Team." << con_reset << std::endl << std::endl;
516         std::cout << "Developers:" << std::endl;
517         std::cout << con_green << "\tBrain, FrostyCoolSlug, w00t, Om, Special, peavey" << std::endl;
518         std::cout << "\taquanight, psychon, dz, danieldg, jackmcbarn" << std::endl;\r
519         std::cout << "\tAttila" << con_reset << std::endl << std::endl;
520         std::cout << "Others:\t\t\t" << con_green << "See /INFO Output" << con_reset << std::endl;
521
522         this->Modes = new ModeParser;
523
524 #ifndef _WIN32
525         if (!do_root)
526                 this->CheckRoot();
527         else
528         {
529                 std::cout << "* WARNING * WARNING * WARNING * WARNING * WARNING *" << std::endl\r
530                 << "YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED" << std::endl\r
531                 << "AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED" << std::endl\r
532                 << "OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR" << std::endl\r
533                 << "SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN" << std::endl\r
534                 << "TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART" << std::endl\r
535                 << "THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!" << std::endl << std::endl\r
536                 << "InspIRCd starting in 20 seconds, ctrl+c to abort..." << std::endl;\r
537                 sleep(20);
538         }
539 #endif
540
541         this->SetSignals();
542
543         if (!Config->cmdline.nofork)
544         {
545                 if (!this->DaemonSeed())
546                 {
547                         std::cout << "ERROR: could not go into daemon mode. Shutting down." << std::endl;
548                         Logs->Log("STARTUP", DEFAULT, "ERROR: could not go into daemon mode. Shutting down.");
549                         Exit(EXIT_STATUS_FORK);
550                 }
551         }
552
553         SE->RecoverFromFork();
554
555         /* During startup we don't actually initialize this
556          * in the thread engine.
557          */
558         this->Config->Read();
559         this->Config->Apply(NULL, "");
560         Logs->OpenFileLogs();
561
562         this->Res = new DNS();
563
564         /*
565          * Initialise SID/UID.
566          * For an explanation as to exactly how this works, and why it works this way, see GetUID().
567          *   -- w00t
568          */
569         if (Config->sid.empty())
570         {
571                 // Generate one
572                 unsigned int sid = 0;
573                 char sidstr[4];
574
575                 for (const char* x = Config->ServerName.c_str(); *x; ++x)
576                         sid = 5 * sid + *x;
577                 for (const char* y = Config->ServerDesc.c_str(); *y; ++y)
578                         sid = 5 * sid + *y;
579                 sprintf(sidstr, "%03d", sid % 1000);
580
581                 Config->sid = sidstr;
582         }
583
584         /* set up fake client again this time with the correct uid */
585         this->FakeClient = new FakeUser(Config->sid, Config->ServerName);
586
587         // Get XLine to do it's thing.
588         this->XLines->CheckELines();
589         this->XLines->ApplyLines();
590
591         int bounditems = BindPorts(pl);
592
593         std::cout << std::endl;
594
595         this->Modules->LoadAll();
596
597         /* Just in case no modules were loaded - fix for bug #101 */
598         this->BuildISupport();
599         Config->ApplyDisabledCommands(Config->DisabledCommands);
600
601         if (!pl.empty())
602         {
603                 std::cout << std::endl << "WARNING: Not all your client ports could be bound -- " << std::endl << "starting anyway with " << bounditems
604                         << " of " << bounditems + (int)pl.size() << " client ports bound." << std::endl << std::endl;
605                 std::cout << "The following port(s) failed to bind:" << std::endl << std::endl;
606                 int j = 1;
607                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
608                 {
609                         std::cout << j << ".\tAddress: " << (i->first.empty() ? "<all>" : i->first) << " \tReason: " << i->second << std::endl;
610                 }
611
612                 std::cout << std::endl << "Hint: Try using a public IP instead of blank or *" << std::endl;
613         }
614
615         std::cout << "InspIRCd is now running as '" << Config->ServerName << "'[" << Config->GetSID() << "] with " << SE->GetMaxFds() << " max open sockets" << std::endl;
616
617 #ifndef _WIN32
618         if (!Config->cmdline.nofork)
619         {
620                 if (kill(getppid(), SIGTERM) == -1)
621                 {
622                         std::cout << "Error killing parent process: " << strerror(errno) << std::endl;
623                         Logs->Log("STARTUP", DEFAULT, "Error killing parent process: %s",strerror(errno));
624                 }
625         }
626
627         /* Explicitly shut down stdio's stdin/stdout/stderr.
628          *
629          * The previous logic here was to only do this if stdio was connected to a controlling
630          * terminal.  However, we must do this always to avoid information leaks and other
631          * problems related to stdio.
632          *
633          * The only exception is if we are in debug mode.
634          *
635          *    -- nenolod
636          */
637         if ((!do_nofork) && (!do_testsuite) && (!Config->cmdline.forcedebug))
638         {
639                 int fd = open("/dev/null", O_RDWR);
640
641                 fclose(stdin);
642                 fclose(stderr);
643                 fclose(stdout);
644
645                 if (dup2(fd, STDIN_FILENO) < 0)
646                         Logs->Log("STARTUP", DEFAULT, "Failed to dup /dev/null to stdin.");
647                 if (dup2(fd, STDOUT_FILENO) < 0)
648                         Logs->Log("STARTUP", DEFAULT, "Failed to dup /dev/null to stdout.");
649                 if (dup2(fd, STDERR_FILENO) < 0)
650                         Logs->Log("STARTUP", DEFAULT, "Failed to dup /dev/null to stderr.");
651                 close(fd);
652         }
653         else
654         {
655                 Logs->Log("STARTUP", DEFAULT,"Keeping pseudo-tty open as we are running in the foreground.");
656         }
657 #else
658         /* Set win32 service as running, if we are running as a service */
659         SetServiceRunning();
660
661         // Handle forking
662         if(!do_nofork)
663         {
664                 FreeConsole();
665         }
666
667         QueryPerformanceFrequency(&stats->QPFrequency);
668 #endif
669
670         Logs->Log("STARTUP", DEFAULT, "Startup complete as '%s'[%s], %d max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SE->GetMaxFds());
671
672 #ifndef _WIN32
673         std::string SetUser = Config->ConfValue("security")->getString("runasuser");
674         std::string SetGroup = Config->ConfValue("security")->getString("runasgroup");
675         if (!SetGroup.empty())
676         {
677                 int ret;
678
679                 // setgroups
680                 ret = setgroups(0, NULL);
681
682                 if (ret == -1)
683                 {
684                         this->Logs->Log("SETGROUPS", DEFAULT, "setgroups() failed (wtf?): %s", strerror(errno));
685                         this->QuickExit(0);
686                 }
687
688                 // setgid
689                 struct group *g;
690
691                 errno = 0;
692                 g = getgrnam(SetGroup.c_str());
693
694                 if (!g)
695                 {
696                         this->Logs->Log("SETGUID", DEFAULT, "getgrnam(%s) failed (wrong group?): %s", SetGroup.c_str(), strerror(errno));
697                         this->QuickExit(0);
698                 }
699
700                 ret = setgid(g->gr_gid);
701
702                 if (ret == -1)
703                 {
704                         this->Logs->Log("SETGUID", DEFAULT, "setgid() failed (wrong group?): %s", strerror(errno));
705                         this->QuickExit(0);
706                 }
707         }
708
709         if (!SetUser.empty())
710         {
711                 // setuid
712                 struct passwd *u;
713
714                 errno = 0;
715                 u = getpwnam(SetUser.c_str());
716
717                 if (!u)
718                 {
719                         this->Logs->Log("SETGUID", DEFAULT, "getpwnam(%s) failed (wrong user?): %s", SetUser.c_str(), strerror(errno));
720                         this->QuickExit(0);
721                 }
722
723                 int ret = setuid(u->pw_uid);
724
725                 if (ret == -1)
726                 {
727                         this->Logs->Log("SETGUID", DEFAULT, "setuid() failed (wrong user?): %s", strerror(errno));
728                         this->QuickExit(0);
729                 }
730         }
731
732         this->WritePID(Config->PID);
733 #endif
734 }
735
736 void InspIRCd::UpdateTime()
737 {
738 #ifdef _WIN32
739         SYSTEMTIME st;
740         GetSystemTime(&st);
741
742         TIME.tv_sec = time(NULL);
743         TIME.tv_nsec = st.wMilliseconds;
744 #else
745         #ifdef HAS_CLOCK_GETTIME
746                 clock_gettime(CLOCK_REALTIME, &TIME);
747         #else
748                 struct timeval tv;
749                 gettimeofday(&tv, NULL);
750                 TIME.tv_sec = tv.tv_sec;
751                 TIME.tv_nsec = tv.tv_usec * 1000;
752         #endif
753 #endif
754 }
755
756 int InspIRCd::Run()
757 {
758         /* See if we're supposed to be running the test suite rather than entering the mainloop */
759         if (Config->cmdline.TestSuite)
760         {
761                 TestSuite* ts = new TestSuite;
762                 delete ts;
763                 Exit(0);
764         }
765
766         UpdateTime();
767         time_t OLDTIME = TIME.tv_sec;
768
769         while (true)
770         {
771 #ifndef _WIN32
772                 static rusage ru;
773 #endif
774
775                 /* Check if there is a config thread which has finished executing but has not yet been freed */
776                 if (this->ConfigThread && this->ConfigThread->IsDone())
777                 {
778                         /* Rehash has completed */
779                         this->Logs->Log("CONFIG",DEBUG,"Detected ConfigThread exiting, tidying up...");
780
781                         this->ConfigThread->Finish();
782
783                         ConfigThread->join();
784                         delete ConfigThread;
785                         ConfigThread = NULL;
786                 }
787
788                 UpdateTime();
789
790                 /* Run background module timers every few seconds
791                  * (the docs say modules shouldnt rely on accurate
792                  * timing using this event, so we dont have to
793                  * time this exactly).
794                  */
795                 if (TIME.tv_sec != OLDTIME)
796                 {
797 #ifndef _WIN32
798                         getrusage(RUSAGE_SELF, &ru);
799                         stats->LastSampled = TIME;
800                         stats->LastCPU = ru.ru_utime;
801 #else
802                         if(QueryPerformanceCounter(&stats->LastSampled))
803                         {
804                                 FILETIME CreationTime;
805                                 FILETIME ExitTime;
806                                 FILETIME KernelTime;
807                                 FILETIME UserTime;
808                                 GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime, &KernelTime, &UserTime);
809                                 stats->LastCPU.dwHighDateTime = KernelTime.dwHighDateTime + UserTime.dwHighDateTime;
810                                 stats->LastCPU.dwLowDateTime = KernelTime.dwLowDateTime + UserTime.dwLowDateTime;
811                         }
812 #endif
813
814                         /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */
815                         if (TIME.tv_sec < OLDTIME - 2)
816                         {
817                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)OLDTIME-TIME.tv_sec);
818                         }
819                         else if (TIME.tv_sec > OLDTIME + 2)
820                         {
821                                 SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)TIME.tv_sec - OLDTIME);
822                         }
823 \r
824                         OLDTIME = TIME.tv_sec;
825
826                         if ((TIME.tv_sec % 3600) == 0)
827                         {
828                                 this->RehashUsersAndChans();
829                                 FOREACH_MOD(I_OnGarbageCollect, OnGarbageCollect());
830                         }
831
832                         Timers->TickTimers(TIME.tv_sec);
833                         this->DoBackgroundUserStuff();
834
835                         if ((TIME.tv_sec % 5) == 0)
836                         {
837                                 FOREACH_MOD(I_OnBackgroundTimer,OnBackgroundTimer(TIME.tv_sec));
838                                 SNO->FlushSnotices();
839                         }
840                 }
841
842                 /* Call the socket engine to wait on the active
843                  * file descriptors. The socket engine has everything's
844                  * descriptors in its list... dns, modules, users,
845                  * servers... so its nice and easy, just one call.
846                  * This will cause any read or write events to be
847                  * dispatched to their handlers.
848                  */
849                 this->SE->DispatchTrialWrites();
850                 this->SE->DispatchEvents();
851
852                 /* if any users were quit, take them out */
853                 GlobalCulls.Apply();
854                 AtomicActions.Run();
855
856                 if (s_signal)
857                 {
858                         this->SignalHandler(s_signal);
859                         s_signal = 0;
860                 }
861         }
862
863         return 0;
864 }
865
866 /**********************************************************************************/
867
868 /**
869  * An ircd in five lines! bwahahaha. ahahahahaha. ahahah *cough*.
870  */
871
872 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
873  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
874  * registration timeout maximum seconds)
875  */
876 bool InspIRCd::AllModulesReportReady(LocalUser* user)
877 {
878         ModResult res;
879         FIRST_MOD_RESULT(OnCheckReady, res, (user));
880         return (res == MOD_RES_PASSTHRU);
881 }
882
883 sig_atomic_t InspIRCd::s_signal = 0;
884
885 void InspIRCd::SetSignal(int signal)
886 {
887         s_signal = signal;
888 }
889
890 /* On posix systems, the flow of the program starts right here, with
891  * ENTRYPOINT being a #define that defines main(). On Windows, ENTRYPOINT
892  * defines smain() and the real main() is in the service code under
893  * win32service.cpp. This allows the service control manager to control
894  * the process where we are running as a windows service.
895  */
896 ENTRYPOINT
897 {
898         new InspIRCd(argc, argv);
899         ServerInstance->Run();
900         delete ServerInstance;
901         return 0;
902 }