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