]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules.cpp
Update svn:ignore and .gitignore
[user/henk/code/inspircd.git] / src / modules.cpp
index 6f1236f605a00765d1d18898b39aa9dd64b0c5c3..67c90b128b401e3dbd045f11dd3564d62ef08cf5 100644 (file)
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
+/* $Core */
 
-#include "inspircd_config.h"
 #include "inspircd.h"
-#include "inspircd_io.h"
-#include <unistd.h>
-#include <sys/errno.h>
-#include <time.h>
-#include <string>
-#ifdef GCC3
-#include <ext/hash_map>
-#else
-#include <hash_map>
-#endif
-#include <map>
-#include <sstream>
-#include <vector>
-#include <deque>
-#include "users.h"
-#include "ctables.h"
-#include "globals.h"
-#include "modules.h"
-#include "dynamic.h"
-#include "wildcard.h"
-#include "message.h"
-#include "mode.h"
 #include "xline.h"
-#include "commands.h"
-#include "inspstring.h"
-#include "helperfuncs.h"
-#include "hashcomp.h"
 #include "socket.h"
 #include "socketengine.h"
-#include "typedefs.h"
-#include "modules.h"
 #include "command_parse.h"
+#include "dns.h"
+#include "exitcodes.h"
 
-extern ServerConfig *Config;
-extern InspIRCd* ServerInstance;
-extern int MODCOUNT;
-extern std::vector<Module*> modules;
-extern std::vector<ircd_module*> factory;
-extern std::vector<InspSocket*> module_sockets;
-extern std::vector<userrec*> local_users;
-extern time_t TIME;
-class Server;
-extern userrec* fd_ref_table[MAX_DESCRIPTORS];
-
-extern user_hash clientlist;
-extern chan_hash chanlist;
-extern command_table cmdlist;
-ExtModeList EMode;
-
-// returns true if an extended mode character is in use
-bool ModeDefined(char modechar, int type)
-{
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == type))
-               {
-                       return true;
-               }
-       }
-       return false;
-}
-
-bool ModeIsListMode(char modechar, int type)
-{
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
-               {
-                       return true;
-               }
-       }
-       return false;
-}
+#ifndef WIN32
+       #include <dirent.h>
+#endif
 
-bool ModeDefinedOper(char modechar, int type)
-{
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
-               {
-                       return true;
-               }
-       }
-       return false;
-}
 
-// returns number of parameters for a custom mode when it is switched on
-int ModeDefinedOn(char modechar, int type)
+// version is a simple class for holding a modules version number
+Version::Version(const std::string &modv, int flags, int api_ver, const std::string& rev)
+: description(modv), version(rev), Flags(flags), API(api_ver)
 {
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == type))
-               {
-                       return i->params_when_on;
-               }
-       }
-       return 0;
 }
 
-// returns number of parameters for a custom mode when it is switched on
-int ModeDefinedOff(char modechar, int type)
+Request::Request(char* anydata, Module* src, Module* dst)
+: data(anydata), source(src), dest(dst)
 {
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == type))
-               {
-                       return i->params_when_off;
-               }
-       }
-       return 0;
+       /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
+        * by passing them uninitialized pointers (could happen)
+        */
+       id = '\0';
 }
 
-// returns true if an extended mode character is in use
-bool DoAddExtendedMode(char modechar, int type, bool requires_oper, int params_on, int params_off)
+Request::Request(Module* src, Module* dst, const char* idstr)
+: id(idstr), source(src), dest(dst)
 {
-       if (ModeDefined(modechar,type)) {
-               return false;
-       }
-       EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
-       return true;
 }
 
-// turns a mode into a listmode
-void ModeMakeList(char modechar)
+char* Request::GetData()
 {
-       for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-       {
-               if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
-               {
-                       i->list = true;
-                       return;
-               }
-       }
-       return;
+       return this->data;
 }
 
-// version is a simple class for holding a modules version number
-
-Version::Version(int major, int minor, int revision, int build, int flags) : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags) { };
-
-// admin is a simple class for holding a server's administrative info
-
-Admin::Admin(std::string name, std::string email, std::string nick) : Name(name), Email(email), Nick(nick) { };
-
-Request::Request(char* anydata, Module* src, Module* dst) : data(anydata), source(src), dest(dst) { };
-
-char* Request::GetData()
+const char* Request::GetId()
 {
-        return this->data;
+       return this->id;
 }
 
 Module* Request::GetSource()
 {
-        return this->source;
+       return this->source;
 }
 
 Module* Request::GetDest()
 {
-        return this->dest;
+       return this->dest;
 }
 
-char* Request::Send()
+const char* Request::Send()
 {
-        if (this->dest)
-        {
-                return dest->OnRequest(this);
-        }
-        else
-        {
-                return NULL;
-        }
+       if (this->dest)
+       {
+               return dest->OnRequest(this);
+       }
+       else
+       {
+               return NULL;
+       }
 }
 
-Event::Event(char* anydata, Module* src, std::string eventid) : data(anydata), source(src), id(eventid) { };
+Event::Event(char* anydata, Module* src, const std::string &eventid) : data(anydata), source(src), id(eventid) { }
 
 char* Event::GetData()
 {
-        return this->data;
+       return this->data;
 }
 
 Module* Event::GetSource()
 {
-        return this->source;
+       return this->source;
 }
 
 char* Event::Send()
 {
-        FOREACH_MOD(I_OnEvent,OnEvent(this));
-        return NULL;
+       FOREACH_MOD(I_OnEvent,OnEvent(this));
+       return NULL;
 }
 
 std::string Event::GetEventID()
 {
-        return this->id;
+       return this->id;
 }
 
 
 // These declarations define the behavours of the base class Module (which does nothing at all)
 
