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