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