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