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