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