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