]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/treesocket2.cpp
Make debug warning for broken servers once per servername only
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treesocket2.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 "socketengine.h"
26
27 #include "m_spanningtree/main.h"
28 #include "m_spanningtree/utils.h"
29 #include "m_spanningtree/treeserver.h"
30 #include "m_spanningtree/link.h"
31 #include "m_spanningtree/treesocket.h"
32 #include "m_spanningtree/resolvers.h"
33 #include "m_spanningtree/handshaketimer.h"
34
35 /* $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 */
36
37 int TreeSocket::WriteLine(std::string line)
38 {
39         Instance->Log(DEBUG, "-> %s", line.c_str());
40         line.append("\r\n");
41         return this->Write(line);
42 }
43
44
45 /* Handle ERROR command */
46 bool TreeSocket::Error(std::deque<std::string> &params)
47 {
48         if (params.size() < 1)
49                 return false;
50         this->Instance->SNO->WriteToSnoMask('l',"ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
51         /* we will return false to cause the socket to close. */
52         return false;
53 }
54
55 bool TreeSocket::Modules(const std::string &prefix, std::deque<std::string> &params)
56 {
57         if (params.empty())
58                 return true;
59
60         if (!this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
61         {
62                 /* Pass it on, not for us */
63                 Utils->DoOneToOne(prefix, "MODULES", params, params[0]);
64                 return true;
65         }
66
67         char strbuf[MAXBUF];
68         std::deque<std::string> par;
69         par.push_back(prefix);
70         par.push_back("");
71
72         userrec* source = this->Instance->FindNick(prefix);
73         if (!source)
74                 return true;
75
76         for (unsigned int i = 0; i < Instance->Config->module_names.size(); i++)
77         {
78                 Version V = Instance->modules[i]->GetVersion();
79                 char modulename[MAXBUF];
80                 char flagstate[MAXBUF];
81                 *flagstate = 0;
82                 if (V.Flags & VF_STATIC)
83                         strlcat(flagstate,", static",MAXBUF);
84                 if (V.Flags & VF_VENDOR)
85                         strlcat(flagstate,", vendor",MAXBUF);
86                 if (V.Flags & VF_COMMON)
87                         strlcat(flagstate,", common",MAXBUF);
88                 if (V.Flags & VF_SERVICEPROVIDER)
89                         strlcat(flagstate,", service provider",MAXBUF);
90                 if (!flagstate[0])
91                         strcpy(flagstate,"  <no flags>");
92                 strlcpy(modulename,Instance->Config->module_names[i].c_str(),256);
93                 if (*source->oper)
94                 {
95                         snprintf(strbuf, MAXBUF, "::%s 900 %s :0x%08lx %d.%d.%d.%d %s (%s)",Instance->Config->ServerName,source->nick,(long unsigned int)Instance->modules[i],V.Major,V.Minor,V.Revision,V.Build,ServerConfig::CleanFilename(modulename),flagstate+2);
96                 }
97                 else
98                 {
99                         snprintf(strbuf, MAXBUF, "::%s 900 %s :%s",Instance->Config->ServerName,source->nick,ServerConfig::CleanFilename(modulename));
100                 }
101                 par[1] = strbuf;
102                 Utils->DoOneToOne(Instance->Config->ServerName, "PUSH", par, source->server);
103         }
104         snprintf(strbuf, MAXBUF, "::%s 901 %s :End of MODULES list", Instance->Config->ServerName, source->nick);
105         par[1] = strbuf;
106         Utils->DoOneToOne(Instance->Config->ServerName, "PUSH", par, source->server);
107         return true;
108 }
109
110 /** remote MOTD. leet, huh? */
111 bool TreeSocket::Motd(const std::string &prefix, std::deque<std::string> &params)
112 {
113         if (params.size() > 0)
114         {
115                 if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
116                 {
117                         /* It's for our server */
118                         string_list results;
119                         userrec* source = this->Instance->FindNick(prefix);
120
121                         if (source)
122                         {
123                                 std::deque<std::string> par;
124                                 par.push_back(prefix);
125                                 par.push_back("");
126
127                                 if (!Instance->Config->MOTD.size())
128                                 {
129                                         par[1] = std::string("::")+Instance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
130                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
131                                         return true;
132                                 }
133
134                                 par[1] = std::string("::")+Instance->Config->ServerName+" 375 "+source->nick+" :"+Instance->Config->ServerName+" message of the day";
135                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
136
137                                 for (unsigned int i = 0; i < Instance->Config->MOTD.size(); i++)
138                                 {
139                                         par[1] = std::string("::")+Instance->Config->ServerName+" 372 "+source->nick+" :- "+Instance->Config->MOTD[i];
140                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
141                                 }
142
143                                 par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
144                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
145                         }
146                 }
147                 else
148                 {
149                         /* Pass it on */
150                         userrec* source = this->Instance->FindNick(prefix);
151                         if (source)
152                                 Utils->DoOneToOne(prefix, "MOTD", params, params[0]);
153                 }
154         }
155         return true;
156 }
157
158 /** remote ADMIN. leet, huh? */
159 bool TreeSocket::Admin(const std::string &prefix, std::deque<std::string> &params)
160 {
161         if (params.size() > 0)
162         {
163                 if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
164                 {
165                         /* It's for our server */
166                         string_list results;
167                         userrec* source = this->Instance->FindNick(prefix);
168                         if (source)
169                         {
170                                 std::deque<std::string> par;
171                                 par.push_back(prefix);
172                                 par.push_back("");
173                                 par[1] = std::string("::")+Instance->Config->ServerName+" 256 "+source->nick+" :Administrative info for "+Instance->Config->ServerName;
174                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
175                                 par[1] = std::string("::")+Instance->Config->ServerName+" 257 "+source->nick+" :Name     - "+Instance->Config->AdminName;
176                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
177                                 par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :Nickname - "+Instance->Config->AdminNick;
178                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
179                                 par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :E-Mail   - "+Instance->Config->AdminEmail;
180                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
181                         }
182                 }
183                 else
184                 {
185                         /* Pass it on */
186                         userrec* source = this->Instance->FindNick(prefix);
187                         if (source)
188                                 Utils->DoOneToOne(prefix, "ADMIN", params, params[0]);
189                 }
190         }
191         return true;
192 }
193
194 bool TreeSocket::Stats(const std::string &prefix, std::deque<std::string> &params)
195 {
196         /* Get the reply to a STATS query if it matches this servername,
197          * and send it back as a load of PUSH queries
198          */
199         if (params.size() > 1)
200         {
201                 if (this->Instance->MatchText(this->Instance->Config->ServerName, params[1]))
202                 {
203                         /* It's for our server */
204                         string_list results;
205                         userrec* source = this->Instance->FindNick(prefix);
206                         if (source)
207                         {
208                                 std::deque<std::string> par;
209                                 par.push_back(prefix);
210                                 par.push_back("");
211                                 DoStats(this->Instance, *(params[0].c_str()), source, results);
212                                 for (size_t i = 0; i < results.size(); i++)
213                                 {
214                                         par[1] = "::" + results[i];
215                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
216                                 }
217                         }
218                 }
219                 else
220                 {
221                         /* Pass it on */
222                         userrec* source = this->Instance->FindNick(prefix);
223                         if (source)
224                                 Utils->DoOneToOne(prefix, "STATS", params, params[1]);
225                 }
226         }
227         return true;
228 }
229
230
231 /** Because the core won't let users or even SERVERS set +o,
232  * we use the OPERTYPE command to do this.
233  */
234 bool TreeSocket::OperType(const std::string &prefix, std::deque<std::string> &params)
235 {
236         if (params.size() != 1)
237                 return true;
238         std::string opertype = params[0];
239         userrec* u = this->Instance->FindNick(prefix);
240         if (u)
241         {
242                 u->modes[UM_OPERATOR] = 1;
243                 this->Instance->all_opers.push_back(u);
244                 strlcpy(u->oper,opertype.c_str(),NICKMAX-1);
245                 Utils->DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
246                 this->Instance->SNO->WriteToSnoMask('o',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server, u->nick,u->ident,u->host,irc::Spacify(opertype.c_str()));
247         }
248         return true;
249 }
250
251 /** Because Andy insists that services-compatible servers must
252  * implement SVSNICK and SVSJOIN, that's exactly what we do :p
253  */
254 bool TreeSocket::ForceNick(const std::string &prefix, std::deque<std::string> &params)
255 {
256         if (params.size() < 3)
257                 return true;
258
259         userrec* u = this->Instance->FindNick(params[0]);
260
261         if (u)
262         {
263                 Utils->DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
264                 if (IS_LOCAL(u))
265                 {
266                         std::deque<std::string> par;
267                         par.push_back(params[1]);
268                         if (!u->ForceNickChange(params[1].c_str()))
269                         {
270                                 userrec::QuitUser(this->Instance, u, "Nickname collision");
271                                 return true;
272                         }
273                         u->age = atoi(params[2].c_str());
274                 }
275         }
276         return true;
277 }
278
279 bool TreeSocket::OperQuit(const std::string &prefix, std::deque<std::string> &params)
280 {
281         if (params.size() < 1)
282                 return true;
283
284         userrec* u = this->Instance->FindNick(prefix);
285
286         if (u)
287         {
288                 Utils->DoOneToAllButSender(prefix,"OPERQUIT",params,prefix);
289                 u->SetOperQuit(params[0]);
290         }
291         return true;
292 }
293
294 /*
295  * Remote SQUIT (RSQUIT). Routing works similar to SVSNICK: Route it to the server that the target is connected to locally,
296  * then let that server do the dirty work (squit it!). Example:
297  * A -> B -> C -> D: oper on A squits D, A routes to B, B routes to C, C notices D connected locally, kills it. -- w00t
298  */
299 bool TreeSocket::RemoteSquit(const std::string &prefix, std::deque<std::string> &params)
300 {
301         /* ok.. :w00t RSQUIT jupe.barafranca.com :reason here */
302         if (params.size() < 2)
303                 return true;
304
305         TreeServer* s = Utils->FindServerMask(params[0]);
306
307         if (s)
308         {
309                 if (s == Utils->TreeRoot)
310                 {
311                         this->Instance->SNO->WriteToSnoMask('l',"What the fuck, I recieved a remote SQUIT for myself? :< (from %s", prefix.c_str());
312                         return true;
313                 }
314
315                 TreeSocket* sock = s->GetSocket();
316
317                 if (sock)
318                 {
319                         /* it's locally connected, KILL IT! */
320                         Instance->SNO->WriteToSnoMask('l',"RSQUIT: Server \002%s\002 removed from network by %s: %s", params[0].c_str(), prefix.c_str(), params[1].c_str());
321                         sock->Squit(s,"Server quit by " + prefix + ": " + params[1]);
322                         Instance->SE->DelFd(sock);
323                         sock->Close();
324                         delete sock;
325                 }
326                 else
327                 {
328                         /* route the rsquit */
329                         params[1] = ":" + params[1];
330                         Utils->DoOneToOne(prefix, "RSQUIT", params, params[0]);
331                 }
332         }
333         else
334         {
335                 /* mother fucker! it doesn't exist */
336         }
337
338         return true;
339 }
340
341 bool TreeSocket::ServiceJoin(const std::string &prefix, std::deque<std::string> &params)
342 {
343         if (params.size() < 2)
344                 return true;
345
346         userrec* u = this->Instance->FindNick(params[0]);
347
348         if (u)
349         {
350                 /* only join if it's local, otherwise just pass it on! */
351                 if (IS_LOCAL(u))
352                         chanrec::JoinUser(this->Instance, u, params[1].c_str(), false, "", Instance->Time());
353                 Utils->DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
354         }
355         return true;
356 }
357
358 bool TreeSocket::RemoteRehash(const std::string &prefix, std::deque<std::string> &params)
359 {
360         if (params.size() < 1)
361                 return false;
362
363         std::string servermask = params[0];
364
365         if (this->Instance->MatchText(this->Instance->Config->ServerName,servermask))
366         {
367                 this->Instance->SNO->WriteToSnoMask('l',"Remote rehash initiated by \002"+prefix+"\002.");
368                 this->Instance->RehashServer();
369                 Utils->ReadConfiguration(false);
370                 InitializeDisabledCommands(Instance->Config->DisabledCommands, Instance);
371         }
372         Utils->DoOneToAllButSender(prefix,"REHASH",params,prefix);
373         return true;
374 }
375
376 bool TreeSocket::RemoteKill(const std::string &prefix, std::deque<std::string> &params)
377 {
378         if (params.size() != 2)
379                 return true;
380
381         std::string nick = params[0];
382         userrec* u = this->Instance->FindNick(prefix);
383         userrec* who = this->Instance->FindNick(nick);
384
385         if (who)
386         {
387                 /* Prepend kill source, if we don't have one */
388                 std::string sourceserv = prefix;
389                 if (u)
390                 {
391                         sourceserv = u->server;
392                 }
393                 if (*(params[1].c_str()) != '[')
394                 {
395                         params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
396                 }
397                 std::string reason = params[1];
398                 params[1] = ":" + params[1];
399                 Utils->DoOneToAllButSender(prefix,"KILL",params,sourceserv);
400                 who->Write(":%s KILL %s :%s (%s)", sourceserv.c_str(), who->nick, sourceserv.c_str(), reason.c_str());
401                 userrec::QuitUser(this->Instance,who,reason);
402         }
403         return true;
404 }
405
406 bool TreeSocket::LocalPong(const std::string &prefix, std::deque<std::string> &params)
407 {
408         if (params.size() < 1)
409                 return true;
410
411         if (params.size() == 1)
412         {
413                 TreeServer* ServerSource = Utils->FindServer(prefix);
414                 if (ServerSource)
415                 {
416                         ServerSource->SetPingFlag();
417                         ServerSource->rtt = Instance->Time() - ServerSource->LastPing;
418                 }
419         }
420         else
421         {
422                 std::string forwardto = params[1];
423                 if (forwardto == this->Instance->Config->ServerName)
424                 {
425                         /*
426                          * this is a PONG for us
427                          * if the prefix is a user, check theyre local, and if they are,
428                          * dump the PONG reply back to their fd. If its a server, do nowt.
429                          * Services might want to send these s->s, but we dont need to yet.
430                          */
431                         userrec* u = this->Instance->FindNick(prefix);
432                         if (u)
433                         {
434                                 u->WriteServ("PONG %s %s",params[0].c_str(),params[1].c_str());
435                         }
436                 }
437                 else
438                 {
439                         // not for us, pass it on :)
440                         Utils->DoOneToOne(prefix,"PONG",params,forwardto);
441                 }
442         }
443
444         return true;
445 }
446
447 bool TreeSocket::MetaData(const std::string &prefix, std::deque<std::string> &params)
448 {
449         if (params.size() < 2)
450                 return true;
451         else if (params.size() < 3)
452                 params.push_back("");
453         TreeServer* ServerSource = Utils->FindServer(prefix);
454         if (ServerSource)
455         {
456                 if (params[0] == "*")
457                 {
458                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
459                 }
460                 else if (*(params[0].c_str()) == '#')
461                 {
462                         chanrec* c = this->Instance->FindChan(params[0]);
463                         if (c)
464                         {
465                                 FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
466                         }
467                 }
468                 else if (*(params[0].c_str()) != '#')
469                 {
470                         userrec* u = this->Instance->FindNick(params[0]);
471                         if (u)
472                         {
473                                 FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
474                         }
475                 }
476         }
477
478         params[2] = ":" + params[2];
479         Utils->DoOneToAllButSender(prefix,"METADATA",params,prefix);
480         return true;
481 }
482
483 bool TreeSocket::ServerVersion(const std::string &prefix, std::deque<std::string> &params)
484 {
485         if (params.size() < 1)
486                 return true;
487
488         TreeServer* ServerSource = Utils->FindServer(prefix);
489
490         if (ServerSource)
491         {
492                 ServerSource->SetVersion(params[0]);
493         }
494         params[0] = ":" + params[0];
495         Utils->DoOneToAllButSender(prefix,"VERSION",params,prefix);
496         return true;
497 }
498
499 bool TreeSocket::ChangeHost(const std::string &prefix, std::deque<std::string> &params)
500 {
501         if (params.size() < 1)
502                 return true;
503         userrec* u = this->Instance->FindNick(prefix);
504
505         if (u)
506         {
507                 u->ChangeDisplayedHost(params[0].c_str());
508                 Utils->DoOneToAllButSender(prefix,"FHOST",params,u->server);
509         }
510         return true;
511 }
512
513 bool TreeSocket::AddLine(const std::string &prefix, std::deque<std::string> &params)
514 {
515         if (params.size() < 6)
516                 return true;
517         bool propogate = false;
518         if (!this->bursting)
519                 Utils->lines_to_apply = 0;
520         switch (*(params[0].c_str()))
521         {
522                 case 'Z':
523                         propogate = Instance->XLines->add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
524                         Instance->XLines->zline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
525                         if (propogate)
526                                 Utils->lines_to_apply |= APPLY_ZLINES;
527                 break;
528                 case 'Q':
529                         propogate = Instance->XLines->add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
530                         Instance->XLines->qline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
531                         if (propogate)
532                                 Utils->lines_to_apply |= APPLY_QLINES;
533                 break;
534                 case 'E':
535                         propogate = Instance->XLines->add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
536                         Instance->XLines->eline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
537                 break;
538                 case 'G':
539                         propogate = Instance->XLines->add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
540                         Instance->XLines->gline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
541                         if (propogate)
542                                 Utils->lines_to_apply |= APPLY_GLINES;
543                 break;
544                 case 'K':
545                         propogate = Instance->XLines->add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
546                         if (propogate)
547                                 Utils->lines_to_apply |= APPLY_KLINES;
548                 break;
549                 default:
550                         /* Just in case... */
551                         this->Instance->SNO->WriteToSnoMask('x',"\2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
552                         propogate = false;
553                 break;
554         }
555         /* Send it on its way */
556         if (propogate)
557         {
558                 if (atoi(params[4].c_str()))
559                 {
560                         time_t c_requires_crap = ConvToInt(params[4]) + Instance->Time();
561                         this->Instance->SNO->WriteToSnoMask('x',"%s Added %cLINE on %s to expire on %s (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),Instance->TimeString(c_requires_crap).c_str(),params[5].c_str());
562                 }
563                 else
564                 {
565                         this->Instance->SNO->WriteToSnoMask('x',"%s Added permenant %cLINE on %s (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),params[5].c_str());
566                 }
567                 params[5] = ":" + params[5];
568                 Utils->DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
569         }
570         if (!this->bursting)
571         {
572                 Instance->XLines->apply_lines(Utils->lines_to_apply);
573                 Utils->lines_to_apply = 0;
574         }
575         return true;
576 }
577
578 bool TreeSocket::ChangeName(const std::string &prefix, std::deque<std::string> &params)
579 {
580         if (params.size() < 1)
581                 return true;
582         userrec* u = this->Instance->FindNick(prefix);
583         if (u)
584         {
585                 u->ChangeName(params[0].c_str());
586                 params[0] = ":" + params[0];
587                 Utils->DoOneToAllButSender(prefix,"FNAME",params,u->server);
588         }
589         return true;
590 }
591
592 bool TreeSocket::Whois(const std::string &prefix, std::deque<std::string> &params)
593 {
594         if (params.size() < 1)
595                 return true;
596         userrec* u = this->Instance->FindNick(prefix);
597         if (u)
598         {
599                 // an incoming request
600                 if (params.size() == 1)
601                 {
602                         userrec* x = this->Instance->FindNick(params[0]);
603                         if ((x) && (IS_LOCAL(x)))
604                         {
605                                 userrec* x = this->Instance->FindNick(params[0]);
606                                 char signon[MAXBUF];
607                                 char idle[MAXBUF];
608                                 snprintf(signon, MAXBUF, "%lu", (unsigned long)x->signon);
609                                 snprintf(idle, MAXBUF, "%lu", (unsigned long)abs((x->idle_lastmsg) - Instance->Time(true)));
610                                 std::deque<std::string> par;
611                                 par.push_back(prefix);
612                                 par.push_back(signon);
613                                 par.push_back(idle);
614                                 // ours, we're done, pass it BACK
615                                 Utils->DoOneToOne(params[0], "IDLE", par, u->server);
616                         }
617                         else
618                         {
619                                 // not ours pass it on
620                                 if (x)
621                                         Utils->DoOneToOne(prefix, "IDLE", params, x->server);
622                         }
623                 }
624                 else if (params.size() == 3)
625                 {
626                         std::string who_did_the_whois = params[0];
627                         userrec* who_to_send_to = this->Instance->FindNick(who_did_the_whois);
628                         if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
629                         {
630                                 // an incoming reply to a whois we sent out
631                                 std::string nick_whoised = prefix;
632                                 unsigned long signon = atoi(params[1].c_str());
633                                 unsigned long idle = atoi(params[2].c_str());
634                                 if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
635                                 {
636                                         do_whois(this->Instance, who_to_send_to, u, signon, idle, nick_whoised.c_str());
637                                 }
638                         }
639                         else
640                         {
641                                 // not ours, pass it on
642                                 if (who_to_send_to)
643                                         Utils->DoOneToOne(prefix, "IDLE", params, who_to_send_to->server);
644                         }
645                 }
646         }
647         return true;
648 }
649
650 bool TreeSocket::Push(const std::string &prefix, std::deque<std::string> &params)
651 {
652         if (params.size() < 2)
653                 return true;
654         userrec* u = this->Instance->FindNick(params[0]);
655         if (!u)
656                 return true;
657         if (IS_LOCAL(u))
658         {
659                 u->Write(params[1]);
660         }
661         else
662         {
663                 // continue the raw onwards
664                 params[1] = ":" + params[1];
665                 Utils->DoOneToOne(prefix,"PUSH",params,u->server);
666         }
667         return true;
668 }
669
670 bool TreeSocket::HandleSetTime(const std::string &prefix, std::deque<std::string> &params)
671 {
672         if (!params.size() || !Utils->EnableTimeSync)
673                 return true;
674
675         bool force = false;
676
677         if ((params.size() == 2) && (params[1] == "FORCE"))
678                 force = true;
679
680         time_t them = atoi(params[0].c_str());
681         time_t us = Instance->Time(false);
682
683         time_t diff = them - us;
684
685         Utils->DoOneToAllButSender(prefix, "TIMESET", params, prefix);
686
687         if (force || (them != us))
688         {
689                 time_t old = Instance->SetTimeDelta(diff);
690                 Instance->Log(DEBUG, "TS (diff %d) from %s applied (old delta was %d)", diff, prefix.c_str(), old);
691         }
692
693         return true;
694 }
695
696 bool TreeSocket::Time(const std::string &prefix, std::deque<std::string> &params)
697 {
698         // :source.server TIME remote.server sendernick
699         // :remote.server TIME source.server sendernick TS
700         if (params.size() == 2)
701         {
702                 // someone querying our time?
703                 if (this->Instance->Config->ServerName == params[0])
704                 {
705                         userrec* u = this->Instance->FindNick(params[1]);
706                         if (u)
707                         {
708                                 params.push_back(ConvToStr(Instance->Time(false)));
709                                 params[0] = prefix;
710                                 Utils->DoOneToOne(this->Instance->Config->ServerName,"TIME",params,params[0]);
711                         }
712                 }
713                 else
714                 {
715                         // not us, pass it on
716                         userrec* u = this->Instance->FindNick(params[1]);
717                         if (u)
718                                 Utils->DoOneToOne(prefix,"TIME",params,params[0]);
719                 }
720         }
721         else if (params.size() == 3)
722         {
723                 // a response to a previous TIME
724                 userrec* u = this->Instance->FindNick(params[1]);
725                 if ((u) && (IS_LOCAL(u)))
726                 {
727                         time_t rawtime = atol(params[2].c_str());
728                         struct tm * timeinfo;
729                         timeinfo = localtime(&rawtime);
730                         char tms[26];
731                         snprintf(tms,26,"%s",asctime(timeinfo));
732                         tms[24] = 0;
733                         u->WriteServ("391 %s %s :%s",u->nick,prefix.c_str(),tms);
734                 }
735                 else
736                 {
737                         if (u)
738                                 Utils->DoOneToOne(prefix,"TIME",params,u->server);
739                 }
740         }
741         return true;
742 }
743
744 bool TreeSocket::LocalPing(const std::string &prefix, std::deque<std::string> &params)
745 {
746         if (params.size() < 1)
747                 return true;
748         if (params.size() == 1)
749         {
750                 std::string stufftobounce = params[0];
751                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" PONG "+stufftobounce);
752                 return true;
753         }
754         else
755         {
756                 std::string forwardto = params[1];
757                 if (forwardto == this->Instance->Config->ServerName)
758                 {
759                         // this is a ping for us, send back PONG to the requesting server
760                         params[1] = params[0];
761                         params[0] = forwardto;
762                         Utils->DoOneToOne(forwardto,"PONG",params,params[1]);
763                 }
764                 else
765                 {
766                         // not for us, pass it on :)
767                         Utils->DoOneToOne(prefix,"PING",params,forwardto);
768                 }
769                 return true;
770         }
771 }
772
773 /** TODO: This creates a total mess of output and needs to really use irc::modestacker.
774  */
775 bool TreeSocket::RemoveStatus(const std::string &prefix, std::deque<std::string> &params)
776 {
777         if (params.size() < 1)
778                 return true;
779         chanrec* c = Instance->FindChan(params[0]);
780         if (c)
781         {
782                 for (char modeletter = 'A'; modeletter <= 'z'; modeletter++)
783                 {
784                         ModeHandler* mh = Instance->Modes->FindMode(modeletter, MODETYPE_CHANNEL);
785                         if (mh)
786                                 mh->RemoveMode(c);
787                 }
788         }
789         return true;
790 }
791
792 bool TreeSocket::RemoteServer(const std::string &prefix, std::deque<std::string> &params)
793 {
794         if (params.size() < 4)
795                 return false;
796         std::string servername = params[0];
797         std::string password = params[1];
798         // hopcount is not used for a remote server, we calculate this ourselves
799         std::string description = params[3];
800         TreeServer* ParentOfThis = Utils->FindServer(prefix);
801         if (!ParentOfThis)
802         {
803                 this->SendError("Protocol error - Introduced remote server from unknown server "+prefix);
804                 return false;
805         }
806         TreeServer* CheckDupe = Utils->FindServer(servername);
807         if (CheckDupe)
808         {
809                 this->SendError("Server "+servername+" already exists!");
810                 this->Instance->SNO->WriteToSnoMask('l',"Server \2"+servername+"\2 being introduced from \2" + prefix + "\2 denied, already exists. Closing link with " + prefix);
811                 return false;
812         }
813         Link* lnk = Utils->FindLink(servername);
814         TreeServer* Node = new TreeServer(this->Utils,this->Instance,servername,description,ParentOfThis,NULL, lnk ? lnk->Hidden : false);
815         ParentOfThis->AddChild(Node);
816         params[3] = ":" + params[3];
817         Utils->DoOneToAllButSender(prefix,"SERVER",params,prefix);
818         this->Instance->SNO->WriteToSnoMask('l',"Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
819         return true;
820 }
821
822 bool TreeSocket::ComparePass(const std::string &ours, const std::string &theirs)
823 {
824         if ((!strncmp(ours.c_str(), "HMAC-SHA256:", 12)) || (!strncmp(theirs.c_str(), "HMAC-SHA256:", 12)))
825         {
826                 /* One or both of us specified hmac sha256, but we don't have sha256 module loaded!
827                  * We can't allow this password as valid.
828                  */
829                 if (!Instance->FindModule("m_sha256.so") || !Utils->ChallengeResponse)
830                                 return false;
831                 else
832                         /* Straight string compare of hashes */
833                         return ours == theirs;
834         }
835         else
836                 /* Straight string compare of plaintext */
837                 return ours == theirs;
838 }
839
840 bool TreeSocket::Outbound_Reply_Server(std::deque<std::string> &params)
841 {
842         if (params.size() < 4)
843                 return false;
844
845         irc::string servername = params[0].c_str();
846         std::string sname = params[0];
847         std::string password = params[1];
848         std::string description = params[3];
849         int hops = atoi(params[2].c_str());
850
851         this->InboundServerName = sname;
852         this->InboundDescription = description;
853
854         if (hops)
855         {
856                 this->SendError("Server too far away for authentication");
857                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
858                 return false;
859         }
860
861         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
862         {
863                 if ((x->Name == servername) && ((ComparePass(this->MakePass(x->RecvPass,this->GetOurChallenge()),password)) || (x->RecvPass == password && (this->GetTheirChallenge().empty()))))
864                 {
865                         TreeServer* CheckDupe = Utils->FindServer(sname);
866                         if (CheckDupe)
867                         {
868                                 this->SendError("Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
869                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
870                                 return false;
871                         }
872                         // Begin the sync here. this kickstarts the
873                         // other side, waiting in WAIT_AUTH_2 state,
874                         // into starting their burst, as it shows
875                         // that we're happy.
876                         this->LinkState = CONNECTED;
877                         // we should add the details of this server now
878                         // to the servers tree, as a child of the root
879                         // node.
880                         TreeServer* Node = new TreeServer(this->Utils,this->Instance,sname,description,Utils->TreeRoot,this,x->Hidden);
881                         Utils->TreeRoot->AddChild(Node);
882                         params[3] = ":" + params[3];
883                         Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,sname);
884                         this->bursting = true;
885                         this->DoBurst(Node);
886                         return true;
887                 }
888         }
889         this->SendError("Invalid credentials");
890         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
891         return false;
892 }
893
894 bool TreeSocket::Inbound_Server(std::deque<std::string> &params)
895 {
896         if (params.size() < 4)
897                 return false;
898         irc::string servername = params[0].c_str();
899         std::string sname = params[0];
900         std::string password = params[1];
901         std::string description = params[3];
902         int hops = atoi(params[2].c_str());
903
904         this->InboundServerName = sname;
905         this->InboundDescription = description;
906
907         if (hops)
908         {
909                 this->SendError("Server too far away for authentication");
910                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
911                 return false;
912         }
913
914         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
915         {
916                 if ((x->Name == servername) && ((ComparePass(this->MakePass(x->RecvPass,this->GetOurChallenge()),password) || x->RecvPass == password && (this->GetTheirChallenge().empty()))))
917                 {
918                         /* First check for instances of the server that are waiting between the inbound and outbound SERVER command */
919                         TreeSocket* CheckDupeSocket = Utils->FindBurstingServer(sname);
920                         if (CheckDupeSocket)
921                         {
922                                 /* If we find one, we abort the link to prevent a race condition */
923                                 this->SendError("Negotiation collision");
924                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists in a negotiating state.");
925                                 CheckDupeSocket->SendError("Negotiation collision");
926                                 Instance->SE->DelFd(CheckDupeSocket);
927                                 CheckDupeSocket->Close();
928                                 delete CheckDupeSocket;
929                                 return false;
930                         }
931                         /* Now check for fully initialized instances of the server */
932                         TreeServer* CheckDupe = Utils->FindServer(sname);
933                         if (CheckDupe)
934                         {
935                                 this->SendError("Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
936                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
937                                 return false;
938                         }
939                         this->Instance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
940                         if (this->Hook)
941                         {
942                                 std::string name = InspSocketNameRequest((Module*)Utils->Creator, this->Hook).Send();
943                                 this->Instance->SNO->WriteToSnoMask('l',"Connection from \2"+sname+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] using transport \2"+name+"\2");
944                         }
945
946                         Utils->AddBurstingServer(sname,this);
947
948                         // this is good. Send our details: Our server name and description and hopcount of 0,
949                         // along with the sendpass from this block.
950                         this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+this->MakePass(x->SendPass, this->GetTheirChallenge())+" 0 :"+this->Instance->Config->ServerDesc);
951                         // move to the next state, we are now waiting for THEM.
952                         this->LinkState = WAIT_AUTH_2;
953                         return true;
954                 }
955         }
956         this->SendError("Invalid credentials");
957         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
958         return false;
959 }
960
961 void TreeSocket::Split(const std::string &line, std::deque<std::string> &n)
962 {
963         n.clear();
964         irc::tokenstream tokens(line);
965         std::string param;
966         while (tokens.GetToken(param))
967                 n.push_back(param);
968         return;
969 }
970
971 bool TreeSocket::ProcessLine(std::string &line)
972 {
973         std::deque<std::string> params;
974         irc::string command;
975         std::string prefix;
976
977         line = line.substr(0, line.find_first_of("\r\n"));
978
979         if (line.empty())
980                 return true;
981
982         Instance->Log(DEBUG, "<- %s", line.c_str());
983
984         this->Split(line.c_str(),params);
985
986         if ((params[0][0] == ':') && (params.size() > 1))
987         {
988                 prefix = params[0].substr(1);
989                 params.pop_front();
990         }
991         command = params[0].c_str();
992         params.pop_front();
993         switch (this->LinkState)
994         {
995                 TreeServer* Node;
996
997                 case WAIT_AUTH_1:
998                         // Waiting for SERVER command from remote server. Server initiating
999                         // the connection sends the first SERVER command, listening server
1000                         // replies with theirs if its happy, then if the initiator is happy,
1001                         // it starts to send its net sync, which starts the merge, otherwise
1002                         // it sends an ERROR.
1003                         if (command == "PASS")
1004                         {
1005                                 /* Silently ignored */
1006                         }
1007                         else if (command == "SERVER")
1008                         {
1009                                 return this->Inbound_Server(params);
1010                         }
1011                         else if (command == "ERROR")
1012                         {
1013                                 return this->Error(params);
1014                         }
1015                         else if (command == "USER")
1016                         {
1017                                 this->SendError("Client connections to this port are prohibited.");
1018                                 return false;
1019                         }
1020                         else if (command == "CAPAB")
1021                         {
1022                                 return this->Capab(params);
1023                         }
1024                         else if ((command == "U") || (command == "S"))
1025                         {
1026                                 this->SendError("Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
1027                                 return false;
1028                         }
1029                         else
1030                         {
1031                                 irc::string error = "Invalid command in negotiation phase: " + command;
1032                                 this->SendError(assign(error));
1033                                 return false;
1034                         }
1035                 break;
1036                 case WAIT_AUTH_2:
1037                         // Waiting for start of other side's netmerge to say they liked our
1038                         // password.
1039                         if (command == "SERVER")
1040                         {
1041                                 // cant do this, they sent it to us in the WAIT_AUTH_1 state!
1042                                 // silently ignore.
1043                                 return true;
1044                         }
1045                         else if ((command == "U") || (command == "S"))
1046                         {
1047                                 this->SendError("Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
1048                                 return false;
1049                         }
1050                         else if (command == "BURST")
1051                         {
1052                                 if (params.size() && Utils->EnableTimeSync)
1053                                 {
1054                                         bool we_have_delta = (Instance->Time(false) != Instance->Time(true));
1055                                         time_t them = atoi(params[0].c_str());
1056                                         time_t delta = them - Instance->Time(false);
1057                                         if ((delta < -300) || (delta > 300))
1058                                         {
1059                                                 Instance->SNO->WriteToSnoMask('l',"\2ERROR\2: Your clocks are out by %d seconds (this is more than five minutes). Link aborted, \2PLEASE SYNC YOUR CLOCKS!\2",abs(delta));
1060                                                 SendError("Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
1061                                                 return false;
1062                                         }
1063                                         else if ((delta < -30) || (delta > 30))
1064                                         {
1065                                                 Instance->SNO->WriteToSnoMask('l',"\2WARNING\2: Your clocks are out by %d seconds. Please consider synching your clocks.", abs(delta));
1066                                         }
1067
1068                                         if (!Utils->MasterTime && !we_have_delta)
1069                                         {
1070                                                 this->Instance->SetTimeDelta(delta);
1071                                                 // Send this new timestamp to any other servers
1072                                                 Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
1073                                         }
1074                                 }
1075                                 this->LinkState = CONNECTED;
1076                                 Link* lnk = Utils->FindLink(InboundServerName);
1077                                 Node = new TreeServer(this->Utils,this->Instance, InboundServerName, InboundDescription, Utils->TreeRoot, this, lnk ? lnk->Hidden : false);
1078                                 Utils->DelBurstingServer(this);
1079                                 Utils->TreeRoot->AddChild(Node);
1080                                 params.clear();
1081                                 params.push_back(InboundServerName);
1082                                 params.push_back("*");
1083                                 params.push_back("1");
1084                                 params.push_back(":"+InboundDescription);
1085                                 Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,InboundServerName);
1086                                 this->bursting = true;
1087                                 this->DoBurst(Node);
1088                         }
1089                         else if (command == "ERROR")
1090                         {
1091                                 return this->Error(params);
1092                         }
1093                         else if (command == "CAPAB")
1094                         {
1095                                 return this->Capab(params);
1096                         }
1097
1098                 break;
1099                 case LISTENER:
1100                         this->SendError("Internal error -- listening socket accepted its own descriptor!!!");
1101                         return false;
1102                 break;
1103                 case CONNECTING:
1104                         if (command == "SERVER")
1105                         {
1106                                 // another server we connected to, which was in WAIT_AUTH_1 state,
1107                                 // has just sent us their credentials. If we get this far, theyre
1108                                 // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
1109                                 // if we're happy with this, we should send our netburst which
1110                                 // kickstarts the merge.
1111                                 return this->Outbound_Reply_Server(params);
1112                         }
1113                         else if (command == "ERROR")
1114                         {
1115                                 return this->Error(params);
1116                         }
1117                         else if (command == "CAPAB")
1118                         {
1119                                 return this->Capab(params);
1120                         }
1121                 break;
1122                 case CONNECTED:
1123                         // This is the 'authenticated' state, when all passwords
1124                         // have been exchanged and anything past this point is taken
1125                         // as gospel.
1126
1127                         if (prefix != "")
1128                         {
1129                                 std::string direction = prefix;
1130                                 userrec* t = this->Instance->FindNick(prefix);
1131                                 if (t)
1132                                 {
1133                                         direction = t->server;
1134                                 }
1135                                 TreeServer* route_back_again = Utils->BestRouteTo(direction);
1136                                 if ((!route_back_again) || (route_back_again->GetSocket() != this))
1137                                 {
1138                                         if (route_back_again)
1139                                                 Instance->Log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
1140                                         return true;
1141                                 }
1142                                 /* Fix by brain:
1143                                  * When there is activity on the socket, reset the ping counter so
1144                                  * that we're not wasting bandwidth pinging an active server.
1145                                  */
1146                                 route_back_again->SetNextPingTime(time(NULL) + 60);
1147                                 route_back_again->SetPingFlag();
1148                         }
1149
1150                         if ((command == "MODE") && (params.size() >= 2))
1151                         {
1152                                 chanrec* channel = Instance->FindChan(params[0]);
1153                                 if (channel)
1154                                 {
1155                                         userrec* x = Instance->FindNick(prefix);
1156                                         if (x)
1157                                         {
1158                                                 if (warned.find(x->server) == warned.end())
1159                                                 {
1160                                                         Instance->Log(DEFAULT,"WARNING: I revceived modes '%s' from another server '%s'. This is not compliant with InspIRCd. Please check that server for bugs.", params[1].c_str(), x->server);
1161                                                         Instance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending nonstandard modes: '%s MODE %s' where FMODE should be used, and may cause desyncs.", x->server, x->nick, params[1].c_str());
1162                                                         warned[x->server] = x->nick;
1163                                                 }
1164                                         }
1165                                 }
1166                         }
1167
1168                         if (command == "SVSMODE")
1169                         {
1170                                 /* Services expects us to implement
1171                                  * SVSMODE. In inspircd its the same as
1172                                  * MODE anyway.
1173                                  */
1174                                 command = "MODE";
1175                         }
1176                         std::string target = "";
1177                         /* Yes, know, this is a mess. Its reasonably fast though as we're
1178                          * working with std::string here.
1179                          */
1180                         if ((command == "NICK") && (params.size() >= 8))
1181                         {
1182                                 return this->IntroduceClient(prefix,params);
1183                         }
1184                         else if (command == "FJOIN")
1185                         {
1186                                 return this->ForceJoin(prefix,params);
1187                         }
1188                         else if (command == "STATS")
1189                         {
1190                                 return this->Stats(prefix, params);
1191                         }
1192                         else if (command == "MOTD")
1193                         {
1194                                 return this->Motd(prefix, params);
1195                         }
1196                         else if (command == "MODULES")
1197                         {
1198                                 return this->Modules(prefix, params);
1199                         }
1200                         else if (command == "ADMIN")
1201                         {
1202                                 return this->Admin(prefix, params);
1203                         }
1204                         else if (command == "SERVER")
1205                         {
1206                                 return this->RemoteServer(prefix,params);
1207                         }
1208                         else if (command == "ERROR")
1209                         {
1210                                 return this->Error(params);
1211                         }
1212                         else if (command == "OPERTYPE")
1213                         {
1214                                 return this->OperType(prefix,params);
1215                         }
1216                         else if (command == "FMODE")
1217                         {
1218                                 return this->ForceMode(prefix,params);
1219                         }
1220                         else if (command == "KILL")
1221                         {
1222                                 return this->RemoteKill(prefix,params);
1223                         }
1224                         else if (command == "FTOPIC")
1225                         {
1226                                 return this->ForceTopic(prefix,params);
1227                         }
1228                         else if (command == "REHASH")
1229                         {
1230                                 return this->RemoteRehash(prefix,params);
1231                         }
1232                         else if (command == "METADATA")
1233                         {
1234                                 return this->MetaData(prefix,params);
1235                         }
1236                         else if (command == "REMSTATUS")
1237                         {
1238                                 return this->RemoveStatus(prefix,params);
1239                         }
1240                         else if (command == "PING")
1241                         {
1242                                 /*
1243                                  * We just got a ping from a server that's bursting.
1244                                  * This can't be right, so set them to not bursting, and
1245                                  * apply their lines.
1246                                  */
1247                                 if (this->bursting)
1248                                 {
1249                                         this->bursting = false;
1250                                         Instance->XLines->apply_lines(Utils->lines_to_apply);
1251                                         Utils->lines_to_apply = 0;
1252                                 }
1253                                 if (prefix == "")
1254                                 {
1255                                         prefix = this->GetName();
1256                                 }
1257                                 return this->LocalPing(prefix,params);
1258                         }
1259                         else if (command == "PONG")
1260                         {
1261                                 /*
1262                                  * We just got a pong from a server that's bursting.
1263                                  * This can't be right, so set them to not bursting, and
1264                                  * apply their lines.
1265                                  */
1266                                 if (this->bursting)
1267                                 {
1268                                         this->bursting = false;
1269                                         Instance->XLines->apply_lines(Utils->lines_to_apply);
1270                                         Utils->lines_to_apply = 0;
1271                                 }
1272                                 if (prefix == "")
1273                                 {
1274                                         prefix = this->GetName();
1275                                 }
1276                                 return this->LocalPong(prefix,params);
1277                         }
1278                         else if (command == "VERSION")
1279                         {
1280                                 return this->ServerVersion(prefix,params);
1281                         }
1282                         else if (command == "FHOST")
1283                         {
1284                                 return this->ChangeHost(prefix,params);
1285                         }
1286                         else if (command == "FNAME")
1287                         {
1288                                 return this->ChangeName(prefix,params);
1289                         }
1290                         else if (command == "ADDLINE")
1291                         {
1292                                 return this->AddLine(prefix,params);
1293                         }
1294                         else if (command == "SVSNICK")
1295                         {
1296                                 if (prefix == "")
1297                                 {
1298                                         prefix = this->GetName();
1299                                 }
1300                                 return this->ForceNick(prefix,params);
1301                         }
1302                         else if (command == "OPERQUIT")
1303                         {
1304                                 return this->OperQuit(prefix,params);
1305                         }
1306                         else if (command == "RSQUIT")
1307                         {
1308                                 return this->RemoteSquit(prefix, params);
1309                         }
1310                         else if (command == "IDLE")
1311                         {
1312                                 return this->Whois(prefix,params);
1313                         }
1314                         else if (command == "PUSH")
1315                         {
1316                                 return this->Push(prefix,params);
1317                         }
1318                         else if (command == "TIMESET")
1319                         {
1320                                 return this->HandleSetTime(prefix, params);
1321                         }
1322                         else if (command == "TIME")
1323                         {
1324                                 return this->Time(prefix,params);
1325                         }
1326                         else if ((command == "KICK") && (Utils->IsServer(prefix)))
1327                         {
1328                                 std::string sourceserv = this->myhost;
1329                                 if (params.size() == 3)
1330                                 {
1331                                         userrec* user = this->Instance->FindNick(params[1]);
1332                                         chanrec* chan = this->Instance->FindChan(params[0]);
1333                                         if (user && chan)
1334                                         {
1335                                                 if (!chan->ServerKickUser(user, params[2].c_str(), false))
1336                                                         /* Yikes, the channels gone! */
1337                                                         delete chan;
1338                                         }
1339                                 }
1340                                 if (this->InboundServerName != "")
1341                                 {
1342                                         sourceserv = this->InboundServerName;
1343                                 }
1344                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1345                         }
1346                         else if (command == "SVSJOIN")
1347                         {
1348                                 if (prefix == "")
1349                                 {
1350                                         prefix = this->GetName();
1351                                 }
1352                                 return this->ServiceJoin(prefix,params);
1353                         }
1354                         else if (command == "SQUIT")
1355                         {
1356                                 if (params.size() == 2)
1357                                 {
1358                                         this->Squit(Utils->FindServer(params[0]),params[1]);
1359                                 }
1360                                 return true;
1361                         }
1362                         else if (command == "OPERNOTICE")
1363                         {
1364                                 std::string sourceserv = this->myhost;
1365                                 if (this->InboundServerName != "")
1366                                         sourceserv = this->InboundServerName;
1367                                 if (params.size() >= 1)
1368                                         Instance->WriteOpers("*** From " + sourceserv + ": " + params[0]);
1369                                 return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
1370                         }
1371                         else if (command == "MODENOTICE")
1372                         {
1373                                 std::string sourceserv = this->myhost;
1374                                 if (this->InboundServerName != "")
1375                                         sourceserv = this->InboundServerName;
1376                                 if (params.size() >= 2)
1377                                 {
1378                                         Instance->WriteMode(params[0].c_str(), WM_AND, "*** From %s: %s", sourceserv.c_str(), params[1].c_str());
1379                                 }
1380                                 return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
1381                         }
1382                         else if (command == "SNONOTICE")
1383                         {
1384                                 std::string sourceserv = this->myhost;
1385                                 if (this->InboundServerName != "")
1386                                         sourceserv = this->InboundServerName;
1387                                 if (params.size() >= 2)
1388                                 {
1389                                         Instance->SNO->WriteToSnoMask(*(params[0].c_str()), "From " + sourceserv + ": "+ params[1]);
1390                                 }
1391                                 return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
1392                         }
1393                         else if (command == "ENDBURST")
1394                         {
1395                                 this->bursting = false;
1396                                 Instance->XLines->apply_lines(Utils->lines_to_apply);
1397                                 Utils->lines_to_apply = 0;
1398                                 std::string sourceserv = this->myhost;
1399                                 if (this->InboundServerName != "")
1400                                 {
1401                                         sourceserv = this->InboundServerName;
1402                                 }
1403                                 this->Instance->SNO->WriteToSnoMask('l',"Received end of netburst from \2%s\2",sourceserv.c_str());
1404
1405                                 Event rmode((char*)sourceserv.c_str(), (Module*)Utils->Creator, "new_server");
1406                                 rmode.Send(Instance);
1407
1408                                 return true;
1409                         }
1410                         else
1411                         {
1412                                 // not a special inter-server command.
1413                                 // Emulate the actual user doing the command,
1414                                 // this saves us having a huge ugly parser.
1415                                 userrec* who = this->Instance->FindNick(prefix);
1416                                 std::string sourceserv = this->myhost;
1417                                 if (this->InboundServerName != "")
1418                                 {
1419                                         sourceserv = this->InboundServerName;
1420                                 }
1421                                 if ((!who) && (command == "MODE"))
1422                                 {
1423                                         if (Utils->IsServer(prefix))
1424                                         {
1425                                                 const char* modelist[127];
1426                                                 for (size_t i = 0; i < params.size(); i++)
1427                                                         modelist[i] = params[i].c_str();
1428                                                 userrec* fake = new userrec(Instance);
1429                                                 fake->SetFd(FD_MAGIC_NUMBER);
1430                                                 this->Instance->SendMode(modelist, params.size(), fake);
1431
1432                                                 delete fake;
1433                                                 /* Hot potato! pass it on! */
1434                                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1435                                         }
1436                                 }
1437                                 if (who)
1438                                 {
1439                                         if ((command == "NICK") && (params.size() > 0))
1440                                         {
1441                                                 /* On nick messages, check that the nick doesnt
1442                                                  * already exist here. If it does, kill their copy,
1443                                                  * and our copy.
1444                                                  */
1445                                                 userrec* x = this->Instance->FindNick(params[0]);
1446                                                 if ((x) && (x != who))
1447                                                 {
1448                                                         std::deque<std::string> p;
1449                                                         p.push_back(params[0]);
1450                                                         p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
1451                                                         Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
1452                                                         p.clear();
1453                                                         p.push_back(prefix);
1454                                                         p.push_back("Nickname collision");
1455                                                         Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
1456                                                         userrec::QuitUser(this->Instance,x,"Nickname collision ("+prefix+" -> "+params[0]+")");
1457                                                         userrec* y = this->Instance->FindNick(prefix);
1458                                                         if (y)
1459                                                         {
1460                                                                 userrec::QuitUser(this->Instance,y,"Nickname collision");
1461                                                         }
1462                                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1463                                                 }
1464                                         }
1465                                         // its a user
1466                                         target = who->server;
1467                                         const char* strparams[127];
1468                                         for (unsigned int q = 0; q < params.size(); q++)
1469                                         {
1470                                                 strparams[q] = params[q].c_str();
1471                                         }
1472                                         switch (this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
1473                                         {
1474                                                 case CMD_INVALID:
1475                                                         this->SendError("Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
1476                                                         return false;
1477                                                 break;
1478                                                 case CMD_FAILURE:
1479                                                         return true;
1480                                                 break;
1481                                                 default:
1482                                                         /* CMD_SUCCESS and CMD_USER_DELETED fall through here */
1483                                                 break;
1484                                         }
1485                                 }
1486                                 else
1487                                 {
1488                                         // its not a user. Its either a server, or somethings screwed up.
1489                                         if (Utils->IsServer(prefix))
1490                                                 target = this->Instance->Config->ServerName;
1491                                         else
1492                                                 return true;
1493                                 }
1494                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1495
1496                         }
1497                         return true;
1498                 break;
1499         }
1500         return true;
1501 }
1502
1503 std::string TreeSocket::GetName()
1504 {
1505         std::string sourceserv = this->myhost;
1506         if (this->InboundServerName != "")
1507         {
1508                 sourceserv = this->InboundServerName;
1509         }
1510         return sourceserv;
1511 }
1512
1513 void TreeSocket::OnTimeout()
1514 {
1515         if (this->LinkState == CONNECTING)
1516         {
1517                 this->Instance->SNO->WriteToSnoMask('l',"CONNECT: Connection to \002"+myhost+"\002 timed out.");
1518                 Link* MyLink = Utils->FindLink(myhost);
1519                 if (MyLink)
1520                         Utils->DoFailOver(MyLink);
1521         }
1522 }
1523
1524 void TreeSocket::OnClose()
1525 {
1526         // Connection closed.
1527         // If the connection is fully up (state CONNECTED)
1528         // then propogate a netsplit to all peers.
1529         std::string quitserver = this->myhost;
1530         if (this->InboundServerName != "")
1531         {
1532                 quitserver = this->InboundServerName;
1533         }
1534         TreeServer* s = Utils->FindServer(quitserver);
1535         if (s)
1536         {
1537                 Squit(s,"Remote host closed the connection");
1538         }
1539
1540         if (quitserver != "")
1541                 this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str());
1542 }
1543
1544 int TreeSocket::OnIncomingConnection(int newsock, char* ip)
1545 {
1546         /* To prevent anyone from attempting to flood opers/DDoS by connecting to the server port,
1547          * or discovering if this port is the server port, we don't allow connections from any
1548          * IPs for which we don't have a link block.
1549          */
1550         bool found = false;
1551
1552         found = (std::find(Utils->ValidIPs.begin(), Utils->ValidIPs.end(), ip) != Utils->ValidIPs.end());
1553         if (!found)
1554         {
1555                 for (vector<std::string>::iterator i = Utils->ValidIPs.begin(); i != Utils->ValidIPs.end(); i++)
1556                         if (irc::sockets::MatchCIDR(ip, (*i).c_str()))
1557                                 found = true;
1558
1559                 if (!found)
1560                 {
1561                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from %s denied (no link blocks with that IP address)", ip);
1562                         close(newsock);
1563                         return false;
1564                 }
1565         }
1566
1567         TreeSocket* s = new TreeSocket(this->Utils, this->Instance, newsock, ip, this->Hook);
1568         s = s; /* Whinge whinge whinge, thats all GCC ever does. */
1569         return true;
1570 }