]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Probably wont compile yet - purge_empty_channels refactor
[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                 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));
1115
1116                 params[7] = ":" + params[7];
1117                 DoOneToAllButSender(source,"NICK",params,source);
1118
1119                 // Increment the Source Servers User Count..
1120                 TreeServer* SourceServer = FindServer(source);
1121                 if (SourceServer)
1122                 {
1123                         SourceServer->AddUserCount();
1124                 }
1125
1126                 return true;
1127         }
1128
1129         /* Send one or more FJOINs for a channel of users.
1130          * If the length of a single line is more than 480-NICKMAX
1131          * in length, it is split over multiple lines.
1132          */
1133         void SendFJoins(TreeServer* Current, chanrec* c)
1134         {
1135                 log(DEBUG,"Sending FJOINs to other server for %s",c->name);
1136                 char list[MAXBUF];
1137                 std::string individual_halfops = ":"+Srv->GetServerName()+" FMODE "+c->name;
1138                 size_t counter = snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
1139                 size_t initial = counter;
1140
1141                 CUList *ulist = c->GetUsers();
1142                 std::vector<userrec*> specific_halfop;
1143                 std::vector<userrec*> specific_voice;
1144
1145                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1146                 {
1147                         charlcat(list,' ',MAXBUF);
1148                         counter++;
1149                         int x = cflags(i->second,c);
1150                         if ((x & UCMODE_HOP) && (x & UCMODE_OP))
1151                         {
1152                                 specific_halfop.push_back(i->second);
1153                         }
1154                         if (((x & UCMODE_HOP) || (x & UCMODE_OP)) && (x & UCMODE_VOICE))
1155                         {
1156                                 specific_voice.push_back(i->second);
1157                         }
1158
1159                         char n = 0;
1160                         if (x & UCMODE_OP)
1161                         {
1162                                 n = '@';
1163                         }
1164                         else if (x & UCMODE_HOP)
1165                         {
1166                                 n = '%';
1167                         }
1168                         else if (x & UCMODE_VOICE)
1169                         {
1170                                 n = '+';
1171                         }
1172
1173                         if (n)
1174                         {
1175                                 charlcat(list,n,MAXBUF);
1176                                 counter++;
1177                         }
1178
1179                         counter += strlcat(list,i->second->nick,MAXBUF);
1180
1181                         if (counter > (480-NICKMAX))
1182                         {
1183                                 log(DEBUG,"FJOIN line wrapped");
1184                                 this->WriteLine(list);
1185                                 counter = snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
1186                                 for (unsigned int y = 0; y < specific_voice.size(); y++)
1187                                 {
1188                                         this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +v "+specific_voice[y]->nick);
1189                                 }
1190                                 for (unsigned int y = 0; y < specific_halfop.size(); y++)
1191                                 {
1192                                         this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +h "+specific_halfop[y]->nick);
1193                                 }
1194                         }
1195                 }
1196                 if (counter != initial)
1197                 {
1198                         log(DEBUG,"Final FJOIN line");
1199                         this->WriteLine(list);
1200                         for (unsigned int y = 0; y < specific_voice.size(); y++)
1201                         {
1202                                 this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +v "+specific_voice[y]->nick);
1203                         }
1204                         for (unsigned int y = 0; y < specific_halfop.size(); y++)
1205                         {
1206                                 this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +h "+specific_halfop[y]->nick);
1207                         }
1208                 }
1209         }
1210
1211         /* Send G, Q, Z and E lines */
1212         void SendXLines(TreeServer* Current)
1213         {
1214                 char data[MAXBUF];
1215                 std::string n = Srv->GetServerName();
1216                 const char* sn = n.c_str();
1217                 int iterations = 0;
1218                 /* Yes, these arent too nice looking, but they get the job done */
1219                 for (std::vector<ZLine>::iterator i = zlines.begin(); i != zlines.end(); i++, iterations++)
1220                 {
1221                         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);
1222                         this->WriteLine(data);
1223                         if ((iterations % 10) == 0)
1224                         {
1225                                 ServerInstance->DoOneIteration(false);
1226                         }
1227                 }
1228                 for (std::vector<QLine>::iterator i = qlines.begin(); i != qlines.end(); i++, iterations++)
1229                 {
1230                         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);
1231                         this->WriteLine(data);
1232                         if ((iterations % 10) == 0)
1233                         {
1234                                 ServerInstance->DoOneIteration(false);
1235                         }
1236                 }
1237                 for (std::vector<GLine>::iterator i = glines.begin(); i != glines.end(); i++, iterations++)
1238                 {
1239                         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);
1240                         this->WriteLine(data);
1241                         if ((iterations % 10) == 0)
1242                         {
1243                                 ServerInstance->DoOneIteration(false);
1244                         }
1245                 }
1246                 for (std::vector<ELine>::iterator i = elines.begin(); i != elines.end(); i++, iterations++)
1247                 {
1248                         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);
1249                         this->WriteLine(data);
1250                         if ((iterations % 10) == 0)
1251                         {
1252                                 ServerInstance->DoOneIteration(false);
1253                         }
1254                 }
1255                 for (std::vector<ZLine>::iterator i = pzlines.begin(); i != pzlines.end(); i++, iterations++)
1256                 {
1257                         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);
1258                         this->WriteLine(data);
1259                         if ((iterations % 10) == 0)
1260                         {
1261                                 ServerInstance->DoOneIteration(false);
1262                         }
1263                 }
1264                 for (std::vector<QLine>::iterator i = pqlines.begin(); i != pqlines.end(); i++, iterations++)
1265                 {
1266                         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);
1267                         this->WriteLine(data);
1268                         if ((iterations % 10) == 0)
1269                         {
1270                                 ServerInstance->DoOneIteration(false);
1271                         }
1272                 }
1273                 for (std::vector<GLine>::iterator i = pglines.begin(); i != pglines.end(); i++, iterations++)
1274                 {
1275                         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);
1276                         this->WriteLine(data);
1277                         if ((iterations % 10) == 0)
1278                         {
1279                                 ServerInstance->DoOneIteration(false);
1280                         }
1281                 }
1282                 for (std::vector<ELine>::iterator i = pelines.begin(); i != pelines.end(); i++, iterations++)
1283                 {
1284                         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);
1285                         this->WriteLine(data);
1286                         if ((iterations % 10) == 0)
1287                         {
1288                                 ServerInstance->DoOneIteration(false);
1289                         }
1290                 }
1291         }
1292
1293         /* Send channel modes and topics */
1294         void SendChannelModes(TreeServer* Current)
1295         {
1296                 char data[MAXBUF];
1297                 std::deque<std::string> list;
1298                 int iterations = 0;
1299                 std::string n = Srv->GetServerName();
1300                 const char* sn = n.c_str();
1301                 for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++, iterations++)
1302                 {
1303                         SendFJoins(Current, c->second);
1304                         snprintf(data,MAXBUF,":%s FMODE %s +%s",sn,c->second->name,chanmodes(c->second,true));
1305                         this->WriteLine(data);
1306                         if (*c->second->topic)
1307                         {
1308                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
1309                                 this->WriteLine(data);
1310                         }
1311                         for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
1312                         {
1313                                 snprintf(data,MAXBUF,":%s FMODE %s +b %s",sn,c->second->name,b->data);
1314                                 this->WriteLine(data);
1315                         }
1316                         FOREACH_MOD(I_OnSyncChannel,OnSyncChannel(c->second,(Module*)TreeProtocolModule,(void*)this));
1317                         list.clear();
1318                         c->second->GetExtList(list);
1319                         for (unsigned int j = 0; j < list.size(); j++)
1320                         {
1321                                 FOREACH_MOD(I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)TreeProtocolModule,(void*)this,list[j]));
1322                         }
1323                 }
1324         }
1325
1326         /* send all users and their oper state/modes */
1327         void SendUsers(TreeServer* Current)
1328         {
1329                 char data[MAXBUF];
1330                 std::deque<std::string> list;
1331                 int iterations = 0;
1332                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++, iterations++)
1333                 {
1334                         if (u->second->registered == 7)
1335                         {
1336                                 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);
1337                                 this->WriteLine(data);
1338                                 if (*u->second->oper)
1339                                 {
1340                                         this->WriteLine(":"+std::string(u->second->nick)+" OPERTYPE "+std::string(u->second->oper));
1341                                 }
1342                                 if (*u->second->awaymsg)
1343                                 {
1344                                         this->WriteLine(":"+std::string(u->second->nick)+" AWAY :"+std::string(u->second->awaymsg));
1345                                 }
1346                                 FOREACH_MOD(I_OnSyncUser,OnSyncUser(u->second,(Module*)TreeProtocolModule,(void*)this));
1347                                 list.clear();
1348                                 u->second->GetExtList(list);
1349                                 for (unsigned int j = 0; j < list.size(); j++)
1350                                 {
1351                                         FOREACH_MOD(I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)TreeProtocolModule,(void*)this,list[j]));
1352                                 }
1353                         }
1354                 }
1355         }
1356
1357         /* This function is called when we want to send a netburst to a local
1358          * server. There is a set order we must do this, because for example
1359          * users require their servers to exist, and channels require their
1360          * users to exist. You get the idea.
1361          */
1362         void DoBurst(TreeServer* s)
1363         {
1364                 /* The calls here to ServerInstance->DoOneIteration(false); yield the processing
1365                  * back to the core so that a large burst is split into at least 6 sections
1366                  * (possibly more)
1367                  */
1368                 std::string burst = "BURST "+ConvToStr(time(NULL));
1369                 std::string endburst = "ENDBURST";
1370                 Srv->SendOpers("*** Bursting to \2"+s->GetName()+"\2.");
1371                 this->WriteLine(burst);
1372                 ServerInstance->DoOneIteration(false);
1373                 /* send our version string */
1374                 this->WriteLine(":"+Srv->GetServerName()+" VERSION :"+Srv->GetVersion());
1375                 /* Send server tree */
1376                 this->SendServers(TreeRoot,s,1);
1377                 ServerInstance->DoOneIteration(false);
1378                 /* Send users and their oper status */
1379                 this->SendUsers(s);
1380                 ServerInstance->DoOneIteration(false);
1381                 /* Send everything else (channel modes, xlines etc) */
1382                 this->SendChannelModes(s);
1383                 ServerInstance->DoOneIteration(false);
1384                 this->SendXLines(s);
1385                 ServerInstance->DoOneIteration(false);
1386                 FOREACH_MOD(I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this));
1387                 ServerInstance->DoOneIteration(false);
1388                 this->WriteLine(endburst);
1389                 Srv->SendOpers("*** Finished bursting to \2"+s->GetName()+"\2.");
1390         }
1391
1392         /* This function is called when we receive data from a remote
1393          * server. We buffer the data in a std::string (it doesnt stay
1394          * there for long), reading using InspSocket::Read() which can
1395          * read up to 16 kilobytes in one operation.
1396          *
1397          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
1398          * THE SOCKET OBJECT FOR US.
1399          */
1400         virtual bool OnDataReady()
1401         {
1402                 int iterations = 0;
1403                 char* data = this->Read();
1404                 /* Check that the data read is a valid pointer and it has some content */
1405                 if (data && *data)
1406                 {
1407                         this->in_buffer.append(data);
1408                         /* While there is at least one new line in the buffer,
1409                          * do something useful (we hope!) with it.
1410                          */
1411                         while (in_buffer.find("\n") != std::string::npos)
1412                         {
1413                                 iterations++;
1414                                 if ((iterations % 10) == 0)
1415                                 {
1416                                         ServerInstance->DoOneIteration(false);
1417                                 }
1418                                 std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
1419                                 in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
1420                                 if (ret.find("\r") != std::string::npos)
1421                                         ret = in_buffer.substr(0,in_buffer.find("\r")-1);
1422                                 /* Process this one, abort if it
1423                                  * didnt return true.
1424                                  */
1425                                 if (this->ctx_in)
1426                                 {
1427                                         char out[1024];
1428                                         char result[1024];
1429                                         memset(result,0,1024);
1430                                         memset(out,0,1024);
1431                                         log(DEBUG,"Original string '%s'",ret.c_str());
1432                                         /* ERROR + CAPAB is still allowed unencryped */
1433                                         if ((ret.substr(0,7) != "ERROR :") && (ret.substr(0,6) != "CAPAB "))
1434                                         {
1435                                                 int nbytes = from64tobits(out, ret.c_str(), 1024);
1436                                                 if ((nbytes > 0) && (nbytes < 1024))
1437                                                 {
1438                                                         log(DEBUG,"m_spanningtree: decrypt %d bytes",nbytes);
1439                                                         ctx_in->Decrypt(out, result, nbytes, 0);
1440                                                         for (int t = 0; t < nbytes; t++)
1441                                                                 if (result[t] == '\7') result[t] = 0;
1442                                                         ret = result;
1443                                                 }
1444                                         }
1445                                 }
1446                                 if (!this->ProcessLine(ret))
1447                                 {
1448                                         log(DEBUG,"ProcessLine says no!");
1449                                         return false;
1450                                 }
1451                         }
1452                         return true;
1453                 }
1454                 /* EAGAIN returns an empty but non-NULL string, so this
1455                  * evaluates to TRUE for EAGAIN but to FALSE for EOF.
1456                  */
1457                 return (data && !*data);
1458         }
1459
1460         int WriteLine(std::string line)
1461         {
1462                 log(DEBUG,"OUT: %s",line.c_str());
1463                 if (this->ctx_out)
1464                 {
1465                         char result[10240];
1466                         char result64[10240];
1467                         if (this->keylength)
1468                         {
1469                                 // pad it to the key length
1470                                 int n = this->keylength - (line.length() % this->keylength);
1471                                 if (n)
1472                                 {
1473                                         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);
1474                                         line.append(n,'\7');
1475                                 }
1476                         }
1477                         unsigned int ll = line.length();
1478                         ctx_out->Encrypt(line.c_str(), result, ll, 0);
1479                         to64frombits((unsigned char*)result64,(unsigned char*)result,ll);
1480                         line = result64;
1481                         //int from64tobits(char *out, const char *in, int maxlen);
1482                 }
1483                 return this->Write(line + "\r\n");
1484         }
1485
1486         /* Handle ERROR command */
1487         bool Error(std::deque<std::string> &params)
1488         {
1489                 if (params.size() < 1)
1490                         return false;
1491                 WriteOpers("*** ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
1492                 /* we will return false to cause the socket to close. */
1493                 return false;
1494         }
1495
1496         /* Because the core won't let users or even SERVERS set +o,
1497          * we use the OPERTYPE command to do this.
1498          */
1499         bool OperType(std::string prefix, std::deque<std::string> &params)
1500         {
1501                 if (params.size() != 1)
1502                 {
1503                         log(DEBUG,"Received invalid oper type from %s",prefix.c_str());
1504                         return true;
1505                 }
1506                 std::string opertype = params[0];
1507                 userrec* u = Srv->FindNick(prefix);
1508                 if (u)
1509                 {
1510                         strlcpy(u->oper,opertype.c_str(),NICKMAX-1);
1511                         if (!strchr(u->modes,'o'))
1512                         {
1513                                 strcat(u->modes,"o");
1514                         }
1515                         DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
1516                 }
1517                 return true;
1518         }
1519
1520         /* Because Andy insists that services-compatible servers must
1521          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
1522          */
1523         bool ForceNick(std::string prefix, std::deque<std::string> &params)
1524         {
1525                 if (params.size() < 3)
1526                         return true;
1527
1528                 userrec* u = Srv->FindNick(params[0]);
1529
1530                 if (u)
1531                 {
1532                         DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
1533                         if (IS_LOCAL(u))
1534                         {
1535                                 std::deque<std::string> par;
1536                                 par.push_back(params[1]);
1537                                 DoOneToMany(u->nick,"NICK",par);
1538                                 Srv->ChangeUserNick(u,params[1]);
1539                                 u->age = atoi(params[2].c_str());
1540                         }
1541                 }
1542                 return true;
1543         }
1544
1545         bool ServiceJoin(std::string prefix, std::deque<std::string> &params)
1546         {
1547                 if (params.size() < 2)
1548                         return true;
1549
1550                 userrec* u = Srv->FindNick(params[0]);
1551
1552                 if (u)
1553                 {
1554                         Srv->JoinUserToChannel(u,params[1],"");
1555                         DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
1556                 }
1557                 return true;
1558         }
1559
1560         bool RemoteRehash(std::string prefix, std::deque<std::string> &params)
1561         {
1562                 if (params.size() < 1)
1563                         return false;
1564
1565                 std::string servermask = params[0];
1566
1567                 if (Srv->MatchText(Srv->GetServerName(),servermask))
1568                 {
1569                         Srv->SendOpers("*** Remote rehash initiated from server \002"+prefix+"\002.");
1570                         Srv->RehashServer();
1571                         ReadConfiguration(false);
1572                 }
1573                 DoOneToAllButSender(prefix,"REHASH",params,prefix);
1574                 return true;
1575         }
1576
1577         bool RemoteKill(std::string prefix, std::deque<std::string> &params)
1578         {
1579                 if (params.size() != 2)
1580                         return true;
1581
1582                 std::string nick = params[0];
1583                 userrec* u = Srv->FindNick(prefix);
1584                 userrec* who = Srv->FindNick(nick);
1585
1586                 if (who)
1587                 {
1588                         /* Prepend kill source, if we don't have one */
1589                         std::string sourceserv = prefix;
1590                         if (u)
1591                         {
1592                                 sourceserv = u->server;
1593                         }
1594                         if (*(params[1].c_str()) != '[')
1595                         {
1596                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
1597                         }
1598                         std::string reason = params[1];
1599                         params[1] = ":" + params[1];
1600                         DoOneToAllButSender(prefix,"KILL",params,sourceserv);
1601                         Srv->QuitUser(who,reason);
1602                 }
1603                 return true;
1604         }
1605
1606         bool LocalPong(std::string prefix, std::deque<std::string> &params)
1607         {
1608                 if (params.size() < 1)
1609                         return true;
1610
1611                 if (params.size() == 1)
1612                 {
1613                         TreeServer* ServerSource = FindServer(prefix);
1614                         if (ServerSource)
1615                         {
1616                                 ServerSource->SetPingFlag();
1617                         }
1618                 }
1619                 else
1620                 {
1621                         std::string forwardto = params[1];
1622                         if (forwardto == Srv->GetServerName())
1623                         {
1624                                 /*
1625                                  * this is a PONG for us
1626                                  * if the prefix is a user, check theyre local, and if they are,
1627                                  * dump the PONG reply back to their fd. If its a server, do nowt.
1628                                  * Services might want to send these s->s, but we dont need to yet.
1629                                  */
1630                                 userrec* u = Srv->FindNick(prefix);
1631
1632                                 if (u)
1633                                 {
1634                                         WriteServ(u->fd,"PONG %s %s",params[0].c_str(),params[1].c_str());
1635                                 }
1636                         }
1637                         else
1638                         {
1639                                 // not for us, pass it on :)
1640                                 DoOneToOne(prefix,"PONG",params,forwardto);
1641                         }
1642                 }
1643
1644                 return true;
1645         }
1646         
1647         bool MetaData(std::string prefix, std::deque<std::string> &params)
1648         {
1649                 if (params.size() < 3)
1650                         return true;
1651
1652                 TreeServer* ServerSource = FindServer(prefix);
1653
1654                 if (ServerSource)
1655                 {
1656                         if (params[0] == "*")
1657                         {
1658                                 FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
1659                         }
1660                         else if (*(params[0].c_str()) == '#')
1661                         {
1662                                 chanrec* c = Srv->FindChannel(params[0]);
1663                                 if (c)
1664                                 {
1665                                         FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
1666                                 }
1667                         }
1668                         else if (*(params[0].c_str()) != '#')
1669                         {
1670                                 userrec* u = Srv->FindNick(params[0]);
1671                                 if (u)
1672                                 {
1673                                         FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
1674                                 }
1675                         }
1676                 }
1677
1678                 params[2] = ":" + params[2];
1679                 DoOneToAllButSender(prefix,"METADATA",params,prefix);
1680                 return true;
1681         }
1682
1683         bool ServerVersion(std::string prefix, std::deque<std::string> &params)
1684         {
1685                 if (params.size() < 1)
1686                         return true;
1687
1688                 TreeServer* ServerSource = FindServer(prefix);
1689
1690                 if (ServerSource)
1691                 {
1692                         ServerSource->SetVersion(params[0]);
1693                 }
1694                 params[0] = ":" + params[0];
1695                 DoOneToAllButSender(prefix,"VERSION",params,prefix);
1696                 return true;
1697         }
1698
1699         bool ChangeHost(std::string prefix, std::deque<std::string> &params)
1700         {
1701                 if (params.size() < 1)
1702                         return true;
1703
1704                 userrec* u = Srv->FindNick(prefix);
1705
1706                 if (u)
1707                 {
1708                         Srv->ChangeHost(u,params[0]);
1709                         DoOneToAllButSender(prefix,"FHOST",params,u->server);
1710                 }
1711                 return true;
1712         }
1713
1714         bool AddLine(std::string prefix, std::deque<std::string> &params)
1715         {
1716                 if (params.size() < 6)
1717                         return true;
1718
1719                 bool propogate = false;
1720
1721                 switch (*(params[0].c_str()))
1722                 {
1723                         case 'Z':
1724                                 propogate = add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1725                                 zline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1726                         break;
1727                         case 'Q':
1728                                 propogate = add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1729                                 qline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1730                         break;
1731                         case 'E':
1732                                 propogate = add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1733                                 eline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1734                         break;
1735                         case 'G':
1736                                 propogate = add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1737                                 gline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1738                         break;
1739                         case 'K':
1740                                 propogate = add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1741                         break;
1742                         default:
1743                                 /* Just in case... */
1744                                 Srv->SendOpers("*** \2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
1745                                 propogate = false;
1746                         break;
1747                 }
1748
1749                 /* Send it on its way */
1750                 if (propogate)
1751                 {
1752                         if (atoi(params[4].c_str()))
1753                         {
1754                                 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());
1755                         }
1756                         else
1757                         {
1758                                 WriteOpers("*** %s Added permenant %cLINE on %s (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),params[5].c_str());
1759                         }
1760                         params[5] = ":" + params[5];
1761                         DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
1762                 }
1763                 if (!this->bursting)
1764                 {
1765                         log(DEBUG,"Applying lines...");
1766                         apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
1767                 }
1768                 return true;
1769         }
1770
1771         bool ChangeName(std::string prefix, std::deque<std::string> &params)
1772         {
1773                 if (params.size() < 1)
1774                         return true;
1775
1776                 userrec* u = Srv->FindNick(prefix);
1777
1778                 if (u)
1779                 {
1780                         Srv->ChangeGECOS(u,params[0]);
1781                         params[0] = ":" + params[0];
1782                         DoOneToAllButSender(prefix,"FNAME",params,u->server);
1783                 }
1784                 return true;
1785         }
1786
1787         bool Whois(std::string prefix, std::deque<std::string> &params)
1788         {
1789                 if (params.size() < 1)
1790                         return true;
1791
1792                 log(DEBUG,"In IDLE command");
1793                 userrec* u = Srv->FindNick(prefix);
1794
1795                 if (u)
1796                 {
1797                         log(DEBUG,"USER EXISTS: %s",u->nick);
1798                         // an incoming request
1799                         if (params.size() == 1)
1800                         {
1801                                 userrec* x = Srv->FindNick(params[0]);
1802                                 if ((x) && (x->fd > -1))
1803                                 {
1804                                         userrec* x = Srv->FindNick(params[0]);
1805                                         log(DEBUG,"Got IDLE");
1806                                         char signon[MAXBUF];
1807                                         char idle[MAXBUF];
1808                                         log(DEBUG,"Sending back IDLE 3");
1809                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
1810                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-time(NULL)));
1811                                         std::deque<std::string> par;
1812                                         par.push_back(prefix);
1813                                         par.push_back(signon);
1814                                         par.push_back(idle);
1815                                         // ours, we're done, pass it BACK
1816                                         DoOneToOne(params[0],"IDLE",par,u->server);
1817                                 }
1818                                 else
1819                                 {
1820                                         // not ours pass it on
1821                                         DoOneToOne(prefix,"IDLE",params,x->server);
1822                                 }
1823                         }
1824                         else if (params.size() == 3)
1825                         {
1826                                 std::string who_did_the_whois = params[0];
1827                                 userrec* who_to_send_to = Srv->FindNick(who_did_the_whois);
1828                                 if ((who_to_send_to) && (who_to_send_to->fd > -1))
1829                                 {
1830                                         log(DEBUG,"Got final IDLE");
1831                                         // an incoming reply to a whois we sent out
1832                                         std::string nick_whoised = prefix;
1833                                         unsigned long signon = atoi(params[1].c_str());
1834                                         unsigned long idle = atoi(params[2].c_str());
1835                                         if ((who_to_send_to) && (who_to_send_to->fd > -1))
1836                                                 do_whois(who_to_send_to,u,signon,idle,(char*)nick_whoised.c_str());
1837                                 }
1838                                 else
1839                                 {
1840                                         // not ours, pass it on
1841                                         DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
1842                                 }
1843                         }
1844                 }
1845                 return true;
1846         }
1847
1848         bool Push(std::string prefix, std::deque<std::string> &params)
1849         {
1850                 if (params.size() < 2)
1851                         return true;
1852
1853                 userrec* u = Srv->FindNick(params[0]);
1854
1855                 if (IS_LOCAL(u))
1856                 {
1857                         // push the raw to the user
1858                         if (Srv->IsUlined(prefix))
1859                         {
1860                                 ::Write(u->fd,"%s",params[1].c_str());
1861                         }
1862                         else
1863                         {
1864                                 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());
1865                         }
1866                 }
1867                 else
1868                 {
1869                         // continue the raw onwards
1870                         params[1] = ":" + params[1];
1871                         DoOneToOne(prefix,"PUSH",params,u->server);
1872                 }
1873                 return true;
1874         }
1875
1876         bool Time(std::string prefix, std::deque<std::string> &params)
1877         {
1878                 // :source.server TIME remote.server sendernick
1879                 // :remote.server TIME source.server sendernick TS
1880                 if (params.size() == 2)
1881                 {
1882                         // someone querying our time?
1883                         if (Srv->GetServerName() == params[0])
1884                         {
1885                                 userrec* u = Srv->FindNick(params[1]);
1886                                 if (u)
1887                                 {
1888                                         char curtime[256];
1889                                         snprintf(curtime,256,"%lu",(unsigned long)time(NULL));
1890                                         params.push_back(curtime);
1891                                         params[0] = prefix;
1892                                         DoOneToOne(Srv->GetServerName(),"TIME",params,params[0]);
1893                                 }
1894                         }
1895                         else
1896                         {
1897                                 // not us, pass it on
1898                                 userrec* u = Srv->FindNick(params[1]);
1899                                 if (u)
1900                                         DoOneToOne(prefix,"TIME",params,params[0]);
1901                         }
1902                 }
1903                 else if (params.size() == 3)
1904                 {
1905                         // a response to a previous TIME
1906                         userrec* u = Srv->FindNick(params[1]);
1907                         if ((u) && (IS_LOCAL(u)))
1908                         {
1909                         time_t rawtime = atol(params[2].c_str());
1910                         struct tm * timeinfo;
1911                         timeinfo = localtime(&rawtime);
1912                                 char tms[26];
1913                                 snprintf(tms,26,"%s",asctime(timeinfo));
1914                                 tms[24] = 0;
1915                         WriteServ(u->fd,"391 %s %s :%s",u->nick,prefix.c_str(),tms);
1916                         }
1917                         else
1918                         {
1919                                 if (u)
1920                                         DoOneToOne(prefix,"TIME",params,u->server);
1921                         }
1922                 }
1923                 return true;
1924         }
1925         
1926         bool LocalPing(std::string prefix, std::deque<std::string> &params)
1927         {
1928                 if (params.size() < 1)
1929                         return true;
1930
1931                 if (params.size() == 1)
1932                 {
1933                         std::string stufftobounce = params[0];
1934                         this->WriteLine(":"+Srv->GetServerName()+" PONG "+stufftobounce);
1935                         return true;
1936                 }
1937                 else
1938                 {
1939                         std::string forwardto = params[1];
1940                         if (forwardto == Srv->GetServerName())
1941                         {
1942                                 // this is a ping for us, send back PONG to the requesting server
1943                                 params[1] = params[0];
1944                                 params[0] = forwardto;
1945                                 DoOneToOne(forwardto,"PONG",params,params[1]);
1946                         }
1947                         else
1948                         {
1949                                 // not for us, pass it on :)
1950                                 DoOneToOne(prefix,"PING",params,forwardto);
1951                         }
1952                         return true;
1953                 }
1954         }
1955
1956         bool RemoteServer(std::string prefix, std::deque<std::string> &params)
1957         {
1958                 if (params.size() < 4)
1959                         return false;
1960
1961                 std::string servername = params[0];
1962                 std::string password = params[1];
1963                 // hopcount is not used for a remote server, we calculate this ourselves
1964                 std::string description = params[3];
1965                 TreeServer* ParentOfThis = FindServer(prefix);
1966
1967                 if (!ParentOfThis)
1968                 {
1969                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
1970                         return false;
1971                 }
1972                 TreeServer* CheckDupe = FindServer(servername);
1973                 if (CheckDupe)
1974                 {
1975                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1976                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
1977                         return false;
1978                 }
1979                 TreeServer* Node = new TreeServer(servername,description,ParentOfThis,NULL);
1980                 ParentOfThis->AddChild(Node);
1981                 params[3] = ":" + params[3];
1982                 DoOneToAllButSender(prefix,"SERVER",params,prefix);
1983                 Srv->SendOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
1984                 return true;
1985         }
1986
1987         bool Outbound_Reply_Server(std::deque<std::string> &params)
1988         {
1989                 if (params.size() < 4)
1990                         return false;
1991
1992                 std::string servername = params[0];
1993                 std::string password = params[1];
1994                 int hops = atoi(params[2].c_str());
1995
1996                 if (hops)
1997                 {
1998                         this->WriteLine("ERROR :Server too far away for authentication");
1999                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, server is too far away for authentication");
2000                         return false;
2001                 }
2002                 std::string description = params[3];
2003                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2004                 {
2005                         if ((x->Name == servername) && (x->RecvPass == password))
2006                         {
2007                                 TreeServer* CheckDupe = FindServer(servername);
2008                                 if (CheckDupe)
2009                                 {
2010                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
2011                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
2012                                         return false;
2013                                 }
2014                                 // Begin the sync here. this kickstarts the
2015                                 // other side, waiting in WAIT_AUTH_2 state,
2016                                 // into starting their burst, as it shows
2017                                 // that we're happy.
2018                                 this->LinkState = CONNECTED;
2019                                 // we should add the details of this server now
2020                                 // to the servers tree, as a child of the root
2021                                 // node.
2022                                 TreeServer* Node = new TreeServer(servername,description,TreeRoot,this);
2023                                 TreeRoot->AddChild(Node);
2024                                 params[3] = ":" + params[3];
2025                                 DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,servername);
2026                                 this->bursting = true;
2027                                 this->DoBurst(Node);
2028                                 return true;
2029                         }
2030                 }
2031                 this->WriteLine("ERROR :Invalid credentials");
2032                 Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, invalid link credentials");
2033                 return false;
2034         }
2035
2036         bool Inbound_Server(std::deque<std::string> &params)
2037         {
2038                 if (params.size() < 4)
2039                         return false;
2040
2041                 std::string servername = params[0];
2042                 std::string password = params[1];
2043                 int hops = atoi(params[2].c_str());
2044
2045                 if (hops)
2046                 {
2047                         this->WriteLine("ERROR :Server too far away for authentication");
2048                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, server is too far away for authentication");
2049                         return false;
2050                 }
2051                 std::string description = params[3];
2052                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2053                 {
2054                         if ((x->Name == servername) && (x->RecvPass == password))
2055                         {
2056                                 TreeServer* CheckDupe = FindServer(servername);
2057                                 if (CheckDupe)
2058                                 {
2059                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
2060                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
2061                                         return false;
2062                                 }
2063                                 /* If the config says this link is encrypted, but the remote side
2064                                  * hasnt bothered to send the AES command before SERVER, then we
2065                                  * boot them off as we MUST have this connection encrypted.
2066                                  */
2067                                 if ((x->EncryptionKey != "") && (!this->ctx_in))
2068                                 {
2069                                         this->WriteLine("ERROR :This link requires AES encryption to be enabled. Plaintext connection refused.");
2070                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, remote server did not enable AES.");
2071                                         return false;
2072                                 }
2073                                 Srv->SendOpers("*** Verified incoming server connection from \002"+servername+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
2074                                 this->InboundServerName = servername;
2075                                 this->InboundDescription = description;
2076                                 // this is good. Send our details: Our server name and description and hopcount of 0,
2077                                 // along with the sendpass from this block.
2078                                 this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
2079                                 // move to the next state, we are now waiting for THEM.
2080                                 this->LinkState = WAIT_AUTH_2;
2081                                 return true;
2082                         }
2083                 }
2084                 this->WriteLine("ERROR :Invalid credentials");
2085                 Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, invalid link credentials");
2086                 return false;
2087         }
2088
2089         void Split(std::string line, bool stripcolon, std::deque<std::string> &n)
2090         {
2091                 // we don't do anything with a line > 2048
2092                 if (line.length() > 2048)
2093                 {
2094                         log(DEBUG,"Line too long!");
2095                         return;
2096                 }
2097                 if (!strchr(line.c_str(),' '))
2098                 {
2099                         n.push_back(line);
2100                         return;
2101                 }
2102                 std::stringstream s(line);
2103                 int count = 0;
2104                 char param[1024];
2105                 char* pptr = param;
2106
2107                 n.clear();
2108                 int item = 0;
2109                 while (!s.eof())
2110                 {
2111                         char c = 0;
2112                         s.get(c);
2113                         if (c == ' ')
2114                         {
2115                                 *pptr = 0;
2116                                 if (*param)
2117                                         n.push_back(param);
2118                                 *param = count = 0;
2119                                 pptr = param;
2120                                 item++;
2121                         }
2122                         else
2123                         {
2124                                 if (!s.eof())
2125                                 {
2126                                         *pptr++ = c;
2127                                         count++;
2128                                 }
2129                                 if ((*param == ':') && (count == 1) && (item > 0))
2130                                 {
2131                                         *param = count = 0;
2132                                         pptr = param;
2133                                         while (!s.eof())
2134                                         {
2135                                                 s.get(c);
2136                                                 if (!s.eof())
2137                                                 {
2138                                                         *pptr++ = c;
2139                                                         count++;
2140                                                 }
2141                                         }
2142                                         *pptr = 0;
2143                                         n.push_back(param);
2144                                         *param = count = 0;
2145                                         pptr = param;
2146                                 }
2147                         }
2148                 }
2149                 *pptr = 0;
2150                 if (*param)
2151                 {
2152                         n.push_back(param);
2153                 }
2154
2155                 return;
2156         }
2157
2158         bool ProcessLine(std::string line)
2159         {
2160                 char* l = (char*)line.c_str();
2161                 for (char* x = l; *x; x++)
2162                 {
2163                         if ((*x == '\r') || (*x == '\n'))
2164                                 *x = 0;
2165                 }
2166                 if (!*l)
2167                         return true;
2168
2169                 log(DEBUG,"IN: %s",l);
2170
2171                 std::deque<std::string> params;
2172                 this->Split(l,true,params);
2173                 irc::string command = "";
2174                 std::string prefix = "";
2175                 if (((params[0].c_str())[0] == ':') && (params.size() > 1))
2176                 {
2177                         prefix = params[0];
2178                         command = params[1].c_str();
2179                         char* pref = (char*)prefix.c_str();
2180                         prefix = ++pref;
2181                         params.pop_front();
2182                         params.pop_front();
2183                 }
2184                 else
2185                 {
2186                         prefix = "";
2187                         command = params[0].c_str();
2188                         params.pop_front();
2189                 }
2190
2191                 if ((!this->ctx_in) && (command == "AES"))
2192                 {
2193                         std::string sserv = params[0];
2194                         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2195                         {
2196                                 if ((x->EncryptionKey != "") && (x->Name == sserv))
2197                                 {
2198                                         this->InitAES(x->EncryptionKey,sserv);
2199                                 }
2200                         }
2201
2202                         return true;
2203                 }
2204                 else if ((this->ctx_in) && (command == "AES"))
2205                 {
2206                         WriteOpers("*** \2AES\2: Encryption already enabled on this connection yet %s is trying to enable it twice!",params[0].c_str());
2207                 }
2208
2209                 switch (this->LinkState)
2210                 {
2211                         TreeServer* Node;
2212                         
2213                         case WAIT_AUTH_1:
2214                                 // Waiting for SERVER command from remote server. Server initiating
2215                                 // the connection sends the first SERVER command, listening server
2216                                 // replies with theirs if its happy, then if the initiator is happy,
2217                                 // it starts to send its net sync, which starts the merge, otherwise
2218                                 // it sends an ERROR.
2219                                 if (command == "PASS")
2220                                 {
2221                                         /* Silently ignored */
2222                                 }
2223                                 else if (command == "SERVER")
2224                                 {
2225                                         return this->Inbound_Server(params);
2226                                 }
2227                                 else if (command == "ERROR")
2228                                 {
2229                                         return this->Error(params);
2230                                 }
2231                                 else if (command == "USER")
2232                                 {
2233                                         this->WriteLine("ERROR :Client connections to this port are prohibited.");
2234                                         return false;
2235                                 }
2236                                 else if (command == "CAPAB")
2237                                 {
2238                                         return this->Capab(params);
2239                                 }
2240                                 else if ((command == "U") || (command == "S"))
2241                                 {
2242                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
2243                                         return false;
2244                                 }
2245                                 else
2246                                 {
2247                                         this->WriteLine("ERROR :Invalid command in negotiation phase.");
2248                                         return false;
2249                                 }
2250                         break;
2251                         case WAIT_AUTH_2:
2252                                 // Waiting for start of other side's netmerge to say they liked our
2253                                 // password.
2254                                 if (command == "SERVER")
2255                                 {
2256                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
2257                                         // silently ignore.
2258                                         return true;
2259                                 }
2260                                 else if ((command == "U") || (command == "S"))
2261                                 {
2262                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
2263                                         return false;
2264                                 }
2265                                 else if (command == "BURST")
2266                                 {
2267                                         if (params.size())
2268                                         {
2269                                                 /* If a time stamp is provided, try and check syncronization */
2270                                                 time_t THEM = atoi(params[0].c_str());
2271                                                 long delta = THEM-time(NULL);
2272                                                 if ((delta < -600) || (delta > 600))
2273                                                 {
2274                                                         WriteOpers("*** \2ERROR\2: Your clocks are out by %d seconds (this is more than ten minutes). Link aborted, \2PLEASE SYNC YOUR CLOCKS!\2",abs(delta));
2275                                                         this->WriteLine("ERROR :Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
2276                                                         return false;
2277                                                 }
2278                                                 else if ((delta < -60) || (delta > 60))
2279                                                 {
2280                                                         WriteOpers("*** \2WARNING\2: Your clocks are out by %d seconds, please consider synching your clocks.",abs(delta));
2281                                                 }
2282                                         }
2283                                         this->LinkState = CONNECTED;
2284                                         Node = new TreeServer(InboundServerName,InboundDescription,TreeRoot,this);
2285                                         TreeRoot->AddChild(Node);
2286                                         params.clear();
2287                                         params.push_back(InboundServerName);
2288                                         params.push_back("*");
2289                                         params.push_back("1");
2290                                         params.push_back(":"+InboundDescription);
2291                                         DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,InboundServerName);
2292                                         this->bursting = true;
2293                                         this->DoBurst(Node);
2294                                 }
2295                                 else if (command == "ERROR")
2296                                 {
2297                                         return this->Error(params);
2298                                 }
2299                                 else if (command == "CAPAB")
2300                                 {
2301                                         return this->Capab(params);
2302                                 }
2303                                 
2304                         break;
2305                         case LISTENER:
2306                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
2307                                 return false;
2308                         break;
2309                         case CONNECTING:
2310                                 if (command == "SERVER")
2311                                 {
2312                                         // another server we connected to, which was in WAIT_AUTH_1 state,
2313                                         // has just sent us their credentials. If we get this far, theyre
2314                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
2315                                         // if we're happy with this, we should send our netburst which
2316                                         // kickstarts the merge.
2317                                         return this->Outbound_Reply_Server(params);
2318                                 }
2319                                 else if (command == "ERROR")
2320                                 {
2321                                         return this->Error(params);
2322                                 }
2323                         break;
2324                         case CONNECTED:
2325                                 // This is the 'authenticated' state, when all passwords
2326                                 // have been exchanged and anything past this point is taken
2327                                 // as gospel.
2328                                 
2329                                 if (prefix != "")
2330                                 {
2331                                         std::string direction = prefix;
2332                                         userrec* t = Srv->FindNick(prefix);
2333                                         if (t)
2334                                         {
2335                                                 direction = t->server;
2336                                         }
2337                                         TreeServer* route_back_again = BestRouteTo(direction);
2338                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
2339                                         {
2340                                                 if (route_back_again)
2341                                                         log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
2342                                                 return true;
2343                                         }
2344
2345                                         /* Fix by brain:
2346                                          * When there is activity on the socket, reset the ping counter so
2347                                          * that we're not wasting bandwidth pinging an active server.
2348                                          */ 
2349                                         route_back_again->SetNextPingTime(time(NULL) + 120);
2350                                         route_back_again->SetPingFlag();
2351                                 }
2352                                 
2353                                 if (command == "SVSMODE")
2354                                 {
2355                                         /* Services expects us to implement
2356                                          * SVSMODE. In inspircd its the same as
2357                                          * MODE anyway.
2358                                          */
2359                                         command = "MODE";
2360                                 }
2361                                 std::string target = "";
2362                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
2363                                  * working with std::string here.
2364                                  */
2365                                 if ((command == "NICK") && (params.size() > 1))
2366                                 {
2367                                         return this->IntroduceClient(prefix,params);
2368                                 }
2369                                 else if (command == "FJOIN")
2370                                 {
2371                                         return this->ForceJoin(prefix,params);
2372                                 }
2373                                 else if (command == "SERVER")
2374                                 {
2375                                         return this->RemoteServer(prefix,params);
2376                                 }
2377                                 else if (command == "ERROR")
2378                                 {
2379                                         return this->Error(params);
2380                                 }
2381                                 else if (command == "OPERTYPE")
2382                                 {
2383                                         return this->OperType(prefix,params);
2384                                 }
2385                                 else if (command == "FMODE")
2386                                 {
2387                                         return this->ForceMode(prefix,params);
2388                                 }
2389                                 else if (command == "KILL")
2390                                 {
2391                                         return this->RemoteKill(prefix,params);
2392                                 }
2393                                 else if (command == "FTOPIC")
2394                                 {
2395                                         return this->ForceTopic(prefix,params);
2396                                 }
2397                                 else if (command == "REHASH")
2398                                 {
2399                                         return this->RemoteRehash(prefix,params);
2400                                 }
2401                                 else if (command == "METADATA")
2402                                 {
2403                                         return this->MetaData(prefix,params);
2404                                 }
2405                                 else if (command == "PING")
2406                                 {
2407                                         /*
2408                                          * We just got a ping from a server that's bursting.
2409                                          * This can't be right, so set them to not bursting, and
2410                                          * apply their lines.
2411                                          */
2412                                         if (this->bursting)
2413                                         {
2414                                                 this->bursting = false;
2415                                                 apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2416                                         }
2417                                         if (prefix == "")
2418                                         {
2419                                                 prefix = this->GetName();
2420                                         }
2421                                         return this->LocalPing(prefix,params);
2422                                 }
2423                                 else if (command == "PONG")
2424                                 {
2425                                         /*
2426                                          * We just got a pong from a server that's bursting.
2427                                          * This can't be right, so set them to not bursting, and
2428                                          * apply their lines.
2429                                          */
2430                                         if (this->bursting)
2431                                         {
2432                                                 this->bursting = false;
2433                                                 apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2434                                         }
2435                                         if (prefix == "")
2436                                         {
2437                                                 prefix = this->GetName();
2438                                         }
2439                                         return this->LocalPong(prefix,params);
2440                                 }
2441                                 else if (command == "VERSION")
2442                                 {
2443                                         return this->ServerVersion(prefix,params);
2444                                 }
2445                                 else if (command == "FHOST")
2446                                 {
2447                                         return this->ChangeHost(prefix,params);
2448                                 }
2449                                 else if (command == "FNAME")
2450                                 {
2451                                         return this->ChangeName(prefix,params);
2452                                 }
2453                                 else if (command == "ADDLINE")
2454                                 {
2455                                         return this->AddLine(prefix,params);
2456                                 }
2457                                 else if (command == "SVSNICK")
2458                                 {
2459                                         if (prefix == "")
2460                                         {
2461                                                 prefix = this->GetName();
2462                                         }
2463                                         return this->ForceNick(prefix,params);
2464                                 }
2465                                 else if (command == "IDLE")
2466                                 {
2467                                         return this->Whois(prefix,params);
2468                                 }
2469                                 else if (command == "PUSH")
2470                                 {
2471                                         return this->Push(prefix,params);
2472                                 }
2473                                 else if (command == "TIME")
2474                                 {
2475                                         return this->Time(prefix,params);
2476                                 }
2477                                 else if ((command == "KICK") && (IsServer(prefix)))
2478                                 {
2479                                         std::string sourceserv = this->myhost;
2480                                         if (params.size() == 3)
2481                                         {
2482                                                 userrec* user = Srv->FindNick(params[1]);
2483                                                 chanrec* chan = Srv->FindChannel(params[0]);
2484                                                 if (user && chan)
2485                                                 {
2486                                                         server_kick_channel(user,chan,(char*)params[2].c_str(),false);
2487                                                 }
2488                                         }
2489                                         if (this->InboundServerName != "")
2490                                         {
2491                                                 sourceserv = this->InboundServerName;
2492                                         }
2493                                         return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
2494                                 }
2495                                 else if (command == "SVSJOIN")
2496                                 {
2497                                         if (prefix == "")
2498                                         {
2499                                                 prefix = this->GetName();
2500                                         }
2501                                         return this->ServiceJoin(prefix,params);
2502                                 }
2503                                 else if (command == "SQUIT")
2504                                 {
2505                                         if (params.size() == 2)
2506                                         {
2507                                                 this->Squit(FindServer(params[0]),params[1]);
2508                                         }
2509                                         return true;
2510                                 }
2511                                 else if (command == "ENDBURST")
2512                                 {
2513                                         this->bursting = false;
2514                                         apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2515                                         std::string sourceserv = this->myhost;
2516                                         if (this->InboundServerName != "")
2517                                         {
2518                                                 sourceserv = this->InboundServerName;
2519                                         }
2520                                         WriteOpers("*** Received end of netburst from \2%s\2",sourceserv.c_str());
2521                                         return true;
2522                                 }
2523                                 else
2524                                 {
2525                                         // not a special inter-server command.
2526                                         // Emulate the actual user doing the command,
2527                                         // this saves us having a huge ugly parser.
2528                                         userrec* who = Srv->FindNick(prefix);
2529                                         std::string sourceserv = this->myhost;
2530                                         if (this->InboundServerName != "")
2531                                         {
2532                                                 sourceserv = this->InboundServerName;
2533                                         }
2534                                         if (who)
2535                                         {
2536                                                 if ((command == "NICK") && (params.size() > 0))
2537                                                 {
2538                                                         /* On nick messages, check that the nick doesnt
2539                                                          * already exist here. If it does, kill their copy,
2540                                                          * and our copy.
2541                                                          */
2542                                                         userrec* x = Srv->FindNick(params[0]);
2543                                                         if (x)
2544                                                         {
2545                                                                 std::deque<std::string> p;
2546                                                                 p.push_back(params[0]);
2547                                                                 p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
2548                                                                 DoOneToMany(Srv->GetServerName(),"KILL",p);
2549                                                                 p.clear();
2550                                                                 p.push_back(prefix);
2551                                                                 p.push_back("Nickname collision");
2552                                                                 DoOneToMany(Srv->GetServerName(),"KILL",p);
2553                                                                 Srv->QuitUser(x,"Nickname collision ("+prefix+" -> "+params[0]+")");
2554                                                                 userrec* y = Srv->FindNick(prefix);
2555                                                                 if (y)
2556                                                                 {
2557                                                                         Srv->QuitUser(y,"Nickname collision");
2558                                                                 }
2559                                                                 return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
2560                                                         }
2561                                                 }
2562                                                 // its a user
2563                                                 target = who->server;
2564                                                 char* strparams[127];
2565                                                 for (unsigned int q = 0; q < params.size(); q++)
2566                                                 {
2567                                                         strparams[q] = (char*)params[q].c_str();
2568                                                 }
2569                                                 if (!Srv->CallCommandHandler(command.c_str(), strparams, params.size(), who))
2570                                                 {
2571                                                         this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
2572                                                         return false;
2573                                                 }
2574                                         }
2575                                         else
2576                                         {
2577                                                 // its not a user. Its either a server, or somethings screwed up.
2578                                                 if (IsServer(prefix))
2579                                                 {
2580                                                         target = Srv->GetServerName();
2581                                                 }
2582                                                 else
2583                                                 {
2584                                                         log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
2585                                                         return true;
2586                                                 }
2587                                         }
2588                                         return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
2589
2590                                 }
2591                                 return true;
2592                         break;
2593                 }
2594                 return true;
2595         }
2596
2597         virtual std::string GetName()
2598         {
2599                 std::string sourceserv = this->myhost;
2600                 if (this->InboundServerName != "")
2601                 {
2602                         sourceserv = this->InboundServerName;
2603                 }
2604                 return sourceserv;
2605         }
2606
2607         virtual void OnTimeout()
2608         {
2609                 if (this->LinkState == CONNECTING)
2610                 {
2611                         Srv->SendOpers("*** CONNECT: Connection to \002"+myhost+"\002 timed out.");
2612                 }
2613         }
2614
2615         virtual void OnClose()
2616         {
2617                 // Connection closed.
2618                 // If the connection is fully up (state CONNECTED)
2619                 // then propogate a netsplit to all peers.
2620                 std::string quitserver = this->myhost;
2621                 if (this->InboundServerName != "")
2622                 {
2623                         quitserver = this->InboundServerName;
2624                 }
2625                 TreeServer* s = FindServer(quitserver);
2626                 if (s)
2627                 {
2628                         Squit(s,"Remote host closed the connection");
2629                 }
2630                 WriteOpers("Server '\2%s\2' closed the connection.",quitserver.c_str());
2631         }
2632
2633         virtual int OnIncomingConnection(int newsock, char* ip)
2634         {
2635                 TreeSocket* s = new TreeSocket(newsock, ip);
2636                 Srv->AddSocket(s);
2637                 return true;
2638         }
2639 };
2640
2641 void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
2642 {
2643         for (unsigned int c = 0; c < list.size(); c++)
2644         {
2645                 if (list[c] == server)
2646                 {
2647                         return;
2648                 }
2649         }
2650         list.push_back(server);
2651 }
2652
2653 // returns a list of DIRECT servernames for a specific channel
2654 void GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list)
2655 {
2656         CUList *ulist = c->GetUsers();
2657         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
2658         {
2659                 if (i->second->fd < 0)
2660                 {
2661                         TreeServer* best = BestRouteTo(i->second->server);
2662                         if (best)
2663                                 AddThisServer(best,list);
2664                 }
2665         }
2666         return;
2667 }
2668
2669 bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string prefix, irc::string command, std::deque<std::string> &params)
2670 {
2671         TreeServer* omitroute = BestRouteTo(omit);
2672         if ((command == "NOTICE") || (command == "PRIVMSG"))
2673         {
2674                 if ((params.size() >= 2) && (*(params[0].c_str()) != '$'))
2675                 {
2676                         /* Prefixes */
2677                         if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
2678                         {
2679                                 params[0] = params[0].substr(1, params[0].length()-1);
2680                         }
2681                         if (*(params[0].c_str()) != '#')
2682                         {
2683                                 // special routing for private messages/notices
2684                                 userrec* d = Srv->FindNick(params[0]);
2685                                 if (d)
2686                                 {
2687                                         std::deque<std::string> par;
2688                                         par.push_back(params[0]);
2689                                         par.push_back(":"+params[1]);
2690                                         DoOneToOne(prefix,command.c_str(),par,d->server);
2691                                         return true;
2692                                 }
2693                         }
2694                         else
2695                         {
2696                                 log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());
2697                                 chanrec* c = Srv->FindChannel(params[0]);
2698                                 if (c)
2699                                 {
2700                                         std::deque<TreeServer*> list;
2701                                         GetListOfServersForChannel(c,list);
2702                                         log(DEBUG,"Got a list of %d servers",list.size());
2703                                         unsigned int lsize = list.size();
2704                                         for (unsigned int i = 0; i < lsize; i++)
2705                                         {
2706                                                 TreeSocket* Sock = list[i]->GetSocket();
2707                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
2708                                                 {
2709                                                         log(DEBUG,"Writing privmsg to server %s",list[i]->GetName().c_str());
2710                                                         Sock->WriteLine(data);
2711                                                 }
2712                                         }
2713                                         return true;
2714                                 }
2715                         }
2716                 }
2717         }
2718         unsigned int items = TreeRoot->ChildCount();
2719         for (unsigned int x = 0; x < items; x++)
2720         {
2721                 TreeServer* Route = TreeRoot->GetChild(x);
2722                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2723                 {
2724                         TreeSocket* Sock = Route->GetSocket();
2725                         Sock->WriteLine(data);
2726                 }
2727         }
2728         return true;
2729 }
2730
2731 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit)
2732 {
2733         TreeServer* omitroute = BestRouteTo(omit);
2734         std::string FullLine = ":" + prefix + " " + command;
2735         unsigned int words = params.size();
2736         for (unsigned int x = 0; x < words; x++)
2737         {
2738                 FullLine = FullLine + " " + params[x];
2739         }
2740         unsigned int items = TreeRoot->ChildCount();
2741         for (unsigned int x = 0; x < items; x++)
2742         {
2743                 TreeServer* Route = TreeRoot->GetChild(x);
2744                 // Send the line IF:
2745                 // The route has a socket (its a direct connection)
2746                 // The route isnt the one to be omitted
2747                 // The route isnt the path to the one to be omitted
2748                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2749                 {
2750                         TreeSocket* Sock = Route->GetSocket();
2751                         Sock->WriteLine(FullLine);
2752                 }
2753         }
2754         return true;
2755 }
2756
2757 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params)
2758 {
2759         std::string FullLine = ":" + prefix + " " + command;
2760         unsigned int words = params.size();
2761         for (unsigned int x = 0; x < words; x++)
2762         {
2763                 FullLine = FullLine + " " + params[x];
2764         }
2765         unsigned int items = TreeRoot->ChildCount();
2766         for (unsigned int x = 0; x < items; x++)
2767         {
2768                 TreeServer* Route = TreeRoot->GetChild(x);
2769                 if (Route->GetSocket())
2770                 {
2771                         TreeSocket* Sock = Route->GetSocket();
2772                         Sock->WriteLine(FullLine);
2773                 }
2774         }
2775         return true;
2776 }
2777
2778 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target)
2779 {
2780         TreeServer* Route = BestRouteTo(target);
2781         if (Route)
2782         {
2783                 std::string FullLine = ":" + prefix + " " + command;
2784                 unsigned int words = params.size();
2785                 for (unsigned int x = 0; x < words; x++)
2786                 {
2787                         FullLine = FullLine + " " + params[x];
2788                 }
2789                 if (Route->GetSocket())
2790                 {
2791                         TreeSocket* Sock = Route->GetSocket();
2792                         Sock->WriteLine(FullLine);
2793                 }
2794                 return true;
2795         }
2796         else
2797         {
2798                 return true;
2799         }
2800 }
2801
2802 std::vector<TreeSocket*> Bindings;
2803
2804 void ReadConfiguration(bool rebind)
2805 {
2806         Conf = new ConfigReader;
2807         if (rebind)
2808         {
2809                 for (int j =0; j < Conf->Enumerate("bind"); j++)
2810                 {
2811                         std::string Type = Conf->ReadValue("bind","type",j);
2812                         std::string IP = Conf->ReadValue("bind","address",j);
2813                         long Port = Conf->ReadInteger("bind","port",j,true);
2814                         if (Type == "servers")
2815                         {
2816                                 if (IP == "*")
2817                                 {
2818                                         IP = "";
2819                                 }
2820                                 TreeSocket* listener = new TreeSocket(IP.c_str(),Port,true,10);
2821                                 if (listener->GetState() == I_LISTENING)
2822                                 {
2823                                         Srv->AddSocket(listener);
2824                                         Bindings.push_back(listener);
2825                                 }
2826                                 else
2827                                 {
2828                                         log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
2829                                         listener->Close();
2830                                         delete listener;
2831                                 }
2832                         }
2833                 }
2834         }
2835         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
2836         HideULines = Conf->ReadFlag("options","hideulines",0);
2837         LinkBlocks.clear();
2838         for (int j =0; j < Conf->Enumerate("link"); j++)
2839         {
2840                 Link L;
2841                 char ServerN[MAXBUF];
2842                 L.Name = Conf->ReadValue("link","name",j);
2843                 strlcpy(ServerN,L.Name.c_str(),MAXBUF);
2844                 strlower(ServerN);
2845                 L.Name = ServerN;
2846                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
2847                 L.Port = Conf->ReadInteger("link","port",j,true);
2848                 L.SendPass = Conf->ReadValue("link","sendpass",j);
2849                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
2850                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
2851                 L.EncryptionKey =  Conf->ReadValue("link","encryptionkey",j);
2852                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
2853                 L.NextConnectTime = time(NULL) + L.AutoConnect;
2854                 /* Bugfix by brain, do not allow people to enter bad configurations */
2855                 if ((L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
2856                 {
2857                         LinkBlocks.push_back(L);
2858                         log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
2859                 }
2860                 else
2861                 {
2862                         if (L.RecvPass == "")
2863                         {
2864                                 log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
2865                         }
2866                         else if (L.SendPass == "")
2867                         {
2868                                 log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
2869                         }
2870                         else if (L.Name == "")
2871                         {
2872                                 log(DEFAULT,"Invalid configuration, link tag without a name!");
2873                         }
2874                         else if (!L.Port)
2875                         {
2876                                 log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
2877                         }
2878                 }
2879         }
2880         delete Conf;
2881 }
2882
2883
2884 class ModuleSpanningTree : public Module
2885 {
2886         std::vector<TreeSocket*> Bindings;
2887         int line;
2888         int NumServers;
2889         unsigned int max_local;
2890         unsigned int max_global;
2891         cmd_rconnect* command_rconnect;
2892
2893  public:
2894
2895         ModuleSpanningTree(Server* Me)
2896                 : Module::Module(Me), max_local(0), max_global(0)
2897         {
2898                 Srv = Me;
2899                 Bindings.clear();
2900
2901                 // Create the root of the tree
2902                 TreeRoot = new TreeServer(Srv->GetServerName(),Srv->GetServerDescription());
2903
2904                 ReadConfiguration(true);
2905
2906                 command_rconnect = new cmd_rconnect(this);
2907                 Srv->AddCommand(command_rconnect);
2908         }
2909
2910         void ShowLinks(TreeServer* Current, userrec* user, int hops)
2911         {
2912                 std::string Parent = TreeRoot->GetName();
2913                 if (Current->GetParent())
2914                 {
2915                         Parent = Current->GetParent()->GetName();
2916                 }
2917                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
2918                 {
2919                         if ((HideULines) && (Srv->IsUlined(Current->GetChild(q)->GetName())))
2920                         {
2921                                 if (*user->oper)
2922                                 {
2923                                          ShowLinks(Current->GetChild(q),user,hops+1);
2924                                 }
2925                         }
2926                         else
2927                         {
2928                                 ShowLinks(Current->GetChild(q),user,hops+1);
2929                         }
2930                 }
2931                 /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
2932                 if ((HideULines) && (Srv->IsUlined(Current->GetName())) && (!*user->oper))
2933                         return;
2934                 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());
2935         }
2936
2937         int CountLocalServs()
2938         {
2939                 return TreeRoot->ChildCount();
2940         }
2941
2942         int CountServs()
2943         {
2944                 return serverlist.size();
2945         }
2946
2947         void HandleLinks(char** parameters, int pcnt, userrec* user)
2948         {
2949                 ShowLinks(TreeRoot,user,0);
2950                 WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick);
2951                 return;
2952         }
2953
2954         void HandleLusers(char** parameters, int pcnt, userrec* user)
2955         {
2956                 unsigned int n_users = usercnt();
2957
2958                 /* Only update these when someone wants to see them, more efficient */
2959                 if ((unsigned int)local_count() > max_local)
2960                         max_local = local_count();
2961                 if (n_users > max_global)
2962                         max_global = n_users;
2963
2964                 WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-usercount_invisible(),usercount_invisible(),this->CountServs());
2965                 WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
2966                 WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
2967                 WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
2968                 WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
2969                 WriteServ(user->fd,"265 %s :Current Local Users: %d  Max: %d",user->nick,local_count(),max_local);
2970                 WriteServ(user->fd,"266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
2971                 return;
2972         }
2973
2974         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
2975
2976         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
2977         {
2978                 if (line < 128)
2979                 {
2980                         for (int t = 0; t < depth; t++)
2981                         {
2982                                 matrix[line][t] = ' ';
2983                         }
2984
2985                         // For Aligning, we need to work out exactly how deep this thing is, and produce
2986                         // a 'Spacer' String to compensate.
2987                         char spacer[40];
2988
2989                         memset(spacer,' ',40);
2990                         if ((40 - Current->GetName().length() - depth) > 1) {
2991                                 spacer[40 - Current->GetName().length() - depth] = '\0';
2992                         }
2993                         else
2994                         {
2995                                 spacer[5] = '\0';
2996                         }
2997
2998                         float percent;
2999                         char text[80];
3000                         if (clientlist.size() == 0) {
3001                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
3002                                 percent = 0;
3003                         }
3004                         else
3005                         {
3006                                 percent = ((float)Current->GetUserCount() / (float)clientlist.size()) * 100;
3007                         }
3008                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
3009                         totusers += Current->GetUserCount();
3010                         totservers++;
3011                         strlcpy(&matrix[line][depth],text,80);
3012                         line++;
3013                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
3014                         {
3015                                 if ((HideULines) && (Srv->IsUlined(Current->GetChild(q)->GetName())))
3016                                 {
3017                                         if (*user->oper)
3018                                         {
3019                                                 ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
3020                                         }
3021                                 }
3022                                 else
3023                                 {
3024                                         ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
3025                                 }
3026                         }
3027                 }
3028         }
3029
3030         // Ok, prepare to be confused.
3031         // After much mulling over how to approach this, it struck me that
3032         // the 'usual' way of doing a /MAP isnt the best way. Instead of
3033         // keeping track of a ton of ascii characters, and line by line
3034         // under recursion working out where to place them using multiplications
3035         // and divisons, we instead render the map onto a backplane of characters
3036         // (a character matrix), then draw the branches as a series of "L" shapes
3037         // from the nodes. This is not only friendlier on CPU it uses less stack.
3038
3039         void HandleMap(char** parameters, int pcnt, userrec* user)
3040         {
3041                 // This array represents a virtual screen which we will
3042                 // "scratch" draw to, as the console device of an irc
3043                 // client does not provide for a proper terminal.
3044                 float totusers = 0;
3045                 float totservers = 0;
3046                 char matrix[128][80];
3047                 for (unsigned int t = 0; t < 128; t++)
3048                 {
3049                         matrix[t][0] = '\0';
3050                 }
3051                 line = 0;
3052                 // The only recursive bit is called here.
3053                 ShowMap(TreeRoot,user,0,matrix,totusers,totservers);
3054                 // Process each line one by one. The algorithm has a limit of
3055                 // 128 servers (which is far more than a spanning tree should have
3056                 // anyway, so we're ok). This limit can be raised simply by making
3057                 // the character matrix deeper, 128 rows taking 10k of memory.
3058                 for (int l = 1; l < line; l++)
3059                 {
3060                         // scan across the line looking for the start of the
3061                         // servername (the recursive part of the algorithm has placed
3062                         // the servers at indented positions depending on what they
3063                         // are related to)
3064                         int first_nonspace = 0;
3065                         while (matrix[l][first_nonspace] == ' ')
3066                         {
3067                                 first_nonspace++;
3068                         }
3069                         first_nonspace--;
3070                         // Draw the `- (corner) section: this may be overwritten by
3071                         // another L shape passing along the same vertical pane, becoming
3072                         // a |- (branch) section instead.
3073                         matrix[l][first_nonspace] = '-';
3074                         matrix[l][first_nonspace-1] = '`';
3075                         int l2 = l - 1;
3076                         // Draw upwards until we hit the parent server, causing possibly
3077                         // other corners (`-) to become branches (|-)
3078                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
3079                         {
3080                                 matrix[l2][first_nonspace-1] = '|';
3081                                 l2--;
3082                         }
3083                 }
3084                 // dump the whole lot to the user. This is the easy bit, honest.
3085                 for (int t = 0; t < line; t++)
3086                 {
3087                         WriteServ(user->fd,"006 %s :%s",user->nick,&matrix[t][0]);
3088                 }
3089                 float avg_users = totusers / totservers;
3090                 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);
3091         WriteServ(user->fd,"007 %s :End of /MAP",user->nick);
3092                 return;
3093         }
3094
3095         int HandleSquit(char** parameters, int pcnt, userrec* user)
3096         {
3097                 TreeServer* s = FindServerMask(parameters[0]);
3098                 if (s)
3099                 {
3100                         if (s == TreeRoot)
3101                         {
3102                                  WriteServ(user->fd,"NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
3103                                 return 1;
3104                         }
3105                         TreeSocket* sock = s->GetSocket();
3106                         if (sock)
3107                         {
3108                                 log(DEBUG,"Splitting server %s",s->GetName().c_str());
3109                                 WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
3110                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
3111                                 Srv->RemoveSocket(sock);
3112                         }
3113                         else
3114                         {
3115                                 WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
3116                         }
3117                 }
3118                 else
3119                 {
3120                          WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
3121                 }
3122                 return 1;
3123         }
3124
3125         int HandleTime(char** parameters, int pcnt, userrec* user)
3126         {
3127                 if ((user->fd > -1) && (pcnt))
3128                 {
3129                         TreeServer* found = FindServerMask(parameters[0]);
3130                         if (found)
3131                         {
3132                                 // we dont' override for local server
3133                                 if (found == TreeRoot)
3134                                         return 0;
3135                                 
3136                                 std::deque<std::string> params;
3137                                 params.push_back(found->GetName());
3138                                 params.push_back(user->nick);
3139                                 DoOneToOne(Srv->GetServerName(),"TIME",params,found->GetName());
3140                         }
3141                         else
3142                         {
3143                                 WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
3144                         }
3145                 }
3146                 return 1;
3147         }
3148
3149         int HandleRemoteWhois(char** parameters, int pcnt, userrec* user)
3150         {
3151                 if ((user->fd > -1) && (pcnt > 1))
3152                 {
3153                         userrec* remote = Srv->FindNick(parameters[1]);
3154                         if ((remote) && (remote->fd < 0))
3155                         {
3156                                 std::deque<std::string> params;
3157                                 params.push_back(parameters[1]);
3158                                 DoOneToOne(user->nick,"IDLE",params,remote->server);
3159                                 return 1;
3160                         }
3161                         else if (!remote)
3162                         {
3163                                 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]);
3164                                 WriteServ(user->fd,"318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
3165                                 return 1;
3166                         }
3167                 }
3168                 return 0;
3169         }
3170
3171         void DoPingChecks(time_t curtime)
3172         {
3173                 for (unsigned int j = 0; j < TreeRoot->ChildCount(); j++)
3174                 {
3175                         TreeServer* serv = TreeRoot->GetChild(j);
3176                         TreeSocket* sock = serv->GetSocket();
3177                         if (sock)
3178                         {
3179                                 if (curtime >= serv->NextPingTime())
3180                                 {
3181                                         if (serv->AnsweredLastPing())
3182                                         {
3183                                                 sock->WriteLine(":"+Srv->GetServerName()+" PING "+serv->GetName());
3184                                                 serv->SetNextPingTime(curtime + 120);
3185                                         }
3186                                         else
3187                                         {
3188                                                 // they didnt answer, boot them
3189                                                 WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
3190                                                 sock->Squit(serv,"Ping timeout");
3191                                                 Srv->RemoveSocket(sock);
3192                                                 return;
3193                                         }
3194                                 }
3195                         }
3196                 }
3197         }
3198
3199         void AutoConnectServers(time_t curtime)
3200         {
3201                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3202                 {
3203                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
3204                         {
3205                                 log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
3206                                 x->NextConnectTime = curtime + x->AutoConnect;
3207                                 TreeServer* CheckDupe = FindServer(x->Name);
3208                                 if (!CheckDupe)
3209                                 {
3210                                         // an autoconnected server is not connected. Check if its time to connect it
3211                                         WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
3212                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
3213                                         if (newsocket->GetState() != I_ERROR)
3214                                         {
3215                                                 Srv->AddSocket(newsocket);
3216                                         }
3217                                         else
3218                                         {
3219                                                 WriteOpers("*** AUTOCONNECT: Error autoconnecting \002%s\002.",x->Name.c_str());
3220                                                 delete newsocket;
3221                                         }
3222                                 }
3223                         }
3224                 }
3225         }
3226
3227         int HandleVersion(char** parameters, int pcnt, userrec* user)
3228         {
3229                 // we've already checked if pcnt > 0, so this is safe
3230                 TreeServer* found = FindServerMask(parameters[0]);
3231                 if (found)
3232                 {
3233                         std::string Version = found->GetVersion();
3234                         WriteServ(user->fd,"351 %s :%s",user->nick,Version.c_str());
3235                         if (found == TreeRoot)
3236                         {
3237                                 std::stringstream out(Config->data005);
3238                                 std::string token = "";
3239                                 std::string line5 = "";
3240                                 int token_counter = 0;
3241
3242                                 while (!out.eof())
3243                                 {
3244                                         out >> token;
3245                                         line5 = line5 + token + " ";   
3246                                         token_counter++;
3247
3248                                         if ((token_counter >= 13) || (out.eof() == true))
3249                                         {
3250                                                 WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
3251                                                 line5 = "";
3252                                                 token_counter = 0;
3253                                         }
3254                                 }
3255                         }
3256                 }
3257                 else
3258                 {
3259                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
3260                 }
3261                 return 1;
3262         }
3263         
3264         int HandleConnect(char** parameters, int pcnt, userrec* user)
3265         {
3266                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3267                 {
3268                         if (Srv->MatchText(x->Name.c_str(),parameters[0]))
3269                         {
3270                                 TreeServer* CheckDupe = FindServer(x->Name);
3271                                 if (!CheckDupe)
3272                                 {
3273                                         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);
3274                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
3275                                         if (newsocket->GetState() != I_ERROR)
3276                                         {
3277                                                 Srv->AddSocket(newsocket);
3278                                         }
3279                                         else
3280                                         {
3281                                                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: Error connecting \002%s\002.",user->nick,x->Name.c_str());
3282                                                 delete newsocket;
3283                                         }
3284                                         return 1;
3285                                 }
3286                                 else
3287                                 {
3288                                         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());
3289                                         return 1;
3290                                 }
3291                         }
3292                 }
3293                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
3294                 return 1;
3295         }
3296
3297         virtual int OnStats(char statschar, userrec* user)
3298         {
3299                 if (statschar == 'c')
3300                 {
3301                         for (unsigned int i = 0; i < LinkBlocks.size(); i++)
3302                         {
3303                                 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');
3304                                 WriteServ(user->fd,"244 %s H * * %s",user->nick,LinkBlocks[i].Name.c_str());
3305                         }
3306                         WriteServ(user->fd,"219 %s %c :End of /STATS report",user->nick,statschar);
3307                         WriteOpers("*** Notice: Stats '%c' requested by %s (%s@%s)",statschar,user->nick,user->ident,user->host);
3308                         return 1;
3309                 }
3310                 return 0;
3311         }
3312
3313         virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated)
3314         {
3315                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
3316                 if (!validated)
3317                         return 0;
3318
3319                 if (command == "CONNECT")
3320                 {
3321                         return this->HandleConnect(parameters,pcnt,user);
3322                 }
3323                 else if (command == "SQUIT")
3324                 {
3325                         return this->HandleSquit(parameters,pcnt,user);
3326                 }
3327                 else if (command == "MAP")
3328                 {
3329                         this->HandleMap(parameters,pcnt,user);
3330                         return 1;
3331                 }
3332                 else if ((command == "TIME") && (pcnt > 0))
3333                 {
3334                         return this->HandleTime(parameters,pcnt,user);
3335                 }
3336                 else if (command == "LUSERS")
3337                 {
3338                         this->HandleLusers(parameters,pcnt,user);
3339                         return 1;
3340                 }
3341                 else if (command == "LINKS")
3342                 {
3343                         this->HandleLinks(parameters,pcnt,user);
3344                         return 1;
3345                 }
3346                 else if (command == "WHOIS")
3347                 {
3348                         if (pcnt > 1)
3349                         {
3350                                 // remote whois
3351                                 return this->HandleRemoteWhois(parameters,pcnt,user);
3352                         }
3353                 }
3354                 else if ((command == "VERSION") && (pcnt > 0))
3355                 {
3356                         this->HandleVersion(parameters,pcnt,user);
3357                         return 1;
3358                 }
3359                 else if (Srv->IsValidModuleCommand(command, pcnt, user))
3360                 {
3361                         // this bit of code cleverly routes all module commands
3362                         // to all remote severs *automatically* so that modules
3363                         // can just handle commands locally, without having
3364                         // to have any special provision in place for remote
3365                         // commands and linking protocols.
3366                         std::deque<std::string> params;
3367                         params.clear();
3368                         for (int j = 0; j < pcnt; j++)
3369                         {
3370                                 if (strchr(parameters[j],' '))
3371                                 {
3372                                         params.push_back(":" + std::string(parameters[j]));
3373                                 }
3374                                 else
3375                                 {
3376                                         params.push_back(std::string(parameters[j]));
3377                                 }
3378                         }
3379                         log(DEBUG,"Globally route '%s'",command.c_str());
3380                         DoOneToMany(user->nick,command,params);
3381                 }
3382                 return 0;
3383         }
3384
3385         virtual void OnGetServerDescription(std::string servername,std::string &description)
3386         {
3387                 TreeServer* s = FindServer(servername);
3388                 if (s)
3389                 {
3390                         description = s->GetDesc();
3391                 }
3392         }
3393
3394         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
3395         {
3396                 if (source->fd > -1)
3397                 {
3398                         std::deque<std::string> params;
3399                         params.push_back(dest->nick);
3400                         params.push_back(channel->name);
3401                         DoOneToMany(source->nick,"INVITE",params);
3402                 }
3403         }
3404
3405         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic)
3406         {
3407                 std::deque<std::string> params;
3408                 params.push_back(chan->name);
3409                 params.push_back(":"+topic);
3410                 DoOneToMany(user->nick,"TOPIC",params);
3411         }
3412
3413         virtual void OnWallops(userrec* user, std::string text)
3414         {
3415                 if (user->fd > -1)
3416                 {
3417                         std::deque<std::string> params;
3418                         params.push_back(":"+text);
3419                         DoOneToMany(user->nick,"WALLOPS",params);
3420                 }
3421         }
3422
3423         virtual void OnUserNotice(userrec* user, void* dest, int target_type, std::string text, char status)
3424         {
3425                 if (target_type == TYPE_USER)
3426                 {
3427                         userrec* d = (userrec*)dest;
3428                         if ((d->fd < 0) && (user->fd > -1))
3429                         {
3430                                 std::deque<std::string> params;
3431                                 params.clear();
3432                                 params.push_back(d->nick);
3433                                 params.push_back(":"+text);
3434                                 DoOneToOne(user->nick,"NOTICE",params,d->server);
3435                         }
3436                 }
3437                 else
3438                 {
3439                         if (user->fd > -1)
3440                         {
3441                                 chanrec *c = (chanrec*)dest;
3442                                 std::string cname = c->name;
3443                                 if (status)
3444                                         cname = status + cname;
3445                                 std::deque<TreeServer*> list;
3446                                 GetListOfServersForChannel(c,list);
3447                                 unsigned int ucount = list.size();
3448                                 for (unsigned int i = 0; i < ucount; i++)
3449                                 {
3450                                         TreeSocket* Sock = list[i]->GetSocket();
3451                                         if (Sock)
3452                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
3453                                 }
3454                         }
3455                 }
3456         }
3457
3458         virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text, char status)
3459         {
3460                 if (target_type == TYPE_USER)
3461                 {
3462                         // route private messages which are targetted at clients only to the server
3463                         // which needs to receive them
3464                         userrec* d = (userrec*)dest;
3465                         if ((d->fd < 0) && (user->fd > -1))
3466                         {
3467                                 std::deque<std::string> params;
3468                                 params.clear();
3469                                 params.push_back(d->nick);
3470                                 params.push_back(":"+text);
3471                                 DoOneToOne(user->nick,"PRIVMSG",params,d->server);
3472                         }
3473                 }
3474                 else
3475                 {
3476                         if (user->fd > -1)
3477                         {
3478                                 chanrec *c = (chanrec*)dest;
3479                                 std::string cname = c->name;
3480                                 if (status)
3481                                         cname = status + cname;
3482                                 std::deque<TreeServer*> list;
3483                                 GetListOfServersForChannel(c,list);
3484                                 unsigned int ucount = list.size();
3485                                 for (unsigned int i = 0; i < ucount; i++)
3486                                 {
3487                                         TreeSocket* Sock = list[i]->GetSocket();
3488                                         if (Sock)
3489                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
3490                                 }
3491                         }
3492                 }
3493         }
3494
3495         virtual void OnBackgroundTimer(time_t curtime)
3496         {
3497                 AutoConnectServers(curtime);
3498                 DoPingChecks(curtime);
3499         }
3500
3501         virtual void OnUserJoin(userrec* user, chanrec* channel)
3502         {
3503                 // Only do this for local users
3504                 if (user->fd > -1)
3505                 {
3506                         std::deque<std::string> params;
3507                         params.clear();
3508                         params.push_back(channel->name);
3509                         if (*channel->key)
3510                         {
3511                                 // if the channel has a key, force the join by emulating the key.
3512                                 params.push_back(channel->key);
3513                         }
3514                         if (channel->GetUserCounter() > 1)
3515                         {
3516                                 // not the first in the channel
3517                                 DoOneToMany(user->nick,"JOIN",params);
3518                         }
3519                         else
3520                         {
3521                                 // first in the channel, set up their permissions
3522                                 // and the channel TS with FJOIN.
3523                                 char ts[24];
3524                                 snprintf(ts,24,"%lu",(unsigned long)channel->age);
3525                                 params.clear();
3526                                 params.push_back(channel->name);
3527                                 params.push_back(ts);
3528                                 params.push_back("@"+std::string(user->nick));
3529                                 DoOneToMany(Srv->GetServerName(),"FJOIN",params);
3530                         }
3531                 }
3532         }
3533
3534         virtual void OnChangeHost(userrec* user, std::string newhost)
3535         {
3536                 // only occurs for local clients
3537                 if (user->registered != 7)
3538                         return;
3539                 std::deque<std::string> params;
3540                 params.push_back(newhost);
3541                 DoOneToMany(user->nick,"FHOST",params);
3542         }
3543
3544         virtual void OnChangeName(userrec* user, std::string gecos)
3545         {
3546                 // only occurs for local clients
3547                 if (user->registered != 7)
3548                         return;
3549                 std::deque<std::string> params;
3550                 params.push_back(gecos);
3551                 DoOneToMany(user->nick,"FNAME",params);
3552         }
3553
3554         virtual void OnUserPart(userrec* user, chanrec* channel, std::string partmessage)
3555         {
3556                 if (user->fd > -1)
3557                 {
3558                         std::deque<std::string> params;
3559                         params.push_back(channel->name);
3560                         if (partmessage != "")
3561                                 params.push_back(":"+partmessage);
3562                         DoOneToMany(user->nick,"PART",params);
3563                 }
3564         }
3565
3566         virtual void OnUserConnect(userrec* user)
3567         {
3568                 char agestr[MAXBUF];
3569                 if (user->fd > -1)
3570                 {
3571                         std::deque<std::string> params;
3572                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
3573                         params.push_back(agestr);
3574                         params.push_back(user->nick);
3575                         params.push_back(user->host);
3576                         params.push_back(user->dhost);
3577                         params.push_back(user->ident);
3578                         params.push_back("+"+std::string(user->modes));
3579                         params.push_back((char*)inet_ntoa(user->ip4));
3580                         params.push_back(":"+std::string(user->fullname));
3581                         DoOneToMany(Srv->GetServerName(),"NICK",params);
3582
3583                         // User is Local, change needs to be reflected!
3584                         TreeServer* SourceServer = FindServer(user->server);
3585                         if (SourceServer)
3586                         {
3587                                 SourceServer->AddUserCount();
3588                         }
3589
3590                 }
3591         }
3592
3593         virtual void OnUserQuit(userrec* user, std::string reason)
3594         {
3595                 if ((user->fd > -1) && (user->registered == 7))
3596                 {
3597                         std::deque<std::string> params;
3598                         params.push_back(":"+reason);
3599                         DoOneToMany(user->nick,"QUIT",params);
3600                 }
3601                 // Regardless, We need to modify the user Counts..
3602                 TreeServer* SourceServer = FindServer(user->server);
3603                 if (SourceServer)
3604                 {
3605                         SourceServer->DelUserCount();
3606                 }
3607
3608         }
3609
3610         virtual void OnUserPostNick(userrec* user, std::string oldnick)
3611         {
3612                 if (user->fd > -1)
3613                 {
3614                         std::deque<std::string> params;
3615                         params.push_back(user->nick);
3616                         DoOneToMany(oldnick,"NICK",params);
3617                 }
3618         }
3619
3620         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
3621         {
3622                 if ((source) && (source->fd > -1))
3623                 {
3624                         std::deque<std::string> params;
3625                         params.push_back(chan->name);
3626                         params.push_back(user->nick);
3627                         params.push_back(":"+reason);
3628                         DoOneToMany(source->nick,"KICK",params);
3629                 }
3630                 else if (!source)
3631                 {
3632                         std::deque<std::string> params;
3633                         params.push_back(chan->name);
3634                         params.push_back(user->nick);
3635                         params.push_back(":"+reason);
3636                         DoOneToMany(Srv->GetServerName(),"KICK",params);
3637                 }
3638         }
3639
3640         virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
3641         {
3642                 std::deque<std::string> params;
3643                 params.push_back(dest->nick);
3644                 params.push_back(":"+reason);
3645                 DoOneToMany(source->nick,"KILL",params);
3646         }
3647
3648         virtual void OnRehash(std::string parameter)
3649         {
3650                 if (parameter != "")
3651                 {
3652                         std::deque<std::string> params;
3653                         params.push_back(parameter);
3654                         DoOneToMany(Srv->GetServerName(),"REHASH",params);
3655                         // check for self
3656                         if (Srv->MatchText(Srv->GetServerName(),parameter))
3657                         {
3658                                 Srv->SendOpers("*** Remote rehash initiated from server \002"+Srv->GetServerName()+"\002.");
3659                                 Srv->RehashServer();
3660                         }
3661                 }
3662                 ReadConfiguration(false);
3663         }
3664
3665         // note: the protocol does not allow direct umode +o except
3666         // via NICK with 8 params. sending OPERTYPE infers +o modechange
3667         // locally.
3668         virtual void OnOper(userrec* user, std::string opertype)
3669         {
3670                 if (user->fd > -1)
3671                 {
3672                         std::deque<std::string> params;
3673                         params.push_back(opertype);
3674                         DoOneToMany(user->nick,"OPERTYPE",params);
3675                 }
3676         }
3677
3678         void OnLine(userrec* source, std::string host, bool adding, char linetype, long duration, std::string reason)
3679         {
3680                 if (source->fd > -1)
3681                 {
3682                         char type[8];
3683                         snprintf(type,8,"%cLINE",linetype);
3684                         std::string stype = type;
3685                         if (adding)
3686                         {
3687                                 char sduration[MAXBUF];
3688                                 snprintf(sduration,MAXBUF,"%ld",duration);
3689                                 std::deque<std::string> params;
3690                                 params.push_back(host);
3691                                 params.push_back(sduration);
3692                                 params.push_back(":"+reason);
3693                                 DoOneToMany(source->nick,stype,params);
3694                         }
3695                         else
3696                         {
3697                                 std::deque<std::string> params;
3698                                 params.push_back(host);
3699                                 DoOneToMany(source->nick,stype,params);
3700                         }
3701                 }
3702         }
3703
3704         virtual void OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask)
3705         {
3706                 OnLine(source,hostmask,true,'G',duration,reason);
3707         }
3708         
3709         virtual void OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask)
3710         {
3711                 OnLine(source,ipmask,true,'Z',duration,reason);
3712         }
3713
3714         virtual void OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask)
3715         {
3716                 OnLine(source,nickmask,true,'Q',duration,reason);
3717         }
3718
3719         virtual void OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask)
3720         {
3721                 OnLine(source,hostmask,true,'E',duration,reason);
3722         }
3723
3724         virtual void OnDelGLine(userrec* source, std::string hostmask)
3725         {
3726                 OnLine(source,hostmask,false,'G',0,"");
3727         }
3728
3729         virtual void OnDelZLine(userrec* source, std::string ipmask)
3730         {
3731                 OnLine(source,ipmask,false,'Z',0,"");
3732         }
3733
3734         virtual void OnDelQLine(userrec* source, std::string nickmask)
3735         {
3736                 OnLine(source,nickmask,false,'Q',0,"");
3737         }
3738
3739         virtual void OnDelELine(userrec* source, std::string hostmask)
3740         {
3741                 OnLine(source,hostmask,false,'E',0,"");
3742         }
3743
3744         virtual void OnMode(userrec* user, void* dest, int target_type, std::string text)
3745         {
3746                 if ((user->fd > -1) && (user->registered == 7))
3747                 {
3748                         if (target_type == TYPE_USER)
3749                         {
3750                                 userrec* u = (userrec*)dest;
3751                                 std::deque<std::string> params;
3752                                 params.push_back(u->nick);
3753                                 params.push_back(text);
3754                                 DoOneToMany(user->nick,"MODE",params);
3755                         }
3756                         else
3757                         {
3758                                 chanrec* c = (chanrec*)dest;
3759                                 std::deque<std::string> params;
3760                                 params.push_back(c->name);
3761                                 params.push_back(text);
3762                                 DoOneToMany(user->nick,"MODE",params);
3763                         }
3764                 }
3765         }
3766
3767         virtual void OnSetAway(userrec* user)
3768         {
3769                 if (IS_LOCAL(user))
3770                 {
3771                         std::deque<std::string> params;
3772                         params.push_back(":"+std::string(user->awaymsg));
3773                         DoOneToMany(user->nick,"AWAY",params);
3774                 }
3775         }
3776
3777         virtual void OnCancelAway(userrec* user)
3778         {
3779                 if (IS_LOCAL(user))
3780                 {
3781                         std::deque<std::string> params;
3782                         params.clear();
3783                         DoOneToMany(user->nick,"AWAY",params);
3784                 }
3785         }
3786
3787         virtual void ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline)
3788         {
3789                 TreeSocket* s = (TreeSocket*)opaque;
3790                 if (target)
3791                 {
3792                         if (target_type == TYPE_USER)
3793                         {
3794                                 userrec* u = (userrec*)target;
3795                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+u->nick+" "+modeline);
3796                         }
3797                         else
3798                         {
3799                                 chanrec* c = (chanrec*)target;
3800                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" "+modeline);
3801                         }
3802                 }
3803         }
3804
3805         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata)
3806         {
3807                 TreeSocket* s = (TreeSocket*)opaque;
3808                 if (target)
3809                 {
3810                         if (target_type == TYPE_USER)
3811                         {
3812                                 userrec* u = (userrec*)target;
3813                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+u->nick+" "+extname+" :"+extdata);
3814                         }
3815                         else if (target_type == TYPE_OTHER)
3816                         {
3817                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA * "+extname+" :"+extdata);
3818                         }
3819                         else if (target_type == TYPE_CHANNEL)
3820                         {
3821                                 chanrec* c = (chanrec*)target;
3822                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+c->name+" "+extname+" :"+extdata);
3823                         }
3824                 }
3825         }
3826
3827         virtual void OnEvent(Event* event)
3828         {
3829                 if (event->GetEventID() == "send_metadata")
3830                 {
3831                         std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
3832                         if (params->size() < 3)
3833                                 return;
3834                         (*params)[2] = ":" + (*params)[2];
3835                         DoOneToMany(Srv->GetServerName(),"METADATA",*params);
3836                 }
3837         }
3838
3839         virtual ~ModuleSpanningTree()
3840         {
3841         }
3842
3843         virtual Version GetVersion()
3844         {
3845                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
3846         }
3847
3848         void Implements(char* List)
3849         {
3850                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
3851                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
3852                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
3853                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
3854                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
3855                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
3856                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = 1;
3857         }
3858
3859         /* It is IMPORTANT that m_spanningtree is the last module in the chain
3860          * so that any activity it sees is FINAL, e.g. we arent going to send out
3861          * a NICK message before m_cloaking has finished putting the +x on the user,
3862          * etc etc.
3863          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
3864          * the module call queue.
3865          */
3866         Priority Prioritize()
3867         {
3868                 return PRIORITY_LAST;
3869         }
3870 };
3871
3872
3873 class ModuleSpanningTreeFactory : public ModuleFactory
3874 {
3875  public:
3876         ModuleSpanningTreeFactory()
3877         {
3878         }
3879         
3880         ~ModuleSpanningTreeFactory()
3881         {
3882         }
3883         
3884         virtual Module * CreateModule(Server* Me)
3885         {
3886                 TreeProtocolModule = new ModuleSpanningTree(Me);
3887                 return TreeProtocolModule;
3888         }
3889         
3890 };
3891
3892
3893 extern "C" void * init_module( void )
3894 {
3895         return new ModuleSpanningTreeFactory;
3896 }