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