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