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