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