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