]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Fixes
[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
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 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, std::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                 if (params[0] != this->MyCapabilities())
780                 {
781                         std::string quitserver = this->myhost;
782                         if (this->InboundServerName != "")
783                         {
784                                 quitserver = this->InboundServerName;
785                         }
786                         WriteOpers("*** \2ERROR\2: Server '%s' does not have the same set of modules loaded, cannot link!",quitserver.c_str());
787                         WriteOpers("*** Our networked module set is: '%s'",this->MyCapabilities().c_str());
788                         WriteOpers("*** Other server's networked module set is: '%s'",params[0].c_str());
789                         WriteOpers("*** These lists must match exactly on both servers. Please correct these errors, and try again.");
790                         this->WriteLine("ERROR :CAPAB mismatch; My capabilities: '"+this->MyCapabilities()+"'");
791                         return false;
792                 }
793                 return true;
794         }
795
796         /* This function forces this server to quit, removing this server
797          * and any users on it (and servers and users below that, etc etc).
798          * It's very slow and pretty clunky, but luckily unless your network
799          * is having a REAL bad hair day, this function shouldnt be called
800          * too many times a month ;-)
801          */
802         void SquitServer(TreeServer* Current, CullList* Goners)
803         {
804                 /* recursively squit the servers attached to 'Current'.
805                  * We're going backwards so we don't remove users
806                  * while we still need them ;)
807                  */
808                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
809                 {
810                         TreeServer* recursive_server = Current->GetChild(q);
811                         this->SquitServer(recursive_server,Goners);
812                 }
813                 /* Now we've whacked the kids, whack self */
814                 num_lost_servers++;
815                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
816                 {
817                         if (!strcasecmp(u->second->server,Current->GetName().c_str()))
818                         {
819                                 std::string qreason = Current->GetName()+" "+std::string(Srv->GetServerName());
820                                 Goners->AddItem(u->second,qreason);
821                                 num_lost_users++;
822                         }
823                 }
824         }
825
826         /* This is a wrapper function for SquitServer above, which
827          * does some validation first and passes on the SQUIT to all
828          * other remaining servers.
829          */
830         void Squit(TreeServer* Current,std::string reason)
831         {
832                 if ((Current) && (Current != TreeRoot))
833                 {
834                         std::deque<std::string> params;
835                         params.push_back(Current->GetName());
836                         params.push_back(":"+reason);
837                         DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
838                         if (Current->GetParent() == TreeRoot)
839                         {
840                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
841                         }
842                         else
843                         {
844                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
845                         }
846                         num_lost_servers = 0;
847                         num_lost_users = 0;
848                         CullList* Goners = new CullList();
849                         SquitServer(Current, Goners);
850                         Goners->Apply();
851                         Current->Tidy();
852                         Current->GetParent()->DelChild(Current);
853                         delete Current;
854                         delete Goners;
855                         WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
856                 }
857                 else
858                 {
859                         log(DEFAULT,"Squit from unknown server");
860                 }
861         }
862
863         /* FMODE command */
864         bool ForceMode(std::string source, std::deque<std::string> params)
865         {
866                 userrec* who = new userrec;
867                 who->fd = FD_MAGIC_NUMBER;
868                 if (params.size() < 2)
869                         return true;
870                 char* modelist[255];
871                 for (unsigned int q = 0; q < params.size(); q++)
872                 {
873                         modelist[q] = (char*)params[q].c_str();
874                 }
875                 Srv->SendMode(modelist,params.size(),who);
876                 DoOneToAllButSender(source,"FMODE",params,source);
877                 delete who;
878                 return true;
879         }
880
881         /* FTOPIC command */
882         bool ForceTopic(std::string source, std::deque<std::string> params)
883         {
884                 if (params.size() != 4)
885                         return true;
886                 time_t ts = atoi(params[1].c_str());
887                 std::string nsource = source;
888
889                 chanrec* c = Srv->FindChannel(params[0]);
890                 if (c)
891                 {
892                         if ((ts >= c->topicset) || (!*c->topic))
893                         {
894                                 std::string oldtopic = c->topic;
895                                 strlcpy(c->topic,params[3].c_str(),MAXTOPIC);
896                                 strlcpy(c->setby,params[2].c_str(),NICKMAX);
897                                 c->topicset = ts;
898                                 /* if the topic text is the same as the current topic,
899                                  * dont bother to send the TOPIC command out, just silently
900                                  * update the set time and set nick.
901                                  */
902                                 if (oldtopic != params[3])
903                                 {
904                                         userrec* user = Srv->FindNick(source);
905                                         if (!user)
906                                         {
907                                                 WriteChannelWithServ((char*)source.c_str(), c, "TOPIC %s :%s", c->name, c->topic);
908                                         }
909                                         else
910                                         {
911                                                 WriteChannel(c, user, "TOPIC %s :%s", c->name, c->topic);
912                                                 nsource = user->server;
913                                         }
914                                 }
915                         }
916                         
917                 }
918                 
919                 /* all done, send it on its way */
920                 params[3] = ":" + params[3];
921                 DoOneToAllButSender(source,"FTOPIC",params,nsource);
922
923                 return true;
924         }
925
926         /* FJOIN, similar to unreal SJOIN */
927         bool ForceJoin(std::string source, std::deque<std::string> params)
928         {
929                 if (params.size() < 3)
930                         return true;
931
932                 char first[MAXBUF];
933                 char modestring[MAXBUF];
934                 char* mode_users[127];
935                 mode_users[0] = first;
936                 mode_users[1] = modestring;
937                 strcpy(mode_users[1],"+");
938                 unsigned int modectr = 2;
939                 
940                 userrec* who = NULL;
941                 std::string channel = params[0];
942                 time_t TS = atoi(params[1].c_str());
943                 char* key = "";
944                 
945                 chanrec* chan = Srv->FindChannel(channel);
946                 if (chan)
947                 {
948                         key = chan->key;
949                 }
950                 strlcpy(mode_users[0],channel.c_str(),MAXBUF);
951
952                 /* default is a high value, which if we dont have this
953                  * channel will let the other side apply their modes.
954                  */
955                 time_t ourTS = time(NULL)+600;
956                 chanrec* us = Srv->FindChannel(channel);
957                 if (us)
958                 {
959                         ourTS = us->age;
960                 }
961
962                 log(DEBUG,"FJOIN detected, our TS=%lu, their TS=%lu",ourTS,TS);
963
964                 /* do this first, so our mode reversals are correctly received by other servers
965                  * if there is a TS collision.
966                  */
967                 DoOneToAllButSender(source,"FJOIN",params,source);
968                 
969                 for (unsigned int usernum = 2; usernum < params.size(); usernum++)
970                 {
971                         /* process one channel at a time, applying modes. */
972                         char* usr = (char*)params[usernum].c_str();
973                         /* Safety check just to make sure someones not sent us an FJOIN full of spaces
974                          * (is this even possible?) */
975                         if (usr && *usr)
976                         {
977                                 char permissions = *usr;
978                                 switch (permissions)
979                                 {
980                                         case '@':
981                                                 usr++;
982                                                 mode_users[modectr++] = usr;
983                                                 strlcat(modestring,"o",MAXBUF);
984                                         break;
985                                         case '%':
986                                                 usr++;
987                                                 mode_users[modectr++] = usr;
988                                                 strlcat(modestring,"h",MAXBUF);
989                                         break;
990                                         case '+':
991                                                 usr++;
992                                                 mode_users[modectr++] = usr;
993                                                 strlcat(modestring,"v",MAXBUF);
994                                         break;
995                                 }
996                                 who = Srv->FindNick(usr);
997                                 if (who)
998                                 {
999                                         Srv->JoinUserToChannel(who,channel,key);
1000                                         if (modectr >= (MAXMODES-1))
1001                                         {
1002                                                 /* theres a mode for this user. push them onto the mode queue, and flush it
1003                                                  * if there are more than MAXMODES to go.
1004                                                  */
1005                                                 if ((ourTS >= TS) || (Srv->IsUlined(who->server)))
1006                                                 {
1007                                                         /* We also always let u-lined clients win, no matter what the TS value */
1008                                                         log(DEBUG,"Our our channel newer than theirs, accepting their modes");
1009                                                         Srv->SendMode(mode_users,modectr,who);
1010                                                 }
1011                                                 else
1012                                                 {
1013                                                         log(DEBUG,"Their channel newer than ours, bouncing their modes");
1014                                                         /* bouncy bouncy! */
1015                                                         std::deque<std::string> params;
1016                                                         /* modes are now being UNSET... */
1017                                                         *mode_users[1] = '-';
1018                                                         for (unsigned int x = 0; x < modectr; x++)
1019                                                         {
1020                                                                 params.push_back(mode_users[x]);
1021                                                         }
1022                                                         // tell everyone to bounce the modes. bad modes, bad!
1023                                                         DoOneToMany(Srv->GetServerName(),"FMODE",params);
1024                                                 }
1025                                                 strcpy(mode_users[1],"+");
1026                                                 modectr = 2;
1027                                         }
1028                                 }
1029                         }
1030                 }
1031                 /* there werent enough modes built up to flush it during FJOIN,
1032                  * or, there are a number left over. flush them out.
1033                  */
1034                 if ((modectr > 2) && (who))
1035                 {
1036                         if (ourTS >= TS)
1037                         {
1038                                 log(DEBUG,"Our our channel newer than theirs, accepting their modes");
1039                                 Srv->SendMode(mode_users,modectr,who);
1040                         }
1041                         else
1042                         {
1043                                 log(DEBUG,"Their channel newer than ours, bouncing their modes");
1044                                 std::deque<std::string> params;
1045                                 *mode_users[1] = '-';
1046                                 for (unsigned int x = 0; x < modectr; x++)
1047                                 {
1048                                         params.push_back(mode_users[x]);
1049                                 }
1050                                 DoOneToMany(Srv->GetServerName(),"FMODE",params);
1051                         }
1052                 }
1053                 return true;
1054         }
1055
1056         /* NICK command */
1057         bool IntroduceClient(std::string source, std::deque<std::string> params)
1058         {
1059                 if (params.size() < 8)
1060                         return true;
1061                 if (params.size() > 8)
1062                 {
1063                         this->WriteLine(":"+Srv->GetServerName()+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+"?)");
1064                         return true;
1065                 }
1066                 // NICK age nick host dhost ident +modes ip :gecos
1067                 //       0   1    2    3      4     5    6   7
1068                 time_t age = atoi(params[0].c_str());
1069                 std::string modes = params[5];
1070                 while (*(modes.c_str()) == '+')
1071                 {
1072                         char* m = (char*)modes.c_str();
1073                         m++;
1074                         modes = m;
1075                 }
1076                 char* tempnick = (char*)params[1].c_str();
1077                 log(DEBUG,"Introduce client %s!%s@%s",tempnick,params[4].c_str(),params[2].c_str());
1078                 
1079                 user_hash::iterator iter;
1080                 iter = clientlist.find(tempnick);
1081                 if (iter != clientlist.end())
1082                 {
1083                         // nick collision
1084                         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);
1085                         this->WriteLine(":"+Srv->GetServerName()+" KILL "+tempnick+" :Nickname collision");
1086                         return true;
1087                 }
1088
1089                 clientlist[tempnick] = new userrec();
1090                 clientlist[tempnick]->fd = FD_MAGIC_NUMBER;
1091                 strlcpy(clientlist[tempnick]->nick, tempnick,NICKMAX);
1092                 strlcpy(clientlist[tempnick]->host, params[2].c_str(),160);
1093                 strlcpy(clientlist[tempnick]->dhost, params[3].c_str(),160);
1094                 clientlist[tempnick]->server = (char*)FindServerNamePtr(source.c_str());
1095                 strlcpy(clientlist[tempnick]->ident, params[4].c_str(),IDENTMAX);
1096                 strlcpy(clientlist[tempnick]->fullname, params[7].c_str(),MAXGECOS);
1097                 clientlist[tempnick]->registered = 7;
1098                 clientlist[tempnick]->signon = age;
1099                 strlcpy(clientlist[tempnick]->modes, modes.c_str(),53);
1100                 inet_aton(params[6].c_str(),&clientlist[tempnick]->ip4);
1101
1102                 ucrec a;
1103                 a.channel = NULL;
1104                 a.uc_modes = 0;
1105                 for (int i = 0; i < MAXCHANS; i++)
1106                         clientlist[tempnick]->chans.push_back(a);
1107
1108                 if (!this->bursting)
1109                 {
1110                         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));
1111                 }
1112                 params[7] = ":" + params[7];
1113                 DoOneToAllButSender(source,"NICK",params,source);
1114
1115                 // Increment the Source Servers User Count..
1116                 TreeServer* SourceServer = FindServer(source);
1117                 if (SourceServer) {
1118                         SourceServer->AddUserCount();
1119                 }
1120
1121                 return true;
1122         }
1123
1124         /* Send one or more FJOINs for a channel of users.
1125          * If the length of a single line is more than 480-NICKMAX
1126          * in length, it is split over multiple lines.
1127          */
1128         void SendFJoins(TreeServer* Current, chanrec* c)
1129         {
1130                 log(DEBUG,"Sending FJOINs to other server for %s",c->name);
1131                 char list[MAXBUF];
1132                 std::string individual_halfops = ":"+Srv->GetServerName()+" FMODE "+c->name;
1133                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
1134                 std::map<char*,char*> *ulist = c->GetUsers();
1135                 std::vector<userrec*> specific_halfop;
1136                 std::vector<userrec*> specific_voice;
1137                 for (std::map<char*,char*>::iterator i = ulist->begin(); i != ulist->end(); i++)
1138                 {
1139                         char* o = i->second;
1140                         userrec* otheruser = (userrec*)o;
1141                         strlcat(list," ",MAXBUF);
1142                         int x = cflags(otheruser,c);
1143                         if ((x & UCMODE_HOP) && (x & UCMODE_OP))
1144                         {
1145                                 specific_halfop.push_back(otheruser);
1146                         }
1147                         if (((x & UCMODE_HOP) || (x & UCMODE_OP)) && (x & UCMODE_VOICE))
1148                         {
1149                                 specific_voice.push_back(otheruser);
1150                         }
1151                         char* n = "";
1152                         if (x & UCMODE_OP)
1153                         {
1154                                 n = "@";
1155                         }
1156                         else if (x & UCMODE_HOP)
1157                         {
1158                                 n = "%";
1159                         }
1160                         else if (x & UCMODE_VOICE)
1161                         {
1162                                 n = "+";
1163                         }
1164                         strlcat(list,n,MAXBUF);
1165                         strlcat(list,otheruser->nick,MAXBUF);
1166                         if (strlen(list)>(480-NICKMAX))
1167                         {
1168                                 log(DEBUG,"FJOIN line wrapped");
1169                                 this->WriteLine(list);
1170                                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
1171                                 for (unsigned int y = 0; y < specific_voice.size(); y++)
1172                                 {
1173                                         this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +v "+specific_voice[y]->nick);
1174                                 }
1175                                 for (unsigned int y = 0; y < specific_halfop.size(); y++)
1176                                 {
1177                                         this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +h "+specific_halfop[y]->nick);
1178                                 }
1179                         }
1180                 }
1181                 if (list[strlen(list)-1] != ':')
1182                 {
1183                         log(DEBUG,"Final FJOIN line");
1184                         this->WriteLine(list);
1185                         for (unsigned int y = 0; y < specific_voice.size(); y++)
1186                         {
1187                                 this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +v "+specific_voice[y]->nick);
1188                         }
1189                         for (unsigned int y = 0; y < specific_halfop.size(); y++)
1190                         {
1191                                 this->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" +h "+specific_halfop[y]->nick);
1192                         }
1193                 }
1194         }
1195
1196         /* Send G, Q, Z and E lines */
1197         void SendXLines(TreeServer* Current)
1198         {
1199                 char data[MAXBUF];
1200                 const char* sn = Srv->GetServerName().c_str();
1201                 /* Yes, these arent too nice looking, but they get the job done */
1202                 for (std::vector<ZLine>::iterator i = zlines.begin(); i != zlines.end(); i++)
1203                 {
1204                         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);
1205                         this->WriteLine(data);
1206                 }
1207                 for (std::vector<QLine>::iterator i = qlines.begin(); i != qlines.end(); i++)
1208                 {
1209                         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);
1210                         this->WriteLine(data);
1211                 }
1212                 for (std::vector<GLine>::iterator i = glines.begin(); i != glines.end(); i++)
1213                 {
1214                         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);
1215                         this->WriteLine(data);
1216                 }
1217                 for (std::vector<ELine>::iterator i = elines.begin(); i != elines.end(); i++)
1218                 {
1219                         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);
1220                         this->WriteLine(data);
1221                 }
1222                 for (std::vector<ZLine>::iterator i = pzlines.begin(); i != pzlines.end(); i++)
1223                 {
1224                         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);
1225                         this->WriteLine(data);
1226                 }
1227                 for (std::vector<QLine>::iterator i = pqlines.begin(); i != pqlines.end(); i++)
1228                 {
1229                         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);
1230                         this->WriteLine(data);
1231                 }
1232                 for (std::vector<GLine>::iterator i = pglines.begin(); i != pglines.end(); i++)
1233                 {
1234                         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);
1235                         this->WriteLine(data);
1236                 }
1237                 for (std::vector<ELine>::iterator i = pelines.begin(); i != pelines.end(); i++)
1238                 {
1239                         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);
1240                         this->WriteLine(data);
1241                 }
1242         }
1243
1244         /* Send channel modes and topics */
1245         void SendChannelModes(TreeServer* Current)
1246         {
1247                 char data[MAXBUF];
1248                 std::deque<std::string> list;
1249                 const char* sn = Srv->GetServerName().c_str();
1250                 for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
1251                 {
1252                         SendFJoins(Current, c->second);
1253                         snprintf(data,MAXBUF,":%s FMODE %s +%s",sn,c->second->name,chanmodes(c->second,true));
1254                         this->WriteLine(data);
1255                         if (*c->second->topic)
1256                         {
1257                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
1258                                 this->WriteLine(data);
1259                         }
1260                         for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
1261                         {
1262                                 snprintf(data,MAXBUF,":%s FMODE %s +b %s",sn,c->second->name,b->data);
1263                                 this->WriteLine(data);
1264                         }
1265                         FOREACH_MOD(I_OnSyncChannel,OnSyncChannel(c->second,(Module*)TreeProtocolModule,(void*)this));
1266                         list.clear();
1267                         c->second->GetExtList(list);
1268                         for (unsigned int j = 0; j < list.size(); j++)
1269                         {
1270                                 FOREACH_MOD(I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)TreeProtocolModule,(void*)this,list[j]));
1271                         }
1272                 }
1273         }
1274
1275         /* send all users and their oper state/modes */
1276         void SendUsers(TreeServer* Current)
1277         {
1278                 char data[MAXBUF];
1279                 std::deque<std::string> list;
1280                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
1281                 {
1282                         if (u->second->registered == 7)
1283                         {
1284                                 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);
1285                                 this->WriteLine(data);
1286                                 if (*u->second->oper)
1287                                 {
1288                                         this->WriteLine(":"+std::string(u->second->nick)+" OPERTYPE "+std::string(u->second->oper));
1289                                 }
1290                                 if (*u->second->awaymsg)
1291                                 {
1292                                         this->WriteLine(":"+std::string(u->second->nick)+" AWAY :"+std::string(u->second->awaymsg));
1293                                 }
1294                                 FOREACH_MOD(I_OnSyncUser,OnSyncUser(u->second,(Module*)TreeProtocolModule,(void*)this));
1295                                 list.clear();
1296                                 u->second->GetExtList(list);
1297                                 for (unsigned int j = 0; j < list.size(); j++)
1298                                 {
1299                                         FOREACH_MOD(I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)TreeProtocolModule,(void*)this,list[j]));
1300                                 }
1301                         }
1302                 }
1303         }
1304
1305         /* This function is called when we want to send a netburst to a local
1306          * server. There is a set order we must do this, because for example
1307          * users require their servers to exist, and channels require their
1308          * users to exist. You get the idea.
1309          */
1310         void DoBurst(TreeServer* s)
1311         {
1312                 Srv->SendOpers("*** Bursting to \2"+s->GetName()+"\2.");
1313                 this->WriteLine("BURST");
1314                 /* send our version string */
1315                 this->WriteLine(":"+Srv->GetServerName()+" VERSION :"+Srv->GetVersion());
1316                 /* Send server tree */
1317                 this->SendServers(TreeRoot,s,1);
1318                 /* Send users and their oper status */
1319                 this->SendUsers(s);
1320                 /* Send everything else (channel modes, xlines etc) */
1321                 this->SendChannelModes(s);
1322                 this->SendXLines(s);
1323                 FOREACH_MOD(I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this));
1324                 this->WriteLine("ENDBURST");
1325                 Srv->SendOpers("*** Finished bursting to \2"+s->GetName()+"\2.");
1326         }
1327
1328         /* This function is called when we receive data from a remote
1329          * server. We buffer the data in a std::string (it doesnt stay
1330          * there for long), reading using InspSocket::Read() which can
1331          * read up to 16 kilobytes in one operation.
1332          *
1333          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
1334          * THE SOCKET OBJECT FOR US.
1335          */
1336         virtual bool OnDataReady()
1337         {
1338                 char* data = this->Read();
1339                 /* Check that the data read is a valid pointer and it has some content */
1340                 if (data && *data)
1341                 {
1342                         this->in_buffer.append(data);
1343                         /* While there is at least one new line in the buffer,
1344                          * do something useful (we hope!) with it.
1345                          */
1346                         while (in_buffer.find("\n") != std::string::npos)
1347                         {
1348                                 std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
1349                                 in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
1350                                 if (ret.find("\r") != std::string::npos)
1351                                         ret = in_buffer.substr(0,in_buffer.find("\r")-1);
1352                                 /* Process this one, abort if it
1353                                  * didnt return true.
1354                                  */
1355                                 if (this->ctx_in)
1356                                 {
1357                                         char out[1024];
1358                                         char result[1024];
1359                                         memset(result,0,1024);
1360                                         memset(out,0,1024);
1361                                         log(DEBUG,"Original string '%s'",ret.c_str());
1362                                         /* ERROR + CAPAB is still allowed unencryped */
1363                                         if ((ret.substr(0,7) != "ERROR :") && (ret.substr(0,6) != "CAPAB "))
1364                                         {
1365                                                 int nbytes = from64tobits(out, ret.c_str(), 1024);
1366                                                 if ((nbytes > 0) && (nbytes < 1024))
1367                                                 {
1368                                                         log(DEBUG,"m_spanningtree: decrypt %d bytes",nbytes);
1369                                                         ctx_in->Decrypt(out, result, nbytes, 1);
1370                                                         for (int t = 0; t < nbytes; t++)
1371                                                                 if (result[t] == '\7') result[t] = 0;
1372                                                         ret = result;
1373                                                 }
1374                                         }
1375                                 }
1376                                 if (!this->ProcessLine(ret))
1377                                 {
1378                                         return false;
1379                                 }
1380                         }
1381                 }
1382                 /* EAGAIN returns an empty but non-NULL string, so this
1383                  * evaluates to TRUE for EAGAIN but to FALSE for EOF.
1384                  */
1385                 return (data != NULL);
1386         }
1387
1388         int WriteLine(std::string line)
1389         {
1390                 log(DEBUG,"OUT: %s",line.c_str());
1391                 if (this->ctx_out)
1392                 {
1393                         log(DEBUG,"AES context");
1394                         char result[10240];
1395                         char result64[10240];
1396                         if (this->keylength)
1397                         {
1398                                 while (line.length() % this->keylength != 0)
1399                                 {
1400                                         // pad it to be a multiple of the key length
1401                                         line = line + "\7";
1402                                 }
1403                         }
1404                         unsigned int ll = line.length();
1405                         log(DEBUG,"Plaintext line with padding = %d chars",ll);
1406                         ctx_out->Encrypt(line.c_str(), result, ll, 1);
1407                         log(DEBUG,"Encrypted.");
1408                         to64frombits((unsigned char*)result64,(unsigned char*)result,ll);
1409                         line = result64;
1410                         log(DEBUG,"Encrypted: %s",line.c_str());
1411                         //int from64tobits(char *out, const char *in, int maxlen);
1412                 }
1413                 return this->Write(line + "\r\n");
1414         }
1415
1416         /* Handle ERROR command */
1417         bool Error(std::deque<std::string> params)
1418         {
1419                 if (params.size() < 1)
1420                         return false;
1421                 std::string Errmsg = params[0];
1422                 std::string SName = myhost;
1423                 if (InboundServerName != "")
1424                 {
1425                         SName = InboundServerName;
1426                 }
1427                 Srv->SendOpers("*** ERROR from "+SName+": "+Errmsg);
1428                 /* we will return false to cause the socket to close.
1429                  */
1430                 return false;
1431         }
1432
1433         /* Because the core won't let users or even SERVERS set +o,
1434          * we use the OPERTYPE command to do this.
1435          */
1436         bool OperType(std::string prefix, std::deque<std::string> &params)
1437         {
1438                 if (params.size() != 1)
1439                         return true;
1440                 std::string opertype = params[0];
1441                 userrec* u = Srv->FindNick(prefix);
1442                 if (u)
1443                 {
1444                         strlcpy(u->oper,opertype.c_str(),NICKMAX);
1445                         if (!strchr(u->modes,'o'))
1446                         {
1447                                 strcat(u->modes,"o");
1448                         }
1449                         DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
1450                 }
1451                 return true;
1452         }
1453
1454         /* Because Andy insists that services-compatible servers must
1455          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
1456          */
1457         bool ForceNick(std::string prefix, std::deque<std::string> &params)
1458         {
1459                 if (params.size() < 3)
1460                         return true;
1461                 userrec* u = Srv->FindNick(params[0]);
1462                 if (u)
1463                 {
1464                         DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
1465                         if (IS_LOCAL(u))
1466                         {
1467                                 std::deque<std::string> par;
1468                                 par.push_back(params[1]);
1469                                 DoOneToMany(u->nick,"NICK",par);
1470                                 Srv->ChangeUserNick(u,params[1]);
1471                                 u->age = atoi(params[2].c_str());
1472                         }
1473                 }
1474                 return true;
1475         }
1476
1477         bool ServiceJoin(std::string prefix, std::deque<std::string> &params)
1478         {
1479                 if (params.size() < 2)
1480                         return true;
1481                 userrec* u = Srv->FindNick(params[0]);
1482                 if (u)
1483                 {
1484                         Srv->JoinUserToChannel(u,params[1],"");
1485                         DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
1486                 }
1487                 return true;
1488         }
1489
1490         bool RemoteRehash(std::string prefix, std::deque<std::string> &params)
1491         {
1492                 if (params.size() < 1)
1493                         return false;
1494                 std::string servermask = params[0];
1495                 if (Srv->MatchText(Srv->GetServerName(),servermask))
1496                 {
1497                         Srv->SendOpers("*** Remote rehash initiated from server \002"+prefix+"\002.");
1498                         Srv->RehashServer();
1499                         ReadConfiguration(false);
1500                 }
1501                 DoOneToAllButSender(prefix,"REHASH",params,prefix);
1502                 return true;
1503         }
1504
1505         bool RemoteKill(std::string prefix, std::deque<std::string> &params)
1506         {
1507                 if (params.size() != 2)
1508                         return true;
1509                 std::string nick = params[0];
1510                 userrec* u = Srv->FindNick(prefix);
1511                 userrec* who = Srv->FindNick(nick);
1512                 if (who)
1513                 {
1514                         /* Prepend kill source, if we don't have one */
1515                         std::string sourceserv = prefix;
1516                         if (u)
1517                         {
1518                                 sourceserv = u->server;
1519                         }
1520                         if (*(params[1].c_str()) != '[')
1521                         {
1522                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
1523                         }
1524                         std::string reason = params[1];
1525                         params[1] = ":" + params[1];
1526                         DoOneToAllButSender(prefix,"KILL",params,sourceserv);
1527                         Srv->QuitUser(who,reason);
1528                 }
1529                 return true;
1530         }
1531
1532         bool LocalPong(std::string prefix, std::deque<std::string> &params)
1533         {
1534                 if (params.size() < 1)
1535                         return true;
1536                 if (params.size() == 1)
1537                 {
1538                         TreeServer* ServerSource = FindServer(prefix);
1539                         if (ServerSource)
1540                         {
1541                                 ServerSource->SetPingFlag();
1542                         }
1543                 }
1544                 else
1545                 {       
1546                         std::string forwardto = params[1];
1547                         if (forwardto == Srv->GetServerName())
1548                         {
1549                                 // this is a PONG for us
1550                                 // if the prefix is a user, check theyre local, and if they are,
1551                                 // dump the PONG reply back to their fd. If its a server, do nowt.
1552                                 // Services might want to send these s->s, but we dont need to yet.
1553                                 userrec* u = Srv->FindNick(prefix);
1554                                 if (u)
1555                                 {
1556                                         WriteServ(u->fd,"PONG %s %s",params[0].c_str(),params[1].c_str());
1557                                 }
1558                         }
1559                         else
1560                         {
1561                                 // not for us, pass it on :)
1562                                 DoOneToOne(prefix,"PONG",params,forwardto);
1563                         }
1564                 }
1565                 return true;
1566         }
1567         
1568         bool MetaData(std::string prefix, std::deque<std::string> &params)
1569         {
1570                 if (params.size() < 3)
1571                         return true;
1572                 TreeServer* ServerSource = FindServer(prefix);
1573                 if (ServerSource)
1574                 {
1575                         if (params[0] == "*")
1576                         {
1577                                 FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
1578                         }
1579                         else if (*(params[0].c_str()) == '#')
1580                         {
1581                                 chanrec* c = Srv->FindChannel(params[0]);
1582                                 if (c)
1583                                 {
1584                                         FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
1585                                 }
1586                         }
1587                         else if (*(params[0].c_str()) != '#')
1588                         {
1589                                 userrec* u = Srv->FindNick(params[0]);
1590                                 if (u)
1591                                 {
1592                                         FOREACH_MOD(I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
1593                                 }
1594                         }
1595                 }
1596                 params[2] = ":" + params[2];
1597                 DoOneToAllButSender(prefix,"METADATA",params,prefix);
1598                 return true;
1599         }
1600
1601         bool ServerVersion(std::string prefix, std::deque<std::string> &params)
1602         {
1603                 if (params.size() < 1)
1604                         return true;
1605                 TreeServer* ServerSource = FindServer(prefix);
1606                 if (ServerSource)
1607                 {
1608                         ServerSource->SetVersion(params[0]);
1609                 }
1610                 params[0] = ":" + params[0];
1611                 DoOneToAllButSender(prefix,"VERSION",params,prefix);
1612                 return true;
1613         }
1614
1615         bool ChangeHost(std::string prefix, std::deque<std::string> &params)
1616         {
1617                 if (params.size() < 1)
1618                         return true;
1619                 userrec* u = Srv->FindNick(prefix);
1620                 if (u)
1621                 {
1622                         Srv->ChangeHost(u,params[0]);
1623                         DoOneToAllButSender(prefix,"FHOST",params,u->server);
1624                 }
1625                 return true;
1626         }
1627
1628         bool AddLine(std::string prefix, std::deque<std::string> &params)
1629         {
1630                 if (params.size() < 6)
1631                         return true;
1632
1633                 bool propogate = false;
1634
1635                 switch (*(params[0].c_str()))
1636                 {
1637                         case 'Z':
1638                                 propogate = add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1639                                 zline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1640                         break;
1641                         case 'Q':
1642                                 propogate = add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1643                                 qline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1644                         break;
1645                         case 'E':
1646                                 propogate = add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1647                                 eline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1648                         break;
1649                         case 'G':
1650                                 propogate = add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1651                                 gline_set_creation_time((char*)params[1].c_str(), atoi(params[3].c_str()));
1652                         break;
1653                         case 'K':
1654                                 propogate = add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
1655                         break;
1656                         default:
1657                                 /* Just in case... */
1658                                 Srv->SendOpers("*** \2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
1659                                 propogate = false;
1660                         break;
1661                 }
1662                 /* Send it on its way */
1663                 if (propogate)
1664                 {
1665                         params[5] = ":" + params[5];
1666                         DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
1667                 }
1668                 if (!this->bursting)
1669                 {
1670                         apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
1671                 }
1672                 return true;
1673         }
1674
1675         bool ChangeName(std::string prefix, std::deque<std::string> &params)
1676         {
1677                 if (params.size() < 1)
1678                         return true;
1679                 userrec* u = Srv->FindNick(prefix);
1680                 if (u)
1681                 {
1682                         Srv->ChangeGECOS(u,params[0]);
1683                         params[0] = ":" + params[0];
1684                         DoOneToAllButSender(prefix,"FNAME",params,u->server);
1685                 }
1686                 return true;
1687         }
1688
1689         bool Whois(std::string prefix, std::deque<std::string> &params)
1690         {
1691                 if (params.size() < 1)
1692                         return true;
1693                 log(DEBUG,"In IDLE command");
1694                 userrec* u = Srv->FindNick(prefix);
1695                 if (u)
1696                 {
1697                         log(DEBUG,"USER EXISTS: %s",u->nick);
1698                         // an incoming request
1699                         if (params.size() == 1)
1700                         {
1701                                 userrec* x = Srv->FindNick(params[0]);
1702                                 if ((x) && (x->fd > -1))
1703                                 {
1704                                         userrec* x = Srv->FindNick(params[0]);
1705                                         log(DEBUG,"Got IDLE");
1706                                         char signon[MAXBUF];
1707                                         char idle[MAXBUF];
1708                                         log(DEBUG,"Sending back IDLE 3");
1709                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
1710                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-time(NULL)));
1711                                         std::deque<std::string> par;
1712                                         par.push_back(prefix);
1713                                         par.push_back(signon);
1714                                         par.push_back(idle);
1715                                         // ours, we're done, pass it BACK
1716                                         DoOneToOne(params[0],"IDLE",par,u->server);
1717                                 }
1718                                 else
1719                                 {
1720                                         // not ours pass it on
1721                                         DoOneToOne(prefix,"IDLE",params,x->server);
1722                                 }
1723                         }
1724                         else if (params.size() == 3)
1725                         {
1726                                 std::string who_did_the_whois = params[0];
1727                                 userrec* who_to_send_to = Srv->FindNick(who_did_the_whois);
1728                                 if ((who_to_send_to) && (who_to_send_to->fd > -1))
1729                                 {
1730                                         log(DEBUG,"Got final IDLE");
1731                                         // an incoming reply to a whois we sent out
1732                                         std::string nick_whoised = prefix;
1733                                         unsigned long signon = atoi(params[1].c_str());
1734                                         unsigned long idle = atoi(params[2].c_str());
1735                                         if ((who_to_send_to) && (who_to_send_to->fd > -1))
1736                                                 do_whois(who_to_send_to,u,signon,idle,(char*)nick_whoised.c_str());
1737                                 }
1738                                 else
1739                                 {
1740                                         // not ours, pass it on
1741                                         DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
1742                                 }
1743                         }
1744                 }
1745                 return true;
1746         }
1747
1748         bool Push(std::string prefix, std::deque<std::string> &params)
1749         {
1750                 if (params.size() < 2)
1751                         return true;
1752                 userrec* u = Srv->FindNick(params[0]);
1753                 if (IS_LOCAL(u))
1754                 {
1755                         // push the raw to the user
1756                         if (Srv->IsUlined(prefix))
1757                         {
1758                                 ::Write(u->fd,"%s",params[1].c_str());
1759                         }
1760                         else
1761                         {
1762                                 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());
1763                         }
1764                 }
1765                 else
1766                 {
1767                         // continue the raw onwards
1768                         params[1] = ":" + params[1];
1769                         DoOneToOne(prefix,"PUSH",params,u->server);
1770                 }
1771                 return true;
1772         }
1773
1774         bool Time(std::string prefix, std::deque<std::string> &params)
1775         {
1776                 // :source.server TIME remote.server sendernick
1777                 // :remote.server TIME source.server sendernick TS
1778                 if (params.size() == 2)
1779                 {
1780                         // someone querying our time?
1781                         if (Srv->GetServerName() == params[0])
1782                         {
1783                                 userrec* u = Srv->FindNick(params[1]);
1784                                 if (u)
1785                                 {
1786                                         char curtime[256];
1787                                         snprintf(curtime,256,"%lu",(unsigned long)time(NULL));
1788                                         params.push_back(curtime);
1789                                         params[0] = prefix;
1790                                         DoOneToOne(Srv->GetServerName(),"TIME",params,params[0]);
1791                                 }
1792                         }
1793                         else
1794                         {
1795                                 // not us, pass it on
1796                                 userrec* u = Srv->FindNick(params[1]);
1797                                 if (u)
1798                                         DoOneToOne(prefix,"TIME",params,params[0]);
1799                         }
1800                 }
1801                 else if (params.size() == 3)
1802                 {
1803                         // a response to a previous TIME
1804                         userrec* u = Srv->FindNick(params[1]);
1805                         if ((u) && (IS_LOCAL(u)))
1806                         {
1807                                 time_t rawtime = atol(params[2].c_str());
1808                                 struct tm * timeinfo;
1809                                 timeinfo = localtime(&rawtime);
1810                                 char tms[26];
1811                                 snprintf(tms,26,"%s",asctime(timeinfo));
1812                                 tms[24] = 0;
1813                                 WriteServ(u->fd,"391 %s %s :%s",u->nick,prefix.c_str(),tms);
1814                         }
1815                         else
1816                         {
1817                                 if (u)
1818                                         DoOneToOne(prefix,"TIME",params,u->server);
1819                         }
1820                 }
1821                 return true;
1822         }
1823         
1824         bool LocalPing(std::string prefix, std::deque<std::string> &params)
1825         {
1826                 if (params.size() < 1)
1827                         return true;
1828                 if (params.size() == 1)
1829                 {
1830                         std::string stufftobounce = params[0];
1831                         this->WriteLine(":"+Srv->GetServerName()+" PONG "+stufftobounce);
1832                         return true;
1833                 }
1834                 else
1835                 {
1836                         std::string forwardto = params[1];
1837                         if (forwardto == Srv->GetServerName())
1838                         {
1839                                 // this is a ping for us, send back PONG to the requesting server
1840                                 params[1] = params[0];
1841                                 params[0] = forwardto;
1842                                 DoOneToOne(forwardto,"PONG",params,params[1]);
1843                         }
1844                         else
1845                         {
1846                                 // not for us, pass it on :)
1847                                 DoOneToOne(prefix,"PING",params,forwardto);
1848                         }
1849                         return true;
1850                 }
1851         }
1852
1853         bool RemoteServer(std::string prefix, std::deque<std::string> &params)
1854         {
1855                 if (params.size() < 4)
1856                         return false;
1857                 std::string servername = params[0];
1858                 std::string password = params[1];
1859                 // hopcount is not used for a remote server, we calculate this ourselves
1860                 std::string description = params[3];
1861                 TreeServer* ParentOfThis = FindServer(prefix);
1862                 if (!ParentOfThis)
1863                 {
1864                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
1865                         return false;
1866                 }
1867                 TreeServer* CheckDupe = FindServer(servername);
1868                 if (CheckDupe)
1869                 {
1870                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1871                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
1872                         return false;
1873                 }
1874                 TreeServer* Node = new TreeServer(servername,description,ParentOfThis,NULL);
1875                 ParentOfThis->AddChild(Node);
1876                 params[3] = ":" + params[3];
1877                 DoOneToAllButSender(prefix,"SERVER",params,prefix);
1878                 Srv->SendOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
1879                 return true;
1880         }
1881
1882         bool Outbound_Reply_Server(std::deque<std::string> &params)
1883         {
1884                 if (params.size() < 4)
1885                         return false;
1886                 std::string servername = params[0];
1887                 std::string password = params[1];
1888                 int hops = atoi(params[2].c_str());
1889                 if (hops)
1890                 {
1891                         this->WriteLine("ERROR :Server too far away for authentication");
1892                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, server is too far away for authentication");
1893                         return false;
1894                 }
1895                 std::string description = params[3];
1896                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1897                 {
1898                         if ((x->Name == servername) && (x->RecvPass == password))
1899                         {
1900                                 TreeServer* CheckDupe = FindServer(servername);
1901                                 if (CheckDupe)
1902                                 {
1903                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1904                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
1905                                         return false;
1906                                 }
1907                                 // Begin the sync here. this kickstarts the
1908                                 // other side, waiting in WAIT_AUTH_2 state,
1909                                 // into starting their burst, as it shows
1910                                 // that we're happy.
1911                                 this->LinkState = CONNECTED;
1912                                 // we should add the details of this server now
1913                                 // to the servers tree, as a child of the root
1914                                 // node.
1915                                 TreeServer* Node = new TreeServer(servername,description,TreeRoot,this);
1916                                 TreeRoot->AddChild(Node);
1917                                 params[3] = ":" + params[3];
1918                                 DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,servername);
1919                                 this->bursting = true;
1920                                 this->DoBurst(Node);
1921                                 return true;
1922                         }
1923                 }
1924                 this->WriteLine("ERROR :Invalid credentials");
1925                 Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, invalid link credentials");
1926                 return false;
1927         }
1928
1929         bool Inbound_Server(std::deque<std::string> &params)
1930         {
1931                 if (params.size() < 4)
1932                         return false;
1933                 std::string servername = params[0];
1934                 std::string password = params[1];
1935                 int hops = atoi(params[2].c_str());
1936                 if (hops)
1937                 {
1938                         this->WriteLine("ERROR :Server too far away for authentication");
1939                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, server is too far away for authentication");
1940                         return false;
1941                 }
1942                 std::string description = params[3];
1943                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1944                 {
1945                         if ((x->Name == servername) && (x->RecvPass == password))
1946                         {
1947                                 TreeServer* CheckDupe = FindServer(servername);
1948                                 if (CheckDupe)
1949                                 {
1950                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1951                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
1952                                         return false;
1953                                 }
1954                                 /* If the config says this link is encrypted, but the remote side
1955                                  * hasnt bothered to send the AES command before SERVER, then we
1956                                  * boot them off as we MUST have this connection encrypted.
1957                                  */
1958                                 if ((x->EncryptionKey != "") && (!this->ctx_in))
1959                                 {
1960                                         this->WriteLine("ERROR :This link requires AES encryption to be enabled. Plaintext connection refused.");
1961                                         Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, remote server did not enable AES.");
1962                                         return false;
1963                                 }
1964                                 Srv->SendOpers("*** Verified incoming server connection from \002"+servername+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
1965                                 this->InboundServerName = servername;
1966                                 this->InboundDescription = description;
1967                                 // this is good. Send our details: Our server name and description and hopcount of 0,
1968                                 // along with the sendpass from this block.
1969                                 this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
1970                                 // move to the next state, we are now waiting for THEM.
1971                                 this->LinkState = WAIT_AUTH_2;
1972                                 return true;
1973                         }
1974                 }
1975                 this->WriteLine("ERROR :Invalid credentials");
1976                 Srv->SendOpers("*** Server connection from \2"+servername+"\2 denied, invalid link credentials");
1977                 return false;
1978         }
1979
1980         void Split(std::string line, bool stripcolon, std::deque<std::string> &n)
1981         {
1982                 if (!strchr(line.c_str(),' '))
1983                 {
1984                         n.push_back(line);
1985                         return;
1986                 }
1987                 std::stringstream s(line);
1988                 std::string param = "";
1989                 n.clear();
1990                 int item = 0;
1991                 while (!s.eof())
1992                 {
1993                         char c;
1994                         s.get(c);
1995                         if (c == ' ')
1996                         {
1997                                 n.push_back(param);
1998                                 param = "";
1999                                 item++;
2000                         }
2001                         else
2002                         {
2003                                 if (!s.eof())
2004                                 {
2005                                         param = param + c;
2006                                 }
2007                                 if ((param == ":") && (item > 0))
2008                                 {
2009                                         param = "";
2010                                         while (!s.eof())
2011                                         {
2012                                                 s.get(c);
2013                                                 if (!s.eof())
2014                                                 {
2015                                                         param = param + c;
2016                                                 }
2017                                         }
2018                                         n.push_back(param);
2019                                         param = "";
2020                                 }
2021                         }
2022                 }
2023                 if (param != "")
2024                 {
2025                         n.push_back(param);
2026                 }
2027                 return;
2028         }
2029
2030         bool ProcessLine(std::string line)
2031         {
2032                 char* l = (char*)line.c_str();
2033                 while ((strlen(l)) && (l[strlen(l)-1] == '\r') || (l[strlen(l)-1] == '\n'))
2034                         l[strlen(l)-1] = '\0';
2035                 line = l;
2036                 if (line == "")
2037                         return true;
2038                 Srv->Log(DEBUG,"IN: "+line);
2039                 
2040                 std::deque<std::string> params;
2041                 this->Split(line,true,params);
2042                 std::string command = "";
2043                 std::string prefix = "";
2044                 if (((params[0].c_str())[0] == ':') && (params.size() > 1))
2045                 {
2046                         prefix = params[0];
2047                         command = params[1];
2048                         char* pref = (char*)prefix.c_str();
2049                         prefix = ++pref;
2050                         params.pop_front();
2051                         params.pop_front();
2052                 }
2053                 else
2054                 {
2055                         prefix = "";
2056                         command = params[0];
2057                         params.pop_front();
2058                 }
2059
2060                 if ((!this->ctx_in) && (command == "AES"))
2061                 {
2062                         std::string sserv = params[0];
2063                         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2064                         {
2065                                 if ((x->EncryptionKey != "") && (x->Name == sserv))
2066                                 {
2067                                         this->InitAES(x->EncryptionKey,sserv);
2068                                 }
2069                         }
2070                         return true;
2071                 }
2072                 else if ((this->ctx_in) && (command == "AES"))
2073                 {
2074                         WriteOpers("*** \2AES\2: Encryption already enabled on this connection yet %s is trying to enable it twice!",params[0].c_str());
2075                 }
2076
2077                 switch (this->LinkState)
2078                 {
2079                         TreeServer* Node;
2080                         
2081                         case WAIT_AUTH_1:
2082                                 // Waiting for SERVER command from remote server. Server initiating
2083                                 // the connection sends the first SERVER command, listening server
2084                                 // replies with theirs if its happy, then if the initiator is happy,
2085                                 // it starts to send its net sync, which starts the merge, otherwise
2086                                 // it sends an ERROR.
2087                                 if (command == "PASS")
2088                                 {
2089                                         /* Silently ignored */
2090                                 }
2091                                 else if (command == "SERVER")
2092                                 {
2093                                         return this->Inbound_Server(params);
2094                                 }
2095                                 else if (command == "ERROR")
2096                                 {
2097                                         return this->Error(params);
2098                                 }
2099                                 else if (command == "USER")
2100                                 {
2101                                         this->WriteLine("ERROR :Client connections to this port are prohibited.");
2102                                         return false;
2103                                 }
2104                                 else if (command == "CAPAB")
2105                                 {
2106                                         return this->Capab(params);
2107                                 }
2108                                 else if ((command == "U") || (command == "S"))
2109                                 {
2110                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
2111                                         return false;
2112                                 }
2113                                 else
2114                                 {
2115                                         this->WriteLine("ERROR :Invalid command in negotiation phase.");
2116                                         return false;
2117                                 }
2118                         break;
2119                         case WAIT_AUTH_2:
2120                                 // Waiting for start of other side's netmerge to say they liked our
2121                                 // password.
2122                                 if (command == "SERVER")
2123                                 {
2124                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
2125                                         // silently ignore.
2126                                         return true;
2127                                 }
2128                                 else if ((command == "U") || (command == "S"))
2129                                 {
2130                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
2131                                         return false;
2132                                 }
2133                                 else if (command == "BURST")
2134                                 {
2135                                         this->LinkState = CONNECTED;
2136                                         Node = new TreeServer(InboundServerName,InboundDescription,TreeRoot,this);
2137                                         TreeRoot->AddChild(Node);
2138                                         params.clear();
2139                                         params.push_back(InboundServerName);
2140                                         params.push_back("*");
2141                                         params.push_back("1");
2142                                         params.push_back(":"+InboundDescription);
2143                                         DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,InboundServerName);
2144                                         this->bursting = true;
2145                                         this->DoBurst(Node);
2146                                 }
2147                                 else if (command == "ERROR")
2148                                 {
2149                                         return this->Error(params);
2150                                 }
2151                                 else if (command == "CAPAB")
2152                                 {
2153                                         return this->Capab(params);
2154                                 }
2155                                 
2156                         break;
2157                         case LISTENER:
2158                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
2159                                 return false;
2160                         break;
2161                         case CONNECTING:
2162                                 if (command == "SERVER")
2163                                 {
2164                                         // another server we connected to, which was in WAIT_AUTH_1 state,
2165                                         // has just sent us their credentials. If we get this far, theyre
2166                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
2167                                         // if we're happy with this, we should send our netburst which
2168                                         // kickstarts the merge.
2169                                         return this->Outbound_Reply_Server(params);
2170                                 }
2171                                 else if (command == "ERROR")
2172                                 {
2173                                         return this->Error(params);
2174                                 }
2175                         break;
2176                         case CONNECTED:
2177                                 // This is the 'authenticated' state, when all passwords
2178                                 // have been exchanged and anything past this point is taken
2179                                 // as gospel.
2180                                 
2181                                 if (prefix != "")
2182                                 {
2183                                         std::string direction = prefix;
2184                                         userrec* t = Srv->FindNick(prefix);
2185                                         if (t)
2186                                         {
2187                                                 direction = t->server;
2188                                         }
2189                                         TreeServer* route_back_again = BestRouteTo(direction);
2190                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
2191                                         {
2192                                                 if (route_back_again)
2193                                                         log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
2194                                                 return true;
2195                                         }
2196
2197                                         /* Fix by brain:
2198                                          * When there is activity on the socket, reset the ping counter so
2199                                          * that we're not wasting bandwidth pinging an active server.
2200                                          */                     
2201                                         route_back_again->SetNextPingTime(time(NULL) + 120);
2202                                         route_back_again->SetPingFlag();
2203                                 }
2204                                 
2205                                 if (command == "SVSMODE")
2206                                 {
2207                                         /* Services expects us to implement
2208                                          * SVSMODE. In inspircd its the same as
2209                                          * MODE anyway.
2210                                          */
2211                                         command = "MODE";
2212                                 }
2213                                 std::string target = "";
2214                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
2215                                  * working with std::string here.
2216                                  */
2217                                 if ((command == "NICK") && (params.size() > 1))
2218                                 {
2219                                         return this->IntroduceClient(prefix,params);
2220                                 }
2221                                 else if (command == "FJOIN")
2222                                 {
2223                                         return this->ForceJoin(prefix,params);
2224                                 }
2225                                 else if (command == "SERVER")
2226                                 {
2227                                         return this->RemoteServer(prefix,params);
2228                                 }
2229                                 else if (command == "ERROR")
2230                                 {
2231                                         return this->Error(params);
2232                                 }
2233                                 else if (command == "OPERTYPE")
2234                                 {
2235                                         return this->OperType(prefix,params);
2236                                 }
2237                                 else if (command == "FMODE")
2238                                 {
2239                                         return this->ForceMode(prefix,params);
2240                                 }
2241                                 else if (command == "KILL")
2242                                 {
2243                                         return this->RemoteKill(prefix,params);
2244                                 }
2245                                 else if (command == "FTOPIC")
2246                                 {
2247                                         return this->ForceTopic(prefix,params);
2248                                 }
2249                                 else if (command == "REHASH")
2250                                 {
2251                                         return this->RemoteRehash(prefix,params);
2252                                 }
2253                                 else if (command == "METADATA")
2254                                 {
2255                                         return this->MetaData(prefix,params);
2256                                 }
2257                                 else if (command == "PING")
2258                                 {
2259                                         if (prefix == "")
2260                                         {
2261                                                 prefix = this->GetName();
2262                                         }
2263                                         return this->LocalPing(prefix,params);
2264                                 }
2265                                 else if (command == "PONG")
2266                                 {
2267                                         if (prefix == "")
2268                                         {
2269                                                 prefix = this->GetName();
2270                                         }
2271                                         return this->LocalPong(prefix,params);
2272                                 }
2273                                 else if (command == "VERSION")
2274                                 {
2275                                         return this->ServerVersion(prefix,params);
2276                                 }
2277                                 else if (command == "FHOST")
2278                                 {
2279                                         return this->ChangeHost(prefix,params);
2280                                 }
2281                                 else if (command == "FNAME")
2282                                 {
2283                                         return this->ChangeName(prefix,params);
2284                                 }
2285                                 else if (command == "ADDLINE")
2286                                 {
2287                                         return this->AddLine(prefix,params);
2288                                 }
2289                                 else if (command == "SVSNICK")
2290                                 {
2291                                         if (prefix == "")
2292                                         {
2293                                                 prefix = this->GetName();
2294                                         }
2295                                         return this->ForceNick(prefix,params);
2296                                 }
2297                                 else if (command == "IDLE")
2298                                 {
2299                                         return this->Whois(prefix,params);
2300                                 }
2301                                 else if (command == "PUSH")
2302                                 {
2303                                         return this->Push(prefix,params);
2304                                 }
2305                                 else if (command == "TIME")
2306                                 {
2307                                         return this->Time(prefix,params);
2308                                 }
2309                                 else if (command == "SVSJOIN")
2310                                 {
2311                                         if (prefix == "")
2312                                         {
2313                                                 prefix = this->GetName();
2314                                         }
2315                                         return this->ServiceJoin(prefix,params);
2316                                 }
2317                                 else if (command == "SQUIT")
2318                                 {
2319                                         if (params.size() == 2)
2320                                         {
2321                                                 this->Squit(FindServer(params[0]),params[1]);
2322                                         }
2323                                         return true;
2324                                 }
2325                                 else if (command == "ENDBURST")
2326                                 {
2327                                         this->bursting = false;
2328                                         apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2329                                         return true;
2330                                 }
2331                                 else
2332                                 {
2333                                         // not a special inter-server command.
2334                                         // Emulate the actual user doing the command,
2335                                         // this saves us having a huge ugly parser.
2336                                         userrec* who = Srv->FindNick(prefix);
2337                                         std::string sourceserv = this->myhost;
2338                                         if (this->InboundServerName != "")
2339                                         {
2340                                                 sourceserv = this->InboundServerName;
2341                                         }
2342                                         if (who)
2343                                         {
2344                                                 if ((command == "NICK") && (params.size() > 0))
2345                                                 {
2346                                                         /* On nick messages, check that the nick doesnt
2347                                                          * already exist here. If it does, kill their copy,
2348                                                          * and our copy.
2349                                                          */
2350                                                         userrec* x = Srv->FindNick(params[0]);
2351                                                         if (x)
2352                                                         {
2353                                                                 std::deque<std::string> p;
2354                                                                 p.push_back(params[0]);
2355                                                                 p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
2356                                                                 DoOneToMany(Srv->GetServerName(),"KILL",p);
2357                                                                 p.clear();
2358                                                                 p.push_back(prefix);
2359                                                                 p.push_back("Nickname collision");
2360                                                                 DoOneToMany(Srv->GetServerName(),"KILL",p);
2361                                                                 Srv->QuitUser(x,"Nickname collision ("+prefix+" -> "+params[0]+")");
2362                                                                 userrec* y = Srv->FindNick(prefix);
2363                                                                 if (y)
2364                                                                 {
2365                                                                         Srv->QuitUser(y,"Nickname collision");
2366                                                                 }
2367                                                                 return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
2368                                                         }
2369                                                 }
2370                                                 // its a user
2371                                                 target = who->server;
2372                                                 char* strparams[127];
2373                                                 for (unsigned int q = 0; q < params.size(); q++)
2374                                                 {
2375                                                         strparams[q] = (char*)params[q].c_str();
2376                                                 }
2377                                                 Srv->CallCommandHandler(command, strparams, params.size(), who);
2378                                         }
2379                                         else
2380                                         {
2381                                                 // its not a user. Its either a server, or somethings screwed up.
2382                                                 if (IsServer(prefix))
2383                                                 {
2384                                                         target = Srv->GetServerName();
2385                                                 }
2386                                                 else
2387                                                 {
2388                                                         log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
2389                                                         return true;
2390                                                 }
2391                                         }
2392                                         return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
2393
2394                                 }
2395                                 return true;
2396                         break;
2397                 }
2398                 return true;
2399         }
2400
2401         virtual std::string GetName()
2402         {
2403                 std::string sourceserv = this->myhost;
2404                 if (this->InboundServerName != "")
2405                 {
2406                         sourceserv = this->InboundServerName;
2407                 }
2408                 return sourceserv;
2409         }
2410
2411         virtual void OnTimeout()
2412         {
2413                 if (this->LinkState == CONNECTING)
2414                 {
2415                         Srv->SendOpers("*** CONNECT: Connection to \002"+myhost+"\002 timed out.");
2416                 }
2417         }
2418
2419         virtual void OnClose()
2420         {
2421                 // Connection closed.
2422                 // If the connection is fully up (state CONNECTED)
2423                 // then propogate a netsplit to all peers.
2424                 std::string quitserver = this->myhost;
2425                 if (this->InboundServerName != "")
2426                 {
2427                         quitserver = this->InboundServerName;
2428                 }
2429                 TreeServer* s = FindServer(quitserver);
2430                 if (s)
2431                 {
2432                         Squit(s,"Remote host closed the connection");
2433                 }
2434                 WriteOpers("Server '\2%s\2' closed the connection.",quitserver.c_str());
2435         }
2436
2437         virtual int OnIncomingConnection(int newsock, char* ip)
2438         {
2439                 TreeSocket* s = new TreeSocket(newsock, ip);
2440                 Srv->AddSocket(s);
2441                 return true;
2442         }
2443 };
2444
2445 void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
2446 {
2447         for (unsigned int c = 0; c < list.size(); c++)
2448         {
2449                 if (list[c] == server)
2450                 {
2451                         return;
2452                 }
2453         }
2454         list.push_back(server);
2455 }
2456
2457 // returns a list of DIRECT servernames for a specific channel
2458 void GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list)
2459 {
2460         std::map<char*,char*> *ulist = c->GetUsers();
2461         for (std::map<char*,char*>::iterator i = ulist->begin(); i != ulist->end(); i++)
2462         {
2463                 char* o = i->second;
2464                 userrec* otheruser = (userrec*)o;
2465                 if (otheruser->fd < 0)
2466                 {
2467                         TreeServer* best = BestRouteTo(otheruser->server);
2468                         if (best)
2469                                 AddThisServer(best,list);
2470                 }
2471         }
2472         return;
2473 }
2474
2475 bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string prefix, std::string command, std::deque<std::string> &params)
2476 {
2477         TreeServer* omitroute = BestRouteTo(omit);
2478         if ((command == "NOTICE") || (command == "PRIVMSG"))
2479         {
2480                 if ((params.size() >= 2) && (*(params[0].c_str()) != '$'))
2481                 {
2482                         /* Prefixes */
2483                         if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
2484                         {
2485                                 params[0] = params[0].substr(1, params[0].length()-1);
2486                         }
2487                         if (*(params[0].c_str()) != '#')
2488                         {
2489                                 // special routing for private messages/notices
2490                                 userrec* d = Srv->FindNick(params[0]);
2491                                 if (d)
2492                                 {
2493                                         std::deque<std::string> par;
2494                                         par.push_back(params[0]);
2495                                         par.push_back(":"+params[1]);
2496                                         DoOneToOne(prefix,command,par,d->server);
2497                                         return true;
2498                                 }
2499                         }
2500                         else
2501                         {
2502                                 log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());
2503                                 chanrec* c = Srv->FindChannel(params[0]);
2504                                 if (c)
2505                                 {
2506                                         std::deque<TreeServer*> list;
2507                                         GetListOfServersForChannel(c,list);
2508                                         log(DEBUG,"Got a list of %d servers",list.size());
2509                                         unsigned int lsize = list.size();
2510                                         for (unsigned int i = 0; i < lsize; i++)
2511                                         {
2512                                                 TreeSocket* Sock = list[i]->GetSocket();
2513                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
2514                                                 {
2515                                                         log(DEBUG,"Writing privmsg to server %s",list[i]->GetName().c_str());
2516                                                         Sock->WriteLine(data);
2517                                                 }
2518                                         }
2519                                         return true;
2520                                 }
2521                         }
2522                 }
2523         }
2524         unsigned int items = TreeRoot->ChildCount();
2525         for (unsigned int x = 0; x < items; x++)
2526         {
2527                 TreeServer* Route = TreeRoot->GetChild(x);
2528                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2529                 {
2530                         TreeSocket* Sock = Route->GetSocket();
2531                         Sock->WriteLine(data);
2532                 }
2533         }
2534         return true;
2535 }
2536
2537 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit)
2538 {
2539         TreeServer* omitroute = BestRouteTo(omit);
2540         std::string FullLine = ":" + prefix + " " + command;
2541         unsigned int words = params.size();
2542         for (unsigned int x = 0; x < words; x++)
2543         {
2544                 FullLine = FullLine + " " + params[x];
2545         }
2546         unsigned int items = TreeRoot->ChildCount();
2547         for (unsigned int x = 0; x < items; x++)
2548         {
2549                 TreeServer* Route = TreeRoot->GetChild(x);
2550                 // Send the line IF:
2551                 // The route has a socket (its a direct connection)
2552                 // The route isnt the one to be omitted
2553                 // The route isnt the path to the one to be omitted
2554                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2555                 {
2556                         TreeSocket* Sock = Route->GetSocket();
2557                         Sock->WriteLine(FullLine);
2558                 }
2559         }
2560         return true;
2561 }
2562
2563 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params)
2564 {
2565         std::string FullLine = ":" + prefix + " " + command;
2566         unsigned int words = params.size();
2567         for (unsigned int x = 0; x < words; x++)
2568         {
2569                 FullLine = FullLine + " " + params[x];
2570         }
2571         unsigned int items = TreeRoot->ChildCount();
2572         for (unsigned int x = 0; x < items; x++)
2573         {
2574                 TreeServer* Route = TreeRoot->GetChild(x);
2575                 if (Route->GetSocket())
2576                 {
2577                         TreeSocket* Sock = Route->GetSocket();
2578                         Sock->WriteLine(FullLine);
2579                 }
2580         }
2581         return true;
2582 }
2583
2584 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target)
2585 {
2586         TreeServer* Route = BestRouteTo(target);
2587         if (Route)
2588         {
2589                 std::string FullLine = ":" + prefix + " " + command;
2590                 unsigned int words = params.size();
2591                 for (unsigned int x = 0; x < words; x++)
2592                 {
2593                         FullLine = FullLine + " " + params[x];
2594                 }
2595                 if (Route->GetSocket())
2596                 {
2597                         TreeSocket* Sock = Route->GetSocket();
2598                         Sock->WriteLine(FullLine);
2599                 }
2600                 return true;
2601         }
2602         else
2603         {
2604                 return true;
2605         }
2606 }
2607
2608 std::vector<TreeSocket*> Bindings;
2609
2610 void ReadConfiguration(bool rebind)
2611 {
2612         Conf = new ConfigReader;
2613         if (rebind)
2614         {
2615                 for (int j =0; j < Conf->Enumerate("bind"); j++)
2616                 {
2617                         std::string Type = Conf->ReadValue("bind","type",j);
2618                         std::string IP = Conf->ReadValue("bind","address",j);
2619                         long Port = Conf->ReadInteger("bind","port",j,true);
2620                         if (Type == "servers")
2621                         {
2622                                 if (IP == "*")
2623                                 {
2624                                         IP = "";
2625                                 }
2626                                 TreeSocket* listener = new TreeSocket(IP.c_str(),Port,true,10);
2627                                 if (listener->GetState() == I_LISTENING)
2628                                 {
2629                                         Srv->AddSocket(listener);
2630                                         Bindings.push_back(listener);
2631                                 }
2632                                 else
2633                                 {
2634                                         log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
2635                                         listener->Close();
2636                                         delete listener;
2637                                 }
2638                         }
2639                 }
2640         }
2641         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
2642         HideULines = Conf->ReadFlag("options","hideulines",0);
2643         LinkBlocks.clear();
2644         for (int j =0; j < Conf->Enumerate("link"); j++)
2645         {
2646                 Link L;
2647                 L.Name = Conf->ReadValue("link","name",j);
2648                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
2649                 L.Port = Conf->ReadInteger("link","port",j,true);
2650                 L.SendPass = Conf->ReadValue("link","sendpass",j);
2651                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
2652                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
2653                 L.EncryptionKey =  Conf->ReadValue("link","encryptionkey",j);
2654                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
2655                 L.NextConnectTime = time(NULL) + L.AutoConnect;
2656                 /* Bugfix by brain, do not allow people to enter bad configurations */
2657                 if ((L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
2658                 {
2659                         LinkBlocks.push_back(L);
2660                         log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
2661                 }
2662                 else
2663                 {
2664                         if (L.RecvPass == "")
2665                         {
2666                                 log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
2667                         }
2668                         else if (L.SendPass == "")
2669                         {
2670                                 log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
2671                         }
2672                         else if (L.Name == "")
2673                         {
2674                                 log(DEFAULT,"Invalid configuration, link tag without a name!");
2675                         }
2676                         else if (!L.Port)
2677                         {
2678                                 log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
2679                         }
2680                 }
2681         }
2682         delete Conf;
2683 }
2684
2685
2686 class ModuleSpanningTree : public Module
2687 {
2688         std::vector<TreeSocket*> Bindings;
2689         int line;
2690         int NumServers;
2691         unsigned int max_local;
2692         unsigned int max_global;
2693         cmd_rconnect* command_rconnect;
2694
2695  public:
2696
2697         ModuleSpanningTree(Server* Me)
2698                 : Module::Module(Me), max_local(0), max_global(0)
2699         {
2700                 Srv = Me;
2701                 Bindings.clear();
2702
2703                 // Create the root of the tree
2704                 TreeRoot = new TreeServer(Srv->GetServerName(),Srv->GetServerDescription());
2705
2706                 ReadConfiguration(true);
2707
2708                 command_rconnect = new cmd_rconnect(this);
2709                 Srv->AddCommand(command_rconnect);
2710         }
2711
2712         void ShowLinks(TreeServer* Current, userrec* user, int hops)
2713         {
2714                 std::string Parent = TreeRoot->GetName();
2715                 if (Current->GetParent())
2716                 {
2717                         Parent = Current->GetParent()->GetName();
2718                 }
2719                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
2720                 {
2721                         if ((HideULines) && (Srv->IsUlined(Current->GetName())))
2722                         {
2723                                 if (*user->oper)
2724                                 {
2725                                          ShowLinks(Current->GetChild(q),user,hops+1);
2726                                 }
2727                         }
2728                         else
2729                         {
2730                                 ShowLinks(Current->GetChild(q),user,hops+1);
2731                         }
2732                 }
2733                 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());
2734         }
2735
2736         int CountLocalServs()
2737         {
2738                 return TreeRoot->ChildCount();
2739         }
2740
2741         int CountServs()
2742         {
2743                 return serverlist.size();
2744         }
2745
2746         void HandleLinks(char** parameters, int pcnt, userrec* user)
2747         {
2748                 ShowLinks(TreeRoot,user,0);
2749                 WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick);
2750                 return;
2751         }
2752
2753         void HandleLusers(char** parameters, int pcnt, userrec* user)
2754         {
2755                 /* Only update these when someone wants to see them, more efficient */
2756                 if ((unsigned int)local_count() > max_local)
2757                         max_local = local_count();
2758                 if (clientlist.size() > max_global)
2759                         max_global = clientlist.size();
2760
2761                 WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,usercnt()-usercount_invisible(),usercount_invisible(),this->CountServs());
2762                 WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
2763                 WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
2764                 WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
2765                 WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
2766                 WriteServ(user->fd,"265 %s :Current Local Users: %d  Max: %d",user->nick,local_count(),max_local);
2767                 WriteServ(user->fd,"266 %s :Current Global Users: %d  Max: %d",user->nick,clientlist.size(),max_global);
2768                 return;
2769         }
2770
2771         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
2772
2773         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
2774         {
2775                 if (line < 128)
2776                 {
2777                         for (int t = 0; t < depth; t++)
2778                         {
2779                                 matrix[line][t] = ' ';
2780                         }
2781
2782                         // For Aligning, we need to work out exactly how deep this thing is, and produce
2783                         // a 'Spacer' String to compensate.
2784                         char spacer[40];
2785
2786                         memset(spacer,' ',40);
2787                         if ((40 - Current->GetName().length() - depth) > 1) {
2788                                 spacer[40 - Current->GetName().length() - depth] = '\0';
2789                         }
2790                         else
2791                         {
2792                                 spacer[5] = '\0';
2793                         }
2794
2795                         float percent;
2796                         char text[80];
2797                         if (clientlist.size() == 0) {
2798                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
2799                                 percent = 0;
2800                         }
2801                         else
2802                         {
2803                                 percent = ((float)Current->GetUserCount() / (float)clientlist.size()) * 100;
2804                         }
2805                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
2806                         totusers += Current->GetUserCount();
2807                         totservers++;
2808                         strlcpy(&matrix[line][depth],text,80);
2809                         line++;
2810                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
2811                         {
2812                                 if ((HideULines) && (Srv->IsUlined(Current->GetChild(q)->GetName())))
2813                                 {
2814                                         if (*user->oper)
2815                                         {
2816                                                 ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
2817                                         }
2818                                 }
2819                                 else
2820                                 {
2821                                         ShowMap(Current->GetChild(q),user,(FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
2822                                 }
2823                         }
2824                 }
2825         }
2826
2827         // Ok, prepare to be confused.
2828         // After much mulling over how to approach this, it struck me that
2829         // the 'usual' way of doing a /MAP isnt the best way. Instead of
2830         // keeping track of a ton of ascii characters, and line by line
2831         // under recursion working out where to place them using multiplications
2832         // and divisons, we instead render the map onto a backplane of characters
2833         // (a character matrix), then draw the branches as a series of "L" shapes
2834         // from the nodes. This is not only friendlier on CPU it uses less stack.
2835
2836         void HandleMap(char** parameters, int pcnt, userrec* user)
2837         {
2838                 // This array represents a virtual screen which we will
2839                 // "scratch" draw to, as the console device of an irc
2840                 // client does not provide for a proper terminal.
2841                 float totusers = 0;
2842                 float totservers = 0;
2843                 char matrix[128][80];
2844                 for (unsigned int t = 0; t < 128; t++)
2845                 {
2846                         matrix[t][0] = '\0';
2847                 }
2848                 line = 0;
2849                 // The only recursive bit is called here.
2850                 ShowMap(TreeRoot,user,0,matrix,totusers,totservers);
2851                 // Process each line one by one. The algorithm has a limit of
2852                 // 128 servers (which is far more than a spanning tree should have
2853                 // anyway, so we're ok). This limit can be raised simply by making
2854                 // the character matrix deeper, 128 rows taking 10k of memory.
2855                 for (int l = 1; l < line; l++)
2856                 {
2857                         // scan across the line looking for the start of the
2858                         // servername (the recursive part of the algorithm has placed
2859                         // the servers at indented positions depending on what they
2860                         // are related to)
2861                         int first_nonspace = 0;
2862                         while (matrix[l][first_nonspace] == ' ')
2863                         {
2864                                 first_nonspace++;
2865                         }
2866                         first_nonspace--;
2867                         // Draw the `- (corner) section: this may be overwritten by
2868                         // another L shape passing along the same vertical pane, becoming
2869                         // a |- (branch) section instead.
2870                         matrix[l][first_nonspace] = '-';
2871                         matrix[l][first_nonspace-1] = '`';
2872                         int l2 = l - 1;
2873                         // Draw upwards until we hit the parent server, causing possibly
2874                         // other corners (`-) to become branches (|-)
2875                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
2876                         {
2877                                 matrix[l2][first_nonspace-1] = '|';
2878                                 l2--;
2879                         }
2880                 }
2881                 // dump the whole lot to the user. This is the easy bit, honest.
2882                 for (int t = 0; t < line; t++)
2883                 {
2884                         WriteServ(user->fd,"006 %s :%s",user->nick,&matrix[t][0]);
2885                 }
2886                 float avg_users = totusers / totservers;
2887                 WriteServ(user->fd,"270 %s :%.0f server%s and %.0f user%s, average %5.2f%% users per server",user->nick,totservers,(totservers > 1 ? "s" : ""),totusers,(totusers > 1 ? "s" : ""),avg_users);
2888                 WriteServ(user->fd,"007 %s :End of /MAP",user->nick);
2889                 return;
2890         }
2891
2892         int HandleSquit(char** parameters, int pcnt, userrec* user)
2893         {
2894                 TreeServer* s = FindServerMask(parameters[0]);
2895                 if (s)
2896                 {
2897                         if (s == TreeRoot)
2898                         {
2899                                  WriteServ(user->fd,"NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
2900                                 return 1;
2901                         }
2902                         TreeSocket* sock = s->GetSocket();
2903                         if (sock)
2904                         {
2905                                 log(DEBUG,"Splitting server %s",s->GetName().c_str());
2906                                 WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
2907                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
2908                                 Srv->RemoveSocket(sock);
2909                         }
2910                         else
2911                         {
2912                                 WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
2913                         }
2914                 }
2915                 else
2916                 {
2917                          WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
2918                 }
2919                 return 1;
2920         }
2921
2922         int HandleTime(char** parameters, int pcnt, userrec* user)
2923         {
2924                 if ((user->fd > -1) && (pcnt))
2925                 {
2926                         TreeServer* found = FindServerMask(parameters[0]);
2927                         if (found)
2928                         {
2929                                 // we dont' override for local server
2930                                 if (found == TreeRoot)
2931                                         return 0;
2932                                 
2933                                 std::deque<std::string> params;
2934                                 params.push_back(found->GetName());
2935                                 params.push_back(user->nick);
2936                                 DoOneToOne(Srv->GetServerName(),"TIME",params,found->GetName());
2937                         }
2938                         else
2939                         {
2940                                 WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
2941                         }
2942                 }
2943                 return 1;
2944         }
2945
2946         int HandleRemoteWhois(char** parameters, int pcnt, userrec* user)
2947         {
2948                 if ((user->fd > -1) && (pcnt > 1))
2949                 {
2950                         userrec* remote = Srv->FindNick(parameters[1]);
2951                         if ((remote) && (remote->fd < 0))
2952                         {
2953                                 std::deque<std::string> params;
2954                                 params.push_back(parameters[1]);
2955                                 DoOneToOne(user->nick,"IDLE",params,remote->server);
2956                                 return 1;
2957                         }
2958                         else if (!remote)
2959                         {
2960                                 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]);
2961                                 WriteServ(user->fd,"318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
2962                                 return 1;
2963                         }
2964                 }
2965                 return 0;
2966         }
2967
2968         void DoPingChecks(time_t curtime)
2969         {
2970                 for (unsigned int j = 0; j < TreeRoot->ChildCount(); j++)
2971                 {
2972                         TreeServer* serv = TreeRoot->GetChild(j);
2973                         TreeSocket* sock = serv->GetSocket();
2974                         if (sock)
2975                         {
2976                                 if (curtime >= serv->NextPingTime())
2977                                 {               
2978                                         if (serv->AnsweredLastPing())
2979                                         {               
2980                                                 sock->WriteLine(":"+Srv->GetServerName()+" PING "+serv->GetName());
2981                                                 serv->SetNextPingTime(curtime + 120);
2982                                         }                       
2983                                         else            
2984                                         {       
2985                                                 // they didnt answer, boot them
2986                                                 WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
2987                                                 sock->Squit(serv,"Ping timeout");
2988                                                 Srv->RemoveSocket(sock);
2989                                                 return;
2990                                         }
2991                                 }
2992
2993                         }
2994                 }
2995         }
2996
2997         void AutoConnectServers(time_t curtime)
2998         {
2999                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3000                 {
3001                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
3002                         {
3003                                 log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
3004                                 x->NextConnectTime = curtime + x->AutoConnect;
3005                                 TreeServer* CheckDupe = FindServer(x->Name);
3006                                 if (!CheckDupe)
3007                                 {
3008                                         // an autoconnected server is not connected. Check if its time to connect it
3009                                         WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
3010                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
3011                                         if (newsocket->GetState() != I_ERROR)
3012                                         {
3013                                                 Srv->AddSocket(newsocket);
3014                                         }
3015                                         else
3016                                         {
3017                                                 WriteOpers("*** AUTOCONNECT: Error autoconnecting \002%s\002.",x->Name.c_str());
3018                                                 delete newsocket;
3019                                         }
3020                                 }
3021                         }
3022                 }
3023         }
3024
3025         int HandleVersion(char** parameters, int pcnt, userrec* user)
3026         {
3027                 // we've already checked if pcnt > 0, so this is safe
3028                 TreeServer* found = FindServerMask(parameters[0]);
3029                 if (found)
3030                 {
3031                         std::string Version = found->GetVersion();
3032                         WriteServ(user->fd,"351 %s :%s",user->nick,Version.c_str());
3033                         if (found == TreeRoot)
3034                         {
3035                                 std::stringstream out(Config->data005);
3036                                 std::string token = "";
3037                                 std::string line5 = "";
3038                                 int token_counter = 0;
3039                                 while (!out.eof())
3040                                 {
3041                                         out >> token;
3042                                         line5 = line5 + token + " ";   
3043                                         token_counter++;
3044                                         if ((token_counter >= 13) || (out.eof() == true))
3045                                         {
3046                                                 WriteServ(user->fd,"005 %s %s:are supported by this server",user->nick,line5.c_str());
3047                                                 line5 = "";
3048                                                 token_counter = 0;
3049                                         }
3050                                 }
3051                         }
3052                 }
3053                 else
3054                 {
3055                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
3056                 }
3057                 return 1;
3058         }
3059         
3060         int HandleConnect(char** parameters, int pcnt, userrec* user)
3061         {
3062                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
3063                 {
3064                         if (Srv->MatchText(x->Name.c_str(),parameters[0]))
3065                         {
3066                                 TreeServer* CheckDupe = FindServer(x->Name);
3067                                 if (!CheckDupe)
3068                                 {
3069                                         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);
3070                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
3071                                         if (newsocket->GetState() != I_ERROR)
3072                                         {
3073                                                 Srv->AddSocket(newsocket);
3074                                         }
3075                                         else
3076                                         {
3077                                                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: Error connecting \002%s\002.",user->nick,x->Name.c_str());
3078                                                 delete newsocket;
3079                                         }
3080                                         return 1;
3081                                 }
3082                                 else
3083                                 {
3084                                         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());
3085                                         return 1;
3086                                 }
3087                         }
3088                 }
3089                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
3090                 return 1;
3091         }
3092
3093         virtual int OnStats(char statschar, userrec* user)
3094         {
3095                 if (statschar == 'c')
3096                 {
3097                         for (unsigned int i = 0; i < LinkBlocks.size(); i++)
3098                         {
3099                                 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');
3100                                 WriteServ(user->fd,"244 %s H * * %s",user->nick,LinkBlocks[i].Name.c_str());
3101                         }
3102                         WriteServ(user->fd,"219 %s %c :End of /STATS report",user->nick,statschar);
3103                         WriteOpers("*** Notice: Stats '%c' requested by %s (%s@%s)",statschar,user->nick,user->ident,user->host);
3104                         return 1;
3105                 }
3106                 return 0;
3107         }
3108
3109         virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated)
3110         {
3111                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
3112                 if (!validated)
3113                         return 0;
3114
3115                 if (command == "CONNECT")
3116                 {
3117                         return this->HandleConnect(parameters,pcnt,user);
3118                 }
3119                 else if (command == "SQUIT")
3120                 {
3121                         return this->HandleSquit(parameters,pcnt,user);
3122                 }
3123                 else if (command == "MAP")
3124                 {
3125                         this->HandleMap(parameters,pcnt,user);
3126                         return 1;
3127                 }
3128                 else if ((command == "TIME") && (pcnt > 0))
3129                 {
3130                         return this->HandleTime(parameters,pcnt,user);
3131                 }
3132                 else if (command == "LUSERS")
3133                 {
3134                         this->HandleLusers(parameters,pcnt,user);
3135                         return 1;
3136                 }
3137                 else if (command == "LINKS")
3138                 {
3139                         this->HandleLinks(parameters,pcnt,user);
3140                         return 1;
3141                 }
3142                 else if (command == "WHOIS")
3143                 {
3144                         if (pcnt > 1)
3145                         {
3146                                 // remote whois
3147                                 return this->HandleRemoteWhois(parameters,pcnt,user);
3148                         }
3149                 }
3150                 else if ((command == "VERSION") && (pcnt > 0))
3151                 {
3152                         this->HandleVersion(parameters,pcnt,user);
3153                         return 1;
3154                 }
3155                 else if (Srv->IsValidModuleCommand(command, pcnt, user))
3156                 {
3157                         // this bit of code cleverly routes all module commands
3158                         // to all remote severs *automatically* so that modules
3159                         // can just handle commands locally, without having
3160                         // to have any special provision in place for remote
3161                         // commands and linking protocols.
3162                         std::deque<std::string> params;
3163                         params.clear();
3164                         for (int j = 0; j < pcnt; j++)
3165                         {
3166                                 if (strchr(parameters[j],' '))
3167                                 {
3168                                         params.push_back(":" + std::string(parameters[j]));
3169                                 }
3170                                 else
3171                                 {
3172                                         params.push_back(std::string(parameters[j]));
3173                                 }
3174                         }
3175                         log(DEBUG,"Globally route '%s'",command.c_str());
3176                         DoOneToMany(user->nick,command,params);
3177                 }
3178                 return 0;
3179         }
3180
3181         virtual void OnGetServerDescription(std::string servername,std::string &description)
3182         {
3183                 TreeServer* s = FindServer(servername);
3184                 if (s)
3185                 {
3186                         description = s->GetDesc();
3187                 }
3188         }
3189
3190         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
3191         {
3192                 if (source->fd > -1)
3193                 {
3194                         std::deque<std::string> params;
3195                         params.push_back(dest->nick);
3196                         params.push_back(channel->name);
3197                         DoOneToMany(source->nick,"INVITE",params);
3198                 }
3199         }
3200
3201         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic)
3202         {
3203                 std::deque<std::string> params;
3204                 params.push_back(chan->name);
3205                 params.push_back(":"+topic);
3206                 DoOneToMany(user->nick,"TOPIC",params);
3207         }
3208
3209         virtual void OnWallops(userrec* user, std::string text)
3210         {
3211                 if (user->fd > -1)
3212                 {
3213                         std::deque<std::string> params;
3214                         params.push_back(":"+text);
3215                         DoOneToMany(user->nick,"WALLOPS",params);
3216                 }
3217         }
3218
3219         virtual void OnUserNotice(userrec* user, void* dest, int target_type, std::string text, char status)
3220         {
3221                 if (target_type == TYPE_USER)
3222                 {
3223                         userrec* d = (userrec*)dest;
3224                         if ((d->fd < 0) && (user->fd > -1))
3225                         {
3226                                 std::deque<std::string> params;
3227                                 params.clear();
3228                                 params.push_back(d->nick);
3229                                 params.push_back(":"+text);
3230                                 DoOneToOne(user->nick,"NOTICE",params,d->server);
3231                         }
3232                 }
3233                 else
3234                 {
3235                         if (user->fd > -1)
3236                         {
3237                                 chanrec *c = (chanrec*)dest;
3238                                 std::string cname = c->name;
3239                                 if (status)
3240                                         cname = status + cname;
3241                                 std::deque<TreeServer*> list;
3242                                 GetListOfServersForChannel(c,list);
3243                                 unsigned int ucount = list.size();
3244                                 for (unsigned int i = 0; i < ucount; i++)
3245                                 {
3246                                         TreeSocket* Sock = list[i]->GetSocket();
3247                                         if (Sock)
3248                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
3249                                 }
3250                         }
3251                 }
3252         }
3253
3254         virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text, char status)
3255         {
3256                 if (target_type == TYPE_USER)
3257                 {
3258                         // route private messages which are targetted at clients only to the server
3259                         // which needs to receive them
3260                         userrec* d = (userrec*)dest;
3261                         if ((d->fd < 0) && (user->fd > -1))
3262                         {
3263                                 std::deque<std::string> params;
3264                                 params.clear();
3265                                 params.push_back(d->nick);
3266                                 params.push_back(":"+text);
3267                                 DoOneToOne(user->nick,"PRIVMSG",params,d->server);
3268                         }
3269                 }
3270                 else
3271                 {
3272                         if (user->fd > -1)
3273                         {
3274                                 chanrec *c = (chanrec*)dest;
3275                                 std::string cname = c->name;
3276                                 if (status)
3277                                         cname = status + cname;
3278                                 std::deque<TreeServer*> list;
3279                                 GetListOfServersForChannel(c,list);
3280                                 unsigned int ucount = list.size();
3281                                 for (unsigned int i = 0; i < ucount; i++)
3282                                 {
3283                                         TreeSocket* Sock = list[i]->GetSocket();
3284                                         if (Sock)
3285                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
3286                                 }
3287                         }
3288                 }
3289         }
3290
3291         virtual void OnBackgroundTimer(time_t curtime)
3292         {
3293                 AutoConnectServers(curtime);
3294                 DoPingChecks(curtime);
3295         }
3296
3297         virtual void OnUserJoin(userrec* user, chanrec* channel)
3298         {
3299                 // Only do this for local users
3300                 if (user->fd > -1)
3301                 {
3302                         std::deque<std::string> params;
3303                         params.clear();
3304                         params.push_back(channel->name);
3305                         if (*channel->key)
3306                         {
3307                                 // if the channel has a key, force the join by emulating the key.
3308                                 params.push_back(channel->key);
3309                         }
3310                         if (channel->GetUserCounter() > 1)
3311                         {
3312                                 // not the first in the channel
3313                                 DoOneToMany(user->nick,"JOIN",params);
3314                         }
3315                         else
3316                         {
3317                                 // first in the channel, set up their permissions
3318                                 // and the channel TS with FJOIN.
3319                                 char ts[24];
3320                                 snprintf(ts,24,"%lu",(unsigned long)channel->age);
3321                                 params.clear();
3322                                 params.push_back(channel->name);
3323                                 params.push_back(ts);
3324                                 params.push_back("@"+std::string(user->nick));
3325                                 DoOneToMany(Srv->GetServerName(),"FJOIN",params);
3326                         }
3327                 }
3328         }
3329
3330         virtual void OnChangeHost(userrec* user, std::string newhost)
3331         {
3332                 // only occurs for local clients
3333                 if (user->registered != 7)
3334                         return;
3335                 std::deque<std::string> params;
3336                 params.push_back(newhost);
3337                 DoOneToMany(user->nick,"FHOST",params);
3338         }
3339
3340         virtual void OnChangeName(userrec* user, std::string gecos)
3341         {
3342                 // only occurs for local clients
3343                 if (user->registered != 7)
3344                         return;
3345                 std::deque<std::string> params;
3346                 params.push_back(gecos);
3347                 DoOneToMany(user->nick,"FNAME",params);
3348         }
3349
3350         virtual void OnUserPart(userrec* user, chanrec* channel, std::string partmessage)
3351         {
3352                 if (user->fd > -1)
3353                 {
3354                         std::deque<std::string> params;
3355                         params.push_back(channel->name);
3356                         if (partmessage != "")
3357                                 params.push_back(":"+partmessage);
3358                         DoOneToMany(user->nick,"PART",params);
3359                 }
3360         }
3361
3362         virtual void OnUserConnect(userrec* user)
3363         {
3364                 char agestr[MAXBUF];
3365                 if (user->fd > -1)
3366                 {
3367                         std::deque<std::string> params;
3368                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
3369                         params.push_back(agestr);
3370                         params.push_back(user->nick);
3371                         params.push_back(user->host);
3372                         params.push_back(user->dhost);
3373                         params.push_back(user->ident);
3374                         params.push_back("+"+std::string(user->modes));
3375                         params.push_back((char*)inet_ntoa(user->ip4));
3376                         params.push_back(":"+std::string(user->fullname));
3377                         DoOneToMany(Srv->GetServerName(),"NICK",params);
3378
3379                         // User is Local, change needs to be reflected!
3380                         TreeServer* SourceServer = FindServer(user->server);
3381                         if (SourceServer) {
3382                                 SourceServer->AddUserCount();
3383                         }
3384
3385                 }
3386         }
3387
3388         virtual void OnUserQuit(userrec* user, std::string reason)
3389         {
3390                 if ((user->fd > -1) && (user->registered == 7))
3391                 {
3392                         std::deque<std::string> params;
3393                         params.push_back(":"+reason);
3394                         DoOneToMany(user->nick,"QUIT",params);
3395                 }
3396                 // Regardless, We need to modify the user Counts..
3397                 TreeServer* SourceServer = FindServer(user->server);
3398                 if (SourceServer) {
3399                         SourceServer->DelUserCount();
3400                 }
3401
3402         }
3403
3404         virtual void OnUserPostNick(userrec* user, std::string oldnick)
3405         {
3406                 if (user->fd > -1)
3407                 {
3408                         std::deque<std::string> params;
3409                         params.push_back(user->nick);
3410                         DoOneToMany(oldnick,"NICK",params);
3411                 }
3412         }
3413
3414         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
3415         {
3416                 if ((source) && (source->fd > -1))
3417                 {
3418                         std::deque<std::string> params;
3419                         params.push_back(chan->name);
3420                         params.push_back(user->nick);
3421                         params.push_back(":"+reason);
3422                         DoOneToMany(source->nick,"KICK",params);
3423                 }
3424         }
3425
3426         virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
3427         {
3428                 std::deque<std::string> params;
3429                 params.push_back(dest->nick);
3430                 params.push_back(":"+reason);
3431                 DoOneToMany(source->nick,"KILL",params);
3432         }
3433
3434         virtual void OnRehash(std::string parameter)
3435         {
3436                 if (parameter != "")
3437                 {
3438                         std::deque<std::string> params;
3439                         params.push_back(parameter);
3440                         DoOneToMany(Srv->GetServerName(),"REHASH",params);
3441                         // check for self
3442                         if (Srv->MatchText(Srv->GetServerName(),parameter))
3443                         {
3444                                 Srv->SendOpers("*** Remote rehash initiated from server \002"+Srv->GetServerName()+"\002.");
3445                                 Srv->RehashServer();
3446                         }
3447                 }
3448                 ReadConfiguration(false);
3449         }
3450
3451         // note: the protocol does not allow direct umode +o except
3452         // via NICK with 8 params. sending OPERTYPE infers +o modechange
3453         // locally.
3454         virtual void OnOper(userrec* user, std::string opertype)
3455         {
3456                 if (user->fd > -1)
3457                 {
3458                         std::deque<std::string> params;
3459                         params.push_back(opertype);
3460                         DoOneToMany(user->nick,"OPERTYPE",params);
3461                 }
3462         }
3463
3464         void OnLine(userrec* source, std::string host, bool adding, char linetype, long duration, std::string reason)
3465         {
3466                 if (source->fd > -1)
3467                 {
3468                         char type[8];
3469                         snprintf(type,8,"%cLINE",linetype);
3470                         std::string stype = type;
3471                         if (adding)
3472                         {
3473                                 char sduration[MAXBUF];
3474                                 snprintf(sduration,MAXBUF,"%ld",duration);
3475                                 std::deque<std::string> params;
3476                                 params.push_back(host);
3477                                 params.push_back(sduration);
3478                                 params.push_back(":"+reason);
3479                                 DoOneToMany(source->nick,stype,params);
3480                         }
3481                         else
3482                         {
3483                                 std::deque<std::string> params;
3484                                 params.push_back(host);
3485                                 DoOneToMany(source->nick,stype,params);
3486                         }
3487                 }
3488         }
3489
3490         virtual void OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask)
3491         {
3492                 OnLine(source,hostmask,true,'G',duration,reason);
3493         }
3494         
3495         virtual void OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask)
3496         {
3497                 OnLine(source,ipmask,true,'Z',duration,reason);
3498         }
3499
3500         virtual void OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask)
3501         {
3502                 OnLine(source,nickmask,true,'Q',duration,reason);
3503         }
3504
3505         virtual void OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask)
3506         {
3507                 OnLine(source,hostmask,true,'E',duration,reason);
3508         }
3509
3510         virtual void OnDelGLine(userrec* source, std::string hostmask)
3511         {
3512                 OnLine(source,hostmask,false,'G',0,"");
3513         }
3514
3515         virtual void OnDelZLine(userrec* source, std::string ipmask)
3516         {
3517                 OnLine(source,ipmask,false,'Z',0,"");
3518         }
3519
3520         virtual void OnDelQLine(userrec* source, std::string nickmask)
3521         {
3522                 OnLine(source,nickmask,false,'Q',0,"");
3523         }
3524
3525         virtual void OnDelELine(userrec* source, std::string hostmask)
3526         {
3527                 OnLine(source,hostmask,false,'E',0,"");
3528         }
3529
3530         virtual void OnMode(userrec* user, void* dest, int target_type, std::string text)
3531         {
3532                 if ((user->fd > -1) && (user->registered == 7))
3533                 {
3534                         if (target_type == TYPE_USER)
3535                         {
3536                                 userrec* u = (userrec*)dest;
3537                                 std::deque<std::string> params;
3538                                 params.push_back(u->nick);
3539                                 params.push_back(text);
3540                                 DoOneToMany(user->nick,"MODE",params);
3541                         }
3542                         else
3543                         {
3544                                 chanrec* c = (chanrec*)dest;
3545                                 std::deque<std::string> params;
3546                                 params.push_back(c->name);
3547                                 params.push_back(text);
3548                                 DoOneToMany(user->nick,"MODE",params);
3549                         }
3550                 }
3551         }
3552
3553         virtual void OnSetAway(userrec* user)
3554         {
3555                 if (IS_LOCAL(user))
3556                 {
3557                         std::deque<std::string> params;
3558                         params.push_back(":"+std::string(user->awaymsg));
3559                         DoOneToMany(user->nick,"AWAY",params);
3560                 }
3561         }
3562
3563         virtual void OnCancelAway(userrec* user)
3564         {
3565                 if (IS_LOCAL(user))
3566                 {
3567                         std::deque<std::string> params;
3568                         params.clear();
3569                         DoOneToMany(user->nick,"AWAY",params);
3570                 }
3571         }
3572
3573         virtual void ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline)
3574         {
3575                 TreeSocket* s = (TreeSocket*)opaque;
3576                 if (target)
3577                 {
3578                         if (target_type == TYPE_USER)
3579                         {
3580                                 userrec* u = (userrec*)target;
3581                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+u->nick+" "+modeline);
3582                         }
3583                         else
3584                         {
3585                                 chanrec* c = (chanrec*)target;
3586                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" "+modeline);
3587                         }
3588                 }
3589         }
3590
3591         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata)
3592         {
3593                 TreeSocket* s = (TreeSocket*)opaque;
3594                 if (target)
3595                 {
3596                         if (target_type == TYPE_USER)
3597                         {
3598                                 userrec* u = (userrec*)target;
3599                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+u->nick+" "+extname+" :"+extdata);
3600                         }
3601                         else if (target_type == TYPE_OTHER)
3602                         {
3603                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA * "+extname+" :"+extdata);
3604                         }
3605                         else if (target_type == TYPE_CHANNEL)
3606                         {
3607                                 chanrec* c = (chanrec*)target;
3608                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+c->name+" "+extname+" :"+extdata);
3609                         }
3610                 }
3611         }
3612
3613         virtual void OnEvent(Event* event)
3614         {
3615                 if (event->GetEventID() == "send_metadata")
3616                 {
3617                         std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
3618                         if (params->size() < 3)
3619                                 return;
3620                         (*params)[2] = ":" + (*params)[2];
3621                         DoOneToMany(Srv->GetServerName(),"METADATA",*params);
3622                 }
3623         }
3624
3625         virtual ~ModuleSpanningTree()
3626         {
3627         }
3628
3629         virtual Version GetVersion()
3630         {
3631                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
3632         }
3633
3634         void Implements(char* List)
3635         {
3636                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
3637                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
3638                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
3639                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
3640                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
3641                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
3642                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = 1;
3643         }
3644
3645         /* It is IMPORTANT that m_spanningtree is the last module in the chain
3646          * so that any activity it sees is FINAL, e.g. we arent going to send out
3647          * a NICK message before m_cloaking has finished putting the +x on the user,
3648          * etc etc.
3649          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
3650          * the module call queue.
3651          */
3652         Priority Prioritize()
3653         {
3654                 return PRIORITY_LAST;
3655         }
3656 };
3657
3658
3659 class ModuleSpanningTreeFactory : public ModuleFactory
3660 {
3661  public:
3662         ModuleSpanningTreeFactory()
3663         {
3664         }
3665         
3666         ~ModuleSpanningTreeFactory()
3667         {
3668         }
3669         
3670         virtual Module * CreateModule(Server* Me)
3671         {
3672                 TreeProtocolModule = new ModuleSpanningTree(Me);
3673                 return TreeProtocolModule;
3674         }
3675         
3676 };
3677
3678
3679 extern "C" void * init_module( void )
3680 {
3681         return new ModuleSpanningTreeFactory;
3682 }