-               Module::Module(Server* Me) { }
-               Module::~Module() { }
-void           Module::OnUserConnect(userrec* user) { }
-void           Module::OnUserQuit(userrec* user, std::string message) { }
-void           Module::OnUserDisconnect(userrec* user) { }
-void           Module::OnUserJoin(userrec* user, chanrec* channel) { }
-void           Module::OnUserPart(userrec* user, chanrec* channel, std::string partmessage) { }
-void           Module::OnRehash(std::string parameter) { }
-void           Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
-int            Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
-int            Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
-void           Module::OnMode(userrec* user, void* dest, int target_type, std::string text) { };
-Version                Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
-void           Module::OnOper(userrec* user, std::string opertype) { };
-void           Module::OnPostOper(userrec* user, std::string opertype) { };
-void           Module::OnInfo(userrec* user) { };
-void           Module::OnWhois(userrec* source, userrec* dest) { };
-int            Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
-int            Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
-int            Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text,char status) { return 0; };
-int            Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
-void           Module::OnUserPostNick(userrec* user, std::string oldnick) { };
-int            Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
-void           Module::On005Numeric(std::string &output) { };
-int            Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
-void           Module::OnLoadModule(Module* mod,std::string name) { };
-void           Module::OnUnloadModule(Module* mod,std::string name) { };
-void           Module::OnBackgroundTimer(time_t curtime) { };
-void           Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
-int            Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated) { return 0; };
-bool           Module::OnCheckReady(userrec* user) { return true; };
-void           Module::OnUserRegister(userrec* user) { };
-int            Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
-void           Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
-int            Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
-int            Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
-int            Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
-int            Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
-int            Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
-int            Module::OnStats(char symbol, userrec* user) { return 0; };
-int            Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
-int            Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
-int            Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
-void           Module::OnEvent(Event* event) { return; };
-char*          Module::OnRequest(Request* request) { return NULL; };
-int            Module::OnOperCompare(std::string password, std::string input) { return 0; };
-void           Module::OnGlobalOper(userrec* user) { };
-void           Module::OnGlobalConnect(userrec* user) { };
-int            Module::OnAddBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
-int            Module::OnDelBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
-void           Module::OnRawSocketAccept(int fd, std::string ip, int localport) { };
-int            Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; };
-void           Module::OnRawSocketClose(int fd) { };
-int            Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
-void           Module::OnUserMessage(userrec* user, void* dest, int target_type, std::string text, char status) { };
-void           Module::OnUserNotice(userrec* user, void* dest, int target_type, std::string text, char status) { };
-void           Module::OnRemoteKill(userrec* source, userrec* dest, std::string reason) { };
-void           Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
-void           Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { };
-void           Module::OnGetServerDescription(std::string servername,std::string &description) { };
-void           Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
-void           Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
-void           Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { };
-void           Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, std::string extname) { };
-void           Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, std::string extname) { };
-void           Module::OnSyncOtherMetaData(Module* proto, void* opaque) { };
-void           Module::OnDecodeMetaData(int target_type, void* target, std::string extname, std::string extdata) { };
-void           Module::ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata) { };
-void           Module::OnWallops(userrec* user, std::string text) { };
-void           Module::OnChangeHost(userrec* user, std::string newhost) { };
-void           Module::OnChangeName(userrec* user, std::string gecos) { };
-void           Module::OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask) { };
-void           Module::OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask) { };
-void           Module::OnAddKLine(long duration, userrec* source, std::string reason, std::string hostmask) { };
-void           Module::OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask) { };
-void           Module::OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask) { };
-void           Module::OnDelGLine(userrec* source, std::string hostmask) { };
-void           Module::OnDelZLine(userrec* source, std::string ipmask) { };
-void           Module::OnDelKLine(userrec* source, std::string hostmask) { };
-void           Module::OnDelQLine(userrec* source, std::string nickmask) { };
-void           Module::OnDelELine(userrec* source, std::string hostmask) { };
-void           Module::OnCleanup(int target_type, void* item) { };
-void           Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; };
-void           Module::OnChannelDelete(chanrec* chan) { };
-Priority       Module::Prioritize() { return PRIORITY_DONTCARE; }
-void           Module::OnSetAway(userrec* user) { };
-void           Module::OnCancelAway(userrec* user) { };
-
-/* server is a wrapper class that provides methods to all of the C-style
- * exports in the core
- */
+Module::Module() { }
+Module::~Module() { }
+
+ModResult      Module::OnSendSnotice(char &snomask, std::string &type, const std::string &message) { return MOD_RES_PASSTHRU; }
+void           Module::OnUserConnect(User*) { }
+void           Module::OnUserQuit(User*, const std::string&, const std::string&) { }
+void           Module::OnUserDisconnect(User*) { }
+void           Module::OnUserJoin(Membership*, bool, bool, CUList&) { }
+void           Module::OnPostJoin(Membership*) { }
+void           Module::OnUserPart(Membership*, std::string&, CUList&) { }
+void           Module::OnPreRehash(User*, const std::string&) { }
+void           Module::OnModuleRehash(User*, const std::string&) { }
+void           Module::OnRehash(User*) { }
+ModResult      Module::OnUserPreJoin(User*, Channel*, const char*, std::string&, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnMode(User*, void*, int, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
+void           Module::OnOper(User*, const std::string&) { }
+void           Module::OnPostOper(User*, const std::string&, const std::string &) { }
+void           Module::OnInfo(User*) { }
+void           Module::OnWhois(User*, User*) { }
+ModResult      Module::OnUserPreInvite(User*, User*, Channel*, time_t) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserPreMessage(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserPreNotice(User*, void*, int, std::string&, char, CUList&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserPreNick(User*, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnUserPostNick(User*, const std::string&) { }
+ModResult      Module::OnPreMode(User*, User*, Channel*, const std::vector<std::string>&) { return MOD_RES_PASSTHRU; }
+void           Module::On005Numeric(std::string&) { }
+ModResult      Module::OnKill(User*, User*, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnLoadModule(Module*, const std::string&) { }
+void           Module::OnUnloadModule(Module*, const std::string&) { }
+void           Module::OnBackgroundTimer(time_t) { }
+ModResult      Module::OnPreCommand(std::string&, std::vector<std::string>&, User *, bool, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnPostCommand(const std::string&, const std::vector<std::string>&, User *, CmdResult, const std::string&) { }
+ModResult      Module::OnCheckReady(User*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserRegister(User*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserPreKick(User*, Membership*, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnUserKick(User*, Membership*, const std::string&, CUList&) { }
+ModResult      Module::OnRawMode(User*, Channel*, const char, const std::string &, bool, int) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnCheckInvite(User*, Channel*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnCheckKey(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnCheckLimit(User*, Channel*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnCheckChannelBan(User*, Channel*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnCheckBan(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnExtBanCheck(User*, Channel*, char) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnStats(char, User*, string_list&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnChangeLocalUserHost(User*, const std::string&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnChangeLocalUserGECOS(User*, const std::string&) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnPreTopicChange(User*, Channel*, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnEvent(Event*) { return; }
+const char*            Module::OnRequest(Request*) { return NULL; }
+ModResult      Module::OnPassCompare(Extensible* ex, const std::string &password, const std::string &input, const std::string& hashtype) { return MOD_RES_PASSTHRU; }
+void           Module::OnGlobalOper(User*) { }
+void           Module::OnPostConnect(User*) { }
+ModResult      Module::OnAddBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnDelBan(User*, Channel*, const std::string &) { return MOD_RES_PASSTHRU; }
+void           Module::OnStreamSocketAccept(StreamSocket*, irc::sockets::sockaddrs*, irc::sockets::sockaddrs*) { }
+int            Module::OnStreamSocketWrite(StreamSocket*, std::string&) { return -1; }
+void           Module::OnStreamSocketClose(StreamSocket*) { }
+void           Module::OnStreamSocketConnect(StreamSocket*) { }
+int            Module::OnStreamSocketRead(StreamSocket*, std::string&) { return -1; }
+void           Module::OnUserMessage(User*, void*, int, const std::string&, char, const CUList&) { }
+void           Module::OnUserNotice(User*, void*, int, const std::string&, char, const CUList&) { }
+void           Module::OnRemoteKill(User*, User*, const std::string&, const std::string&) { }
+void           Module::OnUserInvite(User*, User*, Channel*, time_t) { }
+void           Module::OnPostTopicChange(User*, Channel*, const std::string&) { }
+void           Module::OnGetServerDescription(const std::string&, std::string&) { }
+void           Module::OnSyncUser(User*, Module*, void*) { }
+void           Module::OnSyncChannel(Channel*, Module*, void*) { }
+void           Module::OnSyncNetwork(Module*, void*) { }
+void           Module::ProtoSendMode(void*, TargetTypeFlags, void*, const std::vector<std::string>&, const std::vector<TranslateType>&) { }
+void           Module::OnDecodeMetaData(Extensible*, const std::string&, const std::string&) { }
+void           Module::ProtoSendMetaData(void*, Extensible*, const std::string&, const std::string&) { }
+void           Module::OnWallops(User*, const std::string&) { }
+void           Module::OnChangeHost(User*, const std::string&) { }
+void           Module::OnChangeName(User*, const std::string&) { }
+void           Module::OnChangeIdent(User*, const std::string&) { }
+void           Module::OnAddLine(User*, XLine*) { }
+void           Module::OnDelLine(User*, XLine*) { }
+void           Module::OnExpireLine(XLine*) { }
+void           Module::OnCleanup(int, void*) { }
+ModResult      Module::OnChannelPreDelete(Channel*) { return MOD_RES_PASSTHRU; }
+void           Module::OnChannelDelete(Channel*) { }
+ModResult      Module::OnSetAway(User*, const std::string &) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnUserList(User*, Channel*) { return MOD_RES_PASSTHRU; }
+ModResult      Module::OnWhoisLine(User*, User*, int&, std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnBuildExemptList(MessageType, Channel*, User*, char, CUList&, const std::string&) { }
+void           Module::OnGarbageCollect() { }
+void           Module::OnText(User*, void*, int, const std::string&, char, CUList&) { }
+void           Module::OnRunTestSuite() { }
+void           Module::OnNamesListItem(User*, Membership*, std::string&, std::string&) { }
+ModResult      Module::OnNumeric(User*, unsigned int, const std::string&) { return MOD_RES_PASSTHRU; }
+void           Module::OnHookIO(StreamSocket*, ListenSocketBase*) { }
+ModResult      Module::OnHostCycle(User*) { return MOD_RES_PASSTHRU; }
+void           Module::OnSendWhoLine(User*, User*, Channel*, std::string&) { }
+
+ModuleManager::ModuleManager() : ModCount(0)
+{
+}
+
+ModuleManager::~ModuleManager()
+{
+}
+
+bool ModuleManager::Attach(Implementation i, Module* mod)
+{
+       if (std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod) != EventHandlers[i].end())
+               return false;
 
-Server::Server()
+       EventHandlers[i].push_back(mod);
+       return true;
+}
+
+bool ModuleManager::Detach(Implementation i, Module* mod)
 {
+       EventHandlerIter x = std::find(EventHandlers[i].begin(), EventHandlers[i].end(), mod);
+
+       if (x == EventHandlers[i].end())
+               return false;
+
+       EventHandlers[i].erase(x);
+       return true;
 }
 
-Server::~Server()
+void ModuleManager::Attach(Implementation* i, Module* mod, size_t sz)
 {
+       for (size_t n = 0; n < sz; ++n)
+               Attach(i[n], mod);
 }
 
-void Server::AddSocket(InspSocket* sock)
+void ModuleManager::DetachAll(Module* mod)
 {
-       module_sockets.push_back(sock);
+       for (size_t n = I_BEGIN + 1; n != I_END; ++n)
+               Detach((Implementation)n, mod);
 }
 
-void Server::RemoveSocket(InspSocket* sock)
+bool ModuleManager::SetPriority(Module* mod, Priority s)
 {
-        for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
-        {
-                InspSocket* s = (InspSocket*)*a;
-                if (s == sock)
-                {
-                       log(DEBUG,"Forcibly removed socket");
-                        ServerInstance->SE->DelFd(s->GetFd());
-                        s->Close();
-                        module_sockets.erase(a);
-                        delete s;
-                        return;
-                }
-        }
+       for (size_t n = I_BEGIN + 1; n != I_END; ++n)
+               SetPriority(mod, (Implementation)n, s);
+
+       return true;
 }
 
-long Server::PriorityAfter(std::string modulename)
+bool ModuleManager::SetPriority(Module* mod, Implementation i, Priority s, Module** modules, size_t sz)
 {
-       for (unsigned int j = 0; j < Config->module_names.size(); j++)
+       /** To change the priority of a module, we first find its position in the vector,
+        * then we find the position of the other modules in the vector that this module
+        * wants to be before/after. We pick off either the first or last of these depending
+        * on which they want, and we make sure our module is *at least* before or after
+        * the first or last of this subset, depending again on the type of priority.
+        */
+       size_t swap_pos = 0;
+       size_t source = 0;
+       bool swap = true;
+       bool found = false;
+
+       /* Locate our module. This is O(n) but it only occurs on module load so we're
+        * not too bothered about it
+        */
+       for (size_t x = 0; x != EventHandlers[i].size(); ++x)
        {
-               if (Config->module_names[j] == modulename)
+               if (EventHandlers[i][x] == mod)
                {
-                       return ((j << 8) | PRIORITY_AFTER);
+                       source = x;
+                       found = true;
+                       break;
                }
        }
-       return PRIORITY_DONTCARE;
-}
 
-long Server::PriorityBefore(std::string modulename)
-{
-       for (unsigned int j = 0; j < Config->module_names.size(); j++)
+       /* Eh? this module doesnt exist, probably trying to set priority on an event
+        * theyre not attached to.
+        */
+       if (!found)
+               return false;
+
+       switch (s)
        {
-               if (Config->module_names[j] == modulename)
+               /* Dummy value */
+               case PRIORITY_DONTCARE:
+                       swap = false;
+               break;
+               /* Module wants to be first, sod everything else */
+               case PRIORITY_FIRST:
+                       if (prioritizationState != PRIO_STATE_FIRST)
+                               swap = false;
+                       else
+                               swap_pos = 0;
+               break;
+               /* Module wants to be last. */
+               case PRIORITY_LAST:
+                       if (prioritizationState != PRIO_STATE_FIRST)
+                               swap = false;
+                       else if (EventHandlers[i].empty())
+                               swap_pos = 0;
+                       else
+                               swap_pos = EventHandlers[i].size() - 1;
+               break;
+               /* Place this module after a set of other modules */
+               case PRIORITY_AFTER:
                {
-                       return ((j << 8) | PRIORITY_BEFORE);
+                       /* Find the latest possible position */
+                       swap_pos = 0;
+                       swap = false;
+                       for (size_t x = 0; x != EventHandlers[i].size(); ++x)
+                       {
+                               for (size_t n = 0; n < sz; ++n)
+                               {
+                                       if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x >= swap_pos) && (source <= swap_pos))
+                                       {
+                                               swap_pos = x;
+                                               swap = true;
+                                       }
+                               }
+                       }
                }
+               break;
+               /* Place this module before a set of other modules */
+               case PRIORITY_BEFORE:
+               {
+                       swap_pos = EventHandlers[i].size() - 1;
+                       swap = false;
+                       for (size_t x = 0; x != EventHandlers[i].size(); ++x)
+                       {
+                               for (size_t n = 0; n < sz; ++n)
+                               {
+                                       if ((modules[n]) && (EventHandlers[i][x] == modules[n]) && (x <= swap_pos) && (source >= swap_pos))
+                                       {
+                                               swap = true;
+                                               swap_pos = x;
+                                       }
+                               }
+                       }
+               }
+               break;
        }
-       return PRIORITY_DONTCARE;
-}
 
-void Server::RehashServer()
-{
-       WriteOpers("*** Rehashing config file");
-       Config->Read(false,NULL);
-}
+       /* Do we need to swap? */
+       if (swap && (swap_pos != source))
+       {
+               // We are going to change positions; we'll need to run again to verify all requirements
+               if (prioritizationState == PRIO_STATE_LAST)
+                       prioritizationState = PRIO_STATE_AGAIN;
+               /* Suggestion from Phoenix, "shuffle" the modules to better retain call order */
+               int incrmnt = 1;
 
-ServerConfig* Server::GetConfig()
-{
-       return Config;
+               if (source > swap_pos)
+                       incrmnt = -1;
+
+               for (unsigned int j = source; j != swap_pos; j += incrmnt)
+               {
+                       if (( j + incrmnt > EventHandlers[i].size() - 1) || (j + incrmnt < 0))
+                               continue;
+
+                       std::swap(EventHandlers[i][j], EventHandlers[i][j+incrmnt]);
+               }
+       }
+
+       return true;
 }
 
-std::string Server::GetVersion()
+std::string& ModuleManager::LastError()
 {
-       return ServerInstance->GetVersionString();
+       return LastModuleError;
 }
 
-void Server::DelSocket(InspSocket* sock)
+bool ModuleManager::Load(const char* filename)
 {
-       for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
+       /* Do we have a glob pattern in the filename?
+        * The user wants to load multiple modules which
+        * match the pattern.
+        */
+       if (strchr(filename,'*') || (strchr(filename,'?')))
        {
-               if (*a == sock)
+               int n_match = 0;
+               DIR* library = opendir(ServerInstance->Config->ModPath.c_str());
+               if (library)
                {
-                       module_sockets.erase(a);
-                       return;
+                       /* Try and locate and load all modules matching the pattern */
+                       dirent* entry = NULL;
+                       while (0 != (entry = readdir(library)))
+                       {
+                               if (InspIRCd::Match(entry->d_name, filename, ascii_case_insensitive_map))
+                               {
+                                       if (!this->Load(entry->d_name))
+                                               n_match++;
+                               }
+                       }
+                       closedir(library);
                }
+               /* Loadmodule will now return false if any one of the modules failed
+                * to load (but wont abort when it encounters a bad one) and when 1 or
+                * more modules were actually loaded.
+                */
+               return (n_match > 0 ? false : true);
        }
-}
 
-long Server::GetChannelCount()
-{
-       return (long)chanlist.size();
-}
+       char modfile[MAXBUF];
+       snprintf(modfile,MAXBUF,"%s/%s",ServerInstance->Config->ModPath.c_str(),filename);
+       std::string filename_str = filename;
 
-/* This is ugly, yes, but hash_map's arent designed to be
- * addressed in this manner, and this is a bit of a kludge.
- * Luckily its a specialist function and rarely used by
- * many modules (in fact, it was specially created to make
- * m_safelist possible, initially).
- */
-
-chanrec* Server::GetChannelIndex(long index)
-{
-       int target = 0;
-       for (chan_hash::iterator n = chanlist.begin(); n != chanlist.end(); n++, target++)
+       if (!ServerConfig::FileExists(modfile))
        {
-               if (index == target)
-                       return n->second;
+               LastModuleError = "Module file could not be found: " + filename_str;
+               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+               return false;
        }
-       return NULL;
-}
 
-void Server::SendOpers(std::string s)
-{
-       WriteOpers("%s",s.c_str());
-}
+       if (Modules.find(filename_str) != Modules.end())
+       {
+               LastModuleError = "Module " + filename_str + " is already loaded, cannot load a module twice!";
+               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+               return false;
+       }
 
-bool Server::MatchText(std::string sliteral, std::string spattern)
-{
-       char literal[MAXBUF],pattern[MAXBUF];
-       strlcpy(literal,sliteral.c_str(),MAXBUF);
-       strlcpy(pattern,spattern.c_str(),MAXBUF);
-       return match(literal,pattern);
-}
+       Module* newmod = NULL;
+       ircd_module* newhandle = NULL;
 
-void Server::SendToModeMask(std::string modes, int flags, std::string text)
-{
-       WriteMode(modes.c_str(),flags,"%s",text.c_str());
-}
+       try
+       {
+               /* This will throw a CoreException if there's a problem loading
+                * the module file or getting a pointer to the init_module symbol.
+                */
+               newhandle = new ircd_module(modfile, "init_module");
+               newmod = newhandle->CallInit();
 
-chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
-{
-       return add_channel(user,cname.c_str(),key.c_str(),false);
-}
+               if (newmod)
+               {
+                       newmod->ModuleSourceFile = filename_str;
+                       Version v = newmod->GetVersion();
+
+                       if (v.API != API_VERSION)
+                       {
+                               DetachAll(newmod);
+                               delete newmod;
+                               delete newhandle;
+                               LastModuleError = "Unable to load " + filename_str + ": Incorrect module API version: " + ConvToStr(v.API) + " (our version: " + ConvToStr(API_VERSION) + ")";
+                               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+                               return false;
+                       }
+                       else
+                       {
+                               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]"));
+                       }
+
+                       Modules[filename_str] = std::make_pair(newhandle, newmod);
+               }
+               else
+               {
+                       delete newhandle;
+                       LastModuleError = "Unable to load " + filename_str + ": Probably missing init_module() entrypoint, but dlsym() didn't notice a problem";
+                       ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+                       return false;
+               }
+       }
+       /** XXX: Is there anything we can do about this mess? -- Brain */
+       catch (LoadModuleException& modexcept)
+       {
+               DetachAll(newmod);
+               if (newmod)
+                       delete newmod;
+               if (newhandle)
+                       delete newhandle;
+               LastModuleError = "Unable to load " + filename_str + ": Error when loading: " + modexcept.GetReason();
+               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+               return false;
+       }
+       catch (FindSymbolException& modexcept)
+       {
+               DetachAll(newmod);
+               if (newmod)
+                       delete newmod;
+               if (newhandle)
+                       delete newhandle;
+               LastModuleError = "Unable to load " + filename_str + ": Error finding symbol: " + modexcept.GetReason();
+               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+               return false;
+       }
+       catch (CoreException& modexcept)
+       {
+               DetachAll(newmod);
+               if (newmod)
+                       delete newmod;
+               if (newhandle)
+                       delete newhandle;
+               LastModuleError = "Unable to load " + filename_str + ": " + modexcept.GetReason();
+               ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+               return false;
+       }
 
-chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
-{
-       return del_channel(user,cname.c_str(),reason.c_str(),false);
-}
+       this->ModCount++;
+       FOREACH_MOD(I_OnLoadModule,OnLoadModule(newmod, filename_str));
 
-chanuserlist Server::GetUsers(chanrec* chan)
-{
-       chanuserlist userl;
-       userl.clear();
-       std::map<char*,char*> *list = chan->GetUsers();
-       for (std::map<char*,char*>::iterator i = list->begin(); i != list->end(); i++)
+       /* We give every module a chance to re-prioritize when we introduce a new one,
+        * not just the one thats loading, as the new module could affect the preference
+        * of others
+        */
+       for(int tries = 0; tries < 20; tries++)
        {
-               char* o = i->second;
-               userl.push_back((userrec*)o);
+               prioritizationState = tries > 0 ? PRIO_STATE_LAST : PRIO_STATE_FIRST;
+               for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
+                       n->second.second->Prioritize();
+
+               if (prioritizationState == PRIO_STATE_LAST)
+                       break;
+               if (tries == 19)
+                       ServerInstance->Logs->Log("MODULE", DEFAULT, "Hook priority dependency loop detected while loading " + filename_str);
        }
-       return userl;
-}
-void Server::ChangeUserNick(userrec* user, std::string nickname)
-{
-       force_nickchange(user,nickname.c_str());
+
+       ServerInstance->BuildISupport();
+       return true;
 }
 
-void Server::KickUser(userrec* source, userrec* target, chanrec* chan, std::string reason)
+bool ModuleManager::Unload(const char* filename)
 {
-       if (source)
-       {
-               kick_channel(source,target,chan,(char*)reason.c_str());
-       }
-       else
+       std::string filename_str(filename);
+       std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(filename);
+
+       if (modfind != Modules.end())
        {
-               server_kick_channel(target,chan,(char*)reason.c_str(),true);
+               if (modfind->second.second->GetVersion().Flags & VF_STATIC)
+               {
+                       LastModuleError = "Module " + filename_str + " not unloadable (marked static)";
+                       ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+                       return false;
+               }
+               std::pair<int,std::string> intercount = GetInterfaceInstanceCount(modfind->second.second);
+               if (intercount.first > 0)
+               {
+                       LastModuleError = "Failed to unload module " + filename_str + ", being used by " + ConvToStr(intercount.first) + " other(s) via interface '" + intercount.second + "'";
+                       ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+                       return false;
+               }
+
+               std::vector<ExtensionItem*> items = Extensible::BeginUnregister(modfind->second.second);
+               /* Give the module a chance to tidy out all its metadata */
+               for (chan_hash::iterator c = ServerInstance->chanlist->begin(); c != ServerInstance->chanlist->end(); c++)
+               {
+                       modfind->second.second->OnCleanup(TYPE_CHANNEL,c->second);
+                       c->second->doUnhookExtensions(items);
+                       const UserMembList* users = c->second->GetUsers();
+                       for(UserMembCIter mi = users->begin(); mi != users->end(); mi++)
+                               mi->second->doUnhookExtensions(items);
+               }
+               for (user_hash::iterator u = ServerInstance->Users->clientlist->begin(); u != ServerInstance->Users->clientlist->end(); u++)
+               {
+                       modfind->second.second->OnCleanup(TYPE_USER,u->second);
+                       u->second->doUnhookExtensions(items);
+               }
+
+               /* Tidy up any dangling resolvers */
+               ServerInstance->Res->CleanResolvers(modfind->second.second);
+
+               FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(modfind->second.second, modfind->first));
+
+               this->DetachAll(modfind->second.second);
+
+               ServerInstance->Parser->RemoveCommands(modfind->second.second);
+
+               delete modfind->second.second;
+               delete modfind->second.first;
+               Modules.erase(modfind);
+
+               ServerInstance->Logs->Log("MODULE", DEFAULT,"Module %s unloaded",filename);
+               this->ModCount--;
+               ServerInstance->BuildISupport();
+               return true;
        }
-}
 
-void Server::QuitUser(userrec* user, std::string reason)
-{
-       kill_link(user,reason.c_str());
+       LastModuleError = "Module " + filename_str + " is not loaded, cannot unload it!";
+       ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
+       return false;
 }
 
-bool Server::IsUlined(std::string server)
+/* We must load the modules AFTER initializing the socket engine, now */
+void ModuleManager::LoadAll()
 {
-       return is_uline(server.c_str());
-}
+       char configToken[MAXBUF];
+       ModCount = -1;
 
-void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
-{
-       ServerInstance->Parser->CallHandler(commandname,parameters,pcnt,user);
-}
+       printf("\nLoading core commands");
+       fflush(stdout);
 
-bool Server::IsValidModuleCommand(std::string commandname, int pcnt, userrec* user)
-{
-       return ServerInstance->Parser->IsValidCommand(commandname, pcnt, user);
-}
+       DIR* library = opendir(ServerInstance->Config->ModPath.c_str());
+       if (library)
+       {
+               dirent* entry = NULL;
+               while (0 != (entry = readdir(library)))
+               {
+                       if (InspIRCd::Match(entry->d_name, "cmd_*.so", ascii_case_insensitive_map))
+                       {
+                               printf(".");
+                               fflush(stdout);
+
+                               if (!Load(entry->d_name))
+                               {
+                                       ServerInstance->Logs->Log("MODULE", DEFAULT, this->LastError());
+                                       printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
+                                       ServerInstance->Exit(EXIT_STATUS_MODULE);
+                               }
+                       }
+               }
+               closedir(library);
+               printf("\n");
+       }
 
-void Server::Log(int level, std::string s)
-{
-       log(level,"%s",s.c_str());
+       for(int count = 0; count < ServerInstance->Config->ConfValueEnum("module"); count++)
+       {
+               ServerInstance->Config->ConfValue("module", "name", count, configToken, MAXBUF);
+               printf_c("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
+
+               if (!this->Load(configToken))
+               {
+                       ServerInstance->Logs->Log("MODULE", DEFAULT, this->LastError());
+                       printf_c("\n[\033[1;31m*\033[0m] %s\n\n", this->LastError().c_str());
+                       ServerInstance->Exit(EXIT_STATUS_MODULE);
+               }
+       }
 }
 
-void Server::AddCommand(command_t *f)
+bool ModuleManager::PublishFeature(const std::string &FeatureName, Module* Mod)
 {
-       if (!ServerInstance->Parser->CreateCommand(f))
+       if (Features.find(FeatureName) == Features.end())
        {
-               ModuleException err("Command "+std::string(f->command)+" already exists.");
-               throw (err);
+               Features[FeatureName] = Mod;
+               return true;
        }
+       return false;
 }
 
-void Server::SendMode(char **parameters, int pcnt, userrec *user)
+bool ModuleManager::UnpublishFeature(const std::string &FeatureName)
 {
-       ServerInstance->ModeGrok->ServerMode(parameters,pcnt,user);
-}
+       featurelist::iterator iter = Features.find(FeatureName);
 
-void Server::Send(int Socket, std::string s)
-{
-       Write_NoFormat(Socket,s.c_str());
-}
+       if (iter == Features.end())
+               return false;
 
-void Server::SendServ(int Socket, std::string s)
-{
-       WriteServ_NoFormat(Socket,s.c_str());
+       Features.erase(iter);
+       return true;
 }
 
-void Server::SendFrom(int Socket, userrec* User, std::string s)
+Module* ModuleManager::FindFeature(const std::string &FeatureName)
 {
-       WriteFrom_NoFormat(Socket,User,s.c_str());
+       featurelist::iterator iter = Features.find(FeatureName);
+
+       if (iter == Features.end())
+               return NULL;
+
+       return iter->second;
 }
 
-void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
+bool ModuleManager::PublishInterface(const std::string &InterfaceName, Module* Mod)
 {
-       if (!Source)
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
+
+       if (iter == Interfaces.end())
        {
-               // if source is NULL, then the message originates from the local server
-               Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
+               modulelist ml;
+               ml.push_back(Mod);
+               Interfaces[InterfaceName] = std::make_pair(0, ml);
        }
        else
        {
-               // otherwise it comes from the user specified
-               WriteTo_NoFormat(Source,Dest,s.c_str());
+               iter->second.second.push_back(Mod);
        }
+       return true;
 }
 
-void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text)
+bool ModuleManager::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
 {
-       WriteChannelWithServ_NoFormat((char*)ServName.c_str(), Channel, text.c_str());
-}
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
 
-void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
-{
-       if (IncludeSender)
-       {
-               WriteChannel_NoFormat(Channel,User,s.c_str());
-       }
-       else
+       if (iter == Interfaces.end())
+               return false;
+
+       for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
        {
-               ChanExceptSender_NoFormat(Channel,User,0,s.c_str());
+               if (*x == Mod)
+               {
+                       iter->second.second.erase(x);
+                       if (iter->second.second.empty())
+                               Interfaces.erase(InterfaceName);
+                       return true;
+               }
        }
+       return false;
 }
 
-bool Server::CommonChannels(userrec* u1, userrec* u2)
+modulelist* ModuleManager::FindInterface(const std::string &InterfaceName)
 {
-       return (common_channels(u1,u2) != 0);
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
+       if (iter == Interfaces.end())
+               return NULL;
+       else
+               return &(iter->second.second);
 }
 
-void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
+bool ModuleManager::ModuleHasInterface(Module* mod, const std::string& InterfaceName)
 {
-       if (IncludeSender)
-       {
-               WriteCommon_NoFormat(User,text.c_str());
-       }
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
+       if (iter == Interfaces.end())
+               return false;
        else
        {
-               WriteCommonExcept_NoFormat(User,text.c_str());
+               modulelist& ml = iter->second.second;
+               modulelist::iterator mi = std::find(ml.begin(), ml.end(), mod);
+               return (mi != ml.end());
        }
 }
 
-void Server::SendWallops(userrec* User, std::string text)
+void ModuleManager::UseInterface(const std::string &InterfaceName)
 {
-       WriteWallOps(User,false,"%s",text.c_str());
-}
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
+       if (iter != Interfaces.end())
+               iter->second.first++;
 
-void Server::ChangeHost(userrec* user, std::string host)
-{
-       ChangeDisplayedHost(user,host.c_str());
 }
 
-void Server::ChangeGECOS(userrec* user, std::string gecos)
+void ModuleManager::DoneWithInterface(const std::string &InterfaceName)
 {
-       ChangeName(user,gecos.c_str());
+       interfacelist::iterator iter = Interfaces.find(InterfaceName);
+       if (iter != Interfaces.end())
+               iter->second.first--;
 }
 
-bool Server::IsNick(std::string nick)
+std::pair<int,std::string> ModuleManager::GetInterfaceInstanceCount(Module* m)
 {
-       return (isnick(nick.c_str()) != 0);
+       for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
+       {
+               for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
+               {
+                       if (*x == m)
+                       {
+                               return std::make_pair(iter->second.first, iter->first);
+                       }
+               }
+       }
+       return std::make_pair(0, "");
 }
 
-userrec* Server::FindNick(std::string nick)
+const std::string& ModuleManager::GetModuleName(Module* m)
 {
-       return Find(nick);
-}
+       static std::string nothing;
 
-userrec* Server::FindDescriptor(int socket)
-{
-       return (socket < 65536 ? fd_ref_table[socket] : NULL);
-}
+       for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator n = Modules.begin(); n != Modules.end(); ++n)
+       {
+               if (n->second.second == m)
+                       return n->first;
+       }
 
-chanrec* Server::FindChannel(std::string channel)
-{
-       return FindChan(channel.c_str());
+       return nothing;
 }
 
-std::string Server::ChanMode(userrec* User, chanrec* Chan)
-{
-       return cmode(User,Chan);
-}
+/* This is ugly, yes, but hash_map's arent designed to be
+ * addressed in this manner, and this is a bit of a kludge.
+ * Luckily its a specialist function and rarely used by
+ * many modules (in fact, it was specially created to make
+ * m_safelist possible, initially).
+ */
 
-bool Server::IsOnChannel(userrec* User, chanrec* Chan)
+Channel* InspIRCd::GetChannelIndex(long index)
 {
-       return has_channel(User,Chan);
+       int target = 0;
+       for (chan_hash::iterator n = this->chanlist->begin(); n != this->chanlist->end(); n++, target++)
+       {
+               if (index == target)
+                       return n->second;
+       }
+       return NULL;
 }
 
-std::string Server::GetServerName()
+CmdResult InspIRCd::CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user)
 {
-       return Config->ServerName;
+       return this->Parser->CallHandler(commandname, parameters, user);
 }
 
-std::string Server::GetNetworkName()
+bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, User* user)
 {
-       return Config->Network;
+       return this->Parser->IsValidCommand(commandname, pcnt, user);
 }
 
-std::string Server::GetServerDescription()
+void InspIRCd::AddCommand(Command *f)
 {
-       return Config->ServerDesc;
+       if (!this->Parser->CreateCommand(f))
+       {
+               ModuleException err("Command "+std::string(f->command)+" already exists.");
+               throw (err);
+       }
 }
 
-Admin Server::GetAdmin()
+void InspIRCd::SendMode(const std::vector<std::string>& parameters, User *user)
 {
-       return Admin(Config->AdminName,Config->AdminEmail,Config->AdminNick);
+       this->Modes->Process(parameters, user);
 }
 
-
-
-bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
+void InspIRCd::DumpText(User* user, const std::string &text)
 {
-       if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
+       if (IS_LOCAL(user))
        {
-               if (type == MT_SERVER)
-               {
-                       ModuleException e("Modes of type MT_SERVER are reserved for future expansion");
-                       throw(e);
-                       return false;
-               }
-               if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
-               {
-                       ModuleException e("Parameters on MT_CLIENT modes are not supported");
-                       throw(e);
-                       return false;
-               }
-               if ((params_when_on>1) || (params_when_off>1))
-               {
-                       ModuleException e("More than one parameter for an MT_CHANNEL mode is not yet supported");
-                       throw(e);
-                       return false;
-               }
-               return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
+               user->Write(text);
        }
        else
        {
-               ModuleException e("Muppet modechar detected.");
-               throw(e);
+               PI->PushToClient(user, text);
        }
-       return false;
 }
 
-bool Server::AddExtendedListMode(char modechar)
+void InspIRCd::DumpText(User* user, const char *text, ...)
 {
-       bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
-       if (res)
-               ModeMakeList(modechar);
-       return res;
-}
+       va_list argsPtr;
+       char line[MAXBUF];
 
-int Server::CountUsers(chanrec* c)
-{
-       return usercount(c);
-}
+       va_start(argsPtr, text);
+       vsnprintf(line, MAXBUF, text, argsPtr);
+       va_end(argsPtr);
 
+       DumpText(user, std::string(line));
+}
 
-bool Server::UserToPseudo(userrec* user,std::string message)
+void InspIRCd::DumpText(User* user, const std::string &LinePrefix, std::stringstream &TextStream)
 {
-       unsigned int old_fd = user->fd;
-       Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
-       user->FlushWriteBuf();
-       user->ClearBuffer();
-       user->fd = FD_MAGIC_NUMBER;
-
-       if (find(local_users.begin(),local_users.end(),user) != local_users.end())
+       char line[MAXBUF];
+       int start_pos = LinePrefix.length();
+       int pos = start_pos;
+       memcpy(line, LinePrefix.data(), pos);
+       std::string Word;
+       while (TextStream >> Word)
        {
-               local_users.erase(find(local_users.begin(),local_users.end(),user));
-               log(DEBUG,"Delete local user");
+               int len = Word.length();
+               if (pos + len + 12 > MAXBUF)
+               {
+                       line[pos] = '\0';
+                       DumpText(user, std::string(line));
+                       pos = start_pos;
+               }
+               line[pos] = ' ';
+               memcpy(line + pos + 1, Word.data(), len);
+               pos += len + 1;
        }
-
-       ServerInstance->SE->DelFd(old_fd);
-        shutdown(old_fd,2);
-        close(old_fd);
-       return true;
+       line[pos] = '\0';
+       DumpText(user, std::string(line));
 }
 
-bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
-{
-       log(DEBUG,"PseudoToUser");
-       zombie->fd = alive->fd;
-       FOREACH_MOD(I_OnUserQuit,OnUserQuit(alive,message));
-       alive->fd = FD_MAGIC_NUMBER;
-       alive->FlushWriteBuf();
-       alive->ClearBuffer();
-       // save these for later
-       std::string oldnick = alive->nick;
-       std::string oldhost = alive->host;
-       std::string oldident = alive->ident;
-       kill_link(alive,message.c_str());
-        if (find(local_users.begin(),local_users.end(),alive) != local_users.end())
-        {
-               local_users.erase(find(local_users.begin(),local_users.end(),alive));
-               log(DEBUG,"Delete local user");
-        }
-       // Fix by brain - cant write the user until their fd table entry is updated
-       fd_ref_table[zombie->fd] = zombie;
-       Write(zombie->fd,":%s!%s@%s NICK %s",oldnick.c_str(),oldident.c_str(),oldhost.c_str(),zombie->nick);
-        for (unsigned int i = 0; i < zombie->chans.size(); i++)
-        {
-                if (zombie->chans[i].channel != NULL)
-                {
-                        if (zombie->chans[i].channel->name)
-                        {
-                               chanrec* Ptr = zombie->chans[i].channel;
-                               WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
-                               if (Ptr->topicset)
-                               {
-                                       WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
-                                       WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
-                               }
-                               userlist(zombie,Ptr);
-                               WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
-
-                        }
-                }
-        }
-       if ((find(local_users.begin(),local_users.end(),zombie) == local_users.end()) && (zombie->fd != FD_MAGIC_NUMBER))
-               local_users.push_back(zombie);
-
-       return true;
-}
-
-void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
+bool InspIRCd::AddResolver(Resolver* r, bool cached)
 {
-       add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
-}
-
-void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
-{
-       add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
+       if (!cached)
+               return this->Res->AddResolverClass(r);
+       else
+       {
+               r->TriggerCachedResult();
+               delete r;
+               return true;
+       }
 }
 
-void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
+Module* ModuleManager::Find(const std::string &name)
 {
-       add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
-}
+       std::map<std::string, std::pair<ircd_module*, Module*> >::iterator modfind = Modules.find(name);
 
-void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
-{
-       add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
+       if (modfind == Modules.end())
+               return NULL;
+       else
+               return modfind->second.second;
 }
 
-void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
+const std::vector<std::string> ModuleManager::GetAllModuleNames(int filter)
 {
-       add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
+       std::vector<std::string> retval;
+       for (std::map<std::string, std::pair<ircd_module*, Module*> >::iterator x = Modules.begin(); x != Modules.end(); ++x)
+               if (!filter || (x->second.second->GetVersion().Flags & filter))
+                       retval.push_back(x->first);
+       return retval;
 }
 
-bool Server::DelGLine(std::string hostmask)
+ConfigReader::ConfigReader()
 {
-       return del_gline(hostmask.c_str());
+       this->error = 0;
 }
 
-bool Server::DelQLine(std::string nickname)
-{
-       return del_qline(nickname.c_str());
-}
 
-bool Server::DelZLine(std::string ipaddr)
+ConfigReader::~ConfigReader()
 {
-       return del_zline(ipaddr.c_str());
 }
 
-bool Server::DelKLine(std::string hostmask)
-{
-       return del_kline(hostmask.c_str());
-}
 
-bool Server::DelELine(std::string hostmask)
+std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
 {
-       return del_eline(hostmask.c_str());
-}
+       /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */
+       std::string result;
 
-long Server::CalcDuration(std::string delta)
-{
-       return duration(delta.c_str());
+       if (!ServerInstance->Config->ConfValue(tag, name, default_value, index, result, allow_linefeeds))
+       {
+               this->error = CONF_VALUE_NOT_FOUND;
+       }
+       return result;
 }
 
-bool Server::IsValidMask(std::string mask)
+std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
 {
-       char* dest = (char*)mask.c_str();
-        if (strchr(dest,'!')==0)
-                return false;
-        if (strchr(dest,'@')==0)
-                return false;
-        for (char* i = dest; *i; i++)
-                if (*i < 32)
-                        return false;
-        for (char* i = dest; *i; i++)
-                if (*i > 126)
-                        return false;
-        unsigned int c = 0;
-        for (char* i = dest; *i; i++)
-                if (*i == '!')
-                        c++;
-        if (c>1)
-                return false;
-        c = 0;
-        for (char* i = dest; *i; i++)
-                if (*i == '@')
-                        c++;
-        if (c>1)
-                return false;
-
-       return true;
+       return ReadValue(tag, name, "", index, allow_linefeeds);
 }
 
-Module* Server::FindModule(std::string name)
+bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
 {
-       for (int i = 0; i <= MODCOUNT; i++)
-       {
-               if (Config->module_names[i] == name)
-               {
-                       return modules[i];
-               }
-       }
-       return NULL;
+       return ServerInstance->Config->ConfValueBool(tag, name, default_value, index);
 }
 
-ConfigReader::ConfigReader()
+bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
 {
-       Config->ClearStack();
-       this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
-       this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
-       this->readerror = Config->LoadConf(CONFIG_FILE,this->cache,this->errorlog);
-       if (!this->readerror)
-               this->error = CONF_FILE_NOT_FOUND;
+       return ReadFlag(tag, name, "", index);
 }
 
 
-ConfigReader::~ConfigReader()
+int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive)
 {
-       if (this->cache)
-               delete this->cache;
-       if (this->errorlog)
-               delete this->errorlog;
-}
+       int result;
 
-
-ConfigReader::ConfigReader(std::string filename)
-{
-       Config->ClearStack();
-       this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
-       this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
-       this->readerror = Config->LoadConf(filename.c_str(),this->cache,this->errorlog);
-       if (!this->readerror)
-               this->error = CONF_FILE_NOT_FOUND;
-};
-
-std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
-{
-       char val[MAXBUF];
-       char t[MAXBUF];
-       char n[MAXBUF];
-       strlcpy(t,tag.c_str(),MAXBUF);
-       strlcpy(n,name.c_str(),MAXBUF);
-       int res = Config->ReadConf(cache,t,n,index,val);
-       if (!res)
+       if(!ServerInstance->Config->ConfValueInteger(tag, name, default_value, index, result))
        {
                this->error = CONF_VALUE_NOT_FOUND;
-               return "";
+               return 0;
        }
-       return val;
-}
 
-bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
-{
-       char val[MAXBUF];
-       char t[MAXBUF];
-       char n[MAXBUF];
-       strlcpy(t,tag.c_str(),MAXBUF);
-       strlcpy(n,name.c_str(),MAXBUF);
-       int res = Config->ReadConf(cache,t,n,index,val);
-       if (!res)
+       if ((need_positive) && (result < 0))
        {
-               this->error = CONF_VALUE_NOT_FOUND;
-               return false;
+               this->error = CONF_INT_NEGATIVE;
+               return 0;
        }
-       std::string s = val;
-       return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
+
+       return result;
 }
 
-long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
+int ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive)
 {
-       char val[MAXBUF];
-       char t[MAXBUF];
-       char n[MAXBUF];
-       strlcpy(t,tag.c_str(),MAXBUF);
-       strlcpy(n,name.c_str(),MAXBUF);
-       int res = Config->ReadConf(cache,t,n,index,val);
-       if (!res)
-       {
-               this->error = CONF_VALUE_NOT_FOUND;
-               return 0;
-       }
-       for (char* i = val; *i; i++)
-       {
-               if (!isdigit(*i))
-               {
-                       this->error = CONF_NOT_A_NUMBER;
-                       return 0;
-               }
-       }
-       if ((needs_unsigned) && (atoi(val)<0))
-       {
-               this->error = CONF_NOT_UNSIGNED;
-               return 0;
-       }
-       return atoi(val);
+       return ReadInteger(tag, name, "", index, need_positive);
 }
 
 long ConfigReader::GetError()
@@ -947,71 +946,58 @@ long ConfigReader::GetError()
        return olderr;
 }
 
-void ConfigReader::DumpErrors(bool bail, userrec* user)
+int ConfigReader::Enumerate(const std::string &tag)
 {
-        if (bail)
-        {
-                printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
-                exit(0);
-        }
-        else
-        {
-                char dataline[1024];
-                if (user)
-                {
-                        WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
-                        while (!errorlog->eof())
-                        {
-                                errorlog->getline(dataline,1024);
-                                WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
-                        }
-                }
-                else
-                {
-                        WriteOpers("There were errors in the configuration file:",user->nick);
-                        while (!errorlog->eof())
-                        {
-                                errorlog->getline(dataline,1024);
-                                WriteOpers(dataline);
-                        }
-                }
-                return;
-        }
+       return ServerInstance->Config->ConfValueEnum(tag);
 }
 
-
-int ConfigReader::Enumerate(std::string tag)
+int ConfigReader::EnumerateValues(const std::string &tag, int index)
 {
-       return Config->EnumConf(cache,tag.c_str());
+       return ServerInstance->Config->ConfVarEnum(tag, index);
 }
 
-int ConfigReader::EnumerateValues(std::string tag, int index)
+FileReader::FileReader(const std::string &filename)
 {
-       return Config->EnumValues(cache, tag.c_str(), index);
+       LoadFile(filename);
 }
 
-bool ConfigReader::Verify()
+FileReader::FileReader()
 {
-       return this->readerror;
 }
 
+std::string FileReader::Contents()
+{
+       std::string x;
+       for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
+       {
+               x.append(*a);
+               x.append("\r\n");
+       }
+       return x;
+}
 
-FileReader::FileReader(std::string filename)
+unsigned long FileReader::ContentSize()
 {
-       file_cache c;
-       readfile(c,filename.c_str());
-       this->fc = c;
+       return this->contentsize;
 }
 
-FileReader::FileReader()
+void FileReader::CalcSize()
 {
+       unsigned long n = 0;
+       for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
+               n += (a->length() + 2);
+       this->contentsize = n;
 }
 
-void FileReader::LoadFile(std::string filename)
+void FileReader::LoadFile(const std::string &filename)
 {
        file_cache c;
-       readfile(c,filename.c_str());
-       this->fc = c;
+       c.clear();
+       if (ServerInstance->Config->ReadFile(c,filename.c_str()))
+       {
+               this->fc = c;
+               this->CalcSize();
+       }
 }
 
 
@@ -1021,14 +1007,7 @@ FileReader::~FileReader()
 
 bool FileReader::Exists()
 {
-       if (fc.size() == 0)
-       {
-               return(false);
-       }
-       else
-       {
-               return(true);
-       }
+       return (!(fc.size() == 0));
 }
 
 std::string FileReader::GetLine(int x)
@@ -1042,11 +1021,3 @@ int FileReader::FileSize()
 {
        return fc.size();
 }
-
-
-std::vector<Module*> modules(255);
-std::vector<ircd_module*> factory(255);
-
-int MODCOUNT  = -1;
-
-