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