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