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