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