]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Add extra /map info (connection uptime, and lag time) to /MAP for opers. Adds feature...
[user/henk/code/inspircd.git] / src / users.cpp
index 7d653e52f47e58d6e22e0a4ecbcc26296582aea4..1f8a62eece621d8ee253e8081a075dc0381b993f 100644 (file)
@@ -240,9 +240,14 @@ void UserResolver::OnError(ResolverError e, const std::string &errormessage)
 {
        if (ServerInstance->SE->GetRef(this->bound_fd) == this->bound_user)
        {
-               /* Error message here */
-               this->bound_user->WriteServ("NOTICE Auth :*** Could not resolve your hostname: %s; using your IP address (%s) instead.", errormessage.c_str(), this->bound_user->GetIPString());
-               this->bound_user->dns_done = true;
+               /* Since dns timeout is implemented outside of the resolver, this was a race condition that could result in this message being sent *after*
+                * the user was fully connected. This check fixes that issue  - Special */
+               if (!this->bound_user->dns_done)
+               {
+                       /* Error message here */
+                       this->bound_user->WriteServ("NOTICE Auth :*** Could not resolve your hostname: %s; using your IP address (%s) instead.", errormessage.c_str(), this->bound_user->GetIPString());
+                       this->bound_user->dns_done = true;
+               }
        }
 }
 
@@ -319,7 +324,7 @@ userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance)
        age = ServerInstance->Time(true);
        lines_in = lastping = signon = idle_lastmsg = nping = registered = 0;
        ChannelCount = timeout = flood = bytes_in = bytes_out = cmds_in = cmds_out = 0;
-       exempt = haspassed = dns_done = false;
+       muted = exempt = haspassed = dns_done = false;
        fd = -1;
        recvq = "";
        sendq = "";
@@ -331,13 +336,15 @@ userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance)
        memset(modes,0,sizeof(modes));
        memset(snomasks,0,sizeof(snomasks));
        /* Invalidate cache */
-       cached_fullhost = cached_hostip = cached_makehost = cached_fullrealhost = NULL;
+       operquit = cached_fullhost = cached_hostip = cached_makehost = cached_fullrealhost = NULL;
 }
 
 userrec::~userrec()
 {
        this->InvalidateCache();
        this->DecrementModes();
+       if (operquit)
+               free(operquit);
        if (ip)
        {
                clonemap::iterator x = ServerInstance->local_clones.find(this->GetIPString());
@@ -734,6 +741,11 @@ void userrec::FlushWriteBuf()
        {
                ServerInstance->Log(DEBUG,"Exception in userrec::FlushWriteBuf()");
        }
+
+       if (this->sendq.empty())
+       {
+               FOREACH_MOD(I_OnBufferFlushed,OnBufferFlushed(this));
+       }
 }
 
 void userrec::SetWriteError(const std::string &error)
@@ -800,12 +812,12 @@ void userrec::UnOper()
        }
 }
 
-void userrec::QuitUser(InspIRCd* Instance, userrec *user, const std::string &quitreason)
+void userrec::QuitUser(InspIRCd* Instance, userrec *user, const std::string &quitreason, const char* operreason)
 {
-       Instance->GlobalCulls.AddItem(user, quitreason.c_str());
+       user->muted = true;
+       Instance->GlobalCulls.AddItem(user, quitreason.c_str(), operreason);
 }
 
