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