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