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