]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Update make help, configure, and fix build of empty m_* directories
[user/henk/code/inspircd.git] / src / users.cpp
index 6087f4d1cd579f03739758fc4071eb2f18ad96c0..b361205da7aa1053fc0ca50288d4111c94f6fea7 100644 (file)
@@ -25,6 +25,8 @@ unsigned long uniq_id = 1;
 
 static unsigned long* already_sent = NULL;
 
+LocalIntExt User::NICKForced("NICKForced", NULL);
+LocalStringExt User::OperQuit("OperQuit", NULL);
 
 void InitializeAlreadySent(SocketEngine* SE)
 {
@@ -32,7 +34,6 @@ void InitializeAlreadySent(SocketEngine* SE)
        memset(already_sent, 0, SE->GetMaxFds() * sizeof(unsigned long));
 }
 
-
 std::string User::ProcessNoticeMasks(const char *sm)
 {
        bool adding = true, oldadding = false;
@@ -108,9 +109,9 @@ void User::StartDNSLookup()
                UserResolver *res_reverse;
 
                QueryType resolvtype = this->client_sa.sa.sa_family == AF_INET6 ? DNS_QUERY_PTR6 : DNS_QUERY_PTR4;
-               res_reverse = new UserResolver(this->ServerInstance, this, sip, resolvtype, cached);
+               res_reverse = new UserResolver(ServerInstance, this, sip, resolvtype, cached);
 
-               this->ServerInstance->AddResolver(res_reverse, cached);
+               ServerInstance->AddResolver(res_reverse, cached);
        }
        catch (CoreException& e)
        {
@@ -204,7 +205,7 @@ void User::DecrementModes()
        }
 }
 
-User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance)
+User::User(InspIRCd* Instance, const std::string &uid)
 {
        server = Instance->FindServerNamePtr(Instance->Config->ServerName);
        age = ServerInstance->Time();
@@ -217,7 +218,6 @@ User::User(InspIRCd* Instance, const std::string &uid) : ServerInstance(Instance
        client_sa.sa.sa_family = AF_UNSPEC;
        recvq.clear();
        sendq.clear();
-       Visibility = NULL;
        MyClass = NULL;
        AllowedPrivs = AllowedOperCommands = NULL;
        chans.clear();
@@ -716,7 +716,7 @@ void User::FlushWriteBuf()
                        this->bytes_out += n_sent;
                        this->cmds_out++;
                        if (n_sent != old_sendq_length)
-                               this->ServerInstance->SE->WantWrite(this);
+                               ServerInstance->SE->WantWrite(this);
                }
        }
 
@@ -787,7 +787,7 @@ void User::Oper(const std::string &opertype, const std::string &opername)
                                        this->AllowedPrivs->insert(mypriv);
                                }
 
-                               for (unsigned char* c = (unsigned char*)iter_operclass->second.umodelist; *c; ++c)
+                               for (unsigned char* c = (unsigned char*)iter_operclass->second.umodelist.c_str(); *c; ++c)
                                {
                                        if (*c == '*')
                                        {
@@ -799,7 +799,7 @@ void User::Oper(const std::string &opertype, const std::string &opername)
                                        }
                                }
 
