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