]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Remove our vectors of Module*/ircd_module*, replace with a map of std::pair<ircd_modu...
[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 + 1; 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         size_t swap_pos;
252         size_t source = 0;
253         bool swap = true;
254         bool found = false;
255
256         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
257         {
258                 if (EventHandlers[i][x] == mod)
259                 {
260                         source = x;
261                         found = true;
262                         break;
263                 }
264         }
265
266         if (!found)
267                 return false;
268
269         Instance->Log(DEBUG,"ModuleManager::SetPriority: My position: %u", source);
270
271         if (modules)
272         {
273                 for (size_t n = 0; n < sz; ++n)
274                 {
275                         if (modules[n])
276                                 Instance->Log(DEBUG,"    Listed Module: [%08x] %s", modules[n], GetModuleName(modules[n]).c_str());
277                         else
278                                 Instance->Log(DEBUG,"    [null module]");
279                 }
280         }
281
282         switch (s)
283         {
284                 case PRIO_DONTCARE:
285                         swap = false;
286                 break;
287                 case PRIO_FIRST:
288                         swap_pos = 0;
289                 break;
290                 case PRIO_LAST:
291                         if (EventHandlers[i].empty())
292                                 swap_pos = 0;
293                         else
294                                 swap_pos = EventHandlers[i].size() - 1;
295                 break;
296                 case PRIO_AFTER:
297                 {
298                         /* Find the latest possible position */
299                         swap_pos = 0;
300                         swap = false;
301                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
302                         {
303                                 for (size_t n = 0; n < sz; ++n)
304                                 {
305                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
306                                         {
307                                                 swap_pos = x;
308                                                 swap = true;
309                                         }
310                                 }
311                         }
312                 }
313                 break;
314                 case PRIO_BEFORE:
315                 {
316                         swap_pos = EventHandlers[i].size() - 1;
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 = true;
325                                                 swap_pos = x;
326                                         }
327                                 }
328                         }
329                 }
330                 break;
331         }
332
333         if (swap && (swap_pos != source))
334         {
335                 std::swap(EventHandlers[i][swap_pos], EventHandlers[i][source]);
336                 Instance->Log(DEBUG,"Swap locations %u and %u", swap_pos, source);
337         }
338         else
339                 Instance->Log(DEBUG,"No need to swap");
340
341         Instance->Log(DEBUG,"New ordering:");
342         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
343         {
344                 Instance->Log(DEBUG,"  [%08x] %s", EventHandlers[i][x], GetModuleName(EventHandlers[i][x]).c_str());
345         }
346
347         return true;
348 }
349
350 const char* ModuleManager::LastError()
351 {
352         return MODERR;
353 }
354
355 bool ModuleManager::Load(const char* filename)
356 {
357         /* Do we have a glob pattern in the filename?
358          * The user wants to load multiple modules which
359          * match the pattern.
360          */
361         if (strchr(filename,'*') || (strchr(filename,'?')))
362         {
363                 int n_match = 0;
364                 DIR* library = opendir(Instance->Config->ModPath);
365                 if (library)
366                 {
367                         /* Try and locate and load all modules matching the pattern */
368                         dirent* entry = NULL;
369                         while ((entry = readdir(library)))
370                         {
371                                 if (Instance->MatchText(entry->d_name, filename))
372                                 {
373                                         if (!this->Load(entry->d_name))
374                                                 n_match++;
375                                 }
376                         }
377                         closedir(library);
378                 }
379                 /* Loadmodule will now return false if any one of the modules failed
380                  * to load (but wont abort when it encounters a bad one) and when 1 or
381                  * more modules were actually loaded.
382                  */
383                 return (n_match > 0);
384         }
385
386         char modfile[MAXBUF];
387         snprintf(modfile,MAXBUF,"%s/%s",Instance->Config->ModPath,filename);
388         std::string filename_str = filename;
389
390         if (!ServerConfig::DirValid(modfile))
391         {
392                 snprintf(MODERR, MAXBUF,"Module %s is not within the modules directory.", modfile);
393                 Instance->Log(DEFAULT, MODERR);
394                 return false;
395         }
396         
397         if (!ServerConfig::FileExists(modfile))
398         {
399                 snprintf(MODERR,MAXBUF,"Module file could not be found: %s", modfile);
400                 Instance->Log(DEFAULT, MODERR);
401                 return false;
402         }
403         
404         if (Modules.find(filename_str) != Modules.end())
405         {       
406                 Instance->Log(DEFAULT,"Module %s is already loaded, cannot load a module twice!",modfile);
407                 snprintf(MODERR, MAXBUF, "Module already loaded");
408                 return false;
409         }
410                 
411         Module* newmod;
412         ircd_module* newhandle;
413         
414         newmod = NULL;
415         newhandle = NULL;
416                 
417         try
418         {
419                 /* This will throw a CoreException if there's a problem loading
420                  * the module file or getting a pointer to the init_module symbol.
421                  */
422                 newhandle = new ircd_module(Instance, modfile, "init_module");
423                 newmod = newhandle->CallInit();
424
425                 if(newmod)
426                 {
427                         Version v = newmod->GetVersion();
428
429                         if (v.API != API_VERSION)
430                         {
431                                 delete newmod;
432                                 Instance->Log(DEFAULT,"Unable to load %s: Incorrect module API version: %d (our version: %d)",modfile,v.API,API_VERSION);
433                                 snprintf(MODERR,MAXBUF,"Loader/Linker error: Incorrect module API version: %d (our version: %d)",v.API,API_VERSION);
434                                 return false;
435                         }
436                         else
437                         {
438                                 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]"));
439                         }
440
441                         Modules[filename_str] = std::make_pair(newhandle, newmod);
442                 }
443                 else
444                 {
445                         Instance->Log(DEFAULT, "Unable to load %s",modfile);
446                         snprintf(MODERR,MAXBUF, "Probably missing init_module() entrypoint, but dlsym() didn't notice a problem");
447                         return false;
448                 }
449         }
450         catch (LoadModuleException& modexcept)
451         {
452                 Instance->Log(DEFAULT,"Unable to load %s: %s", modfile, modexcept.GetReason());
453                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s", modexcept.GetReason());
454                 return false;
455         }
456         catch (FindSymbolException& modexcept)
457         {
458                 Instance->Log(DEFAULT,"Unable to load %s: %s", modfile, modexcept.GetReason());
459                 snprintf(MODERR,MAXBUF,"Loader/Linker error: %s", modexcept.GetReason());
460                 return false;
461         }
462         catch (CoreException& modexcept)
463         {
464                 Instance->Log(DEFAULT,"Unable to load %s: %s",modfile,modexcept.GetReason());
465                 snprintf(MODERR,MAXBUF,"Factory function of %s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
466                 return false;
467         }
468         
469         this->ModCount++;
470         FOREACH_MOD_I(Instance,I_OnLoadModule,OnLoadModule(newmod, filename_str));
471
472         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
473                 n->second.second->Prioritize();
474
475         Instance->BuildISupport();
476         return true;
477 }
478
479 bool ModuleManager::Unload(const char* filename)
480 {
481         std::string filename_str = filename;
482         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(filename);
483
484         if (modfind != Modules.end())
485         {
486                 if (modfind->second.second->GetVersion().Flags & VF_STATIC)
487                 {
488                         Instance->Log(DEFAULT,"Failed to unload STATIC module %s",filename);
489                         snprintf(MODERR,MAXBUF,"Module not unloadable (marked static)");
490                         return false;
491                 }
492                 std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second.second);
493                 if (intercount.first > 0)
494                 {
495                         Instance->Log(DEFAULT,"Failed to unload module %s, being used by %d other(s) via interface '%s'",filename, intercount.first, intercount.second.c_str());
496                         snprintf(MODERR,MAXBUF,"Module not unloadable (Still in use by %d other module%s which %s using its interface '%s') -- unload dependent modules first!",
497                                         intercount.first,
498                                         intercount.first > 1 ? "s" : "",
499                                         intercount.first > 1 ? "are" : "is",
500                                         intercount.second.c_str());
501                         return false;
502                 }
503
504                 /* Give the module a chance to tidy out all its metadata */
505                 for (chan_hash::iterator c = Instance->chanlist->begin(); c != Instance->chanlist->end(); c++)
506                 {
507                         modfind->second.second->OnCleanup(TYPE_CHANNEL,c->second);
508                 }
509                 for (user_hash::iterator u = Instance->clientlist->begin(); u != Instance->clientlist->end(); u++)
510                 {
511                         modfind->second.second->OnCleanup(TYPE_USER,u->second);
512                 }
513
514                 /* Tidy up any dangling resolvers */
515                 Instance->Res->CleanResolvers(modfind->second.second);
516
517
518                 FOREACH_MOD_I(Instance,I_OnUnloadModule,OnUnloadModule(modfind->second.second, modfind->first));
519
520                 this->DetachAll(modfind->second.second);
521
522                 Instance->Parser->RemoveCommands(filename);
523
524                 delete modfind->second.second;
525                 delete modfind->second.first;
526                 Modules.erase(modfind);
527
528                 Instance->Log(DEFAULT,"Module %s unloaded",filename);
529                 this->ModCount--;
530                 Instance->BuildISupport();
531                 return true;
532         }
533
534         Instance->Log(DEFAULT,"Module %s is not loaded, cannot unload it!",filename);
535         snprintf(MODERR,MAXBUF,"Module not loaded");
536         return false;
537 }
538
539 /* We must load the modules AFTER initializing the socket engine, now */
540 void ModuleManager::LoadAll()
541 {
542         char configToken[MAXBUF];
543         ModCount = -1;
544
545         for(int count = 0; count < Instance->Config->ConfValueEnum(Instance->Config->config_data, "module"); count++)
546         {
547                 Instance->Config->ConfValue(Instance->Config->config_data, "module", "name", count, configToken, MAXBUF);
548                 printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
549                 
550                 if (!this->Load(configToken))           
551                 {
552                         Instance->Log(DEFAULT,"There was an error loading the module '%s': %s", configToken, this->LastError());
553                         printf_c("\n[\033[1;31m*\033[0m] There was an error loading the module '%s': %s\n\n", configToken, this->LastError());
554                         Instance->Exit(EXIT_STATUS_MODULE);
555                 }
556         }
557         printf_c("\nA total of \033[1;32m%d\033[0m module%s been loaded.\n", (this->GetCount()+1), (this->GetCount()+1) == 1 ? " has" : "s have");
558         Instance->Log(DEFAULT,"Total loaded modules: %d", this->GetCount()+1);
559 }
560
561 bool ModuleManager::PublishFeature(const std::string &FeatureName, Module* Mod)
562 {
563         if (Features.find(FeatureName) == Features.end())
564         {
565                 Features[FeatureName] = Mod;
566                 return true;
567         }
568         return false;
569 }
570
571 bool ModuleManager::UnpublishFeature(const std::string &FeatureName)
572 {
573         featurelist::iterator iter = Features.find(FeatureName);
574         
575         if (iter == Features.end())
576                 return false;
577
578         Features.erase(iter);
579         return true;
580 }
581
582 Module* ModuleManager::FindFeature(const std::string &FeatureName)
583 {
584         featurelist::iterator iter = Features.find(FeatureName);
585
586         if (iter == Features.end())
587                 return NULL;
588
589         return iter->second;
590 }
591
592 bool ModuleManager::PublishInterface(const std::string &InterfaceName, Module* Mod)
593 {
594         interfacelist::iterator iter = Interfaces.find(InterfaceName);
595
596         if (iter == Interfaces.end())
597         {
598                 modulelist ml;
599                 ml.push_back(Mod);
600                 Interfaces[InterfaceName] = std::make_pair(0, ml);
601                 return true;
602         }
603         else
604         {
605                 iter->second.second.push_back(Mod);
606                 return true;
607         }
608         return false;
609 }
610
611 bool ModuleManager::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
612 {
613         interfacelist::iterator iter = Interfaces.find(InterfaceName);
614
615         if (iter == Interfaces.end())
616                 return false;
617
618         for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
619         {
620                 if (*x == Mod)
621                 {
622                         iter->second.second.erase(x);
623                         if (iter->second.second.empty())
624                                 Interfaces.erase(InterfaceName);
625                         return true;
626                 }
627         }
628         return false;
629 }
630
631 modulelist* ModuleManager::FindInterface(const std::string &InterfaceName)
632 {
633         interfacelist::iterator iter = Interfaces.find(InterfaceName);
634         if (iter == Interfaces.end())
635                 return NULL;
636         else
637                 return &(iter->second.second);
638 }
639
640 void ModuleManager::UseInterface(const std::string &InterfaceName)
641 {
642         interfacelist::iterator iter = Interfaces.find(InterfaceName);
643         if (iter != Interfaces.end())
644                 iter->second.first++;
645
646 }
647
648 void ModuleManager::DoneWithInterface(const std::string &InterfaceName)
649 {
650         interfacelist::iterator iter = Interfaces.find(InterfaceName);
651         if (iter != Interfaces.end())
652                 iter->second.first--;
653 }
654
655 std::pair<int,std::string> ModuleManager::GetInterfaceInstanceCount(Module* m)
656 {
657         for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
658         {
659                 for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
660                 {
661                         if (*x == m)
662                         {
663                                 return std::make_pair(iter->second.first, iter->first);
664                         }
665                 }
666         }
667         return std::make_pair(0, "");
668 }
669
670 const std::string& ModuleManager::GetModuleName(Module* m)
671 {
672         static std::string nothing;
673
674         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
675         {
676                 if (n->second.second == m)
677                         return n->first;
678         }
679
680         return nothing;
681 }
682
683 /* This is ugly, yes, but hash_map's arent designed to be
684  * addressed in this manner, and this is a bit of a kludge.
685  * Luckily its a specialist function and rarely used by
686  * many modules (in fact, it was specially created to make
687  * m_safelist possible, initially).
688  */
689
690 Channel* InspIRCd::GetChannelIndex(long index)
691 {
692         int target = 0;
693         for (chan_hash::iterator n = this->chanlist->begin(); n != this->chanlist->end(); n++, target++)
694         {
695                 if (index == target)
696                         return n->second;
697         }
698         return NULL;
699 }
700
701 bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spattern)
702 {
703         return match(sliteral.c_str(),spattern.c_str());
704 }
705
706 CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, User* user)
707 {
708         return this->Parser->CallHandler(commandname,parameters,pcnt,user);
709 }
710
711 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
712 {
713         return this->Parser->IsValidCommand(commandname, pcnt, user);
714 }
715
716 void InspIRCd::AddCommand(Command *f)
717 {
718         if (!this->Parser->CreateCommand(f))
719         {
720                 ModuleException err("Command "+std::string(f->command)+" already exists.");
721                 throw (err);
722         }
723 }
724
725 void InspIRCd::SendMode(const char** parameters, int pcnt, User *user)
726 {
727         this->Modes->Process(parameters,pcnt,user,true);
728 }
729
730 void InspIRCd::DumpText(User* User, const std::string &LinePrefix, stringstream &TextStream)
731 {
732         std::string CompleteLine = LinePrefix;
733         std::string Word;
734         while (TextStream >> Word)
735         {
736                 if (CompleteLine.length() + Word.length() + 3 > 500)
737                 {
738                         User->WriteServ(CompleteLine);
739                         CompleteLine = LinePrefix;
740                 }
741                 CompleteLine = CompleteLine + Word + " ";
742         }
743         User->WriteServ(CompleteLine);
744 }
745
746 User* FindDescriptorHandler::Call(int socket)
747 {
748         return reinterpret_cast<User*>(Server->SE->GetRef(socket));
749 }
750
751 bool InspIRCd::AddMode(ModeHandler* mh)
752 {
753         return this->Modes->AddMode(mh);
754 }
755
756 bool InspIRCd::AddModeWatcher(ModeWatcher* mw)
757 {
758         return this->Modes->AddModeWatcher(mw);
759 }
760
761 bool InspIRCd::DelModeWatcher(ModeWatcher* mw)
762 {
763         return this->Modes->DelModeWatcher(mw);
764 }
765
766 bool InspIRCd::AddResolver(Resolver* r, bool cached)
767 {
768         if (!cached)
769                 return this->Res->AddResolverClass(r);
770         else
771         {
772                 r->TriggerCachedResult();
773                 delete r;
774                 return true;
775         }
776 }
777
778 Module* ModuleManager::Find(const std::string &name)
779 {
780         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(name);
781
782         if (modfind == Modules.end())
783                 return NULL;
784         else
785                 return modfind->second.second;
786 }
787
788 ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance)
789 {
790         /* Is there any reason to load the entire config file again here?
791          * it's needed if they specify another config file, but using the
792          * default one we can just use the global config data - pre-parsed!
793          */
794         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
795         this->error = CONF_NO_ERROR;
796         this->data = &ServerInstance->Config->config_data;
797         this->privatehash = false;
798 }
799
800
801 ConfigReader::~ConfigReader()
802 {
803         if (this->errorlog)
804                 delete this->errorlog;
805         if(this->privatehash)
806                 delete this->data;
807 }
808
809
810 ConfigReader::ConfigReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
811 {
812         ServerInstance->Config->ClearStack();
813
814         this->error = CONF_NO_ERROR;
815         this->data = new ConfigDataHash;
816         this->privatehash = true;
817         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
818         this->readerror = ServerInstance->Config->LoadConf(*this->data, filename, *this->errorlog);
819         if (!this->readerror)
820                 this->error = CONF_FILE_NOT_FOUND;
821 }
822
823
824 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
825 {
826         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
827         std::string result;
828         
829         if (!ServerInstance->Config->ConfValue(*this->data, tag, name, default_value, index, result, allow_linefeeds))
830         {
831                 this->error = CONF_VALUE_NOT_FOUND;
832         }
833         return result;
834 }
835
836 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
837 {
838         return ReadValue(tag, name, "", index, allow_linefeeds);
839 }
840
841 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
842 {
843         return ServerInstance->Config->ConfValueBool(*this->data, tag, name, default_value, index);
844 }
845
846 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
847 {
848         return ReadFlag(tag, name, "", index);
849 }
850
851
852 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive)
853 {
854         int result;
855         
856         if(!ServerInstance->Config->ConfValueInteger(*this->data, tag, name, default_value, index, result))
857         {
858                 this->error = CONF_VALUE_NOT_FOUND;
859                 return 0;
860         }
861         
862         if ((need_positive) && (result < 0))
863         {
864                 this->error = CONF_INT_NEGATIVE;
865                 return 0;
866         }
867         
868         return result;
869 }
870
871 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive)
872 {
873         return ReadInteger(tag, name, "", index, need_positive);
874 }
875
876 long ConfigReader::GetError()
877 {
878         long olderr = this->error;
879         this->error = 0;
880         return olderr;
881 }
882
883 void ConfigReader::DumpErrors(bool bail, User* user)
884 {
885         ServerInstance->Config->ReportConfigError(this->errorlog->str(), bail, user);
886 }
887
888
889 int ConfigReader::Enumerate(const std::string &tag)
890 {
891         return ServerInstance->Config->ConfValueEnum(*this->data, tag);
892 }
893
894 int ConfigReader::EnumerateValues(const std::string &tag, int index)
895 {
896         return ServerInstance->Config->ConfVarEnum(*this->data, tag, index);
897 }
898
899 bool ConfigReader::Verify()
900 {
901         return this->readerror;
902 }
903
904
905 FileReader::FileReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
906 {
907         LoadFile(filename);
908 }
909
910 FileReader::FileReader(InspIRCd* Instance) : ServerInstance(Instance)
911 {
912 }
913
914 std::string FileReader::Contents()
915 {
916         std::string x;
917         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
918         {
919                 x.append(*a);
920                 x.append("\r\n");
921         }
922         return x;
923 }
924
925 unsigned long FileReader::ContentSize()
926 {
927         return this->contentsize;
928 }
929
930 void FileReader::CalcSize()
931 {
932         unsigned long n = 0;
933         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
934                 n += (a->length() + 2);
935         this->contentsize = n;
936 }
937
938 void FileReader::LoadFile(const std::string &filename)
939 {
940         file_cache c;
941         c.clear();
942         if (ServerInstance->Config->ReadFile(c,filename.c_str()))
943         {
944                 this->fc = c;
945                 this->CalcSize();
946         }
947 }
948
949
950 FileReader::~FileReader()
951 {
952 }
953
954 bool FileReader::Exists()
955 {
956         return (!(fc.size() == 0));
957 }
958
959 std::string FileReader::GetLine(int x)
960 {
961         if ((x<0) || ((unsigned)x>fc.size()))
962                 return "";
963         return fc[x];
964 }
965
966 int FileReader::FileSize()
967 {
968         return fc.size();
969 }