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