]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Add Module::init() for correct exception handling during hook registration
[user/henk/code/inspircd.git] / src / users.cpp
index 14edf649f30710e8e483fa8625326be8bf02b286..c2890f9f723e1b7ffe071a277347075d7bf3913c 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -104,7 +104,7 @@ std::string User::ProcessNoticeMasks(const char *sm)
                        break;
                }
 
-               *c++;
+               c++;
        }
 
        std::string s = this->FormatNoticeMasks();
@@ -203,24 +203,6 @@ const char* User::FormatModes(bool showparameters)
        return data;
 }
 
-void User::DecrementModes()
-{
-       ServerInstance->Logs->Log("USERS", DEBUG, "DecrementModes()");
-       for (unsigned char n = 'A'; n <= 'z'; n++)
-       {
-               if (modes[n-65])
-               {
-                       ServerInstance->Logs->Log("USERS", DEBUG,"DecrementModes() found mode %c", n);
-                       ModeHandler* mh = ServerInstance->Modes->FindMode(n, MODETYPE_USER);
-                       if (mh)
-                       {
-                               ServerInstance->Logs->Log("USERS", DEBUG,"Found handler %c and call ChangeCount", n);
-                               mh->ChangeCount(-1);
-                       }
-               }
-       }
-}
-
 User::User(const std::string &uid, const std::string& sid, int type)
        : uuid(uid), server(sid), usertype(type)
 {
@@ -240,13 +222,13 @@ User::User(const std::string &uid, const std::string& sid, int type)
 }
 
 LocalUser::LocalUser(int myfd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* servaddr)
-       : User(ServerInstance->GetUID(), ServerInstance->Config->ServerName, USERTYPE_LOCAL)
+       : User(ServerInstance->GetUID(), ServerInstance->Config->ServerName, USERTYPE_LOCAL), eh(this)
 {
        bytes_in = bytes_out = cmds_in = cmds_out = 0;
        server_sa.sa.sa_family = AF_UNSPEC;
-       Penalty = 0;
+       CommandFloodPenalty = 0;
        lastping = nping = 0;
-       SetFd(myfd);
+       eh.SetFd(myfd);
        memcpy(&client_sa, client, sizeof(irc::sockets::sockaddrs));
        memcpy(&server_sa, servaddr, sizeof(irc::sockets::sockaddrs));
 }
@@ -495,29 +477,25 @@ bool LocalUser::HasPrivPermission(const std::string &privstr, bool noisy)
        return false;
 }
 
-void User::OnDataReady()
-{
-}
-
-void LocalUser::OnDataReady()
+void UserIOHandler::OnDataReady()
 {
-       if (quitting)
+       if (user->quitting)
                return;
 
-       if (recvq.length() > MyClass->GetRecvqMax() && !HasPrivPermission("users/flood/increased-buffers"))
+       if (recvq.length() > user->MyClass->GetRecvqMax() && !user->HasPrivPermission("users/flood/increased-buffers"))
        {
-               ServerInstance->Users->QuitUser(this, "RecvQ exceeded");
+               ServerInstance->Users->QuitUser(user, "RecvQ exceeded");
                ServerInstance->SNO->WriteToSnoMask('a', "User %s RecvQ of %lu exceeds connect class maximum of %lu",
-                       nick.c_str(), (unsigned long)recvq.length(), MyClass->GetRecvqMax());
+                       user->nick.c_str(), (unsigned long)recvq.length(), user->MyClass->GetRecvqMax());
        }
        unsigned long sendqmax = ULONG_MAX;
-       if (!HasPrivPermission("users/flood/increased-buffers"))
-               sendqmax = MyClass->GetSendqSoftMax();
-       int penaltymax = MyClass->GetPenaltyThreshold();
-       if (penaltymax == 0 || HasPrivPermission("users/flood/no-fakelag"))
-               penaltymax = INT_MAX;
+       if (!user->HasPrivPermission("users/flood/increased-buffers"))
+               sendqmax = user->MyClass->GetSendqSoftMax();
+       unsigned long penaltymax = ULONG_MAX;
+       if (!user->HasPrivPermission("users/flood/no-fakelag"))
+               penaltymax = user->MyClass->GetPenaltyThreshold() * 1000;
 
-       while (Penalty < penaltymax && getSendQSize() < sendqmax)
+       while (user->CommandFloodPenalty < penaltymax && getSendQSize() < sendqmax)
        {
                std::string line;
                line.reserve(MAXBUF);
@@ -546,29 +524,32 @@ eol_found:
 
                // TODO should this be moved to when it was inserted in recvq?
                ServerInstance->stats->statsRecv += qpos;
-               this->bytes_in += qpos;
-               this->cmds_in++;
+               user->bytes_in += qpos;
+               user->cmds_in++;
 
-               ServerInstance->Parser->ProcessBuffer(line, this);
-               if (quitting)
+               ServerInstance->Parser->ProcessBuffer(line, user);
+               if (user->quitting)
                        return;
        }
        // Add pseudo-penalty so that we continue processing after sendq recedes
