]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Change the 'is not within the modules dir' message to something less obscure that...
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core: libIRCDmodules */
15
16 #include "inspircd.h"
17 #include "wildcard.h"
18 #include "xline.h"
19 #include "socket.h"
20 #include "socketengine.h"
21 #include "command_parse.h"
22 #include "dns.h"
23 #include "exitcodes.h"
24
25 #ifndef WIN32
26         #include <dirent.h>
27 #endif
28
29 // version is a simple class for holding a modules version number
30 Version::Version(int major, int minor, int revision, int build, int flags, int api_ver)
31 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags), API(api_ver)
32 {
33 }
34
35 Request::Request(char* anydata, Module* src, Module* dst)
36 : data(anydata), source(src), dest(dst)
37 {
38         /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
39          * by passing them uninitialized pointers (could happen)
40          */
41         id = '\0';
42 }
43
44 Request::Request(Module* src, Module* dst, const char* idstr)
45 : id(idstr), source(src), dest(dst)
46 {
47 }
48
49 char* Request::GetData()
50 {
51         return this->data;
52 }
53
54 const char* Request::GetId()
55 {
56         return this->id;
57 }
58
59 Module* Request::GetSource()
60 {
61         return this->source;
62 }
63
64 Module* Request::GetDest()
65 {
66         return this->dest;
67 }
68
69 const 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*, time_t) { 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* const*, int, User *, bool, const std::string&) { return 0; }
138 void            Module::OnPostCommand(const std::string&, const char* const*, int, User *, CmdResult, const std::string&) { }
139 bool            Module::OnCheckReady(User*) { return true; }
140 int             Module::OnUserRegister(User*) { return 0; }
141 int             Module::OnUserPreKick(User*, User*, Channel*, const std::string&) { return 0; }
142 void            Module::OnUserKick(User*, User*, Channel*, const std::string&, bool&) { }
143 int             Module::OnRawMode(User*, Channel*, const char, const std::string &, bool, int, bool) { 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 const char*             Module::OnRequest(Request*) { return NULL; }
154 int             Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { 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*, time_t) { }
168 void            Module::OnPostLocalTopicChange(User*, Channel*, const std::string&) { }
169 void            Module::OnGetServerDescription(const std::string&, std::string&) { }
170 void            Module::OnSyncUser(User*, Module*, void*) { }
171 void            Module::OnSyncChannel(Channel*, Module*, void*) { }
172 void            Module::ProtoSendMode(void*, int, void*, const std::string&) { }
173 void            Module::OnSyncChannelMetaData(Channel*, Module*, void*, const std::string&, bool) { }
174 void            Module::OnSyncUserMetaData(User*, Module*, void*, const std::string&, bool) { }
175 void            Module::OnSyncOtherMetaData(Module*, void*, bool) { }
176 void            Module::OnDecodeMetaData(int, void*, const std::string&, const std::string&) { }
177 void            Module::ProtoSendMetaData(void*, int, void*, const std::string&, const std::string&) { }
178 void            Module::OnWallops(User*, const std::string&) { }
179 void            Module::OnChangeHost(User*, const std::string&) { }
180 void            Module::OnChangeName(User*, const std::string&) { }
181 void            Module::OnAddLine(User*, XLine*) { }
182 void            Module::OnDelLine(User*, XLine*) { }
183 void            Module::OnExpireLine(XLine*) { }
184 void            Module::OnCleanup(int, void*) { }
185 int             Module::OnChannelPreDelete(Channel*) { return 0; }
186 void            Module::OnChannelDelete(Channel*) { }
187 int             Module::OnSetAway(User*, const std::string &) { return 0; }
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 void            Module::OnRunTestSuite() { }
195 void            Module::OnNamesListItem(User*, User*, Channel*, std::string&, std::string&) { }
196 int             Module::OnNumeric(User*, unsigned int, const std::string&) { return 0; }
197 void            Module::OnHookUserIO(User*, const std::string&) { }
198
199 ModuleManager::ModuleManager(InspIRCd* Ins) : ModCount(0), Instance(Ins)
200 {
201 }
202
203 ModuleManager::~ModuleManager()
204 {
205 }
206
207 bool ModuleManager::Attach(Implementation i, Module* mod)
208 {
209         if (std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod) != EventHandlers[i].end())
210                 return false;
211
212         EventHandlers[i].push_back(mod);
213         return true;
214 }
215
216 bool ModuleManager::Detach(Implementation i, Module* mod)
217 {
218         EventHandlerIter x = std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod);
219
220         if (x == EventHandlers[i].end())
221                 return false;
222
223         EventHandlers[i].erase(x);
224         return true;
225 }
226
227 void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
228 {
229         for (size_t n = 0; n < sz; ++n)
230                 Attach(i[n], mod);
231 }
232
233 void ModuleManager::DetachAll(Module* mod)
234 {
235         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
236                 Detach((Implementation)n, mod);
237 }
238
239 bool ModuleManager::SetPriority(Module* mod, PriorityState s)
240 {
241         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
242                 SetPriority(mod, (Implementation)n, s);
243
244         return true;
245 }
246
247 bool ModuleManager::SetPriority(Module* mod, Implementation i, PriorityState s, Module** modules, size_t sz)
248 {
249         /** To change the priority of a module, we first find its position in the vector,
250          * then we find the position of the other modules in the vector that this module
251          * wants to be before/after. We pick off either the first or last of these depending
252          * on which they want, and we make sure our module is *at least* before or after
253          * the first or last of this subset, depending again on the type of priority.
254          */
255         size_t swap_pos = 0;
256         size_t source = 0;
257         bool swap = true;
258         bool found = false;
259
260         /* Locate our module. This is O(n) but it only occurs on module load so we're
261          * not too bothered about it
262          */
263         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
264         {
265                 if (EventHandlers[i][x] == mod)
266                 {
267                         source = x;
268                         found = true;
269                         break;
270                 }
271         }
272
273         /* Eh? this module doesnt exist, probably trying to set priority on an event
274          * theyre not attached to.
275          */
276         if (!found)
277                 return false;
278
279         switch (s)
280         {
281                 /* Dummy value */
282                 case PRIO_DONTCARE:
283                         swap = false;
284                 break;
285                 /* Module wants to be first, sod everything else */
286                 case PRIO_FIRST:
287                         swap_pos = 0;
288                 break;
289                 /* Module is submissive and wants to be last... awww. */
290                 case PRIO_LAST:
291                         if (EventHandlers[i].empty())
292                                 swap_pos = 0;
293                         else
294                                 swap_pos = EventHandlers[i].size() - 1;
295                 break;
296                 /* Place this module after a set of other modules */
297                 case PRIO_AFTER:
298                 {
299                         /* Find the latest possible position */
300                         swap_pos = 0;
301                         swap = false;
302                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
303                         {
304                                 for (size_t n = 0; n < sz; ++n)
305                                 {
306                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
307                                         {
308                                                 swap_pos = x;
309                                                 swap = true;
310                                         }
311                                 }
312                         }
313                 }
314                 break;
315                 /* Place this module before a set of other modules */
316                 case PRIO_BEFORE:
317                 {
318                         swap_pos = EventHandlers[i].size() - 1;
319                         swap = false;
320                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
321                         {
322                                 for (size_t n = 0; n < sz; ++n)
323                                 {
324                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x <= swap_pos) && (source >= swap_pos))
325                                         {
326                                                 swap = true;
327                                                 swap_pos = x;
328                                         }
329                                 }
330                         }
331                 }
332                 break;
333         }
334
335         /* Do we need to swap? */
336         if (swap && (swap_pos != source))
337                 std::swap(EventHandlers[i][swap_pos], EventHandlers[i][source]);
338
339         return true;
340 }
341
342 std::string& ModuleManager::LastError()
343 {
344         return LastModuleError;
345 }
346
347 bool ModuleManager::Load(const char* filename)
348 {
349         /* Do we have a glob pattern in the filename?
350          * The user wants to load multiple modules which
351          * match the pattern.
352          */
353         if (strchr(filename,'*') || (strchr(filename,'?')))
354         {
355                 int n_match = 0;
356                 DIR* library = opendir(Instance->Config->ModPath);
357                 if (library)
358                 {
359                         /* Try and locate and load all modules matching the pattern */
360                         dirent* entry = NULL;
361                         while ((entry = readdir(library)))
362                         {
363                                 if (Instance->MatchText(entry->d_name, filename))
364                                 {
365                                         if (!this->Load(entry->d_name))
366                                                 n_match++;
367                                 }
368                         }
369                         closedir(library);
370                 }
371                 /* Loadmodule will now return false if any one of the modules failed
372                  * to load (but wont abort when it encounters a bad one) and when 1 or
373                  * more modules were actually loaded.
374                  */
375                 return (n_match > 0);
376         }
377
378         char modfile[MAXBUF];
379         snprintf(modfile,MAXBUF,"%s/%s",Instance->Config->ModPath,filename);
380         std::string filename_str = filename;
381
382         if (!ServerConfig::DirValid(modfile))
383         {
384                 LastModuleError = "Module " + std::string(filename) + " is not in the module directory that i am configured to look in (is "+Instance->Config->ModPath+" really a symlink?)";
385                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
386                 return false;
387         }
388         
389         if (!ServerConfig::FileExists(modfile))
390         {
391                 LastModuleError = "Module file could not be found: " + filename_str;
392                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
393                 return false;
394         }
395         
396         if (Modules.find(filename_str) != Modules.end())
397         {       
398                 LastModuleError = "Module " + filename_str + " is already loaded, cannot load a module twice!";
399                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
400                 return false;
401         }
402                 
403         Module* newmod = NULL;
404         ircd_module* newhandle = NULL;
405
406         try
407         {
408                 /* This will throw a CoreException if there's a problem loading
409                  * the module file or getting a pointer to the init_module symbol.
410                  */
411                 newhandle = new ircd_module(Instance, modfile, "init_module");
412                 newmod = newhandle->CallInit();
413
414                 if (newmod)
415                 {
416                         Version v = newmod->GetVersion();
417
418                         if (v.API != API_VERSION)
419                         {
420                                 DetachAll(newmod);
421                                 delete newmod;
422                                 delete newhandle;
423                                 LastModuleError = "Unable to load " + filename_str + ": Incorrect module API version: " + ConvToStr(v.API) + " (our version: " + ConvToStr(API_VERSION) + ")";
424                                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
425                                 return false;
426                         }
427                         else
428                         {
429                                 Instance->Logs->Log("MODULE", 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]"));
430                         }
431
432                         Modules[filename_str] = std::make_pair(newhandle, newmod);
433                 }
434                 else
435                 {
436                         delete newhandle;
437                         LastModuleError = "Unable to load " + filename_str + ": Probably missing init_module() entrypoint, but dlsym() didn't notice a problem";
438                         Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
439                         return false;
440                 }
441         }
442         /** XXX: Is there anything we can do about this mess? -- Brain */
443         catch (LoadModuleException& modexcept)
444         {
445                 DetachAll(newmod);
446                 if (newmod)
447                         delete newmod;
448                 if (newhandle)
449                         delete newhandle;
450                 LastModuleError = "Unable to load " + filename_str + ": Error when loading: " + modexcept.GetReason();
451                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
452                 return false;
453         }
454         catch (FindSymbolException& modexcept)
455         {
456                 DetachAll(newmod);
457                 if (newmod)
458                         delete newmod;
459                 if (newhandle)
460                         delete newhandle;
461                 LastModuleError = "Unable to load " + filename_str + ": Error finding symbol: " + modexcept.GetReason();
462                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
463                 return false;
464         }
465         catch (CoreException& modexcept)
466         {
467                 DetachAll(newmod);
468                 if (newmod)
469                         delete newmod;
470                 if (newhandle)
471                         delete newhandle;
472                 LastModuleError = "Unable to load " + filename_str + ": " + modexcept.GetReason();
473                 Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
474                 return false;
475         }
476
477         this->ModCount++;
478         FOREACH_MOD_I(Instance,I_OnLoadModule,OnLoadModule(newmod, filename_str));
479
480         /* We give every module a chance to re-prioritize when we introduce a new one,
481          * not just the one thats loading, as the new module could affect the preference
482          * of others
483          */
484         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
485                 n->second.second->Prioritize();
486
487         Instance->BuildISupport();
488         return true;
489 }
490
491 bool ModuleManager::Unload(const char* filename)
492 {
493         std::string filename_str(filename);
494         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(filename);
495
496         if (modfind != Modules.end())
497         {
498                 if (modfind->second.second->GetVersion().Flags & VF_STATIC)
499                 {
500                         LastModuleError = "Module " + filename_str + " not unloadable (marked static)";
501                         Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
502                         return false;
503                 }
504                 std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second.second);
505                 if (intercount.first > 0)
506                 {
507                         LastModuleError = "Failed to unload module " + filename_str + ", being used by " + ConvToStr(intercount.first) + " other(s) via interface '" + intercount.second + "'";
508                         Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
509                         return false;
510                 }
511
512                 /* Give the module a chance to tidy out all its metadata */
513                 for (chan_hash::iterator c = Instance->chanlist->begin(); c != Instance->chanlist->end(); c++)
514                 {
515                         modfind->second.second->OnCleanup(TYPE_CHANNEL,c->second);
516                 }
517                 for (user_hash::iterator u = Instance->Users->clientlist->begin(); u != Instance->Users->clientlist->end(); u++)
518                 {
519                         modfind->second.second->OnCleanup(TYPE_USER,u->second);
520                 }
521
522                 /* Tidy up any dangling resolvers */
523                 Instance->Res->CleanResolvers(modfind->second.second);
524
525
526                 FOREACH_MOD_I(Instance,I_OnUnloadModule,OnUnloadModule(modfind->second.second, modfind->first));
527
528                 this->DetachAll(modfind->second.second);
529
530                 Instance->Parser->RemoveCommands(filename);
531
532                 delete modfind->second.second;
533                 delete modfind->second.first;
534                 Modules.erase(modfind);
535
536                 Instance->Logs->Log("MODULE", DEFAULT,"Module %s unloaded",filename);
537                 this->ModCount--;
538                 Instance->BuildISupport();
539                 return true;
540         }
541
542         LastModuleError = "Module " + filename_str + " is not loaded, cannot unload it!";
543         Instance->Logs->Log("MODULE", DEFAULT, LastModuleError);
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         ModCount = -1;
552
553         for(int count = 0; count < Instance->Config->ConfValueEnum(Instance->Config->config_data, "module"); count++)
554         {
555                 Instance->Config->ConfValue(Instance->Config->config_data, "module", "name", count, configToken, MAXBUF);
556                 printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
557                 
558                 if (!this->Load(configToken))           
559                 {
560                         Instance->Logs->Log("MODULE", DEFAULT, this->LastError());
561                         printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
562                         Instance->Exit(EXIT_STATUS_MODULE);
563                 }
564         }
565 }
566
567 bool ModuleManager::PublishFeature(const std::string &FeatureName, Module* Mod)
568 {
569         if (Features.find(FeatureName) == Features.end())
570         {
571                 Features[FeatureName] = Mod;
572                 return true;
573         }
574         return false;
575 }
576
577 bool ModuleManager::UnpublishFeature(const std::string &FeatureName)
578 {
579         featurelist::iterator iter = Features.find(FeatureName);
580         
581         if (iter == Features.end())
582                 return false;
583
584         Features.erase(iter);
585         return true;
586 }
587
588 Module* ModuleManager::FindFeature(const std::string &FeatureName)
589 {
590         featurelist::iterator iter = Features.find(FeatureName);
591
592         if (iter == Features.end())
593                 return NULL;
594
595         return iter->second;
596 }
597
598 bool ModuleManager::PublishInterface(const std::string &InterfaceName, Module* Mod)
599 {
600         interfacelist::iterator iter = Interfaces.find(InterfaceName);
601
602         if (iter == Interfaces.end())
603         {
604                 modulelist ml;
605                 ml.push_back(Mod);
606                 Interfaces[InterfaceName] = std::make_pair(0, ml);
607                 return true;
608         }
609         else
610         {
611                 iter->second.second.push_back(Mod);
612                 return true;
613         }
614         return false;
615 }
616
617 bool ModuleManager::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
618 {
619         interfacelist::iterator iter = Interfaces.find(InterfaceName);
620
621         if (iter == Interfaces.end())
622                 return false;
623
624         for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
625         {
626                 if (*x == Mod)
627                 {
628                         iter->second.second.erase(x);
629                         if (iter->second.second.empty())
630                                 Interfaces.erase(InterfaceName);
631                         return true;
632                 }
633         }
634         return false;
635 }
636
637 modulelist* ModuleManager::FindInterface(const std::string &InterfaceName)
638 {
639         interfacelist::iterator iter = Interfaces.find(InterfaceName);
640         if (iter == Interfaces.end())
641                 return NULL;
642         else
643                 return &(iter->second.second);
644 }
645
646 bool ModuleManager::ModuleHasInterface(Module* mod, const std::string& InterfaceName)
647 {
648         interfacelist::iterator iter = Interfaces.find(InterfaceName);
649         if (iter == Interfaces.end())
650                 return false;
651         else
652         {
653                 modulelist& ml = iter->second.second;
654                 modulelist::iterator mi = std::find(ml.begin(), ml.end(), mod);
655                 return (mi != ml.end());
656         }
657 }
658
659 void ModuleManager::UseInterface(const std::string &InterfaceName)
660 {
661         interfacelist::iterator iter = Interfaces.find(InterfaceName);
662         if (iter != Interfaces.end())
663                 iter->second.first++;
664
665 }
666
667 void ModuleManager::DoneWithInterface(const std::string &InterfaceName)
668 {
669         interfacelist::iterator iter = Interfaces.find(InterfaceName);
670         if (iter != Interfaces.end())
671                 iter->second.first--;
672 }
673
674 std::pair<int,std::string> ModuleManager::GetInterfaceInstanceCount(Module* m)
675 {
676         for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
677         {
678                 for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
679                 {
680                         if (*x == m)
681                         {
682                                 return std::make_pair(iter->second.first, iter->first);
683                         }
684                 }
685         }
686         return std::make_pair(0, "");
687 }
688
689 const std::string& ModuleManager::GetModuleName(Module* m)
690 {
691         static std::string nothing;
692
693         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
694         {
695                 if (n->second.second == m)
696                         return n->first;
697         }
698
699         return nothing;
700 }
701
702 /* This is ugly, yes, but hash_map's arent designed to be
703  * addressed in this manner, and this is a bit of a kludge.
704  * Luckily its a specialist function and rarely used by
705  * many modules (in fact, it was specially created to make
706  * m_safelist possible, initially).
707  */
708
709 Channel* InspIRCd::GetChannelIndex(long index)
710 {
711         int target = 0;
712         for (chan_hash::iterator n = this->chanlist->begin(); n != this->chanlist->end(); n++, target++)
713         {
714                 if (index == target)
715                         return n->second;
716         }
717         return NULL;
718 }
719
720 bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spattern)
721 {
722         return match(sliteral.c_str(),spattern.c_str());
723 }
724
725 CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const char* const* parameters, int pcnt, User* user)
726 {
727         return this->Parser->CallHandler(commandname,parameters,pcnt,user);
728 }
729
730 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
731 {
732         return this->Parser->IsValidCommand(commandname, pcnt, user);
733 }
734
735 void InspIRCd::AddCommand(Command *f)
736 {
737         if (!this->Parser->CreateCommand(f))
738         {
739                 ModuleException err("Command "+std::string(f->command)+" already exists.");
740                 throw (err);
741         }
742 }
743
744 void InspIRCd::SendMode(const char* const* parameters, int pcnt, User *user)
745 {
746         this->Modes->Process(parameters,pcnt,user,true);
747 }
748
749 void InspIRCd::DumpText(User* User, const std::string &LinePrefix, std::stringstream &TextStream)
750 {
751         std::string CompleteLine = LinePrefix;
752         std::string Word;
753         while (TextStream >> Word)
754         {
755                 if (CompleteLine.length() + Word.length() + 3 > 500)
756                 {
757                         User->WriteServ(CompleteLine);
758                         CompleteLine = LinePrefix;
759                 }
760                 CompleteLine = CompleteLine + Word + " ";
761         }
762         User->WriteServ(CompleteLine);
763 }
764
765 User* FindDescriptorHandler::Call(int socket)
766 {
767         return reinterpret_cast<User*>(Server->SE->GetRef(socket));
768 }
769
770 bool InspIRCd::AddResolver(Resolver* r, bool cached)
771 {
772         if (!cached)
773                 return this->Res->AddResolverClass(r);
774         else
775         {
776                 r->TriggerCachedResult();
777                 delete r;
778                 return true;
779         }
780 }
781
782 Module* ModuleManager::Find(const std::string &name)
783 {
784         std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(name);
785
786         if (modfind == Modules.end())
787                 return NULL;
788         else
789                 return modfind->second.second;
790 }
791
792 const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
793 {
794         std::vector<std::string> retval;
795         for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator x = Modules.begin(); x != Modules.end(); ++x)
796                 if (!filter || (x->second.second->GetVersion().Flags & filter))
797                         retval.push_back(x->first);
798         return retval;
799 }
800
801 ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance)
802 {
803         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
804         this->error = CONF_NO_ERROR;
805         this->data = &ServerInstance->Config->config_data;
806         this->privatehash = false;
807 }
808
809
810 ConfigReader::~ConfigReader()
811 {
812         if (this->errorlog)
813                 delete this->errorlog;
814         if(this->privatehash)
815                 delete this->data;
816 }
817
818
819 ConfigReader::ConfigReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
820 {
821         ServerInstance->Config->ClearStack();
822
823         this->error = CONF_NO_ERROR;
824         this->data = new ConfigDataHash;
825         this->privatehash = true;
826         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
827         /*** XXX: This might block! */
828         this->readerror = ServerInstance->Config->DoInclude(*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 }