]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/server.cpp
Fix total mess of makefile dependency macros (all depending on stuff they dont NEED...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / server.cpp
index bab3d9adb8e03a602f254726898b77e4b1a27c1e..40e12b03a1302b5ffb02c0bff09a0cc4656ebe87 100644 (file)
 
 #include "m_spanningtree/main.h"
 #include "m_spanningtree/utils.h"
-#include "m_spanningtree/treeserver.h"
 #include "m_spanningtree/link.h"
+#include "m_spanningtree/treeserver.h"
 #include "m_spanningtree/treesocket.h"
-#include "m_spanningtree/resolvers.h"
-#include "m_spanningtree/handshaketimer.h"
 
-/* $ModDep: m_spanningtree/timesynctimer.h m_spanningtree/resolvers.h m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h */
+/* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h m_spanningtree/link.h */
 
 /*
  * Some server somewhere in the network introducing another server.
@@ -130,9 +128,12 @@ bool TreeSocket::Outbound_Reply_Server(std::deque<std::string> &params)
                if (x->Name != servername && x->Name != "*") // open link allowance
                        continue;
 
-               if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge(), password)) ||
-                       x->RecvPass != password && !this->GetTheirChallenge().empty())
+               if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge()), password) &&
+                       (x->RecvPass != password && this->GetTheirChallenge().empty()))
+               {
+                       this->Instance->SNO->WriteToSnoMask('l',"Invalid password on link: %s", x->Name.c_str());
                        continue;
+               }
 
                TreeServer* CheckDupe = Utils->FindServer(sname);
                if (CheckDupe)
@@ -163,13 +164,18 @@ bool TreeSocket::Outbound_Reply_Server(std::deque<std::string> &params)
 
                Utils->TreeRoot->AddChild(Node);
                params[4] = ":" + params[4];
+
+
+               /* IMPORTANT: Take password/hmac hash OUT of here before we broadcast the introduction! */
+               params[1] = "*";
                Utils->DoOneToAllButSender(Instance->Config->GetSID(),"SERVER",params,sname);
+
                Node->bursting = true;
                this->DoBurst(Node);
                return true;
        }
 
-       this->SendError("Invalid credentials");
+       this->SendError("Invalid credentials (check the other server's linking snomask for more information)");
        this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
        return false;
 }
@@ -218,9 +224,12 @@ bool TreeSocket::Inbound_Server(std::deque<std::string> &params)
                if (x->Name != servername && x->Name != "*") // open link allowance
                        continue;
 
-               if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge(), password)) ||
-                       x->RecvPass != password && !this->GetTheirChallenge().empty())
+               if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge()), password) &&
+                       (x->RecvPass != password && this->GetTheirChallenge().empty()))
+               {
+                       this->Instance->SNO->WriteToSnoMask('l',"Invalid password on link: %s", x->Name.c_str());
                        continue;
+               }
 
                /* Check for fully initialized instances of the server by id */
                Instance->Logs->Log("m_spanningtree",DEBUG,"Looking for dupe SID %s", sid.c_str());