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