]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/treeserver.cpp
b5cac18021a42d74e8d4aa95c88dbeefaef3ca1a
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treeserver.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 "configreader.h"
16 #include "users.h"
17 #include "channels.h"
18 #include "modules.h"
19 #include "commands/cmd_whois.h"
20 #include "commands/cmd_stats.h"
21 #include "socket.h"
22 #include "wildcard.h"
23 #include "xline.h"
24 #include "transport.h"
25
26 #include "m_spanningtree/utils.h"
27 #include "m_spanningtree/treeserver.h"
28
29 /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h */
30
31 TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance) : ServerInstance(Instance), Utils(Util)
32 {
33         Parent = NULL;
34         ServerName.clear();
35         ServerDesc.clear();
36         VersionString.clear();
37         UserCount = OperCount = 0;
38         rtt = LastPing = 0;
39         Hidden = false;
40         VersionString = ServerInstance->GetVersionString();
41 }
42
43 /** We use this constructor only to create the 'root' item, Utils->TreeRoot, which
44  * represents our own server. Therefore, it has no route, no parent, and
45  * no socket associated with it. Its version string is our own local version.
46  */
47 TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc) : ServerInstance(Instance), ServerName(Name.c_str()), ServerDesc(Desc), Utils(Util)
48 {
49         Parent = NULL;
50         VersionString.clear();
51         UserCount = ServerInstance->UserCount();
52         OperCount = ServerInstance->OperCount();
53         VersionString = ServerInstance->GetVersionString();
54         Route = NULL;
55         Socket = NULL; /* Fix by brain */
56         rtt = LastPing = 0;
57         Hidden = false;
58         AddHashEntry();
59 }
60
61 /** When we create a new server, we call this constructor to initialize it.
62  * This constructor initializes the server's Route and Parent, and sets up
63  * its ping counters so that it will be pinged one minute from now.
64  */
65 TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock, bool Hide)
66         : ServerInstance(Instance), Parent(Above), ServerName(Name.c_str()), ServerDesc(Desc), Socket(Sock), Utils(Util), Hidden(Hide)
67 {
68         VersionString.clear();
69         UserCount = OperCount = 0;
70         this->SetNextPingTime(time(NULL) + 60);
71         this->SetPingFlag();
72         rtt = LastPing = 0;
73         /* find the 'route' for this server (e.g. the one directly connected
74          * to the local server, which we can use to reach it)
75          *
76          * In the following example, consider we have just added a TreeServer
77          * class for server G on our network, of which we are server A.
78          * To route traffic to G (marked with a *) we must send the data to
79          * B (marked with a +) so this algorithm initializes the 'Route'
80          * value to point at whichever server traffic must be routed through
81          * to get here. If we were to try this algorithm with server B,
82          * the Route pointer would point at its own object ('this').
83          *
84          *            A
85          *           / \
86          *        + B   C
87          *         / \   \
88          *        D   E   F
89          *       /         \
90          *    * G           H
91          *
92          * We only run this algorithm when a server is created, as
93          * the routes remain constant while ever the server exists, and
94          * do not need to be re-calculated.
95          */
96
97         Route = Above;
98         if (Route == Utils->TreeRoot)
99         {
100                 Route = this;
101         }
102         else
103         {
104                 while (this->Route->GetParent() != Utils->TreeRoot)
105                 {
106                         this->Route = Route->GetParent();
107                 }
108         }
109
110         /* Because recursive code is slow and takes a lot of resources,
111          * we store two representations of the server tree. The first
112          * is a recursive structure where each server references its
113          * children and its parent, which is used for netbursts and
114          * netsplits to dump the whole dataset to the other server,
115          * and the second is used for very fast lookups when routing
116          * messages and is instead a hash_map, where each item can
117          * be referenced by its server name. The AddHashEntry()
118          * call below automatically inserts each TreeServer class
119          * into the hash_map as it is created. There is a similar
120          * maintainance call in the destructor to tidy up deleted
121          * servers.
122          */
123
124         this->AddHashEntry();
125 }
126
127 int TreeServer::QuitUsers(const std::string &reason)
128 {
129         const char* reason_s = reason.c_str();
130         std::vector<userrec*> time_to_die;
131         for (user_hash::iterator n = ServerInstance->clientlist->begin(); n != ServerInstance->clientlist->end(); n++)
132         {
133                 if (!strcmp(n->second->server, this->ServerName.c_str()))
134                 {
135                         time_to_die.push_back(n->second);
136                 }
137         }
138         for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
139         {
140                 userrec* a = (userrec*)*n;
141                 if (!IS_LOCAL(a))
142                 {
143                         if (ServerInstance->Config->HideSplits)
144                                 userrec::QuitUser(ServerInstance, a, "*.net *.split", reason_s);
145                         else
146                                 userrec::QuitUser(ServerInstance, a, reason_s);
147
148                         if (this->Utils->quiet_bursts)
149                                 ServerInstance->GlobalCulls.MakeSilent(a);
150                 }
151         }
152         return time_to_die.size();
153 }
154
155 /** This method is used to add the structure to the
156  * hash_map for linear searches. It is only called
157  * by the constructors.
158  */
159 void TreeServer::AddHashEntry()
160 {
161         server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
162         if (iter == Utils->serverlist.end())
163                 Utils->serverlist[this->ServerName.c_str()] = this;
164 }
165
166 /** This method removes the reference to this object
167  * from the hash_map which is used for linear searches.
168  * It is only called by the default destructor.
169  */
170 void TreeServer::DelHashEntry()
171 {
172         server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
173         if (iter != Utils->serverlist.end())
174                 Utils->serverlist.erase(iter);
175 }
176
177 /** These accessors etc should be pretty self-
178  * explanitory.
179  */
180 TreeServer* TreeServer::GetRoute()
181 {
182         return Route;
183 }
184
185 std::string TreeServer::GetName()
186 {
187         return ServerName.c_str();
188 }
189
190 std::string TreeServer::GetDesc()
191 {
192         return ServerDesc;
193 }
194
195 std::string TreeServer::GetVersion()
196 {
197         return VersionString;
198 }
199
200 void TreeServer::SetNextPingTime(time_t t)
201 {
202         this->NextPing = t;
203         LastPingWasGood = false;
204 }
205
206 time_t TreeServer::NextPingTime()
207 {
208         return NextPing;
209 }
210
211 bool TreeServer::AnsweredLastPing()
212 {
213         return LastPingWasGood;
214 }
215
216 void TreeServer::SetPingFlag()
217 {
218         LastPingWasGood = true;
219 }
220
221 int TreeServer::GetUserCount()
222 {
223         return UserCount;
224 }
225
226 void TreeServer::AddUserCount()
227 {
228         UserCount++;
229 }
230
231 void TreeServer::DelUserCount()
232 {
233         UserCount--;
234 }
235
236 int TreeServer::GetOperCount()
237 {
238         return OperCount;
239 }
240
241 TreeSocket* TreeServer::GetSocket()
242 {
243         return Socket;
244 }
245
246 TreeServer* TreeServer::GetParent()
247 {
248         return Parent;
249 }
250
251 void TreeServer::SetVersion(const std::string &Version)
252 {
253         VersionString = Version;
254 }
255
256 unsigned int TreeServer::ChildCount()
257 {
258         return Children.size();
259 }
260
261 TreeServer* TreeServer::GetChild(unsigned int n)
262 {
263         if (n < Children.size())
264         {
265                 /* Make sure they  cant request
266                  * an out-of-range object. After
267                  * all we know what these programmer
268                  * types are like *grin*.
269                  */
270                 return Children[n];
271         }
272         else
273         {
274                 return NULL;
275         }
276 }
277
278 void TreeServer::AddChild(TreeServer* Child)
279 {
280         Children.push_back(Child);
281 }
282
283 bool TreeServer::DelChild(TreeServer* Child)
284 {
285         for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
286         {
287                 if (*a == Child)
288                 {
289                         Children.erase(a);
290                         return true;
291                 }
292         }
293         return false;
294 }
295
296 /** Removes child nodes of this node, and of that node, etc etc.
297  * This is used during netsplits to automatically tidy up the
298  * server tree. It is slow, we don't use it for much else.
299  */
300 bool TreeServer::Tidy()
301 {
302         bool stillchildren = true;
303         while (stillchildren)
304         {
305                 stillchildren = false;
306                 for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
307                 {
308                         TreeServer* s = (TreeServer*)*a;
309                         s->Tidy();
310                         Children.erase(a);
311                         DELETE(s);
312                         stillchildren = true;
313                         break;
314                 }
315         }
316         return true;
317 }
318
319 TreeServer::~TreeServer()
320 {
321         /* We'd better tidy up after ourselves, eh? */
322         this->DelHashEntry();
323 }
324
325