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