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