-
 /* adds or updates an entry in the whowas list */
 void userrec::AddToWhoWas()
 {
@@ -972,24 +984,28 @@ void userrec::FullConnect()
 
        if ((!a) || (a->GetType() == CC_DENY))
        {
+               this->muted = true;
                ServerInstance->GlobalCulls.AddItem(this,"Unauthorised connection");
                return;
        }
 
        if ((!a->GetPass().empty()) && (!this->haspassed))
        {
+               this->muted = true;
                ServerInstance->GlobalCulls.AddItem(this,"Invalid password");
                return;
        }
 
        if (this->LocalCloneCount() > a->GetMaxLocal())
        {
+               this->muted = true;
                ServerInstance->GlobalCulls.AddItem(this, "No more connections allowed from your host via this connect class (local)");
                ServerInstance->WriteOpers("*** WARNING: maximum LOCAL connections (%ld) exceeded for IP %s", a->GetMaxLocal(), this->GetIPString());
                return;
        }
        else if (this->GlobalCloneCount() > a->GetMaxGlobal())
        {
+               this->muted = true;
                ServerInstance->GlobalCulls.AddItem(this, "No more connections allowed from your host via this connect class (global)");
                ServerInstance->WriteOpers("*** WARNING: maximum GLOBAL connections (%ld) exceeded for IP %s",a->GetMaxGlobal(), this->GetIPString());
                return;
@@ -1001,6 +1017,7 @@ void userrec::FullConnect()
 
                if (r)
                {
+                       this->muted = true;
                        char reason[MAXBUF];
                        snprintf(reason,MAXBUF,"G-Lined: %s",r->reason);
                        ServerInstance->GlobalCulls.AddItem(this, reason);
@@ -1011,6 +1028,7 @@ void userrec::FullConnect()
 
                if (n)
                {
+                       this->muted = true;
                        char reason[MAXBUF];
                        snprintf(reason,MAXBUF,"K-Lined: %s",n->reason);
                        ServerInstance->GlobalCulls.AddItem(this, reason);
@@ -1483,67 +1501,47 @@ void userrec::WriteCommonExcept(const char* text, ...)
        this->WriteCommonExcept(std::string(textbuffer));
 }
 
-void userrec::WriteCommonExcept(const std::string &text)
+void userrec::WriteCommonQuit(const std::string &normal_text, const std::string &oper_text)
 {
-       bool quit_munge = false;
-       char oper_quit[MAXBUF];
-       char textbuffer[MAXBUF];
        char tb1[MAXBUF];
        char tb2[MAXBUF];
-       std::string out1;
-       std::string out2;
-
-       strlcpy(textbuffer, text.c_str(), MAXBUF);
 
        if (this->registered != REG_ALL)
                return;
 
        uniq_id++;
+       snprintf(tb1,MAXBUF,":%s QUIT :%s",this->GetFullHost(),normal_text.c_str());
+       snprintf(tb2,MAXBUF,":%s QUIT :%s",this->GetFullHost(),oper_text.c_str());
+       std::string out1 = tb1;
+       std::string out2 = tb2;
 
-       snprintf(tb1,MAXBUF,":%s %s",this->GetFullHost(),textbuffer);
-
-       /* TODO: We need some form of WriteCommonExcept that will send two lines, one line to
-        * opers and the other line to non-opers, then all this hidebans and hidesplits gunk
-        * can go byebye.
-        */
-       if (ServerInstance->Config->HideSplits)
+       for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
        {
-               char* check = textbuffer + 6;
-
-               if (!strncasecmp(textbuffer, "QUIT :",6))
+               CUList *ulist = v->first->GetUsers();
+               for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
                {
-                       std::stringstream split(check);
-                       std::string server_one;
-                       std::string server_two;
-
-                       split >> server_one;
-                       split >> server_two;
-
-                       if ((ServerInstance->FindServerName(server_one)) && (ServerInstance->FindServerName(server_two)))
+                       if (this != i->second)
                        {
-                               strlcpy(oper_quit,textbuffer,MAXQUIT);
-                               strlcpy(check,"*.net *.split",MAXQUIT);
-                               quit_munge = true;
-                               snprintf(tb2,MAXBUF,":%s %s",this->GetFullHost(),oper_quit);
-                               out2 = tb2;
+                               if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
+                               {
+                                       already_sent[i->second->fd] = uniq_id;
+                                       i->second->Write(*i->second->oper ? out2 : out1);
+                               }
                        }
                }
        }
+}
 
-       if ((ServerInstance->Config->HideBans) && (!quit_munge))
-       {
-               if ((!strncasecmp(textbuffer, "QUIT :G-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :K-Lined:",14))
-               || (!strncasecmp(textbuffer, "QUIT :Q-Lined:",14)) || (!strncasecmp(textbuffer, "QUIT :Z-Lined:",14)))
-               {
-                       char* check = textbuffer + 13;
-                       strlcpy(oper_quit,textbuffer,MAXQUIT);
-                       *check = 0;  // We don't need to strlcpy, we just chop it from the :
-                       quit_munge = true;
-                       snprintf(tb2,MAXBUF,":%s %s",this->GetFullHost(),oper_quit);
-                       out2 = tb2;
-               }
-       }
+void userrec::WriteCommonExcept(const std::string &text)
+{
+       char tb1[MAXBUF];
+       std::string out1;
 
+       if (this->registered != REG_ALL)
+               return;
+
+       uniq_id++;
+       snprintf(tb1,MAXBUF,":%s %s",this->GetFullHost(),text.c_str());
        out1 = tb1;
 
        for (UCListIter v = this->chans.begin(); v != this->chans.end(); v++)
@@ -1556,10 +1554,7 @@ void userrec::WriteCommonExcept(const std::string &text)
                                if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
                                {
                                        already_sent[i->second->fd] = uniq_id;
-                                       if (quit_munge)
-                                               i->second->Write(*i->second->oper ? out2 : out1);
-                                       else
-                                               i->second->Write(out1);
+                                       i->second->Write(out1);
                                }
                        }
                }
@@ -1716,7 +1711,7 @@ bool userrec::ChangeIdent(const char* newident)
        return true;
 }
 
-void userrec::NoticeAll(char* text, ...)
+void userrec::SendAll(const char* command, char* text, ...)
 {
        char textbuffer[MAXBUF];
        char formatbuffer[MAXBUF];
@@ -1726,7 +1721,7 @@ void userrec::NoticeAll(char* text, ...)
        vsnprintf(textbuffer, MAXBUF, text, argsPtr);
        va_end(argsPtr);
 
-       snprintf(formatbuffer,MAXBUF,":%s NOTICE $* :%s", this->GetFullHost(), textbuffer);
+       snprintf(formatbuffer,MAXBUF,":%s %s $* :%s", this->GetFullHost(), command, textbuffer);
        std::string fmt = formatbuffer;
 
        for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
@@ -1926,3 +1921,17 @@ void userrec::HandleEvent(EventType et, int errornum)
        }
 }
 
+void userrec::SetOperQuit(const std::string &oquit)
+{
+       if (operquit)
+               return;
+
+       operquit = strdup(oquit.c_str());
+}
+
+const char* userrec::GetOperQuit()
+{
+       return operquit ? operquit : "";
+}
+
+