-       if (Penalty == 0 && getSendQSize() >= sendqmax)
-               Penalty++;
+       if (user->CommandFloodPenalty == 0 && getSendQSize() >= sendqmax)
+               user->CommandFloodPenalty++;
+       if (user->CommandFloodPenalty >= penaltymax && !user->MyClass->fakelag)
+               ServerInstance->Users->QuitUser(user, "Excess Flood");
 }
 
-void LocalUser::AddWriteBuf(const std::string &data)
+void UserIOHandler::AddWriteBuf(const std::string &data)
 {
-       if (!quitting && getSendQSize() + data.length() > MyClass->GetSendqHardMax() && !HasPrivPermission("users/flood/increased-buffers"))
+       if (!user->quitting && getSendQSize() + data.length() > user->MyClass->GetSendqHardMax() &&
+               !user->HasPrivPermission("users/flood/increased-buffers"))
        {
                /*
                 * Quit the user FIRST, because otherwise we could recurse
                 * here and hit the same limit.
                 */
-               ServerInstance->Users->QuitUser(this, "SendQ exceeded");
+               ServerInstance->Users->QuitUser(user, "SendQ exceeded");
                ServerInstance->SNO->WriteToSnoMask('a', "User %s SendQ exceeds connect class maximum of %lu",
-                       nick.c_str(), MyClass->GetSendqHardMax());
+                       user->nick.c_str(), user->MyClass->GetSendqHardMax());
                return;
        }
 
@@ -578,9 +559,9 @@ void LocalUser::AddWriteBuf(const std::string &data)
        WriteData(data);
 }
 
-void User::OnError(BufferedSocketError)
+void UserIOHandler::OnError(BufferedSocketError)
 {
-       ServerInstance->Users->QuitUser(this, getError());
+       ServerInstance->Users->QuitUser(user, getError());
 }
 
 CullResult User::cull()
@@ -590,7 +571,6 @@ CullResult User::cull()
        PurgeEmptyChannels();
 
        this->InvalidateCache();
-       this->DecrementModes();
 
        if (client_sa.sa.sa_family != AF_UNSPEC)
                ServerInstance->Users->RemoveCloneCounts(this);
@@ -607,7 +587,7 @@ CullResult LocalUser::cull()
        else
                ServerInstance->Logs->Log("USERS", DEBUG, "Failed to remove user from vector");
 
-       Close();
+       eh.cull();
        return User::cull();
 }
 
@@ -1001,7 +981,7 @@ void User::Write(const char *text, ...)
 
 void LocalUser::Write(const std::string& text)
 {
-       if (!ServerInstance->SE->BoundsCheckFd(this))
+       if (!ServerInstance->SE->BoundsCheckFd(&eh))
                return;
 
        if (text.length() > MAXBUF - 2)
@@ -1014,8 +994,8 @@ void LocalUser::Write(const std::string& text)
 
        ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%s] O %s", uuid.c_str(), text.c_str());
 
-       this->AddWriteBuf(text);
-       this->AddWriteBuf(wide_newline);
+       eh.AddWriteBuf(text);
+       eh.AddWriteBuf(wide_newline);
 
        ServerInstance->stats->statsSent += text.length() + 2;
        this->bytes_out += text.length() + 2;
@@ -1692,19 +1672,19 @@ const std::string& FakeUser::GetFullRealHost()
 }
 
 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask)
-       : config(tag), type(t), name("unnamed"), registration_timeout(0), host(mask),
-       pingtime(0), pass(""), hash(""), softsendqmax(0), hardsendqmax(0),
-       recvqmax(0), penaltythreshold(0), maxlocal(0), maxglobal(0), maxchans(0), port(0), limit(0)
+       : config(tag), type(t), fakelag(true), name("unnamed"), registration_timeout(0), host(mask),
+       pingtime(0), pass(""), hash(""), softsendqmax(0), hardsendqmax(0), recvqmax(0),
+       penaltythreshold(0), commandrate(0), maxlocal(0), maxglobal(0), maxchans(0), port(0), limit(0)
 {
 }
 
 ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask, const ConnectClass& parent)
-       : config(tag), type(t), name("unnamed"),
-       registration_timeout(parent.registration_timeout), host(mask),
-       pingtime(parent.pingtime), pass(parent.pass), hash(parent.hash),
-       softsendqmax(parent.softsendqmax), hardsendqmax(parent.hardsendqmax),
-       recvqmax(parent.recvqmax), penaltythreshold(parent.penaltythreshold), maxlocal(parent.maxlocal),
-       maxglobal(parent.maxglobal), maxchans(parent.maxchans),
+       : config(tag), type(t), fakelag(parent.fakelag), name("unnamed"),
+       registration_timeout(parent.registration_timeout), host(mask), pingtime(parent.pingtime),
+       pass(parent.pass), hash(parent.hash), softsendqmax(parent.softsendqmax),
+       hardsendqmax(parent.hardsendqmax), recvqmax(parent.recvqmax),
+       penaltythreshold(parent.penaltythreshold), commandrate(parent.commandrate),
+       maxlocal(parent.maxlocal), maxglobal(parent.maxglobal), maxchans(parent.maxchans),
        port(parent.port), limit(parent.limit)
 {
 }