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