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