]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_invisible.cpp
Fix segfault in m_chanprotect when OnAccessCheck is called with a null channel
[user/henk/code/inspircd.git] / src / modules / m_invisible.cpp
index c1b2dcc7f019ce4ea126ad668484984c7849741f..678b9cc4952217e26840c2a3e5fbb21578cdd95b 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  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.
 
 static ConfigReader* conf;
 
-class QuietOper : public VisData
-{
- public:
-       QuietOper()
-       {
-       }
-
-       virtual ~QuietOper()
-       {
-       }
-
-       virtual bool VisibleTo(User* user)
-       {
-               return IS_OPER(user);
-       }
-};
-
-
 class InvisibleMode : public ModeHandler
 {
-       QuietOper* qo;
  public:
-       InvisibleMode(InspIRCd* Instance) : ModeHandler(Instance, 'Q', 0, 0, false, MODETYPE_USER, true)
+       InvisibleMode(InspIRCd* Instance, Module* Creator) : ModeHandler(Instance, Creator, 'Q', 0, 0, false, MODETYPE_USER, true)
        {
-               qo = new QuietOper();
        }
 
        ~InvisibleMode()
        {
-               for (user_hash::iterator i = ServerInstance->Users->clientlist->begin(); i != ServerInstance->Users->clientlist->end(); i++)
-                       if (i->second->Visibility == qo)
-                               i->second->Visibility = NULL;
-               delete qo;
        }
 
-       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
        {
                if (dest->IsModeSet('Q') != adding)
                {
-                       bool ok = false;
-
-                       if (IS_LOCAL(source))
-                       {
-                               for (int j = 0; j < conf->Enumerate("type"); j++)
-                               {
-                                       std::string opertype = conf->ReadValue("type","name",j);
-                                       if (opertype == source->oper)
-                                       {
-                                               ok = conf->ReadFlag("type", "canquiet", j);
-                                               break;
-                                       }
-                               }
-
-                               if (!ok)
-                               {
-                                       source->WriteNumeric(481, "%s :Permission Denied - You do not have access to become invisible via user mode +Q", source->nick.c_str());
-                                       return MODEACTION_DENY;
-                               }
-                       }
-
                        dest->SetMode('Q', adding);
 
                        /* Fix for bug #379 reported by stealth. On +/-Q make m_watch think the user has signed on/off */
@@ -87,9 +42,6 @@ class InvisibleMode : public ModeHandler
                        if (m && adding)
                                m->OnUserQuit(dest, "Connection closed", "Connection closed");
 
-                       /* Set visibility handler object */
-                       dest->Visibility = adding ? qo : NULL;
-
                        /* This has to come after setting/unsetting the handler */
                        if (m && !adding)
                                m->OnPostConnect(dest);
@@ -116,7 +68,7 @@ class InvisibleMode : public ModeHandler
                                }
                        }
 
-                       ServerInstance->SNO->WriteToSnoMask('A', "\2NOTICE\2: Oper %s has become %svisible (%sQ)", dest->GetFullHost().c_str(), adding ? "in" : "", adding ? "+" : "-");
+                       ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has become %svisible (%cQ)", dest->GetFullHost().c_str(), adding ? "in" : "", adding ? '+' : '-');
                        return MODEACTION_ALLOW;
                }
                else
@@ -128,14 +80,12 @@ class InvisibleMode : public ModeHandler
 
 class InvisibleDeOper : public ModeWatcher
 {
- private:
-       InspIRCd* Srv;
  public:
-       InvisibleDeOper(InspIRCd* Instance) : ModeWatcher(Instance, 'o', MODETYPE_USER), Srv(Instance)
+       InvisibleDeOper(InspIRCd* Instance) : ModeWatcher(Instance, 'o', MODETYPE_USER)
        {
        }
 
-       bool BeforeMode(User* source, User* dest, Channel* channel, std::string &param, bool adding, ModeType type, bool)
+       bool BeforeMode(User* source, User* dest, Channel* channel, std::string &param, bool adding, ModeType type)
        {
                /* Users who are opers and have +Q get their +Q removed when they deoper */
                if ((!adding) && (dest->IsModeSet('Q')))
@@ -143,7 +93,7 @@ class InvisibleDeOper : public ModeWatcher
                        std::vector<std::string> newmodes;
                        newmodes.push_back(dest->nick);
                        newmodes.push_back("-Q");
-                       ServerInstance->Modes->Process(newmodes, source, true);
+                       ServerInstance->Modes->Process(newmodes, source);
                }
                return true;
        }
