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