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