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