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