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