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