]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Windows support. Tested and working to compile on freebsd and linux. Next step is...
[user/henk/code/inspircd.git] / src / users.cpp
index 7d653e52f47e58d6e22e0a4ecbcc26296582aea4..e79d27c8b74cfc70290235b97c4fd70bd538a2ec 100644 (file)
@@ -61,7 +61,7 @@ bool DoType(ServerConfig* conf, const char* tag, char** entries, ValueList &valu
        const char* TypeName = values[0].GetString();
        const char* Classes = values[1].GetString();
 
-       conf->opertypes[TypeName] = strdup(Classes);
+       conf->opertypes[TypeName] = strnewdup(Classes);
        return true;
 }
 
@@ -70,7 +70,7 @@ bool DoClass(ServerConfig* conf, const char* tag, char** entries, ValueList &val
        const char* ClassName = values[0].GetString();
        const char* CommandList = values[1].GetString();
 
-       conf->operclass[ClassName] = strdup(CommandList);
+       conf->operclass[ClassName] = strnewdup(CommandList);
        return true;
 }
 
@@ -210,7 +210,7 @@ void UserResolver::OnLookupComplete(const std::string &result, unsigned int ttl,
                        if (hostname.length() < 65)
                        {
                                /* Check we didnt time out */
-                               if (this->bound_user->registered != REG_ALL)
+                               if ((this->bound_user->registered != REG_ALL) && (!this->bound_user->dns_done))
                                {
                                        /* Hostnames starting with : are not a good thing (tm) */
                                        if (*(hostname.c_str()) == ':')
@@ -226,12 +226,20 @@ void UserResolver::OnLookupComplete(const std::string &result, unsigned int ttl,
                        }
                        else
                        {
-                               this->bound_user->WriteServ("NOTICE Auth :*** Your hostname is longer than the maximum of 64 characters, using your IP address (%s) instead.", this->bound_user->GetIPString());
+                               if (!this->bound_user->dns_done)
+                               {
+                                       this->bound_user->WriteServ("NOTICE Auth :*** Your hostname is longer than the maximum of 64 characters, using your IP address (%s) instead.", this->bound_user->GetIPString());
+                                       this->bound_user->dns_done = true;
+                               }
                        }
                }
                else
                {
-                       this->bound_user->WriteServ("NOTICE Auth :*** Your hostname does not match up with your IP address. Sorry, using your IP address (%s) instead.", this->bound_user->GetIPString());
+                       if (!this->bound_user->dns_done)
+                       {
+                               this->bound_user->WriteServ("NOTICE Auth :*** Your hostname does not match up with your IP address. Sorry, using your IP address (%s) instead.", this->bound_user->GetIPString());
+                               this->bound_user->dns_done = true;
+                       }
                }
        }
 }
@@ -240,9 +248,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,25 +332,28 @@ 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 = "";
        WriteError = "";
        res_forward = res_reverse = NULL;
+       Visibility = NULL;
        ip = NULL;
        chans.clear();
        invites.clear();
        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());
