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