]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/server.cpp
Allow multiple autoconnects in a single <autoconnect> tag, fix infinite failover
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / server.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "socket.h"
16 #include "xline.h"
17 #include "../transport.h"
18 #include "socketengine.h"
19
20 #include "main.h"
21 #include "utils.h"
22 #include "link.h"
23 #include "treeserver.h"
24 #include "treesocket.h"
25
26 /* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h m_spanningtree/link.h */
27
28 /*
29  * Some server somewhere in the network introducing another server.
30  *      -- w
31  */
32 bool TreeSocket::RemoteServer(const std::string &prefix, parameterlist &params)
33 {
34         if (params.size() < 5)
35         {
36                 SendError("Protocol error - Not enough parameters for SERVER command");
37                 return false;
38         }
39
40         std::string servername = params[0];
41         // password is not used for a remote server
42         // hopcount is not used (ever)
43         std::string sid = params[3];
44         std::string description = params[4];
45         TreeServer* ParentOfThis = Utils->FindServer(prefix);
46
47         if (!ParentOfThis)
48         {
49                 this->SendError("Protocol error - Introduced remote server from unknown server "+ParentOfThis->GetName());
50                 return false;
51         }
52         if (!ServerInstance->IsSID(sid))
53         {
54                 this->SendError("Invalid format server ID: "+sid+"!");
55                 return false;
56         }
57         TreeServer* CheckDupe = Utils->FindServer(servername);
58         if (CheckDupe)
59         {
60                 this->SendError("Server "+servername+" already exists!");
61                 ServerInstance->SNO->WriteToSnoMask('L', "Server \2"+CheckDupe->GetName()+"\2 being introduced from \2" + ParentOfThis->GetName() + "\2 denied, already exists. Closing link with " + ParentOfThis->GetName());
62                 return false;
63         }
64         CheckDupe = Utils->FindServer(sid);
65         if (CheckDupe)
66         {
67                 this->SendError("Server ID "+sid+" already exists! You may want to specify the server ID for the server manually with <server:id> so they do not conflict.");
68                 ServerInstance->SNO->WriteToSnoMask('L', "Server \2"+servername+"\2 being introduced from \2" + ParentOfThis->GetName() + "\2 denied, server ID already exists on the network. Closing link with " + ParentOfThis->GetName());
69                 return false;
70         }
71
72
73         Link* lnk = Utils->FindLink(servername);
74
75         TreeServer *Node = new TreeServer(Utils, servername, description, sid, ParentOfThis,NULL, lnk ? lnk->Hidden : false);
76
77         ParentOfThis->AddChild(Node);
78         params[4] = ":" + params[4];
79         Utils->DoOneToAllButSender(prefix,"SERVER",params,prefix);
80         ServerInstance->SNO->WriteToSnoMask('L', "Server \002"+ParentOfThis->GetName()+"\002 introduced server \002"+servername+"\002 ("+description+")");
81         return true;
82 }
83
84
85 /*
86  * This is used after the other side of a connection has accepted our credentials.
87  * They are then introducing themselves to us, BEFORE either of us burst. -- w
88  */
89 bool TreeSocket::Outbound_Reply_Server(parameterlist &params)
90 {
91         if (params.size() < 5)
92         {
93                 SendError("Protocol error - Not enough parameters for SERVER command");
94                 return false;
95         }
96
97         irc::string servername = params[0].c_str();
98         std::string sname = params[0];
99         std::string password = params[1];
100         std::string sid = params[3];
101         std::string description = params[4];
102         int hops = atoi(params[2].c_str());
103
104         this->InboundServerName = sname;
105         this->InboundDescription = description;
106         this->InboundSID = sid;
107
108         this->SendCapabilities(2);
109
110         if (hops)
111         {
112                 this->SendError("Server too far away for authentication");
113                 ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
114                 return false;
115         }
116
117         if (!ServerInstance->IsSID(sid))
118         {
119                 this->SendError("Invalid format server ID: "+sid+"!");
120                 return false;
121         }
122
123         for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i < Utils->LinkBlocks.end(); i++)
124         {
125                 Link* x = *i;
126                 if (x->Name != servername && x->Name != "*") // open link allowance
127                         continue;
128
129                 if (!ComparePass(*x, password))
130                 {
131                         ServerInstance->SNO->WriteToSnoMask('l',"Invalid password on link: %s", x->Name.c_str());
132                         continue;
133                 }
134
135                 TreeServer* CheckDupe = Utils->FindServer(sname);
136                 if (CheckDupe)
137                 {
138                         this->SendError("Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
139                         ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
140                         return false;
141                 }
142                 CheckDupe = Utils->FindServer(sid);
143                 if (CheckDupe)
144                 {
145                         this->SendError("Server ID "+sid+" already exists on the network! You may want to specify the server ID for the server manually with <server:id> so they do not conflict.");
146                         ServerInstance->SNO->WriteToSnoMask('l',"Server \2"+assign(servername)+"\2 being introduced denied, server ID already exists on the network. Closing link.");
147                         return false;
148                 }
149
150                 /*
151                  * They're in WAIT_AUTH_2 (having accepted our credentials).
152                  * Set our state to CONNECTED (since everything's peachy so far) and send our
153                  * netburst to them, which will trigger their CONNECTED state, and BURST in reply.
154                  *
155                  * While we're at it, create a treeserver object so we know about them.
156                  *   -- w
157                  */
158                 this->LinkState = CONNECTED;
159
160                 Utils->timeoutlist.erase(this);
161
162                 TreeServer *Node = new TreeServer(Utils, sname, description, sid, Utils->TreeRoot, this, x->Hidden);
163
164                 Utils->TreeRoot->AddChild(Node);
165                 params[4] = ":" + params[4];
166
167
168                 /* IMPORTANT: Take password/hmac hash OUT of here before we broadcast the introduction! */
169                 params[1] = "*";
170                 Utils->DoOneToAllButSender(ServerInstance->Config->GetSID(),"SERVER",params,sname);
171
172                 this->DoBurst(Node);
173                 return true;
174         }
175
176         this->SendError("Invalid credentials (check the other server's linking snomask for more information)");
177         ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
178         return false;
179 }
180
181 /*
182  * Someone else is attempting to connect to us if this is called. Validate their credentials etc.
183  *              -- w
184  */
185 bool TreeSocket::Inbound_Server(parameterlist &params)
186 {
187         if (params.size() < 5)
188         {
189                 SendError("Protocol error - Missing SID");
190                 return false;
191         }
192
193         irc::string servername = params[0].c_str();
194         std::string sname = params[0];
195         std::string password = params[1];
196         std::string sid = params[3];
197         std::string description = params[4];
198         int hops = atoi(params[2].c_str());
199
200         this->InboundServerName = sname;
201         this->InboundDescription = description;
202         this->InboundSID = sid;
203
204         this->SendCapabilities(2);
205
206         if (hops)
207         {
208                 this->SendError("Server too far away for authentication");
209                 ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
210                 return false;
211         }
212
213         if (!ServerInstance->IsSID(sid))
214         {
215                 this->SendError("Invalid format server ID: "+sid+"!");
216                 return false;
217         }
218
219         for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i < Utils->LinkBlocks.end(); i++)
220         {
221                 Link* x = *i;
222                 if (x->Name != servername && x->Name != "*") // open link allowance
223                         continue;
224
225                 if (!ComparePass(*x, password))
226                 {
227                         ServerInstance->SNO->WriteToSnoMask('l',"Invalid password on link: %s", x->Name.c_str());
228                         continue;
229                 }
230
231                 /* Now check for fully initialized ServerInstances of the server by name */
232                 TreeServer* CheckDupe = Utils->FindServer(sname);
233                 if (CheckDupe)
234                 {
235                         this->SendError("Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
236                         ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
237                         return false;
238                 }
239
240                 /* Check for fully initialized instances of the server by id */
241                 ServerInstance->Logs->Log("m_spanningtree",DEBUG,"Looking for dupe SID %s", sid.c_str());
242                 CheckDupe = Utils->FindServerID(sid);
243
244                 if (CheckDupe)
245                 {
246                         this->SendError("Server ID "+CheckDupe->GetID()+" already exists on server "+CheckDupe->GetName()+"! You may want to specify the server ID for the server manually with <server:id> so they do not conflict.");
247                         ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server ID '"+CheckDupe->GetID()+
248                                         "' already exists on server "+CheckDupe->GetName());
249                         return false;
250                 }
251
252
253                 ServerInstance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->IP)+"] ("+description+")");
254                 if (this->GetIOHook())
255                 {
256                         std::string name = BufferedSocketNameRequest(Utils->Creator, this->GetIOHook()).Send();
257                         ServerInstance->SNO->WriteToSnoMask('l',"Connection from \2"+sname+"\2["+(x->HiddenFromStats ? "<hidden>" : this->IP)+"] using transport \2"+name+"\2");
258                 }
259
260                 // this is good. Send our details: Our server name and description and hopcount of 0,
261                 // along with the sendpass from this block.
262                 this->SendCapabilities(2);
263                 this->WriteLine(std::string("SERVER ")+ServerInstance->Config->ServerName+" "+this->MakePass(x->SendPass, this->GetTheirChallenge())+" 0 "+ServerInstance->Config->GetSID()+" :"+ServerInstance->Config->ServerDesc);
264                 // move to the next state, we are now waiting for THEM.
265                 this->LinkState = WAIT_AUTH_2;
266                 return true;
267         }
268
269         this->SendError("Invalid credentials");
270         ServerInstance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
271         return false;
272 }
273