]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspircd.cpp
Whoooooooooooooooooooops. Forgot to initialize a varaible, so wether insp starts...
[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 "configreader.h"
16 #include <signal.h>
17 #include <dirent.h>
18 #include <exception>
19 #include <fstream>
20 #include <unistd.h>
21 #include "modules.h"
22 #include "mode.h"
23 #include "xline.h"
24 #include "socketengine.h"
25 #include "inspircd_se_config.h"
26 #include "socket.h"
27 #include "typedefs.h"
28 #include "command_parse.h"
29 #include "exitcodes.h"
30 #include <dlfcn.h>
31 #include <getopt.h>
32
33
34 using irc::sockets::NonBlocking;
35 using irc::sockets::Blocking;
36 using irc::sockets::insp_ntoa;
37 using irc::sockets::insp_inaddr;
38 using irc::sockets::insp_sockaddr;
39
40 InspIRCd* SI = NULL;
41
42 void InspIRCd::AddServerName(const std::string &servername)
43 {
44         if(find(servernames.begin(), servernames.end(), servername) == servernames.end())
45                 servernames.push_back(servername); /* Wasn't already there. */
46 }
47
48 const char* InspIRCd::FindServerNamePtr(const std::string &servername)
49 {
50         servernamelist::iterator iter = find(servernames.begin(), servernames.end(), servername);
51
52         if(iter == servernames.end())
53         {
54                 AddServerName(servername);
55                 iter = --servernames.end();
56         }
57
58         return iter->c_str();
59 }
60
61 bool InspIRCd::FindServerName(const std::string &servername)
62 {
63         return (find(servernames.begin(), servernames.end(), servername) != servernames.end());
64 }
65
66 void InspIRCd::Exit(int status)
67 {
68         if (SI)
69         {
70                 SI->SendError("Exiting with status " + ConvToStr(status) + " (" + std::string(ExitCodes[status]) + ")");
71                 SI->Cleanup();
72         }
73         exit (status);
74 }
75
76 void InspIRCd::Cleanup()
77 {
78         std::vector<std::string> mymodnames;
79         int MyModCount = this->GetModuleCount();
80
81         for (unsigned int i = 0; i < stats->BoundPortCount; i++)
82         {
83                 /* This calls the constructor and closes the listening socket */
84                 delete Config->openSockfd[i];
85                 Config->openSockfd[i] = NULL;
86         }
87         stats->BoundPortCount = 0;
88
89         /* Close all client sockets, or the new process inherits them */
90         for (std::vector<userrec*>::const_iterator i = this->local_users.begin(); i != this->local_users.end(); i++)
91         {
92                 (*i)->SetWriteError("Server shutdown");
93                 (*i)->CloseSocket();
94         }
95
96         /* We do this more than once, so that any service providers get a
97          * chance to be unhooked by the modules using them, but then get
98          * a chance to be removed themsleves.
99          */
100         for (int tries = 0; tries < 3; tries++)
101         {
102                 MyModCount = this->GetModuleCount();
103                 mymodnames.clear();
104
105                 /* Unload all modules, so they get a chance to clean up their listeners */
106                 for (int j = 0; j <= MyModCount; j++)
107                         mymodnames.push_back(Config->module_names[j]);
108
109                 for (int k = 0; k <= MyModCount; k++)
110                         this->UnloadModule(mymodnames[k].c_str());
111         }
112
113         /* Close logging */
114         this->Logger->Close();
115 }
116
117 void InspIRCd::Restart(const std::string &reason)
118 {
119         /* SendError flushes each client's queue,
120          * regardless of writeability state
121          */
122         this->SendError(reason);
123
124         this->Cleanup();
125
126         /* Figure out our filename (if theyve renamed it, we're boned) */
127         std::string me = Config->MyDir + "/inspircd";
128
129         if (execv(me.c_str(), Config->argv) == -1)
130         {
131                 /* Will raise a SIGABRT if not trapped */
132                 throw CoreException(std::string("Failed to execv()! error: ") + strerror(errno));
133         }
134 }
135
136 void InspIRCd::Start()
137 {
138         printf("\033[1;32mInspire Internet Relay Chat Server, compiled %s at %s\n",__DATE__,__TIME__);
139         printf("(C) InspIRCd Development Team.\033[0m\n\n");
140         printf("Developers:\t\t\033[1;32mBrain, FrostyCoolSlug, w00t, Om, Special, pippijn, peavey\033[0m\n");
141         printf("Others:\t\t\t\033[1;32mSee /INFO Output\033[0m\n");
142 }
143
144 void InspIRCd::Rehash(int status)
145 {
146         SI->WriteOpers("*** Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(SI->ConfigFileName));
147         SI->CloseLog();
148         SI->OpenLog(SI->Config->argv, SI->Config->argc);
149         SI->RehashUsersAndChans();
150         FOREACH_MOD_I(SI, I_OnGarbageCollect, OnGarbageCollect());
151         SI->Config->Read(false,NULL);
152         SI->ResetMaxBans();
153         SI->Res->Rehash();
154         SI->BuildISupport();
155         FOREACH_MOD_I(SI,I_OnRehash,OnRehash(NULL,""));
156 }
157
158 void InspIRCd::ResetMaxBans()
159 {
160         for (chan_hash::const_iterator i = chanlist->begin(); i != chanlist->end(); i++)
161                 i->second->ResetMaxBans();
162 }
163
164
165 /** Because hash_map doesnt free its buckets when we delete items (this is a 'feature')
166  * we must occasionally rehash the hash (yes really).
167  * We do this by copying the entries from the old hash to a new hash, causing all
168  * empty buckets to be weeded out of the hash. We dont do this on a timer, as its
169  * very expensive, so instead we do it when the user types /REHASH and expects a
170  * short delay anyway.
171  */
172 void InspIRCd::RehashUsersAndChans()
173 {
174         user_hash* old_users = this->clientlist;
175         chan_hash* old_chans = this->chanlist;
176
177         this->clientlist = new user_hash();
178         this->chanlist = new chan_hash();
179
180         for (user_hash::const_iterator n = old_users->begin(); n != old_users->end(); n++)
181                 this->clientlist->insert(*n);
182
183         delete old_users;
184
185         for (chan_hash::const_iterator n = old_chans->begin(); n != old_chans->end(); n++)
186                 this->chanlist->insert(*n);
187
188         delete old_chans;
189 }
190
191 void InspIRCd::CloseLog()
192 {
193         this->Logger->Close();
194 }
195
196 void InspIRCd::SetSignals()
197 {
198         signal(SIGALRM, SIG_IGN);
199         signal(SIGHUP, InspIRCd::Rehash);
200         signal(SIGPIPE, SIG_IGN);
201         signal(SIGTERM, InspIRCd::Exit);
202         signal(SIGCHLD, SIG_IGN);
203 }
204
205 void InspIRCd::QuickExit(int status)
206 {
207         exit(0);
208 }
209
210 bool InspIRCd::DaemonSeed()
211 {
212         signal(SIGTERM, InspIRCd::QuickExit);
213
214         int childpid;
215         if ((childpid = fork ()) < 0)
216                 return false;
217         else if (childpid > 0)
218         {
219                 /* We wait here for the child process to kill us,
220                  * so that the shell prompt doesnt come back over
221                  * the output.
222                  * Sending a kill with a signal of 0 just checks
223                  * if the child pid is still around. If theyre not,
224                  * they threw an error and we should give up.
225                  */
226                 while (kill(childpid, 0) != -1)
227                         sleep(1);
228                 exit(0);
229         }
230         setsid ();
231         umask (007);
232         printf("InspIRCd Process ID: \033[1;32m%lu\033[0m\n",(unsigned long)getpid());
233
234         signal(SIGTERM, InspIRCd::Exit);
235
236         rlimit rl;
237         if (getrlimit(RLIMIT_CORE, &rl) == -1)
238         {
239                 this->Log(DEFAULT,"Failed to getrlimit()!");
240                 return false;
241         }
242         else
243         {
244                 rl.rlim_cur = rl.rlim_max;
245                 if (setrlimit(RLIMIT_CORE, &rl) == -1)
246                         this->Log(DEFAULT,"setrlimit() failed, cannot increase coredump size.");
247         }
248
249         return true;
250 }
251
252 void InspIRCd::WritePID(const std::string &filename)
253 {
254         std::string fname = (filename.empty() ? "inspircd.pid" : filename);
255         if (*(fname.begin()) != '/')
256         {
257                 std::string::size_type pos;
258                 std::string confpath = this->ConfigFileName;
259                 if ((pos = confpath.rfind("/")) != std::string::npos)
260                 {
261                         /* Leaves us with just the path */
262                         fname = confpath.substr(0, pos) + std::string("/") + fname;
263                 }
264         }
265         std::ofstream outfile(fname.c_str());
266         if (outfile.is_open())
267         {
268                 outfile << getpid();
269                 outfile.close();
270         }
271         else
272         {
273                 printf("Failed to write PID-file '%s', exiting.\n",fname.c_str());
274                 this->Log(DEFAULT,"Failed to write PID-file '%s', exiting.",fname.c_str());
275                 Exit(EXIT_STATUS_PID);
276         }
277 }
278
279 std::string InspIRCd::GetRevision()
280 {
281         return REVISION;
282 }
283
284 InspIRCd::InspIRCd(int argc, char** argv)
285         : ModCount(-1), duration_m(60), duration_h(60*60), duration_d(60*60*24), duration_w(60*60*24*7), duration_y(60*60*24*365), GlobalCulls(this)
286 {
287         int found_ports = 0;
288         FailedPortList pl;
289         int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_restart = 0, do_root = 0;    /* flag variables */
290         char c = 0;
291
292         modules.resize(255);
293         factory.resize(255);
294
295         this->unregistered_count = 0;
296
297         this->clientlist = new user_hash();
298         this->chanlist = new chan_hash();
299
300         this->Config = new ServerConfig(this);
301
302         this->Config->argv = argv;
303         this->Config->argc = argc;
304
305         this->Config->opertypes.clear();
306         this->Config->operclass.clear();
307         this->SNO = new SnomaskManager(this);
308         this->TIME = this->OLDTIME = this->startup_time = time(NULL);
309         this->time_delta = 0;
310         this->next_call = this->TIME + 3;
311         srand(this->TIME);
312
313         *this->LogFileName = 0;
314         strlcpy(this->ConfigFileName, CONFIG_FILE, MAXBUF);
315
316         struct option longopts[] =
317         {
318                 { "nofork",     no_argument,            &do_nofork,     1       },
319                 { "logfile",    required_argument,      NULL,           'f'     },
320                 { "config",     required_argument,      NULL,           'c'     },
321                 { "debug",      no_argument,            &do_debug,      1       },
322                 { "nolog",      no_argument,            &do_nolog,      1       },
323                 { "restart",    no_argument,            &do_restart,    1       },
324                 { "runasroot",  no_argument,            &do_root,       1       },
325                 { "version",    no_argument,            &do_version,    1       },
326                 { 0, 0, 0, 0 }
327         };
328
329         while ((c = getopt_long_only(argc, argv, ":f:", longopts, NULL)) != -1)
330         {
331                 switch (c)
332                 {
333                         case 'f':
334                                 /* Log filename was set */
335                                 strlcpy(LogFileName, optarg, MAXBUF);
336                                 printf("LOG: Setting logfile to %s\n", LogFileName);
337                         break;
338                         case 'c':
339                                 /* Config filename was set */
340                                 strlcpy(ConfigFileName, optarg, MAXBUF);
341                                 printf("CONFIG: Setting config file to %s\n", ConfigFileName);
342                         break;
343                         case 0:
344                                 /* getopt_long_only() set an int variable, just keep going */
345                         break;
346                         default:
347                                 /* Unknown parameter! DANGER, INTRUDER.... err.... yeah. */
348                                 printf("Usage: %s [--nofork] [--nolog] [--debug] [--logfile <filename>] [--runasroot] [--version] [--config <config>]\n", argv[0]);
349                                 Exit(EXIT_STATUS_ARGV);
350                         break;
351                 }
352         }
353
354         if (do_version)
355         {
356                 printf("\n%s r%s\n", VERSION, REVISION);
357                 Exit(EXIT_STATUS_NOERROR);
358         }
359
360         if (!ServerConfig::FileExists(this->ConfigFileName))
361         {
362                 printf("ERROR: Cannot open config file: %s\nExiting...\n", this->ConfigFileName);
363                 this->Log(DEFAULT,"Unable to open config file %s", this->ConfigFileName);
364                 Exit(EXIT_STATUS_CONFIG);
365         }
366
367         this->Start();
368
369         /* Set the finished argument values */
370         Config->nofork = do_nofork;
371         Config->forcedebug = do_debug;
372         Config->writelog = !do_nolog;
373
374         strlcpy(Config->MyExecutable,argv[0],MAXBUF);
375
376         this->OpenLog(argv, argc);
377         this->stats = new serverstats();
378         this->Timers = new TimerManager(this);
379         this->Parser = new CommandParser(this);
380         this->XLines = new XLineManager(this);
381         Config->ClearStack();
382         Config->Read(true, NULL);
383
384         if (!do_root)
385                 this->CheckRoot();
386         else
387         {
388                 printf("* WARNING * WARNING * WARNING * WARNING * WARNING * \n\n");
389                 printf("YOU ARE RUNNING INSPIRCD AS ROOT. THIS IS UNSUPPORTED\n");
390                 printf("AND IF YOU ARE HACKED, CRACKED, SPINDLED OR MUTILATED\n");
391                 printf("OR ANYTHING ELSE UNEXPECTED HAPPENS TO YOU OR YOUR\n");
392                 printf("SERVER, THEN IT IS YOUR OWN FAULT. IF YOU DID NOT MEAN\n");
393                 printf("TO START INSPIRCD AS ROOT, HIT CTRL+C NOW AND RESTART\n");
394                 printf("THE PROGRAM AS A NORMAL USER. YOU HAVE BEEN WARNED!\n");
395                 printf("\nInspIRCd starting in 20 seconds, ctrl+c to abort...\n");
396                 sleep(20);
397         }
398
399         this->Modes = new ModeParser(this);
400         this->AddServerName(Config->ServerName);
401         CheckDie();
402         InitializeDisabledCommands(Config->DisabledCommands, this);
403         stats->BoundPortCount = BindPorts(true, found_ports, pl);
404
405         for(int t = 0; t < 255; t++)
406                 Config->global_implementation[t] = 0;
407
408         memset(&Config->implement_lists,0,sizeof(Config->implement_lists));
409
410         printf("\n");
411         this->SetSignals();
412
413         if (!Config->nofork)
414         {
415                 if (!this->DaemonSeed())
416                 {
417                         printf("ERROR: could not go into daemon mode. Shutting down.\n");
418                         Log(DEFAULT,"ERROR: could not go into daemon mode. Shutting down.");
419                         Exit(EXIT_STATUS_FORK);
420                 }
421         }
422
423         /* Because of limitations in kqueue on freebsd, we must fork BEFORE we
424          * initialize the socket engine.
425          */
426         SocketEngineFactory* SEF = new SocketEngineFactory();
427         SE = SEF->Create(this);
428         delete SEF;
429
430         this->Res = new DNS(this);
431
432         this->LoadAllModules();
433         /* Just in case no modules were loaded - fix for bug #101 */
434         this->BuildISupport();
435
436         if ((stats->BoundPortCount == 0) && (found_ports > 0))
437         {
438                 printf("\nERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
439                 Log(DEFAULT,"ERROR: I couldn't bind any ports! Are you sure you didn't start InspIRCd twice?");
440                 Exit(EXIT_STATUS_BIND);
441         }
442
443         if (stats->BoundPortCount != (unsigned int)found_ports)
444         {
445                 printf("\nWARNING: Not all your client ports could be bound --\nstarting anyway with %ld of %d client ports bound.\n\n", stats->BoundPortCount, found_ports);
446                 printf("The following port%s failed to bind:\n", found_ports - stats->BoundPortCount != 1 ? "s" : "");
447                 int j = 1;
448                 for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++)
449                 {
450                         printf("%d.\tIP: %s\tPort: %lu\n", j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second);
451                 }
452         }
453
454         /* Add the listening sockets used for client inbound connections
455          * to the socket engine
456          */
457         for (unsigned long count = 0; count < stats->BoundPortCount; count++)
458         {
459                 if (!SE->AddFd(Config->openSockfd[count]))
460                 {
461                         printf("\nEH? Could not add listener to socketengine. You screwed up, aborting.\n");
462                         Log(DEFAULT,"EH? Could not add listener to socketengine. You screwed up, aborting.");
463                         Exit(EXIT_STATUS_INTERNAL);
464                 }
465         }
466
467         if (!Config->nofork && !do_restart)
468         {
469                 if (kill(getppid(), SIGTERM) == -1)
470                 {
471                         printf("Error killing parent process: %s\n",strerror(errno));
472                         Log(DEFAULT,"Error killing parent process: %s",strerror(errno));
473                 }
474
475                 fclose(stdin);
476                 fclose(stderr);
477                 fclose(stdout);
478         }
479
480         printf("\nInspIRCd is now running!\n");
481         Log(DEFAULT,"Startup complete.");
482
483         this->WritePID(Config->PID);
484 }
485
486 std::string InspIRCd::GetVersionString()
487 {
488         char versiondata[MAXBUF];
489         char dnsengine[] = "singlethread-object";
490
491         if (*Config->CustomVersion)
492         {
493                 snprintf(versiondata,MAXBUF,"%s %s :%s",VERSION,Config->ServerName,Config->CustomVersion);
494         }
495         else
496         {
497                 snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%s,%s,%s]",VERSION,Config->ServerName,SYSTEM,REVISION,SE->GetName().c_str(),dnsengine);
498         }
499         return versiondata;
500 }
501
502 char* InspIRCd::ModuleError()
503 {
504         return MODERR;
505 }
506
507 void InspIRCd::EraseFactory(int j)
508 {
509         int v = 0;
510         for (std::vector<ircd_module*>::iterator t = factory.begin(); t != factory.end(); t++)
511         {
512                 if (v == j)
513                 {
514                         delete *t;
515                         factory.erase(t);
516                         factory.push_back(NULL);
517                         return;
518                 }
519                 v++;
520         }
521 }
522
523 void InspIRCd::EraseModule(int j)
524 {
525         int v1 = 0;
526         for (ModuleList::iterator m = modules.begin(); m!= modules.end(); m++)
527         {
528                 if (v1 == j)
529                 {
530                         DELETE(*m);
531                         modules.erase(m);
532                         modules.push_back(NULL);
533                         break;
534                 }
535                 v1++;
536         }
537         int v2 = 0;
538         for (std::vector<std::string>::iterator v = Config->module_names.begin(); v != Config->module_names.end(); v++)
539         {
540                 if (v2 == j)
541                 {
542                        Config->module_names.erase(v);
543                        break;
544                 }
545                 v2++;
546         }
547
548 }
549
550 void InspIRCd::MoveTo(std::string modulename,int slot)
551 {
552         unsigned int v2 = 256;
553         for (unsigned int v = 0; v < Config->module_names.size(); v++)
554         {
555                 if (Config->module_names[v] == modulename)
556                 {
557                         // found an instance, swap it with the item at the end
558                         v2 = v;
559                         break;
560                 }
561         }
562         if ((v2 != (unsigned int)slot) && (v2 < 256))
563         {
564                 // Swap the module names over
565                 Config->module_names[v2] = Config->module_names[slot];
566                 Config->module_names[slot] = modulename;
567                 // now swap the module factories
568                 ircd_module* temp = factory[v2];
569                 factory[v2] = factory[slot];
570                 factory[slot] = temp;
571                 // now swap the module objects
572                 Module* temp_module = modules[v2];
573                 modules[v2] = modules[slot];
574                 modules[slot] = temp_module;
575                 // now swap the implement lists (we dont
576                 // need to swap the global or recount it)
577                 for (int n = 0; n < 255; n++)
578                 {
579                         char x = Config->implement_lists[v2][n];
580                         Config->implement_lists[v2][n] = Config->implement_lists[slot][n];
581                         Config->implement_lists[slot][n] = x;
582                 }
583         }
584 }
585
586 void InspIRCd::MoveAfter(std::string modulename, std::string after)
587 {
588         for (unsigned int v = 0; v < Config->module_names.size(); v++)
589         {
590                 if (Config->module_names[v] == after)
591                 {
592                         MoveTo(modulename, v);
593                         return;
594                 }
595         }
596 }
597
598 void InspIRCd::MoveBefore(std::string modulename, std::string before)
599 {
600         for (unsigned int v = 0; v < Config->module_names.size(); v++)
601         {
602                 if (Config->module_names[v] == before)
603                 {
604                         if (v > 0)
605                         {
606                                 MoveTo(modulename, v-1);
607                         }
608                         else
609                         {
610                                 MoveTo(modulename, v);
611                         }
612                         return;
613                 }
614         }
615 }
616
617 void InspIRCd::MoveToFirst(std::string modulename)
618 {
619         MoveTo(modulename,0);
620 }
621
622 void InspIRCd::MoveToLast(std::string modulename)
623 {
624         MoveTo(modulename,this->GetModuleCount());
625 }
626
627 void InspIRCd::BuildISupport()
628 {
629         // the neatest way to construct the initial 005 numeric, considering the number of configure constants to go in it...
630         std::stringstream v;
631         v << "WALLCHOPS WALLVOICES MODES=" << MAXMODES-1 << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << NICKMAX-1;
632         v << " CASEMAPPING=rfc1459 STATUSMSG=@%+ CHARSET=ascii TOPICLEN=" << MAXTOPIC << " KICKLEN=" << MAXKICK << " MAXTARGETS=" << Config->MaxTargets << " AWAYLEN=";
633         v << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32";
634         Config->data005 = v.str();
635         FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005));
636         Config->Update005();
637 }
638
639 bool InspIRCd::UnloadModule(const char* filename)
640 {
641         std::string filename_str = filename;
642         for (unsigned int j = 0; j != Config->module_names.size(); j++)
643         {
644                 if (Config->module_names[j] == filename_str)
645                 {
646                         if (modules[j]->GetVersion().Flags & VF_STATIC)
647                         {
648                                 this->Log(DEFAULT,"Failed to unload STATIC module %s",filename);
649                                 snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
650                                 return false;
651                         }
652                         std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modules[j]);
653                         if (intercount.first > 0)
654                         {
655                                 this->Log(DEFAULT,"Failed to unload module %s, being used by %d other(s) via interface '%s'",filename, intercount.first, intercount.second.c_str());
656                                 snprintf(MODERR,MAXBUF,"Module not unloadable (Still in use by %d other module%s which %s using its interface '%s') -- unload dependent modules first!",
657                                                 intercount.first,
658                                                 intercount.first > 1 ? "s" : "",
659                                                 intercount.first > 1 ? "are" : "is",
660                                                 intercount.second.c_str());
661                                 return false;
662                         }
663                         /* Give the module a chance to tidy out all its metadata */
664                         for (chan_hash::iterator c = this->chanlist->begin(); c != this->chanlist->end(); c++)
665                         {
666                                 modules[j]->OnCleanup(TYPE_CHANNEL,c->second);
667                         }
668                         for (user_hash::iterator u = this->clientlist->begin(); u != this->clientlist->end(); u++)
669                         {
670                                 modules[j]->OnCleanup(TYPE_USER,u->second);
671                         }
672
673                         /* Tidy up any dangling resolvers */
674                         this->Res->CleanResolvers(modules[j]);
675
676                         FOREACH_MOD_I(this,I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j]));
677
678                         for(int t = 0; t < 255; t++)
679                         {
680                                 Config->global_implementation[t] -= Config->implement_lists[j][t];
681                         }
682
683                         /* We have to renumber implement_lists after unload because the module numbers change!
684                          */
685                         for(int j2 = j; j2 < 254; j2++)
686                         {
687                                 for(int t = 0; t < 255; t++)
688                                 {
689                                         Config->implement_lists[j2][t] = Config->implement_lists[j2+1][t];
690                                 }
691                         }
692
693                         // found the module
694                         Parser->RemoveCommands(filename);
695                         this->EraseModule(j);
696                         this->EraseFactory(j);
697                         this->Log(DEFAULT,"Module %s unloaded",filename);
698                         this->ModCount--;
699                         BuildISupport();
700                         return true;
701                 }
702         }
703         this->Log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
704         snprintf(MODERR,MAXBUF,"Module not loaded");
705         return false;
706 }
707
708 bool InspIRCd::LoadModule(const char* filename)
709 {
710         /* Do we have a glob pattern in the filename?
711          * The user wants to load multiple modules which
712          * match the pattern.
713          */
714         if (strchr(filename,'*') || (strchr(filename,'?')))
715         {
716                 int n_match = 0;
717                 DIR* library = opendir(Config->ModPath);
718                 if (library)
719                 {
720                         /* Try and locate and load all modules matching the pattern */
721                         dirent* entry = NULL;
722                         while ((entry = readdir(library)))
723                         {
724                                 if (this->MatchText(entry->d_name, filename))
725                                 {
726                                         if (!this->LoadModule(entry->d_name))
727                                                 n_match++;
728                                 }
729                         }
730                         closedir(library);
731                 }
732                 /* Loadmodule will now return false if any one of the modules failed
733                  * to load (but wont abort when it encounters a bad one) and when 1 or
734                  * more modules were actually loaded.
735                  */
736                 return (n_match > 0);
737         }
738
739         char modfile[MAXBUF];
740         snprintf(modfile,MAXBUF,"%s/%s",Config->ModPath,filename);
741         std::string filename_str = filename;
742
743         if (!ServerConfig::DirValid(modfile))
744         {
745                 this->Log(DEFAULT,"Module %s is not within the modules directory.",modfile);
746                 snprintf(MODERR,MAXBUF,"Module %s is not within the modules directory.",modfile);
747                 return false;
748         }
749         if (ServerConfig::FileExists(modfile))
750         {
751
752                 for (unsigned int j = 0; j < Config->module_names.size(); j++)
753                 {
754                         if (Config->module_names[j] == filename_str)
755                         {
756                                 this->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
757                                 snprintf(MODERR,MAXBUF,"Module already loaded");
758                                 return false;
759                         }
760                 }
761                 try
762                 {
763                         ircd_module* a = new ircd_module(this, modfile);
764                         factory[this->ModCount+1] = a;
765                         if (factory[this->ModCount+1]->LastError())
766                         {
767                                 this->Log(DEFAULT,"Unable to load %s: %s",modfile,factory[this->ModCount+1]->LastError());
768                                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s",factory[this->ModCount+1]->LastError());
769                                 return false;
770                         }
771                         if ((long)factory[this->ModCount+1]->factory != -1)
772                         {
773                                 Module* m = factory[this->ModCount+1]->factory->CreateModule(this);
774
775                                 Version v = m->GetVersion();
776
777                                 if (v.API != API_VERSION)
778                                 {
779                                         delete m;
780                                         delete a;
781                                         this->Log(DEFAULT,"Unable to load %s: Incorrect module API version: %d (our version: %d)",modfile,v.API,API_VERSION);
782                                         snprintf(MODERR,MAXBUF,"Loader/Linker error: Incorrect module API version: %d (our version: %d)",v.API,API_VERSION);
783                                         return false;
784                                 }
785                                 else
786                                 {
787                                         this->Log(DEFAULT,"New module introduced: %s (API version %d, Module version %d.%d.%d.%d)%s", filename, v.API, v.Major, v.Minor, v.Revision, v.Build, (!(v.Flags & VF_VENDOR) ? " [3rd Party]" : " [Vendor]"));
788                                 }
789
790                                 modules[this->ModCount+1] = m;
791                                 /* save the module and the module's classfactory, if
792                                  * this isnt done, random crashes can occur :/ */
793                                 Config->module_names.push_back(filename);
794
795                                 char* x = &Config->implement_lists[this->ModCount+1][0];
796                                 for(int t = 0; t < 255; t++)
797                                         x[t] = 0;
798
799                                 modules[this->ModCount+1]->Implements(x);
800
801                                 for(int t = 0; t < 255; t++)
802                                         Config->global_implementation[t] += Config->implement_lists[this->ModCount+1][t];
803                         }
804                         else
805                         {
806                                 this->Log(DEFAULT,"Unable to load %s",modfile);
807                                 snprintf(MODERR,MAXBUF,"Factory function failed: Probably missing init_module() entrypoint.");
808                                 return false;
809                         }
810                 }
811                 catch (CoreException& modexcept)
812                 {
813                         this->Log(DEFAULT,"Unable to load %s: %s",modfile,modexcept.GetReason());
814                         snprintf(MODERR,MAXBUF,"Factory function of %s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
815                         return false;
816                 }
817         }
818         else
819         {
820                 this->Log(DEFAULT,"InspIRCd: startup: Module Not Found %s",modfile);
821                 snprintf(MODERR,MAXBUF,"Module file could not be found");
822                 return false;
823         }
824         this->ModCount++;
825         FOREACH_MOD_I(this,I_OnLoadModule,OnLoadModule(modules[this->ModCount],filename_str));
826         // now work out which modules, if any, want to move to the back of the queue,
827         // and if they do, move them there.
828         std::vector<std::string> put_to_back;
829         std::vector<std::string> put_to_front;
830         std::map<std::string,std::string> put_before;
831         std::map<std::string,std::string> put_after;
832         for (unsigned int j = 0; j < Config->module_names.size(); j++)
833         {
834                 if (modules[j]->Prioritize() == PRIORITY_LAST)
835                         put_to_back.push_back(Config->module_names[j]);
836                 else if (modules[j]->Prioritize() == PRIORITY_FIRST)
837                         put_to_front.push_back(Config->module_names[j]);
838                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_BEFORE)
839                         put_before[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
840                 else if ((modules[j]->Prioritize() & 0xFF) == PRIORITY_AFTER)
841                         put_after[Config->module_names[j]] = Config->module_names[modules[j]->Prioritize() >> 8];
842         }
843         for (unsigned int j = 0; j < put_to_back.size(); j++)
844                 MoveToLast(put_to_back[j]);
845         for (unsigned int j = 0; j < put_to_front.size(); j++)
846                 MoveToFirst(put_to_front[j]);
847         for (std::map<std::string,std::string>::iterator j = put_before.begin(); j != put_before.end(); j++)
848                 MoveBefore(j->first,j->second);
849         for (std::map<std::string,std::string>::iterator j = put_after.begin(); j != put_after.end(); j++)
850                 MoveAfter(j->first,j->second);
851         BuildISupport();
852         return true;
853 }
854
855 void InspIRCd::DoOneIteration(bool process_module_sockets)
856 {
857         static rusage ru;
858
859         /* time() seems to be a pretty expensive syscall, so avoid calling it too much.
860          * Once per loop iteration is pleanty.
861          */
862         OLDTIME = TIME;
863         TIME = time(NULL);
864
865         /* Run background module timers every few seconds
866          * (the docs say modules shouldnt rely on accurate
867          * timing using this event, so we dont have to
868          * time this exactly).
869          */
870         if (TIME != OLDTIME)
871         {
872                 if (TIME < OLDTIME)
873                         WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
874                 if ((TIME % 3600) == 0)
875                 {
876                         this->RehashUsersAndChans();
877                         FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect());
878                 }
879                 Timers->TickTimers(TIME);
880                 this->DoBackgroundUserStuff(TIME);
881
882                 if ((TIME % 5) == 0)
883                 {
884                         XLines->expire_lines();
885                         FOREACH_MOD_I(this,I_OnBackgroundTimer,OnBackgroundTimer(TIME));
886                         Timers->TickMissedTimers(TIME);
887                 }
888
889                 if (!getrusage(0, &ru))
890                 {
891                         gettimeofday(&this->stats->LastSampled, NULL);
892                         this->stats->LastCPU = ru.ru_utime;
893                 }
894         }
895
896         /* Call the socket engine to wait on the active
897          * file descriptors. The socket engine has everything's
898          * descriptors in its list... dns, modules, users,
899          * servers... so its nice and easy, just one call.
900          * This will cause any read or write events to be
901          * dispatched to their handlers.
902          */
903         SE->DispatchEvents();
904
905         /* if any users was quit, take them out */
906         GlobalCulls.Apply();
907
908 }
909
910 bool InspIRCd::IsIdent(const char* n)
911 {
912         if (!n || !*n)
913                 return false;
914
915         for (char* i = (char*)n; *i; i++)
916         {
917                 if ((*i >= 'A') && (*i <= '}'))
918                 {
919                         continue;
920                 }
921                 if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
922                 {
923                         continue;
924                 }
925                 return false;
926         }
927         return true;
928 }
929
930
931 int InspIRCd::Run()
932 {
933         while (true)
934         {
935                 DoOneIteration(true);
936         }
937         /* This is never reached -- we hope! */
938         return 0;
939 }
940
941 /**********************************************************************************/
942
943 /**
944  * An ircd in four lines! bwahahaha. ahahahahaha. ahahah *cough*.
945  */
946
947 int main(int argc, char** argv)
948 {
949         SI = new InspIRCd(argc, argv);
950         SI->Run();
951         delete SI;
952         return 0;
953 }
954
955 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
956  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
957  * registration timeout maximum seconds)
958  */
959 bool InspIRCd::AllModulesReportReady(userrec* user)
960 {
961         if (!Config->global_implementation[I_OnCheckReady])
962                 return true;
963
964         for (int i = 0; i <= this->GetModuleCount(); i++)
965         {
966                 if (Config->implement_lists[i][I_OnCheckReady])
967                 {
968                         int res = modules[i]->OnCheckReady(user);
969                         if (!res)
970                                 return false;
971                 }
972         }
973         return true;
974 }
975
976 int InspIRCd::GetModuleCount()
977 {
978         return this->ModCount;
979 }
980
981 time_t InspIRCd::Time(bool delta)
982 {
983         if (delta)
984                 return TIME + time_delta;
985         return TIME;
986 }
987
988 int InspIRCd::SetTimeDelta(int delta)
989 {
990         int old = time_delta;
991         time_delta = delta;
992         this->Log(DEBUG, "Time delta set to %d (was %d)", time_delta, old);
993         return old;
994 }
995
996 void InspIRCd::AddLocalClone(userrec* user)
997 {
998         clonemap::iterator x = local_clones.find(user->GetIPString());
999         if (x != local_clones.end())
1000                 x->second++;
1001         else
1002                 local_clones[user->GetIPString()] = 1;
1003 }
1004
1005 void InspIRCd::AddGlobalClone(userrec* user)
1006 {
1007         clonemap::iterator y = global_clones.find(user->GetIPString());
1008         if (y != global_clones.end())
1009                 y->second++;
1010         else
1011                 global_clones[user->GetIPString()] = 1;
1012 }
1013
1014 int InspIRCd::GetTimeDelta()
1015 {
1016         return time_delta;
1017 }
1018
1019 bool FileLogger::Readable()
1020 {
1021         return false;
1022 }
1023
1024 void FileLogger::HandleEvent(EventType et, int errornum)
1025 {
1026         this->WriteLogLine("");
1027         if (log)
1028                 ServerInstance->SE->DelFd(this);
1029 }
1030
1031 void FileLogger::WriteLogLine(const std::string &line)
1032 {
1033         if (line.length())
1034                 buffer.append(line);
1035
1036         if (log)
1037         {
1038                 int written = fprintf(log,"%s",buffer.c_str());
1039                 if ((written >= 0) && (written < (int)buffer.length()))
1040                 {
1041                         buffer.erase(0, buffer.length());
1042                         ServerInstance->SE->AddFd(this);
1043                 }
1044                 else if (written == -1)
1045                 {
1046                         if (errno == EAGAIN)
1047                                 ServerInstance->SE->AddFd(this);
1048                 }
1049                 else
1050                 {
1051                         /* Wrote the whole buffer, and no need for write callback */
1052                         buffer = "";
1053                 }
1054
1055                 if (writeops++ % 20)
1056                 {
1057                         fflush(log);
1058                 }
1059         }
1060 }
1061
1062 void FileLogger::Close()
1063 {
1064         if (log)
1065         {
1066                 int flags = fcntl(fileno(log), F_GETFL, 0);
1067                 fcntl(fileno(log), F_SETFL, flags ^ O_NONBLOCK);
1068                 if (buffer.size())
1069                         fprintf(log,"%s",buffer.c_str());
1070
1071                 ServerInstance->SE->DelFd(this);
1072
1073                 fflush(log);
1074                 fclose(log);
1075         }
1076
1077         buffer = "";
1078 }
1079
1080 FileLogger::FileLogger(InspIRCd* Instance, FILE* logfile) : ServerInstance(Instance), log(logfile), writeops(0)
1081 {
1082         if (log)
1083         {
1084                 irc::sockets::NonBlocking(fileno(log));
1085                 this->SetFd(fileno(log));
1086                 buffer = "";
1087         }
1088 }
1089
1090 FileLogger::~FileLogger()
1091 {
1092         this->Close();
1093 }
1094