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