]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Fixed broken display of 'aes enabled'
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2005 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 std::vector<Module*> modules;
77 extern std::vector<ircd_module*> factory;
78 extern int MODCOUNT;
79
80 /* Any socket can have one of five states at any one time.
81  * The LISTENER state indicates a socket which is listening
82  * for connections. It cannot receive data itself, only incoming
83  * sockets.
84  * The CONNECTING state indicates an outbound socket which is
85  * waiting to be writeable.
86  * The WAIT_AUTH_1 state indicates the socket is outbound and
87  * has successfully connected, but has not yet sent and received
88  * SERVER strings.
89  * The WAIT_AUTH_2 state indicates that the socket is inbound
90  * (allocated by a LISTENER) but has not yet sent and received
91  * SERVER strings.
92  * The CONNECTED state represents a fully authorized, fully
93  * connected server.
94  */
95 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
96
97 /* We need to import these from the core for use in netbursts */
98 /*typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
99 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;*/
100 extern user_hash clientlist;
101 extern chan_hash chanlist;
102
103 /* Foward declarations */
104 class TreeServer;
105 class TreeSocket;
106
107 /* This variable represents the root of the server tree
108  * (for all intents and purposes, it's us)
109  */
110 TreeServer *TreeRoot;
111
112 Server* Srv;
113
114 /* This hash_map holds the hash equivalent of the server
115  * tree, used for rapid linear lookups.
116  */
117 typedef nspace::hash_map<std::string, TreeServer*> server_hash;
118 server_hash serverlist;
119
120 /* More forward declarations */
121 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target);
122 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit);
123 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params);
124 bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string prefix, std::string command, std::deque<std::string> &params);
125 void ReadConfiguration(bool rebind);
126
127 /* Imported from xline.cpp for use during netburst */
128 extern std::vector<KLine> klines;
129 extern std::vector<GLine> glines;
130 extern std::vector<ZLine> zlines;
131 extern std::vector<QLine> qlines;
132 extern std::vector<ELine> elines;
133 extern std::vector<KLine> pklines;
134 extern std::vector<GLine> pglines;
135 extern std::vector<ZLine> pzlines;
136 extern std::vector<QLine> pqlines;
137 extern std::vector<ELine> pelines;
138
139 /* Each server in the tree is represented by one class of
140  * type TreeServer. A locally connected TreeServer can
141  * have a class of type TreeSocket associated with it, for
142  * remote servers, the TreeSocket entry will be NULL.
143  * Each server also maintains a pointer to its parent
144  * (NULL if this server is ours, at the top of the tree)
145  * and a pointer to its "Route" (see the comments in the
146  * constructors below), and also a dynamic list of pointers
147  * to its children which can be iterated recursively
148  * if required. Creating or deleting objects of type
149  * TreeServer automatically maintains the hash_map of
150  * TreeServer items, deleting and inserting them as they
151  * are created and destroyed.
152  */
153
154 class TreeServer
155 {
156         TreeServer* Parent;                     /* Parent entry */
157         TreeServer* Route;                      /* Route entry */
158         std::vector<TreeServer*> Children;      /* List of child objects */
159         std::string ServerName;                 /* Server's name */
160         std::string ServerDesc;                 /* Server's description */
161         std::string VersionString;              /* Version string or empty string */
162         int UserCount;                          /* Not used in this version */
163         int OperCount;                          /* Not used in this version */
164         TreeSocket* Socket;                     /* For directly connected servers this points at the socket object */
165         time_t NextPing;                        /* After this time, the server should be PINGed*/
166         bool LastPingWasGood;                   /* True if the server responded to the last PING with a PONG */
167         
168  public:
169
170         /* We don't use this constructor. Its a dummy, and won't cause any insertion
171          * of the TreeServer into the hash_map. See below for the two we DO use.
172          */
173         TreeServer()
174         {
175                 Parent = NULL;
176                 ServerName = "";
177                 ServerDesc = "";
178                 VersionString = "";
179                 UserCount = OperCount = 0;
180                 VersionString = Srv->GetVersion();
181         }
182
183         /* We use this constructor only to create the 'root' item, TreeRoot, which
184          * represents our own server. Therefore, it has no route, no parent, and
185          * no socket associated with it. Its version string is our own local version.
186          */
187         TreeServer(std::string Name, std::string Desc) : ServerName(Name), ServerDesc(Desc)
188         {
189                 Parent = NULL;
190                 VersionString = "";
191                 UserCount = OperCount = 0;
192                 VersionString = Srv->GetVersion();
193                 Route = NULL;
194                 AddHashEntry();
195         }
196
197         /* When we create a new server, we call this constructor to initialize it.
198          * This constructor initializes the server's Route and Parent, and sets up
199          * its ping counters so that it will be pinged one minute from now.
200          */
201         TreeServer(std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock) : Parent(Above), ServerName(Name), ServerDesc(Desc), Socket(Sock)
202         {
203                 VersionString = "";
204                 UserCount = OperCount = 0;
205                 this->SetNextPingTime(time(NULL) + 60);
206                 this->SetPingFlag();
207
208                 /* find the 'route' for this server (e.g. the one directly connected
209                  * to the local server, which we can use to reach it)
210                  *
211                  * In the following example, consider we have just added a TreeServer
212                  * class for server G on our network, of which we are server A.
213                  * To route traffic to G (marked with a *) we must send the data to
214                  * B (marked with a +) so this algorithm initializes the 'Route'
215                  * value to point at whichever server traffic must be routed through
216                  * to get here. If we were to try this algorithm with server B,
217                  * the Route pointer would point at its own object ('this').
218                  *
219                  *              A
220                  *             / \
221                  *          + B   C
222                  *           / \   \
223                  *          D   E   F
224                  *         /         \
225                  *      * G           H
226                  *
227                  * We only run this algorithm when a server is created, as
228                  * the routes remain constant while ever the server exists, and
229                  * do not need to be re-calculated.
230                  */
231
232                 Route = Above;
233                 if (Route == TreeRoot)
234                 {
235                         Route = this;
236                 }
237                 else
238                 {
239                         while (this->Route->GetParent() != TreeRoot)
240                         {
241                                 this->Route = Route->GetParent();
242                         }
243                 }
244
245                 /* Because recursive code is slow and takes a lot of resources,
246                  * we store two representations of the server tree. The first
247                  * is a recursive structure where each server references its
248                  * children and its parent, which is used for netbursts and
249                  * netsplits to dump the whole dataset to the other server,
250                  * and the second is used for very fast lookups when routing
251                  * messages and is instead a hash_map, where each item can
252                  * be referenced by its server name. The AddHashEntry()
253                  * call below automatically inserts each TreeServer class
254                  * into the hash_map as it is created. There is a similar
255                  * maintainance call in the destructor to tidy up deleted
256                  * servers.
257                  */
258
259                 this->AddHashEntry();
260         }
261
262         /* This method is used to add the structure to the
263          * hash_map for linear searches. It is only called
264          * by the constructors.
265          */
266         void AddHashEntry()
267         {
268                 server_hash::iterator iter;
269                 iter = serverlist.find(this->ServerName);
270                 if (iter == serverlist.end())
271                         serverlist[this->ServerName] = this;
272         }
273
274         /* This method removes the reference to this object
275          * from the hash_map which is used for linear searches.
276          * It is only called by the default destructor.
277          */
278         void DelHashEntry()
279         {
280                 server_hash::iterator iter;
281                 iter = serverlist.find(this->ServerName);
282                 if (iter != serverlist.end())
283                         serverlist.erase(iter);
284         }
285
286         /* These accessors etc should be pretty self-
287          * explanitory.
288          */
289
290         TreeServer* GetRoute()
291         {
292                 return Route;
293         }
294
295         std::string GetName()
296         {
297                 return this->ServerName;
298         }
299
300         std::string GetDesc()
301         {
302                 return this->ServerDesc;
303         }
304
305         std::string GetVersion()
306         {
307                 return this->VersionString;
308         }
309
310         void SetNextPingTime(time_t t)
311         {
312                 this->NextPing = t;
313                 LastPingWasGood = false;
314         }
315
316         time_t NextPingTime()
317         {
318                 return this->NextPing;
319         }
320
321         bool AnsweredLastPing()
322         {
323                 return LastPingWasGood;
324         }
325
326         void SetPingFlag()
327         {
328                 LastPingWasGood = true;
329         }
330
331         int GetUserCount()
332         {
333                 return this->UserCount;
334         }
335
336         int GetOperCount()
337         {
338                 return this->OperCount;
339         }
340
341         TreeSocket* GetSocket()
342         {
343                 return this->Socket;
344         }
345
346         TreeServer* GetParent()
347         {
348                 return this->Parent;
349         }
350
351         void SetVersion(std::string Version)
352         {
353                 VersionString = Version;
354         }
355
356         unsigned int ChildCount()
357         {
358                 return Children.size();
359         }
360
361         TreeServer* GetChild(unsigned int n)
362         {
363                 if (n < Children.size())
364                 {
365                         /* Make sure they  cant request
366                          * an out-of-range object. After
367                          * all we know what these programmer
368                          * types are like *grin*.
369                          */
370                         return Children[n];
371                 }
372                 else
373                 {
374                         return NULL;
375                 }
376         }
377
378         void AddChild(TreeServer* Child)
379         {
380                 Children.push_back(Child);
381         }
382
383         bool DelChild(TreeServer* Child)
384         {
385                 for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
386                 {
387                         if (*a == Child)
388                         {
389                                 Children.erase(a);
390                                 return true;
391                         }
392                 }
393                 return false;
394         }
395
396         /* Removes child nodes of this node, and of that node, etc etc.
397          * This is used during netsplits to automatically tidy up the
398          * server tree. It is slow, we don't use it for much else.
399          */
400         bool Tidy()
401         {
402                 bool stillchildren = true;
403                 while (stillchildren)
404                 {
405                         stillchildren = false;
406                         for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
407                         {
408                                 TreeServer* s = (TreeServer*)*a;
409                                 s->Tidy();
410                                 Children.erase(a);
411                                 delete s;
412                                 stillchildren = true;
413                                 break;
414                         }
415                 }
416                 return true;
417         }
418
419         ~TreeServer()
420         {
421                 /* We'd better tidy up after ourselves, eh? */
422                 this->DelHashEntry();
423         }
424 };
425
426 /* The Link class might as well be a struct,
427  * but this is C++ and we don't believe in structs (!).
428  * It holds the entire information of one <link>
429  * tag from the main config file. We maintain a list
430  * of them, and populate the list on rehash/load.
431  */
432
433 class Link
434 {
435  public:
436          std::string Name;
437          std::string IPAddr;
438          int Port;
439          std::string SendPass;
440          std::string RecvPass;
441          unsigned long AutoConnect;
442          time_t NextConnectTime;
443          std::string EncryptionKey;
444 };
445
446 /* The usual stuff for inspircd modules,
447  * plus the vector of Link classes which we
448  * use to store the <link> tags from the config
449  * file.
450  */
451 ConfigReader *Conf;
452 std::vector<Link> LinkBlocks;
453
454 /* Yay for fast searches!
455  * This is hundreds of times faster than recursion
456  * or even scanning a linked list, especially when
457  * there are more than a few servers to deal with.
458  * (read as: lots).
459  */
460 TreeServer* FindServer(std::string ServerName)
461 {
462         server_hash::iterator iter;
463         iter = serverlist.find(ServerName);
464         if (iter != serverlist.end())
465         {
466                 return iter->second;
467         }
468         else
469         {
470                 return NULL;
471         }
472 }
473
474 /* Returns the locally connected server we must route a
475  * message through to reach server 'ServerName'. This
476  * only applies to one-to-one and not one-to-many routing.
477  * See the comments for the constructor of TreeServer
478  * for more details.
479  */
480 TreeServer* BestRouteTo(std::string ServerName)
481 {
482         if (ServerName.c_str() == TreeRoot->GetName())
483                 return NULL;
484         TreeServer* Found = FindServer(ServerName);
485         if (Found)
486         {
487                 return Found->GetRoute();
488         }
489         else
490         {
491                 return NULL;
492         }
493 }
494
495 /* Find the first server matching a given glob mask.
496  * Theres no find-using-glob method of hash_map [awwww :-(]
497  * so instead, we iterate over the list using an iterator
498  * and match each one until we get a hit. Yes its slow,
499  * deal with it.
500  */
501 TreeServer* FindServerMask(std::string ServerName)
502 {
503         for (server_hash::iterator i = serverlist.begin(); i != serverlist.end(); i++)
504         {
505                 if (Srv->MatchText(i->first,ServerName))
506                         return i->second;
507         }
508         return NULL;
509 }
510
511 /* A convenient wrapper that returns true if a server exists */
512 bool IsServer(std::string ServerName)
513 {
514         return (FindServer(ServerName) != NULL);
515 }
516
517 /* Every SERVER connection inbound or outbound is represented by
518  * an object of type TreeSocket.
519  * TreeSockets, being inherited from InspSocket, can be tied into
520  * the core socket engine, and we cn therefore receive activity events
521  * for them, just like activex objects on speed. (yes really, that
522  * is a technical term!) Each of these which relates to a locally
523  * connected server is assocated with it, by hooking it onto a
524  * TreeSocket class using its constructor. In this way, we can
525  * maintain a list of servers, some of which are directly connected,
526  * some of which are not.
527  */
528
529 class TreeSocket : public InspSocket
530 {
531         std::string myhost;
532         std::string in_buffer;
533         ServerState LinkState;
534         std::string InboundServerName;
535         std::string InboundDescription;
536         int num_lost_users;
537         int num_lost_servers;
538         time_t NextPing;
539         bool LastPingWasGood;
540         bool bursting;
541         AES* ctx;
542         unsigned int keylength;
543         
544  public:
545
546         /* Because most of the I/O gubbins are encapsulated within
547          * InspSocket, we just call the superclass constructor for
548          * most of the action, and append a few of our own values
549          * to it.
550          */
551         TreeSocket(std::string host, int port, bool listening, unsigned long maxtime)
552                 : InspSocket(host, port, listening, maxtime)
553         {
554                 myhost = host;
555                 this->LinkState = LISTENER;
556         }
557
558         TreeSocket(std::string host, int port, bool listening, unsigned long maxtime, std::string ServerName)
559                 : InspSocket(host, port, listening, maxtime)
560         {
561                 myhost = ServerName;
562                 this->LinkState = CONNECTING;
563         }
564
565         /* When a listening socket gives us a new file descriptor,
566          * we must associate it with a socket without creating a new
567          * connection. This constructor is used for this purpose.
568          */
569         TreeSocket(int newfd, char* ip)
570                 : InspSocket(newfd, ip)
571         {
572                 this->LinkState = WAIT_AUTH_1;
573         }
574
575         void InitAES(std::string key,std::string SName)
576         {
577                 if (key == "")
578                         return;
579
580                 ctx = new AES();
581                 log(DEBUG,"Initialized AES key %s",key.c_str());
582                 // key must be 16, 24, 32 etc bytes (multiple of 8)
583                 keylength = key.length();
584                 if (!(keylength == 16 || keylength == 24 || keylength == 32))
585                 {
586                         WriteOpers("\2ERROR\2: Key length for encryptionkey is not 16, 24 or 32 bytes in length!");
587                         log(DEBUG,"Key length not 16, 24 or 32 characters!");
588                 }
589                 else
590                 {
591                         WriteOpers("\2AES\2: Initialized %d bit encryption to server %s",keylength*8,SName.c_str());
592                         ctx->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\
593                                 \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);
594                 }
595         }
596         
597         /* When an outbound connection finishes connecting, we receive
598          * this event, and must send our SERVER string to the other
599          * side. If the other side is happy, as outlined in the server
600          * to server docs on the inspircd.org site, the other side
601          * will then send back its own server string.
602          */
603         virtual bool OnConnected()
604         {
605                 if (this->LinkState == CONNECTING)
606                 {
607                         Srv->SendOpers("*** Connection to "+myhost+"["+this->GetIP()+"] established.");
608                         /* we do not need to change state here. */
609                         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
610                         {
611                                 if (x->Name == this->myhost)
612                                 {
613                                         if (x->EncryptionKey != "")
614                                         {
615                                                 this->WriteLine("AES "+Srv->GetServerName());
616                                                 this->InitAES(x->EncryptionKey,x->Name);
617                                         }
618                                         /* found who we're supposed to be connecting to, send the neccessary gubbins. */
619                                         this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
620                                         return true;
621                                 }
622                         }
623                 }
624                 /* There is a (remote) chance that between the /CONNECT and the connection
625                  * being accepted, some muppet has removed the <link> block and rehashed.
626                  * If that happens the connection hangs here until it's closed. Unlikely
627                  * and rather harmless.
628                  */
629                 return true;
630         }
631         
632         virtual void OnError(InspSocketError e)
633         {
634                 /* We don't handle this method, because all our
635                  * dirty work is done in OnClose() (see below)
636                  * which is still called on error conditions too.
637                  */
638         }
639
640         virtual int OnDisconnect()
641         {
642                 /* For the same reason as above, we don't
643                  * handle OnDisconnect()
644                  */
645                 return true;
646         }
647
648         /* Recursively send the server tree with distances as hops.
649          * This is used during network burst to inform the other server
650          * (and any of ITS servers too) of what servers we know about.
651          * If at any point any of these servers already exist on the other
652          * end, our connection may be terminated. The hopcounts given
653          * by this function are relative, this doesn't matter so long as
654          * they are all >1, as all the remote servers re-calculate them
655          * to be relative too, with themselves as hop 0.
656          */
657         void SendServers(TreeServer* Current, TreeServer* s, int hops)
658         {
659                 char command[1024];
660                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
661                 {
662                         TreeServer* recursive_server = Current->GetChild(q);
663                         if (recursive_server != s)
664                         {
665                                 snprintf(command,1024,":%s SERVER %s * %d :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,recursive_server->GetDesc().c_str());
666                                 this->WriteLine(command);
667                                 this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
668                                 /* down to next level */
669                                 this->SendServers(recursive_server, s, hops+1);
670                         }
671                 }
672         }
673
674         /* This function forces this server to quit, removing this server
675          * and any users on it (and servers and users below that, etc etc).
676          * It's very slow and pretty clunky, but luckily unless your network
677          * is having a REAL bad hair day, this function shouldnt be called
678          * too many times a month ;-)
679          */
680         void SquitServer(TreeServer* Current, CullList* Goners)
681         {
682                 /* recursively squit the servers attached to 'Current'.
683                  * We're going backwards so we don't remove users
684                  * while we still need them ;)
685                  */
686                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
687                 {
688                         TreeServer* recursive_server = Current->GetChild(q);
689                         this->SquitServer(recursive_server,Goners);
690                 }
691                 /* Now we've whacked the kids, whack self */
692                 num_lost_servers++;
693                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
694                 {
695                         if (!strcasecmp(u->second->server,Current->GetName().c_str()))
696                         {
697                                 std::string qreason = Current->GetName()+" "+std::string(Srv->GetServerName());
698                                 Goners->AddItem(u->second,qreason);
699                                 num_lost_users++;
700                         }
701                 }
702         }
703
704         /* This is a wrapper function for SquitServer above, which
705          * does some validation first and passes on the SQUIT to all
706          * other remaining servers.
707          */
708         void Squit(TreeServer* Current,std::string reason)
709         {
710                 if (Current)
711                 {
712                         std::deque<std::string> params;
713                         params.push_back(Current->GetName());
714                         params.push_back(":"+reason);
715                         DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
716                         if (Current->GetParent() == TreeRoot)
717                         {
718                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
719                         }
720                         else
721                         {
722                                 Srv->SendOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
723                         }
724                         num_lost_servers = 0;
725                         num_lost_users = 0;
726                         CullList* Goners = new CullList();
727                         SquitServer(Current, Goners);
728                         Goners->Apply();
729                         Current->Tidy();
730                         Current->GetParent()->DelChild(Current);
731                         delete Current;
732                         delete Goners;
733                         WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
734                 }
735                 else
736                 {
737                         log(DEFAULT,"Squit from unknown server");
738                 }
739         }
740
741         /* FMODE command */
742         bool ForceMode(std::string source, std::deque<std::string> params)
743         {
744                 userrec* who = new userrec;
745                 who->fd = FD_MAGIC_NUMBER;
746                 if (params.size() < 2)
747                         return true;
748                 char* modelist[255];
749                 for (unsigned int q = 0; q < params.size(); q++)
750                 {
751                         modelist[q] = (char*)params[q].c_str();
752                 }
753                 Srv->SendMode(modelist,params.size(),who);
754                 DoOneToAllButSender(source,"FMODE",params,source);
755                 delete who;
756                 return true;
757         }
758
759         /* FTOPIC command */
760         bool ForceTopic(std::string source, std::deque<std::string> params)
761         {
762                 if (params.size() != 4)
763                         return true;
764                 std::string channel = params[0];
765                 time_t ts = atoi(params[1].c_str());
766                 std::string setby = params[2];
767                 std::string topic = params[3];
768
769                 chanrec* c = Srv->FindChannel(channel);
770                 if (c)
771                 {
772                         if ((ts >= c->topicset) || (!*c->topic))
773                         {
774                                 std::string oldtopic = c->topic;
775                                 strlcpy(c->topic,topic.c_str(),MAXTOPIC);
776                                 strlcpy(c->setby,setby.c_str(),NICKMAX);
777                                 c->topicset = ts;
778                                 /* if the topic text is the same as the current topic,
779                                  * dont bother to send the TOPIC command out, just silently
780                                  * update the set time and set nick.
781                                  */
782                                 if (oldtopic != topic)
783                                         WriteChannelWithServ((char*)source.c_str(), c, "TOPIC %s :%s", c->name, c->topic);
784                         }
785                         
786                 }
787                 
788                 /* all done, send it on its way */
789                 params[3] = ":" + params[3];
790                 DoOneToAllButSender(source,"FTOPIC",params,source);
791
792                 return true;
793         }
794
795         /* FJOIN, similar to unreal SJOIN */
796         bool ForceJoin(std::string source, std::deque<std::string> params)
797         {
798                 if (params.size() < 3)
799                         return true;
800
801                 char first[MAXBUF];
802                 char modestring[MAXBUF];
803                 char* mode_users[127];
804                 mode_users[0] = first;
805                 mode_users[1] = modestring;
806                 strcpy(mode_users[1],"+");
807                 unsigned int modectr = 2;
808                 
809                 userrec* who = NULL;
810                 std::string channel = params[0];
811                 time_t TS = atoi(params[1].c_str());
812                 char* key = "";
813                 
814                 chanrec* chan = Srv->FindChannel(channel);
815                 if (chan)
816                 {
817                         key = chan->key;
818                 }
819                 strlcpy(mode_users[0],channel.c_str(),MAXBUF);
820
821                 /* default is a high value, which if we dont have this
822                  * channel will let the other side apply their modes.
823                  */
824                 time_t ourTS = time(NULL)+600;
825                 chanrec* us = Srv->FindChannel(channel);
826                 if (us)
827                 {
828                         ourTS = us->age;
829                 }
830
831                 log(DEBUG,"FJOIN detected, our TS=%lu, their TS=%lu",ourTS,TS);
832
833                 /* do this first, so our mode reversals are correctly received by other servers
834                  * if there is a TS collision.
835                  */
836                 DoOneToAllButSender(source,"FJOIN",params,source);
837                 
838                 for (unsigned int usernum = 2; usernum < params.size(); usernum++)
839                 {
840                         /* process one channel at a time, applying modes. */
841                         char* usr = (char*)params[usernum].c_str();
842                         char permissions = *usr;
843                         switch (permissions)
844                         {
845                                 case '@':
846                                         usr++;
847                                         mode_users[modectr++] = usr;
848                                         strlcat(modestring,"o",MAXBUF);
849                                 break;
850                                 case '%':
851                                         usr++;
852                                         mode_users[modectr++] = usr;
853                                         strlcat(modestring,"h",MAXBUF);
854                                 break;
855                                 case '+':
856                                         usr++;
857                                         mode_users[modectr++] = usr;
858                                         strlcat(modestring,"v",MAXBUF);
859                                 break;
860                         }
861                         who = Srv->FindNick(usr);
862                         if (who)
863                         {
864                                 Srv->JoinUserToChannel(who,channel,key);
865                                 if (modectr >= (MAXMODES-1))
866                                 {
867                                         /* theres a mode for this user. push them onto the mode queue, and flush it
868                                          * if there are more than MAXMODES to go.
869                                          */
870                                         if ((ourTS >= TS) || (Srv->IsUlined(who->server)))
871                                         {
872                                                 /* We also always let u-lined clients win, no matter what the TS value */
873                                                 log(DEBUG,"Our our channel newer than theirs, accepting their modes");
874                                                 Srv->SendMode(mode_users,modectr,who);
875                                         }
876                                         else
877                                         {
878                                                 log(DEBUG,"Their channel newer than ours, bouncing their modes");
879                                                 /* bouncy bouncy! */
880                                                 std::deque<std::string> params;
881                                                 /* modes are now being UNSET... */
882                                                 *mode_users[1] = '-';
883                                                 for (unsigned int x = 0; x < modectr; x++)
884                                                 {
885                                                         params.push_back(mode_users[x]);
886                                                 }
887                                                 // tell everyone to bounce the modes. bad modes, bad!
888                                                 DoOneToMany(Srv->GetServerName(),"FMODE",params);
889                                         }
890                                         strcpy(mode_users[1],"+");
891                                         modectr = 2;
892                                 }
893                         }
894                 }
895                 /* there werent enough modes built up to flush it during FJOIN,
896                  * or, there are a number left over. flush them out.
897                  */
898                 if ((modectr > 2) && (who))
899                 {
900                         if (ourTS >= TS)
901                         {
902                                 log(DEBUG,"Our our channel newer than theirs, accepting their modes");
903                                 Srv->SendMode(mode_users,modectr,who);
904                         }
905                         else
906                         {
907                                 log(DEBUG,"Their channel newer than ours, bouncing their modes");
908                                 std::deque<std::string> params;
909                                 *mode_users[1] = '-';
910                                 for (unsigned int x = 0; x < modectr; x++)
911                                 {
912                                         params.push_back(mode_users[x]);
913                                 }
914                                 DoOneToMany(Srv->GetServerName(),"FMODE",params);
915                         }
916                 }
917                 return true;
918         }
919
920         /* NICK command */
921         bool IntroduceClient(std::string source, std::deque<std::string> params)
922         {
923                 if (params.size() < 8)
924                         return true;
925                 // NICK age nick host dhost ident +modes ip :gecos
926                 //       0   1    2    3      4     5    6   7
927                 std::string nick = params[1];
928                 std::string host = params[2];
929                 std::string dhost = params[3];
930                 std::string ident = params[4];
931                 time_t age = atoi(params[0].c_str());
932                 std::string modes = params[5];
933                 while (*(modes.c_str()) == '+')
934                 {
935                         char* m = (char*)modes.c_str();
936                         m++;
937                         modes = m;
938                 }
939                 std::string ip = params[6];
940                 std::string gecos = params[7];
941                 char* tempnick = (char*)nick.c_str();
942                 log(DEBUG,"Introduce client %s!%s@%s",tempnick,ident.c_str(),host.c_str());
943                 
944                 user_hash::iterator iter;
945                 iter = clientlist.find(tempnick);
946                 if (iter != clientlist.end())
947                 {
948                         // nick collision
949                         log(DEBUG,"Nick collision on %s!%s@%s: %lu %lu",tempnick,ident.c_str(),host.c_str(),(unsigned long)age,(unsigned long)iter->second->age);
950                         this->WriteLine(":"+Srv->GetServerName()+" KILL "+tempnick+" :Nickname collision");
951                         return true;
952                 }
953
954                 clientlist[tempnick] = new userrec();
955                 clientlist[tempnick]->fd = FD_MAGIC_NUMBER;
956                 strlcpy(clientlist[tempnick]->nick, tempnick,NICKMAX);
957                 strlcpy(clientlist[tempnick]->host, host.c_str(),160);
958                 strlcpy(clientlist[tempnick]->dhost, dhost.c_str(),160);
959                 clientlist[tempnick]->server = (char*)FindServerNamePtr(source.c_str());
960                 strlcpy(clientlist[tempnick]->ident, ident.c_str(),IDENTMAX);
961                 strlcpy(clientlist[tempnick]->fullname, gecos.c_str(),MAXGECOS);
962                 clientlist[tempnick]->registered = 7;
963                 clientlist[tempnick]->signon = age;
964                 strlcpy(clientlist[tempnick]->modes, modes.c_str(),53);
965                 strlcpy(clientlist[tempnick]->ip,ip.c_str(),16);
966
967                 ucrec a;
968                 a.channel = NULL;
969                 a.uc_modes = 0;
970                 for (int i = 0; i < MAXCHANS; i++)
971                         clientlist[tempnick]->chans.push_back(a);
972
973                 if (!this->bursting)
974                 {
975                         WriteOpers("*** Client connecting at %s: %s!%s@%s [%s]",clientlist[tempnick]->server,clientlist[tempnick]->nick,clientlist[tempnick]->ident,clientlist[tempnick]->host,clientlist[tempnick]->ip);
976                 }
977                 params[7] = ":" + params[7];
978                 DoOneToAllButSender(source,"NICK",params,source);
979                 return true;
980         }
981
982         /* Send one or more FJOINs for a channel of users.
983          * If the length of a single line is more than 480-NICKMAX
984          * in length, it is split over multiple lines.
985          */
986         void SendFJoins(TreeServer* Current, chanrec* c)
987         {
988                 log(DEBUG,"Sending FJOINs to other server for %s",c->name);
989                 char list[MAXBUF];
990                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
991                 std::vector<char*> *ulist = c->GetUsers();
992                 for (unsigned int i = 0; i < ulist->size(); i++)
993                 {
994                         char* o = (*ulist)[i];
995                         userrec* otheruser = (userrec*)o;
996                         strlcat(list," ",MAXBUF);
997                         strlcat(list,cmode(otheruser,c),MAXBUF);
998                         strlcat(list,otheruser->nick,MAXBUF);
999                         if (strlen(list)>(480-NICKMAX))
1000                         {
1001                                 log(DEBUG,"FJOIN line wrapped");
1002                                 this->WriteLine(list);
1003                                 snprintf(list,MAXBUF,":%s FJOIN %s %lu",Srv->GetServerName().c_str(),c->name,(unsigned long)c->age);
1004                         }
1005                 }
1006                 if (list[strlen(list)-1] != ':')
1007                 {
1008                         log(DEBUG,"Final FJOIN line");
1009                         this->WriteLine(list);
1010                 }
1011         }
1012
1013         /* Send G, Q, Z and E lines */
1014         void SendXLines(TreeServer* Current)
1015         {
1016                 char data[MAXBUF];
1017                 /* Yes, these arent too nice looking, but they get the job done */
1018                 for (std::vector<ZLine>::iterator i = zlines.begin(); i != zlines.end(); i++)
1019                 {
1020                         snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->ipaddr,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1021                         this->WriteLine(data);
1022                 }
1023                 for (std::vector<QLine>::iterator i = qlines.begin(); i != qlines.end(); i++)
1024                 {
1025                         snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->nick,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1026                         this->WriteLine(data);
1027                 }
1028                 for (std::vector<GLine>::iterator i = glines.begin(); i != glines.end(); i++)
1029                 {
1030                         snprintf(data,MAXBUF,":%s ADDLINE G %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->hostmask,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1031                         this->WriteLine(data);
1032                 }
1033                 for (std::vector<ELine>::iterator i = elines.begin(); i != elines.end(); i++)
1034                 {
1035                         snprintf(data,MAXBUF,":%s ADDLINE E %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->hostmask,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1036                         this->WriteLine(data);
1037                 }
1038                 for (std::vector<ZLine>::iterator i = pzlines.begin(); i != pzlines.end(); i++)
1039                 {
1040                         snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->ipaddr,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1041                         this->WriteLine(data);
1042                 }
1043                 for (std::vector<QLine>::iterator i = pqlines.begin(); i != pqlines.end(); i++)
1044                 {
1045                         snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->nick,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1046                         this->WriteLine(data);
1047                 }
1048                 for (std::vector<GLine>::iterator i = pglines.begin(); i != pglines.end(); i++)
1049                 {
1050                         snprintf(data,MAXBUF,":%s ADDLINE G %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->hostmask,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1051                         this->WriteLine(data);
1052                 }
1053                 for (std::vector<ELine>::iterator i = pelines.begin(); i != pelines.end(); i++)
1054                 {
1055                         snprintf(data,MAXBUF,":%s ADDLINE E %s %s %lu %lu :%s",Srv->GetServerName().c_str(),i->hostmask,i->source,(unsigned long)i->set_time,(unsigned long)i->duration,i->reason);
1056                         this->WriteLine(data);
1057                 }
1058         }
1059
1060         /* Send channel modes and topics */
1061         void SendChannelModes(TreeServer* Current)
1062         {
1063                 char data[MAXBUF];
1064                 std::deque<std::string> list;
1065                 for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
1066                 {
1067                         SendFJoins(Current, c->second);
1068                         snprintf(data,MAXBUF,":%s FMODE %s +%s",Srv->GetServerName().c_str(),c->second->name,chanmodes(c->second));
1069                         this->WriteLine(data);
1070                         if (*c->second->topic)
1071                         {
1072                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",Srv->GetServerName().c_str(),c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
1073                                 this->WriteLine(data);
1074                         }
1075                         for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
1076                         {
1077                                 snprintf(data,MAXBUF,":%s FMODE %s +b %s",Srv->GetServerName().c_str(),c->second->name,b->data);
1078                                 this->WriteLine(data);
1079                         }
1080                         FOREACH_MOD OnSyncChannel(c->second,(Module*)TreeProtocolModule,(void*)this);
1081                         list.clear();
1082                         c->second->GetExtList(list);
1083                         for (unsigned int j = 0; j < list.size(); j++)
1084                         {
1085                                 FOREACH_MOD OnSyncChannelMetaData(c->second,(Module*)TreeProtocolModule,(void*)this,list[j]);
1086                         }
1087                 }
1088         }
1089
1090         /* send all users and their oper state/modes */
1091         void SendUsers(TreeServer* Current)
1092         {
1093                 char data[MAXBUF];
1094                 std::deque<std::string> list;
1095                 for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
1096                 {
1097                         if (u->second->registered == 7)
1098                         {
1099                                 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,u->second->ip,u->second->fullname);
1100                                 this->WriteLine(data);
1101                                 if (strchr(u->second->modes,'o'))
1102                                 {
1103                                         this->WriteLine(":"+std::string(u->second->nick)+" OPERTYPE "+std::string(u->second->oper));
1104                                 }
1105                                 FOREACH_MOD OnSyncUser(u->second,(Module*)TreeProtocolModule,(void*)this);
1106                                 list.clear();
1107                                 u->second->GetExtList(list);
1108                                 for (unsigned int j = 0; j < list.size(); j++)
1109                                 {
1110                                         FOREACH_MOD OnSyncUserMetaData(u->second,(Module*)TreeProtocolModule,(void*)this,list[j]);
1111                                 }
1112                         }
1113                 }
1114         }
1115
1116         /* This function is called when we want to send a netburst to a local
1117          * server. There is a set order we must do this, because for example
1118          * users require their servers to exist, and channels require their
1119          * users to exist. You get the idea.
1120          */
1121         void DoBurst(TreeServer* s)
1122         {
1123                 Srv->SendOpers("*** Bursting to \2"+s->GetName()+"\2.");
1124                 this->WriteLine("BURST");
1125                 /* send our version string */
1126                 this->WriteLine(":"+Srv->GetServerName()+" VERSION :"+Srv->GetVersion());
1127                 /* Send server tree */
1128                 this->SendServers(TreeRoot,s,1);
1129                 /* Send users and their oper status */
1130                 this->SendUsers(s);
1131                 /* Send everything else (channel modes, xlines etc) */
1132                 this->SendChannelModes(s);
1133                 this->SendXLines(s);
1134                 this->WriteLine("ENDBURST");
1135                 Srv->SendOpers("*** Finished bursting to \2"+s->GetName()+"\2.");
1136         }
1137
1138         /* This function is called when we receive data from a remote
1139          * server. We buffer the data in a std::string (it doesnt stay
1140          * there for long), reading using InspSocket::Read() which can
1141          * read up to 16 kilobytes in one operation.
1142          *
1143          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
1144          * THE SOCKET OBJECT FOR US.
1145          */
1146         virtual bool OnDataReady()
1147         {
1148                 char* data = this->Read();
1149                 if (data)
1150                 {
1151                         this->in_buffer += data;
1152                         /* While there is at least one new line in the buffer,
1153                          * do something useful (we hope!) with it.
1154                          */
1155                         while (in_buffer.find("\n") != std::string::npos)
1156                         {
1157                                 char* line = (char*)in_buffer.c_str();
1158                                 std::string ret = "";
1159                                 while ((*line != '\n') && (strlen(line)))
1160                                 {
1161                                         ret = ret + *line;
1162                                         line++;
1163                                 }
1164                                 if ((*line == '\n') || (*line == '\r'))
1165                                         line++;
1166                                 in_buffer = line;
1167                                 /* Process this one, abort if it
1168                                  * didnt return true.
1169                                  */
1170                                 if (this->ctx)
1171                                 {
1172                                         char out[1024];
1173                                         char result[1024];
1174                                         log(DEBUG,"Original string '%s'",ret.c_str());
1175                                         int nbytes = from64tobits(out, ret.c_str(), 1024);
1176                                         log(DEBUG,"m_spanningtree: decrypt %d bytes",nbytes);
1177                                         ctx->Decrypt(out, result, nbytes, 0);
1178                                         for (int t = 0; t < nbytes; t++)
1179                                                 if (result[t] == '\7') result[t] = 0;
1180                                         ret = result;
1181                                 }
1182                                 if (!this->ProcessLine(ret))
1183                                 {
1184                                         return false;
1185                                 }
1186                         }
1187                 }
1188                 return (data != NULL);
1189         }
1190
1191         int WriteLine(std::string line)
1192         {
1193                 log(DEBUG,"OUT: %s",line.c_str());
1194                 if (this->ctx)
1195                 {
1196                         log(DEBUG,"AES context");
1197                         char result[1024];
1198                         char result64[1024];
1199                         if (this->keylength)
1200                         {
1201                                 while (line.length() % this->keylength != 0)
1202                                 {
1203                                         // pad it to be a multiple of the key length
1204                                         line = line + "\7";
1205                                 }
1206                         }
1207                         ctx->Encrypt(line.c_str(), result, line.length(),0);
1208                         to64frombits((unsigned char*)result64,
1209                                         (unsigned char*)result,
1210                                         line.length());
1211                         line = result64;
1212                         log(DEBUG,"Encrypted: %s",line.c_str());
1213                         //int from64tobits(char *out, const char *in, int maxlen);
1214                 }
1215                 return this->Write(line + "\r\n");
1216         }
1217
1218         /* Handle ERROR command */
1219         bool Error(std::deque<std::string> params)
1220         {
1221                 if (params.size() < 1)
1222                         return false;
1223                 std::string Errmsg = params[0];
1224                 std::string SName = myhost;
1225                 if (InboundServerName != "")
1226                 {
1227                         SName = InboundServerName;
1228                 }
1229                 Srv->SendOpers("*** ERROR from "+SName+": "+Errmsg);
1230                 /* we will return false to cause the socket to close.
1231                  */
1232                 return false;
1233         }
1234
1235         /* Because the core won't let users or even SERVERS set +o,
1236          * we use the OPERTYPE command to do this.
1237          */
1238         bool OperType(std::string prefix, std::deque<std::string> &params)
1239         {
1240                 if (params.size() != 1)
1241                         return true;
1242                 std::string opertype = params[0];
1243                 userrec* u = Srv->FindNick(prefix);
1244                 if (u)
1245                 {
1246                         strlcpy(u->oper,opertype.c_str(),NICKMAX);
1247                         if (!strchr(u->modes,'o'))
1248                         {
1249                                 strcat(u->modes,"o");
1250                         }
1251                         DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
1252                 }
1253                 return true;
1254         }
1255
1256         /* Because Andy insists that services-compatible servers must
1257          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
1258          */
1259         bool ForceNick(std::string prefix, std::deque<std::string> &params)
1260         {
1261                 if (params.size() < 3)
1262                         return true;
1263                 userrec* u = Srv->FindNick(params[0]);
1264                 if (u)
1265                 {
1266                         Srv->ChangeUserNick(u,params[1]);
1267                         u->age = atoi(params[2].c_str());
1268                         DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
1269                 }
1270                 return true;
1271         }
1272
1273         bool ServiceJoin(std::string prefix, std::deque<std::string> &params)
1274         {
1275                 if (params.size() < 2)
1276                         return true;
1277                 userrec* u = Srv->FindNick(params[0]);
1278                 if (u)
1279                 {
1280                         Srv->JoinUserToChannel(u,params[1],"");
1281                         DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
1282                 }
1283                 return true;
1284         }
1285
1286         bool RemoteRehash(std::string prefix, std::deque<std::string> &params)
1287         {
1288                 if (params.size() < 1)
1289                         return false;
1290                 std::string servermask = params[0];
1291                 if (Srv->MatchText(Srv->GetServerName(),servermask))
1292                 {
1293                         Srv->SendOpers("*** Remote rehash initiated from server \002"+prefix+"\002.");
1294                         Srv->RehashServer();
1295                         ReadConfiguration(false);
1296                 }
1297                 DoOneToAllButSender(prefix,"REHASH",params,prefix);
1298                 return true;
1299         }
1300
1301         bool RemoteKill(std::string prefix, std::deque<std::string> &params)
1302         {
1303                 if (params.size() != 2)
1304                         return true;
1305                 std::string nick = params[0];
1306                 userrec* u = Srv->FindNick(prefix);
1307                 userrec* who = Srv->FindNick(nick);
1308                 if (who)
1309                 {
1310                         /* Prepend kill source, if we don't have one */
1311                         std::string sourceserv = prefix;
1312                         if (u)
1313                         {
1314                                 sourceserv = u->server;
1315                         }
1316                         if (*(params[1].c_str()) != '[')
1317                         {
1318                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
1319                         }
1320                         std::string reason = params[1];
1321                         params[1] = ":" + params[1];
1322                         DoOneToAllButSender(prefix,"KILL",params,sourceserv);
1323                         Srv->QuitUser(who,reason);
1324                 }
1325                 return true;
1326         }
1327
1328         bool LocalPong(std::string prefix, std::deque<std::string> &params)
1329         {
1330                 if (params.size() < 1)
1331                         return true;
1332                 TreeServer* ServerSource = FindServer(prefix);
1333                 if (ServerSource)
1334                 {
1335                         ServerSource->SetPingFlag();
1336                 }
1337                 return true;
1338         }
1339         
1340         bool MetaData(std::string prefix, std::deque<std::string> &params)
1341         {
1342                 if (params.size() < 3)
1343                         return true;
1344                 TreeServer* ServerSource = FindServer(prefix);
1345                 if (ServerSource)
1346                 {
1347                         if (*(params[0].c_str()) == '#')
1348                         {
1349                                 chanrec* c = Srv->FindChannel(params[0]);
1350                                 if (c)
1351                                 {
1352                                         FOREACH_MOD OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]);
1353                                 }
1354                         }
1355                         else
1356                         {
1357                                 userrec* u = Srv->FindNick(params[0]);
1358                                 if (u)
1359                                 {
1360                                         FOREACH_MOD OnDecodeMetaData(TYPE_USER,u,params[1],params[2]);
1361                                 }
1362                         }
1363                 }
1364                 params[2] = ":" + params[2];
1365                 DoOneToAllButSender(prefix,"METADATA",params,prefix);
1366                 return true;
1367         }
1368
1369         bool ServerVersion(std::string prefix, std::deque<std::string> &params)
1370         {
1371                 if (params.size() < 1)
1372                         return true;
1373                 TreeServer* ServerSource = FindServer(prefix);
1374                 if (ServerSource)
1375                 {
1376                         ServerSource->SetVersion(params[0]);
1377                 }
1378                 params[0] = ":" + params[0];
1379                 DoOneToAllButSender(prefix,"VERSION",params,prefix);
1380                 return true;
1381         }
1382
1383         bool ChangeHost(std::string prefix, std::deque<std::string> &params)
1384         {
1385                 if (params.size() < 1)
1386                         return true;
1387                 userrec* u = Srv->FindNick(prefix);
1388                 if (u)
1389                 {
1390                         Srv->ChangeHost(u,params[0]);
1391                         DoOneToAllButSender(prefix,"FHOST",params,u->server);
1392                 }
1393                 return true;
1394         }
1395
1396         bool AddLine(std::string prefix, std::deque<std::string> &params)
1397         {
1398                 if (params.size() < 6)
1399                         return true;
1400                 std::string linetype = params[0]; /* Z, Q, E, G, K */
1401                 std::string mask = params[1]; /* Line type dependent */
1402                 std::string source = params[2]; /* may not be online or may be a server */
1403                 std::string settime = params[3]; /* EPOCH time set */
1404                 std::string duration = params[4]; /* Duration secs */
1405                 std::string reason = params[5];
1406
1407                 switch (*(linetype.c_str()))
1408                 {
1409                         case 'Z':
1410                                 add_zline(atoi(duration.c_str()), source.c_str(), reason.c_str(), mask.c_str());
1411                                 zline_set_creation_time((char*)mask.c_str(), atoi(settime.c_str()));
1412                         break;
1413                         case 'Q':
1414                                 add_qline(atoi(duration.c_str()), source.c_str(), reason.c_str(), mask.c_str());
1415                                 qline_set_creation_time((char*)mask.c_str(), atoi(settime.c_str()));
1416                         break;
1417                         case 'E':
1418                                 add_eline(atoi(duration.c_str()), source.c_str(), reason.c_str(), mask.c_str());
1419                                 eline_set_creation_time((char*)mask.c_str(), atoi(settime.c_str()));
1420                         break;
1421                         case 'G':
1422                                 add_gline(atoi(duration.c_str()), source.c_str(), reason.c_str(), mask.c_str());
1423                                 gline_set_creation_time((char*)mask.c_str(), atoi(settime.c_str()));
1424                         break;
1425                         case 'K':
1426                                 add_kline(atoi(duration.c_str()), source.c_str(), reason.c_str(), mask.c_str());
1427                         break;
1428                         default:
1429                                 /* Just in case... */
1430                                 Srv->SendOpers("*** \2WARNING\2: Invalid xline type '"+linetype+"' sent by server "+prefix+", ignored!");
1431                         break;
1432                 }
1433                 /* Send it on its way */
1434                 params[5] = ":" + params[5];
1435                 DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
1436                 return true;
1437         }
1438
1439         bool ChangeName(std::string prefix, std::deque<std::string> &params)
1440         {
1441                 if (params.size() < 1)
1442                         return true;
1443                 userrec* u = Srv->FindNick(prefix);
1444                 if (u)
1445                 {
1446                         Srv->ChangeGECOS(u,params[0]);
1447                         params[0] = ":" + params[0];
1448                         DoOneToAllButSender(prefix,"FNAME",params,u->server);
1449                 }
1450                 return true;
1451         }
1452
1453         bool Whois(std::string prefix, std::deque<std::string> &params)
1454         {
1455                 if (params.size() < 1)
1456                         return true;
1457                 log(DEBUG,"In IDLE command");
1458                 userrec* u = Srv->FindNick(prefix);
1459                 if (u)
1460                 {
1461                         log(DEBUG,"USER EXISTS: %s",u->nick);
1462                         // an incoming request
1463                         if (params.size() == 1)
1464                         {
1465                                 userrec* x = Srv->FindNick(params[0]);
1466                                 if (x->fd > -1)
1467                                 {
1468                                         userrec* x = Srv->FindNick(params[0]);
1469                                         log(DEBUG,"Got IDLE");
1470                                         char signon[MAXBUF];
1471                                         char idle[MAXBUF];
1472                                         log(DEBUG,"Sending back IDLE 3");
1473                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
1474                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-time(NULL)));
1475                                         std::deque<std::string> par;
1476                                         par.push_back(prefix);
1477                                         par.push_back(signon);
1478                                         par.push_back(idle);
1479                                         // ours, we're done, pass it BACK
1480                                         DoOneToOne(params[0],"IDLE",par,u->server);
1481                                 }
1482                                 else
1483                                 {
1484                                         // not ours pass it on
1485                                         DoOneToOne(prefix,"IDLE",params,x->server);
1486                                 }
1487                         }
1488                         else if (params.size() == 3)
1489                         {
1490                                 std::string who_did_the_whois = params[0];
1491                                 userrec* who_to_send_to = Srv->FindNick(who_did_the_whois);
1492                                 if (who_to_send_to->fd > -1)
1493                                 {
1494                                         log(DEBUG,"Got final IDLE");
1495                                         // an incoming reply to a whois we sent out
1496                                         std::string nick_whoised = prefix;
1497                                         unsigned long signon = atoi(params[1].c_str());
1498                                         unsigned long idle = atoi(params[2].c_str());
1499                                         if ((who_to_send_to) && (who_to_send_to->fd > -1))
1500                                                 do_whois(who_to_send_to,u,signon,idle,(char*)nick_whoised.c_str());
1501                                 }
1502                                 else
1503                                 {
1504                                         // not ours, pass it on
1505                                         DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
1506                                 }
1507                         }
1508                 }
1509                 return true;
1510         }
1511         
1512         bool LocalPing(std::string prefix, std::deque<std::string> &params)
1513         {
1514                 if (params.size() < 1)
1515                         return true;
1516                 std::string stufftobounce = params[0];
1517                 this->WriteLine(":"+Srv->GetServerName()+" PONG "+stufftobounce);
1518                 return true;
1519         }
1520
1521         bool RemoteServer(std::string prefix, std::deque<std::string> &params)
1522         {
1523                 if (params.size() < 4)
1524                         return false;
1525                 std::string servername = params[0];
1526                 std::string password = params[1];
1527                 // hopcount is not used for a remote server, we calculate this ourselves
1528                 std::string description = params[3];
1529                 TreeServer* ParentOfThis = FindServer(prefix);
1530                 if (!ParentOfThis)
1531                 {
1532                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
1533                         return false;
1534                 }
1535                 TreeServer* CheckDupe = FindServer(servername);
1536                 if (CheckDupe)
1537                 {
1538                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1539                         return false;
1540                 }
1541                 TreeServer* Node = new TreeServer(servername,description,ParentOfThis,NULL);
1542                 ParentOfThis->AddChild(Node);
1543                 params[3] = ":" + params[3];
1544                 DoOneToAllButSender(prefix,"SERVER",params,prefix);
1545                 Srv->SendOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
1546                 return true;
1547         }
1548
1549         bool Outbound_Reply_Server(std::deque<std::string> &params)
1550         {
1551                 if (params.size() < 4)
1552                         return false;
1553                 std::string servername = params[0];
1554                 std::string password = params[1];
1555                 int hops = atoi(params[2].c_str());
1556                 if (hops)
1557                 {
1558                         this->WriteLine("ERROR :Server too far away for authentication");
1559                         return false;
1560                 }
1561                 std::string description = params[3];
1562                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1563                 {
1564                         if ((x->Name == servername) && (x->RecvPass == password))
1565                         {
1566                                 TreeServer* CheckDupe = FindServer(servername);
1567                                 if (CheckDupe)
1568                                 {
1569                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1570                                         return false;
1571                                 }
1572                                 // Begin the sync here. this kickstarts the
1573                                 // other side, waiting in WAIT_AUTH_2 state,
1574                                 // into starting their burst, as it shows
1575                                 // that we're happy.
1576                                 this->LinkState = CONNECTED;
1577                                 // we should add the details of this server now
1578                                 // to the servers tree, as a child of the root
1579                                 // node.
1580                                 TreeServer* Node = new TreeServer(servername,description,TreeRoot,this);
1581                                 TreeRoot->AddChild(Node);
1582                                 params[3] = ":" + params[3];
1583                                 DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,servername);
1584                                 this->bursting = true;
1585                                 this->DoBurst(Node);
1586                                 return true;
1587                         }
1588                 }
1589                 this->WriteLine("ERROR :Invalid credentials");
1590                 return false;
1591         }
1592
1593         bool Inbound_Server(std::deque<std::string> &params)
1594         {
1595                 if (params.size() < 4)
1596                         return false;
1597                 std::string servername = params[0];
1598                 std::string password = params[1];
1599                 int hops = atoi(params[2].c_str());
1600                 if (hops)
1601                 {
1602                         this->WriteLine("ERROR :Server too far away for authentication");
1603                         return false;
1604                 }
1605                 std::string description = params[3];
1606                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1607                 {
1608                         if ((x->Name == servername) && (x->RecvPass == password))
1609                         {
1610                                 TreeServer* CheckDupe = FindServer(servername);
1611                                 if (CheckDupe)
1612                                 {
1613                                         this->WriteLine("ERROR :Server "+servername+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
1614                                         return false;
1615                                 }
1616                                 Srv->SendOpers("*** Verified incoming server connection from \002"+servername+"\002["+this->GetIP()+"] ("+description+")");
1617                                 this->InboundServerName = servername;
1618                                 this->InboundDescription = description;
1619                                 // this is good. Send our details: Our server name and description and hopcount of 0,
1620                                 // along with the sendpass from this block.
1621                                 this->WriteLine("SERVER "+Srv->GetServerName()+" "+x->SendPass+" 0 :"+Srv->GetServerDescription());
1622                                 // move to the next state, we are now waiting for THEM.
1623                                 this->LinkState = WAIT_AUTH_2;
1624                                 return true;
1625                         }
1626                 }
1627                 this->WriteLine("ERROR :Invalid credentials");
1628                 return false;
1629         }
1630
1631         void Split(std::string line, bool stripcolon, std::deque<std::string> &n)
1632         {
1633                 if (!strchr(line.c_str(),' '))
1634                 {
1635                         n.push_back(line);
1636                         return;
1637                 }
1638                 std::stringstream s(line);
1639                 std::string param = "";
1640                 n.clear();
1641                 int item = 0;
1642                 while (!s.eof())
1643                 {
1644                         char c;
1645                         s.get(c);
1646                         if (c == ' ')
1647                         {
1648                                 n.push_back(param);
1649                                 param = "";
1650                                 item++;
1651                         }
1652                         else
1653                         {
1654                                 if (!s.eof())
1655                                 {
1656                                         param = param + c;
1657                                 }
1658                                 if ((param == ":") && (item > 0))
1659                                 {
1660                                         param = "";
1661                                         while (!s.eof())
1662                                         {
1663                                                 s.get(c);
1664                                                 if (!s.eof())
1665                                                 {
1666                                                         param = param + c;
1667                                                 }
1668                                         }
1669                                         n.push_back(param);
1670                                         param = "";
1671                                 }
1672                         }
1673                 }
1674                 if (param != "")
1675                 {
1676                         n.push_back(param);
1677                 }
1678                 return;
1679         }
1680
1681         bool ProcessLine(std::string line)
1682         {
1683                 char* l = (char*)line.c_str();
1684                 while ((strlen(l)) && (l[strlen(l)-1] == '\r') || (l[strlen(l)-1] == '\n'))
1685                         l[strlen(l)-1] = '\0';
1686                 line = l;
1687                 if (line == "")
1688                         return true;
1689                 Srv->Log(DEBUG,"IN: "+line);
1690                 std::deque<std::string> params;
1691                 this->Split(line,true,params);
1692                 std::string command = "";
1693                 std::string prefix = "";
1694                 if (((params[0].c_str())[0] == ':') && (params.size() > 1))
1695                 {
1696                         prefix = params[0];
1697                         command = params[1];
1698                         char* pref = (char*)prefix.c_str();
1699                         prefix = ++pref;
1700                         params.pop_front();
1701                         params.pop_front();
1702                 }
1703                 else
1704                 {
1705                         prefix = "";
1706                         command = params[0];
1707                         params.pop_front();
1708                 }
1709
1710                 if ((!this->ctx) && (command == "AES"))
1711                 {
1712                         std::string sserv = params[0];
1713                         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
1714                         {
1715                                 if ((x->EncryptionKey != "") && (x->Name == sserv))
1716                                 {
1717                                         this->InitAES(x->EncryptionKey,sserv);
1718                                 }
1719                         }
1720                         return true;
1721                 }
1722                 
1723                 switch (this->LinkState)
1724                 {
1725                         TreeServer* Node;
1726                         
1727                         case WAIT_AUTH_1:
1728                                 // Waiting for SERVER command from remote server. Server initiating
1729                                 // the connection sends the first SERVER command, listening server
1730                                 // replies with theirs if its happy, then if the initiator is happy,
1731                                 // it starts to send its net sync, which starts the merge, otherwise
1732                                 // it sends an ERROR.
1733                                 if (command == "SERVER")
1734                                 {
1735                                         return this->Inbound_Server(params);
1736                                 }
1737                                 else if (command == "ERROR")
1738                                 {
1739                                         return this->Error(params);
1740                                 }
1741                         break;
1742                         case WAIT_AUTH_2:
1743                                 // Waiting for start of other side's netmerge to say they liked our
1744                                 // password.
1745                                 if (command == "SERVER")
1746                                 {
1747                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
1748                                         // silently ignore.
1749                                         return true;
1750                                 }
1751                                 else if (command == "BURST")
1752                                 {
1753                                         this->LinkState = CONNECTED;
1754                                         Node = new TreeServer(InboundServerName,InboundDescription,TreeRoot,this);
1755                                         TreeRoot->AddChild(Node);
1756                                         params.clear();
1757                                         params.push_back(InboundServerName);
1758                                         params.push_back("*");
1759                                         params.push_back("1");
1760                                         params.push_back(":"+InboundDescription);
1761                                         DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,InboundServerName);
1762                                         this->bursting = true;
1763                                         this->DoBurst(Node);
1764                                 }
1765                                 else if (command == "ERROR")
1766                                 {
1767                                         return this->Error(params);
1768                                 }
1769                                 
1770                         break;
1771                         case LISTENER:
1772                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
1773                                 return false;
1774                         break;
1775                         case CONNECTING:
1776                                 if (command == "SERVER")
1777                                 {
1778                                         // another server we connected to, which was in WAIT_AUTH_1 state,
1779                                         // has just sent us their credentials. If we get this far, theyre
1780                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
1781                                         // if we're happy with this, we should send our netburst which
1782                                         // kickstarts the merge.
1783                                         return this->Outbound_Reply_Server(params);
1784                                 }
1785                                 else if (command == "ERROR")
1786                                 {
1787                                         return this->Error(params);
1788                                 }
1789                         break;
1790                         case CONNECTED:
1791                                 // This is the 'authenticated' state, when all passwords
1792                                 // have been exchanged and anything past this point is taken
1793                                 // as gospel.
1794                                 
1795                                 if (prefix != "")
1796                                 {
1797                                         std::string direction = prefix;
1798                                         userrec* t = Srv->FindNick(prefix);
1799                                         if (t)
1800                                         {
1801                                                 direction = t->server;
1802                                         }
1803                                         TreeServer* route_back_again = BestRouteTo(direction);
1804                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
1805                                         {
1806                                                 if (route_back_again)
1807                                                 {
1808                                                         WriteOpers("Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
1809                                                 }
1810                                                 else
1811                                                 {
1812                                                         WriteOpers("Protocol violation: Invalid source '%s' in command '%s' from connection '%s'",direction.c_str(),line.c_str(),this->GetName().c_str());
1813                                                 }
1814                                                 
1815                                                 return true;
1816                                         }
1817                                 }
1818                                 
1819                                 if (command == "SVSMODE")
1820                                 {
1821                                         /* Services expects us to implement
1822                                          * SVSMODE. In inspircd its the same as
1823                                          * MODE anyway.
1824                                          */
1825                                         command = "MODE";
1826                                 }
1827                                 std::string target = "";
1828                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
1829                                  * working with std::string here.
1830                                  */
1831                                 if ((command == "NICK") && (params.size() > 1))
1832                                 {
1833                                         return this->IntroduceClient(prefix,params);
1834                                 }
1835                                 else if (command == "FJOIN")
1836                                 {
1837                                         return this->ForceJoin(prefix,params);
1838                                 }
1839                                 else if (command == "SERVER")
1840                                 {
1841                                         return this->RemoteServer(prefix,params);
1842                                 }
1843                                 else if (command == "ERROR")
1844                                 {
1845                                         return this->Error(params);
1846                                 }
1847                                 else if (command == "OPERTYPE")
1848                                 {
1849                                         return this->OperType(prefix,params);
1850                                 }
1851                                 else if (command == "FMODE")
1852                                 {
1853                                         return this->ForceMode(prefix,params);
1854                                 }
1855                                 else if (command == "KILL")
1856                                 {
1857                                         return this->RemoteKill(prefix,params);
1858                                 }
1859                                 else if (command == "FTOPIC")
1860                                 {
1861                                         return this->ForceTopic(prefix,params);
1862                                 }
1863                                 else if (command == "REHASH")
1864                                 {
1865                                         return this->RemoteRehash(prefix,params);
1866                                 }
1867                                 else if (command == "METADATA")
1868                                 {
1869                                         return this->MetaData(prefix,params);
1870                                 }
1871                                 else if (command == "PING")
1872                                 {
1873                                         return this->LocalPing(prefix,params);
1874                                 }
1875                                 else if (command == "PONG")
1876                                 {
1877                                         return this->LocalPong(prefix,params);
1878                                 }
1879                                 else if (command == "VERSION")
1880                                 {
1881                                         return this->ServerVersion(prefix,params);
1882                                 }
1883                                 else if (command == "FHOST")
1884                                 {
1885                                         return this->ChangeHost(prefix,params);
1886                                 }
1887                                 else if (command == "FNAME")
1888                                 {
1889                                         return this->ChangeName(prefix,params);
1890                                 }
1891                                 else if (command == "ADDLINE")
1892                                 {
1893                                         return this->AddLine(prefix,params);
1894                                 }
1895                                 else if (command == "SVSNICK")
1896                                 {
1897                                         if (prefix == "")
1898                                         {
1899                                                 prefix = this->GetName();
1900                                         }
1901                                         return this->ForceNick(prefix,params);
1902                                 }
1903                                 else if (command == "IDLE")
1904                                 {
1905                                         return this->Whois(prefix,params);
1906                                 }
1907                                 else if (command == "SVSJOIN")
1908                                 {
1909                                         if (prefix == "")
1910                                         {
1911                                                 prefix = this->GetName();
1912                                         }
1913                                         return this->ServiceJoin(prefix,params);
1914                                 }
1915                                 else if (command == "SQUIT")
1916                                 {
1917                                         if (params.size() == 2)
1918                                         {
1919                                                 this->Squit(FindServer(params[0]),params[1]);
1920                                         }
1921                                         return true;
1922                                 }
1923                                 else if (command == "ENDBURST")
1924                                 {
1925                                         this->bursting = false;
1926                                         return true;
1927                                 }
1928                                 else
1929                                 {
1930                                         // not a special inter-server command.
1931                                         // Emulate the actual user doing the command,
1932                                         // this saves us having a huge ugly parser.
1933                                         userrec* who = Srv->FindNick(prefix);
1934                                         std::string sourceserv = this->myhost;
1935                                         if (this->InboundServerName != "")
1936                                         {
1937                                                 sourceserv = this->InboundServerName;
1938                                         }
1939                                         if (who)
1940                                         {
1941                                                 // its a user
1942                                                 target = who->server;
1943                                                 char* strparams[127];
1944                                                 for (unsigned int q = 0; q < params.size(); q++)
1945                                                 {
1946                                                         strparams[q] = (char*)params[q].c_str();
1947                                                 }
1948                                                 Srv->CallCommandHandler(command, strparams, params.size(), who);
1949                                         }
1950                                         else
1951                                         {
1952                                                 // its not a user. Its either a server, or somethings screwed up.
1953                                                 if (IsServer(prefix))
1954                                                 {
1955                                                         target = Srv->GetServerName();
1956                                                 }
1957                                                 else
1958                                                 {
1959                                                         log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
1960                                                         return true;
1961                                                 }
1962                                         }
1963                                         return DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
1964
1965                                 }
1966                                 return true;
1967                         break;
1968                 }
1969                 return true;
1970         }
1971
1972         virtual std::string GetName()
1973         {
1974                 std::string sourceserv = this->myhost;
1975                 if (this->InboundServerName != "")
1976                 {
1977                         sourceserv = this->InboundServerName;
1978                 }
1979                 return sourceserv;
1980         }
1981
1982         virtual void OnTimeout()
1983         {
1984                 if (this->LinkState == CONNECTING)
1985                 {
1986                         Srv->SendOpers("*** CONNECT: Connection to \002"+myhost+"\002 timed out.");
1987                 }
1988         }
1989
1990         virtual void OnClose()
1991         {
1992                 // Connection closed.
1993                 // If the connection is fully up (state CONNECTED)
1994                 // then propogate a netsplit to all peers.
1995                 std::string quitserver = this->myhost;
1996                 if (this->InboundServerName != "")
1997                 {
1998                         quitserver = this->InboundServerName;
1999                 }
2000                 TreeServer* s = FindServer(quitserver);
2001                 if (s)
2002                 {
2003                         Squit(s,"Remote host closed the connection");
2004                 }
2005         }
2006
2007         virtual int OnIncomingConnection(int newsock, char* ip)
2008         {
2009                 TreeSocket* s = new TreeSocket(newsock, ip);
2010                 Srv->AddSocket(s);
2011                 return true;
2012         }
2013 };
2014
2015 void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
2016 {
2017         for (unsigned int c = 0; c < list.size(); c++)
2018         {
2019                 if (list[c] == server)
2020                 {
2021                         return;
2022                 }
2023         }
2024         list.push_back(server);
2025 }
2026
2027 // returns a list of DIRECT servernames for a specific channel
2028 void GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list)
2029 {
2030         std::vector<char*> *ulist = c->GetUsers();
2031         unsigned int ucount = ulist->size();
2032         for (unsigned int i = 0; i < ucount; i++)
2033         {
2034                 char* o = (*ulist)[i];
2035                 userrec* otheruser = (userrec*)o;
2036                 if (otheruser->fd < 0)
2037                 {
2038                         TreeServer* best = BestRouteTo(otheruser->server);
2039                         if (best)
2040                                 AddThisServer(best,list);
2041                 }
2042         }
2043         return;
2044 }
2045
2046 bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string prefix, std::string command, std::deque<std::string> &params)
2047 {
2048         TreeServer* omitroute = BestRouteTo(omit);
2049         if ((command == "NOTICE") || (command == "PRIVMSG"))
2050         {
2051                 if ((params.size() >= 2) && (*(params[0].c_str()) != '$'))
2052                 {
2053                         if (*(params[0].c_str()) != '#')
2054                         {
2055                                 // special routing for private messages/notices
2056                                 userrec* d = Srv->FindNick(params[0]);
2057                                 if (d)
2058                                 {
2059                                         std::deque<std::string> par;
2060                                         par.push_back(params[0]);
2061                                         par.push_back(":"+params[1]);
2062                                         DoOneToOne(prefix,command,par,d->server);
2063                                         return true;
2064                                 }
2065                         }
2066                         else
2067                         {
2068                                 log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());
2069                                 chanrec* c = Srv->FindChannel(params[0]);
2070                                 if (c)
2071                                 {
2072                                         std::deque<TreeServer*> list;
2073                                         GetListOfServersForChannel(c,list);
2074                                         log(DEBUG,"Got a list of %d servers",list.size());
2075                                         unsigned int lsize = list.size();
2076                                         for (unsigned int i = 0; i < lsize; i++)
2077                                         {
2078                                                 TreeSocket* Sock = list[i]->GetSocket();
2079                                                 if ((Sock) && (list[i]->GetName() != omit) && (omitroute != list[i]))
2080                                                 {
2081                                                         log(DEBUG,"Writing privmsg to server %s",list[i]->GetName().c_str());
2082                                                         Sock->WriteLine(data);
2083                                                 }
2084                                         }
2085                                         return true;
2086                                 }
2087                         }
2088                 }
2089         }
2090         unsigned int items = TreeRoot->ChildCount();
2091         for (unsigned int x = 0; x < items; x++)
2092         {
2093                 TreeServer* Route = TreeRoot->GetChild(x);
2094                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2095                 {
2096                         TreeSocket* Sock = Route->GetSocket();
2097                         Sock->WriteLine(data);
2098                 }
2099         }
2100         return true;
2101 }
2102
2103 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit)
2104 {
2105         TreeServer* omitroute = BestRouteTo(omit);
2106         std::string FullLine = ":" + prefix + " " + command;
2107         unsigned int words = params.size();
2108         for (unsigned int x = 0; x < words; x++)
2109         {
2110                 FullLine = FullLine + " " + params[x];
2111         }
2112         unsigned int items = TreeRoot->ChildCount();
2113         for (unsigned int x = 0; x < items; x++)
2114         {
2115                 TreeServer* Route = TreeRoot->GetChild(x);
2116                 // Send the line IF:
2117                 // The route has a socket (its a direct connection)
2118                 // The route isnt the one to be omitted
2119                 // The route isnt the path to the one to be omitted
2120                 if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
2121                 {
2122                         TreeSocket* Sock = Route->GetSocket();
2123                         Sock->WriteLine(FullLine);
2124                 }
2125         }
2126         return true;
2127 }
2128
2129 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params)
2130 {
2131         std::string FullLine = ":" + prefix + " " + command;
2132         unsigned int words = params.size();
2133         for (unsigned int x = 0; x < words; x++)
2134         {
2135                 FullLine = FullLine + " " + params[x];
2136         }
2137         unsigned int items = TreeRoot->ChildCount();
2138         for (unsigned int x = 0; x < items; x++)
2139         {
2140                 TreeServer* Route = TreeRoot->GetChild(x);
2141                 if (Route->GetSocket())
2142                 {
2143                         TreeSocket* Sock = Route->GetSocket();
2144                         Sock->WriteLine(FullLine);
2145                 }
2146         }
2147         return true;
2148 }
2149
2150 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target)
2151 {
2152         TreeServer* Route = BestRouteTo(target);
2153         if (Route)
2154         {
2155                 std::string FullLine = ":" + prefix + " " + command;
2156                 unsigned int words = params.size();
2157                 for (unsigned int x = 0; x < words; x++)
2158                 {
2159                         FullLine = FullLine + " " + params[x];
2160                 }
2161                 if (Route->GetSocket())
2162                 {
2163                         TreeSocket* Sock = Route->GetSocket();
2164                         Sock->WriteLine(FullLine);
2165                 }
2166                 return true;
2167         }
2168         else
2169         {
2170                 return true;
2171         }
2172 }
2173
2174 std::vector<TreeSocket*> Bindings;
2175
2176 void ReadConfiguration(bool rebind)
2177 {
2178         Conf = new ConfigReader;
2179         if (rebind)
2180         {
2181                 for (int j =0; j < Conf->Enumerate("bind"); j++)
2182                 {
2183                         std::string Type = Conf->ReadValue("bind","type",j);
2184                         std::string IP = Conf->ReadValue("bind","address",j);
2185                         long Port = Conf->ReadInteger("bind","port",j,true);
2186                         if (Type == "servers")
2187                         {
2188                                 if (IP == "*")
2189                                 {
2190                                         IP = "";
2191                                 }
2192                                 TreeSocket* listener = new TreeSocket(IP.c_str(),Port,true,10);
2193                                 if (listener->GetState() == I_LISTENING)
2194                                 {
2195                                         Srv->AddSocket(listener);
2196                                         Bindings.push_back(listener);
2197                                 }
2198                                 else
2199                                 {
2200                                         log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %d",Port);
2201                                         listener->Close();
2202                                         delete listener;
2203                                 }
2204                         }
2205                 }
2206         }
2207         LinkBlocks.clear();
2208         for (int j =0; j < Conf->Enumerate("link"); j++)
2209         {
2210                 Link L;
2211                 L.Name = Conf->ReadValue("link","name",j);
2212                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
2213                 L.Port = Conf->ReadInteger("link","port",j,true);
2214                 L.SendPass = Conf->ReadValue("link","sendpass",j);
2215                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
2216                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
2217                 L.EncryptionKey =  Conf->ReadValue("link","encryptionkey",j);
2218                 L.NextConnectTime = time(NULL) + L.AutoConnect;
2219                 /* Bugfix by brain, do not allow people to enter bad configurations */
2220                 if ((L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
2221                 {
2222                         LinkBlocks.push_back(L);
2223                         log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
2224                 }
2225                 else
2226                 {
2227                         log(DEFAULT,"m_spanningtree: Invalid configuration for server '%s', ignored!",L.Name.c_str());
2228                 }
2229         }
2230         delete Conf;
2231 }
2232
2233
2234 class ModuleSpanningTree : public Module
2235 {
2236         std::vector<TreeSocket*> Bindings;
2237         int line;
2238         int NumServers;
2239
2240  public:
2241
2242         ModuleSpanningTree(Server* Me)
2243                 : Module::Module(Me)
2244         {
2245                 Srv = Me;
2246                 Bindings.clear();
2247
2248                 // Create the root of the tree
2249                 TreeRoot = new TreeServer(Srv->GetServerName(),Srv->GetServerDescription());
2250
2251                 ReadConfiguration(true);
2252         }
2253
2254         void ShowLinks(TreeServer* Current, userrec* user, int hops)
2255         {
2256                 std::string Parent = TreeRoot->GetName();
2257                 if (Current->GetParent())
2258                 {
2259                         Parent = Current->GetParent()->GetName();
2260                 }
2261                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
2262                 {
2263                         ShowLinks(Current->GetChild(q),user,hops+1);
2264                 }
2265                 WriteServ(user->fd,"364 %s %s %s :%d %s",user->nick,Current->GetName().c_str(),Parent.c_str(),hops,Current->GetDesc().c_str());
2266         }
2267
2268         int CountLocalServs()
2269         {
2270                 return TreeRoot->ChildCount();
2271         }
2272
2273         int CountServs()
2274         {
2275                 return serverlist.size();
2276         }
2277
2278         void HandleLinks(char** parameters, int pcnt, userrec* user)
2279         {
2280                 ShowLinks(TreeRoot,user,0);
2281                 WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick);
2282                 return;
2283         }
2284
2285         void HandleLusers(char** parameters, int pcnt, userrec* user)
2286         {
2287                 WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,usercnt()-usercount_invisible(),usercount_invisible(),this->CountServs());
2288                 WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
2289                 WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
2290                 WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
2291                 WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
2292                 return;
2293         }
2294
2295         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
2296
2297         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80])
2298         {
2299                 if (line < 128)
2300                 {
2301                         for (int t = 0; t < depth; t++)
2302                         {
2303                                 matrix[line][t] = ' ';
2304                         }
2305                         strlcpy(&matrix[line][depth],Current->GetName().c_str(),80);
2306                         line++;
2307                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
2308                         {
2309                                 ShowMap(Current->GetChild(q),user,depth+2,matrix);
2310                         }
2311                 }
2312         }
2313
2314         // Ok, prepare to be confused.
2315         // After much mulling over how to approach this, it struck me that
2316         // the 'usual' way of doing a /MAP isnt the best way. Instead of
2317         // keeping track of a ton of ascii characters, and line by line
2318         // under recursion working out where to place them using multiplications
2319         // and divisons, we instead render the map onto a backplane of characters
2320         // (a character matrix), then draw the branches as a series of "L" shapes
2321         // from the nodes. This is not only friendlier on CPU it uses less stack.
2322
2323         void HandleMap(char** parameters, int pcnt, userrec* user)
2324         {
2325                 // This array represents a virtual screen which we will
2326                 // "scratch" draw to, as the console device of an irc
2327                 // client does not provide for a proper terminal.
2328                 char matrix[128][80];
2329                 for (unsigned int t = 0; t < 128; t++)
2330                 {
2331                         matrix[t][0] = '\0';
2332                 }
2333                 line = 0;
2334                 // The only recursive bit is called here.
2335                 ShowMap(TreeRoot,user,0,matrix);
2336                 // Process each line one by one. The algorithm has a limit of
2337                 // 128 servers (which is far more than a spanning tree should have
2338                 // anyway, so we're ok). This limit can be raised simply by making
2339                 // the character matrix deeper, 128 rows taking 10k of memory.
2340                 for (int l = 1; l < line; l++)
2341                 {
2342                         // scan across the line looking for the start of the
2343                         // servername (the recursive part of the algorithm has placed
2344                         // the servers at indented positions depending on what they
2345                         // are related to)
2346                         int first_nonspace = 0;
2347                         while (matrix[l][first_nonspace] == ' ')
2348                         {
2349                                 first_nonspace++;
2350                         }
2351                         first_nonspace--;
2352                         // Draw the `- (corner) section: this may be overwritten by
2353                         // another L shape passing along the same vertical pane, becoming
2354                         // a |- (branch) section instead.
2355                         matrix[l][first_nonspace] = '-';
2356                         matrix[l][first_nonspace-1] = '`';
2357                         int l2 = l - 1;
2358                         // Draw upwards until we hit the parent server, causing possibly
2359                         // other corners (`-) to become branches (|-)
2360                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
2361                         {
2362                                 matrix[l2][first_nonspace-1] = '|';
2363                                 l2--;
2364                         }
2365                 }
2366                 // dump the whole lot to the user. This is the easy bit, honest.
2367                 for (int t = 0; t < line; t++)
2368                 {
2369                         WriteServ(user->fd,"006 %s :%s",user->nick,&matrix[t][0]);
2370                 }
2371                 WriteServ(user->fd,"007 %s :End of /MAP",user->nick);
2372                 return;
2373         }
2374
2375         int HandleSquit(char** parameters, int pcnt, userrec* user)
2376         {
2377                 TreeServer* s = FindServerMask(parameters[0]);
2378                 if (s)
2379                 {
2380                         TreeSocket* sock = s->GetSocket();
2381                         if (sock)
2382                         {
2383                                 WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
2384                                 sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
2385                                 sock->Close();
2386                         }
2387                         else
2388                         {
2389                                 WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 is not directly connected.",user->nick,parameters[0]);
2390                         }
2391                 }
2392                 else
2393                 {
2394                          WriteServ(user->fd,"NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
2395                 }
2396                 return 1;
2397         }
2398
2399         int HandleRemoteWhois(char** parameters, int pcnt, userrec* user)
2400         {
2401                 if ((user->fd > -1) && (pcnt > 1))
2402                 {
2403                         userrec* remote = Srv->FindNick(parameters[1]);
2404                         if ((remote) && (remote->fd < 0))
2405                         {
2406                                 std::deque<std::string> params;
2407                                 params.push_back(parameters[1]);
2408                                 DoOneToOne(user->nick,"IDLE",params,remote->server);
2409                                 return 1;
2410                         }
2411                         else if (!remote)
2412                         {
2413                                 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]);
2414                                 WriteServ(user->fd,"318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
2415                                 return 1;
2416                         }
2417                 }
2418                 return 0;
2419         }
2420
2421         void DoPingChecks(time_t curtime)
2422         {
2423                 for (unsigned int j = 0; j < TreeRoot->ChildCount(); j++)
2424                 {
2425                         TreeServer* serv = TreeRoot->GetChild(j);
2426                         TreeSocket* sock = serv->GetSocket();
2427                         if (sock)
2428                         {
2429                                 if (curtime >= serv->NextPingTime())
2430                                 {
2431                                         if (serv->AnsweredLastPing())
2432                                         {
2433                                                 sock->WriteLine(":"+Srv->GetServerName()+" PING "+serv->GetName());
2434                                                 serv->SetNextPingTime(curtime + 60);
2435                                         }
2436                                         else
2437                                         {
2438                                                 // they didnt answer, boot them
2439                                                 WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
2440                                                 sock->Squit(serv,"Ping timeout");
2441                                                 sock->Close();
2442                                                 return;
2443                                         }
2444                                 }
2445                         }
2446                 }
2447         }
2448
2449         void AutoConnectServers(time_t curtime)
2450         {
2451                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2452                 {
2453                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
2454                         {
2455                                 log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
2456                                 x->NextConnectTime = curtime + x->AutoConnect;
2457                                 TreeServer* CheckDupe = FindServer(x->Name);
2458                                 if (!CheckDupe)
2459                                 {
2460                                         // an autoconnected server is not connected. Check if its time to connect it
2461                                         WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
2462                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
2463                                         Srv->AddSocket(newsocket);
2464                                 }
2465                         }
2466                 }
2467         }
2468
2469         int HandleVersion(char** parameters, int pcnt, userrec* user)
2470         {
2471                 // we've already checked if pcnt > 0, so this is safe
2472                 TreeServer* found = FindServerMask(parameters[0]);
2473                 if (found)
2474                 {
2475                         std::string Version = found->GetVersion();
2476                         WriteServ(user->fd,"351 %s :%s",user->nick,Version.c_str());
2477                 }
2478                 else
2479                 {
2480                         WriteServ(user->fd,"402 %s %s :No such server",user->nick,parameters[0]);
2481                 }
2482                 return 1;
2483         }
2484         
2485         int HandleConnect(char** parameters, int pcnt, userrec* user)
2486         {
2487                 for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
2488                 {
2489                         if (Srv->MatchText(x->Name.c_str(),parameters[0]))
2490                         {
2491                                 TreeServer* CheckDupe = FindServer(x->Name);
2492                                 if (!CheckDupe)
2493                                 {
2494                                         WriteServ(user->fd,"NOTICE %s :*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",user->nick,x->Name.c_str(),x->IPAddr.c_str(),x->Port);
2495                                         TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name);
2496                                         Srv->AddSocket(newsocket);
2497                                         return 1;
2498                                 }
2499                                 else
2500                                 {
2501                                         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());
2502                                         return 1;
2503                                 }
2504                         }
2505                 }
2506                 WriteServ(user->fd,"NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
2507                 return 1;
2508         }
2509
2510         virtual bool HandleStats(char ** parameters, int pcnt, userrec* user)
2511         {
2512                 if (*parameters[0] == 'c')
2513                 {
2514                         for (unsigned int i = 0; i < LinkBlocks.size(); i++)
2515                         {
2516                                 WriteServ(user->fd,"213 %s C *@%s * %s %d 0 M",user->nick,LinkBlocks[i].IPAddr.c_str(),LinkBlocks[i].Name.c_str(),LinkBlocks[i].Port);
2517                                 WriteServ(user->fd,"244 %s H * * %s",user->nick,LinkBlocks[i].Name.c_str());
2518                         }
2519                         WriteServ(user->fd,"219 %s %s :End of /STATS report",user->nick,parameters[0]);
2520                         WriteOpers("*** Notice: Stats '%s' requested by %s (%s@%s)",parameters[0],user->nick,user->ident,user->host);
2521                         return true;
2522                 }
2523                 return false;
2524         }
2525
2526         virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user)
2527         {
2528                 if (command == "CONNECT")
2529                 {
2530                         return this->HandleConnect(parameters,pcnt,user);
2531                 }
2532                 else if (command == "SQUIT")
2533                 {
2534                         return this->HandleSquit(parameters,pcnt,user);
2535                 }
2536                 else if (command == "STATS")
2537                 {
2538                         return this->HandleStats(parameters,pcnt,user);
2539                 }
2540                 else if (command == "MAP")
2541                 {
2542                         this->HandleMap(parameters,pcnt,user);
2543                         return 1;
2544                 }
2545                 else if (command == "LUSERS")
2546                 {
2547                         this->HandleLusers(parameters,pcnt,user);
2548                         return 1;
2549                 }
2550                 else if (command == "LINKS")
2551                 {
2552                         this->HandleLinks(parameters,pcnt,user);
2553                         return 1;
2554                 }
2555                 else if (command == "WHOIS")
2556                 {
2557                         if (pcnt > 1)
2558                         {
2559                                 // remote whois
2560                                 return this->HandleRemoteWhois(parameters,pcnt,user);
2561                         }
2562                 }
2563                 else if ((command == "VERSION") && (pcnt > 0))
2564                 {
2565                         this->HandleVersion(parameters,pcnt,user);
2566                         return 1;
2567                 }
2568                 else if (Srv->IsValidModuleCommand(command, pcnt, user))
2569                 {
2570                         // this bit of code cleverly routes all module commands
2571                         // to all remote severs *automatically* so that modules
2572                         // can just handle commands locally, without having
2573                         // to have any special provision in place for remote
2574                         // commands and linking protocols.
2575                         std::deque<std::string> params;
2576                         params.clear();
2577                         for (int j = 0; j < pcnt; j++)
2578                         {
2579                                 if (strchr(parameters[j],' '))
2580                                 {
2581                                         params.push_back(":" + std::string(parameters[j]));
2582                                 }
2583                                 else
2584                                 {
2585                                         params.push_back(std::string(parameters[j]));
2586                                 }
2587                         }
2588                         DoOneToMany(user->nick,command,params);
2589                 }
2590                 return 0;
2591         }
2592
2593         virtual void OnGetServerDescription(std::string servername,std::string &description)
2594         {
2595                 TreeServer* s = FindServer(servername);
2596                 if (s)
2597                 {
2598                         description = s->GetDesc();
2599                 }
2600         }
2601
2602         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
2603         {
2604                 if (source->fd > -1)
2605                 {
2606                         std::deque<std::string> params;
2607                         params.push_back(dest->nick);
2608                         params.push_back(channel->name);
2609                         DoOneToMany(source->nick,"INVITE",params);
2610                 }
2611         }
2612
2613         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic)
2614         {
2615                 std::deque<std::string> params;
2616                 params.push_back(chan->name);
2617                 params.push_back(":"+topic);
2618                 DoOneToMany(user->nick,"TOPIC",params);
2619         }
2620
2621         virtual void OnWallops(userrec* user, std::string text)
2622         {
2623                 if (user->fd > -1)
2624                 {
2625                         std::deque<std::string> params;
2626                         params.push_back(":"+text);
2627                         DoOneToMany(user->nick,"WALLOPS",params);
2628                 }
2629         }
2630
2631         virtual void OnUserNotice(userrec* user, void* dest, int target_type, std::string text)
2632         {
2633                 if (target_type == TYPE_USER)
2634                 {
2635                         userrec* d = (userrec*)dest;
2636                         if ((d->fd < 0) && (user->fd > -1))
2637                         {
2638                                 std::deque<std::string> params;
2639                                 params.clear();
2640                                 params.push_back(d->nick);
2641                                 params.push_back(":"+text);
2642                                 DoOneToOne(user->nick,"NOTICE",params,d->server);
2643                         }
2644                 }
2645                 else
2646                 {
2647                         if (user->fd > -1)
2648                         {
2649                                 chanrec *c = (chanrec*)dest;
2650                                 std::deque<TreeServer*> list;
2651                                 GetListOfServersForChannel(c,list);
2652                                 unsigned int ucount = list.size();
2653                                 for (unsigned int i = 0; i < ucount; i++)
2654                                 {
2655                                         TreeSocket* Sock = list[i]->GetSocket();
2656                                         if (Sock)
2657                                                 Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+std::string(c->name)+" :"+text);
2658                                 }
2659                         }
2660                 }
2661         }
2662
2663         virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text)
2664         {
2665                 if (target_type == TYPE_USER)
2666                 {
2667                         // route private messages which are targetted at clients only to the server
2668                         // which needs to receive them
2669                         userrec* d = (userrec*)dest;
2670                         if ((d->fd < 0) && (user->fd > -1))
2671                         {
2672                                 std::deque<std::string> params;
2673                                 params.clear();
2674                                 params.push_back(d->nick);
2675                                 params.push_back(":"+text);
2676                                 DoOneToOne(user->nick,"PRIVMSG",params,d->server);
2677                         }
2678                 }
2679                 else
2680                 {
2681                         if (user->fd > -1)
2682                         {
2683                                 chanrec *c = (chanrec*)dest;
2684                                 std::deque<TreeServer*> list;
2685                                 GetListOfServersForChannel(c,list);
2686                                 unsigned int ucount = list.size();
2687                                 for (unsigned int i = 0; i < ucount; i++)
2688                                 {
2689                                         TreeSocket* Sock = list[i]->GetSocket();
2690                                         if (Sock)
2691                                                 Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+std::string(c->name)+" :"+text);
2692                                 }
2693                         }
2694                 }
2695         }
2696
2697         virtual void OnBackgroundTimer(time_t curtime)
2698         {
2699                 AutoConnectServers(curtime);
2700                 DoPingChecks(curtime);
2701         }
2702
2703         virtual void OnUserJoin(userrec* user, chanrec* channel)
2704         {
2705                 // Only do this for local users
2706                 if (user->fd > -1)
2707                 {
2708                         std::deque<std::string> params;
2709                         params.clear();
2710                         params.push_back(channel->name);
2711                         if (*channel->key)
2712                         {
2713                                 // if the channel has a key, force the join by emulating the key.
2714                                 params.push_back(channel->key);
2715                         }
2716                         if (channel->GetUserCounter() > 1)
2717                         {
2718                                 // not the first in the channel
2719                                 DoOneToMany(user->nick,"JOIN",params);
2720                         }
2721                         else
2722                         {
2723                                 // first in the channel, set up their permissions
2724                                 // and the channel TS with FJOIN.
2725                                 char ts[24];
2726                                 snprintf(ts,24,"%lu",(unsigned long)channel->age);
2727                                 params.clear();
2728                                 params.push_back(channel->name);
2729                                 params.push_back(ts);
2730                                 params.push_back("@"+std::string(user->nick));
2731                                 DoOneToMany(Srv->GetServerName(),"FJOIN",params);
2732                         }
2733                 }
2734         }
2735
2736         virtual void OnChangeHost(userrec* user, std::string newhost)
2737         {
2738                 // only occurs for local clients
2739                 if (user->registered != 7)
2740                         return;
2741                 std::deque<std::string> params;
2742                 params.push_back(newhost);
2743                 DoOneToMany(user->nick,"FHOST",params);
2744         }
2745
2746         virtual void OnChangeName(userrec* user, std::string gecos)
2747         {
2748                 // only occurs for local clients
2749                 if (user->registered != 7)
2750                         return;
2751                 std::deque<std::string> params;
2752                 params.push_back(gecos);
2753                 DoOneToMany(user->nick,"FNAME",params);
2754         }
2755
2756         virtual void OnUserPart(userrec* user, chanrec* channel)
2757         {
2758                 if (user->fd > -1)
2759                 {
2760                         std::deque<std::string> params;
2761                         params.push_back(channel->name);
2762                         DoOneToMany(user->nick,"PART",params);
2763                 }
2764         }
2765
2766         virtual void OnUserConnect(userrec* user)
2767         {
2768                 char agestr[MAXBUF];
2769                 if (user->fd > -1)
2770                 {
2771                         std::deque<std::string> params;
2772                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
2773                         params.push_back(agestr);
2774                         params.push_back(user->nick);
2775                         params.push_back(user->host);
2776                         params.push_back(user->dhost);
2777                         params.push_back(user->ident);
2778                         params.push_back("+"+std::string(user->modes));
2779                         params.push_back(user->ip);
2780                         params.push_back(":"+std::string(user->fullname));
2781                         DoOneToMany(Srv->GetServerName(),"NICK",params);
2782                 }
2783         }
2784
2785         virtual void OnUserQuit(userrec* user, std::string reason)
2786         {
2787                 if ((user->fd > -1) && (user->registered == 7))
2788                 {
2789                         std::deque<std::string> params;
2790                         params.push_back(":"+reason);
2791                         DoOneToMany(user->nick,"QUIT",params);
2792                 }
2793         }
2794
2795         virtual void OnUserPostNick(userrec* user, std::string oldnick)
2796         {
2797                 if (user->fd > -1)
2798                 {
2799                         std::deque<std::string> params;
2800                         params.push_back(user->nick);
2801                         DoOneToMany(oldnick,"NICK",params);
2802                 }
2803         }
2804
2805         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
2806         {
2807                 if (source->fd > -1)
2808                 {
2809                         std::deque<std::string> params;
2810                         params.push_back(chan->name);
2811                         params.push_back(user->nick);
2812                         params.push_back(":"+reason);
2813                         DoOneToMany(source->nick,"KICK",params);
2814                 }
2815         }
2816
2817         virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
2818         {
2819                 std::deque<std::string> params;
2820                 params.push_back(dest->nick);
2821                 params.push_back(":"+reason);
2822                 DoOneToMany(source->nick,"KILL",params);
2823         }
2824
2825         virtual void OnRehash(std::string parameter)
2826         {
2827                 if (parameter != "")
2828                 {
2829                         std::deque<std::string> params;
2830                         params.push_back(parameter);
2831                         DoOneToMany(Srv->GetServerName(),"REHASH",params);
2832                         // check for self
2833                         if (Srv->MatchText(Srv->GetServerName(),parameter))
2834                         {
2835                                 Srv->SendOpers("*** Remote rehash initiated from server \002"+Srv->GetServerName()+"\002.");
2836                                 Srv->RehashServer();
2837                         }
2838                 }
2839                 ReadConfiguration(false);
2840         }
2841
2842         // note: the protocol does not allow direct umode +o except
2843         // via NICK with 8 params. sending OPERTYPE infers +o modechange
2844         // locally.
2845         virtual void OnOper(userrec* user, std::string opertype)
2846         {
2847                 if (user->fd > -1)
2848                 {
2849                         std::deque<std::string> params;
2850                         params.push_back(opertype);
2851                         DoOneToMany(user->nick,"OPERTYPE",params);
2852                 }
2853         }
2854
2855         void OnLine(userrec* source, std::string host, bool adding, char linetype, long duration, std::string reason)
2856         {
2857                 if (source->fd > -1)
2858                 {
2859                         char type[8];
2860                         snprintf(type,8,"%cLINE",linetype);
2861                         std::string stype = type;
2862                         if (adding)
2863                         {
2864                                 char sduration[MAXBUF];
2865                                 snprintf(sduration,MAXBUF,"%ld",duration);
2866                                 std::deque<std::string> params;
2867                                 params.push_back(host);
2868                                 params.push_back(sduration);
2869                                 params.push_back(":"+reason);
2870                                 DoOneToMany(source->nick,stype,params);
2871                         }
2872                         else
2873                         {
2874                                 std::deque<std::string> params;
2875                                 params.push_back(host);
2876                                 DoOneToMany(source->nick,stype,params);
2877                         }
2878                 }
2879         }
2880
2881         virtual void OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask)
2882         {
2883                 OnLine(source,hostmask,true,'G',duration,reason);
2884         }
2885         
2886         virtual void OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask)
2887         {
2888                 OnLine(source,ipmask,true,'Z',duration,reason);
2889         }
2890
2891         virtual void OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask)
2892         {
2893                 OnLine(source,nickmask,true,'Q',duration,reason);
2894         }
2895
2896         virtual void OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask)
2897         {
2898                 OnLine(source,hostmask,true,'E',duration,reason);
2899         }
2900
2901         virtual void OnDelGLine(userrec* source, std::string hostmask)
2902         {
2903                 OnLine(source,hostmask,false,'G',0,"");
2904         }
2905
2906         virtual void OnDelZLine(userrec* source, std::string ipmask)
2907         {
2908                 OnLine(source,ipmask,false,'Z',0,"");
2909         }
2910
2911         virtual void OnDelQLine(userrec* source, std::string nickmask)
2912         {
2913                 OnLine(source,nickmask,false,'Q',0,"");
2914         }
2915
2916         virtual void OnDelELine(userrec* source, std::string hostmask)
2917         {
2918                 OnLine(source,hostmask,false,'E',0,"");
2919         }
2920
2921         virtual void OnMode(userrec* user, void* dest, int target_type, std::string text)
2922         {
2923                 if ((user->fd > -1) && (user->registered == 7))
2924                 {
2925                         if (target_type == TYPE_USER)
2926                         {
2927                                 userrec* u = (userrec*)dest;
2928                                 std::deque<std::string> params;
2929                                 params.push_back(u->nick);
2930                                 params.push_back(text);
2931                                 DoOneToMany(user->nick,"MODE",params);
2932                         }
2933                         else
2934                         {
2935                                 chanrec* c = (chanrec*)dest;
2936                                 std::deque<std::string> params;
2937                                 params.push_back(c->name);
2938                                 params.push_back(text);
2939                                 DoOneToMany(user->nick,"MODE",params);
2940                         }
2941                 }
2942         }
2943
2944         virtual void ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline)
2945         {
2946                 TreeSocket* s = (TreeSocket*)opaque;
2947                 if (target)
2948                 {
2949                         if (target_type == TYPE_USER)
2950                         {
2951                                 userrec* u = (userrec*)target;
2952                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+u->nick+" "+modeline);
2953                         }
2954                         else
2955                         {
2956                                 chanrec* c = (chanrec*)target;
2957                                 s->WriteLine(":"+Srv->GetServerName()+" FMODE "+c->name+" "+modeline);
2958                         }
2959                 }
2960         }
2961
2962         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata)
2963         {
2964                 TreeSocket* s = (TreeSocket*)opaque;
2965                 if (target)
2966                 {
2967                         if (target_type == TYPE_USER)
2968                         {
2969                                 userrec* u = (userrec*)target;
2970                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+u->nick+" "+extname+" :"+extdata);
2971                         }
2972                         else
2973                         {
2974                                 chanrec* c = (chanrec*)target;
2975                                 s->WriteLine(":"+Srv->GetServerName()+" METADATA "+c->name+" "+extname+" :"+extdata);
2976                         }
2977                 }
2978         }
2979
2980         virtual ~ModuleSpanningTree()
2981         {
2982         }
2983
2984         virtual Version GetVersion()
2985         {
2986                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
2987         }
2988 };
2989
2990
2991 class ModuleSpanningTreeFactory : public ModuleFactory
2992 {
2993  public:
2994         ModuleSpanningTreeFactory()
2995         {
2996         }
2997         
2998         ~ModuleSpanningTreeFactory()
2999         {
3000         }
3001         
3002         virtual Module * CreateModule(Server* Me)
3003         {
3004                 TreeProtocolModule = new ModuleSpanningTree(Me);
3005                 return TreeProtocolModule;
3006         }
3007         
3008 };
3009
3010
3011 extern "C" void * init_module( void )
3012 {
3013         return new ModuleSpanningTreeFactory;
3014 }