-                               for (unsigned char* c = (unsigned char*)iter_operclass->second.cmodelist; *c; ++c)
+                               for (unsigned char* c = (unsigned char*)iter_operclass->second.cmodelist.c_str(); *c; ++c)
                                {
                                        if (*c == '*')
                                        {
@@ -870,12 +870,12 @@ void User::UnOper()
 /* adds or updates an entry in the whowas list */
 void User::AddToWhoWas()
 {
-       Command* whowas_command = ServerInstance->Parser->GetHandler("WHOWAS");
-       if (whowas_command)
+       Module* whowas = ServerInstance->Modules->Find("cmd_whowas.so");
+       if (whowas)
        {
-               std::deque<classbase*> params;
-               params.push_back(this);
-               whowas_command->HandleInternal(WHOWAS_ADD, params);
+               WhowasRequest req(NULL, whowas, WhowasRequest::WHOWAS_ADD);
+               req.user = this;
+               req.Send();
        }
 }
 
@@ -955,9 +955,9 @@ void User::FullConnect()
 
        this->WriteServ("NOTICE Auth :Welcome to \002%s\002!",ServerInstance->Config->Network);
        this->WriteNumeric(RPL_WELCOME, "%s :Welcome to the %s IRC Network %s!%s@%s",this->nick.c_str(), ServerInstance->Config->Network, this->nick.c_str(), this->ident.c_str(), this->host.c_str());
-       this->WriteNumeric(RPL_YOURHOSTIS, "%s :Your host is %s, running version InspIRCd-1.2",this->nick.c_str(),ServerInstance->Config->ServerName);
+       this->WriteNumeric(RPL_YOURHOSTIS, "%s :Your host is %s, running version InspIRCd-2.0",this->nick.c_str(),ServerInstance->Config->ServerName);
        this->WriteNumeric(RPL_SERVERCREATED, "%s :This server was created %s %s", this->nick.c_str(), __TIME__, __DATE__);
-       this->WriteNumeric(RPL_SERVERVERSION, "%s %s InspIRCd-1.2 %s %s %s", this->nick.c_str(), ServerInstance->Config->ServerName, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str());
+       this->WriteNumeric(RPL_SERVERVERSION, "%s %s InspIRCd-2.0 %s %s %s", this->nick.c_str(), ServerInstance->Config->ServerName, ServerInstance->Modes->UserModeList().c_str(), ServerInstance->Modes->ChannelModeList().c_str(), ServerInstance->Modes->ParaModeList().c_str());
 
        ServerInstance->Config->Send005(this);
        this->WriteNumeric(RPL_YOURUUID, "%s %s :your unique ID", this->nick.c_str(), this->uuid.c_str());
@@ -970,10 +970,10 @@ void User::FullConnect()
                ServerInstance->Users->unregistered_count--;
 
        /* Trigger LUSERS output, give modules a chance too */
-       int MOD_RESULT = 0;
+       ModResult MOD_RESULT;
        std::string command("LUSERS");
        std::vector<std::string> parameters;
-       FOREACH_RESULT(I_OnPreCommand, OnPreCommand(command, parameters, this, true, "LUSERS"));
+       FIRST_MOD_RESULT(ServerInstance, OnPreCommand, MOD_RESULT, (command, parameters, this, true, "LUSERS"));
        if (!MOD_RESULT)
                ServerInstance->CallCommandHandler(command, parameters, this);
 
@@ -1025,17 +1025,15 @@ void User::InvalidateCache()
 
 bool User::ForceNickChange(const char* newnick)
 {
-       int MOD_RESULT = 0;
+       ModResult MOD_RESULT;
 
        this->InvalidateCache();
 
-       this->Extend("NICKForced", "Enabled");
-
-       FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(this, newnick));
+       NICKForced.set(this, 1);
+       FIRST_MOD_RESULT(ServerInstance, OnUserPreNick, MOD_RESULT, (this, newnick));
+       NICKForced.set(this, 0);
 
-       this->Shrink("NICKForced");
-
-       if (MOD_RESULT)
+       if (MOD_RESULT == MOD_RES_DENY)
        {
                ServerInstance->stats->statsCollisions++;
                return false;
@@ -1046,12 +1044,10 @@ bool User::ForceNickChange(const char* newnick)
        if (nickhandler) // wtfbbq, when would this not be here
        {
                std::vector<std::string> parameters;
-               nickhandler->HandleInternal(1, dummy);
                parameters.push_back(newnick);
-               this->Extend("NICKForced", "Enabled");
+               NICKForced.set(this, 1);
                bool result = (ServerInstance->Parser->CallHandler("NICK", parameters, this) == CMD_SUCCESS);
-               this->Shrink("NICKForced");
-               nickhandler->HandleInternal(0, dummy);
+               NICKForced.set(this, 0);
                return result;
        }
 
@@ -1195,27 +1191,12 @@ bool User::SetClientIP(const char* sip)
        return irc::sockets::aptosa(sip, 0, &client_sa);
 }
 
-/** NOTE: We cannot pass a const reference to this method.
- * The string is changed by the workings of the method,
- * so that if we pass const ref, we end up copying it to
- * something we can change anyway. Makes sense to just let
- * the compiler do that copy for us.
- */
-void User::Write(std::string text)
+void User::Write(const std::string& text)
 {
        if (!ServerInstance->SE->BoundsCheckFd(this))
                return;
 
-       try
-       {
-               ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
-               text.append("\r\n");
-       }
-       catch (...)
-       {
-               ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"Exception in User::Write() std::string::append");
-               return;
-       }
+       ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
 
        if (this->GetIOHook())
        {
@@ -1225,6 +1206,7 @@ void User::Write(std::string text)
                try
                {
                        this->GetIOHook()->OnRawSocketWrite(this->fd, text.data(), text.length());
+                       this->GetIOHook()->OnRawSocketWrite(this->fd, "\r\n", 2);
                }
                catch (CoreException& modexcept)
                {
@@ -1234,9 +1216,10 @@ void User::Write(std::string text)
        else
        {
                this->AddWriteBuf(text);
+               this->AddWriteBuf("\r\n");
        }
-       ServerInstance->stats->statsSent += text.length();
-       this->ServerInstance->SE->WantWrite(this);
+       ServerInstance->stats->statsSent += text.length() + 2;
+       ServerInstance->SE->WantWrite(this);
 }
 
 /** Write()
@@ -1255,10 +1238,7 @@ void User::Write(const char *text, ...)
 
 void User::WriteServ(const std::string& text)
 {
-       char textbuffer[MAXBUF];
-
-       snprintf(textbuffer,MAXBUF,":%s %s",ServerInstance->Config->ServerName,text.c_str());
-       this->Write(std::string(textbuffer));
+       this->Write(":%s %s",ServerInstance->Config->ServerName,text.c_str());
 }
 
 /** WriteServ()
@@ -1292,11 +1272,11 @@ void User::WriteNumeric(unsigned int numeric, const char* text, ...)
 void User::WriteNumeric(unsigned int numeric, const std::string &text)
 {
        char textbuffer[MAXBUF];
-       int MOD_RESULT = 0;
+       ModResult MOD_RESULT;
 
-       FOREACH_RESULT(I_OnNumeric, OnNumeric(this, numeric, text));
+       FIRST_MOD_RESULT(ServerInstance, OnNumeric, MOD_RESULT, (this, numeric, text));
 
-       if (MOD_RESULT)
+       if (MOD_RESULT == MOD_RES_DENY)
                return;
 
        snprintf(textbuffer,MAXBUF,":%s %03u %s",ServerInstance->Config->ServerName, numeric, text.c_str());
@@ -1382,8 +1362,8 @@ void User::WriteCommon(const std::string &text)
 
        for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
        {
-               CUList* ulist = v->first->GetUsers();
-               for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
+               const UserMembList* ulist = (*v)->GetUsers();
+               for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
                {
                        if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
                        {
@@ -1441,8 +1421,8 @@ void User::WriteCommonQuit(const std::string &normal_text, const std::string &op
 
        for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
        {
-               CUList *ulist = v->first->GetUsers();
-               for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
+               const UserMembList* ulist = (*v)->GetUsers();
+               for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
                {
                        if (this != i->first)
                        {
@@ -1474,8 +1454,8 @@ void User::WriteCommonExcept(const std::string &text)
 
        for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
        {
-               CUList *ulist = v->first->GetUsers();
-               for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
+               const UserMembList* ulist = (*v)->GetUsers();
+               for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
                {
                        if (this != i->first)
                        {
@@ -1541,7 +1521,7 @@ bool User::SharesChannelWith(User *other)
                /* Eliminate the inner loop (which used to be ~equal in size to the outer loop)
                 * by replacing it with a map::find which *should* be more efficient
                 */
-               if (i->first->HasUser(other))
+               if ((*i)->HasUser(other))
                        return true;
        }
        return false;
@@ -1554,9 +1534,9 @@ bool User::ChangeName(const char* gecos)
 
        if (IS_LOCAL(this))
        {
-               int MOD_RESULT = 0;
-               FOREACH_RESULT(I_OnChangeLocalUserGECOS,OnChangeLocalUserGECOS(this,gecos));
-               if (MOD_RESULT)
+               ModResult MOD_RESULT;
+               FIRST_MOD_RESULT(ServerInstance, OnChangeLocalUserGECOS, MOD_RESULT, (this,gecos));
+               if (MOD_RESULT == MOD_RES_DENY)
                        return false;
                FOREACH_MOD(I_OnChangeName,OnChangeName(this,gecos));
        }
@@ -1565,6 +1545,54 @@ bool User::ChangeName(const char* gecos)
        return true;
 }
 
+void User::DoHostCycle(const std::string &quitline)
+{
+       char buffer[MAXBUF];
+
+       ModResult result = MOD_RES_PASSTHRU;
+       FIRST_MOD_RESULT(ServerInstance, OnHostCycle, result, (this));
+
+       if (result == MOD_RES_DENY)
+               return;
+       if (result == MOD_RES_PASSTHRU && !ServerInstance->Config->CycleHosts)
+               return;
+
+       uniq_id++;
+
+       if (!already_sent)
+               InitializeAlreadySent(ServerInstance->SE);
+
+       for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
+       {
+               Channel* c = *v;
+               snprintf(buffer, MAXBUF, ":%s JOIN %s", GetFullHost().c_str(), c->name.c_str());
+               std::string joinline(buffer);
+               std::string modeline = ServerInstance->Modes->ModeString(this, c);
+               if (modeline.length() > 0)
+               {
+                       snprintf(buffer, MAXBUF, ":%s MODE %s +%s", GetFullHost().c_str(), c->name.c_str(), modeline.c_str());
+                       modeline = buffer;
+               }
+
+               const UserMembList *ulist = c->GetUsers();
+               for (UserMembList::const_iterator i = ulist->begin(); i != ulist->end(); i++)
+               {
+                       User* u = i->first;
+                       if (u == this || !IS_LOCAL(u))
+                               continue;
+
+                       if (already_sent[i->first->fd] != uniq_id)
+                       {
+                               u->Write(quitline);
+                               already_sent[i->first->fd] = uniq_id;
+                       }
+                       u->Write(joinline);
+                       if (modeline.length() > 0)
+                               u->Write(modeline);
+               }
+       }
+}
+
 bool User::ChangeDisplayedHost(const char* shost)
 {
        if (dhost == shost)
@@ -1572,35 +1600,22 @@ bool User::ChangeDisplayedHost(const char* shost)
 
        if (IS_LOCAL(this))
        {
-               int MOD_RESULT = 0;
-               FOREACH_RESULT(I_OnChangeLocalUserHost,OnChangeLocalUserHost(this,shost));
-               if (MOD_RESULT)
+               ModResult MOD_RESULT;
+               FIRST_MOD_RESULT(ServerInstance, OnChangeLocalUserHost, MOD_RESULT, (this,shost));
+               if (MOD_RESULT == MOD_RES_DENY)
                        return false;
        }
 
        FOREACH_MOD(I_OnChangeHost, OnChangeHost(this,shost));
 
-       int MOD_RESULT = 0;
-       FOREACH_RESULT(I_OnHostCycle, OnHostCycle(this));
-
-       if (this->ServerInstance->Config->CycleHosts && !MOD_RESULT)
-               this->WriteCommonExcept("QUIT :Changing hosts");
+       std::string quitstr = ":" + GetFullHost() + " QUIT :Changing host";
 
        /* Fix by Om: User::dhost is 65 long, this was truncating some long hosts */
        this->dhost.assign(shost, 0, 64);
 
        this->InvalidateCache();
 
-       if (this->ServerInstance->Config->CycleHosts && !MOD_RESULT)
-       {
-               for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
-               {
-                       i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name.c_str());
-                       std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
-                       if (n.length() > 0)
-                               i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name.c_str(), n.c_str());
-               }
-       }
+       this->DoHostCycle(quitstr);
 
        if (IS_LOCAL(this))
                this->WriteNumeric(RPL_YOURDISPLAYEDHOST, "%s %s :is now your displayed host",this->nick.c_str(),this->dhost.c_str());
