]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
8b115815d1549f7b61ad95fa889ed7073d2da525
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
1 /*   +------------------------------------+
2  *   | Inspire Internet Relay Chat Daemon |
3  *   +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 /* $ModDesc: Povides a spanning tree server link protocol */
18
19 #include "configreader.h"
20 #include "users.h"
21 #include "channels.h"
22 #include "modules.h"
23 #include "commands/cmd_whois.h"
24 #include "commands/cmd_stats.h"
25 #include "socket.h"
26 #include "inspircd.h"
27 #include "wildcard.h"
28 #include "xline.h"
29 #include "aes.h"
30
31 /** If you make a change which breaks the protocol, increment this.
32  * If you  completely change the protocol, completely change the number.
33  */
34 const long ProtocolVersion = 1101;
35
36 /*
37  * The server list in InspIRCd is maintained as two structures
38  * which hold the data in different ways. Most of the time, we
39  * want to very quicky obtain three pieces of information:
40  *
41  * (1) The information on a server
42  * (2) The information on the server we must send data through
43  *     to actually REACH the server we're after
44  * (3) Potentially, the child/parent objects of this server
45  *
46  * The InspIRCd spanning protocol provides easy access to these
47  * by storing the data firstly in a recursive structure, where
48  * each item references its parent item, and a dynamic list
49  * of child items, and another structure which stores the items
50  * hashed, linearly. This means that if we want to find a server
51  * by name quickly, we can look it up in the hash, avoiding
52  * any O(n) lookups. If however, during a split or sync, we want
53  * to apply an operation to a server, and any of its child objects
54  * we can resort to recursion to walk the tree structure.
55  * Any socket can have one of five states at any one time.
56  * The LISTENER state indicates a socket which is listening
57  * for connections. It cannot receive data itself, only incoming
58  * sockets.
59  * The CONNECTING state indicates an outbound socket which is
60  * waiting to be writeable.
61  * The WAIT_AUTH_1 state indicates the socket is outbound and
62  * has successfully connected, but has not yet sent and received
63  * SERVER strings.
64  * The WAIT_AUTH_2 state indicates that the socket is inbound
65  * (allocated by a LISTENER) but has not yet sent and received
66  * SERVER strings.
67  * The CONNECTED state represents a fully authorized, fully
68  * connected server.
69  */
70 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
71
72 /* Foward declarations */
73 class TreeServer;
74 class TreeSocket;
75 class Link;
76 class ModuleSpanningTree;
77
78 /* This hash_map holds the hash equivalent of the server
79  * tree, used for rapid linear lookups.
80  */
81 typedef nspace::hash_map<std::string, TreeServer*, nspace::hash<string>, irc::StrHashComp> server_hash;
82
83
84 /** The Link class might as well be a struct,
85  * but this is C++ and we don't believe in structs (!).
86  * It holds the entire information of one <link>
87  * tag from the main config file. We maintain a list
88  * of them, and populate the list on rehash/load.
89  */
90 class Link : public classbase
91 {
92  public:
93         irc::string Name;
94         std::string IPAddr;
95         int Port;
96         std::string SendPass;
97         std::string RecvPass;
98         unsigned long AutoConnect;
99         time_t NextConnectTime;
100         std::string EncryptionKey;
101         bool HiddenFromStats;
102         std::string FailOver;
103         int Timeout;
104 };
105
106 /** Contains helper functions and variables for this module,
107  * and keeps them out of the global namespace
108  */
109 class SpanningTreeUtilities
110 {
111  private:
112         /** Creator server
113          */
114         InspIRCd* ServerInstance;
115  public:
116         /** Creator module
117          */
118         ModuleSpanningTree* Creator;
119         /** Flatten links and /MAP for non-opers
120          */
121         bool FlatLinks;
122         /** Hide U-Lined servers in /MAP and /LINKS
123          */
124         bool HideULines;
125         /** Announce TS changes to channels on merge
126          */
127         bool AnnounceTSChange;
128         /** Socket bindings for listening sockets
129          */
130         std::vector<TreeSocket*> Bindings;
131         /** This variable represents the root of the server tree
132          */
133         TreeServer *TreeRoot;
134         /** IPs allowed to link to us
135          */
136         std::vector<std::string> ValidIPs;
137         /** Hash of currently connected servers by name
138          */
139         server_hash serverlist;
140         /** Holds the data from the <link> tags in the conf
141          */
142         std::vector<Link> LinkBlocks;
143
144         /** Initialise utility class
145          */
146         SpanningTreeUtilities(InspIRCd* Instance, ModuleSpanningTree* Creator);
147         /** Destroy class and free listeners etc
148          */
149         ~SpanningTreeUtilities();
150         /** Send a message from this server to one other local or remote
151          */
152         bool DoOneToOne(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string target);
153         /** Send a message from this server to all but one other, local or remote
154          */
155         bool DoOneToAllButSender(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string omit);
156         /** Send a message from this server to all but one other, local or remote
157          */
158         bool DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit);
159         /** Send a message from this server to all others
160          */
161         bool DoOneToMany(const std::string &prefix, const std::string &command, std::deque<std::string> &params);
162         /** Send a message from this server to all others
163          */
164         bool DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params);
165         /** Send a message from this server to all others, without doing any processing on the command (e.g. send it as-is with colons and all)
166          */
167         bool DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, std::deque<std::string> &params);
168         /** Read the spanningtree module's tags from the config file
169          */
170         void ReadConfiguration(bool rebind);
171         /** Add a server to the server list for GetListOfServersForChannel
172          */
173         void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list);
174         /** Compile a list of servers which contain members of channel c
175          */
176         void GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list);
177         /** Find a server by name
178          */
179         TreeServer* FindServer(const std::string &ServerName);
180         /** Find a route to a server by name
181          */
182         TreeServer* BestRouteTo(const std::string &ServerName);
183         /** Find a server by glob mask
184          */
185         TreeServer* FindServerMask(const std::string &ServerName);
186         /** Returns true if this is a server name we recognise
187          */
188         bool IsServer(const std::string &ServerName);
189         /** Attempt to connect to the failover link of link x
190          */
191         void DoFailOver(Link* x);
192         /** Find a link tag from a server name
193          */
194         Link* FindLink(const std::string& name);
195 };
196
197
198 /** Each server in the tree is represented by one class of
199  * type TreeServer. A locally connected TreeServer can
200  * have a class of type TreeSocket associated with it, for
201  * remote servers, the TreeSocket entry will be NULL.
202  * Each server also maintains a pointer to its parent
203  * (NULL if this server is ours, at the top of the tree)
204  * and a pointer to its "Route" (see the comments in the
205  * constructors below), and also a dynamic list of pointers
206  * to its children which can be iterated recursively
207  * if required. Creating or deleting objects of type
208  i* TreeServer automatically maintains the hash_map of
209  * TreeServer items, deleting and inserting them as they
210  * are created and destroyed.
211  */
212 class TreeServer : public classbase
213 {
214         InspIRCd* ServerInstance;               /* Creator */
215         TreeServer* Parent;                     /* Parent entry */
216         TreeServer* Route;                      /* Route entry */
217         std::vector<TreeServer*> Children;      /* List of child objects */
218         irc::string ServerName;                 /* Server's name */
219         std::string ServerDesc;                 /* Server's description */
220         std::string VersionString;              /* Version string or empty string */
221         int UserCount;                          /* Not used in this version */
222         int OperCount;                          /* Not used in this version */
223         TreeSocket* Socket;                     /* For directly connected servers this points at the socket object */
224         time_t NextPing;                        /* After this time, the server should be PINGed*/
225         bool LastPingWasGood;                   /* True if the server responded to the last PING with a PONG */
226         SpanningTreeUtilities* Utils;           /* Utility class */
227         
228  public:
229
230         /** We don't use this constructor. Its a dummy, and won't cause any insertion
231          * of the TreeServer into the hash_map. See below for the two we DO use.
232          */
233         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance) : ServerInstance(Instance), Utils(Util)
234         {
235                 Parent = NULL;
236                 ServerName = "";
237                 ServerDesc = "";
238                 VersionString = "";
239                 UserCount = OperCount = 0;
240                 VersionString = ServerInstance->GetVersionString();
241         }
242
243         /** We use this constructor only to create the 'root' item, Utils->TreeRoot, which
244          * represents our own server. Therefore, it has no route, no parent, and
245          * no socket associated with it. Its version string is our own local version.
246          */
247         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc) : ServerInstance(Instance), ServerName(Name.c_str()), ServerDesc(Desc), Utils(Util)
248         {
249                 Parent = NULL;
250                 VersionString = "";
251                 UserCount = ServerInstance->UserCount();
252                 OperCount = ServerInstance->OperCount();
253                 VersionString = ServerInstance->GetVersionString();
254                 Route = NULL;
255                 Socket = NULL; /* Fix by brain */
256                 AddHashEntry();
257         }
258
259         /** When we create a new server, we call this constructor to initialize it.
260          * This constructor initializes the server's Route and Parent, and sets up
261          * its ping counters so that it will be pinged one minute from now.
262          */
263         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock)
264                 : ServerInstance(Instance), Parent(Above), ServerName(Name.c_str()), ServerDesc(Desc), Socket(Sock), Utils(Util)
265         {
266                 VersionString = "";
267                 UserCount = OperCount = 0;
268                 this->SetNextPingTime(time(NULL) + 60);
269                 this->SetPingFlag();
270
271                 /* find the 'route' for this server (e.g. the one directly connected
272                  * to the local server, which we can use to reach it)
273                  *
274                  * In the following example, consider we have just added a TreeServer
275                  * class for server G on our network, of which we are server A.
276                  * To route traffic to G (marked with a *) we must send the data to
277                  * B (marked with a +) so this algorithm initializes the 'Route'
278                  * value to point at whichever server traffic must be routed through
279                  * to get here. If we were to try this algorithm with server B,
280                  * the Route pointer would point at its own object ('this').
281                  *
282                  *              A
283                  *             / \
284                  *          + B   C
285                  *           / \   \
286                  *          D   E   F
287                  *         /         \
288                  *      * G           H
289                  *
290                  * We only run this algorithm when a server is created, as
291                  * the routes remain constant while ever the server exists, and
292                  * do not need to be re-calculated.
293                  */
294
295                 Route = Above;
296                 if (Route == Utils->TreeRoot)
297                 {
298                         Route = this;
299                 }
300                 else
301                 {
302                         while (this->Route->GetParent() != Utils->TreeRoot)
303                         {
304                                 this->Route = Route->GetParent();
305                         }
306                 }
307
308                 /* Because recursive code is slow and takes a lot of resources,
309                  * we store two representations of the server tree. The first
310                  * is a recursive structure where each server references its
311                  * children and its parent, which is used for netbursts and
312                  * netsplits to dump the whole dataset to the other server,
313                  * and the second is used for very fast lookups when routing
314                  * messages and is instead a hash_map, where each item can
315                  * be referenced by its server name. The AddHashEntry()
316                  * call below automatically inserts each TreeServer class
317                  * into the hash_map as it is created. There is a similar
318                  * maintainance call in the destructor to tidy up deleted
319                  * servers.
320                  */
321
322                 this->AddHashEntry();
323         }
324
325         int QuitUsers(const std::string &reason)
326         {
327                 ServerInstance->Log(DEBUG,"Removing all users from server %s",this->ServerName.c_str());
328                 const char* reason_s = reason.c_str();
329                 std::vector<userrec*> time_to_die;
330                 for (user_hash::iterator n = ServerInstance->clientlist.begin(); n != ServerInstance->clientlist.end(); n++)
331                 {
332                         if (!strcmp(n->second->server, this->ServerName.c_str()))
333                         {
334                                 time_to_die.push_back(n->second);
335                         }
336                 }
337                 for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
338                 {
339                         userrec* a = (userrec*)*n;
340                         ServerInstance->Log(DEBUG,"Kill %s fd=%d",a->nick,a->GetFd());
341                         if (!IS_LOCAL(a))
342                                 userrec::QuitUser(ServerInstance,a,reason_s);
343                 }
344                 return time_to_die.size();
345         }
346
347         /** This method is used to add the structure to the
348          * hash_map for linear searches. It is only called
349          * by the constructors.
350          */
351         void AddHashEntry()
352         {
353                 server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
354                 if (iter == Utils->serverlist.end())
355                         Utils->serverlist[this->ServerName.c_str()] = this;
356         }
357
358         /** This method removes the reference to this object
359          * from the hash_map which is used for linear searches.
360          * It is only called by the default destructor.
361          */
362         void DelHashEntry()
363         {
364                 server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
365                 if (iter != Utils->serverlist.end())
366                         Utils->serverlist.erase(iter);
367         }
368
369         /** These accessors etc should be pretty self-
370          * explanitory.
371          */
372         TreeServer* GetRoute()
373         {
374                 return Route;
375         }
376
377         std::string GetName()
378         {
379                 return ServerName.c_str();
380         }
381
382         std::string GetDesc()
383         {
384                 return ServerDesc;
385         }
386
387         std::string GetVersion()
388         {
389                 return VersionString;
390         }
391
392         void SetNextPingTime(time_t t)
393         {
394                 this->NextPing = t;
395                 LastPingWasGood = false;
396         }
397
398         time_t NextPingTime()
399         {
400                 return NextPing;
401         }
402
403         bool AnsweredLastPing()
404         {
405                 return LastPingWasGood;
406         }
407
408         void SetPingFlag()
409         {
410                 LastPingWasGood = true;
411         }
412
413         int GetUserCount()
414         {
415                 return UserCount;
416         }
417
418         void AddUserCount()
419         {
420                 UserCount++;
421         }
422
423         void DelUserCount()
424         {
425                 UserCount--;
426         }
427
428         int GetOperCount()
429         {
430                 return OperCount;
431         }
432
433         TreeSocket* GetSocket()
434         {
435                 return Socket;
436         }
437
438         TreeServer* GetParent()
439         {
440                 return Parent;
441         }
442
443         void SetVersion(const std::string &Version)
444         {
445                 VersionString = Version;
446         }
447
448         unsigned int ChildCount()
449         {
450                 return Children.size();
451         }
452
453         TreeServer* GetChild(unsigned int n)
454         {
455                 if (n < Children.size())
456                 {
457                         /* Make sure they  cant request
458                          * an out-of-range object. After
459                          * all we know what these programmer
460                          * types are like *grin*.
461                          */
462                         return Children[n];
463                 }
464                 else
465                 {
466                         return NULL;
467                 }
468         }
469
470         void AddChild(TreeServer* Child)
471         {
472                 Children.push_back(Child);
473         }
474
475         bool DelChild(TreeServer* Child)
476         {
477                 for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
478                 {
479                         if (*a == Child)
480                         {
481                                 Children.erase(a);
482                                 return true;
483                         }
484                 }
485                 return false;
486         }
487
488         /** Removes child nodes of this node, and of that node, etc etc.
489          * This is used during netsplits to automatically tidy up the
490          * server tree. It is slow, we don't use it for much else.
491          */
492         bool Tidy()
493         {
494                 bool stillchildren = true;
495                 while (stillchildren)
496                 {
497                         stillchildren = false;
498                         for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
499                         {
500                                 TreeServer* s = (TreeServer*)*a;
501                                 s->Tidy();
502                                 Children.erase(a);
503                                 DELETE(s);
504                                 stillchildren = true;
505                                 break;
506                         }
507                 }
508                 return true;
509         }
510
511         ~TreeServer()
512         {
513                 /* We'd better tidy up after ourselves, eh? */
514                 this->DelHashEntry();
515         }
516 };
517
518 /** Yay for fast searches!
519  * This is hundreds of times faster than recursion
520  * or even scanning a linked list, especially when
521  * there are more than a few servers to deal with.
522  * (read as: lots).
523  */
524 TreeServer* SpanningTreeUtilities::FindServer(const std::string &ServerName)
525 {
526         server_hash::iterator iter;
527         iter = serverlist.find(ServerName.c_str());
528         if (iter != serverlist.end())
529         {
530                 return iter->second;
531         }
532         else
533         {
534                 return NULL;
535         }
536 }
537
538 /** Returns the locally connected server we must route a
539  * message through to reach server 'ServerName'. This
540  * only applies to one-to-one and not one-to-many routing.
541  * See the comments for the constructor of TreeServer
542  * for more details.
543  */
544 TreeServer* SpanningTreeUtilities::BestRouteTo(const std::string &ServerName)
545 {
546         if (ServerName.c_str() == TreeRoot->GetName())
547                 return NULL;
548         TreeServer* Found = FindServer(ServerName);
549         if (Found)
550         {
551                 return Found->GetRoute();
552         }
553         else
554         {
555                 return NULL;
556         }
557 }
558
559 /** Find the first server matching a given glob mask.
560  * Theres no find-using-glob method of hash_map [awwww :-(]
561  * so instead, we iterate over the list using an iterator
562  * and match each one until we get a hit. Yes its slow,
563  * deal with it.
564  */
565 TreeServer* SpanningTreeUtilities::FindServerMask(const std::string &ServerName)
566 {
567         for (server_hash::iterator i = serverlist.begin(); i != serverlist.end(); i++)
568         {
569                 if (match(i->first.c_str(),ServerName.c_str()))
570                         return i->second;
571         }
572         return NULL;
573 }
574
575 /* A convenient wrapper that returns true if a server exists */
576 bool SpanningTreeUtilities::IsServer(const std::string &ServerName)
577 {
578         return (FindServer(ServerName) != NULL);
579 }
580
581
582 /** Handle /RCONNECT
583  */
584 class cmd_rconnect : public command_t
585 {
586         Module* Creator;
587         SpanningTreeUtilities* Utils;
588  public:
589         cmd_rconnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util) : command_t(Instance, "RCONNECT", 'o', 2), Creator(Callback), Utils(Util)
590         {
591                 this->source = "m_spanningtree.so";
592                 syntax = "<remote-server-mask> <servermask>";
593         }
594
595         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
596         {
597                 user->WriteServ("NOTICE %s :*** RCONNECT: Sending remote connect to \002%s\002 to connect server \002%s\002.",user->nick,parameters[0],parameters[1]);
598                 /* Is this aimed at our server? */
599                 if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameters[0]))
600                 {
601                         /* Yes, initiate the given connect */
602                         ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick,parameters[0],parameters[1]);
603                         const char* para[1];
604                         para[0] = parameters[1];
605                         std::string original_command = std::string("CONNECT ") + parameters[1];
606                         Creator->OnPreCommand("CONNECT", para, 1, user, true, original_command);
607
608                         return CMD_SUCCESS;
609                 }
610
611                 return CMD_FAILURE;
612         }
613 };
614  
615
616
617 /** Every SERVER connection inbound or outbound is represented by
618  * an object of type TreeSocket.
619  * TreeSockets, being inherited from InspSocket, can be tied into
620  * the core socket engine, and we cn therefore receive activity events
621  * for them, just like activex objects on speed. (yes really, that
622  * is a technical term!) Each of these which relates to a locally
623  * connected server is assocated with it, by hooking it onto a
624  * TreeSocket class using its constructor. In this way, we can
625  * maintain a list of servers, some of which are directly connected,
626  * some of which are not.
627  */
628 class TreeSocket : public InspSocket
629 {
630         SpanningTreeUtilities* Utils;
631         std::string myhost;
632         std::string in_buffer;
633         ServerState LinkState;
634         std::string InboundServerName;
635         std::string InboundDescription;
636         int num_lost_users;
637         int num_lost_servers;
638         time_t NextPing;
639         bool LastPingWasGood;
640         bool bursting;
641         AES* ctx_in;
642         AES* ctx_out;
643         unsigned int keylength;
644         std::string ModuleList;
645         std::map<std::string,std::string> CapKeys;
646
647  public:
648
649         /** Because most of the I/O gubbins are encapsulated within
650          * InspSocket, we just call the superclass constructor for
651          * most of the action, and append a few of our own values
652          * to it.
653          */
654         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime)
655                 : InspSocket(SI, host, port, listening, maxtime), Utils(Util)
656         {
657                 myhost = host;
658                 this->LinkState = LISTENER;
659                 this->ctx_in = NULL;
660                 this->ctx_out = NULL;
661         }
662
663         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, std::string ServerName)
664                 : InspSocket(SI, host, port, listening, maxtime), Utils(Util)
665         {
666                 myhost = ServerName;
667                 this->LinkState = CONNECTING;
668                 this->ctx_in = NULL;
669                 this->ctx_out = NULL;
670         }
671
672         /** When a listening socket gives us a new file descriptor,
673          * we must associate it with a socket without creating a new
674          * connection. This constructor is used for this purpose.
675          */
676         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, int newfd, char* ip)
677                 : InspSocket(SI, newfd, ip), Utils(Util)
678         {
679                 this->LinkState = WAIT_AUTH_1;
680                 this->ctx_in = NULL;
681                 this->ctx_out = NULL;
682                 this->SendCapabilities();
683         }
684
685         ~TreeSocket()
686         {
687                 if (ctx_in)
688                         DELETE(ctx_in);
689                 if (ctx_out)
690                         DELETE(ctx_out);
691         }
692
693         void InitAES(std::string key,std::string SName)
694         {
695                 if (key == "")
696                         return;
697
698                 ctx_in = new AES();
699                 ctx_out = new AES();
700                 Instance->Log(DEBUG,"Initialized AES key %s",key.c_str());
701                 // key must be 16, 24, 32 etc bytes (multiple of 8)
702                 keylength = key.length();
703                 if (!(keylength == 16 || keylength == 24 || keylength == 32))
704                 {
705                         this->Instance->SNO->WriteToSnoMask('l',"\2ERROR\2: Key length for encryptionkey is not 16, 24 or 32 bytes in length!");
706                         Instance->Log(DEBUG,"Key length not 16, 24 or 32 characters!");
707                 }
708                 else
709                 {
710                         if (this->GetState() != I_ERROR)
711                         {
712                                 this->Instance->SNO->WriteToSnoMask('l',"\2AES\2: Initialized %d bit encryption to server %s",keylength*8,SName.c_str());
713                                 ctx_in->MakeKey(key.c_str(), "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
714                                         \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", keylength, keylength);
715                                 ctx_out->MakeKey(key.c_str(), "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
716                                         \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", keylength, keylength);
717                         }
718                 }
719         }
720         
721         /** When an outbound connection finishes connecting, we receive
722          * this event, and must send our SERVER string to the other
723          * side. If the other side is happy, as outlined in the server
724          * to server docs on the inspircd.org site, the other side
725          * will then send back its own server string.
726          */
727         virtual bool OnConnected()
728         {
729                 if (this->LinkState == CONNECTING)
730                 {
731                         /* we do not need to change state here. */
732                         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
733                         {
734                                 if (x->Name == this->myhost)
735                                 {
736                                         this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] started.");
737                                         this->SendCapabilities();
738                                         if (x->EncryptionKey != "")
739                                         {
740                                                 if (!(x->EncryptionKey.length() == 16 || x->EncryptionKey.length() == 24 || x->EncryptionKey.length() == 32))
741                                                 {
742                                                         this->Instance->SNO->WriteToSnoMask('l',"\2WARNING\2: Your encryption key is NOT 16, 24 or 32 characters in length, encryption will \2NOT\2 be enabled.");
743                                                 }
744                                                 else
745                                                 {
746                                                         this->WriteLine(std::string("AES ")+this->Instance->Config->ServerName);
747                                                         this->InitAES(x->EncryptionKey,x->Name.c_str());
748                                                 }
749                                         }
750                                         /* found who we're supposed to be connecting to, send the neccessary gubbins. */
751                                         this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+x->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
752                                         return true;
753                                 }
754                         }
755                 }
756                 /* There is a (remote) chance that between the /CONNECT and the connection
757                  * being accepted, some muppet has removed the <link> block and rehashed.
758                  * If that happens the connection hangs here until it's closed. Unlikely
759                  * and rather harmless.
760                  */
761                 this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2 lost link tag(!)");
762                 return true;
763         }
764         
765         virtual void OnError(InspSocketError e)
766         {
767                 /* We don't handle this method, because all our
768                  * dirty work is done in OnClose() (see below)
769                  * which is still called on error conditions too.
770                  */
771                 if (e == I_ERR_CONNECT)
772                 {
773                         this->Instance->SNO->WriteToSnoMask('l',"Connection failed: Connection to \002"+myhost+"\002 refused");
774                         Link* MyLink = Utils->FindLink(myhost);
775                         if (MyLink)
776                                 Utils->DoFailOver(MyLink);
777                 }
778         }
779
780         virtual int OnDisconnect()
781         {
782                 /* For the same reason as above, we don't
783                  * handle OnDisconnect()
784                  */
785                 return true;
786         }
787
788         /** Recursively send the server tree with distances as hops.
789          * This is used during network burst to inform the other server
790          * (and any of ITS servers too) of what servers we know about.
791          * If at any point any of these servers already exist on the other
792          * end, our connection may be terminated. The hopcounts given
793          * by this function are relative, this doesn't matter so long as
794          * they are all >1, as all the remote servers re-calculate them
795          * to be relative too, with themselves as hop 0.
796          */
797         void SendServers(TreeServer* Current, TreeServer* s, int hops)
798         {
799                 char command[1024];
800                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
801                 {
802                         TreeServer* recursive_server = Current->GetChild(q);
803                         if (recursive_server != s)
804                         {
805                                 snprintf(command,1024,":%s SERVER %s * %d :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,recursive_server->GetDesc().c_str());
806                                 this->WriteLine(command);
807                                 this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
808                                 /* down to next level */
809                                 this->SendServers(recursive_server, s, hops+1);
810                         }
811                 }
812         }
813
814         std::string MyCapabilities()
815         {
816                 std::vector<std::string> modlist;
817                 std::string capabilities = "";
818
819                 for (int i = 0; i <= this->Instance->GetModuleCount(); i++)
820                 {
821                         if (this->Instance->modules[i]->GetVersion().Flags & VF_COMMON)
822                                 modlist.push_back(this->Instance->Config->module_names[i]);
823                 }
824                 sort(modlist.begin(),modlist.end());
825                 for (unsigned int i = 0; i < modlist.size(); i++)
826                 {
827                         if (i)
828                                 capabilities = capabilities + ",";
829                         capabilities = capabilities + modlist[i];
830                 }
831                 return capabilities;
832         }
833         
834         void SendCapabilities()
835         {
836                 irc::commasepstream modulelist(MyCapabilities());
837
838                 this->WriteLine("CAPAB START");
839
840                 /* Send module names, split at 509 length */
841                 std::string item = "*";
842                 std::string line = "CAPAB MODULES ";
843                 while ((item = modulelist.GetToken()) != "")
844                 {
845                         if (line.length() + item.length() + 1 > 509)
846                         {
847                                 this->WriteLine(line);
848                                 line = "CAPAB MODULES ";
849                         }
850
851                         if (line != "CAPAB MODULES ")
852                                 line.append(",");
853
854                         line.append(item);
855                 }
856                 if (line != "CAPAB MODULES ")
857                         this->WriteLine(line);
858
859                 int ip6 = 0;
860                 int ip6support = 0;
861 #ifdef IPV6
862                 ip6 = 1;
863 #endif
864 #ifdef SUPPORT_IP6LINKS
865                 ip6support = 1;
866 #endif
867                 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));
868
869                 this->WriteLine("CAPAB END");
870         }
871
872         /* Check a comma seperated list for an item */
873         bool HasItem(const std::string &list, const std::string &item)
874         {
875                 irc::commasepstream seplist(list);
876
877                 std::string item2 = "*";
878                 while ((item2 = seplist.GetToken()) != "")
879                 {
880                         if (item2 == item)
881                                 return true;
882                 }
883
884                 return false;
885         }
886
887         /* Isolate and return the elements that are different between two comma seperated lists */
888         std::string ListDifference(const std::string &one, const std::string &two)
889         {
890                 irc::commasepstream list_one(one);
891                 std::string item = "*";
892                 std::string result = "";
893                 while ((item = list_one.GetToken()) != "")
894                 {
895                         if (!HasItem(two, item))
896                         {
897                                 result.append(" ");
898                                 result.append(item);
899                         }
900                 }
901                 return result;
902         }
903
904         bool Capab(const std::deque<std::string> &params)
905         {
906                 if (params.size() < 1)
907                 {
908                         this->WriteLine("ERROR :Invalid number of parameters for CAPAB - Mismatched version");
909                         return false;
910                 }
911
912                 if (params[0] == "START")
913                 {
914                         this->ModuleList = "";
915                         this->CapKeys.clear();
916                 }
917                 else if (params[0] == "END")
918                 {
919                         std::string reason = "";
920                         int ip6support = 0;
921 #ifdef SUPPORT_IP6LINKS
922                         ip6support = 1;
923 #endif
924                         /* Compare ModuleList and check CapKeys...
925                          * Maybe this could be tidier? -- Brain
926                          */
927                         if ((this->ModuleList != this->MyCapabilities()) && (this->ModuleList.length()))
928                         {
929                                 std::string diff = ListDifference(this->ModuleList, this->MyCapabilities());
930                                 if (!diff.length())
931                                 {
932                                         diff = "your server:" + ListDifference(this->MyCapabilities(), this->ModuleList);
933                                 }
934                                 else
935                                 {
936                                         diff = "this server:" + diff;
937                                 }
938                                 if (diff.length() == 12)
939                                         reason = "Module list in CAPAB is not alphabetically ordered, cannot compare lists.";
940                                 else
941                                         reason = "Modules loaded on these servers are not correctly matched, these modules are not loaded on " + diff;
942                         }
943
944                         if (((this->CapKeys.find("IP6SUPPORT") == this->CapKeys.end()) && (ip6support)) || ((this->CapKeys.find("IP6SUPPORT") != this->CapKeys.end()) && (this->CapKeys.find("IP6SUPPORT")->second != ConvToStr(ip6support))))
945                                 reason = "We don't both support linking to IPV6 servers";
946
947                         if (((this->CapKeys.find("IP6NATIVE") != this->CapKeys.end()) && (this->CapKeys.find("IP6NATIVE")->second == "1")) && (!ip6support))
948                                 reason = "The remote server is IPV6 native, and we don't support linking to IPV6 servers";
949
950                         if (((this->CapKeys.find("NICKMAX") == this->CapKeys.end()) || ((this->CapKeys.find("NICKMAX") != this->CapKeys.end()) && (this->CapKeys.find("NICKMAX")->second != ConvToStr(NICKMAX)))))
951                                 reason = "Maximum nickname lengths differ or remote nickname length not specified";
952
953                         if (((this->CapKeys.find("PROTOCOL") == this->CapKeys.end()) || ((this->CapKeys.find("PROTOCOL") != this->CapKeys.end()) && (this->CapKeys.find("PROTOCOL")->second != ConvToStr(ProtocolVersion)))))
954                         {
955                                 if (this->CapKeys.find("PROTOCOL") != this->CapKeys.end())
956                                 {
957                                         reason = "Mismatched protocol versions "+this->CapKeys.find("PROTOCOL")->second+" and "+ConvToStr(ProtocolVersion);
958                                 }
959                                 else
960                                 {
961                                         reason = "Protocol version not specified";
962                                 }
963                         }
964
965                         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))))
966                                 reason = "We don't both have halfop support enabled/disabled identically";
967
968                         if (((this->CapKeys.find("IDENTMAX") == this->CapKeys.end()) || ((this->CapKeys.find("IDENTMAX") != this->CapKeys.end()) && (this->CapKeys.find("IDENTMAX")->second != ConvToStr(IDENTMAX)))))
969                                 reason = "Maximum ident lengths differ or remote ident length not specified";
970
971                         if (((this->CapKeys.find("CHANMAX") == this->CapKeys.end()) || ((this->CapKeys.find("CHANMAX") != this->CapKeys.end()) && (this->CapKeys.find("CHANMAX")->second != ConvToStr(CHANMAX)))))
972                                 reason = "Maximum channel lengths differ or remote channel length not specified";
973
974                         if (((this->CapKeys.find("MAXMODES") == this->CapKeys.end()) || ((this->CapKeys.find("MAXMODES") != this->CapKeys.end()) && (this->CapKeys.find("MAXMODES")->second != ConvToStr(MAXMODES)))))
975                                 reason = "Maximum modes per line differ or remote modes per line not specified";
976
977                         if (((this->CapKeys.find("MAXQUIT") == this->CapKeys.end()) || ((this->CapKeys.find("MAXQUIT") != this->CapKeys.end()) && (this->CapKeys.find("MAXQUIT")->second != ConvToStr(MAXQUIT)))))
978                                 reason = "Maximum quit lengths differ or remote quit length not specified";
979
980                         if (((this->CapKeys.find("MAXTOPIC") == this->CapKeys.end()) || ((this->CapKeys.find("MAXTOPIC") != this->CapKeys.end()) && (this->CapKeys.find("MAXTOPIC")->second != ConvToStr(MAXTOPIC)))))
981                                 reason = "Maximum topic lengths differ or remote topic length not specified";
982
983                         if (((this->CapKeys.find("MAXKICK") == this->CapKeys.end()) || ((this->CapKeys.find("MAXKICK") != this->CapKeys.end()) && (this->CapKeys.find("MAXKICK")->second != ConvToStr(MAXKICK)))))
984                                 reason = "Maximum kick lengths differ or remote kick length not specified";
985
986                         if (((this->CapKeys.find("MAXGECOS") == this->CapKeys.end()) || ((this->CapKeys.find("MAXGECOS") != this->CapKeys.end()) && (this->CapKeys.find("MAXGECOS")->second != ConvToStr(MAXGECOS)))))
987                                 reason = "Maximum GECOS (fullname) lengths differ or remote GECOS length not specified";
988
989                         if (((this->CapKeys.find("MAXAWAY") == this->CapKeys.end()) || ((this->CapKeys.find("MAXAWAY") != this->CapKeys.end()) && (this->CapKeys.find("MAXAWAY")->second != ConvToStr(MAXAWAY)))))
990                                 reason = "Maximum awaymessage lengths differ or remote awaymessage length not specified";
991
992                         if (reason.length())
993                         {
994                                 this->WriteLine("ERROR :CAPAB negotiation failed: "+reason);
995                                 return false;
996                         }
997                 }
998                 else if ((params[0] == "MODULES") && (params.size() == 2))
999                 {
1000                         if (!this->ModuleList.length())
1001                         {
1002                                 this->ModuleList.append(params[1]);
1003                         }
1004                         else
1005                         {
1006                                 this->ModuleList.append(",");
1007                                 this->ModuleList.append(params[1]);
1008                         }
1009                 }
1010                 else if ((params[0] == "CAPABILITIES") && (params.size() == 2))
1011                 {
1012                         irc::tokenstream capabs(params[1]);
1013                         std::string item = "*";
1014                         while ((item = capabs.GetToken()) != "")
1015                         {
1016                                 /* Process each key/value pair */
1017                                 std::string::size_type equals = item.rfind('=');
1018                                 if (equals != std::string::npos)
1019                                 {
1020                                         std::string var = item.substr(0, equals);
1021                                         std::string value = item.substr(equals+1, item.length());
1022                                         this->Instance->Log(DEBUG,"Key='%s' Value='%s'",var.c_str(),value.c_str());
1023                                         CapKeys[var] = value;
1024                                 }
1025                         }
1026                 }
1027
1028                 return true;
1029         }
1030
1031         /** This function forces this server to quit, removing this server
1032          * and any users on it (and servers and users below that, etc etc).
1033          * It's very slow and pretty clunky, but luckily unless your network
1034          * is having a REAL bad hair day, this function shouldnt be called
1035          * too many times a month ;-)
1036          */
1037         void SquitServer(std::string &from, TreeServer* Current)
1038         {
1039                 /* recursively squit the servers attached to 'Current'.
1040                  * We're going backwards so we don't remove users
1041                  * while we still need them ;)
1042                  */
1043                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
1044                 {
1045                         TreeServer* recursive_server = Current->GetChild(q);
1046                         this->SquitServer(from,recursive_server);
1047                 }
1048                 /* Now we've whacked the kids, whack self */
1049                 num_lost_servers++;
1050                 num_lost_users += Current->QuitUsers(from);
1051         }
1052
1053         /** This is a wrapper function for SquitServer above, which
1054          * does some validation first and passes on the SQUIT to all
1055          * other remaining servers.
1056          */
1057         void Squit(TreeServer* Current, const std::string &reason)
1058         {
1059                 if ((Current) && (Current != Utils->TreeRoot))
1060                 {
1061                         Event rmode((char*)Current->GetName().c_str(), (Module*)Utils->Creator, "lost_server");
1062                         rmode.Send(Instance);
1063
1064                         std::deque<std::string> params;
1065                         params.push_back(Current->GetName());
1066                         params.push_back(":"+reason);
1067                         Utils->DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
1068                         if (Current->GetParent() == Utils->TreeRoot)
1069                         {
1070                                 this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
1071                         }
1072                         else
1073                         {
1074                                 this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
1075                         }
1076                         num_lost_servers = 0;
1077                         num_lost_users = 0;
1078                         std::string from = Current->GetParent()->GetName()+" "+Current->GetName();
1079                         SquitServer(from, Current);
1080                         Current->Tidy();
1081                         Current->GetParent()->DelChild(Current);
1082                         DELETE(Current);
1083                         this->Instance->WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
1084                 }
1085                 else
1086                 {
1087                         Instance->Log(DEFAULT,"Squit from unknown server");
1088                 }
1089         }
1090
1091         /** FMODE command - server mode with timestamp checks */
1092         bool ForceMode(const std::string &source, std::deque<std::string> &params)
1093         {
1094                 /* Chances are this is a 1.0 FMODE without TS */
1095                 if (params.size() < 3)
1096                 {
1097                         this->WriteLine("ERROR :Version 1.0 FMODE sent to version 1.1 server");
1098                         return false;
1099                 }
1100                 
1101                 bool smode = false;
1102                 std::string sourceserv;
1103
1104                 /* Are we dealing with an FMODE from a user, or from a server? */
1105                 userrec* who = this->Instance->FindNick(source);
1106                 if (who)
1107                 {
1108                         /* FMODE from a user, set sourceserv to the users server name */
1109                         sourceserv = who->server;
1110                 }
1111                 else
1112                 {
1113                         /* FMODE from a server, create a fake user to receive mode feedback */
1114                         who = new userrec(this->Instance);
1115                         who->SetFd(FD_MAGIC_NUMBER);
1116                         smode = true;           /* Setting this flag tells us we should free the userrec later */
1117                         sourceserv = source;    /* Set sourceserv to the actual source string */
1118                 }
1119                 const char* modelist[64];
1120                 time_t TS = 0;
1121                 int n = 0;
1122                 memset(&modelist,0,sizeof(modelist));
1123                 for (unsigned int q = 0; (q < params.size()) && (q < 64); q++)
1124                 {
1125                         if (q == 1)
1126                         {
1127                                 /* The timestamp is in this position.
1128                                  * We don't want to pass that up to the
1129                                  * server->client protocol!
1130                                  */
1131                                 TS = atoi(params[q].c_str());
1132                         }
1133                         else
1134                         {
1135                                 /* Everything else is fine to append to the modelist */
1136                                 modelist[n++] = params[q].c_str();
1137                         }
1138                                 
1139                 }
1140                 /* Extract the TS value of the object, either userrec or chanrec */
1141                 userrec* dst = this->Instance->FindNick(params[0]);
1142                 chanrec* chan = NULL;
1143                 time_t ourTS = 0;
1144                 if (dst)
1145                 {
1146                         ourTS = dst->age;
1147                 }
1148                 else
1149                 {
1150                         chan = this->Instance->FindChan(params[0]);
1151                         if (chan)
1152                         {
1153                                 ourTS = chan->age;
1154                         }
1155                         else
1156                                 /* Oops, channel doesnt exist! */
1157                                 return true;
1158                 }
1159
1160                 /* TS is equal: Merge the mode changes, use voooodoooooo on modes
1161                  * with parameters.
1162                  */
1163                 if (TS == ourTS)
1164                 {
1165                         Instance->Log(DEBUG,"Entering TS equality check");
1166                         ModeHandler* mh = NULL;
1167                         unsigned long paramptr = 3;
1168                         std::string to_bounce = "";
1169                         std::string to_keep = "";
1170                         std::vector<std::string> params_to_keep;
1171                         std::string params_to_bounce = "";
1172                         bool adding = true;
1173                         char cur_change = 1;
1174                         char old_change = 0;
1175                         char old_bounce_change = 0;
1176                         /* Merge modes, basically do special stuff to mode with params */
1177                         for (std::string::iterator x = params[2].begin(); x != params[2].end(); x++)
1178                         {
1179                                 switch (*x)
1180                                 {
1181                                         case '-':
1182                                                 adding = false;
1183                                         break;
1184                                         case '+':
1185                                                 adding = true;
1186                                         break;
1187                                         default:
1188                                                 if (adding)
1189                                                 {
1190                                                         /* We only care about whats being set,
1191                                                          * not whats being unset
1192                                                          */
1193                                                         mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1194
1195                                                         if ((mh) && (mh->GetNumParams(adding) > 0) && (!mh->IsListMode()))
1196                                                         {
1197                                                                 /* We only want to do special things to
1198                                                                  * modes with parameters, we are going to rewrite
1199                                                                  * those parameters
1200                                                                  */
1201                                                                 ModePair ret;
1202                                                                 adding ? cur_change = '+' : cur_change = '-';
1203
1204                                                                 ret = mh->ModeSet(smode ? NULL : who, dst, chan, params[paramptr]);
1205
1206                                                                 /* The mode is set here, check which we should keep */
1207                                                                 if (ret.first)
1208                                                                 {
1209                                                                         bool which_to_keep = mh->CheckTimeStamp(TS, ourTS, params[paramptr], ret.second, chan);
1210
1211                                                                         if (which_to_keep == true)
1212                                                                         {
1213                                                                                 /* Keep ours, bounce theirs:
1214                                                                                  * Send back ours to them and
1215                                                                                  * drop their mode changs
1216                                                                                  */
1217                                                                                 adding ? cur_change = '+' : cur_change = '-';
1218                                                                                 if (cur_change != old_bounce_change)
1219                                                                                         to_bounce += cur_change;
1220                                                                                 to_bounce += *x;
1221                                                                                 old_bounce_change = cur_change;
1222
1223                                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1224                                                                                         params_to_bounce.append(" ").append(ret.second);
1225                                                                         }
1226                                                                         else
1227                                                                         {
1228                                                                                 /* Keep theirs: Accept their mode change,
1229                                                                                  * do nothing else
1230                                                                                  */
1231                                                                                 adding ? cur_change = '+' : cur_change = '-';
1232                                                                                 if (cur_change != old_change)
1233                                                                                         to_keep += cur_change;
1234                                                                                 to_keep += *x;
1235                                                                                 old_change = cur_change;
1236
1237                                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1238                                                                                         params_to_keep.push_back(params[paramptr]);
1239                                                                         }
1240                                                                 }
1241                                                                 else
1242                                                                 {
1243                                                                         /* Mode isnt set here, we want it */
1244                                                                         adding ? cur_change = '+' : cur_change = '-';
1245                                                                         if (cur_change != old_change)
1246                                                                                 to_keep += cur_change;
1247                                                                         to_keep += *x;
1248                                                                         old_change = cur_change;
1249
1250                                                                         if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1251                                                                                 params_to_keep.push_back(params[paramptr]);
1252                                                                 }
1253
1254                                                                 paramptr++;
1255                                                         }
1256                                                         else
1257                                                         {
1258                                                                 mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1259
1260                                                                 if (mh)
1261                                                                 {
1262                                                                         adding ? cur_change = '+' : cur_change = '-';
1263         
1264                                                                         /* Just keep this, safe to merge with no checks
1265                                                                          * it has no parameters
1266                                                                          */
1267         
1268                                                                         if (cur_change != old_change)
1269                                                                                 to_keep += cur_change;
1270                                                                         to_keep += *x;
1271                                                                         old_change = cur_change;
1272         
1273                                                                         if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1274                                                                         {
1275                                                                                 Instance->Log(DEBUG,"Mode removal %d %d",adding, mh->GetNumParams(adding));
1276                                                                                 params_to_keep.push_back(params[paramptr++]);
1277                                                                         }
1278                                                                 }
1279                                                         }
1280                                                 }
1281                                                 else
1282                                                 {
1283                                                         mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1284
1285                                                         if (mh)
1286                                                         {
1287                                                                 /* Taking a mode away */
1288                                                                 adding ? cur_change = '+' : cur_change = '-';
1289
1290                                                                 if (cur_change != old_change)
1291                                                                         to_keep += cur_change;
1292                                                                 to_keep += *x;
1293                                                                 old_change = cur_change;
1294
1295                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1296                                                                         params_to_keep.push_back(params[paramptr++]);
1297                                                         }
1298                                                 }
1299                                         break;
1300                                 }
1301                         }
1302
1303                         if (to_bounce.length())
1304                         {
1305                                 std::deque<std::string> newparams;
1306                                 newparams.push_back(params[0]);
1307                                 newparams.push_back(ConvToStr(ourTS));
1308                                 newparams.push_back(to_bounce+params_to_bounce);
1309                                 Instance->Log(DEBUG,"BOUNCE BACK: %s",(to_bounce+params_to_bounce).c_str());
1310                                 Utils->DoOneToOne(this->Instance->Config->ServerName,"FMODE",newparams,sourceserv);
1311                         }
1312
1313                         if (to_keep.length())
1314                         {
1315                                 unsigned int n = 2;
1316                                 unsigned int q = 0;
1317                                 modelist[0] = params[0].c_str();
1318                                 modelist[1] = to_keep.c_str();
1319
1320                                 if (params_to_keep.size() > 0)
1321                                 {
1322                                         for (q = 0; (q < params_to_keep.size()) && (q < 64); q++)
1323                                         {
1324                                                 Instance->Log(DEBUG,"KEEP Item %d of %d: %s", q, params_to_keep.size(), params_to_keep[q].c_str());
1325                                                 modelist[n++] = params_to_keep[q].c_str();
1326                                         }
1327                                 }
1328
1329                                 if (smode)
1330                                 {
1331                                         Instance->Log(DEBUG,"Send mode");
1332                                         this->Instance->SendMode(modelist, n, who);
1333                                 }
1334                                 else
1335                                 {
1336                                         Instance->Log(DEBUG,"Send mode client");
1337                                         this->Instance->CallCommandHandler("MODE", modelist, n, who);
1338                                 }
1339
1340                                 /* HOT POTATO! PASS IT ON! */
1341                                 Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv);
1342                         }
1343                 }
1344                 else
1345                 /* U-lined servers always win regardless of their TS */
1346                 if ((TS > ourTS) && (!this->Instance->ULine(source.c_str())))
1347                 {
1348                         /* Bounce the mode back to its sender.* We use our lower TS, so the other end
1349                          * SHOULD accept it, if its clock is right.
1350                          *
1351                          * NOTE: We should check that we arent bouncing anything thats already set at this end.
1352                          * If we are, bounce +ourmode to 'reinforce' it. This prevents desyncs.
1353                          * e.g. They send +l 50, we have +l 10 set. rather than bounce -l 50, we bounce +l 10.
1354                          *
1355                          * Thanks to jilles for pointing out this one-hell-of-an-issue before i even finished
1356                          * writing the code. It took me a while to come up with this solution.
1357                          *
1358                          * XXX: BE SURE YOU UNDERSTAND THIS CODE FULLY BEFORE YOU MESS WITH IT.
1359                          */
1360
1361                         std::deque<std::string> newparams;      /* New parameter list we send back */
1362                         newparams.push_back(params[0]);         /* Target, user or channel */
1363                         newparams.push_back(ConvToStr(ourTS));  /* Timestamp value of the target */
1364                         newparams.push_back("");                /* This contains the mode string. For now
1365                                                                  * it's empty, we fill it below.
1366                                                                  */
1367
1368                         /* Intelligent mode bouncing. Don't just invert, reinforce any modes which are already
1369                          * set to avoid a desync here.
1370                          */
1371                         std::string modebounce = "";
1372                         bool adding = true;
1373                         unsigned int t = 3;
1374                         ModeHandler* mh = NULL;
1375                         char cur_change = 1;
1376                         char old_change = 0;
1377                         for (std::string::iterator x = params[2].begin(); x != params[2].end(); x++)
1378                         {
1379                                 /* Iterate over all mode chars in the sent set */
1380                                 switch (*x)
1381                                 {
1382                                         /* Adding or subtracting modes? */
1383                                         case '-':
1384                                                 adding = false;
1385                                         break;
1386                                         case '+':
1387                                                 adding = true;
1388                                         break;
1389                                         default:
1390                                                 /* Find the mode handler for this mode */
1391                                                 mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1392
1393                                                 /* Got a mode handler?
1394                                                  * This also prevents us bouncing modes we have no handler for.
1395                                                  */
1396                                                 if (mh)
1397                                                 {
1398                                                         ModePair ret;
1399                                                         std::string p = "";
1400
1401                                                         /* Does the mode require a parameter right now?
1402                                                          * If it does, fetch it if we can
1403                                                          */
1404                                                         if ((mh->GetNumParams(adding) > 0) && (t < params.size()))
1405                                                                 p = params[t++];
1406
1407                                                         /* Call the ModeSet method to determine if its set with the
1408                                                          * given parameter here or not.
1409                                                          */
1410                                                         ret = mh->ModeSet(smode ? NULL : who, dst, chan, p);
1411
1412                                                         /* XXX: Really. Dont ask.
1413                                                          * Determine from if its set combined with what the current
1414                                                          * 'state' is (adding or not) as to wether we should 'invert'
1415                                                          * or 'reinforce' the mode change
1416                                                          */
1417                                                         (!ret.first ? (adding ? cur_change = '-' : cur_change = '+') : (!adding ? cur_change = '-' : cur_change = '+'));
1418
1419                                                         /* Quickly determine if we have 'flipped' from + to -,
1420                                                          * or - to +, to prevent unneccessary +/- chars in the
1421                                                          * output string that waste bandwidth
1422                                                          */
1423                                                         if (cur_change != old_change)
1424                                                                 modebounce += cur_change;
1425                                                         old_change = cur_change;
1426
1427                                                         /* Add the mode character to the output string */
1428                                                         modebounce += mh->GetModeChar();
1429
1430                                                         /* We got a parameter back from ModeHandler::ModeSet,
1431                                                          * are we supposed to be sending one out right now?
1432                                                          */
1433                                                         if (ret.second.length())
1434                                                         {
1435                                                                 if (mh->GetNumParams(cur_change == '+') > 0)
1436                                                                         /* Yes we're supposed to be sending out
1437                                                                          * the parameter. Make sure it goes
1438                                                                          */
1439                                                                         newparams.push_back(ret.second);
1440                                                         }
1441
1442                                                 }
1443                                         break;
1444                                 }
1445                         }
1446                         
1447                         /* Update the parameters for FMODE with the new 'bounced' string */
1448                         newparams[2] = modebounce;
1449                         /* Only send it back the way it came, no need to send it anywhere else */
1450                         Utils->DoOneToOne(this->Instance->Config->ServerName,"FMODE",newparams,sourceserv);
1451                         Instance->Log(DEBUG,"FMODE bounced intelligently, our TS less than theirs and the other server is NOT a uline.");
1452                 }
1453                 else
1454                 {
1455                         Instance->Log(DEBUG,"Allow modes, TS lower for sender");
1456                         /* The server was ulined, but something iffy is up with the TS.
1457                          * Sound the alarm bells!
1458                          */
1459                         if ((this->Instance->ULine(sourceserv.c_str())) && (TS > ourTS))
1460                         {
1461                                 this->Instance->WriteOpers("\2WARNING!\2 U-Lined server '%s' has bad TS for '%s' (accepted change): \2SYNC YOUR CLOCKS\2 to avoid this notice",sourceserv.c_str(),params[0].c_str());
1462                         }
1463                         /* Allow the mode, route it to either server or user command handling */
1464                         if (smode)
1465                                 this->Instance->SendMode(modelist,n,who);
1466                         else
1467                                 this->Instance->CallCommandHandler("MODE", modelist, n, who);
1468
1469                         /* HOT POTATO! PASS IT ON! */
1470                         Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv);
1471                 }
1472                 /* Are we supposed to free the userrec? */
1473                 if (smode)
1474                         DELETE(who);
1475
1476                 return true;
1477         }
1478
1479         /** FTOPIC command */
1480         bool ForceTopic(const std::string &source, std::deque<std::string> &params)
1481         {
1482                 if (params.size() != 4)
1483                         return true;
1484                 time_t ts = atoi(params[1].c_str());
1485                 std::string nsource = source;
1486
1487                 chanrec* c = this->Instance->FindChan(params[0]);
1488                 if (c)
1489                 {
1490                         if ((ts >= c->topicset) || (!*c->topic))
1491                         {
1492                                 std::string oldtopic = c->topic;
1493                                 strlcpy(c->topic,params[3].c_str(),MAXTOPIC);
1494                                 strlcpy(c->setby,params[2].c_str(),NICKMAX-1);
1495                                 c->topicset = ts;
1496                                 /* if the topic text is the same as the current topic,
1497                                  * dont bother to send the TOPIC command out, just silently
1498                                  * update the set time and set nick.
1499                                  */
1500                                 if (oldtopic != params[3])
1501                                 {
1502                                         userrec* user = this->Instance->FindNick(source);
1503                                         if (!user)
1504                                         {
1505                                                 c->WriteChannelWithServ(source.c_str(), "TOPIC %s :%s", c->name, c->topic);
1506                                         }
1507                                         else
1508                                         {
1509                                                 c->WriteChannel(user, "TOPIC %s :%s", c->name, c->topic);
1510                                                 nsource = user->server;
1511                                         }
1512                                         /* all done, send it on its way */
1513                                         params[3] = ":" + params[3];
1514                                         Utils->DoOneToAllButSender(source,"FTOPIC",params,nsource);
1515                                 }
1516                         }
1517                         
1518                 }
1519
1520                 return true;
1521         }
1522
1523         /** FJOIN, similar to TS6 SJOIN, but not quite. */
1524         bool ForceJoin(const std::string &source, std::deque<std::string> &params)
1525         {
1526                 /* 1.1 FJOIN works as follows:
1527                  *
1528                  * Each FJOIN is sent along with a timestamp, and the side with the lowest
1529                  * timestamp 'wins'. From this point on we will refer to this side as the
1530                  * winner. The side with the higher timestamp loses, from this point on we
1531                  * will call this side the loser or losing side. This should be familiar to
1532                  * anyone who's dealt with dreamforge or TS6 before.
1533                  *
1534                  * When two sides of a split heal and this occurs, the following things
1535                  * will happen:
1536                  *
1537                  * If the timestamps are exactly equal, both sides merge their privilages
1538                  * and users, as in InspIRCd 1.0 and ircd2.8. The channels have not been
1539                  * re-created during a split, this is safe to do.
1540                  *
1541                  *
1542                  * If the timestamps are NOT equal, the losing side removes all privilage
1543                  * modes from all of its users that currently exist in the channel, before
1544                  * introducing new users into the channel which are listed in the FJOIN
1545                  * command's parameters. This means, all modes +ohv, and privilages added
1546                  * by modules, such as +qa. The losing side then LOWERS its timestamp value
1547                  * of the channel to match that of the winning side, and the modes of the
1548                  * users of the winning side are merged in with the losing side. The loser
1549                  * then sends out a set of FMODE commands which 'confirm' that it just
1550                  * removed all privilage modes from its existing users, which allows for
1551                  * services packages to still work correctly without needing to know the
1552                  * timestamping rules which InspIRCd follows. In TS6 servers this is always
1553                  * a problem, and services packages must contain code which explicitly
1554                  * behaves as TS6 does, removing ops from the losing side of a split where
1555                  * neccessary within its internal records, as this state information is
1556                  * not explicitly echoed out in that protocol.
1557                  *
1558                  * The winning side on the other hand will ignore all user modes from the
1559                  * losing side, so only its own modes get applied. Life is simple for those
1560                  * who succeed at internets. :-)
1561                  *
1562                  * NOTE: Unlike TS6 and dreamforge and other protocols which have SJOIN,
1563                  * FJOIN does not contain the simple-modes such as +iklmnsp. Why not,
1564                  * you ask? Well, quite simply because we don't need to. They'll be sent
1565                  * after the FJOIN by FMODE, and FMODE is timestamped, so in the event
1566                  * the losing side sends any modes for the channel which shouldnt win,
1567                  * they wont as their timestamp will be too high :-)
1568                  */
1569
1570                 if (params.size() < 3)
1571                         return true;
1572
1573                 char first[MAXBUF];             /* The first parameter of the mode command */
1574                 char modestring[MAXBUF];        /* The mode sequence (2nd parameter) of the mode command */
1575                 char* mode_users[127];          /* The values used by the mode command */
1576                 memset(&mode_users,0,sizeof(mode_users));       /* Initialize mode parameters */
1577                 mode_users[0] = first;          /* Set this up to be our on-stack value */
1578                 mode_users[1] = modestring;     /* Same here as above */
1579                 strcpy(modestring,"+");         /* Initialize the mode sequence to just '+' */
1580                 unsigned int modectr = 2;       /* Pointer to the third mode parameter (e.g. the one after the +-sequence) */
1581                 
1582                 userrec* who = NULL;                    /* User we are currently checking */
1583                 std::string channel = params[0];        /* Channel name, as a string */
1584                 time_t TS = atoi(params[1].c_str());    /* Timestamp given to us for remote side */
1585                 
1586                 /* Try and find the channel */
1587                 chanrec* chan = this->Instance->FindChan(channel);
1588
1589                 /* Initialize channel name in the mode parameters */
1590                 strlcpy(mode_users[0],channel.c_str(),MAXBUF);
1591
1592                 /* default TS is a high value, which if we dont have this
1593                  * channel will let the other side apply their modes.
1594                  */
1595                 time_t ourTS = time(NULL)+600;
1596
1597                 /* Does this channel exist? if it does, get its REAL timestamp */
1598                 if (chan)
1599                         ourTS = chan->age;
1600
1601                 /* In 1.1, if they have the newer channel, we immediately clear
1602                  * all status modes from our users. We then accept their modes.
1603                  * If WE have the newer channel its the other side's job to do this.
1604                  * Note that this causes the losing server to send out confirming
1605                  * FMODE lines.
1606                  */
1607                 if (ourTS > TS)
1608                 {
1609                         std::deque<std::string> param_list;
1610
1611                         if (chan)
1612                                 chan->age = TS;
1613
1614                         /* Lower the TS here */
1615                         if (Utils->AnnounceTSChange && chan)
1616                                 chan->WriteChannelWithServ(Instance->Config->ServerName,
1617                                 "NOTICE %s :TS for %s changed from %lu to %lu", chan->name, chan->name, ourTS, TS);
1618                         ourTS = TS;
1619
1620                         param_list.push_back(channel);
1621                         /* Zap all the privilage modes on our side */
1622                         this->RemoveStatus(Instance->Config->ServerName, param_list);
1623                 }
1624
1625                 /* Put the final parameter of the FJOIN into a tokenstream ready to split it */
1626                 irc::tokenstream users(params[2]);
1627                 std::string item = "*";
1628
1629                 /* do this first, so our mode reversals are correctly received by other servers
1630                  * if there is a TS collision.
1631                  */
1632                 params[2] = ":" + params[2];
1633                 Utils->DoOneToAllButSender(source,"FJOIN",params,source);
1634
1635                 /* Now, process every 'prefixes,nick' pair */
1636                 while (item != "")
1637                 {
1638                         /* Find next user */
1639                         item = users.GetToken();
1640
1641                         const char* usr = item.c_str();
1642
1643                         /* Safety check just to make sure someones not sent us an FJOIN full of spaces
1644                          * (is this even possible?) */
1645                         if (usr && *usr)
1646                         {
1647                                 const char* permissions = usr;
1648                                 int ntimes = 0;
1649                                 char* nm = new char[MAXBUF];
1650                                 char* tnm = nm;
1651
1652                                 /* Iterate through all the prefix values, convert them from prefixes
1653                                  * to mode letters, and append them to the mode sequence
1654                                  */
1655                                 while ((*permissions) && (*permissions != ',') && (ntimes < MAXBUF))
1656                                 {
1657                                         ModeHandler* mh = Instance->Modes->FindPrefix(*permissions);
1658                                         if (mh)
1659                                         {
1660                                                 /* This is a valid prefix */
1661                                                 ntimes++;
1662                                                 *tnm++ = mh->GetModeChar();
1663                                         }
1664                                         else
1665                                         {
1666                                                 /* Not a valid prefix...
1667                                                  * danger bill bobbertson! (that's will robinsons older brother ;-) ...)
1668                                                  */
1669                                                 this->Instance->WriteOpers("ERROR: We received a user with an unknown prefix '%c'. Closed connection to avoid a desync.",*permissions);
1670                                                 this->WriteLine(std::string("ERROR :Invalid prefix '")+(*permissions)+"' in FJOIN");
1671                                                 return false;
1672                                         }
1673                                         usr++;
1674                                         permissions++;
1675                                 }
1676
1677                                 /* Null terminate modes */
1678                                 *tnm = 0;
1679                                 /* Advance past the comma, to the nick */
1680                                 usr++;
1681
1682                                 /* Check the user actually exists */
1683                                 who = this->Instance->FindNick(usr);
1684                                 if (who)
1685                                 {
1686                                         /* Did they get any modes? How many times? */
1687                                         strlcat(modestring, nm, MAXBUF);
1688                                         for (int k = 0; k < ntimes; k++)
1689                                                 mode_users[modectr++] = strdup(usr);
1690
1691                                         /* Free temporary buffer used for mode sequence */
1692                                         delete[] nm;
1693
1694                                         /* Check that the user's 'direction' is correct
1695                                          * based on the server sending the FJOIN. We must
1696                                          * check each nickname in turn, because the origin of
1697                                          * the FJOIN may be different to the origin of the nicks
1698                                          * in the command itself.
1699                                          */
1700                                         TreeServer* route_back_again = Utils->BestRouteTo(who->server);
1701                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
1702                                         {
1703                                                 /* Oh dear oh dear. */
1704                                                 Instance->Log(DEBUG,"Fake direction in FJOIN, user '%s'",who->nick);
1705                                                 continue;
1706                                         }
1707                                         /* Finally, we can actually place the user into the channel.
1708                                          * We're sure its right. Final answer, phone a friend.
1709                                          */
1710                                         chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "");
1711
1712                                         /* Have we already queued up MAXMODES modes with parameters
1713                                          * (+qaohv) ready to be sent to the server?
1714                                          */
1715                                         if (modectr >= (MAXMODES-1))
1716                                         {
1717                                                 /* Only actually give the users any status if we lost
1718                                                  * the FJOIN or drew (equal timestamps).
1719                                                  * It isn't actually possible for ourTS to be > TS here,
1720                                                  * only possible to actually have ourTS == TS, or
1721                                                  * ourTS < TS, because if we lost, we already lowered
1722                                                  * our TS above before we entered this loop. We only
1723                                                  * check >= as a safety measure, in case someone stuffed
1724                                                  * up. If someone DID stuff up, it was most likely me.
1725                                                  * Note: I do not like baseball bats in the face...
1726                                                  */
1727                                                 if (ourTS >= TS)
1728                                                 {
1729                                                         Instance->Log(DEBUG,"Our our channel newer than theirs, accepting their modes");
1730                                                         this->Instance->SendMode((const char**)mode_users,modectr,who);
1731
1732                                                         /* Something stuffed up, and for some reason, the timestamp is
1733                                                          * NOT lowered right now and should be. Lower it. Usually this
1734                                                          * code won't be executed, doubtless someone will remove it some
1735                                                          * day soon.
1736                                                          */
1737                                                         if (ourTS > TS)
1738                                                         {
1739                                                                 Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1740                                                                 chan->age = TS;
1741                                                                 ourTS = TS;
1742                                                         }
1743                                                 }
1744
1745                                                 /* Reset all this back to defaults, and
1746                                                  * free any ram we have left allocated.
1747                                                  */
1748                                                 strcpy(mode_users[1],"+");
1749                                                 for (unsigned int f = 2; f < modectr; f++)
1750                                                         free(mode_users[f]);
1751                                                 modectr = 2;
1752                                         }
1753                                 }
1754                                 else
1755                                 {
1756                                         /* Remember to free this */
1757                                         delete[] nm;
1758                                         /* If we got here, there's a nick in FJOIN which doesnt exist on this server.
1759                                          * We don't try to process the nickname here (that WOULD cause a segfault because
1760                                          * we'd be playing with null pointers) however, we DO pass the nickname on, just
1761                                          * in case somehow we're desynched, so that other users which might be able to see
1762                                          * the nickname get their fair chance to process it.
1763                                          */
1764                                         Instance->Log(SPARSE,"Warning! Invalid user in FJOIN to channel %s IGNORED", channel.c_str());
1765                                         continue;
1766                                 }
1767                         }
1768                 }
1769
1770                 /* there werent enough modes built up to flush it during FJOIN,
1771                  * or, there are a number left over. flush them out.
1772                  */
1773                 if ((modectr > 2) && (who) && (chan))
1774                 {
1775                         if (ourTS >= TS)
1776                         {
1777                                 /* Our channel is newer than theirs. Evil deeds must be afoot. */
1778                                 this->Instance->SendMode((const char**)mode_users,modectr,who);
1779                                 /* Yet again, we can't actually get a true value here, if everything else
1780                                  * is working as it should.
1781                                  */
1782                                 if (ourTS > TS)
1783                                 {
1784                                         Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1785                                         chan->age = TS;
1786                                         ourTS = TS;
1787                                 }
1788                         }
1789
1790                         /* Free anything we have left to free */
1791                         for (unsigned int f = 2; f < modectr; f++)
1792                                 free(mode_users[f]);
1793                 }
1794
1795                 /* All done. That wasnt so bad was it, you can wipe
1796                  * the sweat from your forehead now. :-)
1797                  */
1798                 return true;
1799         }
1800
1801         /** NICK command */
1802         bool IntroduceClient(const std::string &source, std::deque<std::string> &params)
1803         {
1804                 if (params.size() < 8)
1805                         return true;
1806                 if (params.size() > 8)
1807                 {
1808                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+"?)");
1809                         return true;
1810                 }
1811                 // NICK age nick host dhost ident +modes ip :gecos
1812                 //       0    1   2     3     4      5   6     7
1813                 time_t age = atoi(params[0].c_str());
1814                 
1815                 /* This used to have a pretty craq'y loop doing the same thing,
1816                  * now we just let the STL do the hard work (more efficiently)
1817                  */
1818                 std::string::size_type pos_after_plus = params[5].find_first_not_of('+');
1819                 if (pos_after_plus != std::string::npos)
1820                         params[5] = params[5].substr(pos_after_plus);
1821                 
1822                 const char* tempnick = params[1].c_str();
1823                 Instance->Log(DEBUG,"Introduce client %s!%s@%s",tempnick,params[4].c_str(),params[2].c_str());
1824                 
1825                 user_hash::iterator iter = this->Instance->clientlist.find(tempnick);
1826                 
1827                 if (iter != this->Instance->clientlist.end())
1828                 {
1829                         // nick collision
1830                         Instance->Log(DEBUG,"Nick collision on %s!%s@%s: %lu %lu",tempnick,params[4].c_str(),params[2].c_str(),(unsigned long)age,(unsigned long)iter->second->age);
1831                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+tempnick+" :Nickname collision");
1832                         userrec::QuitUser(this->Instance, iter->second, "Nickname collision");
1833                         return true;
1834                 }
1835
1836                 userrec* _new = new userrec(this->Instance);
1837                 this->Instance->clientlist[tempnick] = _new;
1838                 _new->SetFd(FD_MAGIC_NUMBER);
1839                 strlcpy(_new->nick, tempnick,NICKMAX-1);
1840                 strlcpy(_new->host, params[2].c_str(),63);
1841                 strlcpy(_new->dhost, params[3].c_str(),63);
1842                 _new->server = this->Instance->FindServerNamePtr(source.c_str());
1843                 strlcpy(_new->ident, params[4].c_str(),IDENTMAX);
1844                 strlcpy(_new->fullname, params[7].c_str(),MAXGECOS);
1845                 _new->registered = REG_ALL;
1846                 _new->signon = age;
1847                 
1848                 for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++)
1849                         _new->modes[(*v)-65] = 1;
1850
1851 #ifdef SUPPORT_IP6LINKS
1852                 if (params[6].find_first_of(":") != std::string::npos)
1853                         _new->SetSockAddr(AF_INET6, params[6].c_str(), 0);
1854                 else
1855 #endif
1856                         _new->SetSockAddr(AF_INET, params[6].c_str(), 0);
1857
1858                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
1859
1860                 params[7] = ":" + params[7];
1861                 Utils->DoOneToAllButSender(source,"NICK",params,source);
1862
1863                 // Increment the Source Servers User Count..
1864                 TreeServer* SourceServer = Utils->FindServer(source);
1865                 if (SourceServer)
1866                 {
1867                         Instance->Log(DEBUG,"Found source server of %s",_new->nick);
1868                         SourceServer->AddUserCount();
1869                 }
1870
1871                 FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
1872
1873                 return true;
1874         }
1875
1876         /** Send one or more FJOINs for a channel of users.
1877          * If the length of a single line is more than 480-NICKMAX
1878          * in length, it is split over multiple lines.
1879          */
1880         void SendFJoins(TreeServer* Current, chanrec* c)
1881         {
1882                 std::string buffer;
1883
1884                 Instance->Log(DEBUG,"Sending FJOINs to other server for %s",c->name);
1885                 char list[MAXBUF];
1886                 std::string individual_halfops = std::string(":")+this->Instance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age);
1887                 
1888                 size_t dlen, curlen;
1889                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1890                 int numusers = 0;
1891                 char* ptr = list + dlen;
1892
1893                 CUList *ulist = c->GetUsers();
1894                 std::string modes = "";
1895                 std::string params = "";
1896
1897                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1898                 {
1899                         // The first parameter gets a : before it
1900                         size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", c->GetAllPrefixChars(i->second), i->second->nick);
1901
1902                         curlen += ptrlen;
1903                         ptr += ptrlen;
1904
1905                         numusers++;
1906
1907                         if (curlen > (480-NICKMAX))
1908                         {
1909                                 buffer.append(list).append("\r\n");
1910
1911                                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1912                                 ptr = list + dlen;
1913                                 ptrlen = 0;
1914                                 numusers = 0;
1915                         }
1916                 }
1917
1918                 if (numusers)
1919                         buffer.append(list).append("\r\n");
1920
1921                 for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
1922                 {
1923                         modes.append("b");
1924                         params.append(" ").append(b->data);
1925
1926                         if (params.length() >= MAXMODES)
1927                         {
1928                                 /* Wrap at MAXMODES */
1929                                 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");
1930                                 modes = "";
1931                                 params = "";
1932                         }
1933                 }
1934
1935                 buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(c->ChanModes(true));
1936
1937                 /* Only send these if there are any */
1938                 if (!modes.empty())
1939                         buffer.append("\r\n").append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params);
1940
1941                 this->WriteLine(buffer);
1942         }
1943
1944         /** Send G, Q, Z and E lines */
1945         void SendXLines(TreeServer* Current)
1946         {
1947                 char data[MAXBUF];
1948                 std::string buffer;
1949                 std::string n = this->Instance->Config->ServerName;
1950                 const char* sn = n.c_str();
1951                 int iterations = 0;
1952                 /* Yes, these arent too nice looking, but they get the job done */
1953                 for (std::vector<ZLine*>::iterator i = Instance->XLines->zlines.begin(); i != Instance->XLines->zlines.end(); i++, iterations++)
1954                 {
1955                         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);
1956                         buffer.append(data);
1957                 }
1958                 for (std::vector<QLine*>::iterator i = Instance->XLines->qlines.begin(); i != Instance->XLines->qlines.end(); i++, iterations++)
1959                 {
1960                         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);
1961                         buffer.append(data);
1962                 }
1963                 for (std::vector<GLine*>::iterator i = Instance->XLines->glines.begin(); i != Instance->XLines->glines.end(); i++, iterations++)
1964                 {
1965                         snprintf(data,MAXBUF,":%s ADDLINE G %s %s %lu %lu :%s\r\n",sn,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1966                         buffer.append(data);
1967                 }
1968                 for (std::vector<ELine*>::iterator i = Instance->XLines->elines.begin(); i != Instance->XLines->elines.end(); i++, iterations++)
1969                 {
1970                         snprintf(data,MAXBUF,":%s ADDLINE E %s %s %lu %lu :%s\r\n",sn,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1971                         buffer.append(data);
1972                 }
1973                 for (std::vector<ZLine*>::iterator i = Instance->XLines->pzlines.begin(); i != Instance->XLines->pzlines.end(); i++, iterations++)
1974                 {
1975                         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);
1976                         buffer.append(data);
1977                 }
1978                 for (std::vector<QLine*>::iterator i = Instance->XLines->pqlines.begin(); i != Instance->XLines->pqlines.end(); i++, iterations++)
1979                 {
1980                         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);
1981                         buffer.append(data);
1982                 }
1983                 for (std::vector<GLine*>::iterator i = Instance->XLines->pglines.begin(); i != Instance->XLines->pglines.end(); i++, iterations++)
1984                 {
1985                         snprintf(data,MAXBUF,":%s ADDLINE G %s %s %lu %lu :%s\r\n",sn,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1986                         buffer.append(data);
1987                 }
1988                 for (std::vector<ELine*>::iterator i = Instance->XLines->pelines.begin(); i != Instance->XLines->pelines.end(); i++, iterations++)
1989                 {
1990                         snprintf(data,MAXBUF,":%s ADDLINE E %s %s %lu %lu :%s\r\n",sn,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
1991                         buffer.append(data);
1992                 }
1993
1994                 if (!buffer.empty())
1995                         this->WriteLine(buffer);
1996         }
1997
1998         /** Send channel modes and topics */
1999         void SendChannelModes(TreeServer* Current)
2000         {
2001                 char data[MAXBUF];
2002                 std::deque<std::string> list;
2003                 int iterations = 0;
2004                 std::string n = this->Instance->Config->ServerName;
2005                 const char* sn = n.c_str();
2006                 for (chan_hash::iterator c = this->Instance->chanlist.begin(); c != this->Instance->chanlist.end(); c++, iterations++)
2007                 {
2008                         SendFJoins(Current, c->second);
2009                         if (*c->second->topic)
2010                         {
2011                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
2012                                 this->WriteLine(data);
2013                         }
2014                         FOREACH_MOD_I(this->Instance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
2015                         list.clear();
2016                         c->second->GetExtList(list);
2017                         for (unsigned int j = 0; j < list.size(); j++)
2018                         {
2019                                 FOREACH_MOD_I(this->Instance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
2020                         }
2021                 }
2022         }
2023
2024         /** send all users and their oper state/modes */
2025         void SendUsers(TreeServer* Current)
2026         {
2027                 char data[MAXBUF];
2028                 std::deque<std::string> list;
2029                 std::string dataline;
2030                 int iterations = 0;
2031                 for (user_hash::iterator u = this->Instance->clientlist.begin(); u != this->Instance->clientlist.end(); u++, iterations++)
2032                 {
2033                         if (u->second->registered == REG_ALL)
2034                         {
2035                                 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);
2036                                 this->WriteLine(data);
2037                                 if (*u->second->oper)
2038                                 {
2039                                         snprintf(data,MAXBUF,":%s OPERTYPE %s", u->second->nick, u->second->oper);
2040                                         this->WriteLine(data);
2041                                 }
2042                                 if (*u->second->awaymsg)
2043                                 {
2044                                         snprintf(data,MAXBUF,":%s AWAY :%s", u->second->nick, u->second->awaymsg);
2045                                         this->WriteLine(data);
2046                                 }
2047                                 FOREACH_MOD_I(this->Instance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
2048                                 list.clear();
2049                                 u->second->GetExtList(list);
2050                                 for (unsigned int j = 0; j < list.size(); j++)
2051                                 {
2052                                         FOREACH_MOD_I(this->Instance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
2053                                 }
2054                         }
2055                 }
2056         }
2057
2058         /** This function is called when we want to send a netburst to a local
2059          * server. There is a set order we must do this, because for example
2060          * users require their servers to exist, and channels require their
2061          * users to exist. You get the idea.
2062          */
2063         void DoBurst(TreeServer* s)
2064         {
2065                 std::string burst = "BURST "+ConvToStr(time(NULL));
2066                 std::string endburst = "ENDBURST";
2067                 // Because by the end of the netburst, it  could be gone!
2068                 std::string name = s->GetName();
2069                 this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2"+name+"\2.");
2070                 this->WriteLine(burst);
2071                 /* send our version string */
2072                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" VERSION :"+this->Instance->GetVersionString());
2073                 /* Send server tree */
2074                 this->SendServers(Utils->TreeRoot,s,1);
2075                 /* Send users and their oper status */
2076                 this->SendUsers(s);
2077                 /* Send everything else (channel modes, xlines etc) */
2078                 this->SendChannelModes(s);
2079                 this->SendXLines(s);            
2080                 FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
2081                 this->WriteLine(endburst);
2082                 this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
2083         }
2084
2085         /** This function is called when we receive data from a remote
2086          * server. We buffer the data in a std::string (it doesnt stay
2087          * there for long), reading using InspSocket::Read() which can
2088          * read up to 16 kilobytes in one operation.
2089          *
2090          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
2091          * THE SOCKET OBJECT FOR US.
2092          */
2093         virtual bool OnDataReady()
2094         {
2095                 char* data = this->Read();
2096                 /* Check that the data read is a valid pointer and it has some content */
2097                 if (data && *data)
2098                 {
2099                         this->in_buffer.append(data);
2100                         /* While there is at least one new line in the buffer,
2101                          * do something useful (we hope!) with it.
2102                          */
2103                         while (in_buffer.find("\n") != std::string::npos)
2104                         {
2105                                 std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
2106                                 in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
2107                                 /* Use rfind here not find, as theres more
2108                                  * chance of the \r being near the end of the
2109                                  * string, not the start.
2110                                  */
2111                                 if (ret.find("\r") != std::string::npos)
2112                                         ret = in_buffer.substr(0,in_buffer.find("\r")-1);
2113                                 /* Process this one, abort if it
2114                                  * didnt return true.
2115                                  */
2116                                 if (this->ctx_in)
2117                                 {
2118                                         char out[1024];
2119                                         char result[1024];
2120                                         memset(result,0,1024);
2121                                         memset(out,0,1024);
2122                                         /* ERROR + CAPAB is still allowed unencryped */
2123                                         if ((ret.substr(0,7) != "ERROR :") && (ret.substr(0,6) != "CAPAB "))
2124                                         {
2125                                                 int nbytes = from64tobits(out, ret.c_str(), 1024);
2126                                                 if ((nbytes > 0) && (nbytes < 1024))
2127                                                 {
2128                                                         ctx_in->Decrypt(out, result, nbytes, 0);
2129                                                         for (int t = 0; t < nbytes; t++)
2130                                                         {
2131                                                                 if (result[t] == '\7')
2132                                                                 {
2133                                                                         /* We only need to stick a \0 on the
2134                                                                          * first \7, the rest will be lost
2135                                                                          */
2136                                                                         result[t] = 0;
2137                                                                         break;
2138                                                                 }
2139                                                         }
2140                                                         ret = result;
2141                                                 }
2142                                         }
2143                                 }
2144                                 if (!this->ProcessLine(ret))
2145                                 {
2146                                         return false;
2147                                 }
2148                         }
2149                         return true;
2150                 }
2151                 /* EAGAIN returns an empty but non-NULL string, so this
2152                  * evaluates to TRUE for EAGAIN but to FALSE for EOF.
2153                  */
2154                 return (data && !*data);
2155         }
2156
2157         int WriteLine(std::string line)
2158         {
2159                 Instance->Log(DEBUG,"OUT: %s",line.c_str());
2160                 if (this->ctx_out)
2161                 {
2162                         char result[10240];
2163                         char result64[10240];
2164                         if (this->keylength)
2165                         {
2166                                 // pad it to the key length
2167                                 int n = this->keylength - (line.length() % this->keylength);
2168                                 if (n)
2169                                         line.append(n,'\7');
2170                         }
2171                         unsigned int ll = line.length();
2172                         ctx_out->Encrypt(line.c_str(), result, ll, 0);
2173                         to64frombits((unsigned char*)result64,(unsigned char*)result,ll);
2174                         line = result64;
2175                 }
2176                 line.append("\r\n");
2177                 return this->Write(line);
2178         }
2179
2180         /* Handle ERROR command */
2181         bool Error(std::deque<std::string> &params)
2182         {
2183                 if (params.size() < 1)
2184                         return false;
2185                 this->Instance->SNO->WriteToSnoMask('l',"ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
2186                 /* we will return false to cause the socket to close. */
2187                 return false;
2188         }
2189
2190         /** remote MOTD. leet, huh? */
2191         bool Motd(const std::string &prefix, std::deque<std::string> &params)
2192         {
2193                 if (params.size() > 0)
2194                 {
2195                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2196                         {
2197                                 /* It's for our server */
2198                                 string_list results;
2199                                 userrec* source = this->Instance->FindNick(prefix);
2200
2201                                 if (source)
2202                                 {
2203                                         std::deque<std::string> par;
2204                                         par.push_back(prefix);
2205                                         par.push_back("");
2206
2207                                         if (!Instance->Config->MOTD.size())
2208                                         {
2209                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
2210                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2211                                                 return true;
2212                                         }
2213    
2214                                         par[1] = std::string("::")+Instance->Config->ServerName+" 375 "+source->nick+" :"+Instance->Config->ServerName+" message of the day";
2215                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2216    
2217                                         for (unsigned int i = 0; i < Instance->Config->MOTD.size(); i++)
2218                                         {
2219                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 372 "+source->nick+" :- "+Instance->Config->MOTD[i];
2220                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2221                                         }
2222      
2223                                         par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
2224                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2225                                 }
2226                         }
2227                         else
2228                         {
2229                                 /* Pass it on */
2230                                 userrec* source = this->Instance->FindNick(prefix);
2231                                 if (source)
2232                                         Utils->DoOneToOne(prefix, "MOTD", params, params[0]);
2233                         }
2234                 }
2235                 return true;
2236         }
2237
2238         /** remote ADMIN. leet, huh? */
2239         bool Admin(const std::string &prefix, std::deque<std::string> &params)
2240         {
2241                 if (params.size() > 0)
2242                 {
2243                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2244                         {
2245                                 /* It's for our server */
2246                                 string_list results;
2247                                 userrec* source = this->Instance->FindNick(prefix);
2248
2249                                 if (source)
2250                                 {
2251                                         std::deque<std::string> par;
2252                                         par.push_back(prefix);
2253                                         par.push_back("");
2254
2255                                         par[1] = std::string("::")+Instance->Config->ServerName+" 256 "+source->nick+" :Administrative info for "+Instance->Config->ServerName;
2256                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2257
2258                                         par[1] = std::string("::")+Instance->Config->ServerName+" 257 "+source->nick+" :Name     - "+Instance->Config->AdminName;
2259                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2260
2261                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :Nickname - "+Instance->Config->AdminNick;
2262                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2263
2264                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :E-Mail   - "+Instance->Config->AdminEmail;
2265                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2266                                 }
2267                         }
2268                         else
2269                         {
2270                                 /* Pass it on */
2271                                 userrec* source = this->Instance->FindNick(prefix);
2272                                 if (source)
2273                                         Utils->DoOneToOne(prefix, "ADMIN", params, params[0]);
2274                         }
2275                 }
2276                 return true;
2277         }
2278
2279         bool Stats(const std::string &prefix, std::deque<std::string> &params)
2280         {
2281                 /* Get the reply to a STATS query if it matches this servername,
2282                  * and send it back as a load of PUSH queries
2283                  */
2284                 if (params.size() > 1)
2285                 {
2286                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[1]))
2287                         {
2288                                 /* It's for our server */
2289                                 string_list results;
2290                                 userrec* source = this->Instance->FindNick(prefix);
2291                                 if (source)
2292                                 {
2293                                         std::deque<std::string> par;
2294                                         par.push_back(prefix);
2295                                         par.push_back("");
2296                                         DoStats(this->Instance, *(params[0].c_str()), source, results);
2297                                         for (size_t i = 0; i < results.size(); i++)
2298                                         {
2299                                                 par[1] = "::" + results[i];
2300                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2301                                         }
2302                                 }
2303                         }
2304                         else
2305                         {
2306                                 /* Pass it on */
2307                                 userrec* source = this->Instance->FindNick(prefix);
2308                                 if (source)
2309                                         Utils->DoOneToOne(prefix, "STATS", params, params[1]);
2310                         }
2311                 }
2312                 return true;
2313         }
2314
2315
2316         /** Because the core won't let users or even SERVERS set +o,
2317          * we use the OPERTYPE command to do this.
2318          */
2319         bool OperType(const std::string &prefix, std::deque<std::string> &params)
2320         {
2321                 if (params.size() != 1)
2322                 {
2323                         Instance->Log(DEBUG,"Received invalid oper type from %s",prefix.c_str());
2324                         return true;
2325                 }
2326                 std::string opertype = params[0];
2327                 userrec* u = this->Instance->FindNick(prefix);
2328                 if (u)
2329                 {
2330                         u->modes[UM_OPERATOR] = 1;
2331                         strlcpy(u->oper,opertype.c_str(),NICKMAX-1);
2332                         Utils->DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
2333                 }
2334                 return true;
2335         }
2336
2337         /** Because Andy insists that services-compatible servers must
2338          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
2339          */
2340         bool ForceNick(const std::string &prefix, std::deque<std::string> &params)
2341         {
2342                 if (params.size() < 3)
2343                         return true;
2344
2345                 userrec* u = this->Instance->FindNick(params[0]);
2346
2347                 if (u)
2348                 {
2349                         Utils->DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
2350                         if (IS_LOCAL(u))
2351                         {
2352                                 std::deque<std::string> par;
2353                                 par.push_back(params[1]);
2354                                 /* This is not required as one is sent in OnUserPostNick below
2355                                  */
2356                                 //Utils->DoOneToMany(u->nick,"NICK",par);
2357                                 if (!u->ForceNickChange(params[1].c_str()))
2358                                 {
2359                                         userrec::QuitUser(this->Instance, u, "Nickname collision");
2360                                         return true;
2361                                 }
2362                                 u->age = atoi(params[2].c_str());
2363                         }
2364                 }
2365                 return true;
2366         }
2367
2368         bool ServiceJoin(const std::string &prefix, std::deque<std::string> &params)
2369         {
2370                 if (params.size() < 2)
2371                         return true;
2372
2373                 userrec* u = this->Instance->FindNick(params[0]);
2374
2375                 if (u)
2376                 {
2377                         chanrec::JoinUser(this->Instance, u, params[1].c_str(), false);
2378                         Utils->DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
2379                 }
2380                 return true;
2381         }
2382
2383         bool RemoteRehash(const std::string &prefix, std::deque<std::string> &params)
2384         {
2385                 if (params.size() < 1)
2386                         return false;
2387
2388                 std::string servermask = params[0];
2389
2390                 if (this->Instance->MatchText(this->Instance->Config->ServerName,servermask))
2391                 {
2392                         this->Instance->SNO->WriteToSnoMask('l',"Remote rehash initiated from server \002"+prefix+"\002.");
2393                         this->Instance->RehashServer();
2394                         Utils->ReadConfiguration(false);
2395                         InitializeDisabledCommands(Instance->Config->DisabledCommands, Instance);
2396                 }
2397                 Utils->DoOneToAllButSender(prefix,"REHASH",params,prefix);
2398                 return true;
2399         }
2400
2401         bool RemoteKill(const std::string &prefix, std::deque<std::string> &params)
2402         {
2403                 if (params.size() != 2)
2404                         return true;
2405
2406                 std::string nick = params[0];
2407                 userrec* u = this->Instance->FindNick(prefix);
2408                 userrec* who = this->Instance->FindNick(nick);
2409
2410                 if (who)
2411                 {
2412                         /* Prepend kill source, if we don't have one */
2413                         std::string sourceserv = prefix;
2414                         if (u)
2415                         {
2416                                 sourceserv = u->server;
2417                         }
2418                         if (*(params[1].c_str()) != '[')
2419                         {
2420                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
2421                         }
2422                         std::string reason = params[1];
2423                         params[1] = ":" + params[1];
2424                         Utils->DoOneToAllButSender(prefix,"KILL",params,sourceserv);
2425                         who->Write(":%s KILL %s :%s (%s)", sourceserv.c_str(), who->nick, sourceserv.c_str(), reason.c_str());
2426                         userrec::QuitUser(this->Instance,who,reason);
2427                 }
2428                 return true;
2429         }
2430
2431         bool LocalPong(const std::string &prefix, std::deque<std::string> &params)
2432         {
2433                 if (params.size() < 1)
2434                         return true;
2435
2436                 if (params.size() == 1)
2437                 {
2438                         TreeServer* ServerSource = Utils->FindServer(prefix);
2439                         if (ServerSource)
2440                         {
2441                                 ServerSource->SetPingFlag();
2442                         }
2443                 }
2444                 else
2445                 {
2446                         std::string forwardto = params[1];
2447                         if (forwardto == this->Instance->Config->ServerName)
2448                         {
2449                                 /*
2450                                  * this is a PONG for us
2451                                  * if the prefix is a user, check theyre local, and if they are,
2452                                  * dump the PONG reply back to their fd. If its a server, do nowt.
2453                                  * Services might want to send these s->s, but we dont need to yet.
2454                                  */
2455                                 userrec* u = this->Instance->FindNick(prefix);
2456
2457                                 if (u)
2458                                 {
2459                                         u->WriteServ("PONG %s %s",params[0].c_str(),params[1].c_str());
2460                                 }
2461                         }
2462                         else
2463                         {
2464                                 // not for us, pass it on :)
2465                                 Utils->DoOneToOne(prefix,"PONG",params,forwardto);
2466                         }
2467                 }
2468
2469                 return true;
2470         }
2471         
2472         bool MetaData(const std::string &prefix, std::deque<std::string> &params)
2473         {
2474                 if (params.size() < 3)
2475                         return true;
2476
2477                 TreeServer* ServerSource = Utils->FindServer(prefix);
2478
2479                 if (ServerSource)
2480                 {
2481                         if (params[0] == "*")
2482                         {
2483                                 FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
2484                         }
2485                         else if (*(params[0].c_str()) == '#')
2486                         {
2487                                 chanrec* c = this->Instance->FindChan(params[0]);
2488                                 if (c)
2489                                 {
2490                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
2491                                 }
2492                         }
2493                         else if (*(params[0].c_str()) != '#')
2494                         {
2495                                 userrec* u = this->Instance->FindNick(params[0]);
2496                                 if (u)
2497                                 {
2498                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
2499                                 }
2500                         }
2501                 }
2502
2503                 params[2] = ":" + params[2];
2504                 Utils->DoOneToAllButSender(prefix,"METADATA",params,prefix);
2505                 return true;
2506         }
2507
2508         bool ServerVersion(const std::string &prefix, std::deque<std::string> &params)
2509         {
2510                 if (params.size() < 1)
2511                         return true;
2512
2513                 TreeServer* ServerSource = Utils->FindServer(prefix);
2514
2515                 if (ServerSource)
2516                 {
2517                         ServerSource->SetVersion(params[0]);
2518                 }
2519                 params[0] = ":" + params[0];
2520                 Utils->DoOneToAllButSender(prefix,"VERSION",params,prefix);
2521                 return true;
2522         }
2523
2524         bool ChangeHost(const std::string &prefix, std::deque<std::string> &params)
2525         {
2526                 if (params.size() < 1)
2527                         return true;
2528
2529                 userrec* u = this->Instance->FindNick(prefix);
2530
2531                 if (u)
2532                 {
2533                         u->ChangeDisplayedHost(params[0].c_str());
2534                         Utils->DoOneToAllButSender(prefix,"FHOST",params,u->server);
2535                 }
2536                 return true;
2537         }
2538
2539         bool AddLine(const std::string &prefix, std::deque<std::string> &params)
2540         {
2541                 if (params.size() < 6)
2542                         return true;
2543
2544                 bool propogate = false;
2545
2546                 switch (*(params[0].c_str()))
2547                 {
2548                         case 'Z':
2549                                 propogate = Instance->XLines->add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2550                                 Instance->XLines->zline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2551                         break;
2552                         case 'Q':
2553                                 propogate = Instance->XLines->add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2554                                 Instance->XLines->qline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2555                         break;
2556                         case 'E':
2557                                 propogate = Instance->XLines->add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2558                                 Instance->XLines->eline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2559                         break;
2560                         case 'G':
2561                                 propogate = Instance->XLines->add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2562                                 Instance->XLines->gline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2563                         break;
2564                         case 'K':
2565                                 propogate = Instance->XLines->add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2566                         break;
2567                         default:
2568                                 /* Just in case... */
2569                                 this->Instance->SNO->WriteToSnoMask('x',"\2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
2570                                 propogate = false;
2571                         break;
2572                 }
2573
2574                 /* Send it on its way */
2575                 if (propogate)
2576                 {
2577                         if (atoi(params[4].c_str()))
2578                         {
2579                                 this->Instance->SNO->WriteToSnoMask('x',"%s Added %cLINE on %s to expire in %lu seconds (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),atoi(params[4].c_str()),params[5].c_str());
2580                         }
2581                         else
2582                         {
2583                                 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());
2584                         }
2585                         params[5] = ":" + params[5];
2586                         Utils->DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
2587                 }
2588                 if (!this->bursting)
2589                 {
2590                         Instance->Log(DEBUG,"Applying lines...");
2591                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2592                 }
2593                 return true;
2594         }
2595
2596         bool ChangeName(const std::string &prefix, std::deque<std::string> &params)
2597         {
2598                 if (params.size() < 1)
2599                         return true;
2600
2601                 userrec* u = this->Instance->FindNick(prefix);
2602
2603                 if (u)
2604                 {
2605                         u->ChangeName(params[0].c_str());
2606                         params[0] = ":" + params[0];
2607                         Utils->DoOneToAllButSender(prefix,"FNAME",params,u->server);
2608                 }
2609                 return true;
2610         }
2611
2612         bool Whois(const std::string &prefix, std::deque<std::string> &params)
2613         {
2614                 if (params.size() < 1)
2615                         return true;
2616
2617                 Instance->Log(DEBUG,"In IDLE command");
2618                 userrec* u = this->Instance->FindNick(prefix);
2619
2620                 if (u)
2621                 {
2622                         Instance->Log(DEBUG,"USER EXISTS: %s",u->nick);
2623                         // an incoming request
2624                         if (params.size() == 1)
2625                         {
2626                                 userrec* x = this->Instance->FindNick(params[0]);
2627                                 if ((x) && (IS_LOCAL(x)))
2628                                 {
2629                                         userrec* x = this->Instance->FindNick(params[0]);
2630                                         char signon[MAXBUF];
2631                                         char idle[MAXBUF];
2632
2633                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
2634                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-time(NULL)));
2635                                         std::deque<std::string> par;
2636                                         par.push_back(prefix);
2637                                         par.push_back(signon);
2638                                         par.push_back(idle);
2639                                         // ours, we're done, pass it BACK
2640                                         Utils->DoOneToOne(params[0],"IDLE",par,u->server);
2641                                 }
2642                                 else
2643                                 {
2644                                         // not ours pass it on
2645                                         Utils->DoOneToOne(prefix,"IDLE",params,x->server);
2646                                 }
2647                         }
2648                         else if (params.size() == 3)
2649                         {
2650                                 std::string who_did_the_whois = params[0];
2651                                 userrec* who_to_send_to = this->Instance->FindNick(who_did_the_whois);
2652                                 if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2653                                 {
2654                                         // an incoming reply to a whois we sent out
2655                                         std::string nick_whoised = prefix;
2656                                         unsigned long signon = atoi(params[1].c_str());
2657                                         unsigned long idle = atoi(params[2].c_str());
2658                                         if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2659                                                 do_whois(this->Instance,who_to_send_to,u,signon,idle,nick_whoised.c_str());
2660                                 }
2661                                 else
2662                                 {
2663                                         // not ours, pass it on
2664                                         Utils->DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
2665                                 }
2666                         }
2667                 }
2668                 return true;
2669         }
2670
2671         bool Push(const std::string &prefix, std::deque<std::string> &params)
2672         {
2673                 if (params.size() < 2)
2674                         return true;
2675
2676                 userrec* u = this->Instance->FindNick(params[0]);
2677
2678                 if (!u)
2679                         return true;
2680
2681                 if (IS_LOCAL(u))
2682                 {
2683                         u->Write(params[1]);
2684                 }
2685                 else
2686                 {
2687                         // continue the raw onwards
2688                         params[1] = ":" + params[1];
2689                         Utils->DoOneToOne(prefix,"PUSH",params,u->server);
2690                 }
2691                 return true;
2692         }
2693
2694         bool Time(const std::string &prefix, std::deque<std::string> &params)
2695         {
2696                 // :source.server TIME remote.server sendernick
2697                 // :remote.server TIME source.server sendernick TS
2698                 if (params.size() == 2)
2699                 {
2700                         // someone querying our time?
2701                         if (this->Instance->Config->ServerName == params[0])
2702                         {
2703                                 userrec* u = this->Instance->FindNick(params[1]);
2704                                 if (u)
2705                                 {
2706                                         char curtime[256];
2707                                         snprintf(curtime,256,"%lu",(unsigned long)time(NULL));
2708                                         params.push_back(curtime);
2709                                         params[0] = prefix;
2710                                         Utils->DoOneToOne(this->Instance->Config->ServerName,"TIME",params,params[0]);
2711                                 }
2712                         }
2713                         else
2714                         {
2715                                 // not us, pass it on
2716                                 userrec* u = this->Instance->FindNick(params[1]);
2717                                 if (u)
2718                                         Utils->DoOneToOne(prefix,"TIME",params,params[0]);
2719                         }
2720                 }
2721                 else if (params.size() == 3)
2722                 {
2723                         // a response to a previous TIME
2724                         userrec* u = this->Instance->FindNick(params[1]);
2725                         if ((u) && (IS_LOCAL(u)))
2726                         {
2727                         time_t rawtime = atol(params[2].c_str());
2728                         struct tm * timeinfo;
2729                         timeinfo = localtime(&rawtime);
2730                                 char tms[26];
2731                                 snprintf(tms,26,"%s",asctime(timeinfo));
2732                                 tms[24] = 0;
2733                         u->WriteServ("391 %s %s :%s",u->nick,prefix.c_str(),tms);
2734                         }
2735                         else
2736                         {
2737                                 if (u)
2738                                         Utils->DoOneToOne(prefix,"TIME",params,u->server);
2739                         }
2740                 }
2741                 return true;
2742         }
2743         
2744         bool LocalPing(const std::string &prefix, std::deque<std::string> &params)
2745         {
2746                 if (params.size() < 1)
2747                         return true;
2748
2749                 if (params.size() == 1)
2750                 {
2751                         std::string stufftobounce = params[0];
2752                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" PONG "+stufftobounce);
2753                         return true;
2754                 }
2755                 else
2756                 {
2757                         std::string forwardto = params[1];
2758                         if (forwardto == this->Instance->Config->ServerName)
2759                         {
2760                                 // this is a ping for us, send back PONG to the requesting server
2761                                 params[1] = params[0];
2762                                 params[0] = forwardto;
2763                                 Utils->DoOneToOne(forwardto,"PONG",params,params[1]);
2764                         }
2765                         else
2766                         {
2767                                 // not for us, pass it on :)
2768                                 Utils->DoOneToOne(prefix,"PING",params,forwardto);
2769                         }
2770                         return true;
2771                 }
2772         }
2773
2774         bool RemoveStatus(const std::string &prefix, std::deque<std::string> &params)
2775         {
2776                 if (params.size() < 1)
2777                         return true;
2778
2779                 chanrec* c = Instance->FindChan(params[0]);
2780
2781                 if (c)
2782                 {
2783                         irc::modestacker modestack(false);
2784                         CUList *ulist = c->GetUsers();
2785                         const char* y[127];
2786                         std::deque<std::string> stackresult;
2787                         std::string x;
2788
2789                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
2790                         {
2791                                 std::string modesequence = Instance->Modes->ModeString(i->second, c);
2792                                 if (modesequence.length())
2793                                 {
2794                                         Instance->Log(DEBUG,"Mode sequence = '%s'",modesequence.c_str());
2795                                         irc::spacesepstream sep(modesequence);
2796                                         std::string modeletters = sep.GetToken();
2797                                         Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2798                                         
2799                                         while (!modeletters.empty())
2800                                         {
2801                                                 char mletter = *(modeletters.begin());
2802                                                 modestack.Push(mletter,sep.GetToken());
2803                                                 Instance->Log(DEBUG,"Push letter = '%c'",mletter);
2804                                                 modeletters.erase(modeletters.begin());
2805                                                 Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2806                                         }
2807                                 }
2808                         }
2809
2810                         while (modestack.GetStackedLine(stackresult))
2811                         {
2812                                 Instance->Log(DEBUG,"Stacked line size %d",stackresult.size());
2813                                 stackresult.push_front(ConvToStr(c->age));
2814                                 stackresult.push_front(c->name);
2815                                 Utils->DoOneToMany(Instance->Config->ServerName, "FMODE", stackresult);
2816                                 stackresult.erase(stackresult.begin() + 1);
2817                                 Instance->Log(DEBUG,"Stacked items:");
2818                                 for (size_t z = 0; z < stackresult.size(); z++)
2819                                 {
2820                                         y[z] = stackresult[z].c_str();
2821                                         Instance->Log(DEBUG,"\tstackresult[%d]='%s'",z,stackresult[z].c_str());
2822                                 }
2823                                 userrec* n = new userrec(Instance);
2824                                 n->SetFd(FD_MAGIC_NUMBER);
2825                                 Instance->SendMode(y, stackresult.size(), n);
2826                                 delete n;
2827                         }
2828                 }
2829                 return true;
2830         }
2831
2832         bool RemoteServer(const std::string &prefix, std::deque<std::string> &params)
2833         {
2834                 if (params.size() < 4)
2835                         return false;
2836
2837                 std::string servername = params[0];
2838                 std::string password = params[1];
2839                 // hopcount is not used for a remote server, we calculate this ourselves
2840                 std::string description = params[3];
2841                 TreeServer* ParentOfThis = Utils->FindServer(prefix);
2842
2843                 if (!ParentOfThis)
2844                 {
2845                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
2846                         return false;
2847                 }
2848                 TreeServer* CheckDupe = Utils->FindServer(servername);
2849                 if (CheckDupe)
2850                 {
2851                         this->WriteLine("ERROR :Server "+servername+" already exists!");
2852                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+servername+"\2 denied, already exists");
2853                         return false;
2854                 }
2855                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,servername,description,ParentOfThis,NULL);
2856                 ParentOfThis->AddChild(Node);
2857                 params[3] = ":" + params[3];
2858                 Utils->DoOneToAllButSender(prefix,"SERVER",params,prefix);
2859                 this->Instance->SNO->WriteToSnoMask('l',"Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
2860                 return true;
2861         }
2862
2863         bool Outbound_Reply_Server(std::deque<std::string> &params)
2864         {
2865                 if (params.size() < 4)
2866                         return false;
2867
2868                 irc::string servername = params[0].c_str();
2869                 std::string sname = params[0];
2870                 std::string password = params[1];
2871                 int hops = atoi(params[2].c_str());
2872
2873                 if (hops)
2874                 {
2875                         this->WriteLine("ERROR :Server too far away for authentication");
2876                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
2877                         return false;
2878                 }
2879                 std::string description = params[3];
2880                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
2881                 {
2882                         if ((x->Name == servername) && (x->RecvPass == password))
2883                         {
2884                                 TreeServer* CheckDupe = Utils->FindServer(sname);
2885                                 if (CheckDupe)
2886                                 {
2887                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
2888                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
2889                                         return false;
2890                                 }
2891                                 // Begin the sync here. this kickstarts the
2892                                 // other side, waiting in WAIT_AUTH_2 state,
2893                                 // into starting their burst, as it shows
2894                                 // that we're happy.
2895                                 this->LinkState = CONNECTED;
2896                                 // we should add the details of this server now
2897                                 // to the servers tree, as a child of the root
2898                                 // node.
2899                                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,sname,description,Utils->TreeRoot,this);
2900                                 Utils->TreeRoot->AddChild(Node);
2901                                 params[3] = ":" + params[3];
2902                                 Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,sname);
2903                                 this->bursting = true;
2904                                 this->DoBurst(Node);
2905                                 return true;
2906                         }
2907                 }
2908                 this->WriteLine("ERROR :Invalid credentials");
2909                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
2910                 return false;
2911         }
2912
2913         bool Inbound_Server(std::deque<std::string> &params)
2914         {
2915                 if (params.size() < 4)
2916                         return false;
2917
2918                 irc::string servername = params[0].c_str();
2919                 std::string sname = params[0];
2920                 std::string password = params[1];
2921                 int hops = atoi(params[2].c_str());
2922
2923                 if (hops)
2924                 {
2925                         this->WriteLine("ERROR :Server too far away for authentication");
2926                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
2927                         return false;
2928                 }
2929                 std::string description = params[3];
2930                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
2931                 {
2932                         if ((x->Name == servername) && (x->RecvPass == password))
2933                         {
2934                                 TreeServer* CheckDupe = Utils->FindServer(sname);
2935                                 if (CheckDupe)
2936                                 {
2937                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
2938                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
2939                                         return false;
2940                                 }
2941                                 /* If the config says this link is encrypted, but the remote side
2942                                  * hasnt bothered to send the AES command before SERVER, then we
2943                                  * boot them off as we MUST have this connection encrypted.
2944                                  */
2945                                 if ((x->EncryptionKey != "") && (!this->ctx_in))
2946                                 {
2947                                         this->WriteLine("ERROR :This link requires AES encryption to be enabled. Plaintext connection refused.");
2948                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, remote server did not enable AES.");
2949                                         return false;
2950                                 }
2951                                 this->Instance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
2952                                 this->InboundServerName = sname;
2953                                 this->InboundDescription = description;
2954                                 // this is good. Send our details: Our server name and description and hopcount of 0,
2955                                 // along with the sendpass from this block.
2956                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+x->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
2957                                 // move to the next state, we are now waiting for THEM.
2958                                 this->LinkState = WAIT_AUTH_2;
2959                                 return true;
2960                         }
2961                 }
2962                 this->WriteLine("ERROR :Invalid credentials");
2963                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
2964                 return false;
2965         }
2966
2967         void Split(const std::string &line, std::deque<std::string> &n)
2968         {
2969                 n.clear();
2970                 irc::tokenstream tokens(line);
2971                 std::string param;
2972                 while ((param = tokens.GetToken()) != "")
2973                         n.push_back(param);
2974                 return;
2975         }
2976
2977         bool ProcessLine(std::string &line)
2978         {
2979                 std::deque<std::string> params;
2980                 irc::string command;
2981                 std::string prefix;
2982                 
2983                 if (line.empty())
2984                         return true;
2985                 
2986                 line = line.substr(0, line.find_first_of("\r\n"));
2987                 
2988                 Instance->Log(DEBUG,"IN: %s", line.c_str());
2989                 
2990                 this->Split(line.c_str(),params);
2991                         
2992                 if ((params[0][0] == ':') && (params.size() > 1))
2993                 {
2994                         prefix = params[0].substr(1);
2995                         params.pop_front();
2996                 }
2997
2998                 command = params[0].c_str();
2999                 params.pop_front();
3000
3001                 if ((!this->ctx_in) && (command == "AES"))
3002                 {
3003                         std::string sserv = params[0];
3004                         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
3005                         {
3006                                 if ((x->EncryptionKey != "") && (x->Name == sserv))
3007                                 {
3008                                         this->InitAES(x->EncryptionKey,sserv);
3009                                 }
3010                         }
3011
3012                         return true;
3013                 }
3014                 else if ((this->ctx_in) && (command == "AES"))
3015                 {
3016                         this->Instance->SNO->WriteToSnoMask('l',"\2AES\2: Encryption already enabled on this connection yet %s is trying to enable it twice!",params[0].c_str());
3017                 }
3018
3019                 switch (this->LinkState)
3020                 {
3021                         TreeServer* Node;
3022                         
3023                         case WAIT_AUTH_1:
3024                                 // Waiting for SERVER command from remote server. Server initiating
3025                                 // the connection sends the first SERVER command, listening server
3026                                 // replies with theirs if its happy, then if the initiator is happy,
3027                                 // it starts to send its net sync, which starts the merge, otherwise
3028                                 // it sends an ERROR.
3029                                 if (command == "PASS")
3030                                 {
3031                                         /* Silently ignored */
3032                                 }
3033                                 else if (command == "SERVER")
3034                                 {
3035                                         return this->Inbound_Server(params);
3036                                 }
3037                                 else if (command == "ERROR")
3038                                 {
3039                                         return this->Error(params);
3040                                 }
3041                                 else if (command == "USER")
3042                                 {
3043                                         this->WriteLine("ERROR :Client connections to this port are prohibited.");
3044                                         return false;
3045                                 }
3046                                 else if (command == "CAPAB")
3047                                 {
3048                                         return this->Capab(params);
3049                                 }
3050                                 else if ((command == "U") || (command == "S"))
3051                                 {
3052                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3053                                         return false;
3054                                 }
3055                                 else
3056                                 {
3057                                         std::string error("ERROR :Invalid command in negotiation phase: ");
3058                                         error.append(command.c_str());
3059                                         this->WriteLine(error);
3060                                         return false;
3061                                 }
3062                         break;
3063                         case WAIT_AUTH_2:
3064                                 // Waiting for start of other side's netmerge to say they liked our
3065                                 // password.
3066                                 if (command == "SERVER")
3067                                 {
3068                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
3069                                         // silently ignore.
3070                                         return true;
3071                                 }
3072                                 else if ((command == "U") || (command == "S"))
3073                                 {
3074                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3075                                         return false;
3076                                 }
3077                                 else if (command == "BURST")
3078                                 {
3079                                         if (params.size())
3080                                         {
3081                                                 /* If a time stamp is provided, try and check syncronization */
3082                                                 time_t THEM = atoi(params[0].c_str());
3083                                                 long delta = THEM-time(NULL);
3084                                                 if ((delta < -600) || (delta > 600))
3085                                                 {
3086                                                         this->Instance->SNO->WriteToSnoMask('l',"\2ERROR\2: Your clocks are out by %d seconds (this is more than ten minutes). Link aborted, \2PLEASE SYNC YOUR CLOCKS!\2",abs(delta));
3087                                                         this->WriteLine("ERROR :Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
3088                                                         return false;
3089                                                 }
3090                                                 else if ((delta < -60) || (delta > 60))
3091                                                 {
3092                                                         this->Instance->SNO->WriteToSnoMask('l',"\2WARNING\2: Your clocks are out by %d seconds, please consider synching your clocks.",abs(delta));
3093                                                 }
3094                                         }
3095                                         this->LinkState = CONNECTED;
3096                                         Node = new TreeServer(this->Utils,this->Instance,InboundServerName,InboundDescription,Utils->TreeRoot,this);
3097                                         Utils->TreeRoot->AddChild(Node);
3098                                         params.clear();
3099                                         params.push_back(InboundServerName);
3100                                         params.push_back("*");
3101                                         params.push_back("1");
3102                                         params.push_back(":"+InboundDescription);
3103                                         Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,InboundServerName);
3104                                         this->bursting = true;
3105                                         this->DoBurst(Node);
3106                                 }
3107                                 else if (command == "ERROR")
3108                                 {
3109                                         return this->Error(params);
3110                                 }
3111                                 else if (command == "CAPAB")
3112                                 {
3113                                         return this->Capab(params);
3114                                 }
3115                                 
3116                         break;
3117                         case LISTENER:
3118                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
3119                                 return false;
3120                         break;
3121                         case CONNECTING:
3122                                 if (command == "SERVER")
3123                                 {
3124                                         // another server we connected to, which was in WAIT_AUTH_1 state,
3125                                         // has just sent us their credentials. If we get this far, theyre
3126                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
3127                                         // if we're happy with this, we should send our netburst which
3128                                         // kickstarts the merge.
3129                                         return this->Outbound_Reply_Server(params);
3130                                 }
3131                                 else if (command == "ERROR")
3132                                 {
3133                                         return this->Error(params);
3134                                 }
3135                         break;
3136                         case CONNECTED:
3137                                 // This is the 'authenticated' state, when all passwords
3138                                 // have been exchanged and anything past this point is taken
3139                                 // as gospel.
3140                                 
3141                                 if (prefix != "")
3142                                 {
3143                                         std::string direction = prefix;
3144                                         userrec* t = this->Instance->FindNick(prefix);
3145                                         if (t)
3146                                         {
3147                                                 direction = t->server;
3148                                         }
3149                                         TreeServer* route_back_again = Utils->BestRouteTo(direction);
3150                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
3151                                         {
3152                                                 if (route_back_again)
3153                                                         Instance->Log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
3154                                                 return true;
3155                                         }
3156
3157                                         /* Fix by brain:
3158                                          * When there is activity on the socket, reset the ping counter so
3159                                          * that we're not wasting bandwidth pinging an active server.
3160                                          */ 
3161                                         route_back_again->SetNextPingTime(time(NULL) + 60);
3162                                         route_back_again->SetPingFlag();
3163                                 }
3164                                 
3165                                 if (command == "SVSMODE")
3166                                 {
3167                                         /* Services expects us to implement
3168                                          * SVSMODE. In inspircd its the same as
3169                                          * MODE anyway.
3170                                          */
3171                                         command = "MODE";
3172                                 }
3173                                 std::string target = "";
3174                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
3175                                  * working with std::string here.
3176                                  */
3177                                 if ((command == "NICK") && (params.size() > 1))
3178                                 {
3179                                         return this->IntroduceClient(prefix,params);
3180                                 }
3181                                 else if (command == "FJOIN")
3182                                 {
3183                                         return this->ForceJoin(prefix,params);
3184                                 }
3185                                 else if (command == "STATS")
3186                                 {
3187                                         return this->Stats(prefix, params);
3188                                 }
3189                                 else if (command == "MOTD")
3190                                 {
3191                                         return this->Motd(prefix, params);
3192                                 }
3193                                 else if (command == "ADMIN")
3194                                 {
3195                                         return this->Admin(prefix, params);
3196                                 }
3197                                 else if (command == "SERVER")
3198                                 {
3199                                         return this->RemoteServer(prefix,params);
3200                                 }
3201                                 else if (command == "ERROR")
3202                                 {
3203                                         return this->Error(params);
3204                                 }
3205                                 else if (command == "OPERTYPE")
3206                                 {
3207                                         return this->OperType(prefix,params);
3208                                 }
3209                                 else if (command == "FMODE")
3210                                 {
3211                                         return this->ForceMode(prefix,params);
3212                                 }
3213                                 else if (command == "KILL")
3214                                 {
3215                                         return this->RemoteKill(prefix,params);
3216                                 }
3217                                 else if (command == "FTOPIC")
3218                                 {
3219                                         return this->ForceTopic(prefix,params);
3220                                 }
3221                                 else if (command == "REHASH")
3222                                 {
3223                                         return this->RemoteRehash(prefix,params);
3224                                 }
3225                                 else if (command == "METADATA")
3226                                 {
3227                                         return this->MetaData(prefix,params);
3228                                 }
3229                                 else if (command == "REMSTATUS")
3230                                 {
3231                                         return this->RemoveStatus(prefix,params);
3232                                 }
3233                                 else if (command == "PING")
3234                                 {
3235                                         /*
3236                                          * We just got a ping from a server that's bursting.
3237                                          * This can't be right, so set them to not bursting, and
3238                                          * apply their lines.
3239                                          */
3240                                         if (this->bursting)
3241                                         {
3242                                                 this->bursting = false;
3243                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3244                                         }
3245                                         if (prefix == "")
3246                                         {
3247                                                 prefix = this->GetName();
3248                                         }
3249                                         return this->LocalPing(prefix,params);
3250                                 }
3251                                 else if (command == "PONG")
3252                                 {
3253                                         /*
3254                                          * We just got a pong from a server that's bursting.
3255                                          * This can't be right, so set them to not bursting, and
3256                                          * apply their lines.
3257                                          */
3258                                         if (this->bursting)
3259                                         {
3260                                                 this->bursting = false;
3261                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3262                                         }
3263                                         if (prefix == "")
3264                                         {
3265                                                 prefix = this->GetName();
3266                                         }
3267                                         return this->LocalPong(prefix,params);
3268                                 }
3269                                 else if (command == "VERSION")
3270                                 {
3271                                         return this->ServerVersion(prefix,params);
3272                                 }
3273                                 else if (command == "FHOST")
3274                                 {
3275                                         return this->ChangeHost(prefix,params);
3276                                 }
3277                                 else if (command == "FNAME")
3278                                 {
3279                                         return this->ChangeName(prefix,params);
3280                                 }
3281                                 else if (command == "ADDLINE")
3282                                 {
3283                                         return this->AddLine(prefix,params);
3284                                 }
3285                                 else if (command == "SVSNICK")
3286                                 {
3287                                         if (prefix == "")
3288                                         {
3289                                                 prefix = this->GetName();
3290                                         }
3291                                         return this->ForceNick(prefix,params);
3292                                 }
3293                                 else if (command == "IDLE")
3294                                 {
3295                                         return this->Whois(prefix,params);
3296                                 }
3297                                 else if (command == "PUSH")
3298                                 {
3299                                         return this->Push(prefix,params);
3300                                 }
3301                                 else if (command == "TIME")
3302                                 {
3303                                         return this->Time(prefix,params);
3304                                 }
3305                                 else if ((command == "KICK") && (Utils->IsServer(prefix)))
3306                                 {
3307                                         std::string sourceserv = this->myhost;
3308                                         if (params.size() == 3)
3309                                         {
3310                                                 userrec* user = this->Instance->FindNick(params[1]);
3311                                                 chanrec* chan = this->Instance->FindChan(params[0]);
3312                                                 if (user && chan)
3313                                                 {
3314                                                         if (!chan->ServerKickUser(user, params[2].c_str(), false))
3315                                                                 /* Yikes, the channels gone! */
3316                                                                 delete chan;
3317                                                 }
3318                                         }
3319                                         if (this->InboundServerName != "")
3320                                         {
3321                                                 sourceserv = this->InboundServerName;
3322                                         }
3323                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3324                                 }
3325                                 else if (command == "SVSJOIN")
3326                                 {
3327                                         if (prefix == "")
3328                                         {
3329                                                 prefix = this->GetName();
3330                                         }
3331                                         return this->ServiceJoin(prefix,params);
3332                                 }
3333                                 else if (command == "SQUIT")
3334                                 {
3335                                         if (params.size() == 2)
3336                                         {
3337                                                 this->Squit(Utils->FindServer(params[0]),params[1]);
3338                                         }
3339                                         return true;
3340                                 }
3341                                 else if (command == "ENDBURST")
3342                                 {
3343                                         this->bursting = false;
3344                                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3345                                         std::string sourceserv = this->myhost;
3346                                         if (this->InboundServerName != "")
3347                                         {
3348                                                 sourceserv = this->InboundServerName;
3349                                         }
3350                                         this->Instance->SNO->WriteToSnoMask('l',"Received end of netburst from \2%s\2",sourceserv.c_str());
3351
3352                                         Event rmode((char*)sourceserv.c_str(), (Module*)Utils->Creator, "new_server");
3353                                         rmode.Send(Instance);
3354
3355                                         return true;
3356                                 }
3357                                 else
3358                                 {
3359                                         // not a special inter-server command.
3360                                         // Emulate the actual user doing the command,
3361                                         // this saves us having a huge ugly parser.
3362                                         userrec* who = this->Instance->FindNick(prefix);
3363                                         std::string sourceserv = this->myhost;
3364                                         if (this->InboundServerName != "")
3365                                         {
3366                                                 sourceserv = this->InboundServerName;
3367                                         }
3368                                         if (who)
3369                                         {
3370                                                 if ((command == "NICK") && (params.size() > 0))
3371                                                 {
3372                                                         /* On nick messages, check that the nick doesnt
3373                                                          * already exist here. If it does, kill their copy,
3374                                                          * and our copy.
3375                                                          */
3376                                                         userrec* x = this->Instance->FindNick(params[0]);
3377                                                         if ((x) && (x != who))
3378                                                         {
3379                                                                 std::deque<std::string> p;
3380                                                                 p.push_back(params[0]);
3381                                                                 p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
3382                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3383                                                                 p.clear();
3384                                                                 p.push_back(prefix);
3385                                                                 p.push_back("Nickname collision");
3386                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3387                                                                 userrec::QuitUser(this->Instance,x,"Nickname collision ("+prefix+" -> "+params[0]+")");
3388                                                                 userrec* y = this->Instance->FindNick(prefix);
3389                                                                 if (y)
3390                                                                 {
3391                                                                         userrec::QuitUser(this->Instance,y,"Nickname collision");
3392                                                                 }
3393                                                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3394                                                         }
3395                                                 }
3396                                                 // its a user
3397                                                 target = who->server;
3398                                                 const char* strparams[127];
3399                                                 for (unsigned int q = 0; q < params.size(); q++)
3400                                                 {
3401                                                         strparams[q] = params[q].c_str();
3402                                                 }
3403                                                 switch (this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
3404                                                 {
3405                                                         case CMD_INVALID:
3406                                                                 this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
3407                                                                 return false;
3408                                                         break;
3409                                                         case CMD_FAILURE:
3410                                                                 return true;
3411                                                         break;
3412                                                         default:
3413                                                                 /* CMD_SUCCESS and CMD_USER_DELETED fall through here */
3414                                                         break;
3415                                                 }
3416                                         }
3417                                         else
3418                                         {
3419                                                 // its not a user. Its either a server, or somethings screwed up.
3420                                                 if (Utils->IsServer(prefix))
3421                                                 {
3422                                                         target = this->Instance->Config->ServerName;
3423                                                 }
3424                                                 else
3425                                                 {
3426                                                         Instance->Log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
3427                                                         return true;
3428                                                 }
3429                                         }
3430                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3431
3432                                 }
3433                                 return true;
3434                         break;
3435                 }
3436                 return true;
3437         }
3438
3439         virtual std::string GetName()
3440         {
3441                 std::string sourceserv = this->myhost;
3442                 if (this->InboundServerName != "")
3443                 {
3444                         sourceserv = this->InboundServerName;
3445                 }
3446                 return sourceserv;
3447         }
3448
3449         virtual void OnTimeout()
3450         {
3451                 if (this->LinkState == CONNECTING)
3452                 {
3453                         this->Instance->SNO->WriteToSnoMask('l',"CONNECT: Connection to \002"+myhost+"\002 timed out.");
3454                         Link* MyLink = Utils->FindLink(myhost);
3455                         if (MyLink)
3456                                 Utils->DoFailOver(MyLink);
3457                 }
3458         }
3459
3460         virtual void OnClose()
3461         {
3462                 // Connection closed.
3463                 // If the connection is fully up (state CONNECTED)
3464                 // then propogate a netsplit to all peers.
3465                 std::string quitserver = this->myhost;
3466                 if (this->InboundServerName != "")
3467                 {
3468                         quitserver = this->InboundServerName;
3469                 }
3470                 TreeServer* s = Utils->FindServer(quitserver);
3471                 if (s)
3472                 {
3473                         Squit(s,"Remote host closed the connection");
3474                 }
3475
3476                 if (quitserver != "")
3477                         this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str());
3478         }
3479
3480         virtual int OnIncomingConnection(int newsock, char* ip)
3481         {
3482                 /* To prevent anyone from attempting to flood opers/DDoS by connecting to the server port,
3483                  * or discovering if this port is the server port, we don't allow connections from any
3484                  * IPs for which we don't have a link block.
3485                  */
3486                 bool found = false;
3487
3488                 found = (std::find(Utils->ValidIPs.begin(), Utils->ValidIPs.end(), ip) != Utils->ValidIPs.end());
3489                 if (!found)
3490                 {
3491                         for (vector<std::string>::iterator i = Utils->ValidIPs.begin(); i != Utils->ValidIPs.end(); i++)
3492                                 if (irc::sockets::MatchCIDR(ip, (*i).c_str()))
3493                                         found = true;
3494
3495                         if (!found)
3496                         {
3497                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from %s denied (no link blocks with that IP address)", ip);
3498                                 close(newsock);
3499                                 return false;
3500                         }
3501                 }
3502                 TreeSocket* s = new TreeSocket(this->Utils, this->Instance, newsock, ip);
3503                 s = s; /* Whinge whinge whinge, thats all GCC ever does. */
3504                 return true;
3505         }
3506 };
3507
3508 /** This class is used to resolve server hostnames during /connect and autoconnect.
3509  * As of 1.1, the resolver system is seperated out from InspSocket, so we must do this
3510  * resolver step first ourselves if we need it. This is totally nonblocking, and will
3511  * callback to OnLookupComplete or OnError when completed. Once it has completed we
3512  * will have an IP address which we can then use to continue our connection.
3513  */
3514 class ServernameResolver : public Resolver
3515 {       
3516  private:
3517         /** A copy of the Link tag info for what we're connecting to.
3518          * We take a copy, rather than using a pointer, just in case the
3519          * admin takes the tag away and rehashes while the domain is resolving.
3520          */
3521         Link MyLink;
3522         SpanningTreeUtilities* Utils;
3523  public: 
3524         ServernameResolver(SpanningTreeUtilities* Util, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD), MyLink(x), Utils(Util)
3525         {
3526                 /* Nothing in here, folks */
3527         }
3528
3529         void OnLookupComplete(const std::string &result)
3530         {
3531                 /* Initiate the connection, now that we have an IP to use.
3532                  * Passing a hostname directly to InspSocket causes it to
3533                  * just bail and set its FD to -1.
3534                  */
3535                 TreeServer* CheckDupe = Utils->FindServer(MyLink.Name.c_str());
3536                 if (!CheckDupe) /* Check that nobody tried to connect it successfully while we were resolving */
3537                 {
3538                         TreeSocket* newsocket = new TreeSocket(this->Utils, ServerInstance, result,MyLink.Port,false,MyLink.Timeout ? MyLink.Timeout : 10,MyLink.Name.c_str());
3539                         if (newsocket->GetFd() > -1)
3540                         {
3541                                 /* We're all OK */
3542                         }
3543                         else
3544                         {
3545                                 /* Something barfed, show the opers */
3546                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",MyLink.Name.c_str(),strerror(errno));
3547                                 delete newsocket;
3548                                 Utils->DoFailOver(&MyLink);
3549                         }
3550                 }
3551         }
3552
3553         void OnError(ResolverError e, const std::string &errormessage)
3554         {
3555                 /* Ooops! */
3556                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: Unable to resolve hostname - %s",MyLink.Name.c_str(),errormessage.c_str());
3557                 Utils->DoFailOver(&MyLink);
3558         }
3559 };
3560
3561 /** Handle resolving of server IPs for the cache
3562  */
3563 class SecurityIPResolver : public Resolver
3564 {
3565  private:
3566         Link MyLink;
3567         SpanningTreeUtilities* Utils;
3568  public:
3569         SecurityIPResolver(SpanningTreeUtilities* U, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD), MyLink(x), Utils(U)
3570         {
3571         }
3572
3573         void OnLookupComplete(const std::string &result)
3574         {
3575                 ServerInstance->Log(DEBUG,"Security IP cache: Adding IP address '%s' for Link '%s'",result.c_str(),MyLink.Name.c_str());
3576                 Utils->ValidIPs.push_back(result);
3577         }
3578
3579         void OnError(ResolverError e, const std::string &errormessage)
3580         {
3581                 ServerInstance->Log(DEBUG,"Could not resolve IP associated with Link '%s': %s",MyLink.Name.c_str(),errormessage.c_str());
3582         }
3583 };
3584
3585 SpanningTreeUtilities::SpanningTreeUtilities(InspIRCd* Instance, ModuleSpanningTree* C) : ServerInstance(Instance), Creator(C)
3586 {
3587         Bindings.clear();
3588         this->ReadConfiguration(true);
3589         this->TreeRoot = new TreeServer(this, ServerInstance, ServerInstance->Config->ServerName, ServerInstance->Config->ServerDesc);
3590 }
3591
3592 SpanningTreeUtilities::~SpanningTreeUtilities()
3593 {
3594         for (unsigned int i = 0; i < Bindings.size(); i++)
3595         {
3596                 ServerInstance->Log(DEBUG,"Freeing binding %d of %d",i, Bindings.size());
3597                 ServerInstance->SE->DelFd(Bindings[i]);
3598                 Bindings[i]->Close();
3599                 DELETE(Bindings[i]);
3600         }
3601         ServerInstance->Log(DEBUG,"Freeing connected servers...");
3602         while (TreeRoot->ChildCount())
3603         {
3604                 TreeServer* child_server = TreeRoot->GetChild(0);
3605                 ServerInstance->Log(DEBUG,"Freeing connected server %s", child_server->GetName().c_str());
3606                 if (child_server)
3607                 {
3608                         TreeSocket* sock = child_server->GetSocket();
3609                         ServerInstance->SE->DelFd(sock);
3610                         sock->Close();
3611                         DELETE(sock);
3612                 }
3613         }
3614         delete TreeRoot;
3615 }
3616
3617 void SpanningTreeUtilities::AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
3618 {
3619         for (unsigned int c = 0; c < list.size(); c++)
3620         {
3621                 if (list[c] == server)
3622                 {
3623                         return;
3624                 }
3625         }
3626         list.push_back(server);
3627 }
3628
3629 /** returns a list of DIRECT servernames for a specific channel */
3630 void SpanningTreeUtilities::GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list)
3631 {
3632         CUList *ulist = c->GetUsers();
3633         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
3634         {
3635                 if (i->second->GetFd() < 0)
3636                 {
3637                         TreeServer* best = this->BestRouteTo(i->second->server);
3638                         if (best)
3639                                 AddThisServer(best,list);
3640                 }
3641         }
3642         return;
3643 }
3644
3645 bool SpanningTreeUtilities::DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, std::deque<std::string> &params)
3646 {
3647         TreeServer* omitroute = this->BestRouteTo(omit);
3648         if ((command == "NOTICE") || (command == "PRIVMSG"))
3649         {
3650                 if (params.size() >= 2)
3651                 {
3652                         /* Prefixes */
3653                         if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
3654                         {
3655                                 params[0] = params[0].substr(1, params[0].length()-1);
3656                         }
3657                         if ((*(params[0].c_str()) != '#') && (*(params[0].c_str()) != '$'))
3658                         {
3659                                 // special routing for private messages/notices
3660                                 userrec* d = ServerInstance->FindNick(params[0]);
3661                                 if (d)
3662                                 {
3663                                         std::deque<std::string> par;
3664                                         par.push_back(params[0]);
3665                                         par.push_back(":"+params[1]);
3666                                         this->DoOneToOne(prefix,command.c_str(),par,d->server);
3667                                         return true;
3668                                 }
3669                         }
3670                         else if (*(params[0].c_str()) == '$')
3671                         {
3672                                 std::deque<std::string> par;
3673                                 par.push_back(params[0]);
3674                                 par.push_back(":"+params[1]);
3675                                 this->DoOneToAllButSender(prefix,command.c_str(),par,omitroute->GetName());
3676                                 return true;
3677                         }
3678                         else
3679                         {
3680                                 chanrec* c = ServerInstance->FindChan(params[0]);
3681                                 if (c)
3682                                 {
3683                                         std::deque<TreeServer*> list;
3684                                         GetListOfServersForChannel(c,list);
3685                                         unsigned int lsize = list.size();
3686                                         for (unsigned int i = 0; i < lsize; i++)
3687                                         {
3688                                                 TreeSocket* Sock = list[i]->GetSocket();
3689                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
3690                                                 {
3691                                                         Sock->WriteLine(data);
3692                                                 }
3693                                         }
3694                                         return true;
3695                                 }
3696                         }
3697                 }
3698         }
3699         unsigned int items =this->TreeRoot->ChildCount();
3700         for (unsigned int x = 0; x < items; x++)
3701         {
3702                 TreeServer* Route = this->TreeRoot->GetChild(x);
3703                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3704                 {
3705                         TreeSocket* Sock = Route->GetSocket();
3706                         if (Sock)
3707                                 Sock->WriteLine(data);
3708                 }
3709         }
3710         return true;
3711 }
3712
3713 bool SpanningTreeUtilities::DoOneToAllButSender(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string omit)
3714 {
3715         TreeServer* omitroute = this->BestRouteTo(omit);
3716         std::string FullLine = ":" + prefix + " " + command;
3717         unsigned int words = params.size();
3718         for (unsigned int x = 0; x < words; x++)
3719         {
3720                 FullLine = FullLine + " " + params[x];
3721         }
3722         unsigned int items = this->TreeRoot->ChildCount();
3723         for (unsigned int x = 0; x < items; x++)
3724         {
3725                 TreeServer* Route = this->TreeRoot->GetChild(x);
3726                 // Send the line IF:
3727                 // The route has a socket (its a direct connection)
3728                 // The route isnt the one to be omitted
3729                 // The route isnt the path to the one to be omitted
3730                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3731                 {
3732                         TreeSocket* Sock = Route->GetSocket();
3733                         if (Sock)
3734                                 Sock->WriteLine(FullLine);
3735                 }
3736         }
3737         return true;
3738 }
3739
3740 bool SpanningTreeUtilities::DoOneToMany(const std::string &prefix, const std::string &command, std::deque<std::string> &params)
3741 {
3742         std::string FullLine = ":" + prefix + " " + command;
3743         unsigned int words = params.size();
3744         for (unsigned int x = 0; x < words; x++)
3745         {
3746                 FullLine = FullLine + " " + params[x];
3747         }
3748         unsigned int items = this->TreeRoot->ChildCount();
3749         for (unsigned int x = 0; x < items; x++)
3750         {
3751                 TreeServer* Route = this->TreeRoot->GetChild(x);
3752                 if (Route && Route->GetSocket())
3753                 {
3754                         TreeSocket* Sock = Route->GetSocket();
3755                         if (Sock)
3756                                 Sock->WriteLine(FullLine);
3757                 }
3758         }
3759         return true;
3760 }
3761
3762 bool SpanningTreeUtilities::DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params)
3763 {
3764         std::string spfx = prefix;
3765         std::string scmd = command;
3766         return this->DoOneToMany(spfx, scmd, params);
3767 }
3768
3769 bool SpanningTreeUtilities::DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit)
3770 {
3771         std::string spfx = prefix;
3772         std::string scmd = command;
3773         return this->DoOneToAllButSender(spfx, scmd, params, omit);
3774 }
3775         
3776 bool SpanningTreeUtilities::DoOneToOne(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string target)
3777 {
3778         TreeServer* Route = this->BestRouteTo(target);
3779         if (Route)
3780         {
3781                 std::string FullLine = ":" + prefix + " " + command;
3782                 unsigned int words = params.size();
3783                 for (unsigned int x = 0; x < words; x++)
3784                 {
3785                         FullLine = FullLine + " " + params[x];
3786                 }
3787                 if (Route && Route->GetSocket())
3788                 {
3789                         TreeSocket* Sock = Route->GetSocket();
3790                         if (Sock)
3791                                 Sock->WriteLine(FullLine);
3792                 }
3793                 return true;
3794         }
3795         else
3796         {
3797                 return false;
3798         }
3799 }
3800
3801 void SpanningTreeUtilities::ReadConfiguration(bool rebind)
3802 {
3803         ConfigReader* Conf = new ConfigReader(ServerInstance);
3804         if (rebind)
3805         {
3806                 for (int j =0; j < Conf->Enumerate("bind"); j++)
3807                 {
3808                         std::string Type = Conf->ReadValue("bind","type",j);
3809                         std::string IP = Conf->ReadValue("bind","address",j);
3810                         int Port = Conf->ReadInteger("bind","port",j,true);
3811                         if (Type == "servers")
3812                         {
3813                                 ServerInstance->Log(DEBUG,"m_spanningtree: Binding server port %s:%d", IP.c_str(), Port);
3814                                 if (IP == "*")
3815                                 {
3816                                         IP = "";
3817                                 }
3818                                 TreeSocket* listener = new TreeSocket(this, ServerInstance, IP.c_str(),Port,true,10);
3819                                 if (listener->GetState() == I_LISTENING)
3820                                 {
3821                                         ServerInstance->Log(DEFAULT,"m_spanningtree: Binding server port %s:%d successful!", IP.c_str(), Port);
3822                                         Bindings.push_back(listener);
3823                                 }
3824                                 else
3825                                 {
3826                                         ServerInstance->Log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
3827                                         listener->Close();
3828                                         DELETE(listener);
3829                                 }
3830                                 ServerInstance->Log(DEBUG,"Done with this binding");
3831                         }
3832                 }
3833         }
3834         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
3835         HideULines = Conf->ReadFlag("options","hideulines",0);
3836         AnnounceTSChange = Conf->ReadFlag("options","announcets",0);
3837         LinkBlocks.clear();
3838         ValidIPs.clear();
3839         for (int j =0; j < Conf->Enumerate("link"); j++)
3840         {
3841                 Link L;
3842                 std::string Allow = Conf->ReadValue("link","allowmask",j);
3843                 L.Name = (Conf->ReadValue("link","name",j)).c_str();
3844                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
3845                 L.FailOver = Conf->ReadValue("link","failover",j).c_str();
3846                 L.Port = Conf->ReadInteger("link","port",j,true);
3847                 L.SendPass = Conf->ReadValue("link","sendpass",j);
3848                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
3849                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
3850                 L.EncryptionKey =  Conf->ReadValue("link","encryptionkey",j);
3851                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
3852                 L.Timeout = Conf->ReadInteger("link","timeout",j,true);
3853                 L.NextConnectTime = time(NULL) + L.AutoConnect;
3854                 /* Bugfix by brain, do not allow people to enter bad configurations */
3855                 if (L.Name != ServerInstance->Config->ServerName)
3856                 {
3857                         if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
3858                         {
3859                                 ValidIPs.push_back(L.IPAddr);
3860
3861                                 if (Allow.length())
3862                                         ValidIPs.push_back(Allow);
3863
3864                                 /* Needs resolving */
3865                                 insp_inaddr binip;
3866                                 if (insp_aton(L.IPAddr.c_str(), &binip) < 1)
3867                                 {
3868                                         try
3869                                         {
3870                                                 SecurityIPResolver* sr = new SecurityIPResolver(this, ServerInstance, L.IPAddr, L);
3871                                                 ServerInstance->AddResolver(sr);
3872                                         }
3873                                         catch (ModuleException& e)
3874                                         {
3875                                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
3876                                         }
3877                                 }
3878
3879                                 LinkBlocks.push_back(L);
3880                                 ServerInstance->Log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
3881                         }
3882                         else
3883                         {
3884                                 if (L.IPAddr == "")
3885                                 {
3886                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
3887                                 }
3888                                 else if (L.RecvPass == "")
3889                                 {
3890                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
3891                                 }
3892                                 else if (L.SendPass == "")
3893                                 {
3894                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
3895                                 }
3896                                 else if (L.Name == "")
3897                                 {
3898                                         ServerInstance->Log(DEFAULT,"Invalid configuration, link tag without a name!");
3899                                 }
3900                                 else if (!L.Port)
3901                                 {
3902                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
3903                                 }
3904                         }
3905                 }
3906                 else
3907                 {
3908                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', link tag has the same server name as the local server!",L.Name.c_str());
3909                 }
3910         }
3911         DELETE(Conf);
3912 }
3913
3914
3915
3916 class ModuleSpanningTree : public Module
3917 {
3918         int line;
3919         int NumServers;
3920         unsigned int max_local;
3921         unsigned int max_global;
3922         cmd_rconnect* command_rconnect;
3923         SpanningTreeUtilities* Utils;
3924
3925  public:
3926
3927         ModuleSpanningTree(InspIRCd* Me)
3928                 : Module::Module(Me), max_local(0), max_global(0)
3929         {
3930                 Utils = new SpanningTreeUtilities(Me, this);
3931
3932                 command_rconnect = new cmd_rconnect(ServerInstance, this, Utils);
3933                 ServerInstance->AddCommand(command_rconnect);
3934         }
3935
3936         void ShowLinks(TreeServer* Current, userrec* user, int hops)
3937         {
3938                 std::string Parent = Utils->TreeRoot->GetName();
3939                 if (Current->GetParent())
3940                 {
3941                         Parent = Current->GetParent()->GetName();
3942                 }
3943                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
3944                 {
3945                         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
3946                         {
3947                                 if (*user->oper)
3948                                 {
3949                                          ShowLinks(Current->GetChild(q),user,hops+1);
3950                                 }
3951                         }
3952                         else
3953                         {
3954                                 ShowLinks(Current->GetChild(q),user,hops+1);
3955                         }
3956                 }
3957                 /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
3958                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!*user->oper))
3959                         return;
3960                 user->WriteServ("364 %s %s %s :%d %s",user->nick,Current->GetName().c_str(),(Utils->FlatLinks && (!*user->oper)) ? ServerInstance->Config->ServerName : Parent.c_str(),(Utils->FlatLinks && (!*user->oper)) ? 0 : hops,Current->GetDesc().c_str());
3961         }
3962
3963         int CountLocalServs()
3964         {
3965                 return Utils->TreeRoot->ChildCount();
3966         }
3967
3968         int CountServs()
3969         {
3970                 return Utils->serverlist.size();
3971         }
3972
3973         void HandleLinks(const char** parameters, int pcnt, userrec* user)
3974         {
3975                 ShowLinks(Utils->TreeRoot,user,0);
3976                 user->WriteServ("365 %s * :End of /LINKS list.",user->nick);
3977                 return;
3978         }
3979
3980         void HandleLusers(const char** parameters, int pcnt, userrec* user)
3981         {
3982                 unsigned int n_users = ServerInstance->UserCount();
3983
3984                 /* Only update these when someone wants to see them, more efficient */
3985                 if ((unsigned int)ServerInstance->LocalUserCount() > max_local)
3986                         max_local = ServerInstance->LocalUserCount();
3987                 if (n_users > max_global)
3988                         max_global = n_users;
3989
3990                 user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-ServerInstance->InvisibleUserCount(),ServerInstance->InvisibleUserCount(),this->CountServs());
3991                 if (ServerInstance->OperCount())
3992                         user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount());
3993                 if (ServerInstance->UnregisteredUserCount())
3994                         user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->UnregisteredUserCount());
3995                 if (ServerInstance->ChannelCount())
3996                         user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->ChannelCount());
3997                 user->WriteServ("254 %s :I have %d clients and %d servers",user->nick,ServerInstance->LocalUserCount(),this->CountLocalServs());
3998                 user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->LocalUserCount(),max_local);
3999                 user->WriteServ("266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
4000                 return;
4001         }
4002
4003         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
4004
4005         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
4006         {
4007                 if (line < 128)
4008                 {
4009                         for (int t = 0; t < depth; t++)
4010                         {
4011                                 matrix[line][t] = ' ';
4012                         }
4013
4014                         // For Aligning, we need to work out exactly how deep this thing is, and produce
4015                         // a 'Spacer' String to compensate.
4016                         char spacer[40];
4017
4018                         memset(spacer,' ',40);
4019                         if ((40 - Current->GetName().length() - depth) > 1) {
4020                                 spacer[40 - Current->GetName().length() - depth] = '\0';
4021                         }
4022                         else
4023                         {
4024                                 spacer[5] = '\0';
4025                         }
4026
4027                         float percent;
4028                         char text[80];
4029                         if (ServerInstance->clientlist.size() == 0) {
4030                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
4031                                 percent = 0;
4032                         }
4033                         else
4034                         {
4035                                 percent = ((float)Current->GetUserCount() / (float)ServerInstance->clientlist.size()) * 100;
4036                         }
4037                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
4038                         totusers += Current->GetUserCount();
4039                         totservers++;
4040                         strlcpy(&matrix[line][depth],text,80);
4041                         line++;
4042                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
4043                         {
4044                                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
4045                                 {
4046                                         if (*user->oper)
4047                                         {
4048                                                 ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4049                                         }
4050                                 }
4051                                 else
4052                                 {
4053                                         ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4054                                 }
4055                         }
4056                 }
4057         }
4058
4059         int HandleMotd(const char** parameters, int pcnt, userrec* user)
4060         {
4061                 if (pcnt > 0)
4062                 {
4063                         /* Remote MOTD, the server is within the 1st parameter */
4064                         std::deque<std::string> params;
4065                         params.push_back(parameters[0]);
4066
4067                         /* Send it out remotely, generate no reply yet */
4068                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4069                         if (s)
4070                         {
4071                                 Utils->DoOneToOne(user->nick, "MOTD", params, s->GetName());
4072                         }
4073                         else
4074                         {
4075                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4076                         }
4077                         return 1;
4078                 }
4079                 return 0;
4080         }
4081
4082         int HandleAdmin(const char** parameters, int pcnt, userrec* user)
4083         {
4084                 if (pcnt > 0)
4085                 {
4086                         /* Remote ADMIN, the server is within the 1st parameter */
4087                         std::deque<std::string> params;
4088                         params.push_back(parameters[0]);
4089
4090                         /* Send it out remotely, generate no reply yet */
4091                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4092                         if (s)
4093                         {
4094                                 Utils->DoOneToOne(user->nick, "ADMIN", params, s->GetName());
4095                         }
4096                         else
4097                         {
4098                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4099                         }
4100                         return 1;
4101                 }
4102                 return 0;
4103         }
4104
4105         int HandleStats(const char** parameters, int pcnt, userrec* user)
4106         {
4107                 if (pcnt > 1)
4108                 {
4109                         /* Remote STATS, the server is within the 2nd parameter */
4110                         std::deque<std::string> params;
4111                         params.push_back(parameters[0]);
4112                         params.push_back(parameters[1]);
4113                         /* Send it out remotely, generate no reply yet */
4114                         TreeServer* s = Utils->FindServerMask(parameters[1]);
4115                         if (s)
4116                         {
4117                                 params[1] = s->GetName();
4118                                 Utils->DoOneToOne(user->nick, "STATS", params, s->GetName());
4119                         }
4120                         else
4121                         {
4122                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4123                         }
4124                         return 1;
4125                 }
4126                 return 0;
4127         }
4128
4129         // Ok, prepare to be confused.
4130         // After much mulling over how to approach this, it struck me that
4131         // the 'usual' way of doing a /MAP isnt the best way. Instead of
4132         // keeping track of a ton of ascii characters, and line by line
4133         // under recursion working out where to place them using multiplications
4134         // and divisons, we instead render the map onto a backplane of characters
4135         // (a character matrix), then draw the branches as a series of "L" shapes
4136         // from the nodes. This is not only friendlier on CPU it uses less stack.
4137
4138         void HandleMap(const char** parameters, int pcnt, userrec* user)
4139         {
4140                 // This array represents a virtual screen which we will
4141                 // "scratch" draw to, as the console device of an irc
4142                 // client does not provide for a proper terminal.
4143                 float totusers = 0;
4144                 float totservers = 0;
4145                 char matrix[128][80];
4146                 for (unsigned int t = 0; t < 128; t++)
4147                 {
4148                         matrix[t][0] = '\0';
4149                 }
4150                 line = 0;
4151                 // The only recursive bit is called here.
4152                 ShowMap(Utils->TreeRoot,user,0,matrix,totusers,totservers);
4153                 // Process each line one by one. The algorithm has a limit of
4154                 // 128 servers (which is far more than a spanning tree should have
4155                 // anyway, so we're ok). This limit can be raised simply by making
4156                 // the character matrix deeper, 128 rows taking 10k of memory.
4157                 for (int l = 1; l < line; l++)
4158                 {
4159                         // scan across the line looking for the start of the
4160                         // servername (the recursive part of the algorithm has placed
4161                         // the servers at indented positions depending on what they
4162                         // are related to)
4163                         int first_nonspace = 0;
4164                         while (matrix[l][first_nonspace] == ' ')
4165                         {
4166                                 first_nonspace++;
4167                         }
4168                         first_nonspace--;
4169                         // Draw the `- (corner) section: this may be overwritten by
4170                         // another L shape passing along the same vertical pane, becoming
4171                         // a |- (branch) section instead.
4172                         matrix[l][first_nonspace] = '-';
4173                         matrix[l][first_nonspace-1] = '`';
4174                         int l2 = l - 1;
4175                         // Draw upwards until we hit the parent server, causing possibly
4176                         // other corners (`-) to become branches (|-)
4177                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
4178                         {
4179                                 matrix[l2][first_nonspace-1] = '|';
4180                                 l2--;
4181                         }
4182                 }
4183                 // dump the whole lot to the user. This is the easy bit, honest.
4184                 for (int t = 0; t < line; t++)
4185                 {
4186                         user->WriteServ("006 %s :%s",user->nick,&matrix[t][0]);
4187                 }
4188                 float avg_users = totusers / totservers;
4189                 user->WriteServ("270 %s :%.0f server%s and %.0f user%s, average %.2f users per server",user->nick,totservers,(totservers > 1 ? "s" : ""),totusers,(totusers > 1 ? "s" : ""),avg_users);
4190         user->WriteServ("007 %s :End of /MAP",user->nick);
4191                 return;
4192         }
4193
4194         int HandleSquit(const char** parameters, int pcnt, userrec* user)
4195         {
4196                 TreeServer* s = Utils->FindServerMask(parameters[0]);
4197                 if (s)
4198                 {
4199                         if (s == Utils->TreeRoot)
4200                         {
4201                                  user->WriteServ("NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
4202                                 return 1;
4203                         }
4204                         TreeSocket* sock = s->GetSocket();
4205                         if (sock)
4206                         {
4207                                 ServerInstance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
4208                                 ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
4209                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
4210                                 ServerInstance->SE->DelFd(sock);
4211                                 sock->Close();
4212                                 delete sock;
4213                         }
4214                         else
4215                         {
4216                                 user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
4217                         }
4218                 }
4219                 else
4220                 {
4221                          user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
4222                 }
4223                 return 1;
4224         }
4225
4226         int HandleTime(const char** parameters, int pcnt, userrec* user)
4227         {
4228                 if ((IS_LOCAL(user)) && (pcnt))
4229                 {
4230                         TreeServer* found = Utils->FindServerMask(parameters[0]);
4231                         if (found)
4232                         {
4233                                 // we dont' override for local server
4234                                 if (found == Utils->TreeRoot)
4235                                         return 0;
4236                                 
4237                                 std::deque<std::string> params;
4238                                 params.push_back(found->GetName());
4239                                 params.push_back(user->nick);
4240                                 Utils->DoOneToOne(ServerInstance->Config->ServerName,"TIME",params,found->GetName());
4241                         }
4242                         else
4243                         {
4244                                 user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4245                         }
4246                 }
4247                 return 1;
4248         }
4249
4250         int HandleRemoteWhois(const char** parameters, int pcnt, userrec* user)
4251         {
4252                 if ((IS_LOCAL(user)) && (pcnt > 1))
4253                 {
4254                         userrec* remote = ServerInstance->FindNick(parameters[1]);
4255                         if ((remote) && (remote->GetFd() < 0))
4256                         {
4257                                 std::deque<std::string> params;
4258                                 params.push_back(parameters[1]);
4259                                 Utils->DoOneToOne(user->nick,"IDLE",params,remote->server);
4260                                 return 1;
4261                         }
4262                         else if (!remote)
4263                         {
4264                                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[1]);
4265                                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
4266                                 return 1;
4267                         }
4268                 }
4269                 return 0;
4270         }
4271
4272         void DoPingChecks(time_t curtime)
4273         {
4274                 for (unsigned int j = 0; j < Utils->TreeRoot->ChildCount(); j++)
4275                 {
4276                         TreeServer* serv = Utils->TreeRoot->GetChild(j);
4277                         TreeSocket* sock = serv->GetSocket();
4278                         if (sock)
4279                         {
4280                                 if (curtime >= serv->NextPingTime())
4281                                 {
4282                                         if (serv->AnsweredLastPing())
4283                                         {
4284                                                 sock->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" PING "+serv->GetName());
4285                                                 serv->SetNextPingTime(curtime + 60);
4286                                         }
4287                                         else
4288                                         {
4289                                                 // they didnt answer, boot them
4290                                                 ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 pinged out",serv->GetName().c_str());
4291                                                 sock->Squit(serv,"Ping timeout");
4292                                                 ServerInstance->SE->DelFd(sock);
4293                                                 sock->Close();
4294                                                 delete sock;
4295                                                 return;
4296                                         }
4297                                 }
4298                         }
4299                 }
4300         }
4301
4302         void ConnectServer(Link* x)
4303         {
4304                 insp_inaddr binip;
4305
4306                 /* Do we already have an IP? If so, no need to resolve it. */
4307                 if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
4308                 {
4309                         TreeSocket* newsocket = new TreeSocket(Utils, ServerInstance, x->IPAddr,x->Port,false,x->Timeout ? x->Timeout : 10,x->Name.c_str());
4310                         if (newsocket->GetFd() > -1)
4311                         {
4312                                 /* Handled automatically on success */
4313                         }
4314                         else
4315                         {
4316                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
4317                                 delete newsocket;
4318                                 Utils->DoFailOver(x);
4319                         }
4320                 }
4321                 else
4322                 {
4323                         try
4324                         {
4325                                 ServernameResolver* snr = new ServernameResolver(Utils, ServerInstance,x->IPAddr, *x);
4326                                 ServerInstance->AddResolver(snr);
4327                         }
4328                         catch (ModuleException& e)
4329                         {
4330                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
4331                                 Utils->DoFailOver(x);
4332                         }
4333                 }
4334         }
4335
4336         void AutoConnectServers(time_t curtime)
4337         {
4338                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4339                 {
4340                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
4341                         {
4342                                 ServerInstance->Log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
4343                                 x->NextConnectTime = curtime + x->AutoConnect;
4344                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4345                                 if (x->FailOver.length())
4346                                 {
4347                                         TreeServer* CheckFailOver = Utils->FindServer(x->FailOver.c_str());
4348                                         if (CheckFailOver)
4349                                         {
4350                                                 /* The failover for this server is currently a member of the network.
4351                                                  * The failover probably succeeded, where the main link did not.
4352                                                  * Don't try the main link until the failover is gone again.
4353                                                  */
4354                                                 continue;
4355                                         }
4356                                 }
4357                                 if (!CheckDupe)
4358                                 {
4359                                         // an autoconnected server is not connected. Check if its time to connect it
4360                                         ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
4361                                         this->ConnectServer(&(*x));
4362                                 }
4363                         }
4364                 }
4365         }
4366
4367         int HandleVersion(const char** parameters, int pcnt, userrec* user)
4368         {
4369                 // we've already checked if pcnt > 0, so this is safe
4370                 TreeServer* found = Utils->FindServerMask(parameters[0]);
4371                 if (found)
4372                 {
4373                         std::string Version = found->GetVersion();
4374                         user->WriteServ("351 %s :%s",user->nick,Version.c_str());
4375                         if (found == Utils->TreeRoot)
4376                         {
4377                                 std::stringstream out(ServerInstance->Config->data005);
4378                                 std::string token = "";
4379                                 std::string line5 = "";
4380                                 int token_counter = 0;
4381
4382                                 while (!out.eof())
4383                                 {
4384                                         out >> token;
4385                                         line5 = line5 + token + " ";   
4386                                         token_counter++;
4387
4388                                         if ((token_counter >= 13) || (out.eof() == true))
4389                                         {
4390                                                 user->WriteServ("005 %s %s:are supported by this server",user->nick,line5.c_str());
4391                                                 line5 = "";
4392                                                 token_counter = 0;
4393                                         }
4394                                 }
4395                         }
4396                 }
4397                 else
4398                 {
4399                         user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4400                 }
4401                 return 1;
4402         }
4403         
4404         int HandleConnect(const char** parameters, int pcnt, userrec* user)
4405         {
4406                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4407                 {
4408                         if (ServerInstance->MatchText(x->Name.c_str(),parameters[0]))
4409                         {
4410                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4411                                 if (!CheckDupe)
4412                                 {
4413                                         user->WriteServ("NOTICE %s :*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",user->nick,x->Name.c_str(),(x->HiddenFromStats ? "<hidden>" : x->IPAddr.c_str()),x->Port);
4414                                         ConnectServer(&(*x));
4415                                         return 1;
4416                                 }
4417                                 else
4418                                 {
4419                                         user->WriteServ("NOTICE %s :*** CONNECT: Server \002%s\002 already exists on the network and is connected via \002%s\002",user->nick,x->Name.c_str(),CheckDupe->GetParent()->GetName().c_str());
4420                                         return 1;
4421                                 }
4422                         }
4423                 }
4424                 user->WriteServ("NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
4425                 return 1;
4426         }
4427
4428         virtual int OnStats(char statschar, userrec* user, string_list &results)
4429         {
4430                 if (statschar == 'c')
4431                 {
4432                         for (unsigned int i = 0; i < Utils->LinkBlocks.size(); i++)
4433                         {
4434                                 results.push_back(std::string(ServerInstance->Config->ServerName)+" 213 "+user->nick+" C *@"+(Utils->LinkBlocks[i].HiddenFromStats ? "<hidden>" : Utils->LinkBlocks[i].IPAddr)+" * "+Utils->LinkBlocks[i].Name.c_str()+" "+ConvToStr(Utils->LinkBlocks[i].Port)+" "+(Utils->LinkBlocks[i].EncryptionKey != "" ? 'e' : '-')+(Utils->LinkBlocks[i].AutoConnect ? 'a' : '-')+'s');
4435                                 results.push_back(std::string(ServerInstance->Config->ServerName)+" 244 "+user->nick+" H * * "+Utils->LinkBlocks[i].Name.c_str());
4436                         }
4437                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
4438                         ServerInstance->SNO->WriteToSnoMask('t',"Notice: %s '%c' requested by %s (%s@%s)",(!strcmp(user->server,ServerInstance->Config->ServerName) ? "Stats" : "Remote stats"),statschar,user->nick,user->ident,user->host);
4439                         return 1;
4440                 }
4441                 return 0;
4442         }
4443
4444         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
4445         {
4446                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
4447                 if (!validated)
4448                         return 0;
4449
4450                 if (command == "CONNECT")
4451                 {
4452                         return this->HandleConnect(parameters,pcnt,user);
4453                 }
4454                 else if (command == "STATS")
4455                 {
4456                         return this->HandleStats(parameters,pcnt,user);
4457                 }
4458                 else if (command == "MOTD")
4459                 {
4460                         return this->HandleMotd(parameters,pcnt,user);
4461                 }
4462                 else if (command == "ADMIN")
4463                 {
4464                         return this->HandleAdmin(parameters,pcnt,user);
4465                 }
4466                 else if (command == "SQUIT")
4467                 {
4468                         return this->HandleSquit(parameters,pcnt,user);
4469                 }
4470                 else if (command == "MAP")
4471                 {
4472                         this->HandleMap(parameters,pcnt,user);
4473                         return 1;
4474                 }
4475                 else if ((command == "TIME") && (pcnt > 0))
4476                 {
4477                         return this->HandleTime(parameters,pcnt,user);
4478                 }
4479                 else if (command == "LUSERS")
4480                 {
4481                         this->HandleLusers(parameters,pcnt,user);
4482                         return 1;
4483                 }
4484                 else if (command == "LINKS")
4485                 {
4486                         this->HandleLinks(parameters,pcnt,user);
4487                         return 1;
4488                 }
4489                 else if (command == "WHOIS")
4490                 {
4491                         if (pcnt > 1)
4492                         {
4493                                 // remote whois
4494                                 return this->HandleRemoteWhois(parameters,pcnt,user);
4495                         }
4496                 }
4497                 else if ((command == "VERSION") && (pcnt > 0))
4498                 {
4499                         this->HandleVersion(parameters,pcnt,user);
4500                         return 1;
4501                 }
4502
4503                 return 0;
4504         }
4505
4506         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
4507         {
4508                 if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
4509                 {
4510                         // this bit of code cleverly routes all module commands
4511                         // to all remote severs *automatically* so that modules
4512                         // can just handle commands locally, without having
4513                         // to have any special provision in place for remote
4514                         // commands and linking protocols.
4515                         std::deque<std::string> params;
4516                         params.clear();
4517                         for (int j = 0; j < pcnt; j++)
4518                         {
4519                                 if (strchr(parameters[j],' '))
4520                                 {
4521                                         params.push_back(":" + std::string(parameters[j]));
4522                                 }
4523                                 else
4524                                 {
4525                                         params.push_back(std::string(parameters[j]));
4526                                 }
4527                         }
4528                         ServerInstance->Log(DEBUG,"Globally route '%s'",command.c_str());
4529                         Utils->DoOneToMany(user->nick,command,params);
4530                 }
4531         }
4532
4533         virtual void OnGetServerDescription(const std::string &servername,std::string &description)
4534         {
4535                 TreeServer* s = Utils->FindServer(servername);
4536                 if (s)
4537                 {
4538                         description = s->GetDesc();
4539                 }
4540         }
4541
4542         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
4543         {
4544                 if (IS_LOCAL(source))
4545                 {
4546                         std::deque<std::string> params;
4547                         params.push_back(dest->nick);
4548                         params.push_back(channel->name);
4549                         Utils->DoOneToMany(source->nick,"INVITE",params);
4550                 }
4551         }
4552
4553         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic)
4554         {
4555                 std::deque<std::string> params;
4556                 params.push_back(chan->name);
4557                 params.push_back(":"+topic);
4558                 Utils->DoOneToMany(user->nick,"TOPIC",params);
4559         }
4560
4561         virtual void OnWallops(userrec* user, const std::string &text)
4562         {
4563                 if (IS_LOCAL(user))
4564                 {
4565                         std::deque<std::string> params;
4566                         params.push_back(":"+text);
4567                         Utils->DoOneToMany(user->nick,"WALLOPS",params);
4568                 }
4569         }
4570
4571         virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status)
4572         {
4573                 if (target_type == TYPE_USER)
4574                 {
4575                         userrec* d = (userrec*)dest;
4576                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4577                         {
4578                                 std::deque<std::string> params;
4579                                 params.clear();
4580                                 params.push_back(d->nick);
4581                                 params.push_back(":"+text);
4582                                 Utils->DoOneToOne(user->nick,"NOTICE",params,d->server);
4583                         }
4584                 }
4585                 else if (target_type == TYPE_CHANNEL)
4586                 {
4587                         if (IS_LOCAL(user))
4588                         {
4589                                 chanrec *c = (chanrec*)dest;
4590                                 if (c)
4591                                 {
4592                                         std::string cname = c->name;
4593                                         if (status)
4594                                                 cname = status + cname;
4595                                         std::deque<TreeServer*> list;
4596                                         Utils->GetListOfServersForChannel(c,list);
4597                                         unsigned int ucount = list.size();
4598                                         for (unsigned int i = 0; i < ucount; i++)
4599                                         {
4600                                                 TreeSocket* Sock = list[i]->GetSocket();
4601                                                 if (Sock)
4602                                                         Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
4603                                         }
4604                                 }
4605                         }
4606                 }
4607                 else if (target_type == TYPE_SERVER)
4608                 {
4609                         if (IS_LOCAL(user))
4610                         {
4611                                 char* target = (char*)dest;
4612                                 std::deque<std::string> par;
4613                                 par.push_back(target);
4614                                 par.push_back(":"+text);
4615                                 Utils->DoOneToMany(user->nick,"NOTICE",par);
4616                         }
4617                 }
4618         }
4619
4620         virtual void OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status)
4621         {
4622                 if (target_type == TYPE_USER)
4623                 {
4624                         // route private messages which are targetted at clients only to the server
4625                         // which needs to receive them
4626                         userrec* d = (userrec*)dest;
4627                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4628                         {
4629                                 std::deque<std::string> params;
4630                                 params.clear();
4631                                 params.push_back(d->nick);
4632                                 params.push_back(":"+text);
4633                                 Utils->DoOneToOne(user->nick,"PRIVMSG",params,d->server);
4634                         }
4635                 }
4636                 else if (target_type == TYPE_CHANNEL)
4637                 {
4638                         if (IS_LOCAL(user))
4639                         {
4640                                 chanrec *c = (chanrec*)dest;
4641                                 if (c)
4642                                 {
4643                                         std::string cname = c->name;
4644                                         if (status)
4645                                                 cname = status + cname;
4646                                         std::deque<TreeServer*> list;
4647                                         Utils->GetListOfServersForChannel(c,list);
4648                                         unsigned int ucount = list.size();
4649                                         for (unsigned int i = 0; i < ucount; i++)
4650                                         {
4651                                                 TreeSocket* Sock = list[i]->GetSocket();
4652                                                 if (Sock)
4653                                                         Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
4654                                         }
4655                                 }
4656                         }
4657                 }
4658                 else if (target_type == TYPE_SERVER)
4659                 {
4660                         if (IS_LOCAL(user))
4661                         {
4662                                 char* target = (char*)dest;
4663                                 std::deque<std::string> par;
4664                                 par.push_back(target);
4665                                 par.push_back(":"+text);
4666                                 Utils->DoOneToMany(user->nick,"PRIVMSG",par);
4667                         }
4668                 }
4669         }
4670
4671         virtual void OnBackgroundTimer(time_t curtime)
4672         {
4673                 AutoConnectServers(curtime);
4674                 DoPingChecks(curtime);
4675         }
4676
4677         virtual void OnUserJoin(userrec* user, chanrec* channel)
4678         {
4679                 // Only do this for local users
4680                 if (IS_LOCAL(user))
4681                 {
4682                         std::deque<std::string> params;
4683                         params.clear();
4684                         params.push_back(channel->name);
4685                         // set up their permissions and the channel TS with FJOIN.
4686                         // All users are FJOINed now, because a module may specify
4687                         // new joining permissions for the user.
4688                         params.clear();
4689                         params.push_back(channel->name);
4690                         params.push_back(ConvToStr(channel->age));
4691                         params.push_back(std::string(channel->GetAllPrefixChars(user))+","+std::string(user->nick));
4692                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FJOIN",params);
4693                 }
4694         }
4695
4696         virtual void OnChangeHost(userrec* user, const std::string &newhost)
4697         {
4698                 // only occurs for local clients
4699                 if (user->registered != REG_ALL)
4700                         return;
4701                 std::deque<std::string> params;
4702                 params.push_back(newhost);
4703                 Utils->DoOneToMany(user->nick,"FHOST",params);
4704         }
4705
4706         virtual void OnChangeName(userrec* user, const std::string &gecos)
4707         {
4708                 // only occurs for local clients
4709                 if (user->registered != REG_ALL)
4710                         return;
4711                 std::deque<std::string> params;
4712                 params.push_back(gecos);
4713                 Utils->DoOneToMany(user->nick,"FNAME",params);
4714         }
4715
4716         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage)
4717         {
4718                 if (IS_LOCAL(user))
4719                 {
4720                         std::deque<std::string> params;
4721                         params.push_back(channel->name);
4722                         if (partmessage != "")
4723                                 params.push_back(":"+partmessage);
4724                         Utils->DoOneToMany(user->nick,"PART",params);
4725                 }
4726         }
4727
4728         virtual void OnUserConnect(userrec* user)
4729         {
4730                 char agestr[MAXBUF];
4731                 if (IS_LOCAL(user))
4732                 {
4733                         std::deque<std::string> params;
4734                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
4735                         params.push_back(agestr);
4736                         params.push_back(user->nick);
4737                         params.push_back(user->host);
4738                         params.push_back(user->dhost);
4739                         params.push_back(user->ident);
4740                         params.push_back("+"+std::string(user->FormatModes()));
4741                         params.push_back(user->GetIPString());
4742                         params.push_back(":"+std::string(user->fullname));
4743                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"NICK",params);
4744
4745                         // User is Local, change needs to be reflected!
4746                         TreeServer* SourceServer = Utils->FindServer(user->server);
4747                         if (SourceServer)
4748                         {
4749                                 SourceServer->AddUserCount();
4750                         }
4751
4752                 }
4753         }
4754
4755         virtual void OnUserQuit(userrec* user, const std::string &reason)
4756         {
4757                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
4758                 {
4759                         std::deque<std::string> params;
4760                         params.push_back(":"+reason);
4761                         Utils->DoOneToMany(user->nick,"QUIT",params);
4762                 }
4763                 // Regardless, We need to modify the user Counts..
4764                 TreeServer* SourceServer = Utils->FindServer(user->server);
4765                 if (SourceServer)
4766                 {
4767                         SourceServer->DelUserCount();
4768                 }
4769
4770         }
4771
4772         virtual void OnUserPostNick(userrec* user, const std::string &oldnick)
4773         {
4774                 if (IS_LOCAL(user))
4775                 {
4776                         std::deque<std::string> params;
4777                         params.push_back(user->nick);
4778                         Utils->DoOneToMany(oldnick,"NICK",params);
4779                 }
4780         }
4781
4782         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason)
4783         {
4784                 if ((source) && (IS_LOCAL(source)))
4785                 {
4786                         std::deque<std::string> params;
4787                         params.push_back(chan->name);
4788                         params.push_back(user->nick);
4789                         params.push_back(":"+reason);
4790                         Utils->DoOneToMany(source->nick,"KICK",params);
4791                 }
4792                 else if (!source)
4793                 {
4794                         std::deque<std::string> params;
4795                         params.push_back(chan->name);
4796                         params.push_back(user->nick);
4797                         params.push_back(":"+reason);
4798                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"KICK",params);
4799                 }
4800         }
4801
4802         virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason)
4803         {
4804                 std::deque<std::string> params;
4805                 params.push_back(dest->nick);
4806                 params.push_back(":"+reason);
4807                 Utils->DoOneToMany(source->nick,"KILL",params);
4808         }
4809
4810         virtual void OnRehash(const std::string &parameter)
4811         {
4812                 if (parameter != "")
4813                 {
4814                         std::deque<std::string> params;
4815                         params.push_back(parameter);
4816                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"REHASH",params);
4817                         // check for self
4818                         if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameter))
4819                         {
4820                                 ServerInstance->WriteOpers("*** Remote rehash initiated from server \002%s\002",ServerInstance->Config->ServerName);
4821                                 ServerInstance->RehashServer();
4822                         }
4823                 }
4824                 Utils->ReadConfiguration(false);
4825         }
4826
4827         // note: the protocol does not allow direct umode +o except
4828         // via NICK with 8 params. sending OPERTYPE infers +o modechange
4829         // locally.
4830         virtual void OnOper(userrec* user, const std::string &opertype)
4831         {
4832                 if (IS_LOCAL(user))
4833                 {
4834                         std::deque<std::string> params;
4835                         params.push_back(opertype);
4836                         Utils->DoOneToMany(user->nick,"OPERTYPE",params);
4837                 }
4838         }
4839
4840         void OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason)
4841         {
4842                 if (IS_LOCAL(source))
4843                 {
4844                         char type[8];
4845                         snprintf(type,8,"%cLINE",linetype);
4846                         std::string stype = type;
4847                         if (adding)
4848                         {
4849                                 char sduration[MAXBUF];
4850                                 snprintf(sduration,MAXBUF,"%ld",duration);
4851                                 std::deque<std::string> params;
4852                                 params.push_back(host);
4853                                 params.push_back(sduration);
4854                                 params.push_back(":"+reason);
4855                                 Utils->DoOneToMany(source->nick,stype,params);
4856                         }
4857                         else
4858                         {
4859                                 std::deque<std::string> params;
4860                                 params.push_back(host);
4861                                 Utils->DoOneToMany(source->nick,stype,params);
4862                         }
4863                 }
4864         }
4865
4866         virtual void OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
4867         {
4868                 OnLine(source,hostmask,true,'G',duration,reason);
4869         }
4870         
4871         virtual void OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask)
4872         {
4873                 OnLine(source,ipmask,true,'Z',duration,reason);
4874         }
4875
4876         virtual void OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask)
4877         {
4878                 OnLine(source,nickmask,true,'Q',duration,reason);
4879         }
4880
4881         virtual void OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
4882         {
4883                 OnLine(source,hostmask,true,'E',duration,reason);
4884         }
4885
4886         virtual void OnDelGLine(userrec* source, const std::string &hostmask)
4887         {
4888                 OnLine(source,hostmask,false,'G',0,"");
4889         }
4890
4891         virtual void OnDelZLine(userrec* source, const std::string &ipmask)
4892         {
4893                 OnLine(source,ipmask,false,'Z',0,"");
4894         }
4895
4896         virtual void OnDelQLine(userrec* source, const std::string &nickmask)
4897         {
4898                 OnLine(source,nickmask,false,'Q',0,"");
4899         }
4900
4901         virtual void OnDelELine(userrec* source, const std::string &hostmask)
4902         {
4903                 OnLine(source,hostmask,false,'E',0,"");
4904         }
4905
4906         virtual void OnMode(userrec* user, void* dest, int target_type, const std::string &text)
4907         {
4908                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
4909                 {
4910                         if (target_type == TYPE_USER)
4911                         {
4912                                 userrec* u = (userrec*)dest;
4913                                 std::deque<std::string> params;
4914                                 params.push_back(u->nick);
4915                                 params.push_back(text);
4916                                 Utils->DoOneToMany(user->nick,"MODE",params);
4917                         }
4918                         else
4919                         {
4920                                 chanrec* c = (chanrec*)dest;
4921                                 std::deque<std::string> params;
4922                                 params.push_back(c->name);
4923                                 params.push_back(text);
4924                                 Utils->DoOneToMany(user->nick,"MODE",params);
4925                         }
4926                 }
4927         }
4928
4929         virtual void OnSetAway(userrec* user)
4930         {
4931                 if (IS_LOCAL(user))
4932                 {
4933                         std::deque<std::string> params;
4934                         params.push_back(":"+std::string(user->awaymsg));
4935                         Utils->DoOneToMany(user->nick,"AWAY",params);
4936                 }
4937         }
4938
4939         virtual void OnCancelAway(userrec* user)
4940         {
4941                 if (IS_LOCAL(user))
4942                 {
4943                         std::deque<std::string> params;
4944                         params.clear();
4945                         Utils->DoOneToMany(user->nick,"AWAY",params);
4946                 }
4947         }
4948
4949         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline)
4950         {
4951                 TreeSocket* s = (TreeSocket*)opaque;
4952                 if (target)
4953                 {
4954                         if (target_type == TYPE_USER)
4955                         {
4956                                 userrec* u = (userrec*)target;
4957                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+u->nick+" "+ConvToStr(u->age)+" "+modeline);
4958                         }
4959                         else
4960                         {
4961                                 chanrec* c = (chanrec*)target;
4962                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+modeline);
4963                         }
4964                 }
4965         }
4966
4967         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata)
4968         {
4969                 TreeSocket* s = (TreeSocket*)opaque;
4970                 if (target)
4971                 {
4972                         if (target_type == TYPE_USER)
4973                         {
4974                                 userrec* u = (userrec*)target;
4975                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+u->nick+" "+extname+" :"+extdata);
4976                         }
4977                         else if (target_type == TYPE_OTHER)
4978                         {
4979                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA * "+extname+" :"+extdata);
4980                         }
4981                         else if (target_type == TYPE_CHANNEL)
4982                         {
4983                                 chanrec* c = (chanrec*)target;
4984                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+c->name+" "+extname+" :"+extdata);
4985                         }
4986                 }
4987         }
4988
4989         virtual void OnEvent(Event* event)
4990         {
4991                 std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
4992
4993                 if (event->GetEventID() == "send_metadata")
4994                 {
4995                         if (params->size() < 3)
4996                                 return;
4997                         (*params)[2] = ":" + (*params)[2];
4998                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"METADATA",*params);
4999                 }
5000                 else if (event->GetEventID() == "send_topic")
5001                 {
5002                         if (params->size() < 2)
5003                                 return;
5004                         (*params)[1] = ":" + (*params)[1];
5005                         params->insert(params->begin() + 1,ServerInstance->Config->ServerName);
5006                         params->insert(params->begin() + 1,ConvToStr(ServerInstance->Time()));
5007                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FTOPIC",*params);
5008                 }
5009                 else if (event->GetEventID() == "send_mode")
5010                 {
5011                         if (params->size() < 2)
5012                                 return;
5013                         // Insert the TS value of the object, either userrec or chanrec
5014                         time_t ourTS = 0;
5015                         userrec* a = ServerInstance->FindNick((*params)[0]);
5016                         if (a)
5017                         {
5018                                 ourTS = a->age;
5019                         }
5020                         else
5021                         {
5022                                 chanrec* a = ServerInstance->FindChan((*params)[0]);
5023                                 if (a)
5024                                 {
5025                                         ourTS = a->age;
5026                                 }
5027                         }
5028                         params->insert(params->begin() + 1,ConvToStr(ourTS));
5029                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",*params);
5030                 }
5031         }
5032
5033         virtual ~ModuleSpanningTree()
5034         {
5035                 ServerInstance->Log(DEBUG,"Performing unload of spanningtree!");
5036                 /* This will also free the listeners */
5037                 delete Utils;
5038         }
5039
5040         virtual Version GetVersion()
5041         {
5042                 return Version(1,1,0,2,VF_VENDOR,API_VERSION);
5043         }
5044
5045         void Implements(char* List)
5046         {
5047                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
5048                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
5049                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
5050                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
5051                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
5052                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
5053                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = List[I_OnPostCommand] = 1;
5054         }
5055
5056         /* It is IMPORTANT that m_spanningtree is the last module in the chain
5057          * so that any activity it sees is FINAL, e.g. we arent going to send out
5058          * a NICK message before m_cloaking has finished putting the +x on the user,
5059          * etc etc.
5060          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
5061          * the module call queue.
5062          */
5063         Priority Prioritize()
5064         {
5065                 return PRIORITY_LAST;
5066         }
5067 };
5068
5069 void SpanningTreeUtilities::DoFailOver(Link* x)
5070 {
5071         if (x->FailOver.length())
5072         {
5073                 if (x->FailOver == x->Name)
5074                 {
5075                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Some muppet configured the failover for server \002%s\002 to point at itself. Not following it!", x->Name.c_str());
5076                         return;
5077                 }
5078                 Link* TryThisOne = this->FindLink(x->FailOver.c_str());
5079                 if (TryThisOne)
5080                 {
5081                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Trying failover link for \002%s\002: \002%s\002...", x->Name.c_str(), TryThisOne->Name.c_str());
5082                         Creator->ConnectServer(TryThisOne);
5083                 }
5084                 else
5085                 {
5086                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Invalid failover server specified for server \002%s\002, will not follow!", x->Name.c_str());
5087                 }
5088         }
5089 }
5090
5091 Link* SpanningTreeUtilities::FindLink(const std::string& name)
5092 {
5093         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
5094         {
5095                 if (ServerInstance->MatchText(x->Name.c_str(), name.c_str()))
5096                 {
5097                         return &(*x);
5098                 }
5099         }
5100         return NULL;
5101 }
5102
5103
5104 class ModuleSpanningTreeFactory : public ModuleFactory
5105 {
5106  public:
5107         ModuleSpanningTreeFactory()
5108         {
5109         }
5110         
5111         ~ModuleSpanningTreeFactory()
5112         {
5113         }
5114         
5115         virtual Module * CreateModule(InspIRCd* Me)
5116         {
5117                 return new ModuleSpanningTree(Me);
5118         }
5119         
5120 };
5121
5122
5123 extern "C" void * init_module( void )
5124 {
5125         return new ModuleSpanningTreeFactory;
5126 }