]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Replace most usages of "GECOS" with "real" or "real name".
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
8  *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
9  *   Copyright (C) 2006-2007 Oliver Lupton <oliverlupton@gmail.com>
10  *   Copyright (C) 2007 Pippijn van Steenhoven <pip88nl@gmail.com>
11  *   Copyright (C) 2003 randomdan <???@???>
12  *
13  * This file is part of InspIRCd.  InspIRCd is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General Public
15  * License as published by the Free Software Foundation, version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26
27 #include <iostream>
28 #include "inspircd.h"
29 #include "exitcodes.h"
30
31 #ifndef _WIN32
32         #include <dirent.h>
33 #endif
34
35 static insp::intrusive_list<dynamic_reference_base>* dynrefs = NULL;
36
37 void dynamic_reference_base::reset_all()
38 {
39         if (!dynrefs)
40                 return;
41         for (insp::intrusive_list<dynamic_reference_base>::iterator i = dynrefs->begin(); i != dynrefs->end(); ++i)
42                 (*i)->resolve();
43 }
44
45 // Version is a simple class for holding a modules version number
46 Version::Version(const std::string &desc, int flags) : description(desc), Flags(flags)
47 {
48 }
49
50 Version::Version(const std::string &desc, int flags, const std::string& linkdata)
51 : description(desc), Flags(flags), link_data(linkdata)
52 {
53 }
54
55 // These declarations define the behavours of the base class Module (which does nothing at all)
56
57 Module::Module() { }
58 CullResult Module::cull()
59 {
60         return classbase::cull();
61 }
62 Module::~Module()
63 {
64 }
65
66 void Module::DetachEvent(Implementation i)
67 {
68         ServerInstance->Modules->Detach(i, this);
69 }
70
71 void            Module::ReadConfig(ConfigStatus& status) { }
72 ModResult       Module::OnSendSnotice(char &snomask, std::string &type, const std::string &message) { DetachEvent(I_OnSendSnotice); return MOD_RES_PASSTHRU; }
73 void            Module::OnUserConnect(LocalUser*) { DetachEvent(I_OnUserConnect); }
74 void            Module::OnUserQuit(User*, const std::string&, const std::string&) { DetachEvent(I_OnUserQuit); }
75 void            Module::OnUserDisconnect(LocalUser*) { DetachEvent(I_OnUserDisconnect); }
76 void            Module::OnUserJoin(Membership*, bool, bool, CUList&) { DetachEvent(I_OnUserJoin); }
77 void            Module::OnPostJoin(Membership*) { DetachEvent(I_OnPostJoin); }
78 void            Module::OnUserPart(Membership*, std::string&, CUList&) { DetachEvent(I_OnUserPart); }
79 void            Module::OnPreRehash(User*, const std::string&) { DetachEvent(I_OnPreRehash); }
80 void            Module::OnModuleRehash(User*, const std::string&) { DetachEvent(I_OnModuleRehash); }
81 ModResult       Module::OnUserPreJoin(LocalUser*, Channel*, const std::string&, std::string&, const std::string&) { DetachEvent(I_OnUserPreJoin); return MOD_RES_PASSTHRU; }
82 void            Module::OnMode(User*, User*, Channel*, const Modes::ChangeList&, ModeParser::ModeProcessFlag, const std::string&) { DetachEvent(I_OnMode); }
83 void            Module::OnOper(User*, const std::string&) { DetachEvent(I_OnOper); }
84 void            Module::OnPostOper(User*, const std::string&, const std::string &) { DetachEvent(I_OnPostOper); }
85 void            Module::OnPostDeoper(User*) { DetachEvent(I_OnPostDeoper); }
86 void            Module::OnInfo(User*) { DetachEvent(I_OnInfo); }
87 ModResult       Module::OnUserPreInvite(User*, User*, Channel*, time_t) { DetachEvent(I_OnUserPreInvite); return MOD_RES_PASSTHRU; }
88 ModResult       Module::OnUserPreMessage(User*, const MessageTarget&, MessageDetails&) { DetachEvent(I_OnUserPreMessage); return MOD_RES_PASSTHRU; }
89 ModResult       Module::OnUserPreNick(LocalUser*, const std::string&) { DetachEvent(I_OnUserPreNick); return MOD_RES_PASSTHRU; }
90 void            Module::OnUserPostNick(User*, const std::string&) { DetachEvent(I_OnUserPostNick); }
91 ModResult       Module::OnPreMode(User*, User*, Channel*, Modes::ChangeList&) { DetachEvent(I_OnPreMode); return MOD_RES_PASSTHRU; }
92 void            Module::On005Numeric(std::map<std::string, std::string>&) { DetachEvent(I_On005Numeric); }
93 ModResult       Module::OnKill(User*, User*, const std::string&) { DetachEvent(I_OnKill); return MOD_RES_PASSTHRU; }
94 void            Module::OnLoadModule(Module*) { DetachEvent(I_OnLoadModule); }
95 void            Module::OnUnloadModule(Module*) { DetachEvent(I_OnUnloadModule); }
96 void            Module::OnBackgroundTimer(time_t) { DetachEvent(I_OnBackgroundTimer); }
97 ModResult       Module::OnPreCommand(std::string&, CommandBase::Params&, LocalUser*, bool, const std::string&) { DetachEvent(I_OnPreCommand); return MOD_RES_PASSTHRU; }
98 void            Module::OnPostCommand(Command*, const CommandBase::Params&, LocalUser*, CmdResult, const std::string&) { DetachEvent(I_OnPostCommand); }
99 void            Module::OnUserInit(LocalUser*) { DetachEvent(I_OnUserInit); }
100 ModResult       Module::OnCheckReady(LocalUser*) { DetachEvent(I_OnCheckReady); return MOD_RES_PASSTHRU; }
101 ModResult       Module::OnUserRegister(LocalUser*) { DetachEvent(I_OnUserRegister); return MOD_RES_PASSTHRU; }
102 ModResult       Module::OnUserPreKick(User*, Membership*, const std::string&) { DetachEvent(I_OnUserPreKick); return MOD_RES_PASSTHRU; }
103 void            Module::OnUserKick(User*, Membership*, const std::string&, CUList&) { DetachEvent(I_OnUserKick); }
104 ModResult       Module::OnRawMode(User*, Channel*, ModeHandler*, const std::string&, bool) { DetachEvent(I_OnRawMode); return MOD_RES_PASSTHRU; }
105 ModResult       Module::OnCheckInvite(User*, Channel*) { DetachEvent(I_OnCheckInvite); return MOD_RES_PASSTHRU; }
106 ModResult       Module::OnCheckKey(User*, Channel*, const std::string&) { DetachEvent(I_OnCheckKey); return MOD_RES_PASSTHRU; }
107 ModResult       Module::OnCheckLimit(User*, Channel*) { DetachEvent(I_OnCheckLimit); return MOD_RES_PASSTHRU; }
108 ModResult       Module::OnCheckChannelBan(User*, Channel*) { DetachEvent(I_OnCheckChannelBan); return MOD_RES_PASSTHRU; }
109 ModResult       Module::OnCheckBan(User*, Channel*, const std::string&) { DetachEvent(I_OnCheckBan); return MOD_RES_PASSTHRU; }
110 ModResult       Module::OnExtBanCheck(User*, Channel*, char) { DetachEvent(I_OnExtBanCheck); return MOD_RES_PASSTHRU; }
111 ModResult       Module::OnChangeLocalUserHost(LocalUser*, const std::string&) { DetachEvent(I_OnChangeLocalUserHost); return MOD_RES_PASSTHRU; }
112 ModResult       Module::OnPreChangeRealName(LocalUser*, const std::string&) { DetachEvent(I_OnPreChangeRealName); return MOD_RES_PASSTHRU; }
113 ModResult       Module::OnPreTopicChange(User*, Channel*, const std::string&) { DetachEvent(I_OnPreTopicChange); return MOD_RES_PASSTHRU; }
114 ModResult       Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { DetachEvent(I_OnPassCompare); return MOD_RES_PASSTHRU; }
115 void            Module::OnPostConnect(User*) { DetachEvent(I_OnPostConnect); }
116 void            Module::OnUserPostMessage(User*, const MessageTarget&, const MessageDetails&) { DetachEvent(I_OnUserPostMessage); }
117 void            Module::OnUserMessageBlocked(User*, const MessageTarget&, const MessageDetails&) { DetachEvent(I_OnUserMessageBlocked); }
118 void            Module::OnUserInvite(User*, User*, Channel*, time_t, unsigned int, CUList&) { DetachEvent(I_OnUserInvite); }
119 void            Module::OnPostTopicChange(User*, Channel*, const std::string&) { DetachEvent(I_OnPostTopicChange); }
120 void            Module::OnDecodeMetaData(Extensible*, const std::string&, const std::string&) { DetachEvent(I_OnDecodeMetaData); }
121 void            Module::OnChangeHost(User*, const std::string&) { DetachEvent(I_OnChangeHost); }
122 void            Module::OnChangeName(User*, const std::string&) { DetachEvent(I_OnChangeName); }
123 void            Module::OnChangeIdent(User*, const std::string&) { DetachEvent(I_OnChangeIdent); }
124 void            Module::OnAddLine(User*, XLine*) { DetachEvent(I_OnAddLine); }
125 void            Module::OnDelLine(User*, XLine*) { DetachEvent(I_OnDelLine); }
126 void            Module::OnExpireLine(XLine*) { DetachEvent(I_OnExpireLine); }
127 void            Module::OnCleanup(ExtensionItem::ExtensibleType, Extensible*) { }
128 ModResult       Module::OnChannelPreDelete(Channel*) { DetachEvent(I_OnChannelPreDelete); return MOD_RES_PASSTHRU; }
129 void            Module::OnChannelDelete(Channel*) { DetachEvent(I_OnChannelDelete); }
130 ModResult       Module::OnSetAway(User*, const std::string &) { DetachEvent(I_OnSetAway); return MOD_RES_PASSTHRU; }
131 void            Module::OnBuildNeighborList(User*, IncludeChanList&, std::map<User*,bool>&) { DetachEvent(I_OnBuildNeighborList); }
132 void            Module::OnGarbageCollect() { DetachEvent(I_OnGarbageCollect); }
133 ModResult       Module::OnSetConnectClass(LocalUser* user, ConnectClass* myclass) { DetachEvent(I_OnSetConnectClass); return MOD_RES_PASSTHRU; }
134 void            Module::OnUserMessage(User*, const MessageTarget&, const MessageDetails&) { DetachEvent(I_OnUserMessage); }
135 ModResult       Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { DetachEvent(I_OnNamesListItem); return MOD_RES_PASSTHRU; }
136 ModResult       Module::OnNumeric(User*, const Numeric::Numeric&) { DetachEvent(I_OnNumeric); return MOD_RES_PASSTHRU; }
137 ModResult   Module::OnAcceptConnection(int, ListenSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { DetachEvent(I_OnAcceptConnection); return MOD_RES_PASSTHRU; }
138 ModResult       Module::OnSendWhoLine(User*, const std::vector<std::string>&, User*, Membership*, Numeric::Numeric&) { DetachEvent(I_OnSendWhoLine); return MOD_RES_PASSTHRU; }
139 void            Module::OnSetUserIP(LocalUser*) { DetachEvent(I_OnSetUserIP); }
140 void            Module::OnServiceAdd(ServiceProvider&) { DetachEvent(I_OnServiceAdd); }
141 void            Module::OnServiceDel(ServiceProvider&) { DetachEvent(I_OnServiceDel); }
142
143 #ifdef INSPIRCD_ENABLE_TESTSUITE
144 void            Module::OnRunTestSuite() { }
145 #endif
146
147 ServiceProvider::ServiceProvider(Module* Creator, const std::string& Name, ServiceType Type)
148         : creator(Creator), name(Name), service(Type)
149 {
150         if ((ServerInstance) && (ServerInstance->Modules->NewServices))
151                 ServerInstance->Modules->NewServices->push_back(this);
152 }
153
154 void ServiceProvider::DisableAutoRegister()
155 {
156         if ((ServerInstance) && (ServerInstance->Modules->NewServices))
157                 stdalgo::erase(*ServerInstance->Modules->NewServices, this);
158 }
159
160 ModuleManager::ModuleManager()
161 {
162 }
163
164 ModuleManager::~ModuleManager()
165 {
166 }
167
168 bool ModuleManager::Attach(Implementation i, Module* mod)
169 {
170         if (stdalgo::isin(EventHandlers[i], mod))
171                 return false;
172
173         EventHandlers[i].push_back(mod);
174         return true;
175 }
176
177 bool ModuleManager::Detach(Implementation i, Module* mod)
178 {
179         return stdalgo::erase(EventHandlers[i], mod);
180 }
181
182 void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
183 {
184         for (size_t n = 0; n < sz; ++n)
185                 Attach(i[n], mod);
186 }
187
188 void ModuleManager::AttachAll(Module* mod)
189 {
190         for (size_t i = 0; i != I_END; ++i)
191                 Attach((Implementation)i, mod);
192 }
193
194 void ModuleManager::DetachAll(Module* mod)
195 {
196         for (size_t n = 0; n != I_END; ++n)
197                 Detach((Implementation)n, mod);
198 }
199
200 void ModuleManager::SetPriority(Module* mod, Priority s)
201 {
202         for (size_t n = 0; n != I_END; ++n)
203                 SetPriority(mod, (Implementation)n, s);
204 }
205
206 bool ModuleManager::SetPriority(Module* mod, Implementation i, Priority s, Module* which)
207 {
208         /** To change the priority of a module, we first find its position in the vector,
209          * then we find the position of the other modules in the vector that this module
210          * wants to be before/after. We pick off either the first or last of these depending
211          * on which they want, and we make sure our module is *at least* before or after
212          * the first or last of this subset, depending again on the type of priority.
213          */
214         size_t my_pos = 0;
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                         my_pos = x;
224                         goto found_src;
225                 }
226         }
227
228         /* Eh? this module doesnt exist, probably trying to set priority on an event
229          * theyre not attached to.
230          */
231         return false;
232
233 found_src:
234         // The modules registered for a hook are called in reverse order (to allow for easier removal
235         // of list entries while looping), meaning that the Priority given to us has the exact opposite effect
236         // on the list, e.g.: PRIORITY_BEFORE will actually put 'mod' after 'which', etc.
237         size_t swap_pos = my_pos;
238         switch (s)
239         {
240                 case PRIORITY_LAST:
241                         if (prioritizationState != PRIO_STATE_FIRST)
242                                 return true;
243                         else
244                                 swap_pos = 0;
245                         break;
246                 case PRIORITY_FIRST:
247                         if (prioritizationState != PRIO_STATE_FIRST)
248                                 return true;
249                         else
250                                 swap_pos = EventHandlers[i].size() - 1;
251                         break;
252                 case PRIORITY_BEFORE:
253                 {
254                         /* Find the latest possible position, only searching AFTER our position */
255                         for (size_t x = EventHandlers[i].size() - 1; x > my_pos; --x)
256                         {
257                                 if (EventHandlers[i][x] == which)
258                                 {
259                                         swap_pos = x;
260                                         goto swap_now;
261                                 }
262                         }
263                         // didn't find it - either not loaded or we're already after
264                         return true;
265                 }
266                 /* Place this module before a set of other modules */
267                 case PRIORITY_AFTER:
268                 {
269                         for (size_t x = 0; x < my_pos; ++x)
270                         {
271                                 if (EventHandlers[i][x] == which)
272                                 {
273                                         swap_pos = x;
274                                         goto swap_now;
275                                 }
276                         }
277                         // didn't find it - either not loaded or we're already before
278                         return true;
279                 }
280         }
281
282 swap_now:
283         /* Do we need to swap? */
284         if (swap_pos != my_pos)
285         {
286                 // We are going to change positions; we'll need to run again to verify all requirements
287                 if (prioritizationState == PRIO_STATE_LAST)
288                         prioritizationState = PRIO_STATE_AGAIN;
289                 /* Suggestion from Phoenix, "shuffle" the modules to better retain call order */
290                 int incrmnt = 1;
291
292                 if (my_pos > swap_pos)
293                         incrmnt = -1;
294
295                 for (unsigned int j = my_pos; j != swap_pos; j += incrmnt)
296                 {
297                         if ((j + incrmnt > EventHandlers[i].size() - 1) || ((incrmnt == -1) && (j == 0)))
298                                 continue;
299
300                         std::swap(EventHandlers[i][j], EventHandlers[i][j+incrmnt]);
301                 }
302         }
303
304         return true;
305 }
306
307 bool ModuleManager::PrioritizeHooks()
308 {
309         /* We give every module a chance to re-prioritize when we introduce a new one,
310          * not just the one thats loading, as the new module could affect the preference
311          * of others
312          */
313         for (int tries = 0; tries < 20; tries++)
314         {
315                 prioritizationState = tries > 0 ? PRIO_STATE_LAST : PRIO_STATE_FIRST;
316                 for (std::map<std::string, Module*>::iterator n = Modules.begin(); n != Modules.end(); ++n)
317                         n->second->Prioritize();
318
319                 if (prioritizationState == PRIO_STATE_LAST)
320                         break;
321                 if (tries == 19)
322                 {
323                         ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, "Hook priority dependency loop detected");
324                         return false;
325                 }
326         }
327         return true;
328 }
329
330 bool ModuleManager::CanUnload(Module* mod)
331 {
332         std::map<std::string, Module*>::iterator modfind = Modules.find(mod->ModuleSourceFile);
333
334         if ((modfind == Modules.end()) || (modfind->second != mod) || (mod->dying))
335         {
336                 LastModuleError = "Module " + mod->ModuleSourceFile + " is not loaded, cannot unload it!";
337                 ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, LastModuleError);
338                 return false;
339         }
340
341         mod->dying = true;
342         return true;
343 }
344
345 void ModuleManager::UnregisterModes(Module* mod, ModeType modetype)
346 {
347         const ModeParser::ModeHandlerMap& modes = ServerInstance->Modes.GetModes(modetype);
348         for (ModeParser::ModeHandlerMap::const_iterator i = modes.begin(); i != modes.end(); )
349         {
350                 ModeHandler* const mh = i->second;
351                 ++i;
352                 if (mh->creator == mod)
353                         this->DelService(*mh);
354         }
355 }
356
357 void ModuleManager::DoSafeUnload(Module* mod)
358 {
359         // First, notify all modules that a module is about to be unloaded, so in case
360         // they pass execution to the soon to be unloaded module, it will happen now,
361         // i.e. before we unregister the services of the module being unloaded
362         FOREACH_MOD(OnUnloadModule, (mod));
363
364         std::map<std::string, Module*>::iterator modfind = Modules.find(mod->ModuleSourceFile);
365
366         // Unregister modes before extensions because modes may require their extension to show the mode being unset
367         UnregisterModes(mod, MODETYPE_USER);
368         UnregisterModes(mod, MODETYPE_CHANNEL);
369
370         std::vector<reference<ExtensionItem> > items;
371         ServerInstance->Extensions.BeginUnregister(modfind->second, items);
372         /* Give the module a chance to tidy out all its metadata */
373         const chan_hash& chans = ServerInstance->GetChans();
374         for (chan_hash::const_iterator c = chans.begin(); c != chans.end(); )
375         {
376                 Channel* chan = c->second;
377                 ++c;
378                 mod->OnCleanup(ExtensionItem::EXT_CHANNEL, chan);
379                 chan->doUnhookExtensions(items);
380                 const Channel::MemberMap& users = chan->GetUsers();
381                 for (Channel::MemberMap::const_iterator mi = users.begin(); mi != users.end(); ++mi)
382                 {
383                         mod->OnCleanup(ExtensionItem::EXT_MEMBERSHIP, mi->second);
384                         mi->second->doUnhookExtensions(items);
385                 }
386         }
387
388         const user_hash& users = ServerInstance->Users->GetUsers();
389         for (user_hash::const_iterator u = users.begin(); u != users.end(); )
390         {
391                 User* user = u->second;
392                 // The module may quit the user (e.g. SSL mod unloading) and that will remove it from the container
393                 ++u;
394                 mod->OnCleanup(ExtensionItem::EXT_USER, user);
395                 user->doUnhookExtensions(items);
396         }
397
398         for(std::multimap<std::string, ServiceProvider*>::iterator i = DataProviders.begin(); i != DataProviders.end(); )
399         {
400                 std::multimap<std::string, ServiceProvider*>::iterator curr = i++;
401                 if (curr->second->creator == mod)
402                         DataProviders.erase(curr);
403         }
404
405         dynamic_reference_base::reset_all();
406
407         DetachAll(mod);
408
409         Modules.erase(modfind);
410         ServerInstance->GlobalCulls.AddItem(mod);
411
412         ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, "Module %s unloaded",mod->ModuleSourceFile.c_str());
413         ServerInstance->ISupport.Build();
414 }
415
416 void ModuleManager::UnloadAll()
417 {
418         /* We do this more than once, so that any service providers get a
419          * chance to be unhooked by the modules using them, but then get
420          * a chance to be removed themsleves.
421          *
422          * Note: this deliberately does NOT delete the DLLManager objects
423          */
424         for (int tries = 0; tries < 4; tries++)
425         {
426                 std::map<std::string, Module*>::iterator i = Modules.begin();
427                 while (i != Modules.end())
428                 {
429                         std::map<std::string, Module*>::iterator me = i++;
430                         if (CanUnload(me->second))
431                         {
432                                 DoSafeUnload(me->second);
433                         }
434                 }
435                 ServerInstance->GlobalCulls.Apply();
436         }
437 }
438
439 namespace
440 {
441         struct UnloadAction : public ActionBase
442         {
443                 Module* const mod;
444                 UnloadAction(Module* m) : mod(m) {}
445                 void Call() CXX11_OVERRIDE
446                 {
447                         DLLManager* dll = mod->ModuleDLLManager;
448                         ServerInstance->Modules->DoSafeUnload(mod);
449                         ServerInstance->GlobalCulls.Apply();
450                         // In pure static mode this is always NULL
451                         delete dll;
452                         ServerInstance->GlobalCulls.AddItem(this);
453                 }
454         };
455 }
456
457 bool ModuleManager::Unload(Module* mod)
458 {
459         if (!CanUnload(mod))
460                 return false;
461         ServerInstance->AtomicActions.AddAction(new UnloadAction(mod));
462         return true;
463 }
464
465 void ModuleManager::LoadAll()
466 {
467         std::map<std::string, ServiceList> servicemap;
468         LoadCoreModules(servicemap);
469
470         ConfigTagList tags = ServerInstance->Config->ConfTags("module");
471         for (ConfigIter i = tags.first; i != tags.second; ++i)
472         {
473                 ConfigTag* tag = i->second;
474                 std::string name = ExpandModName(tag->getString("name"));
475                 this->NewServices = &servicemap[name];
476
477                 // Skip modules which are already loaded.
478                 if (Modules.find(name) != Modules.end())
479                         continue;
480
481                 std::cout << "[" << con_green << "*" << con_reset << "] Loading module:\t" << con_green << name << con_reset << std::endl;
482                 if (!this->Load(name, true))
483                 {
484                         ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, this->LastError());
485                         std::cout << std::endl << "[" << con_red << "*" << con_reset << "] " << this->LastError() << std::endl << std::endl;
486                         ServerInstance->Exit(EXIT_STATUS_MODULE);
487                 }
488         }
489
490         ConfigStatus confstatus;
491
492         for (ModuleMap::const_iterator i = Modules.begin(); i != Modules.end(); ++i)
493         {
494                 Module* mod = i->second;
495                 try
496                 {
497                         ServerInstance->Logs->Log("MODULE", LOG_DEBUG, "Initializing %s", i->first.c_str());
498                         AttachAll(mod);
499                         AddServices(servicemap[i->first]);
500                         mod->init();
501                         mod->ReadConfig(confstatus);
502                 }
503                 catch (CoreException& modexcept)
504                 {
505                         LastModuleError = "Unable to initialize " + mod->ModuleSourceFile + ": " + modexcept.GetReason();
506                         ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, LastModuleError);
507                         std::cout << std::endl << "[" << con_red << "*" << con_reset << "] " << LastModuleError << std::endl << std::endl;
508                         ServerInstance->Exit(EXIT_STATUS_MODULE);
509                 }
510         }
511
512         this->NewServices = NULL;
513
514         if (!PrioritizeHooks())
515                 ServerInstance->Exit(EXIT_STATUS_MODULE);
516 }
517
518 std::string& ModuleManager::LastError()
519 {
520         return LastModuleError;
521 }
522
523 void ModuleManager::AddServices(const ServiceList& list)
524 {
525         for (ServiceList::const_iterator i = list.begin(); i != list.end(); ++i)
526         {
527                 ServiceProvider& s = **i;
528                 AddService(s);
529         }
530 }
531
532 void ModuleManager::AddService(ServiceProvider& item)
533 {
534         switch (item.service)
535         {
536                 case SERVICE_DATA:
537                 case SERVICE_IOHOOK:
538                 {
539                         if ((!item.name.compare(0, 5, "mode/", 5)) || (!item.name.compare(0, 6, "umode/", 6)))
540                                 throw ModuleException("The \"mode/\" and the \"umode\" service name prefixes are reserved.");
541
542                         DataProviders.insert(std::make_pair(item.name, &item));
543                         std::string::size_type slash = item.name.find('/');
544                         if (slash != std::string::npos)
545                         {
546                                 DataProviders.insert(std::make_pair(item.name.substr(0, slash), &item));
547                                 DataProviders.insert(std::make_pair(item.name.substr(slash + 1), &item));
548                         }
549                         dynamic_reference_base::reset_all();
550                         break;
551                 }
552                 default:
553                         item.RegisterService();
554         }
555
556         FOREACH_MOD(OnServiceAdd, (item));
557 }
558
559 void ModuleManager::DelService(ServiceProvider& item)
560 {
561         switch (item.service)
562         {
563                 case SERVICE_MODE:
564                         if (!ServerInstance->Modes->DelMode(static_cast<ModeHandler*>(&item)))
565                                 throw ModuleException("Mode "+std::string(item.name)+" does not exist.");
566                         // Fall through
567                 case SERVICE_DATA:
568                 case SERVICE_IOHOOK:
569                 {
570                         DelReferent(&item);
571                         return;
572                 }
573                 default:
574                         throw ModuleException("Cannot delete unknown service type");
575         }
576
577         FOREACH_MOD(OnServiceDel, (item));
578 }
579
580 ServiceProvider* ModuleManager::FindService(ServiceType type, const std::string& name)
581 {
582         switch (type)
583         {
584                 case SERVICE_DATA:
585                 case SERVICE_IOHOOK:
586                 {
587                         std::multimap<std::string, ServiceProvider*>::iterator i = DataProviders.find(name);
588                         if (i != DataProviders.end() && i->second->service == type)
589                                 return i->second;
590                         return NULL;
591                 }
592                 // TODO implement finding of the other types
593                 default:
594                         throw ModuleException("Cannot find unknown service type");
595         }
596 }
597
598 std::string ModuleManager::ExpandModName(const std::string& modname)
599 {
600         // Transform "callerid" -> "m_callerid.so" unless it already has a ".so" extension,
601         // so coremods in the "core_*.so" form aren't changed
602         std::string ret = modname;
603         if ((modname.length() < 3) || (modname.compare(modname.size() - 3, 3, ".so")))
604                 ret.insert(0, "m_").append(".so");
605         return ret;
606 }
607
608 dynamic_reference_base::dynamic_reference_base(Module* Creator, const std::string& Name)
609         : name(Name), hook(NULL), value(NULL), creator(Creator)
610 {
611         if (!dynrefs)
612                 dynrefs = new insp::intrusive_list<dynamic_reference_base>;
613         dynrefs->push_front(this);
614
615         // Resolve unless there is no ModuleManager (part of class InspIRCd)
616         if (ServerInstance)
617                 resolve();
618 }
619
620 dynamic_reference_base::~dynamic_reference_base()
621 {
622         dynrefs->erase(this);
623         if (dynrefs->empty())
624         {
625                 delete dynrefs;
626                 dynrefs = NULL;
627         }
628 }
629
630 void dynamic_reference_base::SetProvider(const std::string& newname)
631 {
632         name = newname;
633         resolve();
634 }
635
636 void dynamic_reference_base::resolve()
637 {
638         // Because find() may return any element with a matching key in case count(key) > 1 use lower_bound()
639         // to ensure a dynref with the same name as another one resolves to the same object
640         std::multimap<std::string, ServiceProvider*>::iterator i = ServerInstance->Modules.DataProviders.lower_bound(name);
641         if ((i != ServerInstance->Modules.DataProviders.end()) && (i->first == this->name))
642         {
643                 ServiceProvider* newvalue = i->second;
644                 if (value != newvalue)
645                 {
646                         value = newvalue;
647                         if (hook)
648                                 hook->OnCapture();
649                 }
650         }
651         else
652                 value = NULL;
653 }
654
655 Module* ModuleManager::Find(const std::string &name)
656 {
657         std::map<std::string, Module*>::const_iterator modfind = Modules.find(ExpandModName(name));
658
659         if (modfind == Modules.end())
660                 return NULL;
661         else
662                 return modfind->second;
663 }
664
665 void ModuleManager::AddReferent(const std::string& name, ServiceProvider* service)
666 {
667         DataProviders.insert(std::make_pair(name, service));
668         dynamic_reference_base::reset_all();
669 }
670
671 void ModuleManager::DelReferent(ServiceProvider* service)
672 {
673         for (std::multimap<std::string, ServiceProvider*>::iterator i = DataProviders.begin(); i != DataProviders.end(); )
674         {
675                 ServiceProvider* curr = i->second;
676                 if (curr == service)
677                         DataProviders.erase(i++);
678                 else
679                         ++i;
680         }
681         dynamic_reference_base::reset_all();
682 }