]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_autoop.cpp
Fix unsafe iteration in m_timedbans
[user/henk/code/inspircd.git] / src / modules / m_autoop.cpp
index a66e2bd4de24ce9ab64c6b50be233f91635f492f..3448bf9f5b58013a0ff69d4a60424a32548902ec 100644 (file)
@@ -24,11 +24,52 @@ class AutoOpList : public ListModeBase
        AutoOpList(Module* Creator) : ListModeBase(Creator, "autoop", 'w', "End of Channel Access List", 910, 911, true)
        {
                levelrequired = OP_VALUE;
+               tidy = false;
        }
-       // TODO need own numerics
-       // TODO add some serious access control for setting this mode (you can currently gain +qa with it)
-};
 
+       ModeHandler* FindMode(const std::string& mid)
+       {
+               if (mid.length() == 1)
+                       return ServerInstance->Modes->FindMode(mid[0], MODETYPE_CHANNEL);
+               for(char c='A'; c < 'z'; c++)
+               {
+                       ModeHandler* mh = ServerInstance->Modes->FindMode(c, MODETYPE_CHANNEL);
+                       if (mh && mh->name == mid)
+                               return mh;
+               }
+               return NULL;
+       }
+
+       ModResult AccessCheck(User* source, Channel* channel, std::string &parameter, bool adding)
+       {
+               std::string::size_type pos = parameter.find(':');
+               if (pos == 0 || pos == std::string::npos)
+                       return adding ? MOD_RES_DENY : MOD_RES_PASSTHRU;
+               unsigned int mylevel = channel->GetPrefixValue(source);
+               std::string mid = parameter.substr(0, pos);
+               ModeHandler* mh = FindMode(mid);
+
+               if (adding && (!mh || !mh->GetPrefixRank()))
+               {
+                       source->WriteNumeric(415, "%s %s :Cannot find prefix mode '%s' for autoop",
+                               source->nick.c_str(), mid.c_str(), mid.c_str());
+                       return MOD_RES_DENY;
+               }
+               else if (!mh)
+                       return MOD_RES_PASSTHRU;
+
+               std::string dummy;
+               if (mh->AccessCheck(source, channel, dummy, true) == MOD_RES_DENY)
+                       return MOD_RES_DENY;
+               if (mh->GetLevelRequired() > mylevel)
+               {
+                       source->WriteNumeric(482, "%s %s :You must be able to set mode '%s' to include it in an autoop",
+                               source->nick.c_str(), channel->name.c_str(), mid.c_str());
+                       return MOD_RES_DENY;
+               }
+               return MOD_RES_PASSTHRU;
+       }
+};
 
 class ModuleAutoOp : public Module
 {
@@ -59,8 +100,9 @@ public:
                                        continue;
                                if (chan->CheckBan(user, it->mask.substr(colon+1)))
                                {
-                                       privs = it->mask.substr(0, colon);
-                                       break;
+                                       ModeHandler* given = mh.FindMode(it->mask.substr(0, colon));
+                                       if (given)
+                                               privs += given->GetModeChar();
                                }
                        }
                }