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