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