]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
I lose for being slow. also tidyup a bit, still needs to fix that sizeof..
[user/henk/code/inspircd.git] / src / inspircd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include <signal.h>
16
17 #ifndef WIN32
18         #include <dirent.h>
19         #include <unistd.h>
20         #include <sys/resource.h>
21         #include <dlfcn.h>
22         #include <getopt.h>
23
24         /* Some systems don't define RUSAGE_SELF. This should fix them. */
25         #ifndef RUSAGE_SELF
26                 #define RUSAGE_SELF 0
27         #endif
28 #endif
29
30 #include <fstream>
31 #include "xline.h"
32 #include "socketengine.h"
33 #include "inspircd_se_config.h"
34 #include "socket.h"
35 #include "command_parse.h"
36 #include "exitcodes.h"
37 #include "caller.h"
38
39 using irc::sockets::insp_ntoa;
40 using irc::sockets::insp_inaddr;
41 using irc::sockets::insp_sockaddr;
42
43 InspIRCd* SI = NULL;
44 int* mysig = NULL;
45
46
47 /* Burlex: Moved from exitcodes.h -- due to duplicate symbols */
48 const char* ExitCodes[] =
49 {
50                 "No error", /* 0 */
51                 "DIE command", /* 1 */
52                 "execv() failed", /* 2 */
53                 "Internal error", /* 3 */
54                 "Config file error", /* 4 */
55                 "Logfile error", /* 5 */
56                 "POSIX fork failed", /* 6 */
57                 "Bad commandline parameters", /* 7 */
58                 "No ports could be bound", /* 8 */
59                 "Can't write PID file", /* 9 */
60                 "SocketEngine could not initialize", /* 10 */
61                 "Refusing to start up as root", /* 11 */
62                 "Found a <die> tag!", /* 12 */
63                 "Couldn't load module on startup", /* 13 */
64                 "Could not create windows forked process", /* 14 */
65                 "Received SIGTERM", /* 15 */
66 };
67
68 void InspIRCd::Cleanup()
69 {
70         std::vector<std::string> mymodnames;
71         int MyModCount = this->Modules->GetCount();
72
73         if (Config)
74         {
75                 for (unsigned int i = 0; i < Config->ports.size(); i++)
76                 {
77                         /* This calls the constructor and closes the listening socket */
78                         delete Config->ports[i];
79                 }
80
81                 Config->ports.clear();
82         }
83
84         /* Close all client sockets, or the new process inherits them */
85         for (std::vector<userrec*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
86         {
87                 (*i)->SetWriteError("Server shutdown");
88                 (*i)->CloseSocket();
89         }
90
91         /* We do this more than once, so that any service providers get a
92          * chance to be unhooked by the modules using them, but then get
93          * a chance to be removed themsleves.
94          */
95         for (int tries = 0; tries < 3; tries++)
96         {
97                 MyModCount = this->Modules->GetCount();
98                 mymodnames.clear();
99
100                 if (MyModCount)
101                 {
102                         /* Unload all modules, so they get a chance to clean up their listeners */
103                         for (int j = 0; j <= MyModCount; j++)
104                                 mymodnames.push_back(Config->module_names[j]);
105
106                         for (int k = 0; k <= MyModCount; k++)
107                                 this->Modules->Unload(mymodnames[k].c_str());
108                 }
109         }
110
111         /* Close logging */
112         if (this->Logger)
113                 this->Logger->Close();
114
115         /* Cleanup Server Names */
116         for(servernamelist::iterator itr = servernames.begin(); itr != servernames.end(); ++itr)
117                 delete (*itr);
118 }
119
120 void InspIRCd::Restart(const std::string &reason)
121 {
122         /* SendError flushes each client's queue,
123          * regardless of writeability state
124          */
125         this->SendError(reason);
126
127         this->Cleanup();
128
129         /* Figure out our filename (if theyve renamed it, we're boned) */
130         std::string me;
131
132 #ifdef WINDOWS
133         char module[MAX_PATH];
134         if (GetModuleFileName(NULL, module, MAX_PATH))
135                 me = module;
136 #else
137         me = Config->MyDir + "/inspircd";
138 #endif
139
140         if (execv(me.c_str(), Config->argv) == -1)
141         {
142                 /* Will raise a SIGABRT if not trapped */
143                 throw CoreException(std::string("Failed to execv()! error: ") + strerror(errno));
144         }
145 }
146
147 void InspIRCd::ResetMaxBans()
148 {
149         for (chan_hash::const_iterator i = chanlist->begin(); i != chanlist->end(); i++)
150                 i->second->ResetMaxBans();
151 }
152
153 /** Because hash_map doesnt free its buckets when we delete items (this is a 'feature')
154  * we must occasionally rehash the hash (yes really).
155  * We do this by copying the entries from the old hash to a new hash, causing all
156  * empty buckets to be weeded out of the hash. We dont do this on a timer, as its
157  * very expensive, so instead we do it when the user types /REHASH and expects a
158  * short delay anyway.
159  */
160 void InspIRCd::RehashUsersAndChans()
161 {
162         user_hash* old_users = this->clientlist;
163         user_hash* old_uuid  = this->uuidlist;
164         chan_hash* old_chans = this->chanlist;
165
166         this->clientlist = new user_hash();
167         this->uuidlist = new user_hash();
168         this->chanlist = new chan_hash();
169
170         for (user_hash::const_iterator n = old_users->begin(); n != old_users->end(); n++)
171                 this->clientlist->insert(*n);
172
173         delete old_users;
174
175         for (user_hash::const_iterator n = old_uuid->begin(); n != old_uuid->end(); n++)
176                 this->uuidlist->insert(*n);
177
178         delete old_uuid;
179
180         for (chan_hash::const_iterator n = old_chans->begin(); n != old_chans->end(); n++)
181                 this->chanlist->insert(*n);
182
183         delete old_chans;
184 }
185
186 void InspIRCd::CloseLog()
187 {
188         if (this->Logger)
189                 this->Logger->Close();
190 }
191
192 void InspIRCd::SetSignals()
193 {
194 #ifndef WIN32
195         signal(SIGALRM, SIG_IGN);
196         signal(SIGHUP, InspIRCd::SetSignal);
197         signal(SIGPIPE, SIG_IGN);
198         signal(SIGCHLD, SIG_IGN);
199 #endif
200         signal(SIGTERM, InspIRCd::SetSignal);
201 }
202
203 void InspIRCd::QuickExit(int status)
204 {
205         exit(0);
206 }
207
208 bool InspIRCd::DaemonSeed()
209 {
210 #ifdef WINDOWS
211         printf_c("InspIRCd Process ID: \033[1;32m%lu\033[0m\n", GetCurrentProcessId());
212         return true;
213 #else
214         signal(SIGTERM, InspIRCd::QuickExit);
215
216         int childpid;
217         if ((childpid = fork ()) < 0)
218                 return false;
219         else if (childpid > 0)
220         {
221                 /* We wait here for the child process to kill us,
222                  * so that the shell prompt doesnt come back over
223                  * the output.
224                  * Sending a kill with a signal of 0 just checks
225                  * if the child pid is still around. If theyre not,
226                  * they threw an error and we should give up.
227                  */
228                 while (kill(childpid, 0) != -1)
229                         sleep(1);
230                 exit(0);
231         }
232         setsid ();
233         umask (007);
234         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
235
236         signal(SIGTERM, InspIRCd::SetSignal);
237
238         rlimit rl;
239         if (getrlimit(RLIMIT_CORE, &rl) == -1)
240         {
241                 this->Log(DEFAULT,"Failed to getrlimit()!");
242                 return false;
243         }
244         else
245         {
246                 rl.rlim_cur = rl.rlim_max;
247                 if (setrlimit(RLIMIT_CORE, &rl) == -1)
248                         this->Log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
249         }
250
251         return true;
252 #endif
253 }
254
255 void InspIRCd::WritePID(const std::string &filename)
256 {
257         std::string fname = (filename.empty() ? "inspircd.pid" : filename);
258         if (*(fname.begin()) != '/')
259         {
260                 std::string::size_type pos;
261                 std::string confpath = this->ConfigFileName;
262                 if ((pos = confpath.rfind("/")) != std::string::npos)
263                 {
264                         /* Leaves us with just the path */
265                         fname = confpath.substr(0, pos) + std::string("/") + fname;
266                 }
267         }
268         std::ofstream outfile(fname.c_str());
269         if (outfile.is_open())
270         {
271                 outfile << getpid();
272                 outfile.close();
273         }
274         else
275         {
276                 printf("Failed to write PID-file '%s', exiting.\n",fname.c_str());
277                 this->Log(DEFAULT,"Failed to write PID-file '%s', exiting.",fname.c_str());
278                 Exit(EXIT_STATUS_PID);
279         }
280 }
281
282 InspIRCd::InspIRCd(int argc, char** argv)
283         : GlobalCulls(this),
284
285          /* Functor initialisation. Note that the ordering here is very important. */
286          HandleProcessUser(this),
287          HandleIsNick(this),
288          HandleIsIdent(this),
289          HandleFindDescriptor(this),
290          HandleFloodQuitUser(this),
291
292          /* Functor pointer initialisation. Must match the order of the list above */
293          ProcessUser(&HandleProcessUser),
294          IsNick(&HandleIsNick),
295          IsIdent(&HandleIsIdent),
296          FindDescriptor(&HandleFindDescriptor),
297          FloodQuitUser(&HandleFloodQuitUser)
298
299 {
300
301         int found_ports = 0;
302         FailedPortList pl;
303         int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_root = 0;    /* flag variables */
304         char c = 0;
305
306         memset(&server, 0, sizeof(server));
307         memset(&client, 0, sizeof(client));
308
309         SocketEngineFactory* SEF = new SocketEngineFactory();
310         SE = SEF->Create(this);
311         delete SEF;
312
313         this->s_signal = 0;
314
315         this->unregistered_count = 0;
316
317         this->clientlist = new user_hash();
318         this->uuidlist = new user_hash();
319         this->chanlist = new chan_hash();
320
321         this->Config = new ServerConfig(this);
322
323         this->Config->argv = argv;
324         this->Config->argc = argc;
325
326         if (chdir(Config->GetFullProgDir().c_str()))
327         {
328                 printf("Unable to change to my directory: %s\nAborted.", strerror(errno));
329                 exit(0);
330         }
331
332         this->Config->opertypes.clear();
333         this->Config->operclass.clear();
334         this->SNO = new SnomaskManager(this);
335         this->TIME = this->OLDTIME = this->startup_time = time(NULL);
336         this->time_delta = 0;
337         this->next_call = this->TIME + 3;
338         srand(this->TIME);
339
340         *this->LogFileName = 0;
341         strlcpy(this->ConfigFileName, CONFIG_FILE, MAXBUF);
342
343         struct option longopts[] =
344         {
345                 { "nofork",     no_argument,            &do_nofork,     1       },
346                 { "logfile",    required_argument,      NULL,           'f'     },
347                 { "config",     required_argument,      NULL,           'c'     },
348                 { "debug",      no_argument,            &do_debug,      1       },
349                 { "nolog",      no_argument,            &do_nolog,      1       },
350                 { "runasroot",  no_argument,            &do_root,       1       },
351                 { "version",    no_argument,            &do_version,    1       },
352                 { 0, 0, 0, 0 }
353         };
354
355         while ((c = getopt_long_only(argc, argv, ":f:", longopts, NULL)) != -1)
356         {
357                 switch (c)
358                 {
359                         case 'f':
360                                 /* Log filename was set */
361                                 strlcpy(LogFileName, optarg, MAXBUF);
362                         break;
363                         case 'c':
364                                 /* Config filename was set */
365                                 strlcpy(ConfigFileName, optarg, MAXBUF);
366                         break;
367                         case 0:
368                                 /* getopt_long_only() set an int variable, just keep going */
369                         break;
370                         default:
371                                 /* Unknown parameter! DANGER, INTRUDER.... err.... yeah. */
372                                 printf("Usage: %s [--nofork] [--nolog] [--debug] [--logfile <filename>] [--runasroot] [--version] [--config <config>]\n", argv[0]);
373                                 Exit(EXIT_STATUS_ARGV);
374                         break;
375                 }
376         }
377
378         if (do_version)
379         {
380                 printf("\n%s r%s\n", VERSION, REVISION);
381                 Exit(EXIT_STATUS_NOERROR);
382         }
383
384 #ifdef WIN32
385
386         // Handle forking
387         if(!do_nofork)
388         {
389                 DWORD ExitCode = WindowsForkStart(this);
390                 if(ExitCode)
391                         Exit(ExitCode);
392         }
393
394         // Set up winsock
395         WSADATA wsadata;
396         WSAStartup(MAKEWORD(2,0), &wsadata);
397
398         ChangeWindowsSpecificPointers(this);
399 #endif
400         if (!ServerConfig::FileExists(this->ConfigFileName))
401         {
402                 printf("ERROR: Cannot open config file: %s\nExiting...\n", this->ConfigFileName);
403                 this->Log(DEFAULT,"Unable to open config file %s", this->ConfigFileName);
404                 Exit(EXIT_STATUS_CONFIG);
405         }
406
407         printf_c("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
408         printf_c("(C) InspIRCd Development Team.\033[0m\n\n");
409         printf_c("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special, pippijn, peavey, Burlex\033[0m\n");
410         printf_c("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n");
411
412         /* Set the finished argument values */
413         Config->nofork = do_nofork;
414         Config->forcedebug = do_debug;
415         Config->writelog = !do_nolog;
416
417         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
418
419         if (!this->OpenLog(argv, argc))
420         {
421                 printf("ERROR: Could not open logfile %s: %s\n\n", Config->logpath.c_str(), strerror(errno));
422                 Exit(EXIT_STATUS_LOG);
423         }
424
425         this->Modules = new ModuleManager(this);
426         this->stats = new serverstats();
427         this->Timers = new TimerManager(this);
428         this->Parser = new CommandParser(this);
429         this->XLines = new XLineManager(this);
430         
431         Config->ClearStack();
432         Config->Read(true, NULL);
433         
434         this->Modules->modules.resize(255);
435         this->Modules->handles.resize(255);
436
437         /*
438          * Initialise UID. XXX, we need to read SID from config, and use it instead of 000.
439          * For an explanation as to exactly how this works, and why it works this way, see GetUID().
440          *   -- w00t
441          */
442         int i;
443
444         /* Generate SID */
445         size_t sid = 0;
446         if (Config->sid)
447         {
448                 sid = Config->sid;
449         }
450         else
451         {
452                 for (const char* x = Config->ServerName; *x; ++x)
453                         sid = 5 * sid + *x;
454                 for (const char* y = Config->ServerDesc; *y; ++y)
455                         sid = 5 * sid + *y;
456                 sid = sid % 999;
457
458                 Config->sid = sid;
459         }
460         current_uid[0] = sid / 100 + 48;
461         current_uid[1] = ((sid / 10) % 10) + 48;
462         current_uid[2] = sid % 10 + 48;
463
464         /* Initialise UID */
465         for(i = 3; i < UUID_LENGTH - 1; i++)
466                 current_uid[i] = 'A';
467
468         /* set up fake client */
469         this->FakeClient = new userrec(this);
470         this->FakeClient->SetFd(FD_MAGIC_NUMBER);
471
472         if (!do_root)
473                 this->CheckRoot();
474         else
475         {
476                 printf("* WARNING * WARNING * WARNING * WARNING * WARNING * \n\n");
477                 printf("YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED\n");
478                 printf("AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED\n");
479                 printf("OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR\n");
480                 printf("SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN\n");
481                 printf("TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART\n");
482                 printf("THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!\n");
483                 printf("\nInspIRCd starting in 20 seconds, ctrl+c to abort...\n");
484                 sleep(20);
485         }
486
487         this->SetSignals();
488
489         if (!Config->nofork)
490         {
491                 if (!this->DaemonSeed())
492                 {
493                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
494                         Log(DEFAULT,"ERROR: could not go into daemon mode. Shutting down.");
495                         Exit(EXIT_STATUS_FORK);
496                 }
497         }
498
499         SE->RecoverFromFork();
500
501         this->Modes = new ModeParser(this);
502         this->AddServerName(Config->ServerName);
503         CheckDie();
504         int bounditems = BindPorts(true, found_ports, pl);
505
506         for(int t = 0; t < 255; t++)
507                 Config->global_implementation[t] = 0;
508
509         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
510
511         printf("\n");
512
513         this->Res = new DNS(this);
514
515         this->Modules->LoadAll();
516         
517         /* Just in case no modules were loaded - fix for bug #101 */
518         this->BuildISupport();
519         InitializeDisabledCommands(Config->DisabledCommands, this);
520
521         if ((Config->ports.size() == 0) && (found_ports > 0))
522         {
523                 printf("\nERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
524                 Log(DEFAULT,"ERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?");
525                 Exit(EXIT_STATUS_BIND);
526         }
527
528         if (Config->ports.size() != (unsigned int)found_ports)
529         {
530                 printf("\nWARNING: Not all your client ports could be bound --\nstarting anyway with %d of %d client ports bound.\n\n", bounditems, found_ports);
531                 printf("The following port(s) failed to bind:\n");
532                 int j = 1;
533                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
534                 {
535                         printf("%d.\tIP: %s\tPort: %lu\n", j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
536                 }
537         }
538 #ifndef WINDOWS
539         if (!Config->nofork)
540         {
541                 if (kill(getppid(), SIGTERM) == -1)
542                 {
543                         printf("Error killing parent process: %s\n",strerror(errno));
544                         Log(DEFAULT,"Error killing parent process: %s",strerror(errno));
545                 }
546         }
547
548         if (isatty(0) && isatty(1) && isatty(2))
549         {
550                 /* We didn't start from a TTY, we must have started from a background process -
551                  * e.g. we are restarting, or being launched by cron. Dont kill parent, and dont
552                  * close stdin/stdout
553                  */
554                 if (!do_nofork)
555                 {
556                         fclose(stdin);
557                         fclose(stderr);
558                         fclose(stdout);
559                 }
560                 else
561                 {
562                         Log(DEFAULT,"Keeping pseudo-tty open as we are running in the foreground.");
563                 }
564         }
565 #else
566         WindowsIPC = new IPC(this);
567         if(!Config->nofork)
568         {
569                 WindowsForkKillOwner(this);
570                 FreeConsole();
571         }
572 #endif
573
574         printf("\nInspIRCd is now running!\n");
575         Log(DEFAULT,"Startup complete.");
576
577         this->WritePID(Config->PID);
578 }
579
580 void InspIRCd::DoOneIteration(bool process_module_sockets)
581 {
582 #ifndef WIN32
583         static rusage ru;
584 #else
585         static time_t uptime;
586         static struct tm * stime;
587         static char window_title[100];
588 #endif
589
590         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
591          * Once per loop iteration is pleanty.
592          */
593         OLDTIME = TIME;
594         TIME = time(NULL);
595
596         /* Run background module timers every few seconds
597          * (the docs say modules shouldnt rely on accurate
598          * timing using this event, so we dont have to
599          * time this exactly).
600          */
601         if (TIME != OLDTIME)
602         {
603                 if (TIME < OLDTIME)
604                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
605                 if ((TIME % 3600) == 0)
606                 {
607                         this->RehashUsersAndChans();
608                         FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect());
609                 }
610                 Timers->TickTimers(TIME);
611                 this->DoBackgroundUserStuff(TIME);
612
613                 if ((TIME % 5) == 0)
614                 {
615                         XLines->expire_lines();
616                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
617                         Timers->TickMissedTimers(TIME);
618                 }
619 #ifndef WIN32
620                 /* Same change as in cmd_stats.cpp, use RUSAGE_SELF rather than '0' -- Om */
621                 if (!getrusage(RUSAGE_SELF, &ru))
622                 {
623                         gettimeofday(&this->stats->LastSampled, NULL);
624                         this->stats->LastCPU = ru.ru_utime;
625                 }
626 #else
627                 WindowsIPC->Check();
628
629                 if(Config->nofork)
630                 {
631                         uptime = Time() - startup_time;
632                         stime = gmtime(&uptime);
633                         snprintf(window_title, 100, "InspIRCd - %u clients, %u accepted connections - Up %u days, %.2u:%.2u:%.2u",
634                                 LocalUserCount(), stats->statsAccept, stime->tm_yday, stime->tm_hour, stime->tm_min, stime->tm_sec);
635                         SetConsoleTitle(window_title);
636                 }
637 #endif
638         }
639
640         /* Call the socket engine to wait on the active
641          * file descriptors. The socket engine has everything's
642          * descriptors in its list... dns, modules, users,
643          * servers... so its nice and easy, just one call.
644          * This will cause any read or write events to be
645          * dispatched to their handlers.
646          */
647         this->SE->DispatchEvents();
648
649         /* if any users was quit, take them out */
650         this->GlobalCulls.Apply();
651
652         /* If any inspsockets closed, remove them */
653         this->InspSocketCull();
654
655         if (this->s_signal)
656         {
657                 this->SignalHandler(s_signal);
658                 this->s_signal = 0;
659         }
660
661 }
662
663 void InspIRCd::InspSocketCull()
664 {
665         for (std::map<InspSocket*,InspSocket*>::iterator x = SocketCull.begin(); x != SocketCull.end(); ++x)
666         {
667                 SE->DelFd(x->second);
668                 x->second->Close();
669                 delete x->second;
670         }
671         SocketCull.clear();
672 }
673
674 int InspIRCd::Run()
675 {
676         while (true)
677         {
678                 DoOneIteration(true);
679         }
680         /* This is never reached -- we hope! */
681         return 0;
682 }
683
684 /**********************************************************************************/
685
686 /**
687  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
688  */
689
690 int main(int argc, char** argv)
691 {
692         SI = new InspIRCd(argc, argv);
693         mysig = &SI->s_signal;
694         SI->Run();
695         delete SI;
696         return 0;
697 }
698
699 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
700  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
701  * registration timeout maximum seconds)
702  */
703 bool InspIRCd::AllModulesReportReady(userrec* user)
704 {
705         if (!Config->global_implementation[I_OnCheckReady])
706                 return true;
707
708         for (int i = 0; i <= this->Modules->GetCount(); i++)
709         {
710                 if (Config->implement_lists[i][I_OnCheckReady])
711                 {
712                         int res = this->Modules->modules[i]->OnCheckReady(user);
713                         if (!res)
714                                 return false;
715                 }
716         }
717         return true;
718 }
719
720 time_t InspIRCd::Time(bool delta)
721 {
722         if (delta)
723                 return TIME + time_delta;
724         return TIME;
725 }
726
727 int InspIRCd::SetTimeDelta(int delta)
728 {
729         int old = time_delta;
730         time_delta = delta;
731         this->Log(DEBUG, "Time delta set to %d (was %d)", time_delta, old);
732         return old;
733 }
734
735 void InspIRCd::AddLocalClone(userrec* user)
736 {
737         clonemap::iterator x = local_clones.find(user->GetIPString());
738         if (x != local_clones.end())
739                 x->second++;
740         else
741                 local_clones[user->GetIPString()] = 1;
742 }
743
744 void InspIRCd::AddGlobalClone(userrec* user)
745 {
746         clonemap::iterator y = global_clones.find(user->GetIPString());
747         if (y != global_clones.end())
748                 y->second++;
749         else
750                 global_clones[user->GetIPString()] = 1;
751 }
752
753 int InspIRCd::GetTimeDelta()
754 {
755         return time_delta;
756 }
757
758 void InspIRCd::SetSignal(int signal)
759 {
760         *mysig = signal;
761 }