@@ -153,46 +103,44 @@ class InvisibleDeOper : public ModeWatcher
 class ModuleInvisible : public Module
 {
  private:
-       InvisibleMode* qm;
-       InvisibleDeOper* ido;
+       InvisibleMode qm;
+       InvisibleDeOper ido;
  public:
        ModuleInvisible(InspIRCd* Me)
-               : Module(Me)
+               : Module(Me), qm(Me, this), ido(Me)
        {
                conf = new ConfigReader(ServerInstance);
-               qm = new InvisibleMode(ServerInstance);
-               if (!ServerInstance->Modes->AddMode(qm))
+               if (!ServerInstance->Modes->AddMode(&qm))
                        throw ModuleException("Could not add new modes!");
-               ido = new InvisibleDeOper(ServerInstance);
-               if (!ServerInstance->Modes->AddModeWatcher(ido))
+               if (!ServerInstance->Modes->AddModeWatcher(&ido))
                        throw ModuleException("Could not add new mode watcher on usermode +o!");
 
                /* Yeah i know people can take this out. I'm not about to obfuscate code just to be a pain in the ass. */
                ServerInstance->Users->ServerNoticeAll("*** m_invisible.so has just been loaded on this network. For more information, please visit http://inspircd.org/wiki/Modules/invisible");
-               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserJoin, I_OnUserPart, I_OnUserQuit, I_OnRehash, I_OnHostCycle };
-               ServerInstance->Modules->Attach(eventlist, this, 7);
+               Implementation eventlist[] = {
+                       I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserJoin, I_OnUserPart, I_OnUserQuit,
+                       I_OnRehash, I_OnHostCycle, I_OnSendWhoLine
+               };
+               ServerInstance->Modules->Attach(eventlist, this, 8);
        };
 
        virtual ~ModuleInvisible()
        {
-               ServerInstance->Modes->DelMode(qm);
-               ServerInstance->Modes->DelModeWatcher(ido);
-               delete qm;
-               delete ido;
+               ServerInstance->Modes->DelMode(&qm);
+               ServerInstance->Modes->DelModeWatcher(&ido);
                delete conf;
        };
 
-       virtual Version GetVersion();
-       virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent);
-       virtual void OnRehash(User* user, const std::string &parameter);
+       Version GetVersion();
+       void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent, bool created);
+       void OnRehash(User* user);
        void OnUserPart(User* user, Channel* channel, std::string &partmessage, bool &silent);
        void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message);
-       bool OnHostCycle(User* user);
-       /* No privmsg response when hiding - submitted by Eric at neowin */
-       virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
-       virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
-       /* Fix by Eric @ neowin.net, thanks :) -- Brain */
+       ModResult OnHostCycle(User* user);
+       ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
+       ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
        void WriteCommonFrom(User *user, Channel* channel, const char* text, ...) CUSTOM_PRINTF(4, 5);
+       void OnSendWhoLine(User* source, User* user, Channel* channel, std::string& line);
 };
 
 Version ModuleInvisible::GetVersion()
@@ -200,18 +148,18 @@ Version ModuleInvisible::GetVersion()
        return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
 }
 
-void ModuleInvisible::OnUserJoin(User* user, Channel* channel, bool sync, bool &silent)
+void ModuleInvisible::OnUserJoin(User* user, Channel* channel, bool sync, bool &silent, bool created)
 {
        if (user->IsModeSet('Q'))
        {
                silent = true;
                /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */
                this->WriteCommonFrom(user, channel, "JOIN %s", channel->name.c_str());
-               ServerInstance->SNO->WriteToSnoMask('A', "\2NOTICE\2: Oper %s has joined %s invisibly (+Q)", user->GetFullHost().c_str(), channel->name.c_str());
+               ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has joined %s invisibly (+Q)", user->GetFullHost().c_str(), channel->name.c_str());
        }
 }
 
-void ModuleInvisible::OnRehash(User* user, const std::string &parameter)
+void ModuleInvisible::OnRehash(User* user)
 {
        delete conf;
        conf = new ConfigReader(ServerInstance);
@@ -251,13 +199,13 @@ void ModuleInvisible::OnUserQuit(User* user, const std::string &reason, const st
        }
 }
 
-bool ModuleInvisible::OnHostCycle(User* user)
+ModResult ModuleInvisible::OnHostCycle(User* user)
 {
-       return user->IsModeSet('Q');
+       return user->IsModeSet('Q') ? MOD_RES_DENY : MOD_RES_PASSTHRU;
 }
 
 /* No privmsg response when hiding - submitted by Eric at neowin */
-int ModuleInvisible::OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+ModResult ModuleInvisible::OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
 {
        if ((target_type == TYPE_USER) && (IS_LOCAL(user)))
        {
@@ -265,13 +213,13 @@ int ModuleInvisible::OnUserPreNotice(User* user,void* dest,int target_type, std:
                if(target->IsModeSet('Q') && !IS_OPER(user))
                {
                        user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), target->nick.c_str());
-                       return 1;
+                       return MOD_RES_DENY;
                }
        }
-       return 0;
+       return MOD_RES_PASSTHRU;
 }
 
-int ModuleInvisible::OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+ModResult ModuleInvisible::OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
 {
        return OnUserPreNotice(user, dest, target_type, text, status, exempt_list);
 }
@@ -300,4 +248,10 @@ void ModuleInvisible::WriteCommonFrom(User *user, Channel* channel, const char*
        }
 }
 
+void ModuleInvisible::OnSendWhoLine(User* source, User* user, Channel* channel, std::string& line)
+{
+       if (user->IsModeSet('Q') && !IS_OPER(source))
+               line.clear();
+}
+
 MODULE_INIT(ModuleInvisible)