]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Add extra parameter to MySQLresult and SQLresult
[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) && (*(params[0].c_str()) != '$'))
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()) != '#')
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
2721                         {
2722                                 log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());
2723                                 chanrec* c = Srv->FindChannel(params[0]);
2724                                 if (c)
2725                                 {
2726                                         std::deque<TreeServer*> list;
2727                                         GetListOfServersForChannel(c,list);
2728                                         log(DEBUG,"Got a list of %d servers",list.size());
2729                                         unsigned int lsize = list.size();
2730                                         for (unsigned int i = 0; i < lsize; i++)
2731                                         {
2732                                                 TreeSocket* Sock = list[i]->GetSocket();
2733                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
2734                                                 {
2735                                                         log(DEBUG,"Writing privmsg to server %s",list[i]->GetName().c_str());
2736                                                         Sock->WriteLine(data);
2737                                                 }
2738                                         }
2739                                         return true;
2740                                 }
2741                         }
2742                 }
2743         }
2744         unsigned int items = TreeRoot->ChildCount();
2745         for (unsigned int x = 0; x < items; x++)
2746         {
2747                 TreeServer* Route = TreeRoot->GetChild(x);
2748                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2749                 {
2750                         TreeSocket* Sock = Route->GetSocket();
2751                         Sock->WriteLine(data);
2752                 }
2753         }
2754         return true;
2755 }
2756
2757 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit)
2758 {
2759         TreeServer* omitroute = BestRouteTo(omit);
2760         std::string FullLine = ":" + prefix + " " + command;
2761         unsigned int words = params.size();
2762         for (unsigned int x = 0; x < words; x++)
2763         {
2764                 FullLine = FullLine + " " + params[x];
2765         }
2766         unsigned int items = TreeRoot->ChildCount();
2767         for (unsigned int x = 0; x < items; x++)
2768         {
2769                 TreeServer* Route = TreeRoot->GetChild(x);
2770                 // Send the line IF:
2771                 // The route has a socket (its a direct connection)
2772                 // The route isnt the one to be omitted
2773                 // The route isnt the path to the one to be omitted
2774                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2775                 {
2776                         TreeSocket* Sock = Route->GetSocket();
2777                         Sock->WriteLine(FullLine);
2778                 }
2779         }
2780         return true;
2781 }
2782
2783 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params)
2784 {
2785         std::string FullLine = ":" + prefix + " " + command;
2786         unsigned int words = params.size();
2787         for (unsigned int x = 0; x < words; x++)
2788         {
2789                 FullLine = FullLine + " " + params[x];
2790         }
2791         unsigned int items = TreeRoot->ChildCount();
2792         for (unsigned int x = 0; x < items; x++)
2793         {
2794                 TreeServer* Route = TreeRoot->GetChild(x);
2795                 if (Route->GetSocket())
2796                 {
2797                         TreeSocket* Sock = Route->GetSocket();
2798                         Sock->WriteLine(FullLine);
2799                 }
2800         }
2801         return true;
2802 }
2803
2804 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target)
2805 {
2806         TreeServer* Route = BestRouteTo(target);
2807         if (Route)
2808         {
2809                 std::string FullLine = ":" + prefix + " " + command;
2810                 unsigned int words = params.size();
2811                 for (unsigned int x = 0; x < words; x++)
2812                 {
2813                         FullLine = FullLine + " " + params[x];
2814                 }
2815                 if (Route->GetSocket())
2816                 {
2817                         TreeSocket* Sock = Route->GetSocket();
2818                         Sock->WriteLine(FullLine);
2819                 }
2820                 return true;
2821         }
2822         else
2823         {
2824                 return true;
2825         }
2826 }
2827
2828 std::vector<TreeSocket*> Bindings;
2829
2830 void ReadConfiguration(bool rebind)
2831 {
2832         Conf = new ConfigReader;
2833         if (rebind)
2834         {
2835                 for (int j =0; j < Conf->Enumerate("bind"); j++)
2836                 {
2837                         std::string Type = Conf->ReadValue("bind","type",j);
2838                         std::string IP = Conf->ReadValue("bind","address",j);
2839                         long Port = Conf->ReadInteger("bind","port",j,true);
2840                         if (Type == "servers")
2841                         {
2842                                 if (IP == "*")
2843                                 {
2844                                         IP = "";
2845                                 }
2846                                 TreeSocket* listener = new TreeSocket(IP.c_str(),Port,true,10);
2847                                 if (listener->GetState() == I_LISTENING)
2848                                 {
2849                                         Srv->AddSocket(listener);
2850                                         Bindings.push_back(listener);
2851                                 }
2852                                 else
2853                                 {
2854                                         log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
2855                                         listener->Close();
2856                                         DELETE(listener);
2857                                 }
2858                         }
2859                 }
2860         }
2861         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
2862         HideULines = Conf->ReadFlag("options","hideulines",0);
2863         LinkBlocks.clear();
2864         for (int j =0; j < Conf->Enumerate("link"); j++)
2865         {
2866                 Link L;
2867                 L.Name = (Conf->ReadValue("link","name",j)).c_str();
2868                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
2869                 L.Port = Conf->ReadInteger("link","port",j,true);
2870                 L.SendPass = Conf->ReadValue("link","sendpass",j);
2871                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
2872                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
2873                 L.EncryptionKey =  Conf->ReadValue("link","encryptionkey",j);
2874                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
2875                 L.NextConnectTime = time(NULL) + L.AutoConnect;
2876                 /* Bugfix by brain, do not allow people to enter bad configurations */
2877                 if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
2878                 {
2879                         LinkBlocks.push_back(L);
2880                         log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
2881                 }
2882                 else
2883                 {
2884                         if (L.IPAddr == "")
2885                         {
2886                                 log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
2887                         }
2888                         else if (L.RecvPass == "")
2889                         {
2890                                 log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
2891                         }
2892                         else if (L.SendPass == "")
2893                         {
2894                                 log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
2895                         }
2896                         else if (L.Name == "")
2897                         {
2898                                 log(DEFAULT,"Invalid configuration, link tag without a name!");
2899                         }
2900                         else if (!L.Port)
2901                         {
2902                                 log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
2903                         }
2904                 }
2905         }
2906         DELETE(Conf);
2907 }
2908
2909
2910 class ModuleSpanningTree : public Module
2911 {
2912         std::vector<TreeSocket*> Bindings;
2913         int line;
2914         int NumServers;
2915         unsigned int max_local;
2916         unsigned int max_global;
2917         cmd_rconnect* command_rconnect;
2918
2919  public:
2920
2921         ModuleSpanningTree(Server* Me)
2922                 : Module::Module(Me), max_local(0), max_global(0)
2923         {
2924                 Srv = Me;
2925                 Bindings.clear();
2926
2927                 // Create the root of the tree
2928                 TreeRoot = new TreeServer(Srv->GetServerName(),Srv->GetServerDescription());
2929
2930                 ReadConfiguration(true);
2931
2932                 command_rconnect = new cmd_rconnect(this);
2933                 Srv->AddCommand(command_rconnect);
2934         }
2935
2936         void ShowLinks(TreeServer* Current, userrec* user, int hops)
2937         {
2938                 std::string Parent = TreeRoot->GetName();
2939                 if (Current->GetParent())
2940                 {
2941                         Parent = Current->GetParent()->GetName();
2942                 }
2943                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
2944                 {
2945                         if ((HideULines) && (Srv->IsUlined(Current->GetChild(q)->GetName())))
2946                         {
2947                                 if (*user->oper)
2948                                 {
2949                                          ShowLinks(Current->GetChild(q),user,hops+1);
2950                                 }
2951                         }
2952                         else
2953                         {
2954                                 ShowLinks(Current->GetChild(q),user,hops+1);
2955                         }
2956                 }
2957                 /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
2958                 if ((HideULines) && (Srv->IsUlined(Current->GetName())) && (!*user->oper))
2959                         return;
2960                 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());
2961         }
2962
2963         int CountLocalServs()
2964         {
2965                 return TreeRoot->ChildCount();
2966         }
2967
2968         int CountServs()
2969         {
2970                 return serverlist.size();
2971         }
2972
2973         void HandleLinks(const char** parameters, int pcnt, userrec* user)
2974         {
2975                 ShowLinks(TreeRoot,user,0);
2976                 WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick);
2977                 return;
2978         }
2979
2980         void HandleLusers(const char** parameters, int pcnt, userrec* user)
2981         {
2982                 unsigned int n_users = usercnt();
2983
2984                 /* Only update these when someone wants to see them, more efficient */
2985                 if ((unsigned int)local_count() > max_local)
2986                         max_local = local_count();
2987                 if (n_users > max_global)
2988                         max_global = n_users;
2989
2990                 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());
2991                 WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
2992                 WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
2993                 WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
2994                 WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
2995                 WriteServ(user->fd,"265 %s :Current Local Users: %d  Max: %d",user->nick,local_count(),max_local);
2996                 WriteServ(user->fd,"266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
2997                 return;
2998         }
2999
3000         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
3001
3002         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
3003         {
3004                 if (line < 128)
3005                 {
3006                         for (int t = 0; t < depth; t++)
3007                         {
3008                                 matrix[line][t] = ' ';
3009                         }
3010
3011                         // For Aligning, we need to work out exactly how deep this thing is, and produce
3012                         // a 'Spacer' String to compensate.
3013                         char spacer[40];
3014
3015                         memset(spacer,' ',40);
3016                         if ((40 - Current->GetName().length() - depth) > 1) {
3017                                 spacer[40 - Current->GetName().length() - depth] = '\0';
3018                         }
3019                         else
3020                         {
3021                                 spacer[5] = '\0';
3022                         }
3023
3024                         float percent;
3025                         char text[80];
3026                         if (clientlist.size() == 0) {
3027                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
3028                                 percent = 0;
3029                         }
3030                         else
3031                         {
3032                                 percent = ((float)Current->GetUserCount() / (float)clientlist.size()) * 100;
3033                         }
3034                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
3035                         totusers += Current->GetUserCount();
3036                         totservers++;
3037                         strlcpy(&matrix[line][depth],text,80);
3038                         line++;
3039                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
3040                         {
3041                                 if ((HideULines) && (Srv->IsUlined(Current->GetChild(q)->GetName())))
3042                                 {
3043                                         if (*user->oper)
3044                                         {
3045                                                 ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
3046                                         }
3047                                 }
3048                                 else
3049                                 {
3050                                         ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
3051                                 }
3052                         }
3053                 }
3054         }
3055
3056         // Ok, prepare to be confused.
3057         // After much mulling over how to approach this, it struck me that
3058         // the 'usual' way of doing a /MAP isnt the best way. Instead of
3059         // keeping track of a ton of ascii characters, and line by line
3060         // under recursion working out where to place them using multiplications
3061         // and divisons, we instead render the map onto a backplane of characters
3062         // (a character matrix), then draw the branches as a series of "L" shapes
3063         // from the nodes. This is not only friendlier on CPU it uses less stack.
3064
3065         void HandleMap(const char** parameters, int pcnt, userrec* user)
3066         {
3067                 // This array represents a virtual screen which we will
3068                 // "scratch" draw to, as the console device of an irc
3069                 // client does not provide for a proper terminal.
3070                 float totusers = 0;
3071                 float totservers = 0;
3072                 char matrix[128][80];
3073                 for (unsigned int t = 0; t < 128; t++)
3074                 {
3075                         matrix[t][0] = '\0';
3076                 }
3077                 line = 0;
3078                 // The only recursive bit is called here.
3079                 ShowMap(TreeRoot,user,0,matrix,totusers,totservers);
3080                 // Process each line one by one. The algorithm has a limit of
3081                 // 128 servers (which is far more than a spanning tree should have
3082                 // anyway, so we're ok). This limit can be raised simply by making
3083                 // the character matrix deeper, 128 rows taking 10k of memory.
3084                 for (int l = 1; l < line; l++)
3085                 {
3086                         // scan across the line looking for the start of the
3087                         // servername (the recursive part of the algorithm has placed
3088                         // the servers at indented positions depending on what they
3089                         // are related to)
3090                         int first_nonspace = 0;
3091                         while (matrix[l][first_nonspace] == ' ')
3092                         {
3093                                 first_nonspace++;
3094                         }
3095                         first_nonspace--;
3096                         // Draw the `- (corner) section: this may be overwritten by
3097                         // another L shape passing along the same vertical pane, becoming
3098                         // a |- (branch) section instead.
3099                         matrix[l][first_nonspace] = '-';
3100                         matrix[l][first_nonspace-1] = '`';
3101                         int l2 = l - 1;
3102                         // Draw upwards until we hit the parent server, causing possibly
3103                         // other corners (`-) to become branches (|-)
3104                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
3105                         {
3106                                 matrix[l2][first_nonspace-1] = '|';
3107                                 l2--;
3108                         }
3109                 }
3110                 // dump the whole lot to the user. This is the easy bit, honest.
3111                 for (int t = 0; t < line; t++)
3112                 {
3113                         WriteServ(user->fd,"006 %s :%s",user->nick,&matrix[t][0]);
3114                 }
3115                 float avg_users = totusers / totservers;
3116                 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);
3117         WriteServ(user->fd,"007 %s :End of /MAP",user->nick);
3118                 return;
3119         }
3120
3121         int HandleSquit(const char** parameters, int pcnt, userrec* user)
3122         {
3123                 TreeServer* s = FindServerMask(parameters[0]);
3124                 if (s)
3125                 {
3126                         if (s == TreeRoot)
3127                         {
3128                                  WriteServ(user->fd,"NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
3129                                 return 1;
3130                         }
3131                         TreeSocket* sock = s->GetSocket();
3132                         if (sock)
3133                         {
3134                                 log(DEBUG,"Splitting server %s",s->GetName().c_str());
3135                                 WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
3136                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
3137                                 Srv->RemoveSocket(sock);
3138                         }
3139                         else
3140                         {
3141                                 WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
3142                         }
3143                 }
3144                 else
3145                 {
3146                          WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
3147                 }
3148                 return 1;
3149         }
3150
3151         int HandleTime(const char** parameters, int pcnt, userrec* user)
3152         {
3153                 if ((user->fd > -1) && (pcnt))
3154                 {
3155                         TreeServer* found = FindServerMask(parameters[0]);
3156                         if (found)
3157                         {
3158                                 // we dont' override for local server
3159                                 if (found == TreeRoot)
3160                                         return 0;
3161                                 
3162                                 std::deque<std::string> params;
3163                                 params.push_back(found->GetName());
3164                                 params.push_back(user->nick);
3165                                 DoOneToOne(Srv->GetServerName(),"TIME",params,found->GetName());
3166                         }
3167                         else
3168                         {
3169                                 WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
3170                         }
3171                 }
3172                 return 1;
3173         }
3174
3175         int HandleRemoteWhois(const char** parameters, int pcnt, userrec* user)
3176         {
3177                 if ((user->fd > -1) && (pcnt > 1))
3178                 {
3179                         userrec* remote = Srv->FindNick(parameters[1]);
3180                         if ((remote) && (remote->fd < 0))
3181                         {
3182                                 std::deque<std::string> params;
3183                                 params.push_back(parameters[1]);
3184                                 DoOneToOne(user->nick,"IDLE",params,remote->server);
3185                                 return 1;
3186                         }
3187                         else if (!remote)
3188                         {
3189                                 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]);
3190                                 WriteServ(user->fd,"318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
3191                                 return 1;
3192                         }
3193                 }
3194                 return 0;
3195         }
3196
3197         void DoPingChecks(time_t curtime)
3198         {
3199                 for (unsigned int j = 0; j < TreeRoot->ChildCount(); j++)
3200                 {
3201                         TreeServer* serv = TreeRoot->GetChild(j);
3202                         TreeSocket* sock = serv->GetSocket();
3203                         if (sock)
3204                         {
3205                                 if (curtime >= serv->NextPingTime())
3206                                 {
3207                                         if (serv->AnsweredLastPing())
3208                                         {
3209                                                 sock->WriteLine(":"+Srv->GetServerName()+" PING "+serv->GetName());
3210                                                 serv->SetNextPingTime(curtime + 120);
3211                                         }
3212                                         else
3213                                         {
3214                                                 // they didnt answer, boot them
3215                                                 WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
3216                                                 sock->Squit(serv,"Ping timeout");
3217                                                 Srv->RemoveSocket(sock);
3218                                                 return;
3219                                         }
3220                                 }
3221                         }
3222                 }
3223         }
3224
3225         void AutoConnectServers(time_t curtime)
3226         {
3227                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3228                 {
3229                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
3230                         {
3231                                 log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
3232                                 x->NextConnectTime = curtime + x->AutoConnect;
3233                                 TreeServer* CheckDupe = FindServer(x->Name.c_str());
3234                                 if (!CheckDupe)
3235                                 {
3236                                         // an autoconnected server is not connected. Check if its time to connect it
3237                                         WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
3238                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name.c_str());
3239                                         if (newsocket->GetFd() > -1)
3240                                         {
3241                                                 Srv->AddSocket(newsocket);
3242                                         }
3243                                         else
3244                                         {
3245                                                 WriteOpers("*** AUTOCONNECT: Error autoconnecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
3246                                                 DELETE(newsocket);
3247                                         }
3248                                 }
3249                         }
3250                 }
3251         }
3252
3253         int HandleVersion(const char** parameters, int pcnt, userrec* user)
3254         {
3255                 // we've already checked if pcnt > 0, so this is safe
3256                 TreeServer* found = FindServerMask(parameters[0]);
3257                 if (found)
3258                 {
3259                         std::string Version = found->GetVersion();
3260                         WriteServ(user->fd,"351 %s :%s",user->nick,Version.c_str());
3261                         if (found == TreeRoot)
3262                         {
3263                                 std::stringstream out(Config->data005);
3264                                 std::string token = "";
3265                                 std::string line5 = "";
3266                                 int token_counter = 0;
3267
3268                                 while (!out.eof())
3269                                 {
3270                                         out >> token;
3271                                         line5 = line5 + token + " ";   
3272                                         token_counter++;
3273
3274                                         if ((token_counter >= 13) || (out.eof() == true))
3275                                         {
3276                                                 WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
3277                                                 line5 = "";
3278                                                 token_counter = 0;
3279                                         }
3280                                 }
3281                         }
3282                 }
3283                 else
3284                 {
3285                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
3286                 }
3287                 return 1;
3288         }
3289         
3290         int HandleConnect(const char** parameters, int pcnt, userrec* user)
3291         {
3292                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3293                 {
3294                         if (Srv->MatchText(x->Name.c_str(),parameters[0]))
3295                         {
3296                                 TreeServer* CheckDupe = FindServer(x->Name.c_str());
3297                                 if (!CheckDupe)
3298                                 {
3299                                         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);
3300                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name.c_str());
3301                                         if (newsocket->GetFd() > -1)
3302                                         {
3303                                                 Srv->AddSocket(newsocket);
3304                                         }
3305                                         else
3306                                         {
3307                                                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: Error connecting \002%s\002: %s.",user->nick,x->Name.c_str(),strerror(errno));
3308                                                 DELETE(newsocket);
3309                                         }
3310                                         return 1;
3311                                 }
3312                                 else
3313                                 {
3314                                         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());
3315                                         return 1;
3316                                 }
3317                         }
3318                 }
3319                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
3320                 return 1;
3321         }
3322
3323         virtual int OnStats(char statschar, userrec* user)
3324         {
3325                 if (statschar == 'c')
3326                 {
3327                         for (unsigned int i = 0; i < LinkBlocks.size(); i++)
3328                         {
3329                                 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');
3330                                 WriteServ(user->fd,"244 %s H * * %s",user->nick,LinkBlocks[i].Name.c_str());
3331                         }
3332                         WriteServ(user->fd,"219 %s %c :End of /STATS report",user->nick,statschar);
3333                         WriteOpers("*** Notice: Stats '%c' requested by %s (%s@%s)",statschar,user->nick,user->ident,user->host);
3334                         return 1;
3335                 }
3336                 return 0;
3337         }
3338
3339         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated)
3340         {
3341                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
3342                 if (!validated)
3343                         return 0;
3344
3345                 if (command == "CONNECT")
3346                 {
3347                         return this->HandleConnect(parameters,pcnt,user);
3348                 }
3349                 else if (command == "SQUIT")
3350                 {
3351                         return this->HandleSquit(parameters,pcnt,user);
3352                 }
3353                 else if (command == "MAP")
3354                 {
3355                         this->HandleMap(parameters,pcnt,user);
3356                         return 1;
3357                 }
3358                 else if ((command == "TIME") && (pcnt > 0))
3359                 {
3360                         return this->HandleTime(parameters,pcnt,user);
3361                 }
3362                 else if (command == "LUSERS")
3363                 {
3364                         this->HandleLusers(parameters,pcnt,user);
3365                         return 1;
3366                 }
3367                 else if (command == "LINKS")
3368                 {
3369                         this->HandleLinks(parameters,pcnt,user);
3370                         return 1;
3371                 }
3372                 else if (command == "WHOIS")
3373                 {
3374                         if (pcnt > 1)
3375                         {
3376                                 // remote whois
3377                                 return this->HandleRemoteWhois(parameters,pcnt,user);
3378                         }
3379                 }
3380                 else if ((command == "VERSION") && (pcnt > 0))
3381                 {
3382                         this->HandleVersion(parameters,pcnt,user);
3383                         return 1;
3384                 }
3385                 else if (Srv->IsValidModuleCommand(command, pcnt, user))
3386                 {
3387                         // this bit of code cleverly routes all module commands
3388                         // to all remote severs *automatically* so that modules
3389                         // can just handle commands locally, without having
3390                         // to have any special provision in place for remote
3391                         // commands and linking protocols.
3392                         std::deque<std::string> params;
3393                         params.clear();
3394                         for (int j = 0; j < pcnt; j++)
3395                         {
3396                                 if (strchr(parameters[j],' '))
3397                                 {
3398                                         params.push_back(":" + std::string(parameters[j]));
3399                                 }
3400                                 else
3401                                 {
3402                                         params.push_back(std::string(parameters[j]));
3403                                 }
3404                         }
3405                         log(DEBUG,"Globally route '%s'",command.c_str());
3406                         DoOneToMany(user->nick,command,params);
3407                 }
3408                 return 0;
3409         }
3410
3411         virtual void OnGetServerDescription(const std::string &servername,std::string &description)
3412         {
3413                 TreeServer* s = FindServer(servername);
3414                 if (s)
3415                 {
3416                         description = s->GetDesc();
3417                 }
3418         }
3419
3420         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
3421         {
3422                 if (source->fd > -1)
3423                 {
3424                         std::deque<std::string> params;
3425                         params.push_back(dest->nick);
3426                         params.push_back(channel->name);
3427                         DoOneToMany(source->nick,"INVITE",params);
3428                 }
3429         }
3430
3431         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic)
3432         {
3433                 std::deque<std::string> params;
3434                 params.push_back(chan->name);
3435                 params.push_back(":"+topic);
3436                 DoOneToMany(user->nick,"TOPIC",params);
3437         }
3438
3439         virtual void OnWallops(userrec* user, const std::string &text)
3440         {
3441                 if (user->fd > -1)
3442                 {
3443                         std::deque<std::string> params;
3444                         params.push_back(":"+text);
3445                         DoOneToMany(user->nick,"WALLOPS",params);
3446                 }
3447         }
3448
3449         virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status)
3450         {
3451                 if (target_type == TYPE_USER)
3452                 {
3453                         userrec* d = (userrec*)dest;
3454                         if ((d->fd < 0) && (user->fd > -1))
3455                         {
3456                                 std::deque<std::string> params;
3457                                 params.clear();
3458                                 params.push_back(d->nick);
3459                                 params.push_back(":"+text);
3460                                 DoOneToOne(user->nick,"NOTICE",params,d->server);
3461                         }
3462                 }
3463                 else
3464                 {
3465                         if (user->fd > -1)
3466                         {
3467                                 chanrec *c = (chanrec*)dest;
3468                                 std::string cname = c->name;
3469                                 if (status)
3470                                         cname = status + cname;
3471                                 std::deque<TreeServer*> list;
3472                                 GetListOfServersForChannel(c,list);
3473                                 unsigned int ucount = list.size();
3474                                 for (unsigned int i = 0; i < ucount; i++)
3475                                 {
3476                                         TreeSocket* Sock = list[i]->GetSocket();
3477                                         if (Sock)
3478                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
3479                                 }
3480                         }
3481                 }
3482         }
3483
3484         virtual void OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status)
3485         {
3486                 if (target_type == TYPE_USER)
3487                 {
3488                         // route private messages which are targetted at clients only to the server
3489                         // which needs to receive them
3490                         userrec* d = (userrec*)dest;
3491                         if ((d->fd < 0) && (user->fd > -1))
3492                         {
3493                                 std::deque<std::string> params;
3494                                 params.clear();
3495                                 params.push_back(d->nick);
3496                                 params.push_back(":"+text);
3497                                 DoOneToOne(user->nick,"PRIVMSG",params,d->server);
3498                         }
3499                 }
3500                 else
3501                 {
3502                         if (user->fd > -1)
3503                         {
3504                                 chanrec *c = (chanrec*)dest;
3505                                 std::string cname = c->name;
3506                                 if (status)
3507                                         cname = status + cname;
3508                                 std::deque<TreeServer*> list;
3509                                 GetListOfServersForChannel(c,list);
3510                                 unsigned int ucount = list.size();
3511                                 for (unsigned int i = 0; i < ucount; i++)
3512                                 {
3513                                         TreeSocket* Sock = list[i]->GetSocket();
3514                                         if (Sock)
3515                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
3516                                 }
3517                         }
3518                 }
3519         }
3520
3521         virtual void OnBackgroundTimer(time_t curtime)
3522         {
3523                 AutoConnectServers(curtime);
3524                 DoPingChecks(curtime);
3525         }
3526
3527         virtual void OnUserJoin(userrec* user, chanrec* channel)
3528         {
3529                 // Only do this for local users
3530                 if (user->fd > -1)
3531                 {
3532                         std::deque<std::string> params;
3533                         params.clear();
3534                         params.push_back(channel->name);
3535
3536                         if (channel->GetUserCounter() > 1)
3537                         {
3538                                 // not the first in the channel
3539                                 DoOneToMany(user->nick,"JOIN",params);
3540                         }
3541                         else
3542                         {
3543                                 // first in the channel, set up their permissions
3544                                 // and the channel TS with FJOIN.
3545                                 char ts[24];
3546                                 snprintf(ts,24,"%lu",(unsigned long)channel->age);
3547                                 params.clear();
3548                                 params.push_back(channel->name);
3549                                 params.push_back(ts);
3550                                 params.push_back("@"+std::string(user->nick));
3551                                 DoOneToMany(Srv->GetServerName(),"FJOIN",params);
3552                         }
3553                 }
3554         }
3555
3556         virtual void OnChangeHost(userrec* user, const std::string &newhost)
3557         {
3558                 // only occurs for local clients
3559                 if (user->registered != 7)
3560                         return;
3561                 std::deque<std::string> params;
3562                 params.push_back(newhost);
3563                 DoOneToMany(user->nick,"FHOST",params);
3564         }
3565
3566         virtual void OnChangeName(userrec* user, const std::string &gecos)
3567         {
3568                 // only occurs for local clients
3569                 if (user->registered != 7)
3570                         return;
3571                 std::deque<std::string> params;
3572                 params.push_back(gecos);
3573                 DoOneToMany(user->nick,"FNAME",params);
3574         }
3575
3576         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage)
3577         {
3578                 if (user->fd > -1)
3579                 {
3580                         std::deque<std::string> params;
3581                         params.push_back(channel->name);
3582                         if (partmessage != "")
3583                                 params.push_back(":"+partmessage);
3584                         DoOneToMany(user->nick,"PART",params);
3585                 }
3586         }
3587
3588         virtual void OnUserConnect(userrec* user)
3589         {
3590                 char agestr[MAXBUF];
3591                 if (user->fd > -1)
3592                 {
3593                         std::deque<std::string> params;
3594                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
3595                         params.push_back(agestr);
3596                         params.push_back(user->nick);
3597                         params.push_back(user->host);
3598                         params.push_back(user->dhost);
3599                         params.push_back(user->ident);
3600                         params.push_back("+"+std::string(user->FormatModes()));
3601                         params.push_back((char*)inet_ntoa(user->ip4));
3602                         params.push_back(":"+std::string(user->fullname));
3603                         DoOneToMany(Srv->GetServerName(),"NICK",params);
3604
3605                         // User is Local, change needs to be reflected!
3606                         TreeServer* SourceServer = FindServer(user->server);
3607                         if (SourceServer)
3608                         {
3609                                 SourceServer->AddUserCount();
3610                         }
3611
3612                 }
3613         }
3614
3615         virtual void OnUserQuit(userrec* user, const std::string &reason)
3616         {
3617                 if ((user->fd > -1) && (user->registered == 7))
3618                 {
3619                         std::deque<std::string> params;
3620                         params.push_back(":"+reason);
3621                         DoOneToMany(user->nick,"QUIT",params);
3622                 }
3623                 // Regardless, We need to modify the user Counts..
3624                 TreeServer* SourceServer = FindServer(user->server);
3625                 if (SourceServer)
3626                 {
3627                         SourceServer->DelUserCount();
3628                 }
3629
3630         }
3631
3632         virtual void OnUserPostNick(userrec* user, const std::string &oldnick)
3633         {
3634                 if (user->fd > -1)
3635                 {
3636                         std::deque<std::string> params;
3637                         params.push_back(user->nick);
3638                         DoOneToMany(oldnick,"NICK",params);
3639                 }
3640         }
3641
3642         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason)
3643         {
3644                 if ((source) && (source->fd > -1))
3645                 {
3646                         std::deque<std::string> params;
3647                         params.push_back(chan->name);
3648                         params.push_back(user->nick);
3649                         params.push_back(":"+reason);
3650                         DoOneToMany(source->nick,"KICK",params);
3651                 }
3652                 else if (!source)
3653                 {
3654                         std::deque<std::string> params;
3655                         params.push_back(chan->name);
3656                         params.push_back(user->nick);
3657                         params.push_back(":"+reason);
3658                         DoOneToMany(Srv->GetServerName(),"KICK",params);
3659                 }
3660         }
3661
3662         virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason)
3663         {
3664                 std::deque<std::string> params;
3665                 params.push_back(dest->nick);
3666                 params.push_back(":"+reason);
3667                 DoOneToMany(source->nick,"KILL",params);
3668         }
3669
3670         virtual void OnRehash(const std::string &parameter)
3671         {
3672                 if (parameter != "")
3673                 {
3674                         std::deque<std::string> params;
3675                         params.push_back(parameter);
3676                         DoOneToMany(Srv->GetServerName(),"REHASH",params);
3677                         // check for self
3678                         if (Srv->MatchText(Srv->GetServerName(),parameter))
3679                         {
3680                                 Srv->SendOpers("*** Remote rehash initiated from server \002"+Srv->GetServerName()+"\002.");
3681                                 Srv->RehashServer();
3682                         }
3683                 }
3684                 ReadConfiguration(false);
3685         }
3686
3687         // note: the protocol does not allow direct umode +o except
3688         // via NICK with 8 params. sending OPERTYPE infers +o modechange
3689         // locally.
3690         virtual void OnOper(userrec* user, const std::string &opertype)
3691         {
3692                 if (user->fd > -1)
3693                 {
3694                         std::deque<std::string> params;
3695                         params.push_back(opertype);
3696                         DoOneToMany(user->nick,"OPERTYPE",params);
3697                 }
3698         }
3699
3700         void OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason)
3701         {
3702                 if (source->fd > -1)
3703                 {
3704                         char type[8];
3705                         snprintf(type,8,"%cLINE",linetype);
3706                         std::string stype = type;
3707                         if (adding)
3708                         {
3709                                 char sduration[MAXBUF];
3710                                 snprintf(sduration,MAXBUF,"%ld",duration);
3711                                 std::deque<std::string> params;
3712                                 params.push_back(host);
3713                                 params.push_back(sduration);
3714                                 params.push_back(":"+reason);
3715                                 DoOneToMany(source->nick,stype,params);
3716                         }
3717                         else
3718                         {
3719                                 std::deque<std::string> params;
3720                                 params.push_back(host);
3721                                 DoOneToMany(source->nick,stype,params);
3722                         }
3723                 }
3724         }
3725
3726         virtual void OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
3727         {
3728                 OnLine(source,hostmask,true,'G',duration,reason);
3729         }
3730         
3731         virtual void OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask)
3732         {
3733                 OnLine(source,ipmask,true,'Z',duration,reason);
3734         }
3735
3736         virtual void OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask)
3737         {
3738                 OnLine(source,nickmask,true,'Q',duration,reason);
3739         }
3740
3741         virtual void OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
3742         {
3743                 OnLine(source,hostmask,true,'E',duration,reason);
3744         }
3745
3746         virtual void OnDelGLine(userrec* source, const std::string &hostmask)
3747         {
3748                 OnLine(source,hostmask,false,'G',0,"");
3749         }
3750
3751         virtual void OnDelZLine(userrec* source, const std::string &ipmask)
3752         {
3753                 OnLine(source,ipmask,false,'Z',0,"");
3754         }
3755
3756         virtual void OnDelQLine(userrec* source, const std::string &nickmask)
3757         {
3758                 OnLine(source,nickmask,false,'Q',0,"");
3759         }
3760
3761         virtual void OnDelELine(userrec* source, const std::string &hostmask)
3762         {
3763                 OnLine(source,hostmask,false,'E',0,"");
3764         }
3765
3766         virtual void OnMode(userrec* user, void* dest, int target_type, const std::string &text)
3767         {
3768                 if ((user->fd > -1) && (user->registered == 7))
3769                 {
3770                         if (target_type == TYPE_USER)
3771                         {
3772                                 userrec* u = (userrec*)dest;
3773                                 std::deque<std::string> params;
3774                                 params.push_back(u->nick);
3775                                 params.push_back(text);
3776                                 DoOneToMany(user->nick,"MODE",params);
3777                         }
3778                         else
3779                         {
3780                                 chanrec* c = (chanrec*)dest;
3781                                 std::deque<std::string> params;
3782                                 params.push_back(c->name);
3783                                 params.push_back(text);
3784                                 DoOneToMany(user->nick,"MODE",params);
3785                         }
3786                 }
3787         }
3788
3789         virtual void OnSetAway(userrec* user)
3790         {
3791                 if (IS_LOCAL(user))
3792                 {
3793                         std::deque<std::string> params;
3794                         params.push_back(":"+std::string(user->awaymsg));
3795                         DoOneToMany(user->nick,"AWAY",params);
3796                 }
3797         }
3798
3799         virtual void OnCancelAway(userrec* user)
3800         {
3801                 if (IS_LOCAL(user))
3802                 {
3803                         std::deque<std::string> params;
3804                         params.clear();
3805                         DoOneToMany(user->nick,"AWAY",params);
3806                 }
3807         }
3808
3809         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline)
3810         {
3811                 TreeSocket* s = (TreeSocket*)opaque;
3812                 if (target)
3813                 {
3814                         if (target_type == TYPE_USER)
3815                         {
3816                                 userrec* u = (userrec*)target;
3817                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+u->nick+" "+modeline);
3818                         }
3819                         else
3820                         {
3821                                 chanrec* c = (chanrec*)target;
3822                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" "+modeline);
3823                         }
3824                 }
3825         }
3826
3827         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata)
3828         {
3829                 TreeSocket* s = (TreeSocket*)opaque;
3830                 if (target)
3831                 {
3832                         if (target_type == TYPE_USER)
3833                         {
3834                                 userrec* u = (userrec*)target;
3835                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+u->nick+" "+extname+" :"+extdata);
3836                         }
3837                         else if (target_type == TYPE_OTHER)
3838                         {
3839                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA * "+extname+" :"+extdata);
3840                         }
3841                         else if (target_type == TYPE_CHANNEL)
3842                         {
3843                                 chanrec* c = (chanrec*)target;
3844                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+c->name+" "+extname+" :"+extdata);
3845                         }
3846                 }
3847         }
3848
3849         virtual void OnEvent(Event* event)
3850         {
3851                 if (event->GetEventID() == "send_metadata")
3852                 {
3853                         std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
3854                         if (params->size() < 3)
3855                                 return;
3856                         (*params)[2] = ":" + (*params)[2];
3857                         DoOneToMany(Srv->GetServerName(),"METADATA",*params);
3858                 }
3859                 else if (event->GetEventID() == "send_mode")
3860                 {
3861                         std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
3862                         if (params->size() < 2)
3863                                 return;
3864                         DoOneToMany(Srv->GetServerName(),"FMODE",*params);
3865                 }
3866         }
3867
3868         virtual ~ModuleSpanningTree()
3869         {
3870         }
3871
3872         virtual Version GetVersion()
3873         {
3874                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
3875         }
3876
3877         void Implements(char* List)
3878         {
3879                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
3880                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
3881                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
3882                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
3883                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
3884                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
3885                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = 1;
3886         }
3887
3888         /* It is IMPORTANT that m_spanningtree is the last module in the chain
3889          * so that any activity it sees is FINAL, e.g. we arent going to send out
3890          * a NICK message before m_cloaking has finished putting the +x on the user,
3891          * etc etc.
3892          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
3893          * the module call queue.
3894          */
3895         Priority Prioritize()
3896         {
3897                 return PRIORITY_LAST;
3898         }
3899 };
3900
3901
3902 class ModuleSpanningTreeFactory : public ModuleFactory
3903 {
3904  public:
3905         ModuleSpanningTreeFactory()
3906         {
3907         }
3908         
3909         ~ModuleSpanningTreeFactory()
3910         {
3911         }
3912         
3913         virtual Module * CreateModule(Server* Me)
3914         {
3915                 TreeProtocolModule = new ModuleSpanningTree(Me);
3916                 return TreeProtocolModule;
3917         }
3918         
3919 };
3920
3921
3922 extern "C" void * init_module( void )
3923 {
3924         return new ModuleSpanningTreeFactory;
3925 }