@@ -457,7 +473,11 @@ int userrec::ReadData(void* buffer, size_t size)
 {
        if (IS_LOCAL(this))
        {
+#ifndef WIN32
                return read(this->fd, buffer, size);
+#else
+        return recv(this->fd, (char*)buffer, size, 0);
+#endif
        }
        else
                return 0;
@@ -537,7 +557,7 @@ bool userrec::HasPermission(const std::string &command)
                return true;
 
        // are they even an oper at all?
-       if (*this->oper)
+       if (IS_OPER(this))
        {
                opertype_t::iterator iter_opertype = ServerInstance->Config->opertypes.find(this->oper);
                if (iter_opertype != ServerInstance->Config->opertypes.end())
@@ -674,8 +694,8 @@ void userrec::AddWriteBuf(const std::string &data)
 
        try
        {
-               if (data.length() > 512)
-                       sendq.append(data.substr(0,510)).append("\r\n");
+               if (data.length() > MAXBUF - 2) /* MAXBUF has a value of 514, to account for line terminators */
+                       sendq.append(data.substr(0,MAXBUF - 4)).append("\r\n"); /* MAXBUF-4 = 510 */
                else
                        sendq.append(data);
        }
@@ -698,7 +718,11 @@ void userrec::FlushWriteBuf()
                if ((sendq.length()) && (this->fd != FD_MAGIC_NUMBER))
                {
                        int old_sendq_length = sendq.length();
-                       int n_sent = write(this->fd, this->sendq.data(), this->sendq.length());
+#ifndef WIN32
+            int n_sent = write(this->fd, this->sendq.data(), this->sendq.length());
+#else
+            int n_sent = send(this->fd, (const char*)this->sendq.data(), this->sendq.length(), 0);
+#endif
                        if (n_sent == -1)
                        {
                                if (errno == EAGAIN)
@@ -734,6 +758,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)
@@ -779,10 +808,13 @@ void userrec::UnOper()
 {
        try
        {
-               if (*this->oper)
+               if (IS_OPER(this))
                {
+                       // unset their oper type (what IS_OPER checks), and remove +o
                        *this->oper = 0;
                        this->modes[UM_OPERATOR] = 0;
+
+                       // remove them from the opers list.
                        for (std::vector<userrec*>::iterator a = ServerInstance->all_opers.begin(); a < ServerInstance->all_opers.end(); a++)
                        {
                                if (*a == this)
@@ -800,12 +832,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()
 {
@@ -876,13 +908,12 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached,
        Instance->AddLocalClone(New);
        Instance->AddGlobalClone(New);
 
+       /*
+        * First class check. We do this again in FullConnect after DNS is done, and NICK/USER is recieved.
+        * See my note down there for why this is required. DO NOT REMOVE. :) -- w00t
+        */
        ConnectClass* i = New->GetClass();
-
-       if ((!i) || (i->GetType() == CC_DENY))
-       {
-               userrec::QuitUser(Instance, New,"Unauthorised connection");
-               return;
-       }
+       New->CheckClass();
 
        New->pingmax = i->GetPingTime();
        New->nping = Instance->Time() + i->GetPingTime() + Instance->Config->dns_timeout;
@@ -911,11 +942,13 @@ void userrec::AddClient(InspIRCd* Instance, int socket, int port, bool iscached,
         * which for the time being is a physical impossibility (even the largest networks dont have more
         * than about 10,000 users on ONE server!)
         */
+#ifndef WINDOWS
        if ((unsigned int)socket >= MAX_DESCRIPTORS)
        {
                userrec::QuitUser(Instance, New, "Server is full");
                return;
        }
+#endif
 
        New->exempt = (Instance->XLines->matches_exception(New) != NULL);
        if (!New->exempt)
@@ -963,37 +996,57 @@ unsigned long userrec::LocalCloneCount()
                return 0;
 }
 
-void userrec::FullConnect()
+/*
+ * Check class restrictions
+ */
+void userrec::CheckClass()
 {
-       ServerInstance->stats->statsConnects++;
-       this->idle_lastmsg = ServerInstance->Time();
-
        ConnectClass* a = this->GetClass();
 
        if ((!a) || (a->GetType() == CC_DENY))
        {
-               ServerInstance->GlobalCulls.AddItem(this,"Unauthorised connection");
+               userrec::QuitUser(ServerInstance, this, "Unauthorised connection");
                return;
        }
 
        if ((!a->GetPass().empty()) && (!this->haspassed))
        {
-               ServerInstance->GlobalCulls.AddItem(this,"Invalid password");
+               userrec::QuitUser(ServerInstance, this, "Invalid password");
+               return;
+       }
+
+       if ((!a) || (a->GetType() == CC_DENY))
+       {
+               userrec::QuitUser(ServerInstance, this,"Unauthorised connection");
                return;
        }
 
-       if (this->LocalCloneCount() > a->GetMaxLocal())
+       if ((a->GetMaxLocal()) && (this->LocalCloneCount() > a->GetMaxLocal()))
        {
-               ServerInstance->GlobalCulls.AddItem(this, "No more connections allowed from your host via this connect class (local)");
+               userrec::QuitUser(ServerInstance, 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())
+       else if ((a->GetMaxGlobal()) && (this->GlobalCloneCount() > a->GetMaxGlobal()))
        {
-               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());
+               userrec::QuitUser(ServerInstance, 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;
        }
+}
+
+void userrec::FullConnect()
+{
+       ServerInstance->stats->statsConnects++;
+       this->idle_lastmsg = ServerInstance->Time();
+
+       /*
+        * You may be thinking "wtf, we checked this in userrec::AddClient!" - and yes, we did, BUT.
+        * At the time AddClient is called, we don't have a resolved host, by here we probably do - which
+        * may put the user into a totally seperate class with different restrictions! so we *must* check again.
+        * Don't remove this! -- w00t
+        */
+       this->CheckClass();
 
        if (!this->exempt)
        {
@@ -1001,6 +1054,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 +1065,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);
@@ -1033,6 +1088,12 @@ void userrec::FullConnect()
        if (ServerInstance->unregistered_count)
                ServerInstance->unregistered_count--;
 
+       /* Trigger LUSERS output, give modules a chance too */
+       int MOD_RESULT = 0;
+       FOREACH_RESULT(I_OnPreCommand, OnPreCommand("LUSERS", NULL, 0, this, true, "LUSERS"));
+       if (!MOD_RESULT)
+               ServerInstance->CallCommandHandler("LUSERS", NULL, 0, this);
+
        /*
         * fix 3 by brain, move registered = 7 below these so that spurious modes and host
         * changes dont go out onto the network and produce 'fake direction'.
@@ -1043,7 +1104,7 @@ void userrec::FullConnect()
 
        FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
 
-       ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s]", this->GetPort(), this->nick, this->ident, this->host, this->GetIPString());
+       ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s] [%s]", this->GetPort(), this->nick, this->ident, this->host, this->GetIPString(), this->fullname);
 }
 
 /** userrec::UpdateNick()
@@ -1285,12 +1346,16 @@ const char* userrec::GetIPString(char* buf)
  */
 void userrec::Write(std::string text)
 {
+#ifdef WINDOWS
+       if ((this->fd < 0) || (this->m_internalFd > MAX_DESCRIPTORS))
+#else
        if ((this->fd < 0) || (this->fd > MAX_DESCRIPTORS))
+#endif
                return;
 
        try
        {
-               /* ServerInstance->Log(DEBUG,"<- %s", text.c_str());
+               /* ServerInstance->Log(DEBUG,"C[%d] <- %s", this->GetFd(), text.c_str());
                 * WARNING: The above debug line is VERY loud, do NOT
                 * enable it till we have a good way of filtering it
                 * out of the logs (e.g. 1.2 would be good).
@@ -1441,10 +1506,10 @@ void userrec::WriteCommon(const std::string &text)
                        CUList* ulist = v->first->GetUsers();
                        for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
                        {
-                               if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
+                               if ((IS_LOCAL(i->first)) && (already_sent[i->first->fd] != uniq_id))
                                {
-                                       already_sent[i->second->fd] = uniq_id;
-                                       i->second->Write(out);
+                                       already_sent[i->first->fd] = uniq_id;
+                                       i->first->Write(out);
                                        sent_to_at_least_one = true;
                                }
                        }
@@ -1483,67 +1548,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->first)
                        {
-                               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->first)) && (already_sent[i->first->fd] != uniq_id))
+                               {
+                                       already_sent[i->first->fd] = uniq_id;
+                                       i->first->Write(IS_OPER(i->first) ? 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++)
@@ -1551,15 +1596,12 @@ void userrec::WriteCommonExcept(const std::string &text)
                CUList *ulist = v->first->GetUsers();
                for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
                {
-                       if (this != i->second)
+                       if (this != i->first)
                        {
-                               if ((IS_LOCAL(i->second)) && (already_sent[i->second->fd] != uniq_id))
+                               if ((IS_LOCAL(i->first)) && (already_sent[i->first->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);
+                                       already_sent[i->first->fd] = uniq_id;
+                                       i->first->Write(out1);
                                }
                        }
                }
@@ -1569,21 +1611,10 @@ void userrec::WriteCommonExcept(const std::string &text)
 
 void userrec::WriteWallOps(const std::string &text)
 {
-       /* Does nothing if theyre not opered */
-       if ((!*this->oper) && (IS_LOCAL(this)))
+       if (!IS_OPER(this) && IS_LOCAL(this))
                return;
 
-       std::string wallop = "WALLOPS :";
-
-       try
-       {
-               wallop.append(text);
-       }
-       catch (...)
-       {
-               ServerInstance->Log(DEBUG,"Exception in userrec::Write() std::string::append");
-               return;
-       }
+       std::string wallop = "WALLOPS :" + text;
 
        for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++)
        {
@@ -1716,7 +1747,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 +1757,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++)
@@ -1747,7 +1778,7 @@ std::string userrec::ChannelList(userrec* source)
                         * 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) || (*source->oper && ServerInstance->Config->OperSpyWhois) || (((!i->first->modes[CM_PRIVATE]) && (!i->first->modes[CM_SECRET])) || (i->first->HasUser(source))))
+                       if ((source == this) || (IS_OPER(source) && ServerInstance->Config->OperSpyWhois) || (((!i->first->modes[CM_PRIVATE]) && (!i->first->modes[CM_SECRET])) || (i->first->HasUser(source))))
                        {
                                list.append(i->first->GetPrefixChar(this)).append(i->first->name).append(" ");
                        }
@@ -1816,8 +1847,18 @@ ConnectClass* userrec::GetClass()
 {
        for (ClassVector::iterator i = ServerInstance->Config->Classes.begin(); i != ServerInstance->Config->Classes.end(); i++)
        {
-               if ((match(this->GetIPString(),i->GetHost().c_str(),true)) || (match(this->host,i->GetHost().c_str())))
-                       return &(*i);
+               if (((match(this->GetIPString(),i->GetHost().c_str(),true)) || (match(this->host,i->GetHost().c_str()))))
+               {
+                       if (i->GetPort())
+                       {
+                               if (this->GetPort() == i->GetPort())
+                                       return &(*i);
+                               else
+                                       continue;
+                       }
+                       else
+                               return &(*i);
+               }
        }
        return NULL;
 }
@@ -1926,3 +1967,29 @@ 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 : "";
+}
+
+VisData::VisData()
+{
+}
+
+VisData::~VisData()
+{
+}
+
+bool VisData::VisibleTo(userrec* user)
+{
+       return true;
+}
+