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