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