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