]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/treesocket1.cpp
And spell it right.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treesocket1.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 "configreader.h"
15 #include "users.h"
16 #include "channels.h"
17 #include "modules.h"
18 #include "commands/cmd_whois.h"
19 #include "commands/cmd_stats.h"
20 #include "socket.h"
21 #include "inspircd.h"
22 #include "wildcard.h"
23 #include "xline.h"
24 #include "transport.h"
25 #include "m_hash.h"
26 #include "socketengine.h"
27
28 #include "m_spanningtree/main.h"
29 #include "m_spanningtree/utils.h"
30 #include "m_spanningtree/treeserver.h"
31 #include "m_spanningtree/link.h"
32 #include "m_spanningtree/treesocket.h"
33 #include "m_spanningtree/resolvers.h"
34 #include "m_spanningtree/handshaketimer.h"
35
36 /* $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 m_hash.h */
37
38
39 /** Because most of the I/O gubbins are encapsulated within
40  * InspSocket, we just call the superclass constructor for
41  * most of the action, and append a few of our own values
42  * to it.
43  */
44 TreeSocket::TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, Module* HookMod)
45         : InspSocket(SI, host, port, listening, maxtime), Utils(Util), Hook(HookMod)
46 {
47         myhost = host;
48         this->LinkState = LISTENER;
49         theirchallenge = ourchallenge = "";
50         if (listening && Hook)
51                 InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
52 }
53
54 TreeSocket::TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, const std::string &ServerName, const std::string &bindto, Module* HookMod)
55         : InspSocket(SI, host, port, listening, maxtime, bindto), Utils(Util), Hook(HookMod)
56 {
57         myhost = ServerName;
58         theirchallenge = ourchallenge = "";
59         this->LinkState = CONNECTING;
60         if (Hook)
61                 InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
62 }
63
64 /** When a listening socket gives us a new file descriptor,
65  * we must associate it with a socket without creating a new
66  * connection. This constructor is used for this purpose.
67  */
68 TreeSocket::TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, int newfd, char* ip, Module* HookMod)
69         : InspSocket(SI, newfd, ip), Utils(Util), Hook(HookMod)
70 {
71         this->LinkState = WAIT_AUTH_1;
72         theirchallenge = ourchallenge = "";
73         /* If we have a transport module hooked to the parent, hook the same module to this
74          * socket, and set a timer waiting for handshake before we send CAPAB etc.
75          */
76         if (Hook)
77                 InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
78
79         Instance->Timers->AddTimer(new HandshakeTimer(Instance, this, &(Utils->LinkBlocks[0]), this->Utils, 1));
80 }
81
82 ServerState TreeSocket::GetLinkState()
83 {
84         return this->LinkState;
85 }
86
87 Module* TreeSocket::GetHook()
88 {
89         return this->Hook;
90 }
91
92 TreeSocket::~TreeSocket()
93 {
94         if (Hook)
95                 InspSocketUnhookRequest(this, (Module*)Utils->Creator, Hook).Send();
96 }
97
98 const std::string& TreeSocket::GetOurChallenge()
99 {
100         return this->ourchallenge;
101 }
102
103 void TreeSocket::SetOurChallenge(const std::string &c)
104 {
105         this->ourchallenge = c;
106 }
107
108 const std::string& TreeSocket::GetTheirChallenge()
109 {
110         return this->theirchallenge;
111 }
112
113 void TreeSocket::SetTheirChallenge(const std::string &c)
114 {
115         this->theirchallenge = c;
116 }
117
118 std::string TreeSocket::MakePass(const std::string &password, const std::string &challenge)
119 {
120         /* This is a simple (maybe a bit hacky?) HMAC algorithm, thanks to jilles for
121          * suggesting the use of HMAC to secure the password against various attacks.
122          *
123          * Note: If m_sha256.so is not loaded, we MUST fall back to plaintext with no
124          *       HMAC challenge/response.
125          */
126         Module* sha256 = Instance->FindModule("m_sha256.so");
127         if (Utils->ChallengeResponse && sha256 && !challenge.empty())
128         {
129                 /* XXX: This is how HMAC is supposed to be done:
130                  *
131                  * sha256( (pass xor 0x5c) + sha256((pass xor 0x36) + m) )
132                  *
133                  * Note that we are encoding the hex hash, not the binary
134                  * output of the hash which is slightly different to standard.
135                  *
136                  * Don't ask me why its always 0x5c and 0x36... it just is.
137                  */
138                 std::string hmac1, hmac2;
139
140                 for (size_t n = 0; n < password.length(); n++)
141                 {
142                         hmac1 += static_cast<char>(password[n] ^ 0x5C);
143                         hmac2 += static_cast<char>(password[n] ^ 0x36);
144                 }
145
146                 HashResetRequest(Utils->Creator, sha256).Send();
147                 hmac2 = HashSumRequest(Utils->Creator, sha256, hmac2).Send();
148
149                 HashResetRequest(Utils->Creator, sha256).Send();
150                 std::string hmac = hmac1 + hmac2 + challenge;
151                 hmac = HashSumRequest(Utils->Creator, sha256, hmac).Send();
152
153                 return "HMAC-SHA256:"+ hmac;
154         }
155         else if (!challenge.empty() && !sha256)
156                 Instance->Log(DEFAULT,"Not authenticating to server using SHA256/HMAC because we don't have m_sha256 loaded!");
157
158         return password;
159 }
160
161 /** When an outbound connection finishes connecting, we receive
162  * this event, and must send our SERVER string to the other
163  * side. If the other side is happy, as outlined in the server
164  * to server docs on the inspircd.org site, the other side
165  * will then send back its own server string.
166  */
167 bool TreeSocket::OnConnected()
168 {
169         if (this->LinkState == CONNECTING)
170         {
171                 /* we do not need to change state here. */
172                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
173                 {
174                         if (x->Name == this->myhost)
175                         {
176                                 this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] started.");
177                                 if (Hook)
178                                 {
179                                         InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
180                                         this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] using transport \2"+x->Hook+"\2");
181                                 }
182                                 this->OutboundPass = x->SendPass;
183
184                                 /* found who we're supposed to be connecting to, send the neccessary gubbins. */
185                                 if (this->GetHook())
186                                         Instance->Timers->AddTimer(new HandshakeTimer(Instance, this, &(*x), this->Utils, 1));
187                                 else
188                                         this->SendCapabilities();
189
190                                 return true;
191                         }
192                 }
193         }
194         /* There is a (remote) chance that between the /CONNECT and the connection
195          * being accepted, some muppet has removed the <link> block and rehashed.
196          * If that happens the connection hangs here until it's closed. Unlikely
197          * and rather harmless.
198          */
199         this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2 lost link tag(!)");
200         return true;
201 }
202
203 void TreeSocket::OnError(InspSocketError e)
204 {
205         /* We don't handle this method, because all our
206          * dirty work is done in OnClose() (see below)
207          * which is still called on error conditions too.
208          */
209         if (e == I_ERR_CONNECT)
210         {
211                 this->Instance->SNO->WriteToSnoMask('l',"Connection failed: Connection to \002"+myhost+"\002 refused");
212                 Link* MyLink = Utils->FindLink(myhost);
213                 if (MyLink)
214                         Utils->DoFailOver(MyLink);
215         }
216 }
217
218 int TreeSocket::OnDisconnect()
219 {
220         /* For the same reason as above, we don't
221          * handle OnDisconnect()
222          */
223         return true;
224 }
225
226 /** Recursively send the server tree with distances as hops.
227  * This is used during network burst to inform the other server
228  * (and any of ITS servers too) of what servers we know about.
229  * If at any point any of these servers already exist on the other
230  * end, our connection may be terminated. The hopcounts given
231  * by this function are relative, this doesn't matter so long as
232  * they are all >1, as all the remote servers re-calculate them
233  * to be relative too, with themselves as hop 0.
234  */
235 void TreeSocket::SendServers(TreeServer* Current, TreeServer* s, int hops)
236 {
237         char command[1024];
238         for (unsigned int q = 0; q < Current->ChildCount(); q++)
239         {
240                 TreeServer* recursive_server = Current->GetChild(q);
241                 if (recursive_server != s)
242                 {
243                         snprintf(command,1024,":%s SERVER %s * %d :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,recursive_server->GetDesc().c_str());
244                         this->WriteLine(command);
245                         this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
246                         /* down to next level */
247                         this->SendServers(recursive_server, s, hops+1);
248                 }
249         }
250 }
251
252 std::string TreeSocket::MyCapabilities()
253 {
254         std::vector<std::string> modlist;
255         std::string capabilities = "";
256         for (int i = 0; i <= this->Instance->GetModuleCount(); i++)
257         {
258                 if (this->Instance->modules[i]->GetVersion().Flags & VF_COMMON)
259                         modlist.push_back(this->Instance->Config->module_names[i]);
260         }
261         sort(modlist.begin(),modlist.end());
262         for (unsigned int i = 0; i < modlist.size(); i++)
263         {
264                 if (i)
265                         capabilities = capabilities + ",";
266                 capabilities = capabilities + modlist[i];
267         }
268         return capabilities;
269 }
270
271 std::string TreeSocket::RandString(unsigned int length)
272 {
273         char* randombuf = new char[length+1];
274         std::string out;
275         int fd = open("/dev/urandom", O_RDONLY, 0);
276
277         if (fd >= 0)
278         {
279                 read(fd, randombuf, length);
280                 close(fd);
281         }
282         else
283         {
284                 for (unsigned int i = 0; i < length; i++)
285                         randombuf[i] = rand();
286         }
287
288         for (unsigned int i = 0; i < length; i++)
289                 out += static_cast<char>((randombuf[i] & 0x7F) | 0x21);
290
291         delete[] randombuf;
292         return out;
293 }
294
295 void TreeSocket::SendCapabilities()
296 {
297         irc::commasepstream modulelist(MyCapabilities());
298         this->WriteLine("CAPAB START");
299
300         /* Send module names, split at 509 length */
301         std::string item = "*";
302         std::string line = "CAPAB MODULES ";
303         while ((item = modulelist.GetToken()) != "")
304         {
305                 if (line.length() + item.length() + 1 > 509)
306                 {
307                         this->WriteLine(line);
308                         line = "CAPAB MODULES ";
309                 }
310
311                 if (line != "CAPAB MODULES ")
312                         line.append(",");
313
314                 line.append(item);
315         }
316         if (line != "CAPAB MODULES ")
317                 this->WriteLine(line);
318
319         int ip6 = 0;
320         int ip6support = 0;
321 #ifdef IPV6
322         ip6 = 1;
323 #endif
324 #ifdef SUPPORT_IP6LINKS
325         ip6support = 1;
326 #endif
327         std::string extra;
328         /* Do we have sha256 available? If so, we send a challenge */
329         if (Utils->ChallengeResponse && (Instance->FindModule("m_sha256.so")))
330         {
331                 this->SetOurChallenge(RandString(20));
332                 extra = " CHALLENGE=" + this->GetOurChallenge();
333         }
334
335         this->WriteLine("CAPAB CAPABILITIES :NICKMAX="+ConvToStr(NICKMAX)+" HALFOP="+ConvToStr(this->Instance->Config->AllowHalfop)+" CHANMAX="+ConvToStr(CHANMAX)+" MAXMODES="+ConvToStr(MAXMODES)+" IDENTMAX="+ConvToStr(IDENTMAX)+" MAXQUIT="+ConvToStr(MAXQUIT)+" MAXTOPIC="+ConvToStr(MAXTOPIC)+" MAXKICK="+ConvToStr(MAXKICK)+" MAXGECOS="+ConvToStr(MAXGECOS)+" MAXAWAY="+ConvToStr(MAXAWAY)+" IP6NATIVE="+ConvToStr(ip6)+" IP6SUPPORT="+ConvToStr(ip6support)+" PROTOCOL="+ConvToStr(ProtocolVersion)+extra);
336
337         this->WriteLine("CAPAB END");
338 }
339
340 /* Check a comma seperated list for an item */
341 bool TreeSocket::HasItem(const std::string &list, const std::string &item)
342 {
343         irc::commasepstream seplist(list);
344         std::string item2 = "*";
345         while ((item2 = seplist.GetToken()) != "")
346         {
347                 if (item2 == item)
348                         return true;
349         }
350         return false;
351 }
352
353 /* Isolate and return the elements that are different between two comma seperated lists */
354 std::string TreeSocket::ListDifference(const std::string &one, const std::string &two)
355 {
356         irc::commasepstream list_one(one);
357         std::string item = "*";
358         std::string result = "";
359         while ((item = list_one.GetToken()) != "")
360         {
361                 if (!HasItem(two, item))
362                 {
363                         result.append(" ");
364                         result.append(item);
365                 }
366         }
367         return result;
368 }
369
370 bool TreeSocket::Capab(const std::deque<std::string> &params)
371 {
372         if (params.size() < 1)
373         {
374                 this->WriteLine("ERROR :Invalid number of parameters for CAPAB - Mismatched version");
375                 return false;
376         }
377         if (params[0] == "START")
378         {
379                 this->ModuleList = "";
380                 this->CapKeys.clear();
381         }
382         else if (params[0] == "END")
383         {
384                 std::string reason = "";
385                 int ip6support = 0;
386 #ifdef SUPPORT_IP6LINKS
387                 ip6support = 1;
388 #endif
389                 /* Compare ModuleList and check CapKeys...
390                  * Maybe this could be tidier? -- Brain
391                  */
392                 if ((this->ModuleList != this->MyCapabilities()) && (this->ModuleList.length()))
393                 {
394                         std::string diff = ListDifference(this->ModuleList, this->MyCapabilities());
395                         if (!diff.length())
396                         {
397                                 diff = "your server:" + ListDifference(this->MyCapabilities(), this->ModuleList);
398                         }
399                         else
400                         {
401                                 diff = "this server:" + diff;
402                         }
403                         if (diff.length() == 12)
404                                 reason = "Module list in CAPAB is not alphabetically ordered, cannot compare lists.";
405                         else
406                                 reason = "Modules loaded on these servers are not correctly matched, these modules are not loaded on " + diff;
407                 }
408                 if (((this->CapKeys.find("IP6SUPPORT") == this->CapKeys.end()) && (ip6support)) || ((this->CapKeys.find("IP6SUPPORT") != this->CapKeys.end()) && (this->CapKeys.find("IP6SUPPORT")->second != ConvToStr(ip6support))))
409                         reason = "We don't both support linking to IPV6 servers";
410                 if (((this->CapKeys.find("IP6NATIVE") != this->CapKeys.end()) && (this->CapKeys.find("IP6NATIVE")->second == "1")) && (!ip6support))
411                         reason = "The remote server is IPV6 native, and we don't support linking to IPV6 servers";
412                 if (((this->CapKeys.find("NICKMAX") == this->CapKeys.end()) || ((this->CapKeys.find("NICKMAX") != this->CapKeys.end()) && (this->CapKeys.find("NICKMAX")->second != ConvToStr(NICKMAX)))))
413                         reason = "Maximum nickname lengths differ or remote nickname length not specified";
414                 if (((this->CapKeys.find("PROTOCOL") == this->CapKeys.end()) || ((this->CapKeys.find("PROTOCOL") != this->CapKeys.end()) && (this->CapKeys.find("PROTOCOL")->second != ConvToStr(ProtocolVersion)))))
415                 {
416                         if (this->CapKeys.find("PROTOCOL") != this->CapKeys.end())
417                         {
418                                 reason = "Mismatched protocol versions "+this->CapKeys.find("PROTOCOL")->second+" and "+ConvToStr(ProtocolVersion);
419                         }
420                         else
421                         {
422                                 reason = "Protocol version not specified";
423                         }
424                 }
425                 if (((this->CapKeys.find("HALFOP") == this->CapKeys.end()) && (Instance->Config->AllowHalfop)) || ((this->CapKeys.find("HALFOP") != this->CapKeys.end()) && (this->CapKeys.find("HALFOP")->second != ConvToStr(Instance->Config->AllowHalfop))))
426                         reason = "We don't both have halfop support enabled/disabled identically";
427                 if (((this->CapKeys.find("IDENTMAX") == this->CapKeys.end()) || ((this->CapKeys.find("IDENTMAX") != this->CapKeys.end()) && (this->CapKeys.find("IDENTMAX")->second != ConvToStr(IDENTMAX)))))
428                         reason = "Maximum ident lengths differ or remote ident length not specified";
429                 if (((this->CapKeys.find("CHANMAX") == this->CapKeys.end()) || ((this->CapKeys.find("CHANMAX") != this->CapKeys.end()) && (this->CapKeys.find("CHANMAX")->second != ConvToStr(CHANMAX)))))
430                         reason = "Maximum channel lengths differ or remote channel length not specified";
431                 if (((this->CapKeys.find("MAXMODES") == this->CapKeys.end()) || ((this->CapKeys.find("MAXMODES") != this->CapKeys.end()) && (this->CapKeys.find("MAXMODES")->second != ConvToStr(MAXMODES)))))
432                         reason = "Maximum modes per line differ or remote modes per line not specified";
433                 if (((this->CapKeys.find("MAXQUIT") == this->CapKeys.end()) || ((this->CapKeys.find("MAXQUIT") != this->CapKeys.end()) && (this->CapKeys.find("MAXQUIT")->second != ConvToStr(MAXQUIT)))))
434                         reason = "Maximum quit lengths differ or remote quit length not specified";
435                 if (((this->CapKeys.find("MAXTOPIC") == this->CapKeys.end()) || ((this->CapKeys.find("MAXTOPIC") != this->CapKeys.end()) && (this->CapKeys.find("MAXTOPIC")->second != ConvToStr(MAXTOPIC)))))
436                         reason = "Maximum topic lengths differ or remote topic length not specified";
437                 if (((this->CapKeys.find("MAXKICK") == this->CapKeys.end()) || ((this->CapKeys.find("MAXKICK") != this->CapKeys.end()) && (this->CapKeys.find("MAXKICK")->second != ConvToStr(MAXKICK)))))
438                         reason = "Maximum kick lengths differ or remote kick length not specified";
439                 if (((this->CapKeys.find("MAXGECOS") == this->CapKeys.end()) || ((this->CapKeys.find("MAXGECOS") != this->CapKeys.end()) && (this->CapKeys.find("MAXGECOS")->second != ConvToStr(MAXGECOS)))))
440                         reason = "Maximum GECOS (fullname) lengths differ or remote GECOS length not specified";
441                 if (((this->CapKeys.find("MAXAWAY") == this->CapKeys.end()) || ((this->CapKeys.find("MAXAWAY") != this->CapKeys.end()) && (this->CapKeys.find("MAXAWAY")->second != ConvToStr(MAXAWAY)))))
442                         reason = "Maximum awaymessage lengths differ or remote awaymessage length not specified";
443
444                 /* Challenge response, store their challenge for our password */
445                 std::map<std::string,std::string>::iterator n = this->CapKeys.find("CHALLENGE");
446                 if (Utils->ChallengeResponse && (n != this->CapKeys.end()) && (Instance->FindModule("m_sha256.so")))
447                 {
448                         /* Challenge-response is on now */
449                         this->SetTheirChallenge(n->second);
450                         if (!this->GetTheirChallenge().empty() && (this->LinkState == CONNECTING))
451                         {
452                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+this->MakePass(OutboundPass, this->GetTheirChallenge())+" 0 :"+this->Instance->Config->ServerDesc);
453                         }
454                 }
455                 else
456                 {
457                         /* They didnt specify a challenge or we don't have m_sha256.so, we use plaintext */
458                         if (this->LinkState == CONNECTING)
459                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+OutboundPass+" 0 :"+this->Instance->Config->ServerDesc);
460                 }
461
462                 if (reason.length())
463                 {
464                         this->WriteLine("ERROR :CAPAB negotiation failed: "+reason);
465                         return false;
466                 }
467         }
468         else if ((params[0] == "MODULES") && (params.size() == 2))
469         {
470                 if (!this->ModuleList.length())
471                 {
472                         this->ModuleList.append(params[1]);
473                 }
474                 else
475                 {
476                         this->ModuleList.append(",");
477                         this->ModuleList.append(params[1]);
478                 }
479         }
480
481         else if ((params[0] == "CAPABILITIES") && (params.size() == 2))
482         {
483                 irc::tokenstream capabs(params[1]);
484                 std::string item;
485                 bool more = true;
486                 while ((more = capabs.GetToken(item)))
487                 {
488                         /* Process each key/value pair */
489                         std::string::size_type equals = item.rfind('=');
490                         if (equals != std::string::npos)
491                         {
492                                 std::string var = item.substr(0, equals);
493                                 std::string value = item.substr(equals+1, item.length());
494                                 CapKeys[var] = value;
495                         }
496                 }
497         }
498         return true;
499 }
500
501 /** This function forces this server to quit, removing this server
502  * and any users on it (and servers and users below that, etc etc).
503  * It's very slow and pretty clunky, but luckily unless your network
504  * is having a REAL bad hair day, this function shouldnt be called
505  * too many times a month ;-)
506  */
507 void TreeSocket::SquitServer(std::string &from, TreeServer* Current)
508 {
509         /* recursively squit the servers attached to 'Current'.
510          * We're going backwards so we don't remove users
511          * while we still need them ;)
512          */
513         for (unsigned int q = 0; q < Current->ChildCount(); q++)
514         {
515                 TreeServer* recursive_server = Current->GetChild(q);
516                 this->SquitServer(from,recursive_server);
517         }
518         /* Now we've whacked the kids, whack self */
519         num_lost_servers++;
520         num_lost_users += Current->QuitUsers(from);
521 }
522
523 /** This is a wrapper function for SquitServer above, which
524  * does some validation first and passes on the SQUIT to all
525  * other remaining servers.
526  */
527 void TreeSocket::Squit(TreeServer* Current, const std::string &reason)
528 {
529         if ((Current) && (Current != Utils->TreeRoot))
530         {
531                 Event rmode((char*)Current->GetName().c_str(), (Module*)Utils->Creator, "lost_server");
532                 rmode.Send(Instance);
533
534                 std::deque<std::string> params;
535                 params.push_back(Current->GetName());
536                 params.push_back(":"+reason);
537                 Utils->DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
538                 if (Current->GetParent() == Utils->TreeRoot)
539                 {
540                         this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
541                 }
542                 else
543                 {
544                         this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
545                 }
546                 num_lost_servers = 0;
547                 num_lost_users = 0;
548                 std::string from = Current->GetParent()->GetName()+" "+Current->GetName();
549                 SquitServer(from, Current);
550                 Current->Tidy();
551                 Current->GetParent()->DelChild(Current);
552                 DELETE(Current);
553                 this->Instance->WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
554         }
555         else
556         {
557                 Instance->Log(DEFAULT,"Squit from unknown server");
558         }
559 }
560
561 /** FMODE command - server mode with timestamp checks */
562 bool TreeSocket::ForceMode(const std::string &source, std::deque<std::string> &params)
563 {
564         /* Chances are this is a 1.0 FMODE without TS */
565         if (params.size() < 3)
566         {
567                 /* No modes were in the command, probably a channel with no modes set on it */
568                 return true;
569         }
570
571         bool smode = false;
572         std::string sourceserv;
573         /* Are we dealing with an FMODE from a user, or from a server? */
574         userrec* who = this->Instance->FindNick(source);
575         if (who)
576         {
577                 /* FMODE from a user, set sourceserv to the users server name */
578                 sourceserv = who->server;
579         }
580         else
581         {
582                 /* FMODE from a server, create a fake user to receive mode feedback */
583                 who = new userrec(this->Instance);
584                 who->SetFd(FD_MAGIC_NUMBER);
585                 smode = true;      /* Setting this flag tells us we should free the userrec later */
586                 sourceserv = source;    /* Set sourceserv to the actual source string */
587         }
588         const char* modelist[64];
589         time_t TS = 0;
590         int n = 0;
591         memset(&modelist,0,sizeof(modelist));
592         for (unsigned int q = 0; (q < params.size()) && (q < 64); q++)
593         {
594                 if (q == 1)
595                 {
596                         /* The timestamp is in this position.
597                          * We don't want to pass that up to the
598                          * server->client protocol!
599                          */
600                         TS = atoi(params[q].c_str());
601                 }
602                 else
603                 {
604                         /* Everything else is fine to append to the modelist */
605                         modelist[n++] = params[q].c_str();
606                 }
607
608         }
609         /* Extract the TS value of the object, either userrec or chanrec */
610         userrec* dst = this->Instance->FindNick(params[0]);
611         chanrec* chan = NULL;
612         time_t ourTS = 0;
613         if (dst)
614         {
615                 ourTS = dst->age;
616         }
617         else
618         {
619                 chan = this->Instance->FindChan(params[0]);
620                 if (chan)
621                 {
622                         ourTS = chan->age;
623                 }
624                 else
625                         /* Oops, channel doesnt exist! */
626                         return true;
627         }
628
629         /* TS is equal or less: Merge the mode changes into ours and pass on.
630          */
631         if (TS <= ourTS)
632         {
633                 if (smode)
634                 {
635                         this->Instance->SendMode(modelist, n, who);
636                 }
637                 else
638                 {
639                         this->Instance->CallCommandHandler("MODE", modelist, n, who);
640                 }
641                 /* HOT POTATO! PASS IT ON! */
642                 Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv);
643         }
644         /* If the TS is greater than ours, we drop the mode and dont pass it anywhere.
645          */
646
647         if (smode)
648                 DELETE(who);
649
650         return true;
651 }
652
653 /** FTOPIC command */
654 bool TreeSocket::ForceTopic(const std::string &source, std::deque<std::string> &params)
655 {
656         if (params.size() != 4)
657                 return true;
658         time_t ts = atoi(params[1].c_str());
659         std::string nsource = source;
660         chanrec* c = this->Instance->FindChan(params[0]);
661         if (c)
662         {
663                 if ((ts >= c->topicset) || (!*c->topic))
664                 {
665                         std::string oldtopic = c->topic;
666                         strlcpy(c->topic,params[3].c_str(),MAXTOPIC);
667                         strlcpy(c->setby,params[2].c_str(),127);
668                         c->topicset = ts;
669                         /* if the topic text is the same as the current topic,
670                          * dont bother to send the TOPIC command out, just silently
671                          * update the set time and set nick.
672                          */
673                         if (oldtopic != params[3])
674                         {
675                                 userrec* user = this->Instance->FindNick(source);
676                                 if (!user)
677                                 {
678                                         c->WriteChannelWithServ(source.c_str(), "TOPIC %s :%s", c->name, c->topic);
679                                 }
680                                 else
681                                 {
682                                         c->WriteChannel(user, "TOPIC %s :%s", c->name, c->topic);
683                                         nsource = user->server;
684                                 }
685                                 /* all done, send it on its way */
686                                 params[3] = ":" + params[3];
687                                 Utils->DoOneToAllButSender(source,"FTOPIC",params,nsource);
688                         }
689                 }
690
691         }
692         return true;
693 }
694
695 /** FJOIN, similar to TS6 SJOIN, but not quite. */
696 bool TreeSocket::ForceJoin(const std::string &source, std::deque<std::string> &params)
697 {
698         /* 1.1 FJOIN works as follows:
699          *
700          * Each FJOIN is sent along with a timestamp, and the side with the lowest
701          * timestamp 'wins'. From this point on we will refer to this side as the
702          * winner. The side with the higher timestamp loses, from this point on we
703          * will call this side the loser or losing side. This should be familiar to
704          * anyone who's dealt with dreamforge or TS6 before.
705          *
706          * When two sides of a split heal and this occurs, the following things
707          * will happen:
708          *
709          * If the timestamps are exactly equal, both sides merge their privilages
710          * and users, as in InspIRCd 1.0 and ircd2.8. The channels have not been
711          * re-created during a split, this is safe to do.
712          *
713          *
714          * If the timestamps are NOT equal, the losing side removes all privilage
715          * modes from all of its users that currently exist in the channel, before
716          * introducing new users into the channel which are listed in the FJOIN
717          * command's parameters. This means, all modes +ohv, and privilages added
718          * by modules, such as +qa. The losing side then LOWERS its timestamp value
719          * of the channel to match that of the winning side, and the modes of the
720          * users of the winning side are merged in with the losing side. The loser
721          * then sends out a set of FMODE commands which 'confirm' that it just
722          * removed all privilage modes from its existing users, which allows for
723          * services packages to still work correctly without needing to know the
724          * timestamping rules which InspIRCd follows. In TS6 servers this is always
725          * a problem, and services packages must contain code which explicitly
726          * behaves as TS6 does, removing ops from the losing side of a split where
727          * neccessary within its internal records, as this state information is
728          * not explicitly echoed out in that protocol.
729          *
730          * The winning side on the other hand will ignore all user modes from the
731          * losing side, so only its own modes get applied. Life is simple for those
732          * who succeed at internets. :-)
733          *
734          * NOTE: Unlike TS6 and dreamforge and other protocols which have SJOIN,
735          * FJOIN does not contain the simple-modes such as +iklmnsp. Why not,
736          * you ask? Well, quite simply because we don't need to. They'll be sent
737          * after the FJOIN by FMODE, and FMODE is timestamped, so in the event
738          * the losing side sends any modes for the channel which shouldnt win,
739          * they wont as their timestamp will be too high :-)
740          */
741
742         if (params.size() < 3)
743                 return true;
744
745         char first[MAXBUF];          /* The first parameter of the mode command */
746         char modestring[MAXBUF];        /* The mode sequence (2nd parameter) of the mode command */
747         char* mode_users[127];    /* The values used by the mode command */
748         memset(&mode_users,0,sizeof(mode_users));       /* Initialize mode parameters */
749         mode_users[0] = first;    /* Set this up to be our on-stack value */
750         mode_users[1] = modestring;     /* Same here as above */
751         strcpy(modestring,"+");  /* Initialize the mode sequence to just '+' */
752         unsigned int modectr = 2;       /* Pointer to the third mode parameter (e.g. the one after the +-sequence) */
753
754         userrec* who = NULL;                /* User we are currently checking */
755         std::string channel = params[0];        /* Channel name, as a string */
756         time_t TS = atoi(params[1].c_str());    /* Timestamp given to us for remote side */
757         std::string nicklist = params[2];
758         bool created = false;
759
760         /* Try and find the channel */
761         chanrec* chan = this->Instance->FindChan(channel);
762
763         /* Initialize channel name in the mode parameters */
764         strlcpy(mode_users[0],channel.c_str(),MAXBUF);
765
766         /* default TS is a high value, which if we dont have this
767          * channel will let the other side apply their modes.
768          */
769         time_t ourTS = Instance->Time(true)+600;
770         /* Does this channel exist? if it does, get its REAL timestamp */
771         if (chan)
772                 ourTS = chan->age;
773         else
774                 created = true; /* don't perform deops, and set TS to correct time after processing. */
775
776         /* do this first, so our mode reversals are correctly received by other servers
777          * if there is a TS collision.
778          */
779         params[2] = ":" + params[2];
780         Utils->DoOneToAllButSender(source,"FJOIN",params,source);
781
782         /* In 1.1, if they have the newer channel, we immediately clear
783          * all status modes from our users. We then accept their modes.
784          * If WE have the newer channel its the other side's job to do this.
785          * Note that this causes the losing server to send out confirming
786          * FMODE lines.
787          */
788         if (ourTS > TS)
789         {
790                 std::deque<std::string> param_list;
791                 /* Lower the TS here */
792                 if (Utils->AnnounceTSChange && chan)
793                         chan->WriteChannelWithServ(Instance->Config->ServerName,
794                         "NOTICE %s :TS for %s changed from %lu to %lu", chan->name, chan->name, ourTS, TS);
795                 ourTS = TS;
796                 /* Zap all the privilage modes on our side, if the channel exists here */
797                 if (!created)
798                 {
799                         param_list.push_back(channel);
800                         /* Do this first! */
801                         chan->age = TS;
802                         this->RemoveStatus(Instance->Config->ServerName, param_list);
803                 }
804         }
805         /* Put the final parameter of the FJOIN into a tokenstream ready to split it */
806         irc::tokenstream users(nicklist);
807         std::string item;
808
809         /* Now, process every 'prefixes,nick' pair */
810         while (users.GetToken(item))
811         {
812                 /* Find next user */
813                 const char* usr = item.c_str();
814                 /* Safety check just to make sure someones not sent us an FJOIN full of spaces
815                  * (is this even possible?) */
816                 if (usr && *usr)
817                 {
818                         const char* permissions = usr;
819                         int ntimes = 0;
820                         char* nm = new char[MAXBUF];
821                         char* tnm = nm;
822                         /* Iterate through all the prefix values, convert them from prefixes
823                          * to mode letters, and append them to the mode sequence
824                          */
825                         while ((*permissions) && (*permissions != ',') && (ntimes < MAXBUF))
826                         {
827                                 ModeHandler* mh = Instance->Modes->FindPrefix(*permissions);
828                                 if (mh)
829                                 {
830                                         /* This is a valid prefix */
831                                         ntimes++;
832                                         *tnm++ = mh->GetModeChar();
833                                 }
834                                 else
835                                 {
836                                         /* Not a valid prefix...
837                                          * danger bill bobbertson! (that's will robinsons older brother ;-) ...)
838                                          */
839                                         this->Instance->WriteOpers("ERROR: We received a user with an unknown prefix '%c'. Closed connection to avoid a desync.",*permissions);
840                                         this->WriteLine(std::string("ERROR :Invalid prefix '")+(*permissions)+"' in FJOIN");
841                                         return false;
842                                 }
843                                 usr++;
844                                 permissions++;
845                         }
846                         /* Null terminate modes */
847                         *tnm = 0;
848                         /* Advance past the comma, to the nick */
849                         usr++;
850                         /* Check the user actually exists */
851                         who = this->Instance->FindNick(usr);
852                         if (who)
853                         {
854                                 /* Check that the user's 'direction' is correct
855                                  * based on the server sending the FJOIN. We must
856                                  * check each nickname in turn, because the origin of
857                                  * the FJOIN may be different to the origin of the nicks
858                                  * in the command itself.
859                                  */
860                                 TreeServer* route_back_again = Utils->BestRouteTo(who->server);
861                                 if ((!route_back_again) || (route_back_again->GetSocket() != this))
862                                 {
863                                         /* Oh dear oh dear. */
864                                         delete[] nm;
865                                         continue;
866                                 }
867
868                                 /* NOTE: Moved this below the fake direction check, so that modes
869                                  * arent put into the mode list for users that were collided, and
870                                  * may reconnect from the other side or our side before the split
871                                  * is completed!
872                                  */
873
874                                 /* Did they get any modes? How many times? */
875                                 strlcat(modestring, nm, MAXBUF);
876                                 for (int k = 0; k < ntimes; k++)
877                                         mode_users[modectr++] = strdup(usr);
878                                 /* Free temporary buffer used for mode sequence */
879                                 delete[] nm;
880
881                                 /* Finally, we can actually place the user into the channel.
882                                  * We're sure its right. Final answer, phone a friend.
883                                  */
884                                 if (created)
885                                         chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "", TS);
886                                 else
887                                         chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "");
888                                 /* Have we already queued up MAXMODES modes with parameters
889                                  * (+qaohv) ready to be sent to the server?
890                                  */
891                                 if (modectr >= (MAXMODES-1))
892                                 {
893                                         /* Only actually give the users any status if we lost
894                                          * the FJOIN or drew (equal timestamps).
895                                          * It isn't actually possible for ourTS to be > TS here,
896                                          * only possible to actually have ourTS == TS, or
897                                          * ourTS < TS, because if we lost, we already lowered
898                                          * our TS above before we entered this loop. We only
899                                          * check >= as a safety measure, in case someone stuffed
900                                          * up. If someone DID stuff up, it was most likely me.
901                                          * Note: I do not like baseball bats in the face...
902                                          */
903                                         if (ourTS >= TS)
904                                         {
905                                                 this->Instance->SendMode((const char**)mode_users,modectr,who);
906
907                                                 /* Something stuffed up, and for some reason, the timestamp is
908                                                  * NOT lowered right now and should be. Lower it. Usually this
909                                                  * code won't be executed, doubtless someone will remove it some
910                                                  * day soon.
911                                                  */
912                                                 if (ourTS > TS)
913                                                 {
914                                                         Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
915                                                         chan->age = TS;
916                                                         ourTS = TS;
917                                                 }
918                                         }
919
920                                         /* Reset all this back to defaults, and
921                                          * free any ram we have left allocated.
922                                          */
923                                         strcpy(mode_users[1],"+");
924                                         for (unsigned int f = 2; f < modectr; f++)
925                                                 free(mode_users[f]);
926                                         modectr = 2;
927                                 }
928                         }
929                         else
930                         {
931                                 /* Remember to free this */
932                                 delete[] nm;
933                                 /* If we got here, there's a nick in FJOIN which doesnt exist on this server.
934                                  * We don't try to process the nickname here (that WOULD cause a segfault because
935                                  * we'd be playing with null pointers) however, we DO pass the nickname on, just
936                                  * in case somehow we're desynched, so that other users which might be able to see
937                                  * the nickname get their fair chance to process it.
938                                  */
939                                 Instance->Log(SPARSE,"Warning! Invalid user %s in FJOIN to channel %s IGNORED", usr, channel.c_str());
940                                 continue;
941                         }
942                 }
943         }
944
945         /* there werent enough modes built up to flush it during FJOIN,
946          * or, there are a number left over. flush them out.
947          */
948         if ((modectr > 2) && (who) && (chan))
949         {
950                 if (ourTS >= TS)
951                 {
952                         /* Our channel is newer than theirs. Evil deeds must be afoot. */
953                         this->Instance->SendMode((const char**)mode_users,modectr,who);
954                         /* Yet again, we can't actually get a true value here, if everything else
955                          * is working as it should.
956                          */
957                         if (ourTS > TS)
958                         {
959                                 Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
960                                 chan->age = TS;
961                                 ourTS = TS;
962                         }
963                 }
964
965                 /* Free anything we have left to free */
966                 for (unsigned int f = 2; f < modectr; f++)
967                         free(mode_users[f]);
968         }
969         /* All done. That wasnt so bad was it, you can wipe
970          * the sweat from your forehead now. :-)
971          */
972         return true;
973 }
974
975 /** NICK command */
976 bool TreeSocket::IntroduceClient(const std::string &source, std::deque<std::string> &params)
977 {
978         /** Do we have enough parameters:
979          * NICK age nick host dhost ident +modes ip :gecos
980          */
981         if (params.size() != 8)
982         {
983                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+"?)");
984                 return true;
985         }
986
987         time_t age = atoi(params[0].c_str());
988         const char* tempnick = params[1].c_str();
989
990         /** Check parameters for validity before introducing the client, discovered by dmb.
991          * XXX: Can we make this neater?
992          */
993         if (!age)
994         {
995                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction (Invalid TS?)");
996                 return true;
997         }
998         else if (params[1].length() > NICKMAX)
999         {
1000                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+" > NICKMAX?)");
1001                 return true;
1002         }
1003         else if (params[2].length() > 64)
1004         {
1005                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[2]+" > 64?)");
1006                 return true;
1007         }
1008         else if (params[3].length() > 64)
1009         {
1010                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[3]+" > 64?)");
1011                 return true;
1012         }
1013         else if (params[4].length() > IDENTMAX)
1014         {
1015                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[4]+" > IDENTMAX?)");
1016                 return true;
1017         }
1018         else if (params[7].length() > MAXGECOS)
1019         {
1020                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[7]+" > MAXGECOS?)");
1021                 return true;
1022         }
1023
1024         /** Our client looks ok, lets introduce it now
1025          */
1026         Instance->Log(DEBUG,"New remote client %s",tempnick);
1027         user_hash::iterator iter = this->Instance->clientlist->find(tempnick);
1028
1029         if (iter != this->Instance->clientlist->end())
1030         {
1031                 /* nick collision */
1032                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+tempnick+" :Nickname collision");
1033                 userrec::QuitUser(this->Instance, iter->second, "Nickname collision");
1034                 return true;
1035         }
1036
1037         userrec* _new = new userrec(this->Instance);
1038         (*(this->Instance->clientlist))[tempnick] = _new;
1039         _new->SetFd(FD_MAGIC_NUMBER);
1040         strlcpy(_new->nick, tempnick,NICKMAX-1);
1041         strlcpy(_new->host, params[2].c_str(),63);
1042         strlcpy(_new->dhost, params[3].c_str(),63);
1043         _new->server = this->Instance->FindServerNamePtr(source.c_str());
1044         strlcpy(_new->ident, params[4].c_str(),IDENTMAX);
1045         strlcpy(_new->fullname, params[7].c_str(),MAXGECOS);
1046         _new->registered = REG_ALL;
1047         _new->signon = age;
1048
1049         /* we need to remove the + from the modestring, so we can do our stuff */
1050         std::string::size_type pos_after_plus = params[5].find_first_not_of('+');
1051         if (pos_after_plus != std::string::npos)
1052         params[5] = params[5].substr(pos_after_plus);
1053
1054         for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++)
1055         {
1056                 _new->modes[(*v)-65] = 1;
1057                 /* For each mode thats set, increase counter */
1058                 ModeHandler* mh = Instance->Modes->FindMode(*v, MODETYPE_USER);
1059                 if (mh)
1060                         mh->ChangeCount(1);
1061         }
1062
1063         /* now we've done with modes processing, put the + back for remote servers */
1064         params[5] = "+" + params[5];
1065
1066 #ifdef SUPPORT_IP6LINKS
1067         if (params[6].find_first_of(":") != std::string::npos)
1068                 _new->SetSockAddr(AF_INET6, params[6].c_str(), 0);
1069         else
1070 #endif
1071                 _new->SetSockAddr(AF_INET, params[6].c_str(), 0);
1072
1073         Instance->AddGlobalClone(_new);
1074
1075         if (!this->Instance->SilentULine(_new->server))
1076                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
1077
1078         params[7] = ":" + params[7];
1079         Utils->DoOneToAllButSender(source,"NICK", params, source);
1080
1081         // Increment the Source Servers User Count..
1082         TreeServer* SourceServer = Utils->FindServer(source);
1083         if (SourceServer)
1084         {
1085                 SourceServer->AddUserCount();
1086         }
1087
1088         FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
1089
1090         return true;
1091 }
1092
1093 /** Send one or more FJOINs for a channel of users.
1094  * If the length of a single line is more than 480-NICKMAX
1095  * in length, it is split over multiple lines.
1096  */
1097 void TreeSocket::SendFJoins(TreeServer* Current, chanrec* c)
1098 {
1099         std::string buffer;
1100         char list[MAXBUF];
1101         std::string individual_halfops = std::string(":")+this->Instance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age);
1102
1103         size_t dlen, curlen;
1104         dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1105         int numusers = 0;
1106         char* ptr = list + dlen;
1107
1108         CUList *ulist = c->GetUsers();
1109         std::string modes = "";
1110         std::string params = "";
1111
1112         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1113         {
1114                 // The first parameter gets a : before it
1115                 size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", c->GetAllPrefixChars(i->second), i->second->nick);
1116
1117                 curlen += ptrlen;
1118                 ptr += ptrlen;
1119
1120                 numusers++;
1121
1122                 if (curlen > (480-NICKMAX))
1123                 {
1124                         buffer.append(list).append("\r\n");
1125                         dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1126                         ptr = list + dlen;
1127                         ptrlen = 0;
1128                         numusers = 0;
1129                 }
1130         }
1131
1132         if (numusers)
1133                 buffer.append(list).append("\r\n");
1134
1135         /* Sorry for the hax. Because newly created channels assume +nt,
1136          * if this channel doesnt have +nt, explicitly send -n and -t for the missing modes.
1137          */
1138         bool inverted = false;
1139         if (!c->IsModeSet('n'))
1140         {
1141                 modes.append("-n");
1142                 inverted = true;
1143         }
1144         if (!c->IsModeSet('t'))
1145         {
1146                 modes.append("-t");
1147                 inverted = true;
1148         }
1149         if (inverted)
1150         {
1151                 modes.append("+");
1152         }
1153
1154         buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(c->ChanModes(true)).append("\r\n");
1155
1156         int linesize = 1;
1157         for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
1158         {
1159                 int size = strlen(b->data) + 2;
1160                 int currsize = linesize + size;
1161                 if (currsize <= 350)
1162                 {
1163                         modes.append("b");
1164                         params.append(" ").append(b->data);
1165                         linesize += size; 
1166                 }
1167                 if ((params.length() >= MAXMODES) || (currsize > 350))
1168                 {
1169                         /* Wrap at MAXMODES */
1170                         buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params).append("\r\n");
1171                         modes = "";
1172                         params = "";
1173                         linesize = 1;
1174                 }
1175         }
1176
1177         /* Only send these if there are any */
1178         if (!modes.empty())
1179                 buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params);
1180
1181         this->WriteLine(buffer);
1182 }
1183
1184 /** Send G, Q, Z and E lines */
1185 void TreeSocket::SendXLines(TreeServer* Current)
1186 {
1187         char data[MAXBUF];
1188         std::string buffer;
1189         std::string n = this->Instance->Config->ServerName;
1190         const char* sn = n.c_str();
1191         /* Yes, these arent too nice looking, but they get the job done */
1192         for (std::vector<ZLine*>::iterator i = Instance->XLines->zlines.begin(); i != Instance->XLines->zlines.end(); i++)
1193         {
1194                 snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s\r\n",sn,(*i)->ipaddr,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1195                 buffer.append(data);
1196         }
1197         for (std::vector<QLine*>::iterator i = Instance->XLines->qlines.begin(); i != Instance->XLines->qlines.end(); i++)
1198         {
1199                 snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s\r\n",sn,(*i)->nick,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1200                 buffer.append(data);
1201         }
1202         for (std::vector<GLine*>::iterator i = Instance->XLines->glines.begin(); i != Instance->XLines->glines.end(); i++)
1203         {
1204                 snprintf(data,MAXBUF,":%s ADDLINE G %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1205                 buffer.append(data);
1206         }
1207         for (std::vector<ELine*>::iterator i = Instance->XLines->elines.begin(); i != Instance->XLines->elines.end(); i++)
1208         {
1209                 snprintf(data,MAXBUF,":%s ADDLINE E %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1210                 buffer.append(data);
1211         }
1212         for (std::vector<ZLine*>::iterator i = Instance->XLines->pzlines.begin(); i != Instance->XLines->pzlines.end(); i++)
1213         {
1214                 snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s\r\n",sn,(*i)->ipaddr,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1215                 buffer.append(data);
1216         }
1217         for (std::vector<QLine*>::iterator i = Instance->XLines->pqlines.begin(); i != Instance->XLines->pqlines.end(); i++)
1218         {
1219                 snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s\r\n",sn,(*i)->nick,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1220                 buffer.append(data);
1221         }
1222         for (std::vector<GLine*>::iterator i = Instance->XLines->pglines.begin(); i != Instance->XLines->pglines.end(); i++)
1223         {
1224                 snprintf(data,MAXBUF,":%s ADDLINE G %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1225                 buffer.append(data);
1226         }
1227         for (std::vector<ELine*>::iterator i = Instance->XLines->pelines.begin(); i != Instance->XLines->pelines.end(); i++)
1228         {
1229                 snprintf(data,MAXBUF,":%s ADDLINE E %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1230                 buffer.append(data);
1231         }
1232
1233         if (!buffer.empty())
1234                 this->WriteLine(buffer);
1235 }
1236
1237 /** Send channel modes and topics */
1238 void TreeSocket::SendChannelModes(TreeServer* Current)
1239 {
1240         char data[MAXBUF];
1241         std::deque<std::string> list;
1242         std::string n = this->Instance->Config->ServerName;
1243         const char* sn = n.c_str();
1244         for (chan_hash::iterator c = this->Instance->chanlist->begin(); c != this->Instance->chanlist->end(); c++)
1245         {
1246                 SendFJoins(Current, c->second);
1247                 if (*c->second->topic)
1248                 {
1249                         snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
1250                         this->WriteLine(data);
1251                 }
1252                 FOREACH_MOD_I(this->Instance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
1253                 list.clear();
1254                 c->second->GetExtList(list);
1255                 for (unsigned int j = 0; j < list.size(); j++)
1256                 {
1257                         FOREACH_MOD_I(this->Instance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
1258                 }
1259         }
1260 }
1261
1262 /** send all users and their oper state/modes */
1263 void TreeSocket::SendUsers(TreeServer* Current)
1264 {
1265         char data[MAXBUF];
1266         std::deque<std::string> list;
1267         std::string dataline;
1268         for (user_hash::iterator u = this->Instance->clientlist->begin(); u != this->Instance->clientlist->end(); u++)
1269         {
1270                 if (u->second->registered == REG_ALL)
1271                 {
1272                         snprintf(data,MAXBUF,":%s NICK %lu %s %s %s %s +%s %s :%s",u->second->server,(unsigned long)u->second->age,u->second->nick,u->second->host,u->second->dhost,u->second->ident,u->second->FormatModes(),u->second->GetIPString(),u->second->fullname);
1273                         this->WriteLine(data);
1274                         if (*u->second->oper)
1275                         {
1276                                 snprintf(data,MAXBUF,":%s OPERTYPE %s", u->second->nick, u->second->oper);
1277                                 this->WriteLine(data);
1278                         }
1279                         if (*u->second->awaymsg)
1280                         {
1281                                 snprintf(data,MAXBUF,":%s AWAY :%s", u->second->nick, u->second->awaymsg);
1282                                 this->WriteLine(data);
1283                         }
1284                         FOREACH_MOD_I(this->Instance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
1285                         list.clear();
1286                         u->second->GetExtList(list);
1287
1288                         for (unsigned int j = 0; j < list.size(); j++)
1289                         {
1290                                 FOREACH_MOD_I(this->Instance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
1291                         }
1292                 }
1293         }
1294 }
1295
1296 /** This function is called when we want to send a netburst to a local
1297  * server. There is a set order we must do this, because for example
1298  * users require their servers to exist, and channels require their
1299  * users to exist. You get the idea.
1300  */
1301 void TreeSocket::DoBurst(TreeServer* s)
1302 {
1303         std::string name = s->GetName();
1304         std::string burst = "BURST "+ConvToStr(Instance->Time(true));
1305         std::string endburst = "ENDBURST";
1306         this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s).", name.c_str(), this->GetTheirChallenge().empty() ? "plaintext password" : "SHA256-HMAC challenge-response");
1307         this->WriteLine(burst);
1308         /* send our version string */
1309         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" VERSION :"+this->Instance->GetVersionString());
1310         /* Send server tree */
1311         this->SendServers(Utils->TreeRoot,s,1);
1312         /* Send users and their oper status */
1313         this->SendUsers(s);
1314         /* Send everything else (channel modes, xlines etc) */
1315         this->SendChannelModes(s);
1316         this->SendXLines(s);
1317         FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
1318         this->WriteLine(endburst);
1319         this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
1320 }
1321
1322 /** This function is called when we receive data from a remote
1323  * server. We buffer the data in a std::string (it doesnt stay
1324  * there for long), reading using InspSocket::Read() which can
1325  * read up to 16 kilobytes in one operation.
1326  *
1327  * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
1328  * THE SOCKET OBJECT FOR US.
1329  */
1330 bool TreeSocket::OnDataReady()
1331 {
1332         char* data = this->Read();
1333         /* Check that the data read is a valid pointer and it has some content */
1334         if (data && *data)
1335         {
1336                 this->in_buffer.append(data);
1337                 /* While there is at least one new line in the buffer,
1338                  * do something useful (we hope!) with it.
1339                  */
1340                 while (in_buffer.find("\n") != std::string::npos)
1341                 {
1342                         std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
1343                         in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
1344                         /* Use rfind here not find, as theres more
1345                          * chance of the \r being near the end of the
1346                          * string, not the start.
1347                          */
1348                         if (ret.find("\r") != std::string::npos)
1349                                 ret = in_buffer.substr(0,in_buffer.find("\r")-1);
1350                         /* Process this one, abort if it
1351                          * didnt return true.
1352                          */
1353                         if (!this->ProcessLine(ret))
1354                         {
1355                                 return false;
1356                         }
1357                 }
1358                 return true;
1359         }
1360         /* EAGAIN returns an empty but non-NULL string, so this
1361          * evaluates to TRUE for EAGAIN but to FALSE for EOF.
1362          */
1363         return (data && !*data);
1364 }
1365