]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Force heap allocation of refcountbase, create usecountbase for non-allocation referen...
[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 #include "inspircd.h"
15 #include "xline.h"
16 #include "socket.h"
17 #include "socketengine.h"
18 #include "command_parse.h"
19 #include "dns.h"
20 #include "exitcodes.h"
21
22 #ifndef WIN32
23         #include <dirent.h>
24 #endif
25
26
27 // Version is a simple class for holding a modules version number
28 template<>
29 VersionBase<API_VERSION>::VersionBase(const std::string &modv, int flags, const std::string& rev)
30 : description(modv), version(rev), Flags(flags)
31 {
32 }
33
34 Request::Request(Module* src, Module* dst, const char* idstr)
35 : id(idstr), source(src), dest(dst)
36 {
37 }
38
39 void Request::Send()
40 {
41         if (dest)
42                 dest->OnRequest(*this);
43 }
44
45 Event::Event(Module* src, const std::string &eventid) : source(src), id(eventid) { }
46
47 void Event::Send()
48 {
49         FOREACH_MOD(I_OnEvent,OnEvent(*this));
50 }
51
52 // These declarations define the behavours of the base class Module (which does nothing at all)
53
54 Module::Module() { }
55 CullResult Module::cull()
56 {
57         return classbase::cull();
58 }
59 Module::~Module()
60 {
61 }
62
63 ModResult       Module::OnSendSnotice(char &snomask, std::string &type, const std::string &message) { return MOD_RES_PASSTHRU; }
64 void            Module::OnUserConnect(LocalUser*) { }
65 void            Module::OnUserQuit(User*, const std::string&, const std::string&) { }
66 void            Module::OnUserDisconnect(LocalUser*) { }
67 void            Module::OnUserJoin(Membership*, bool, bool, CUList&) { }
68 void            Module::OnPostJoin(Membership*) { }
69 void            Module::OnUserPart(Membership*, std::string&, CUList&) { }
70 void            Module::OnPreRehash(User*, const std::string&) { }
71 void            Module::OnModuleRehash(User*, const std::string&) { }
72 void            Module::OnRehash(User*) { }
73 ModResult       Module::OnUserPreJoin(User*, Channel*, const char*, std::string&, const std::string&) { return MOD_RES_PASSTHRU; }
74 void            Module::OnMode(User*, void*, int, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
75 void            Module::OnOper(User*, const std::string&) { }
76 void            Module::OnPostOper(User*, const std::string&, const std::string &) { }
77 void            Module::OnInfo(User*) { }
78 void            Module::OnWhois(User*, User*) { }
79 ModResult       Module::OnUserPreInvite(User*, User*, Channel*, time_t) { return MOD_RES_PASSTHRU; }
80 ModResult       Module::OnUserPreMessage(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
81 ModResult       Module::OnUserPreNotice(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
82 ModResult       Module::OnUserPreNick(User*, const std::string&) { return MOD_RES_PASSTHRU; }
83 void            Module::OnUserPostNick(User*, const std::string&) { }
84 ModResult       Module::OnPreMode(User*, User*, Channel*, const std::vector<std::string>&) { return MOD_RES_PASSTHRU; }
85 void            Module::On005Numeric(std::string&) { }
86 ModResult       Module::OnKill(User*, User*, const std::string&) { return MOD_RES_PASSTHRU; }
87 void            Module::OnLoadModule(Module*) { }
88 void            Module::OnUnloadModule(Module*) { }
89 void            Module::OnBackgroundTimer(time_t) { }
90 ModResult       Module::OnPreCommand(std::string&, std::vector<std::string>&, User *, bool, const std::string&) { return MOD_RES_PASSTHRU; }
91 void            Module::OnPostCommand(const std::string&, const std::vector<std::string>&, User *, CmdResult, const std::string&) { }
92 ModResult       Module::OnCheckReady(LocalUser*) { return MOD_RES_PASSTHRU; }
93 ModResult       Module::OnUserRegister(LocalUser*) { return MOD_RES_PASSTHRU; }
94 ModResult       Module::OnUserPreKick(User*, Membership*, const std::string&) { return MOD_RES_PASSTHRU; }
95 void            Module::OnUserKick(User*, Membership*, const std::string&, CUList&) { }
96 ModResult       Module::OnRawMode(User*, Channel*, const char, const std::string &, bool, int) { return MOD_RES_PASSTHRU; }
97 ModResult       Module::OnCheckInvite(User*, Channel*) { return MOD_RES_PASSTHRU; }
98 ModResult       Module::OnCheckKey(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
99 ModResult       Module::OnCheckLimit(User*, Channel*) { return MOD_RES_PASSTHRU; }
100 ModResult       Module::OnCheckChannelBan(User*, Channel*) { return MOD_RES_PASSTHRU; }
101 ModResult       Module::OnCheckBan(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
102 ModResult       Module::OnExtBanCheck(User*, Channel*, char) { return MOD_RES_PASSTHRU; }
103 ModResult       Module::OnStats(char, User*, string_list&) { return MOD_RES_PASSTHRU; }
104 ModResult       Module::OnChangeLocalUserHost(LocalUser*, const std::string&) { return MOD_RES_PASSTHRU; }
105 ModResult       Module::OnChangeLocalUserGECOS(LocalUser*, const std::string&) { return MOD_RES_PASSTHRU; }
106 ModResult       Module::OnPreTopicChange(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
107 void            Module::OnEvent(Event&) { }
108 void            Module::OnRequest(Request&) { }
109 ModResult       Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { return MOD_RES_PASSTHRU; }
110 void            Module::OnGlobalOper(User*) { }
111 void            Module::OnPostConnect(User*) { }
112 ModResult       Module::OnAddBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
113 ModResult       Module::OnDelBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
114 void            Module::OnStreamSocketAccept(StreamSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { }
115 int             Module::OnStreamSocketWrite(StreamSocket*, std::string&) { return -1; }
116 void            Module::OnStreamSocketClose(StreamSocket*) { }
117 void            Module::OnStreamSocketConnect(StreamSocket*) { }
118 int             Module::OnStreamSocketRead(StreamSocket*, std::string&) { return -1; }
119 void            Module::OnUserMessage(User*, void*, int, const std::string&, char, const CUList&) { }
120 void            Module::OnUserNotice(User*, void*, int, const std::string&, char, const CUList&) { }
121 void            Module::OnRemoteKill(User*, User*, const std::string&, const std::string&) { }
122 void            Module::OnUserInvite(User*, User*, Channel*, time_t) { }
123 void            Module::OnPostTopicChange(User*, Channel*, const std::string&) { }
124 void            Module::OnGetServerDescription(const std::string&, std::string&) { }
125 void            Module::OnSyncUser(User*, Module*, void*) { }
126 void            Module::OnSyncChannel(Channel*, Module*, void*) { }
127 void            Module::OnSyncNetwork(Module*, void*) { }
128 void            Module::ProtoSendMode(void*, TargetTypeFlags, void*, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
129 void            Module::OnDecodeMetaData(Extensible*, const std::string&, const std::string&) { }
130 void            Module::ProtoSendMetaData(void*, Extensible*, const std::string&, const std::string&) { }
131 void            Module::OnWallops(User*, const std::string&) { }
132 void            Module::OnChangeHost(User*, const std::string&) { }
133 void            Module::OnChangeName(User*, const std::string&) { }
134 void            Module::OnChangeIdent(User*, const std::string&) { }
135 void            Module::OnAddLine(User*, XLine*) { }
136 void            Module::OnDelLine(User*, XLine*) { }
137 void            Module::OnExpireLine(XLine*) { }
138 void            Module::OnCleanup(int, void*) { }
139 ModResult       Module::OnChannelPreDelete(Channel*) { return MOD_RES_PASSTHRU; }
140 void            Module::OnChannelDelete(Channel*) { }
141 ModResult       Module::OnSetAway(User*, const std::string &) { return MOD_RES_PASSTHRU; }
142 ModResult       Module::OnUserList(User*, Channel*) { return MOD_RES_PASSTHRU; }
143 ModResult       Module::OnWhoisLine(User*, User*, int&, std::string&) { return MOD_RES_PASSTHRU; }
144 void            Module::OnBuildNeighborList(User*, UserChanList&, std::map<User*,bool>&) { }
145 void            Module::OnGarbageCollect() { }
146 void            Module::OnText(User*, void*, int, const std::string&, char, CUList&) { }
147 void            Module::OnRunTestSuite() { }
148 void            Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { }
149 ModResult       Module::OnNumeric(User*, unsigned int, const std::string&) { return MOD_RES_PASSTHRU; }
150 void            Module::OnHookIO(StreamSocket*, ListenSocket*) { }
151 ModResult   Module::OnAcceptConnection(int, ListenSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { return MOD_RES_PASSTHRU; }
152 void            Module::OnSendWhoLine(User*, User*, Channel*, std::string&) { }
153 ModResult       Module::OnChannelRestrictionApply(User*, Channel*, const char*) { return MOD_RES_PASSTHRU; }
154
155 ModuleManager::ModuleManager() : ModCount(0)
156 {
157 }
158
159 ModuleManager::~ModuleManager()
160 {
161 }
162
163 bool ModuleManager::Attach(Implementation i, Module* mod)
164 {
165         if (std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod) != EventHandlers[i].end())
166                 return false;
167
168         EventHandlers[i].push_back(mod);
169         return true;
170 }
171
172 bool ModuleManager::Detach(Implementation i, Module* mod)
173 {
174         EventHandlerIter x = std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod);
175
176         if (x == EventHandlers[i].end())
177                 return false;
178
179         EventHandlers[i].erase(x);
180         return true;
181 }
182
183 void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
184 {
185         for (size_t n = 0; n < sz; ++n)
186                 Attach(i[n], mod);
187 }
188
189 void ModuleManager::DetachAll(Module* mod)
190 {
191         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
192                 Detach((Implementation)n, mod);
193 }
194
195 bool ModuleManager::SetPriority(Module* mod, Priority s)
196 {
197         for (size_t n = I_BEGIN + 1; n != I_END; ++n)
198                 SetPriority(mod, (Implementation)n, s);
199
200         return true;
201 }
202
203 bool ModuleManager::SetPriority(Module* mod, Implementation i, Priority s, Module** modules, size_t sz)
204 {
205         /** To change the priority of a module, we first find its position in the vector,
206          * then we find the position of the other modules in the vector that this module
207          * wants to be before/after. We pick off either the first or last of these depending
208          * on which they want, and we make sure our module is *at least* before or after
209          * the first or last of this subset, depending again on the type of priority.
210          */
211         size_t swap_pos = 0;
212         size_t source = 0;
213         bool swap = true;
214         bool found = false;
215
216         /* Locate our module. This is O(n) but it only occurs on module load so we're
217          * not too bothered about it
218          */
219         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
220         {
221                 if (EventHandlers[i][x] == mod)
222                 {
223                         source = x;
224                         found = true;
225                         break;
226                 }
227         }
228
229         /* Eh? this module doesnt exist, probably trying to set priority on an event
230          * theyre not attached to.
231          */
232         if (!found)
233                 return false;
234
235         switch (s)
236         {
237                 /* Dummy value */
238                 case PRIORITY_DONTCARE:
239                         swap = false;
240                 break;
241                 /* Module wants to be first, sod everything else */
242                 case PRIORITY_FIRST:
243                         if (prioritizationState != PRIO_STATE_FIRST)
244                                 swap = false;
245                         else
246                                 swap_pos = 0;
247                 break;
248                 /* Module wants to be last. */
249                 case PRIORITY_LAST:
250                         if (prioritizationState != PRIO_STATE_FIRST)
251                                 swap = false;
252                         else if (EventHandlers[i].empty())
253                                 swap_pos = 0;
254                         else
255                                 swap_pos = EventHandlers[i].size() - 1;
256                 break;
257                 /* Place this module after a set of other modules */
258                 case PRIORITY_AFTER:
259                 {
260                         /* Find the latest possible position */
261                         swap_pos = 0;
262                         swap = false;
263                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
264                         {
265                                 for (size_t n = 0; n < sz; ++n)
266                                 {
267                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
268                                         {
269                                                 swap_pos = x;
270                                                 swap = true;
271                                         }
272                                 }
273                         }
274                 }
275                 break;
276                 /* Place this module before a set of other modules */
277                 case PRIORITY_BEFORE:
278                 {
279                         swap_pos = EventHandlers[i].size() - 1;
280                         swap = false;
281                         for (size_t x = 0; x != EventHandlers[i].size(); ++x)
282                         {
283                                 for (size_t n = 0; n < sz; ++n)
284                                 {
285                                         if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x <= swap_pos) && (source >= swap_pos))
286                                         {
287                                                 swap = true;
288                                                 swap_pos = x;
289                                         }
290                                 }
291                         }
292                 }
293                 break;
294         }
295
296         /* Do we need to swap? */
297         if (swap && (swap_pos != source))
298         {
299                 // We are going to change positions; we'll need to run again to verify all requirements
300                 if (prioritizationState == PRIO_STATE_LAST)
301                         prioritizationState = PRIO_STATE_AGAIN;
302                 /* Suggestion from Phoenix, "shuffle" the modules to better retain call order */
303                 int incrmnt = 1;
304
305                 if (source > swap_pos)
306                         incrmnt = -1;
307
308                 for (unsigned int j = source; j != swap_pos; j += incrmnt)
309                 {
310                         if (( j + incrmnt > EventHandlers[i].size() - 1) || (j + incrmnt < 0))
311                                 continue;
312
313                         std::swap(EventHandlers[i][j], EventHandlers[i][j+incrmnt]);
314                 }
315         }
316
317         return true;
318 }
319
320 std::string& ModuleManager::LastError()
321 {
322         return LastModuleError;
323 }
324
325 bool ModuleManager::Load(const char* filename)
326 {
327         /* Don't allow people to specify paths for modules, it doesn't work as expected */
328         if (strchr(filename, '/'))
329                 return false;
330         /* Do we have a glob pattern in the filename?
331          * The user wants to load multiple modules which
332          * match the pattern.
333          */
334         if (strchr(filename,'*') || (strchr(filename,'?')))
335         {
336                 int n_match = 0;
337                 DIR* library = opendir(ServerInstance->Config->ModPath.c_str());
338                 if (library)
339                 {
340                         /* Try and locate and load all modules matching the pattern */
341                         dirent* entry = NULL;
342                         while (0 != (entry = readdir(library)))
343                         {
344                                 if (InspIRCd::Match(entry->d_name, filename, ascii_case_insensitive_map))
345                                 {
346                                         if (!this->Load(entry->d_name))
347                                                 n_match++;
348                                 }
349                         }
350                         closedir(library);
351                 }
352                 /* Loadmodule will now return false if any one of the modules failed
353                  * to load (but wont abort when it encounters a bad one) and when 1 or
354                  * more modules were actually loaded.
355                  */
356                 return (n_match > 0 ? false : true);
357         }
358
359         char modfile[MAXBUF];
360         snprintf(modfile,MAXBUF,"%s/%s",ServerInstance->Config->ModPath.c_str(),filename);
361         std::string filename_str = filename;
362
363         if (!ServerConfig::FileExists(modfile))
364         {
365                 LastModuleError = "Module file could not be found: " + filename_str;
366                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
367                 return false;
368         }
369
370         if (Modules.find(filename_str) != Modules.end())
371         {
372                 LastModuleError = "Module " + filename_str + " is already loaded, cannot load a module twice!";
373                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
374                 return false;
375         }
376
377         Module* newmod = NULL;
378         DLLManager* newhandle = new DLLManager(modfile);
379
380         try
381         {
382                 newmod = newhandle->callInit();
383
384                 if (newmod)
385                 {
386                         newmod->ModuleSourceFile = filename_str;
387                         newmod->ModuleDLLManager = newhandle;
388                         Version v = newmod->GetVersion();
389
390                         ServerInstance->Logs->Log("MODULE", DEFAULT,"New module introduced: %s (Module version %s)%s",
391                                 filename, v.version.c_str(), (!(v.Flags & VF_VENDOR) ? " [3rd Party]" : " [Vendor]"));
392
393                         Modules[filename_str] = newmod;
394                 }
395                 else
396                 {
397                         LastModuleError = "Unable to load " + filename_str + ": " + newhandle->LastError();
398                         ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
399                         delete newhandle;
400                         return false;
401                 }
402         }
403         catch (CoreException& modexcept)
404         {
405                 // failure in module constructor
406                 delete newmod;
407                 delete newhandle;
408                 LastModuleError = "Unable to load " + filename_str + ": " + modexcept.GetReason();
409                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
410                 return false;
411         }
412
413         this->ModCount++;
414         FOREACH_MOD(I_OnLoadModule,OnLoadModule(newmod));
415
416         /* We give every module a chance to re-prioritize when we introduce a new one,
417          * not just the one thats loading, as the new module could affect the preference
418          * of others
419          */
420         for(int tries = 0; tries < 20; tries++)
421         {
422                 prioritizationState = tries > 0 ? PRIO_STATE_LAST : PRIO_STATE_FIRST;
423                 for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
424                         n->second->Prioritize();
425
426                 if (prioritizationState == PRIO_STATE_LAST)
427                         break;
428                 if (tries == 19)
429                         ServerInstance->Logs->Log("MODULE", DEFAULT, "Hook priority dependency loop detected while loading " + filename_str);
430         }
431
432         ServerInstance->BuildISupport();
433         return true;
434 }
435
436 bool ModuleManager::CanUnload(Module* mod)
437 {
438         std::map<std::string, Module*>::iterator modfind = Modules.find(mod->ModuleSourceFile);
439
440         if (modfind == Modules.end() || modfind->second != mod)
441         {
442                 LastModuleError = "Module " + mod->ModuleSourceFile + " is not loaded, cannot unload it!";
443                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
444                 return false;
445         }
446         if (mod->GetVersion().Flags & VF_STATIC)
447         {
448                 LastModuleError = "Module " + mod->ModuleSourceFile + " not unloadable (marked static)";
449                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
450                 return false;
451         }
452         std::pair<int,std::string> intercount = GetInterfaceInstanceCount(mod);
453         if (intercount.first > 0)
454         {
455                 LastModuleError = "Failed to unload module " + mod->ModuleSourceFile + ", being used by " + ConvToStr(intercount.first) + " other(s) via interface '" + intercount.second + "'";
456                 ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
457                 return false;
458         }
459         return true;
460 }
461
462 void ModuleManager::DoSafeUnload(Module* mod)
463 {
464         std::map<std::string, Module*>::iterator modfind = Modules.find(mod->ModuleSourceFile);
465
466         std::vector<reference<ExtensionItem> > items;
467         ServerInstance->Extensions.BeginUnregister(modfind->second, items);
468         /* Give the module a chance to tidy out all its metadata */
469         for (chan_hash::iterator c = ServerInstance->chanlist->begin(); c != ServerInstance->chanlist->end(); c++)
470         {
471                 mod->OnCleanup(TYPE_CHANNEL,c->second);
472                 c->second->doUnhookExtensions(items);
473                 const UserMembList* users = c->second->GetUsers();
474                 for(UserMembCIter mi = users->begin(); mi != users->end(); mi++)
475                         mi->second->doUnhookExtensions(items);
476         }
477         for (user_hash::iterator u = ServerInstance->Users->clientlist->begin(); u != ServerInstance->Users->clientlist->end(); u++)
478         {
479                 mod->OnCleanup(TYPE_USER,u->second);
480                 u->second->doUnhookExtensions(items);
481         }
482         for(char m='A'; m <= 'z'; m++)
483         {
484                 ModeHandler* mh;
485                 mh = ServerInstance->Modes->FindMode(m, MODETYPE_USER);
486                 if (mh && mh->creator == mod)
487                         ServerInstance->Modes->DelMode(mh);
488                 mh = ServerInstance->Modes->FindMode(m, MODETYPE_CHANNEL);
489                 if (mh && mh->creator == mod)
490                         ServerInstance->Modes->DelMode(mh);
491         }
492
493         /* Tidy up any dangling resolvers */
494         ServerInstance->Res->CleanResolvers(mod);
495
496         FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(mod));
497
498         DetachAll(mod);
499
500         Modules.erase(modfind);
501         ServerInstance->GlobalCulls.AddItem(mod);
502
503         ServerInstance->Logs->Log("MODULE", DEFAULT,"Module %s unloaded",mod->ModuleSourceFile.c_str());
504         this->ModCount--;
505         ServerInstance->BuildISupport();
506 }
507
508 namespace {
509         struct UnloadAction : public HandlerBase0<void>
510         {
511                 Module* const mod;
512                 UnloadAction(Module* m) : mod(m) {}
513                 void Call()
514                 {
515                         DLLManager* dll = mod->ModuleDLLManager;
516                         ServerInstance->Modules->DoSafeUnload(mod);
517                         ServerInstance->GlobalCulls.Apply();
518                         delete dll;
519                         ServerInstance->GlobalCulls.AddItem(this);
520                 }
521         };
522
523         struct ReloadAction : public HandlerBase0<void>
524         {
525                 Module* const mod;
526                 HandlerBase1<void, bool>* const callback;
527                 ReloadAction(Module* m, HandlerBase1<void, bool>* c)
528                         : mod(m), callback(c) {}
529                 void Call()
530                 {
531                         DLLManager* dll = mod->ModuleDLLManager;
532                         std::string name = mod->ModuleSourceFile;
533                         ServerInstance->Modules->DoSafeUnload(mod);
534                         ServerInstance->GlobalCulls.Apply();
535                         delete dll;
536                         bool rv = ServerInstance->Modules->Load(name.c_str());
537                         callback->Call(rv);
538                         ServerInstance->GlobalCulls.AddItem(this);
539                 }
540         };
541 }
542
543 bool ModuleManager::Unload(Module* mod)
544 {
545         if (!CanUnload(mod))
546                 return false;
547         ServerInstance->AtomicActions.AddAction(new UnloadAction(mod));
548         return true;
549 }
550
551 void ModuleManager::Reload(Module* mod, HandlerBase1<void, bool>* callback)
552 {
553         if (CanUnload(mod))
554                 ServerInstance->AtomicActions.AddAction(new ReloadAction(mod, callback));
555         else
556                 callback->Call(false);
557 }
558
559 /* We must load the modules AFTER initializing the socket engine, now */
560 void ModuleManager::LoadAll()
561 {
562         ModCount = 0;
563
564         printf("\nLoading core commands");
565         fflush(stdout);
566
567         DIR* library = opendir(ServerInstance->Config->ModPath.c_str());
568         if (library)
569         {
570                 dirent* entry = NULL;
571                 while (0 != (entry = readdir(library)))
572                 {
573                         if (InspIRCd::Match(entry->d_name, "cmd_*.so", ascii_case_insensitive_map))
574                         {
575                                 printf(".");
576                                 fflush(stdout);
577
578                                 if (!Load(entry->d_name))
579                                 {
580                                         ServerInstance->Logs->Log("MODULE", DEFAULT, this->LastError());
581                                         printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
582                                         ServerInstance->Exit(EXIT_STATUS_MODULE);
583                                 }
584                         }
585                 }
586                 closedir(library);
587                 printf("\n");
588         }
589
590         ConfigTagList tags = ServerInstance->Config->ConfTags("module");
591         for(ConfigIter i = tags.first; i != tags.second; ++i)
592         {
593                 ConfigTag* tag = i->second;
594                 std::string name = tag->getString("name");
595                 printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",name.c_str());
596
597                 if (!this->Load(name.c_str()))
598                 {
599                         ServerInstance->Logs->Log("MODULE", DEFAULT, this->LastError());
600                         printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
601                         ServerInstance->Exit(EXIT_STATUS_MODULE);
602                 }
603         }
604 }
605
606 void ModuleManager::UnloadAll()
607 {
608         /* We do this more than once, so that any service providers get a
609          * chance to be unhooked by the modules using them, but then get
610          * a chance to be removed themsleves.
611          *
612          * Note: this deliberately does NOT delete the DLLManager objects
613          */
614         for (int tries = 0; tries < 4; tries++)
615         {
616                 std::map<std::string, Module*>::iterator i = Modules.begin();
617                 while (i != Modules.end())
618                 {
619                         std::map<std::string, Module*>::iterator me = i++;
620                         if (CanUnload(me->second))
621                         {
622                                 DoSafeUnload(me->second);
623                         }
624                 }
625                 ServerInstance->GlobalCulls.Apply();
626         }
627 }
628
629 bool ModuleManager::PublishFeature(const std::string &FeatureName, Module* Mod)
630 {
631         if (Features.find(FeatureName) == Features.end())
632         {
633                 Features[FeatureName] = Mod;
634                 return true;
635         }
636         return false;
637 }
638
639 bool ModuleManager::UnpublishFeature(const std::string &FeatureName)
640 {
641         featurelist::iterator iter = Features.find(FeatureName);
642
643         if (iter == Features.end())
644                 return false;
645
646         Features.erase(iter);
647         return true;
648 }
649
650 Module* ModuleManager::FindFeature(const std::string &FeatureName)
651 {
652         featurelist::iterator iter = Features.find(FeatureName);
653
654         if (iter == Features.end())
655                 return NULL;
656
657         return iter->second;
658 }
659
660 bool ModuleManager::PublishInterface(const std::string &InterfaceName, Module* Mod)
661 {
662         interfacelist::iterator iter = Interfaces.find(InterfaceName);
663
664         if (iter == Interfaces.end())
665         {
666                 modulelist ml;
667                 ml.push_back(Mod);
668                 Interfaces[InterfaceName] = std::make_pair(0, ml);
669         }
670         else
671         {
672                 iter->second.second.push_back(Mod);
673         }
674         return true;
675 }
676
677 bool ModuleManager::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
678 {
679         interfacelist::iterator iter = Interfaces.find(InterfaceName);
680
681         if (iter == Interfaces.end())
682                 return false;
683
684         for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
685         {
686                 if (*x == Mod)
687                 {
688                         iter->second.second.erase(x);
689                         if (iter->second.second.empty())
690                                 Interfaces.erase(InterfaceName);
691                         return true;
692                 }
693         }
694         return false;
695 }
696
697 modulelist* ModuleManager::FindInterface(const std::string &InterfaceName)
698 {
699         interfacelist::iterator iter = Interfaces.find(InterfaceName);
700         if (iter == Interfaces.end())
701                 return NULL;
702         else
703                 return &(iter->second.second);
704 }
705
706 bool ModuleManager::ModuleHasInterface(Module* mod, const std::string& InterfaceName)
707 {
708         interfacelist::iterator iter = Interfaces.find(InterfaceName);
709         if (iter == Interfaces.end())
710                 return false;
711         else
712         {
713                 modulelist& ml = iter->second.second;
714                 modulelist::iterator mi = std::find(ml.begin(), ml.end(), mod);
715                 return (mi != ml.end());
716         }
717 }
718
719 void ModuleManager::UseInterface(const std::string &InterfaceName)
720 {
721         interfacelist::iterator iter = Interfaces.find(InterfaceName);
722         if (iter != Interfaces.end())
723                 iter->second.first++;
724
725 }
726
727 void ModuleManager::DoneWithInterface(const std::string &InterfaceName)
728 {
729         interfacelist::iterator iter = Interfaces.find(InterfaceName);
730         if (iter != Interfaces.end())
731                 iter->second.first--;
732 }
733
734 std::pair<int,std::string> ModuleManager::GetInterfaceInstanceCount(Module* m)
735 {
736         for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
737         {
738                 for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
739                 {
740                         if (*x == m)
741                         {
742                                 return std::make_pair(iter->second.first, iter->first);
743                         }
744                 }
745         }
746         return std::make_pair(0, "");
747 }
748
749 const std::string& ModuleManager::GetModuleName(Module* m)
750 {
751         static std::string nothing;
752
753         for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
754         {
755                 if (n->second == m)
756                         return n->first;
757         }
758
759         return nothing;
760 }
761
762 CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user)
763 {
764         return this->Parser->CallHandler(commandname, parameters, user);
765 }
766
767 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
768 {
769         return this->Parser->IsValidCommand(commandname, pcnt, user);
770 }
771
772 void InspIRCd::AddCommand(Command *f)
773 {
774         if (!this->Parser->AddCommand(f))
775         {
776                 throw ModuleException("Command "+std::string(f->command)+" already exists.");
777         }
778 }
779
780 void InspIRCd::SendMode(const std::vector<std::string>& parameters, User *user)
781 {
782         this->Modes->Process(parameters, user);
783 }
784
785 bool InspIRCd::AddResolver(Resolver* r, bool cached)
786 {
787         if (!cached)
788                 return this->Res->AddResolverClass(r);
789         else
790         {
791                 r->TriggerCachedResult();
792                 delete r;
793                 return true;
794         }
795 }
796
797 Module* ModuleManager::Find(const std::string &name)
798 {
799         std::map<std::string, Module*>::iterator modfind = Modules.find(name);
800
801         if (modfind == Modules.end())
802                 return NULL;
803         else
804                 return modfind->second;
805 }
806
807 const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
808 {
809         std::vector<std::string> retval;
810         for (std::map<std::string, Module*>::iterator x = Modules.begin(); x != Modules.end(); ++x)
811                 if (!filter || (x->second->GetVersion().Flags & filter))
812                         retval.push_back(x->first);
813         return retval;
814 }
815
816 ConfigReader::ConfigReader()
817 {
818         this->error = 0;
819 }
820
821
822 ConfigReader::~ConfigReader()
823 {
824 }
825
826 static ConfigTag* SlowGetTag(const std::string &tag, int index)
827 {
828         ConfigTagList tags = ServerInstance->Config->ConfTags(tag);
829         while (tags.first != tags.second)
830         {
831                 if (!index)
832                         return tags.first->second;
833                 tags.first++;
834                 index--;
835         }
836         return NULL;
837 }
838
839 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
840 {
841         std::string result = default_value;
842         if (!SlowGetTag(tag, index)->readString(name, result, allow_linefeeds))
843         {
844                 this->error = CONF_VALUE_NOT_FOUND;
845         }
846         return result;
847 }
848
849 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
850 {
851         return ReadValue(tag, name, "", index, allow_linefeeds);
852 }
853
854 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
855 {
856         bool def = (default_value == "yes");
857         return SlowGetTag(tag, index)->getBool(name, def);
858 }
859
860 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
861 {
862         return ReadFlag(tag, name, "", index);
863 }
864
865
866 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive)
867 {
868         int v = atoi(default_value.c_str());
869         int result = SlowGetTag(tag, index)->getInt(name, v);
870
871         if ((need_positive) && (result < 0))
872         {
873                 this->error = CONF_INT_NEGATIVE;
874                 return 0;
875         }
876
877         return result;
878 }
879
880 int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive)
881 {
882         return ReadInteger(tag, name, "", index, need_positive);
883 }
884
885 long ConfigReader::GetError()
886 {
887         long olderr = this->error;
888         this->error = 0;
889         return olderr;
890 }
891
892 int ConfigReader::Enumerate(const std::string &tag)
893 {
894         ServerInstance->Logs->Log("MODULE", DEBUG, "Module is using ConfigReader::Enumerate on %s; this is slow!",
895                 tag.c_str());
896         int i=0;
897         while (SlowGetTag(tag, i)) i++;
898         return i;
899 }
900
901 FileReader::FileReader(const std::string &filename)
902 {
903         LoadFile(filename);
904 }
905
906 FileReader::FileReader()
907 {
908 }
909
910 std::string FileReader::Contents()
911 {
912         std::string x;
913         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
914         {
915                 x.append(*a);
916                 x.append("\r\n");
917         }
918         return x;
919 }
920
921 unsigned long FileReader::ContentSize()
922 {
923         return this->contentsize;
924 }
925
926 void FileReader::CalcSize()
927 {
928         unsigned long n = 0;
929         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
930                 n += (a->length() + 2);
931         this->contentsize = n;
932 }
933
934 void FileReader::LoadFile(const std::string &filename)
935 {
936         file_cache c;
937         c.clear();
938         if (ServerInstance->Config->ReadFile(c,filename.c_str()))
939         {
940                 this->fc = c;
941                 this->CalcSize();
942         }
943 }
944
945
946 FileReader::~FileReader()
947 {
948 }
949
950 bool FileReader::Exists()
951 {
952         return (!(fc.size() == 0));
953 }
954
955 std::string FileReader::GetLine(int x)
956 {
957         if ((x<0) || ((unsigned)x>fc.size()))
958                 return "";
959         return fc[x];
960 }
961
962 int FileReader::FileSize()
963 {
964         return fc.size();
965 }