@@ -1613,26 +1628,15 @@ bool User::ChangeIdent(const char* newident)
        if (this->ident == newident)
                return true;
 
-       int MOD_RESULT = 0;
-       FOREACH_RESULT(I_OnHostCycle, OnHostCycle(this));
+       FOREACH_MOD(I_OnChangeIdent, OnChangeIdent(this,newident));
 
-       if (this->ServerInstance->Config->CycleHosts && !MOD_RESULT)
-               this->WriteCommonExcept("%s","QUIT :Changing ident");
+       std::string quitstr = ":" + GetFullHost() + " QUIT :Changing ident";
 
        this->ident.assign(newident, 0, ServerInstance->Config->Limits.IdentMax + 1);
 
        this->InvalidateCache();
 
-       if (this->ServerInstance->Config->CycleHosts && !MOD_RESULT)
-       {
-               for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
-               {
-                       i->first->WriteAllExceptSender(this, false, 0, "JOIN %s", i->first->name.c_str());
-                       std::string n = this->ServerInstance->Modes->ModeString(this, i->first);
-                       if (n.length() > 0)
-                               i->first->WriteAllExceptSender(this, true, 0, "MODE %s +%s", i->first->name.c_str(), n.c_str());
-               }
-       }
+       this->DoHostCycle(quitstr);
 
        return true;
 }
