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