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