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