@@ -1663,13 +1667,14 @@ std::string User::ChannelList(User* source)
 
        for (UCListIter i = this->chans.begin(); i != this->chans.end(); i++)
        {
+               Channel* c = *i;
                /* If the target is the same as the sender, let them see all their channels.
                 * If the channel is NOT private/secret OR the user shares a common channel
                 * If the user is an oper, and the <options:operspywhois> option is set.
                 */
-               if ((source == this) || (IS_OPER(source) && ServerInstance->Config->OperSpyWhois) || (((!i->first->IsModeSet('p')) && (!i->first->IsModeSet('s'))) || (i->first->HasUser(source))))
+               if ((source == this) || (IS_OPER(source) && ServerInstance->Config->OperSpyWhois) || (((!c->IsModeSet('p')) && (!c->IsModeSet('s'))) || (c->HasUser(source))))
                {
-                       list.append(i->first->GetPrefixChar(this)).append(i->first->name).append(" ");
+                       list.append(c->GetPrefixChar(this)).append(c->name).append(" ");
                }
        }
 
@@ -1835,13 +1840,14 @@ void User::PurgeEmptyChannels()
        // firstly decrement the count on each channel
        for (UCListIter f = this->chans.begin(); f != this->chans.end(); f++)
        {
-               f->first->RemoveAllPrefixes(this);
-               if (f->first->DelUser(this) == 0)
+               Channel* c = *f;
+               c->RemoveAllPrefixes(this);
+               if (c->DelUser(this) == 0)
                {
                        /* No users left in here, mark it for deletion */
                        try
                        {
-                               to_delete.push_back(f->first);
+                               to_delete.push_back(c);
                        }
                        catch (...)
                        {
@@ -1856,9 +1862,9 @@ void User::PurgeEmptyChannels()
                chan_hash::iterator i2 = ServerInstance->chanlist->find(thischan->name);
                if (i2 != ServerInstance->chanlist->end())
                {
-                       int MOD_RESULT = 0;
-                       FOREACH_RESULT_I(ServerInstance,I_OnChannelPreDelete, OnChannelPreDelete(i2->second));
-                       if (MOD_RESULT == 1)
+                       ModResult MOD_RESULT;
+                       FIRST_MOD_RESULT(ServerInstance, OnChannelPreDelete, MOD_RESULT, (i2->second));
+                       if (MOD_RESULT == MOD_RES_DENY)
                                continue; // delete halted by module
                        FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(i2->second));
                        delete i2->second;
@@ -1920,16 +1926,6 @@ void User::HandleEvent(EventType et, int errornum)
        }
 }
 
-void User::SetOperQuit(const std::string &oquit)
-{
-       operquitmsg = oquit;
-}
-
-const std::string& User::GetOperQuit()
-{
-       return operquitmsg;
-}
-
 void User::IncreasePenalty(int increase)
 {
        this->Penalty += increase;
@@ -1960,20 +1956,6 @@ const std::string FakeUser::GetFullRealHost()
        return nick;
 }
 
-VisData::VisData()
-{
-}
-
-VisData::~VisData()
-{
-}
-
-bool VisData::VisibleTo(User* user)
-{
-       return true;
-}
-
-
 ConnectClass::ConnectClass(char t, const std::string& mask)
        : type(t), name("unnamed"), registration_timeout(0), host(mask), pingtime(0), pass(""), hash(""), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), maxchans(0), port(0), limit(0), RefCount(1)
 {