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