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