]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
More stuff
[user/henk/code/inspircd.git] / src / modules.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 /* $Core: libIRCDmodules */
15
16 #include "inspircd.h"
17 #include "wildcard.h"
18 #include "xline.h"
19 #include "socket.h"
20 #include "socketengine.h"
21 #include "command_parse.h"
22 #include "dns.h"
23 #include "exitcodes.h"
24
25 #ifndef WIN32
26         #include <dirent.h>
27 #endif
28
29 // version is a simple class for holding a modules version number
30 Version::Version(int major, int minor, int revision, int build, int flags, int api_ver)
31 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags), API(api_ver)
32 {
33 }
34
35 Request::Request(char* anydata, Module* src, Module* dst)
36 : data(anydata), source(src), dest(dst)
37 {
38         /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
39          * by passing them uninitialized pointers (could happen)
40          */
41         id = '\0';
42 }
43
44 Request::Request(Module* src, Module* dst, const char* idstr)
45 : id(idstr), source(src), dest(dst)
46 {
47 }
48
49 char* Request::GetData()
50 {
51         return this->data;
52 }
53
54 const char* Request::GetId()
55 {
56         return this->id;
57 }
58
59 Module* Request::GetSource()
60 {
61         return this->source;
62 }
63
64 Module* Request::GetDest()
65 {
66         return this->dest;
67 }
68
69 char* Request::Send()
70 {
71         if (this->dest)
72         {
73                 return dest->OnRequest(this);
74         }
75         else
76         {
77                 return NULL;
78         }
79 }
80
81 Event::Event(char* anydata, Module* src, const std::string &eventid) : data(anydata), source(src), id(eventid) { }
82
83 char* Event::GetData()
84 {
85         return (char*)this->data;
86 }
87
88 Module* Event::GetSource()
89 {
90         return this->source;
91 }
92
93 char* Event::Send(InspIRCd* ServerInstance)
94 {
95         FOREACH_MOD(I_OnEvent,OnEvent(this));
96         return NULL;
97 }
98
99 std::string Event::GetEventID()
100 {
101         return this->id;
102 }
103
104
105 // These declarations define the behavours of the base class Module (which does nothing at all)
106
107                 Module::Module(InspIRCd* Me) : ServerInstance(Me) { }
108                 Module::~Module() { }
109 void            Module::OnReadConfig(ServerConfig*, ConfigReader*) { }
110 int             Module::OnDownloadFile(const std::string&, std::istringstream*&) { return 0; }
111 void            Module::OnUserConnect(User*) { }
112 void            Module::OnUserQuit(User*, const std::string&, const std::string&) { }
113 void            Module::OnUserDisconnect(User*) { }
114 void            Module::OnUserJoin(User*, Channel*, bool, bool&) { }
115 void            Module::OnPostJoin(User*, Channel*) { }
116 void            Module::OnUserPart(User*, Channel*, const std::string&, bool&) { }
117 void            Module::OnRehash(User*, const std::string&) { }
118 void            Module::OnServerRaw(std::string&, bool, User*) { }
119 int             Module::OnUserPreJoin(User*, Channel*, const char*, std::string&) { return 0; }
120 void            Module::OnMode(User*, void*, int, const std::string&) { }
121 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR,-1); }
122 void            Module::OnOper(User*, const std::string&) { }
123 void            Module::OnPostOper(User*, const std::string&) { }
124 void            Module::OnInfo(User*) { }
125 void            Module::OnWhois(User*, User*) { }
126 int             Module::OnUserPreInvite(User*, User*, Channel*) { return 0; }
127 int             Module::OnUserPreMessage(User*, void*, int, std::string&, char, CUList&) { return 0; }
128 int             Module::OnUserPreNotice(User*, void*, int, std::string&, char, CUList&) { return 0; }
129 int             Module::OnUserPreNick(User*, const std::string&) { return 0; }
130 void            Module::OnUserPostNick(User*, const std::string&) { }
131 int             Module::OnAccessCheck(User*, User*, Channel*, int) { return ACR_DEFAULT; }
132 void            Module::On005Numeric(std::string&) { }
133 int             Module::OnKill(User*, User*, const std::string&) { return 0; }
134 void            Module::OnLoadModule(Module*, const std::string&) { }
135 void            Module::OnUnloadModule(Module*, const std::string&) { }
136 void            Module::OnBackgroundTimer(time_t) { }
137 int             Module::OnPreCommand(const std::string&, const char**, int, User *, bool, const std::string&) { return 0; }
138 void            Module::OnPostCommand(const std::string&, const char**, int, User *, CmdResult, const std::string&) { }
139 bool            Module::OnCheckReady(User*) { return true; }
140 int             Module::OnUserRegister(User*) { return 0; }
141 int             Module::OnUserPreKick(User*, User*, Channel*, const std::string&) { return 0; }
142 void            Module::OnUserKick(User*, User*, Channel*, const std::string&, bool&) { }
143 int             Module::OnCheckInvite(User*, Channel*) { return 0; }
144 int             Module::OnCheckKey(User*, Channel*, const std::string&) { return 0; }
145 int             Module::OnCheckLimit(User*, Channel*) { return 0; }
146 int             Module::OnCheckBan(User*, Channel*) { return 0; }
147 int             Module::OnStats(char, User*, string_list&) { return 0; }
148 int             Module::OnChangeLocalUserHost(User*, const std::string&) { return 0; }
149 int             Module::OnChangeLocalUserGECOS(User*, const std::string&) { return 0; }
150 int             Module::OnLocalTopicChange(User*, Channel*, const std::string&) { return 0; }
151 void            Module::OnEvent(Event*) { return; }
152 char*           Module::OnRequest(Request*) { return NULL; }
153 int             Module::OnOperCompare(const std::string&, const std::string&, int) { return 0; }
154 void            Module::OnGlobalOper(User*) { }
155 void            Module::OnPostConnect(User*) { }
156 int             Module::OnAddBan(User*, Channel*, const std::string &) { return 0; }
157 int             Module::OnDelBan(User*, Channel*, const std::string &) { return 0; }
158 void            Module::OnRawSocketAccept(int, const std::string&, int) { }
159 int             Module::OnRawSocketWrite(int, const char*, int) { return 0; }
160 void            Module::OnRawSocketClose(int) { }
161 void            Module::OnRawSocketConnect(int) { }
162 int             Module::OnRawSocketRead(int, char*, unsigned int, int&) { return 0; }
163 void            Module::OnUserMessage(User*, void*, int, const std::string&, char, const CUList&) { }
164 void            Module::OnUserNotice(User*, void*, int, const std::string&, char, const CUList&) { }
165 void            Module::OnRemoteKill(User*, User*, const std::string&, const std::string&) { }
166 void            Module::OnUserInvite(User*, User*, Channel*) { }
167 void            Module::OnPostLocalTopicChange(User*, Channel*, const std::string&) { }
168 void            Module::OnGetServerDescription(const std::string&, std::string&) { }
169 void            Module::OnSyncUser(User*, Module*, void*) { }
170 void            Module::OnSyncChannel(Channel*, Module*, void*) { }
171 void            Module::ProtoSendMode(void*, int, void*, const std::string&) { }
172 void            Module::OnSyncChannelMetaData(Channel*, Module*, void*, const std::string&, bool) { }
173 void            Module::OnSyncUserMetaData(User*, Module*, void*, const std::string&, bool) { }
174 void            Module::OnSyncOtherMetaData(Module*, void*, bool) { }
175 void            Module::OnDecodeMetaData(int, void*, const std::string&, const std::string&) { }
176 void            Module::ProtoSendMetaData(void*, int, void*, const std::string&, const std::string&) { }
177 void            Module::OnWallops(User*, const std::string&) { }
178 void            Module::OnChangeHost(User*, const std::string&) { }
179 void            Module::OnChangeName(User*, const std::string&) { }
180 void            Module::OnAddLine(User*, XLine*) { }
181 void            Module::OnDelLine(User*, XLine*) { }
182 void            Module::OnCleanup(int, void*) { }
183 void            Module::OnChannelDelete(Channel*) { }
184 void            Module::OnSetAway(User*) { }
185 void            Module::OnCancelAway(User*) { }
186 int             Module::OnUserList(User*, Channel*, CUList*&) { return 0; }
187 int             Module::OnWhoisLine(User*, User*, int&, std::string&) { return 0; }
188 void            Module::OnBuildExemptList(MessageType, Channel*, User*, char, CUList&, const std::string&) { }
189 void            Module::OnGarbageCollect() { }
190 void            Module::OnBufferFlushed(User*) { }
191 void            Module::OnText(User*, void*, int, const std::string&, char, CUList&) { }
192
193
194 ModuleManager::ModuleManager(InspIRCd* Ins) : ModCount(0), Instance(Ins)
195 {
196 }
197
198 ModuleManager::~ModuleManager()
199 {
200 }
201
202 bool ModuleManager::Attach(Implementation i, Module* mod)
203 {
204         if (std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod) != EventHandlers[i].end())
205                 return false;
206
207         EventHandlers[i].push_back(mod);
208         return true;
209 }
210
211 bool ModuleManager::Detach(Implementation i, Module* mod)
212 {
213         EventHandlerIter x = std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod);
214
215         if (x == EventHandlers[i].end())
216                 return false;
217
218         EventHandlers[i].erase(x);
219         return true;
220 }
221
222 void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
223 {
224         for (size_t n = 0; n < sz; ++n)
225                 Attach(i[n], mod);
226 }
227
228 void ModuleManager::DetachAll(Module* mod)
229 {
230         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
231                 Detach((Implementation)n, mod);
232 }
233
234 bool ModuleManager::SetPriority(Module* mod, PriorityState s)
235 {
236         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
237                 SetPriority(mod, (Implementation)n, s);
238
239         return true;
240 }
241
242 bool ModuleManager::SetPriority(Module* mod, Implementation i, PriorityState s, Module** modules, size_t sz)
243 {
244         /** To change the priority of a module, we first find its position in the vector,
245          * then we find the position of the other modules in the vector that this module
246          * wants to be before/after. We pick off either the first or last of these depending
247          * on which they want, and we make sure our module is *at least* before or after
248          * the first or last of this subset, depending again on the type of priority.
249          */
250         size_t swap_pos;
251         size_t source = 0;
252         bool swap = true;
253         bool found = false;
254
255         /* Locate our module. This is O(n) but it only occurs on module load so we're
256          * not too bothered about it
257          */
258         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
259         {
260                 if (EventHandlers[i][x] == mod)
261                 {
262                         source = x;
263                         found = true;
264                         break;
265                 }
266         }
267
268         /* Eh? this module doesnt exist, probably trying to set priority on an event
269          * theyre not attached to.
270          */
271         if (!found)
272                 return false;
273
274         switch (s)
275         {
276                 /* Dummy value */
277                 case PRIO_DONTCARE:
278                         swap = false;
279                 break;
280                 /* Module wants to be first, sod everything else */
281                 case PRIO_FIRST:
282                         swap_pos = 0;
283                 break;
284                 /* Module is submissive and wants to be last... awww. */
285                 case PRIO_LAST:
286                         if (EventHandlers[i].empty())
287                                 swap_pos = 0;
288                         else
289                                 swap_pos = EventHandlers[i].size() - 1;
290                 break;
291                 /* Place this module after a set of other modules */
292                 case PRIO_AFTER:
293                 {
294                         /* Find the latest possible position */
295                         swap_pos = 0;
296                         swap = false;
297                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
298                         {
299                                 for (size_t n = 0; n < sz; ++n)
300                                 {
301                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
302                                         {
303                                                 swap_pos = x;
304                                                 swap = true;
305                                         }
306                                 }
307                         }
308                 }
309                 break;
310                 /* Place this module before a set of other modules */
311                 case PRIO_BEFORE:
312                 {
313                         swap_pos = EventHandlers[i].size() - 1;
314                         swap = false;
315                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
316                         {
317                                 for (size_t n = 0; n < sz; ++n)
318                                 {
319                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x <= swap_pos) && (source >= swap_pos))
320                                         {
321                                                 swap = true;
322                                                 swap_pos = x;
323                                         }
324                                 }
325                         }
326                 }
327                 break;
328         }
329
330         /* Do we need to swap? */
331         if (swap && (swap_pos != source))
332                 std::swap(EventHandlers[i][swap_pos], EventHandlers[i][source]);
333
334         return true;
335 }
336
337 std::string& ModuleManager::LastError()
338 {
339         return LastModuleError;
340 }
341
342 bool ModuleManager::Load(const char* filename)
343 {
344         /* Do we have a glob pattern in the filename?
345          * The user wants to load multiple modules which
346          * match the pattern.
347          */
348         if (strchr(filename,'*') || (strchr(filename,'?')))
349         {
350                 int n_match = 0;
351                 DIR* library = opendir(Instance->Config->ModPath);
352                 if (library)
353                 {
354                         /* Try and locate and load all modules matching the pattern */
355                         dirent* entry = NULL;
356                         while ((entry = readdir(library)))
357                         {
358                                 if (Instance->MatchText(entry->d_name, filename))
359                                 {
360                                         if (!this->Load(entry->d_name))
361                                                 n_match++;
362                                 }
363                         }
364                         closedir(library);
365                 }
366                 /* Loadmodule will now return false if any one of the modules failed
367                  * to load (but wont abort when it encounters a bad one) and when 1 or
368                  * more modules were actually loaded.
369                  */
370                 return (n_match > 0);
371         }
372
373         char modfile[MAXBUF];
374         snprintf(modfile,MAXBUF,"%s/%s",Instance->Config->ModPath,filename);
375         std::string filename_str = filename;
376
377         if (!ServerConfig::DirValid(modfile))
378         {
379                 LastModuleError = "Module " + filename_str + " is not within the modules directory.";
380                 Instance->Log(DEFAULT, LastModuleError);
381                 return false;
382         }
383         
384         if (!ServerConfig::FileExists(modfile))
385         {
386                 LastModuleError = "Module file could not be found: " + filename_str;
387                 Instance->Log(DEFAULT, LastModuleError);
388                 return false;
389         }
390         
391         if (Modules.find(filename_str) != Modules.end())
392         {       
393                 LastModuleError = "Module " + filename_str + " is already loaded, cannot load a module twice!";
394                 Instance->Log(DEFAULT, LastModuleError);
395                 return false;
396         }
397                 
398         Module* newmod = NULL;
399         ircd_module* newhandle = NULL;
400
401         try
402         {
403                 /* This will throw a CoreException if there's a problem loading
404                  * the module file or getting a pointer to the init_module symbol.
405                  */
406                 newhandle = new ircd_module(Instance, modfile, "init_module");
407                 newmod = newhandle->CallInit();
408
409                 if (newmod)
410                 {
411                         Version v = newmod->GetVersion();
412
413                         if (v.API != API_VERSION)
414                         {
415                                 DetachAll(newmod);
416                                 delete newmod;
417                                 delete newhandle;
418                                 LastModuleError = "Unable to load " + filename_str + ": Incorrect module API version: " + ConvToStr(v.API) + " (our version: " + ConvToStr(API_VERSION) + ")";
419                                 Instance->Log(DEFAULT, LastModuleError);
420                                 return false;
421                         }
422                         else
423                         {
424                                 Instance->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]"));
425                         }
426
427                         Modules[filename_str] = std::make_pair(newhandle, newmod);
428                 }
429                 else
430                 {
431                         delete newhandle;
432                         LastModuleError = "Unable to load " + filename_str + ": Probably missing init_module() entrypoint, but dlsym() didn't notice a problem";
433                         Instance->Log(DEFAULT, LastModuleError);
434                         return false;
435                 }
436         }
437         /** XXX: Is there anything we can do about this mess? -- Brain */
438         catch (LoadModuleException& modexcept)
439         {
440                 DetachAll(newmod);
441                 if (newmod)
442                         delete newmod;
443                 if (newhandle)
444                         delete newhandle;
445                 LastModuleError = "Unable to load " + filename_str + ": Error when loading: " + modexcept.GetReason();
446                 Instance->Log(DEFAULT, LastModuleError);
447                 return false;
448         }
449         catch (FindSymbolException& modexcept)
450         {
451                 DetachAll(newmod);
452                 if (newmod)
453                         delete newmod;
454                 if (newhandle)
455                         delete newhandle;
456                 LastModuleError = "Unable to load " + filename_str + ": Error finding symbol: " + modexcept.GetReason();
457                 Instance->Log(DEFAULT, LastModuleError);
458                 return false;
459         }
460         catch (CoreException& modexcept)
461         {
462                 DetachAll(newmod);
463                 if (newmod)
464                         delete newmod;
465                 if (newhandle)
466                         delete newhandle;
467                 LastModuleError = "Unable to load " + filename_str + ": " + modexcept.GetReason();
468                 Instance->Log(DEFAULT, LastModuleError);
469                 return false;
470         }
471
472         this->ModCount++;
473         FOREACH_MOD_I(Instance,I_OnLoadModule,OnLoadModule(newmod, filename_str));
474
475         /* We give every module a chance to re-prioritize when we introduce a new one,
476          * not just the one thats loading, as the new module could affect the preference
477          * of others
478          */
479         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
480                 n->second.second->Prioritize();
481
482         Instance->BuildISupport();
483         return true;
484 }
485
486 bool ModuleManager::Unload(const char* filename)
487 {
488         std::string filename_str(filename);
489         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(filename);
490
491         if (modfind != Modules.end())
492         {
493                 if (modfind->second.second->GetVersion().Flags & VF_STATIC)
494                 {
495                         LastModuleError = "Module " + filename_str + " not unloadable (marked static)";
496                         Instance->Log(DEFAULT, LastModuleError);
497                         return false;
498                 }
499                 std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second.second);
500                 if (intercount.first > 0)
501                 {
502                         LastModuleError = "Failed to unload module " + filename_str + ", being used by " + ConvToStr(intercount.first) + " other(s) via interface '" + intercount.second + "'";
503                         Instance->Log(DEFAULT, LastModuleError);
504                         return false;
505                 }
506
507                 /* Give the module a chance to tidy out all its metadata */
508                 for (chan_hash::iterator c = Instance->chanlist->begin(); c != Instance->chanlist->end(); c++)
509                 {
510                         modfind->second.second->OnCleanup(TYPE_CHANNEL,c->second);
511                 }
512                 for (user_hash::iterator u = Instance->clientlist->begin(); u != Instance->clientlist->end(); u++)
513                 {
514                         modfind->second.second->OnCleanup(TYPE_USER,u->second);
515                 }
516
517                 /* Tidy up any dangling resolvers */
518                 Instance->Res->CleanResolvers(modfind->second.second);
519
520
521                 FOREACH_MOD_I(Instance,I_OnUnloadModule,OnUnloadModule(modfind->second.second, modfind->first));
522
523                 this->DetachAll(modfind->second.second);
524
525                 Instance->Parser->RemoveCommands(filename);
526
527                 delete modfind->second.second;
528                 delete modfind->second.first;
529                 Modules.erase(modfind);
530
531                 Instance->Log(DEFAULT,"Module %s unloaded",filename);
532                 this->ModCount--;
533                 Instance->BuildISupport();
534                 return true;
535         }
536
537         LastModuleError = "Module " + filename_str + " is not loaded, cannot unload it!";
538         Instance->Log(DEFAULT, LastModuleError);
539         return false;
540 }
541
542 /* We must load the modules AFTER initializing the socket engine, now */
543 void ModuleManager::LoadAll()
544 {
545         char configToken[MAXBUF];
546         ModCount = -1;
547
548         for(int count = 0; count < Instance->Config->ConfValueEnum(Instance->Config->config_data, "module"); count++)
549         {
550                 Instance->Config->ConfValue(Instance->Config->config_data, "module", "name", count, configToken, MAXBUF);
551                 printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
552                 
553                 if (!this->Load(configToken))           
554                 {
555                         Instance->Log(DEFAULT, this->LastError());
556                         printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
557                         Instance->Exit(EXIT_STATUS_MODULE);
558                 }
559         }
560 }
561
562 bool ModuleManager::PublishFeature(const std::string &FeatureName, Module* Mod)
563 {
564         if (Features.find(FeatureName) == Features.end())
565         {
566                 Features[FeatureName] = Mod;
567                 return true;
568         }
569         return false;
570 }
571
572 bool ModuleManager::UnpublishFeature(const std::string &FeatureName)
573 {
574         featurelist::iterator iter = Features.find(FeatureName);
575         
576         if (iter == Features.end())
577                 return false;
578
579         Features.erase(iter);
580         return true;
581 }
582
583 Module* ModuleManager::FindFeature(const std::string &FeatureName)
584 {
585         featurelist::iterator iter = Features.find(FeatureName);
586
587         if (iter == Features.end())
588                 return NULL;
589
590         return iter->second;
591 }
592
593 bool ModuleManager::PublishInterface(const std::string &InterfaceName, Module* Mod)
594 {
595         interfacelist::iterator iter = Interfaces.find(InterfaceName);
596
597         if (iter == Interfaces.end())
598         {
599                 modulelist ml;
600                 ml.push_back(Mod);
601                 Interfaces[InterfaceName] = std::make_pair(0, ml);
602                 return true;
603         }
604         else
605         {
606                 iter->second.second.push_back(Mod);
607                 return true;
608         }
609         return false;
610 }
611
612 bool ModuleManager::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
613 {
614         interfacelist::iterator iter = Interfaces.find(InterfaceName);
615
616         if (iter == Interfaces.end())
617                 return false;
618
619         for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
620         {
621                 if (*x == Mod)
622                 {
623                         iter->second.second.erase(x);
624                         if (iter->second.second.empty())
625                                 Interfaces.erase(InterfaceName);
626                         return true;
627                 }
628         }
629         return false;
630 }
631
632 modulelist* ModuleManager::FindInterface(const std::string &InterfaceName)
633 {
634         interfacelist::iterator iter = Interfaces.find(InterfaceName);
635         if (iter == Interfaces.end())
636                 return NULL;
637         else
638                 return &(iter->second.second);
639 }
640
641 void ModuleManager::UseInterface(const std::string &InterfaceName)
642 {
643         interfacelist::iterator iter = Interfaces.find(InterfaceName);
644         if (iter != Interfaces.end())
645                 iter->second.first++;
646
647 }
648
649 void ModuleManager::DoneWithInterface(const std::string &InterfaceName)
650 {
651         interfacelist::iterator iter = Interfaces.find(InterfaceName);
652         if (iter != Interfaces.end())
653                 iter->second.first--;
654 }
655
656 std::pair<int,std::string> ModuleManager::GetInterfaceInstanceCount(Module* m)
657 {
658         for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
659         {
660                 for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
661                 {
662                         if (*x == m)
663                         {
664                                 return std::make_pair(iter->second.first, iter->first);
665                         }
666                 }
667         }
668         return std::make_pair(0, "");
669 }
670
671 const std::string& ModuleManager::GetModuleName(Module* m)
672 {
673         static std::string nothing;
674
675         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
676         {
677                 if (n->second.second == m)
678                         return n->first;
679         }
680
681         return nothing;
682 }
683
684 /* This is ugly, yes, but hash_map's arent designed to be
685  * addressed in this manner, and this is a bit of a kludge.
686  * Luckily its a specialist function and rarely used by
687  * many modules (in fact, it was specially created to make
688  * m_safelist possible, initially).
689  */
690
691 Channel* InspIRCd::GetChannelIndex(long index)
692 {
693         int target = 0;
694         for (chan_hash::iterator n = this->chanlist->begin(); n != this->chanlist->end(); n++, target++)
695         {
696                 if (index == target)
697                         return n->second;
698         }
699         return NULL;
700 }
701
702 bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spattern)
703 {
704         return match(sliteral.c_str(),spattern.c_str());
705 }
706
707 CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, User* user)
708 {
709         return this->Parser->CallHandler(commandname,parameters,pcnt,user);
710 }
711
712 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
713 {
714         return this->Parser->IsValidCommand(commandname, pcnt, user);
715 }
716
717 void InspIRCd::AddCommand(Command *f)
718 {
719         if (!this->Parser->CreateCommand(f))
720         {
721                 ModuleException err("Command "+std::string(f->command)+" already exists.");
722                 throw (err);
723         }
724 }
725
726 void InspIRCd::SendMode(const char** parameters, int pcnt, User *user)
727 {
728         this->Modes->Process(parameters,pcnt,user,true);
729 }
730
731 void InspIRCd::DumpText(User* User, const std::string &LinePrefix, stringstream &TextStream)
732 {
733         std::string CompleteLine = LinePrefix;
734         std::string Word;
735         while (TextStream >> Word)
736         {
737                 if (CompleteLine.length() + Word.length() + 3 > 500)
738                 {
739                         User->WriteServ(CompleteLine);
740                         CompleteLine = LinePrefix;
741                 }
742                 CompleteLine = CompleteLine + Word + " ";
743         }
744         User->WriteServ(CompleteLine);
745 }
746
747 User* FindDescriptorHandler::Call(int socket)
748 {
749         return reinterpret_cast<User*>(Server->SE->GetRef(socket));
750 }
751
752 bool InspIRCd::AddMode(ModeHandler* mh)
753 {
754         return this->Modes->AddMode(mh);
755 }
756
757 bool InspIRCd::AddModeWatcher(ModeWatcher* mw)
758 {
759         return this->Modes->AddModeWatcher(mw);
760 }
761
762 bool InspIRCd::DelModeWatcher(ModeWatcher* mw)
763 {
764         return this->Modes->DelModeWatcher(mw);
765 }
766
767 bool InspIRCd::AddResolver(Resolver* r, bool cached)
768 {
769         if (!cached)
770                 return this->Res->AddResolverClass(r);
771         else
772         {
773                 r->TriggerCachedResult();
774                 delete r;
775                 return true;
776         }
777 }
778
779 Module* ModuleManager::Find(const std::string &name)
780 {
781         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(name);
782
783         if (modfind == Modules.end())
784                 return NULL;
785         else
786                 return modfind->second.second;
787 }
788
789 const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
790 {
791         std::vector<std::string> retval;
792         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator x = Modules.begin(); x != Modules.end(); ++x)
793                 if (!filter || (x->second.second->GetVersion().Flags & filter))
794                         retval.push_back(x->first);
795         return retval;
796 }
797
798 ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance)
799 {
800         /* Is there any reason to load the entire config file again here?
801          * it's needed if they specify another config file, but using the
802          * default one we can just use the global config data - pre-parsed!
803          */
804         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
805         this->error = CONF_NO_ERROR;
806         this->data = &ServerInstance->Config->config_data;
807         this->privatehash = false;
808 }
809
810
811 ConfigReader::~ConfigReader()
812 {
813         if (this->errorlog)
814                 delete this->errorlog;
815         if(this->privatehash)
816                 delete this->data;
817 }
818
819
820 ConfigReader::ConfigReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
821 {
822         ServerInstance->Config->ClearStack();
823
824         this->error = CONF_NO_ERROR;
825         this->data = new ConfigDataHash;
826         this->privatehash = true;
827         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
828         for (int pass = 0; pass < 2; pass++)
829         {
830                 /*** XXX: Can return a 'not ready yet!' code! */
831                 this->readerror = ServerInstance->Config->LoadConf(*this->data, filename, *this->errorlog, pass);
832         }
833         if (!this->readerror)
834                 this->error = CONF_FILE_NOT_FOUND;
835 }
836
837
838 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
839 {
840         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
841         std::string result;
842         
843         if (!ServerInstance->Config->ConfValue(*this->data, tag, name, default_value, index, result, allow_linefeeds))
844         {
845                 this->error = CONF_VALUE_NOT_FOUND;
846         }
847         return result;
848 }
849
850 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
851 {
852         return ReadValue(tag, name, "", index, allow_linefeeds);
853 }
854
855 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
856 {
857         return ServerInstance->Config->ConfValueBool(*this->data, tag, name, default_value, index);
858 }
859
860 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
861 {
862         return ReadFlag(tag, name, "", index);
863 }
864
865
866 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive)
867 {
868         int result;
869         
870         if(!ServerInstance->Config->ConfValueInteger(*this->data, tag, name, default_value, index, result))
871         {
872                 this->error = CONF_VALUE_NOT_FOUND;
873                 return 0;
874         }
875         
876         if ((need_positive) && (result < 0))
877         {
878                 this->error = CONF_INT_NEGATIVE;
879                 return 0;
880         }
881         
882         return result;
883 }
884
885 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive)
886 {
887         return ReadInteger(tag, name, "", index, need_positive);
888 }
889
890 long ConfigReader::GetError()
891 {
892         long olderr = this->error;
893         this->error = 0;
894         return olderr;
895 }
896
897 void ConfigReader::DumpErrors(bool bail, User* user)
898 {
899         ServerInstance->Config->ReportConfigError(this->errorlog->str(), bail, user);
900 }
901
902
903 int ConfigReader::Enumerate(const std::string &tag)
904 {
905         return ServerInstance->Config->ConfValueEnum(*this->data, tag);
906 }
907
908 int ConfigReader::EnumerateValues(const std::string &tag, int index)
909 {
910         return ServerInstance->Config->ConfVarEnum(*this->data, tag, index);
911 }
912
913 bool ConfigReader::Verify()
914 {
915         return this->readerror;
916 }
917
918
919 FileReader::FileReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
920 {
921         LoadFile(filename);
922 }
923
924 FileReader::FileReader(InspIRCd* Instance) : ServerInstance(Instance)
925 {
926 }
927
928 std::string FileReader::Contents()
929 {
930         std::string x;
931         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
932         {
933                 x.append(*a);
934                 x.append("\r\n");
935         }
936         return x;
937 }
938
939 unsigned long FileReader::ContentSize()
940 {
941         return this->contentsize;
942 }
943
944 void FileReader::CalcSize()
945 {
946         unsigned long n = 0;
947         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
948                 n += (a->length() + 2);
949         this->contentsize = n;
950 }
951
952 void FileReader::LoadFile(const std::string &filename)
953 {
954         file_cache c;
955         c.clear();
956         if (ServerInstance->Config->ReadFile(c,filename.c_str()))
957         {
958                 this->fc = c;
959                 this->CalcSize();
960         }
961 }
962
963
964 FileReader::~FileReader()
965 {
966 }
967
968 bool FileReader::Exists()
969 {
970         return (!(fc.size() == 0));
971 }
972
973 std::string FileReader::GetLine(int x)
974 {
975         if ((x<0) || ((unsigned)x>fc.size()))
976                 return "";
977         return fc[x];
978 }
979
980 int FileReader::FileSize()
981 {
982         return fc.size();
983 }