]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Fix modecount on remote NICK
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Povides a spanning tree server link protocol */
15
16 #include "configreader.h"
17 #include "users.h"
18 #include "channels.h"
19 #include "modules.h"
20 #include "commands/cmd_whois.h"
21 #include "commands/cmd_stats.h"
22 #include "socket.h"
23 #include "inspircd.h"
24 #include "wildcard.h"
25 #include "xline.h"
26 #include "transport.h"
27
28 /** If you make a change which breaks the protocol, increment this.
29  * If you  completely change the protocol, completely change the number.
30  *
31  * IMPORTANT: If you make changes, document your changes here, without fail:
32  * http://www.inspircd.org/wiki/List_of_protocol_changes_between_versions
33  *
34  * Failure to document your protocol changes will result in a painfully
35  * painful death by pain. You have been warned.
36  */
37 const long ProtocolVersion = 1103;
38
39 /*
40  * The server list in InspIRCd is maintained as two structures
41  * which hold the data in different ways. Most of the time, we
42  * want to very quicky obtain three pieces of information:
43  *
44  * (1) The information on a server
45  * (2) The information on the server we must send data through
46  *     to actually REACH the server we're after
47  * (3) Potentially, the child/parent objects of this server
48  *
49  * The InspIRCd spanning protocol provides easy access to these
50  * by storing the data firstly in a recursive structure, where
51  * each item references its parent item, and a dynamic list
52  * of child items, and another structure which stores the items
53  * hashed, linearly. This means that if we want to find a server
54  * by name quickly, we can look it up in the hash, avoiding
55  * any O(n) lookups. If however, during a split or sync, we want
56  * to apply an operation to a server, and any of its child objects
57  * we can resort to recursion to walk the tree structure.
58  * Any socket can have one of five states at any one time.
59  * The LISTENER state indicates a socket which is listening
60  * for connections. It cannot receive data itself, only incoming
61  * sockets.
62  * The CONNECTING state indicates an outbound socket which is
63  * waiting to be writeable.
64  * The WAIT_AUTH_1 state indicates the socket is outbound and
65  * has successfully connected, but has not yet sent and received
66  * SERVER strings.
67  * The WAIT_AUTH_2 state indicates that the socket is inbound
68  * (allocated by a LISTENER) but has not yet sent and received
69  * SERVER strings.
70  * The CONNECTED state represents a fully authorized, fully
71  * connected server.
72  */
73 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
74
75 /* Foward declarations */
76 class TreeServer;
77 class TreeSocket;
78 class Link;
79 class ModuleSpanningTree;
80 class SpanningTreeUtilities;
81
82 /* This hash_map holds the hash equivalent of the server
83  * tree, used for rapid linear lookups.
84  */
85 typedef nspace::hash_map<std::string, TreeServer*, nspace::hash<string>, irc::StrHashComp> server_hash;
86
87 typedef std::map<TreeServer*,TreeServer*> TreeServerList;
88
89 /** A group of modules that implement InspSocketHook
90  * that we can use to hook our server to server connections.
91  */
92 typedef std::map<irc::string, Module*> hookmodules;
93
94 /** The Link class might as well be a struct,
95  * but this is C++ and we don't believe in structs (!).
96  * It holds the entire information of one <link>
97  * tag from the main config file. We maintain a list
98  * of them, and populate the list on rehash/load.
99  */
100 class Link : public classbase
101 {
102  public:
103         irc::string Name;
104         std::string IPAddr;
105         int Port;
106         std::string SendPass;
107         std::string RecvPass;
108         unsigned long AutoConnect;
109         time_t NextConnectTime;
110         bool HiddenFromStats;
111         std::string FailOver;
112         std::string Hook;
113         int Timeout;
114 };
115
116 class HandshakeTimer : public InspTimer
117 {
118  private:
119         InspIRCd* Instance;
120         TreeSocket* sock;
121         Link* lnk;
122         SpanningTreeUtilities* Utils;
123         int thefd;
124  public:
125         HandshakeTimer(InspIRCd* Inst, TreeSocket* s, Link* l, SpanningTreeUtilities* u);
126         virtual void Tick(time_t TIME);
127 };
128
129
130 /** Contains helper functions and variables for this module,
131  * and keeps them out of the global namespace
132  */
133 class SpanningTreeUtilities
134 {
135  private:
136         /** Creator server
137          */
138         InspIRCd* ServerInstance;
139  public:
140         /** Creator module
141          */
142         ModuleSpanningTree* Creator;
143         /** Flatten links and /MAP for non-opers
144          */
145         bool FlatLinks;
146         /** Hide U-Lined servers in /MAP and /LINKS
147          */
148         bool HideULines;
149         /** Announce TS changes to channels on merge
150          */
151         bool AnnounceTSChange;
152         /** Synchronize timestamps between servers
153          */
154         bool EnableTimeSync;
155         /** Socket bindings for listening sockets
156          */
157         std::vector<TreeSocket*> Bindings;
158         /** This variable represents the root of the server tree
159          */
160         TreeServer *TreeRoot;
161         /** IPs allowed to link to us
162          */
163         std::vector<std::string> ValidIPs;
164         /** Hash of currently connected servers by name
165          */
166         server_hash serverlist;
167         /** Holds the data from the <link> tags in the conf
168          */
169         std::vector<Link> LinkBlocks;
170
171         hookmodules hooks;
172         std::vector<std::string> hooknames;
173
174         /** Initialise utility class
175          */
176         SpanningTreeUtilities(InspIRCd* Instance, ModuleSpanningTree* Creator);
177         /** Destroy class and free listeners etc
178          */
179         ~SpanningTreeUtilities();
180         /** Send a message from this server to one other local or remote
181          */
182         bool DoOneToOne(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string target);
183         /** Send a message from this server to all but one other, local or remote
184          */
185         bool DoOneToAllButSender(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string omit);
186         /** Send a message from this server to all but one other, local or remote
187          */
188         bool DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit);
189         /** Send a message from this server to all others
190          */
191         bool DoOneToMany(const std::string &prefix, const std::string &command, std::deque<std::string> &params);
192         /** Send a message from this server to all others
193          */
194         bool DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params);
195         /** Send a message from this server to all others, without doing any processing on the command (e.g. send it as-is with colons and all)
196          */
197         bool DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, std::deque<std::string> &params);
198         /** Read the spanningtree module's tags from the config file
199          */
200         void ReadConfiguration(bool rebind);
201         /** Add a server to the server list for GetListOfServersForChannel
202          */
203         void AddThisServer(TreeServer* server, TreeServerList &list);
204         /** Compile a list of servers which contain members of channel c
205          */
206         void GetListOfServersForChannel(chanrec* c, TreeServerList &list, char status, const CUList &exempt_list);
207         /** Find a server by name
208          */
209         TreeServer* FindServer(const std::string &ServerName);
210         /** Find a route to a server by name
211          */
212         TreeServer* BestRouteTo(const std::string &ServerName);
213         /** Find a server by glob mask
214          */
215         TreeServer* FindServerMask(const std::string &ServerName);
216         /** Returns true if this is a server name we recognise
217          */
218         bool IsServer(const std::string &ServerName);
219         /** Attempt to connect to the failover link of link x
220          */
221         void DoFailOver(Link* x);
222         /** Find a link tag from a server name
223          */
224         Link* FindLink(const std::string& name);
225 };
226
227
228 /** Each server in the tree is represented by one class of
229  * type TreeServer. A locally connected TreeServer can
230  * have a class of type TreeSocket associated with it, for
231  * remote servers, the TreeSocket entry will be NULL.
232  * Each server also maintains a pointer to its parent
233  * (NULL if this server is ours, at the top of the tree)
234  * and a pointer to its "Route" (see the comments in the
235  * constructors below), and also a dynamic list of pointers
236  * to its children which can be iterated recursively
237  * if required. Creating or deleting objects of type
238  i* TreeServer automatically maintains the hash_map of
239  * TreeServer items, deleting and inserting them as they
240  * are created and destroyed.
241  */
242 class TreeServer : public classbase
243 {
244         InspIRCd* ServerInstance;               /* Creator */
245         TreeServer* Parent;                     /* Parent entry */
246         TreeServer* Route;                      /* Route entry */
247         std::vector<TreeServer*> Children;      /* List of child objects */
248         irc::string ServerName;                 /* Server's name */
249         std::string ServerDesc;                 /* Server's description */
250         std::string VersionString;              /* Version string or empty string */
251         int UserCount;                          /* Not used in this version */
252         int OperCount;                          /* Not used in this version */
253         TreeSocket* Socket;                     /* For directly connected servers this points at the socket object */
254         time_t NextPing;                        /* After this time, the server should be PINGed*/
255         bool LastPingWasGood;                   /* True if the server responded to the last PING with a PONG */
256         SpanningTreeUtilities* Utils;           /* Utility class */
257         
258  public:
259
260         /** We don't use this constructor. Its a dummy, and won't cause any insertion
261          * of the TreeServer into the hash_map. See below for the two we DO use.
262          */
263         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance) : ServerInstance(Instance), Utils(Util)
264         {
265                 Parent = NULL;
266                 ServerName = "";
267                 ServerDesc = "";
268                 VersionString = "";
269                 UserCount = OperCount = 0;
270                 VersionString = ServerInstance->GetVersionString();
271         }
272
273         /** We use this constructor only to create the 'root' item, Utils->TreeRoot, which
274          * represents our own server. Therefore, it has no route, no parent, and
275          * no socket associated with it. Its version string is our own local version.
276          */
277         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc) : ServerInstance(Instance), ServerName(Name.c_str()), ServerDesc(Desc), Utils(Util)
278         {
279                 Parent = NULL;
280                 VersionString = "";
281                 UserCount = ServerInstance->UserCount();
282                 OperCount = ServerInstance->OperCount();
283                 VersionString = ServerInstance->GetVersionString();
284                 Route = NULL;
285                 Socket = NULL; /* Fix by brain */
286                 AddHashEntry();
287         }
288
289         /** When we create a new server, we call this constructor to initialize it.
290          * This constructor initializes the server's Route and Parent, and sets up
291          * its ping counters so that it will be pinged one minute from now.
292          */
293         TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock)
294                 : ServerInstance(Instance), Parent(Above), ServerName(Name.c_str()), ServerDesc(Desc), Socket(Sock), Utils(Util)
295         {
296                 VersionString = "";
297                 UserCount = OperCount = 0;
298                 this->SetNextPingTime(time(NULL) + 60);
299                 this->SetPingFlag();
300
301                 /* find the 'route' for this server (e.g. the one directly connected
302                  * to the local server, which we can use to reach it)
303                  *
304                  * In the following example, consider we have just added a TreeServer
305                  * class for server G on our network, of which we are server A.
306                  * To route traffic to G (marked with a *) we must send the data to
307                  * B (marked with a +) so this algorithm initializes the 'Route'
308                  * value to point at whichever server traffic must be routed through
309                  * to get here. If we were to try this algorithm with server B,
310                  * the Route pointer would point at its own object ('this').
311                  *
312                  *              A
313                  *             / \
314                  *          + B   C
315                  *           / \   \
316                  *          D   E   F
317                  *         /         \
318                  *      * G           H
319                  *
320                  * We only run this algorithm when a server is created, as
321                  * the routes remain constant while ever the server exists, and
322                  * do not need to be re-calculated.
323                  */
324
325                 Route = Above;
326                 if (Route == Utils->TreeRoot)
327                 {
328                         Route = this;
329                 }
330                 else
331                 {
332                         while (this->Route->GetParent() != Utils->TreeRoot)
333                         {
334                                 this->Route = Route->GetParent();
335                         }
336                 }
337
338                 /* Because recursive code is slow and takes a lot of resources,
339                  * we store two representations of the server tree. The first
340                  * is a recursive structure where each server references its
341                  * children and its parent, which is used for netbursts and
342                  * netsplits to dump the whole dataset to the other server,
343                  * and the second is used for very fast lookups when routing
344                  * messages and is instead a hash_map, where each item can
345                  * be referenced by its server name. The AddHashEntry()
346                  * call below automatically inserts each TreeServer class
347                  * into the hash_map as it is created. There is a similar
348                  * maintainance call in the destructor to tidy up deleted
349                  * servers.
350                  */
351
352                 this->AddHashEntry();
353         }
354
355         int QuitUsers(const std::string &reason)
356         {
357                 ServerInstance->Log(DEBUG,"Removing all users from server %s",this->ServerName.c_str());
358                 const char* reason_s = reason.c_str();
359                 std::vector<userrec*> time_to_die;
360                 for (user_hash::iterator n = ServerInstance->clientlist->begin(); n != ServerInstance->clientlist->end(); n++)
361                 {
362                         if (!strcmp(n->second->server, this->ServerName.c_str()))
363                         {
364                                 time_to_die.push_back(n->second);
365                         }
366                 }
367                 for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
368                 {
369                         userrec* a = (userrec*)*n;
370                         ServerInstance->Log(DEBUG,"Kill %s fd=%d",a->nick,a->GetFd());
371                         if (!IS_LOCAL(a))
372                                 userrec::QuitUser(ServerInstance,a,reason_s);
373                 }
374                 return time_to_die.size();
375         }
376
377         /** This method is used to add the structure to the
378          * hash_map for linear searches. It is only called
379          * by the constructors.
380          */
381         void AddHashEntry()
382         {
383                 server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
384                 if (iter == Utils->serverlist.end())
385                         Utils->serverlist[this->ServerName.c_str()] = this;
386         }
387
388         /** This method removes the reference to this object
389          * from the hash_map which is used for linear searches.
390          * It is only called by the default destructor.
391          */
392         void DelHashEntry()
393         {
394                 server_hash::iterator iter = Utils->serverlist.find(this->ServerName.c_str());
395                 if (iter != Utils->serverlist.end())
396                         Utils->serverlist.erase(iter);
397         }
398
399         /** These accessors etc should be pretty self-
400          * explanitory.
401          */
402         TreeServer* GetRoute()
403         {
404                 return Route;
405         }
406
407         std::string GetName()
408         {
409                 return ServerName.c_str();
410         }
411
412         std::string GetDesc()
413         {
414                 return ServerDesc;
415         }
416
417         std::string GetVersion()
418         {
419                 return VersionString;
420         }
421
422         void SetNextPingTime(time_t t)
423         {
424                 this->NextPing = t;
425                 LastPingWasGood = false;
426         }
427
428         time_t NextPingTime()
429         {
430                 return NextPing;
431         }
432
433         bool AnsweredLastPing()
434         {
435                 return LastPingWasGood;
436         }
437
438         void SetPingFlag()
439         {
440                 LastPingWasGood = true;
441         }
442
443         int GetUserCount()
444         {
445                 return UserCount;
446         }
447
448         void AddUserCount()
449         {
450                 UserCount++;
451         }
452
453         void DelUserCount()
454         {
455                 UserCount--;
456         }
457
458         int GetOperCount()
459         {
460                 return OperCount;
461         }
462
463         TreeSocket* GetSocket()
464         {
465                 return Socket;
466         }
467
468         TreeServer* GetParent()
469         {
470                 return Parent;
471         }
472
473         void SetVersion(const std::string &Version)
474         {
475                 VersionString = Version;
476         }
477
478         unsigned int ChildCount()
479         {
480                 return Children.size();
481         }
482
483         TreeServer* GetChild(unsigned int n)
484         {
485                 if (n < Children.size())
486                 {
487                         /* Make sure they  cant request
488                          * an out-of-range object. After
489                          * all we know what these programmer
490                          * types are like *grin*.
491                          */
492                         return Children[n];
493                 }
494                 else
495                 {
496                         return NULL;
497                 }
498         }
499
500         void AddChild(TreeServer* Child)
501         {
502                 Children.push_back(Child);
503         }
504
505         bool DelChild(TreeServer* Child)
506         {
507                 for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
508                 {
509                         if (*a == Child)
510                         {
511                                 Children.erase(a);
512                                 return true;
513                         }
514                 }
515                 return false;
516         }
517
518         /** Removes child nodes of this node, and of that node, etc etc.
519          * This is used during netsplits to automatically tidy up the
520          * server tree. It is slow, we don't use it for much else.
521          */
522         bool Tidy()
523         {
524                 bool stillchildren = true;
525                 while (stillchildren)
526                 {
527                         stillchildren = false;
528                         for (std::vector<TreeServer*>::iterator a = Children.begin(); a < Children.end(); a++)
529                         {
530                                 TreeServer* s = (TreeServer*)*a;
531                                 s->Tidy();
532                                 Children.erase(a);
533                                 DELETE(s);
534                                 stillchildren = true;
535                                 break;
536                         }
537                 }
538                 return true;
539         }
540
541         ~TreeServer()
542         {
543                 /* We'd better tidy up after ourselves, eh? */
544                 this->DelHashEntry();
545         }
546 };
547
548 /** Yay for fast searches!
549  * This is hundreds of times faster than recursion
550  * or even scanning a linked list, especially when
551  * there are more than a few servers to deal with.
552  * (read as: lots).
553  */
554 TreeServer* SpanningTreeUtilities::FindServer(const std::string &ServerName)
555 {
556         server_hash::iterator iter;
557         iter = serverlist.find(ServerName.c_str());
558         if (iter != serverlist.end())
559         {
560                 return iter->second;
561         }
562         else
563         {
564                 return NULL;
565         }
566 }
567
568 /** Returns the locally connected server we must route a
569  * message through to reach server 'ServerName'. This
570  * only applies to one-to-one and not one-to-many routing.
571  * See the comments for the constructor of TreeServer
572  * for more details.
573  */
574 TreeServer* SpanningTreeUtilities::BestRouteTo(const std::string &ServerName)
575 {
576         if (ServerName.c_str() == TreeRoot->GetName())
577                 return NULL;
578         TreeServer* Found = FindServer(ServerName);
579         if (Found)
580         {
581                 return Found->GetRoute();
582         }
583         else
584         {
585                 return NULL;
586         }
587 }
588
589 /** Find the first server matching a given glob mask.
590  * Theres no find-using-glob method of hash_map [awwww :-(]
591  * so instead, we iterate over the list using an iterator
592  * and match each one until we get a hit. Yes its slow,
593  * deal with it.
594  */
595 TreeServer* SpanningTreeUtilities::FindServerMask(const std::string &ServerName)
596 {
597         for (server_hash::iterator i = serverlist.begin(); i != serverlist.end(); i++)
598         {
599                 if (match(i->first.c_str(),ServerName.c_str()))
600                         return i->second;
601         }
602         return NULL;
603 }
604
605 /* A convenient wrapper that returns true if a server exists */
606 bool SpanningTreeUtilities::IsServer(const std::string &ServerName)
607 {
608         return (FindServer(ServerName) != NULL);
609 }
610
611
612 /** Handle /RCONNECT
613  */
614 class cmd_rconnect : public command_t
615 {
616         Module* Creator;
617         SpanningTreeUtilities* Utils;
618  public:
619         cmd_rconnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util) : command_t(Instance, "RCONNECT", 'o', 2), Creator(Callback), Utils(Util)
620         {
621                 this->source = "m_spanningtree.so";
622                 syntax = "<remote-server-mask> <target-server-mask>";
623         }
624
625         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
626         {
627                 if (IS_LOCAL(user))
628                 {
629                         if (!Utils->FindServer(parameters[0]))
630                         {
631                                 user->WriteServ("NOTICE %s :*** RCONNECT: Server \002%s\002 isn't connected to the network!", user->nick, parameters[0]);
632                                 return CMD_FAILURE;
633                         }
634                         
635                         user->WriteServ("NOTICE %s :*** RCONNECT: Sending remote connect to \002%s\002 to connect server \002%s\002.",user->nick,parameters[0],parameters[1]);
636                 }
637                 
638                 /* Is this aimed at our server? */
639                 if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameters[0]))
640                 {
641                         /* Yes, initiate the given connect */
642                         ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick,parameters[0],parameters[1]);
643                         const char* para[1];
644                         para[0] = parameters[1];
645                         std::string original_command = std::string("CONNECT ") + parameters[1];
646                         Creator->OnPreCommand("CONNECT", para, 1, user, true, original_command);
647                 }
648                 
649                 return CMD_SUCCESS;
650         }
651 };
652  
653
654
655 /** Every SERVER connection inbound or outbound is represented by
656  * an object of type TreeSocket.
657  * TreeSockets, being inherited from InspSocket, can be tied into
658  * the core socket engine, and we cn therefore receive activity events
659  * for them, just like activex objects on speed. (yes really, that
660  * is a technical term!) Each of these which relates to a locally
661  * connected server is assocated with it, by hooking it onto a
662  * TreeSocket class using its constructor. In this way, we can
663  * maintain a list of servers, some of which are directly connected,
664  * some of which are not.
665  */
666 class TreeSocket : public InspSocket
667 {
668         SpanningTreeUtilities* Utils;
669         std::string myhost;
670         std::string in_buffer;
671         ServerState LinkState;
672         std::string InboundServerName;
673         std::string InboundDescription;
674         int num_lost_users;
675         int num_lost_servers;
676         time_t NextPing;
677         bool LastPingWasGood;
678         bool bursting;
679         unsigned int keylength;
680         std::string ModuleList;
681         std::map<std::string,std::string> CapKeys;
682         Module* Hook;
683
684  public:
685
686         /** Because most of the I/O gubbins are encapsulated within
687          * InspSocket, we just call the superclass constructor for
688          * most of the action, and append a few of our own values
689          * to it.
690          */
691         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, Module* HookMod = NULL)
692                 : InspSocket(SI, host, port, listening, maxtime), Utils(Util), Hook(HookMod)
693         {
694                 myhost = host;
695                 this->LinkState = LISTENER;
696
697                 Instance->Log(DEBUG, "HOOK = %08x", Hook);
698
699                 if (listening && Hook)
700                         InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
701         }
702
703         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, std::string ServerName, Module* HookMod = NULL)
704                 : InspSocket(SI, host, port, listening, maxtime), Utils(Util), Hook(HookMod)
705         {
706                 myhost = ServerName;
707                 this->LinkState = CONNECTING;
708
709                 if (Hook)
710                         InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
711         }
712
713         /** When a listening socket gives us a new file descriptor,
714          * we must associate it with a socket without creating a new
715          * connection. This constructor is used for this purpose.
716          */
717         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, int newfd, char* ip, Module* HookMod = NULL)
718                 : InspSocket(SI, newfd, ip), Utils(Util), Hook(HookMod)
719         {
720                 this->LinkState = WAIT_AUTH_1;
721
722                 /* If we have a transport module hooked to the parent, hook the same module to this
723                  * socket, and set a timer waiting for handshake before we send CAPAB etc.
724                  */
725                 if (Hook)
726                 {
727                         InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
728                         Instance->Timers->AddTimer(new HandshakeTimer(Instance, this, &(Utils->LinkBlocks[0]), this->Utils));
729                 }
730                 else
731                 {
732                         /* Otherwise, theres no lower layer transport in plain TCP/IP,
733                          * so just send the capabilities right now.
734                          */
735                         this->SendCapabilities();
736                 }
737         }
738
739         ServerState GetLinkState()
740         {
741                 return this->LinkState;
742         }
743
744         Module* GetHook()
745         {
746                 return this->Hook;
747         }
748
749         ~TreeSocket()
750         {
751                 if (Hook)
752                         InspSocketUnhookRequest(this, (Module*)Utils->Creator, Hook).Send();
753         }
754         
755         /** When an outbound connection finishes connecting, we receive
756          * this event, and must send our SERVER string to the other
757          * side. If the other side is happy, as outlined in the server
758          * to server docs on the inspircd.org site, the other side
759          * will then send back its own server string.
760          */
761         virtual bool OnConnected()
762         {
763                 if (this->LinkState == CONNECTING)
764                 {
765                         /* we do not need to change state here. */
766                         for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
767                         {
768                                 if (x->Name == this->myhost)
769                                 {
770                                         this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] started.");
771
772                                         if (Hook)
773                                         {
774                                                 InspSocketHookRequest(this, (Module*)Utils->Creator, Hook).Send();
775                                                 this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] using transport \2"+x->Hook+"\2");
776                                         }
777                                         else
778                                                 this->SendCapabilities();
779
780                                         /* found who we're supposed to be connecting to, send the neccessary gubbins. */
781                                         if (Hook)
782                                                 Instance->Timers->AddTimer(new HandshakeTimer(Instance, this, &(*x), this->Utils));
783                                         else
784                                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+x->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
785
786                                         return true;
787                                 }
788                         }
789                 }
790                 /* There is a (remote) chance that between the /CONNECT and the connection
791                  * being accepted, some muppet has removed the <link> block and rehashed.
792                  * If that happens the connection hangs here until it's closed. Unlikely
793                  * and rather harmless.
794                  */
795                 this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2 lost link tag(!)");
796                 return true;
797         }
798         
799         virtual void OnError(InspSocketError e)
800         {
801                 /* We don't handle this method, because all our
802                  * dirty work is done in OnClose() (see below)
803                  * which is still called on error conditions too.
804                  */
805                 if (e == I_ERR_CONNECT)
806                 {
807                         this->Instance->SNO->WriteToSnoMask('l',"Connection failed: Connection to \002"+myhost+"\002 refused");
808                         Link* MyLink = Utils->FindLink(myhost);
809                         if (MyLink)
810                                 Utils->DoFailOver(MyLink);
811                 }
812         }
813
814         virtual int OnDisconnect()
815         {
816                 /* For the same reason as above, we don't
817                  * handle OnDisconnect()
818                  */
819                 return true;
820         }
821
822         /** Recursively send the server tree with distances as hops.
823          * This is used during network burst to inform the other server
824          * (and any of ITS servers too) of what servers we know about.
825          * If at any point any of these servers already exist on the other
826          * end, our connection may be terminated. The hopcounts given
827          * by this function are relative, this doesn't matter so long as
828          * they are all >1, as all the remote servers re-calculate them
829          * to be relative too, with themselves as hop 0.
830          */
831         void SendServers(TreeServer* Current, TreeServer* s, int hops)
832         {
833                 char command[1024];
834                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
835                 {
836                         TreeServer* recursive_server = Current->GetChild(q);
837                         if (recursive_server != s)
838                         {
839                                 snprintf(command,1024,":%s SERVER %s * %d :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,recursive_server->GetDesc().c_str());
840                                 this->WriteLine(command);
841                                 this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
842                                 /* down to next level */
843                                 this->SendServers(recursive_server, s, hops+1);
844                         }
845                 }
846         }
847
848         std::string MyCapabilities()
849         {
850                 std::vector<std::string> modlist;
851                 std::string capabilities = "";
852
853                 for (int i = 0; i <= this->Instance->GetModuleCount(); i++)
854                 {
855                         if (this->Instance->modules[i]->GetVersion().Flags & VF_COMMON)
856                                 modlist.push_back(this->Instance->Config->module_names[i]);
857                 }
858                 sort(modlist.begin(),modlist.end());
859                 for (unsigned int i = 0; i < modlist.size(); i++)
860                 {
861                         if (i)
862                                 capabilities = capabilities + ",";
863                         capabilities = capabilities + modlist[i];
864                 }
865                 return capabilities;
866         }
867         
868         void SendCapabilities()
869         {
870                 irc::commasepstream modulelist(MyCapabilities());
871
872                 this->WriteLine("CAPAB START");
873
874                 /* Send module names, split at 509 length */
875                 std::string item = "*";
876                 std::string line = "CAPAB MODULES ";
877                 while ((item = modulelist.GetToken()) != "")
878                 {
879                         if (line.length() + item.length() + 1 > 509)
880                         {
881                                 this->WriteLine(line);
882                                 line = "CAPAB MODULES ";
883                         }
884
885                         if (line != "CAPAB MODULES ")
886                                 line.append(",");
887
888                         line.append(item);
889                 }
890                 if (line != "CAPAB MODULES ")
891                         this->WriteLine(line);
892
893                 int ip6 = 0;
894                 int ip6support = 0;
895 #ifdef IPV6
896                 ip6 = 1;
897 #endif
898 #ifdef SUPPORT_IP6LINKS
899                 ip6support = 1;
900 #endif
901                 this->WriteLine("CAPAB CAPABILITIES :NICKMAX="+ConvToStr(NICKMAX)+" HALFOP="+ConvToStr(this->Instance->Config->AllowHalfop)+" CHANMAX="+ConvToStr(CHANMAX)+" MAXMODES="+ConvToStr(MAXMODES)+" IDENTMAX="+ConvToStr(IDENTMAX)+" MAXQUIT="+ConvToStr(MAXQUIT)+" MAXTOPIC="+ConvToStr(MAXTOPIC)+" MAXKICK="+ConvToStr(MAXKICK)+" MAXGECOS="+ConvToStr(MAXGECOS)+" MAXAWAY="+ConvToStr(MAXAWAY)+" IP6NATIVE="+ConvToStr(ip6)+" IP6SUPPORT="+ConvToStr(ip6support)+" PROTOCOL="+ConvToStr(ProtocolVersion));
902
903                 this->WriteLine("CAPAB END");
904         }
905
906         /* Check a comma seperated list for an item */
907         bool HasItem(const std::string &list, const std::string &item)
908         {
909                 irc::commasepstream seplist(list);
910
911                 std::string item2 = "*";
912                 while ((item2 = seplist.GetToken()) != "")
913                 {
914                         if (item2 == item)
915                                 return true;
916                 }
917
918                 return false;
919         }
920
921         /* Isolate and return the elements that are different between two comma seperated lists */
922         std::string ListDifference(const std::string &one, const std::string &two)
923         {
924                 irc::commasepstream list_one(one);
925                 std::string item = "*";
926                 std::string result = "";
927                 while ((item = list_one.GetToken()) != "")
928                 {
929                         if (!HasItem(two, item))
930                         {
931                                 result.append(" ");
932                                 result.append(item);
933                         }
934                 }
935                 return result;
936         }
937
938         bool Capab(const std::deque<std::string> &params)
939         {
940                 if (params.size() < 1)
941                 {
942                         this->WriteLine("ERROR :Invalid number of parameters for CAPAB - Mismatched version");
943                         return false;
944                 }
945
946                 if (params[0] == "START")
947                 {
948                         this->ModuleList = "";
949                         this->CapKeys.clear();
950                 }
951                 else if (params[0] == "END")
952                 {
953                         std::string reason = "";
954                         int ip6support = 0;
955 #ifdef SUPPORT_IP6LINKS
956                         ip6support = 1;
957 #endif
958                         /* Compare ModuleList and check CapKeys...
959                          * Maybe this could be tidier? -- Brain
960                          */
961                         if ((this->ModuleList != this->MyCapabilities()) && (this->ModuleList.length()))
962                         {
963                                 std::string diff = ListDifference(this->ModuleList, this->MyCapabilities());
964                                 if (!diff.length())
965                                 {
966                                         diff = "your server:" + ListDifference(this->MyCapabilities(), this->ModuleList);
967                                 }
968                                 else
969                                 {
970                                         diff = "this server:" + diff;
971                                 }
972                                 if (diff.length() == 12)
973                                         reason = "Module list in CAPAB is not alphabetically ordered, cannot compare lists.";
974                                 else
975                                         reason = "Modules loaded on these servers are not correctly matched, these modules are not loaded on " + diff;
976                         }
977
978                         if (((this->CapKeys.find("IP6SUPPORT") == this->CapKeys.end()) && (ip6support)) || ((this->CapKeys.find("IP6SUPPORT") != this->CapKeys.end()) && (this->CapKeys.find("IP6SUPPORT")->second != ConvToStr(ip6support))))
979                                 reason = "We don't both support linking to IPV6 servers";
980
981                         if (((this->CapKeys.find("IP6NATIVE") != this->CapKeys.end()) && (this->CapKeys.find("IP6NATIVE")->second == "1")) && (!ip6support))
982                                 reason = "The remote server is IPV6 native, and we don't support linking to IPV6 servers";
983
984                         if (((this->CapKeys.find("NICKMAX") == this->CapKeys.end()) || ((this->CapKeys.find("NICKMAX") != this->CapKeys.end()) && (this->CapKeys.find("NICKMAX")->second != ConvToStr(NICKMAX)))))
985                                 reason = "Maximum nickname lengths differ or remote nickname length not specified";
986
987                         if (((this->CapKeys.find("PROTOCOL") == this->CapKeys.end()) || ((this->CapKeys.find("PROTOCOL") != this->CapKeys.end()) && (this->CapKeys.find("PROTOCOL")->second != ConvToStr(ProtocolVersion)))))
988                         {
989                                 if (this->CapKeys.find("PROTOCOL") != this->CapKeys.end())
990                                 {
991                                         reason = "Mismatched protocol versions "+this->CapKeys.find("PROTOCOL")->second+" and "+ConvToStr(ProtocolVersion);
992                                 }
993                                 else
994                                 {
995                                         reason = "Protocol version not specified";
996                                 }
997                         }
998
999                         if (((this->CapKeys.find("HALFOP") == this->CapKeys.end()) && (Instance->Config->AllowHalfop)) || ((this->CapKeys.find("HALFOP") != this->CapKeys.end()) && (this->CapKeys.find("HALFOP")->second != ConvToStr(Instance->Config->AllowHalfop))))
1000                                 reason = "We don't both have halfop support enabled/disabled identically";
1001
1002                         if (((this->CapKeys.find("IDENTMAX") == this->CapKeys.end()) || ((this->CapKeys.find("IDENTMAX") != this->CapKeys.end()) && (this->CapKeys.find("IDENTMAX")->second != ConvToStr(IDENTMAX)))))
1003                                 reason = "Maximum ident lengths differ or remote ident length not specified";
1004
1005                         if (((this->CapKeys.find("CHANMAX") == this->CapKeys.end()) || ((this->CapKeys.find("CHANMAX") != this->CapKeys.end()) && (this->CapKeys.find("CHANMAX")->second != ConvToStr(CHANMAX)))))
1006                                 reason = "Maximum channel lengths differ or remote channel length not specified";
1007
1008                         if (((this->CapKeys.find("MAXMODES") == this->CapKeys.end()) || ((this->CapKeys.find("MAXMODES") != this->CapKeys.end()) && (this->CapKeys.find("MAXMODES")->second != ConvToStr(MAXMODES)))))
1009                                 reason = "Maximum modes per line differ or remote modes per line not specified";
1010
1011                         if (((this->CapKeys.find("MAXQUIT") == this->CapKeys.end()) || ((this->CapKeys.find("MAXQUIT") != this->CapKeys.end()) && (this->CapKeys.find("MAXQUIT")->second != ConvToStr(MAXQUIT)))))
1012                                 reason = "Maximum quit lengths differ or remote quit length not specified";
1013
1014                         if (((this->CapKeys.find("MAXTOPIC") == this->CapKeys.end()) || ((this->CapKeys.find("MAXTOPIC") != this->CapKeys.end()) && (this->CapKeys.find("MAXTOPIC")->second != ConvToStr(MAXTOPIC)))))
1015                                 reason = "Maximum topic lengths differ or remote topic length not specified";
1016
1017                         if (((this->CapKeys.find("MAXKICK") == this->CapKeys.end()) || ((this->CapKeys.find("MAXKICK") != this->CapKeys.end()) && (this->CapKeys.find("MAXKICK")->second != ConvToStr(MAXKICK)))))
1018                                 reason = "Maximum kick lengths differ or remote kick length not specified";
1019
1020                         if (((this->CapKeys.find("MAXGECOS") == this->CapKeys.end()) || ((this->CapKeys.find("MAXGECOS") != this->CapKeys.end()) && (this->CapKeys.find("MAXGECOS")->second != ConvToStr(MAXGECOS)))))
1021                                 reason = "Maximum GECOS (fullname) lengths differ or remote GECOS length not specified";
1022
1023                         if (((this->CapKeys.find("MAXAWAY") == this->CapKeys.end()) || ((this->CapKeys.find("MAXAWAY") != this->CapKeys.end()) && (this->CapKeys.find("MAXAWAY")->second != ConvToStr(MAXAWAY)))))
1024                                 reason = "Maximum awaymessage lengths differ or remote awaymessage length not specified";
1025
1026                         if (reason.length())
1027                         {
1028                                 this->WriteLine("ERROR :CAPAB negotiation failed: "+reason);
1029                                 return false;
1030                         }
1031                 }
1032                 else if ((params[0] == "MODULES") && (params.size() == 2))
1033                 {
1034                         if (!this->ModuleList.length())
1035                         {
1036                                 this->ModuleList.append(params[1]);
1037                         }
1038                         else
1039                         {
1040                                 this->ModuleList.append(",");
1041                                 this->ModuleList.append(params[1]);
1042                         }
1043                 }
1044                 else if ((params[0] == "CAPABILITIES") && (params.size() == 2))
1045                 {
1046                         irc::tokenstream capabs(params[1]);
1047                         std::string item = "*";
1048                         while ((item = capabs.GetToken()) != "")
1049                         {
1050                                 /* Process each key/value pair */
1051                                 std::string::size_type equals = item.rfind('=');
1052                                 if (equals != std::string::npos)
1053                                 {
1054                                         std::string var = item.substr(0, equals);
1055                                         std::string value = item.substr(equals+1, item.length());
1056                                         this->Instance->Log(DEBUG,"Key='%s' Value='%s'",var.c_str(),value.c_str());
1057                                         CapKeys[var] = value;
1058                                 }
1059                         }
1060                 }
1061
1062                 return true;
1063         }
1064
1065         /** This function forces this server to quit, removing this server
1066          * and any users on it (and servers and users below that, etc etc).
1067          * It's very slow and pretty clunky, but luckily unless your network
1068          * is having a REAL bad hair day, this function shouldnt be called
1069          * too many times a month ;-)
1070          */
1071         void SquitServer(std::string &from, TreeServer* Current)
1072         {
1073                 /* recursively squit the servers attached to 'Current'.
1074                  * We're going backwards so we don't remove users
1075                  * while we still need them ;)
1076                  */
1077                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
1078                 {
1079                         TreeServer* recursive_server = Current->GetChild(q);
1080                         this->SquitServer(from,recursive_server);
1081                 }
1082                 /* Now we've whacked the kids, whack self */
1083                 num_lost_servers++;
1084                 num_lost_users += Current->QuitUsers(from);
1085         }
1086
1087         /** This is a wrapper function for SquitServer above, which
1088          * does some validation first and passes on the SQUIT to all
1089          * other remaining servers.
1090          */
1091         void Squit(TreeServer* Current, const std::string &reason)
1092         {
1093                 if ((Current) && (Current != Utils->TreeRoot))
1094                 {
1095                         Event rmode((char*)Current->GetName().c_str(), (Module*)Utils->Creator, "lost_server");
1096                         rmode.Send(Instance);
1097
1098                         std::deque<std::string> params;
1099                         params.push_back(Current->GetName());
1100                         params.push_back(":"+reason);
1101                         Utils->DoOneToAllButSender(Current->GetParent()->GetName(),"SQUIT",params,Current->GetName());
1102                         if (Current->GetParent() == Utils->TreeRoot)
1103                         {
1104                                 this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split: "+reason);
1105                         }
1106                         else
1107                         {
1108                                 this->Instance->WriteOpers("Server \002"+Current->GetName()+"\002 split from server \002"+Current->GetParent()->GetName()+"\002 with reason: "+reason);
1109                         }
1110                         num_lost_servers = 0;
1111                         num_lost_users = 0;
1112                         std::string from = Current->GetParent()->GetName()+" "+Current->GetName();
1113                         SquitServer(from, Current);
1114                         Current->Tidy();
1115                         Current->GetParent()->DelChild(Current);
1116                         DELETE(Current);
1117                         this->Instance->WriteOpers("Netsplit complete, lost \002%d\002 users on \002%d\002 servers.", num_lost_users, num_lost_servers);
1118                 }
1119                 else
1120                 {
1121                         Instance->Log(DEFAULT,"Squit from unknown server");
1122                 }
1123         }
1124
1125         /** FMODE command - server mode with timestamp checks */
1126         bool ForceMode(const std::string &source, std::deque<std::string> &params)
1127         {
1128                 /* Chances are this is a 1.0 FMODE without TS */
1129                 if (params.size() < 3)
1130                 {
1131                         /* No modes were in the command, probably a channel with no modes set on it */
1132                         return true;
1133                 }
1134                 
1135                 bool smode = false;
1136                 std::string sourceserv;
1137
1138                 /* Are we dealing with an FMODE from a user, or from a server? */
1139                 userrec* who = this->Instance->FindNick(source);
1140                 if (who)
1141                 {
1142                         /* FMODE from a user, set sourceserv to the users server name */
1143                         sourceserv = who->server;
1144                 }
1145                 else
1146                 {
1147                         /* FMODE from a server, create a fake user to receive mode feedback */
1148                         who = new userrec(this->Instance);
1149                         who->SetFd(FD_MAGIC_NUMBER);
1150                         smode = true;           /* Setting this flag tells us we should free the userrec later */
1151                         sourceserv = source;    /* Set sourceserv to the actual source string */
1152                 }
1153                 const char* modelist[64];
1154                 time_t TS = 0;
1155                 int n = 0;
1156                 memset(&modelist,0,sizeof(modelist));
1157                 for (unsigned int q = 0; (q < params.size()) && (q < 64); q++)
1158                 {
1159                         if (q == 1)
1160                         {
1161                                 /* The timestamp is in this position.
1162                                  * We don't want to pass that up to the
1163                                  * server->client protocol!
1164                                  */
1165                                 TS = atoi(params[q].c_str());
1166                         }
1167                         else
1168                         {
1169                                 /* Everything else is fine to append to the modelist */
1170                                 modelist[n++] = params[q].c_str();
1171                         }
1172                                 
1173                 }
1174                 /* Extract the TS value of the object, either userrec or chanrec */
1175                 userrec* dst = this->Instance->FindNick(params[0]);
1176                 chanrec* chan = NULL;
1177                 time_t ourTS = 0;
1178                 if (dst)
1179                 {
1180                         ourTS = dst->age;
1181                 }
1182                 else
1183                 {
1184                         chan = this->Instance->FindChan(params[0]);
1185                         if (chan)
1186                         {
1187                                 ourTS = chan->age;
1188                         }
1189                         else
1190                                 /* Oops, channel doesnt exist! */
1191                                 return true;
1192                 }
1193
1194                 /* TS is equal: Merge the mode changes, use voooodoooooo on modes
1195                  * with parameters.
1196                  */
1197                 if (TS == ourTS)
1198                 {
1199                         Instance->Log(DEBUG,"Entering TS equality check");
1200                         ModeHandler* mh = NULL;
1201                         unsigned long paramptr = 3;
1202                         std::string to_bounce = "";
1203                         std::string to_keep = "";
1204                         std::vector<std::string> params_to_keep;
1205                         std::string params_to_bounce = "";
1206                         bool adding = true;
1207                         char cur_change = 1;
1208                         char old_change = 0;
1209                         char old_bounce_change = 0;
1210                         /* Merge modes, basically do special stuff to mode with params */
1211                         for (std::string::iterator x = params[2].begin(); x != params[2].end(); x++)
1212                         {
1213                                 switch (*x)
1214                                 {
1215                                         case '-':
1216                                                 adding = false;
1217                                         break;
1218                                         case '+':
1219                                                 adding = true;
1220                                         break;
1221                                         default:
1222                                                 if (adding)
1223                                                 {
1224                                                         /* We only care about whats being set,
1225                                                          * not whats being unset
1226                                                          */
1227                                                         mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1228
1229                                                         if ((mh) && (mh->GetNumParams(adding) > 0) && (!mh->IsListMode()))
1230                                                         {
1231                                                                 /* We only want to do special things to
1232                                                                  * modes with parameters, we are going to rewrite
1233                                                                  * those parameters
1234                                                                  */
1235                                                                 ModePair ret;
1236                                                                 adding ? cur_change = '+' : cur_change = '-';
1237
1238                                                                 ret = mh->ModeSet(smode ? NULL : who, dst, chan, params[paramptr]);
1239
1240                                                                 /* The mode is set here, check which we should keep */
1241                                                                 if (ret.first)
1242                                                                 {
1243                                                                         bool which_to_keep = mh->CheckTimeStamp(TS, ourTS, params[paramptr], ret.second, chan);
1244
1245                                                                         if (which_to_keep == true)
1246                                                                         {
1247                                                                                 /* Keep ours, bounce theirs:
1248                                                                                  * Send back ours to them and
1249                                                                                  * drop their mode changs
1250                                                                                  */
1251                                                                                 adding ? cur_change = '+' : cur_change = '-';
1252                                                                                 if (cur_change != old_bounce_change)
1253                                                                                         to_bounce += cur_change;
1254                                                                                 to_bounce += *x;
1255                                                                                 old_bounce_change = cur_change;
1256
1257                                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1258                                                                                         params_to_bounce.append(" ").append(ret.second);
1259                                                                         }
1260                                                                         else
1261                                                                         {
1262                                                                                 /* Keep theirs: Accept their mode change,
1263                                                                                  * do nothing else
1264                                                                                  */
1265                                                                                 adding ? cur_change = '+' : cur_change = '-';
1266                                                                                 if (cur_change != old_change)
1267                                                                                         to_keep += cur_change;
1268                                                                                 to_keep += *x;
1269                                                                                 old_change = cur_change;
1270
1271                                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1272                                                                                         params_to_keep.push_back(params[paramptr]);
1273                                                                         }
1274                                                                 }
1275                                                                 else
1276                                                                 {
1277                                                                         /* Mode isnt set here, we want it */
1278                                                                         adding ? cur_change = '+' : cur_change = '-';
1279                                                                         if (cur_change != old_change)
1280                                                                                 to_keep += cur_change;
1281                                                                         to_keep += *x;
1282                                                                         old_change = cur_change;
1283
1284                                                                         if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1285                                                                                 params_to_keep.push_back(params[paramptr]);
1286                                                                 }
1287
1288                                                                 paramptr++;
1289                                                         }
1290                                                         else
1291                                                         {
1292                                                                 mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1293
1294                                                                 if (mh)
1295                                                                 {
1296                                                                         adding ? cur_change = '+' : cur_change = '-';
1297         
1298                                                                         /* Just keep this, safe to merge with no checks
1299                                                                          * it has no parameters
1300                                                                          */
1301         
1302                                                                         if (cur_change != old_change)
1303                                                                                 to_keep += cur_change;
1304                                                                         to_keep += *x;
1305                                                                         old_change = cur_change;
1306         
1307                                                                         if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1308                                                                         {
1309                                                                                 Instance->Log(DEBUG,"Mode removal %d %d",adding, mh->GetNumParams(adding));
1310                                                                                 params_to_keep.push_back(params[paramptr++]);
1311                                                                         }
1312                                                                 }
1313                                                         }
1314                                                 }
1315                                                 else
1316                                                 {
1317                                                         mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1318
1319                                                         if (mh)
1320                                                         {
1321                                                                 /* Taking a mode away */
1322                                                                 adding ? cur_change = '+' : cur_change = '-';
1323
1324                                                                 if (cur_change != old_change)
1325                                                                         to_keep += cur_change;
1326                                                                 to_keep += *x;
1327                                                                 old_change = cur_change;
1328
1329                                                                 if ((mh->GetNumParams(adding) > 0) && (paramptr < params.size()))
1330                                                                         params_to_keep.push_back(params[paramptr++]);
1331                                                         }
1332                                                 }
1333                                         break;
1334                                 }
1335                         }
1336
1337                         if (to_bounce.length())
1338                         {
1339                                 std::deque<std::string> newparams;
1340                                 newparams.push_back(params[0]);
1341                                 newparams.push_back(ConvToStr(ourTS));
1342                                 newparams.push_back(to_bounce+params_to_bounce);
1343                                 Instance->Log(DEBUG,"BOUNCE BACK: %s",(to_bounce+params_to_bounce).c_str());
1344                                 Utils->DoOneToOne(this->Instance->Config->ServerName,"FMODE",newparams,sourceserv);
1345                         }
1346
1347                         if (to_keep.length())
1348                         {
1349                                 unsigned int n = 2;
1350                                 unsigned int q = 0;
1351                                 modelist[0] = params[0].c_str();
1352                                 modelist[1] = to_keep.c_str();
1353
1354                                 if (params_to_keep.size() > 0)
1355                                 {
1356                                         for (q = 0; (q < params_to_keep.size()) && (q < 64); q++)
1357                                         {
1358                                                 Instance->Log(DEBUG,"KEEP Item %d of %d: %s", q, params_to_keep.size(), params_to_keep[q].c_str());
1359                                                 modelist[n++] = params_to_keep[q].c_str();
1360                                         }
1361                                 }
1362
1363                                 if (smode)
1364                                 {
1365                                         Instance->Log(DEBUG,"Send mode");
1366                                         this->Instance->SendMode(modelist, n, who);
1367                                 }
1368                                 else
1369                                 {
1370                                         Instance->Log(DEBUG,"Send mode client");
1371                                         this->Instance->CallCommandHandler("MODE", modelist, n, who);
1372                                 }
1373
1374                                 /* HOT POTATO! PASS IT ON! */
1375                                 Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv);
1376                         }
1377                 }
1378                 else
1379                 /* U-lined servers always win regardless of their TS */
1380                 if ((TS > ourTS) && (!this->Instance->ULine(source.c_str())))
1381                 {
1382                         /* Bounce the mode back to its sender.* We use our lower TS, so the other end
1383                          * SHOULD accept it, if its clock is right.
1384                          *
1385                          * NOTE: We should check that we arent bouncing anything thats already set at this end.
1386                          * If we are, bounce +ourmode to 'reinforce' it. This prevents desyncs.
1387                          * e.g. They send +l 50, we have +l 10 set. rather than bounce -l 50, we bounce +l 10.
1388                          *
1389                          * Thanks to jilles for pointing out this one-hell-of-an-issue before i even finished
1390                          * writing the code. It took me a while to come up with this solution.
1391                          *
1392                          * XXX: BE SURE YOU UNDERSTAND THIS CODE FULLY BEFORE YOU MESS WITH IT.
1393                          */
1394
1395                         std::deque<std::string> newparams;      /* New parameter list we send back */
1396                         newparams.push_back(params[0]);         /* Target, user or channel */
1397                         newparams.push_back(ConvToStr(ourTS));  /* Timestamp value of the target */
1398                         newparams.push_back("");                /* This contains the mode string. For now
1399                                                                  * it's empty, we fill it below.
1400                                                                  */
1401
1402                         /* Intelligent mode bouncing. Don't just invert, reinforce any modes which are already
1403                          * set to avoid a desync here.
1404                          */
1405                         std::string modebounce = "";
1406                         bool adding = true;
1407                         unsigned int t = 3;
1408                         ModeHandler* mh = NULL;
1409                         char cur_change = 1;
1410                         char old_change = 0;
1411                         for (std::string::iterator x = params[2].begin(); x != params[2].end(); x++)
1412                         {
1413                                 /* Iterate over all mode chars in the sent set */
1414                                 switch (*x)
1415                                 {
1416                                         /* Adding or subtracting modes? */
1417                                         case '-':
1418                                                 adding = false;
1419                                         break;
1420                                         case '+':
1421                                                 adding = true;
1422                                         break;
1423                                         default:
1424                                                 /* Find the mode handler for this mode */
1425                                                 mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
1426
1427                                                 /* Got a mode handler?
1428                                                  * This also prevents us bouncing modes we have no handler for.
1429                                                  */
1430                                                 if (mh)
1431                                                 {
1432                                                         ModePair ret;
1433                                                         std::string p = "";
1434
1435                                                         /* Does the mode require a parameter right now?
1436                                                          * If it does, fetch it if we can
1437                                                          */
1438                                                         if ((mh->GetNumParams(adding) > 0) && (t < params.size()))
1439                                                                 p = params[t++];
1440
1441                                                         /* Call the ModeSet method to determine if its set with the
1442                                                          * given parameter here or not.
1443                                                          */
1444                                                         ret = mh->ModeSet(smode ? NULL : who, dst, chan, p);
1445
1446                                                         /* XXX: Really. Dont ask.
1447                                                          * Determine from if its set combined with what the current
1448                                                          * 'state' is (adding or not) as to wether we should 'invert'
1449                                                          * or 'reinforce' the mode change
1450                                                          */
1451                                                         (!ret.first ? (adding ? cur_change = '-' : cur_change = '+') : (!adding ? cur_change = '-' : cur_change = '+'));
1452
1453                                                         /* Quickly determine if we have 'flipped' from + to -,
1454                                                          * or - to +, to prevent unneccessary +/- chars in the
1455                                                          * output string that waste bandwidth
1456                                                          */
1457                                                         if (cur_change != old_change)
1458                                                                 modebounce += cur_change;
1459                                                         old_change = cur_change;
1460
1461                                                         /* Add the mode character to the output string */
1462                                                         modebounce += mh->GetModeChar();
1463
1464                                                         /* We got a parameter back from ModeHandler::ModeSet,
1465                                                          * are we supposed to be sending one out right now?
1466                                                          */
1467                                                         if (ret.second.length())
1468                                                         {
1469                                                                 if (mh->GetNumParams(cur_change == '+') > 0)
1470                                                                         /* Yes we're supposed to be sending out
1471                                                                          * the parameter. Make sure it goes
1472                                                                          */
1473                                                                         newparams.push_back(ret.second);
1474                                                         }
1475
1476                                                 }
1477                                         break;
1478                                 }
1479                         }
1480                         
1481                         /* Update the parameters for FMODE with the new 'bounced' string */
1482                         newparams[2] = modebounce;
1483                         /* Only send it back the way it came, no need to send it anywhere else */
1484                         Utils->DoOneToOne(this->Instance->Config->ServerName,"FMODE",newparams,sourceserv);
1485                         Instance->Log(DEBUG,"FMODE bounced intelligently, our TS less than theirs and the other server is NOT a uline.");
1486                 }
1487                 else
1488                 {
1489                         Instance->Log(DEBUG,"Allow modes, TS lower for sender");
1490                         /* The server was ulined, but something iffy is up with the TS.
1491                          * Sound the alarm bells!
1492                          */
1493                         if ((this->Instance->ULine(sourceserv.c_str())) && (TS > ourTS))
1494                         {
1495                                 this->Instance->WriteOpers("\2WARNING!\2 U-Lined server '%s' has bad TS for '%s' (accepted change): \2SYNC YOUR CLOCKS\2 to avoid this notice",sourceserv.c_str(),params[0].c_str());
1496                         }
1497                         /* Allow the mode, route it to either server or user command handling */
1498                         if (smode)
1499                                 this->Instance->SendMode(modelist,n,who);
1500                         else
1501                                 this->Instance->CallCommandHandler("MODE", modelist, n, who);
1502
1503                         /* HOT POTATO! PASS IT ON! */
1504                         Utils->DoOneToAllButSender(source,"FMODE",params,sourceserv);
1505                 }
1506                 /* Are we supposed to free the userrec? */
1507                 if (smode)
1508                         DELETE(who);
1509
1510                 return true;
1511         }
1512
1513         /** FTOPIC command */
1514         bool ForceTopic(const std::string &source, std::deque<std::string> &params)
1515         {
1516                 if (params.size() != 4)
1517                         return true;
1518                 time_t ts = atoi(params[1].c_str());
1519                 std::string nsource = source;
1520
1521                 chanrec* c = this->Instance->FindChan(params[0]);
1522                 if (c)
1523                 {
1524                         if ((ts >= c->topicset) || (!*c->topic))
1525                         {
1526                                 std::string oldtopic = c->topic;
1527                                 strlcpy(c->topic,params[3].c_str(),MAXTOPIC);
1528                                 strlcpy(c->setby,params[2].c_str(),NICKMAX-1);
1529                                 c->topicset = ts;
1530                                 /* if the topic text is the same as the current topic,
1531                                  * dont bother to send the TOPIC command out, just silently
1532                                  * update the set time and set nick.
1533                                  */
1534                                 if (oldtopic != params[3])
1535                                 {
1536                                         userrec* user = this->Instance->FindNick(source);
1537                                         if (!user)
1538                                         {
1539                                                 c->WriteChannelWithServ(source.c_str(), "TOPIC %s :%s", c->name, c->topic);
1540                                         }
1541                                         else
1542                                         {
1543                                                 c->WriteChannel(user, "TOPIC %s :%s", c->name, c->topic);
1544                                                 nsource = user->server;
1545                                         }
1546                                         /* all done, send it on its way */
1547                                         params[3] = ":" + params[3];
1548                                         Utils->DoOneToAllButSender(source,"FTOPIC",params,nsource);
1549                                 }
1550                         }
1551                         
1552                 }
1553
1554                 return true;
1555         }
1556
1557         /** FJOIN, similar to TS6 SJOIN, but not quite. */
1558         bool ForceJoin(const std::string &source, std::deque<std::string> &params)
1559         {
1560                 /* 1.1 FJOIN works as follows:
1561                  *
1562                  * Each FJOIN is sent along with a timestamp, and the side with the lowest
1563                  * timestamp 'wins'. From this point on we will refer to this side as the
1564                  * winner. The side with the higher timestamp loses, from this point on we
1565                  * will call this side the loser or losing side. This should be familiar to
1566                  * anyone who's dealt with dreamforge or TS6 before.
1567                  *
1568                  * When two sides of a split heal and this occurs, the following things
1569                  * will happen:
1570                  *
1571                  * If the timestamps are exactly equal, both sides merge their privilages
1572                  * and users, as in InspIRCd 1.0 and ircd2.8. The channels have not been
1573                  * re-created during a split, this is safe to do.
1574                  *
1575                  *
1576                  * If the timestamps are NOT equal, the losing side removes all privilage
1577                  * modes from all of its users that currently exist in the channel, before
1578                  * introducing new users into the channel which are listed in the FJOIN
1579                  * command's parameters. This means, all modes +ohv, and privilages added
1580                  * by modules, such as +qa. The losing side then LOWERS its timestamp value
1581                  * of the channel to match that of the winning side, and the modes of the
1582                  * users of the winning side are merged in with the losing side. The loser
1583                  * then sends out a set of FMODE commands which 'confirm' that it just
1584                  * removed all privilage modes from its existing users, which allows for
1585                  * services packages to still work correctly without needing to know the
1586                  * timestamping rules which InspIRCd follows. In TS6 servers this is always
1587                  * a problem, and services packages must contain code which explicitly
1588                  * behaves as TS6 does, removing ops from the losing side of a split where
1589                  * neccessary within its internal records, as this state information is
1590                  * not explicitly echoed out in that protocol.
1591                  *
1592                  * The winning side on the other hand will ignore all user modes from the
1593                  * losing side, so only its own modes get applied. Life is simple for those
1594                  * who succeed at internets. :-)
1595                  *
1596                  * NOTE: Unlike TS6 and dreamforge and other protocols which have SJOIN,
1597                  * FJOIN does not contain the simple-modes such as +iklmnsp. Why not,
1598                  * you ask? Well, quite simply because we don't need to. They'll be sent
1599                  * after the FJOIN by FMODE, and FMODE is timestamped, so in the event
1600                  * the losing side sends any modes for the channel which shouldnt win,
1601                  * they wont as their timestamp will be too high :-)
1602                  */
1603
1604                 if (params.size() < 3)
1605                         return true;
1606
1607                 char first[MAXBUF];             /* The first parameter of the mode command */
1608                 char modestring[MAXBUF];        /* The mode sequence (2nd parameter) of the mode command */
1609                 char* mode_users[127];          /* The values used by the mode command */
1610                 memset(&mode_users,0,sizeof(mode_users));       /* Initialize mode parameters */
1611                 mode_users[0] = first;          /* Set this up to be our on-stack value */
1612                 mode_users[1] = modestring;     /* Same here as above */
1613                 strcpy(modestring,"+");         /* Initialize the mode sequence to just '+' */
1614                 unsigned int modectr = 2;       /* Pointer to the third mode parameter (e.g. the one after the +-sequence) */
1615                 
1616                 userrec* who = NULL;                    /* User we are currently checking */
1617                 std::string channel = params[0];        /* Channel name, as a string */
1618                 time_t TS = atoi(params[1].c_str());    /* Timestamp given to us for remote side */
1619                 bool created = false;
1620                 
1621                 /* Try and find the channel */
1622                 chanrec* chan = this->Instance->FindChan(channel);
1623
1624                 /* Initialize channel name in the mode parameters */
1625                 strlcpy(mode_users[0],channel.c_str(),MAXBUF);
1626
1627                 /* default TS is a high value, which if we dont have this
1628                  * channel will let the other side apply their modes.
1629                  */
1630                 time_t ourTS = Instance->Time(true)+600;
1631
1632                 /* Does this channel exist? if it does, get its REAL timestamp */
1633                 if (chan)
1634                         ourTS = chan->age;
1635                 else
1636                         created = true; /* don't perform deops, and set TS to correct time after processing. */
1637
1638                 /* In 1.1, if they have the newer channel, we immediately clear
1639                  * all status modes from our users. We then accept their modes.
1640                  * If WE have the newer channel its the other side's job to do this.
1641                  * Note that this causes the losing server to send out confirming
1642                  * FMODE lines.
1643                  */
1644                 if (ourTS > TS)
1645                 {
1646                         Instance->Log(DEBUG,"************ WE LOST TS COMPARE, DEOPPING EVERYONE ********************* ");
1647                         std::deque<std::string> param_list;
1648
1649                         /* Lower the TS here */
1650                         if (Utils->AnnounceTSChange && chan)
1651                                 chan->WriteChannelWithServ(Instance->Config->ServerName,
1652                                 "NOTICE %s :TS for %s changed from %lu to %lu", chan->name, chan->name, ourTS, TS);
1653                         ourTS = TS;
1654
1655                         /* Zap all the privilage modes on our side, if the channel exists here */
1656                         if (!created)
1657                         {
1658                                 param_list.push_back(channel);
1659                                 /* Do this first! */
1660                                 chan->age = TS;
1661                                 this->RemoveStatus(Instance->Config->ServerName, param_list);
1662                         }
1663                 }
1664
1665                 /* Put the final parameter of the FJOIN into a tokenstream ready to split it */
1666                 irc::tokenstream users(params[2]);
1667                 std::string item = "*";
1668
1669                 /* do this first, so our mode reversals are correctly received by other servers
1670                  * if there is a TS collision.
1671                  */
1672                 params[2] = ":" + params[2];
1673                 Utils->DoOneToAllButSender(source,"FJOIN",params,source);
1674
1675                 /* Now, process every 'prefixes,nick' pair */
1676                 while (item != "")
1677                 {
1678                         /* Find next user */
1679                         item = users.GetToken();
1680
1681                         const char* usr = item.c_str();
1682
1683                         /* Safety check just to make sure someones not sent us an FJOIN full of spaces
1684                          * (is this even possible?) */
1685                         if (usr && *usr)
1686                         {
1687                                 const char* permissions = usr;
1688                                 int ntimes = 0;
1689                                 char* nm = new char[MAXBUF];
1690                                 char* tnm = nm;
1691
1692                                 /* Iterate through all the prefix values, convert them from prefixes
1693                                  * to mode letters, and append them to the mode sequence
1694                                  */
1695                                 while ((*permissions) && (*permissions != ',') && (ntimes < MAXBUF))
1696                                 {
1697                                         ModeHandler* mh = Instance->Modes->FindPrefix(*permissions);
1698                                         if (mh)
1699                                         {
1700                                                 /* This is a valid prefix */
1701                                                 ntimes++;
1702                                                 *tnm++ = mh->GetModeChar();
1703                                         }
1704                                         else
1705                                         {
1706                                                 /* Not a valid prefix...
1707                                                  * danger bill bobbertson! (that's will robinsons older brother ;-) ...)
1708                                                  */
1709                                                 this->Instance->WriteOpers("ERROR: We received a user with an unknown prefix '%c'. Closed connection to avoid a desync.",*permissions);
1710                                                 this->WriteLine(std::string("ERROR :Invalid prefix '")+(*permissions)+"' in FJOIN");
1711                                                 return false;
1712                                         }
1713                                         usr++;
1714                                         permissions++;
1715                                 }
1716
1717                                 /* Null terminate modes */
1718                                 *tnm = 0;
1719                                 /* Advance past the comma, to the nick */
1720                                 usr++;
1721
1722                                 /* Check the user actually exists */
1723                                 who = this->Instance->FindNick(usr);
1724                                 if (who)
1725                                 {
1726                                         /* Did they get any modes? How many times? */
1727                                         strlcat(modestring, nm, MAXBUF);
1728                                         for (int k = 0; k < ntimes; k++)
1729                                                 mode_users[modectr++] = strdup(usr);
1730
1731                                         /* Free temporary buffer used for mode sequence */
1732                                         delete[] nm;
1733
1734                                         /* Check that the user's 'direction' is correct
1735                                          * based on the server sending the FJOIN. We must
1736                                          * check each nickname in turn, because the origin of
1737                                          * the FJOIN may be different to the origin of the nicks
1738                                          * in the command itself.
1739                                          */
1740                                         TreeServer* route_back_again = Utils->BestRouteTo(who->server);
1741                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
1742                                         {
1743                                                 /* Oh dear oh dear. */
1744                                                 Instance->Log(DEBUG,"Fake direction in FJOIN, user '%s'",who->nick);
1745                                                 continue;
1746                                         }
1747                                         /* Finally, we can actually place the user into the channel.
1748                                          * We're sure its right. Final answer, phone a friend.
1749                                          */
1750                                         chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "");
1751
1752                                         /* Have we already queued up MAXMODES modes with parameters
1753                                          * (+qaohv) ready to be sent to the server?
1754                                          */
1755                                         if (modectr >= (MAXMODES-1))
1756                                         {
1757                                                 /* Only actually give the users any status if we lost
1758                                                  * the FJOIN or drew (equal timestamps).
1759                                                  * It isn't actually possible for ourTS to be > TS here,
1760                                                  * only possible to actually have ourTS == TS, or
1761                                                  * ourTS < TS, because if we lost, we already lowered
1762                                                  * our TS above before we entered this loop. We only
1763                                                  * check >= as a safety measure, in case someone stuffed
1764                                                  * up. If someone DID stuff up, it was most likely me.
1765                                                  * Note: I do not like baseball bats in the face...
1766                                                  */
1767                                                 if (ourTS >= TS)
1768                                                 {
1769                                                         Instance->Log(DEBUG,"Our our channel newer than theirs, accepting their modes");
1770                                                         this->Instance->SendMode((const char**)mode_users,modectr,who);
1771
1772                                                         /* Something stuffed up, and for some reason, the timestamp is
1773                                                          * NOT lowered right now and should be. Lower it. Usually this
1774                                                          * code won't be executed, doubtless someone will remove it some
1775                                                          * day soon.
1776                                                          */
1777                                                         if (ourTS > TS)
1778                                                         {
1779                                                                 Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1780                                                                 chan->age = TS;
1781                                                                 ourTS = TS;
1782                                                         }
1783                                                 }
1784
1785                                                 /* Reset all this back to defaults, and
1786                                                  * free any ram we have left allocated.
1787                                                  */
1788                                                 strcpy(mode_users[1],"+");
1789                                                 for (unsigned int f = 2; f < modectr; f++)
1790                                                         free(mode_users[f]);
1791                                                 modectr = 2;
1792                                         }
1793                                 }
1794                                 else
1795                                 {
1796                                         /* Remember to free this */
1797                                         delete[] nm;
1798                                         /* If we got here, there's a nick in FJOIN which doesnt exist on this server.
1799                                          * We don't try to process the nickname here (that WOULD cause a segfault because
1800                                          * we'd be playing with null pointers) however, we DO pass the nickname on, just
1801                                          * in case somehow we're desynched, so that other users which might be able to see
1802                                          * the nickname get their fair chance to process it.
1803                                          */
1804                                         Instance->Log(SPARSE,"Warning! Invalid user in FJOIN to channel %s IGNORED", channel.c_str());
1805                                         continue;
1806                                 }
1807                         }
1808                 }
1809
1810                 /* there werent enough modes built up to flush it during FJOIN,
1811                  * or, there are a number left over. flush them out.
1812                  */
1813                 if ((modectr > 2) && (who) && (chan))
1814                 {
1815                         if (ourTS >= TS)
1816                         {
1817                                 /* Our channel is newer than theirs. Evil deeds must be afoot. */
1818                                 this->Instance->SendMode((const char**)mode_users,modectr,who);
1819                                 /* Yet again, we can't actually get a true value here, if everything else
1820                                  * is working as it should.
1821                                  */
1822                                 if (ourTS > TS)
1823                                 {
1824                                         Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1825                                         chan->age = TS;
1826                                         ourTS = TS;
1827                                 }
1828                         }
1829
1830                         /* Free anything we have left to free */
1831                         for (unsigned int f = 2; f < modectr; f++)
1832                                 free(mode_users[f]);
1833                 }
1834
1835                 /* if we newly created the channel, set it's TS properly. */
1836                 if (created)
1837                 {
1838                         /* find created channel .. */
1839                         chan = this->Instance->FindChan(channel);
1840                         if (chan)
1841                                 /* w00t said this shouldnt be needed but it is.
1842                                  * This isnt strictly true, as chan can be NULL
1843                                  * if a nick collision has occured and therefore
1844                                  * the channel was never created.
1845                                  */
1846                                 chan->age = TS;
1847                 }
1848
1849                 /* All done. That wasnt so bad was it, you can wipe
1850                  * the sweat from your forehead now. :-)
1851                  */
1852                 return true;
1853         }
1854
1855         /** NICK command */
1856         bool IntroduceClient(const std::string &source, std::deque<std::string> &params)
1857         {
1858                 if (params.size() < 8)
1859                         return true;
1860                 if (params.size() > 8)
1861                 {
1862                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+"?)");
1863                         return true;
1864                 }
1865                 // NICK age nick host dhost ident +modes ip :gecos
1866                 //       0    1   2     3     4      5   6     7
1867                 time_t age = atoi(params[0].c_str());
1868                 
1869                 const char* tempnick = params[1].c_str();
1870                 Instance->Log(DEBUG,"Introduce client %s!%s@%s",tempnick,params[4].c_str(),params[2].c_str());
1871                 
1872                 user_hash::iterator iter = this->Instance->clientlist->find(tempnick);
1873                 
1874                 if (iter != this->Instance->clientlist->end())
1875                 {
1876                         // nick collision
1877                         Instance->Log(DEBUG,"Nick collision on %s!%s@%s: %lu %lu",tempnick,params[4].c_str(),params[2].c_str(),(unsigned long)age,(unsigned long)iter->second->age);
1878                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+tempnick+" :Nickname collision");
1879                         userrec::QuitUser(this->Instance, iter->second, "Nickname collision");
1880                         return true;
1881                 }
1882
1883                 userrec* _new = new userrec(this->Instance);
1884                 (*(this->Instance->clientlist))[tempnick] = _new;
1885                 _new->SetFd(FD_MAGIC_NUMBER);
1886                 strlcpy(_new->nick, tempnick,NICKMAX-1);
1887                 strlcpy(_new->host, params[2].c_str(),63);
1888                 strlcpy(_new->dhost, params[3].c_str(),63);
1889                 _new->server = this->Instance->FindServerNamePtr(source.c_str());
1890                 strlcpy(_new->ident, params[4].c_str(),IDENTMAX);
1891                 strlcpy(_new->fullname, params[7].c_str(),MAXGECOS);
1892                 _new->registered = REG_ALL;
1893                 _new->signon = age;
1894                 
1895                 /*
1896                  * we need to remove the + from the modestring, so we can do our stuff
1897                  */
1898                 std::string::size_type pos_after_plus = params[5].find_first_not_of('+');
1899                 if (pos_after_plus != std::string::npos)
1900                         params[5] = params[5].substr(pos_after_plus);
1901                 
1902
1903                 for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++)
1904                 {
1905                         _new->modes[(*v)-65] = 1;
1906                         /* For each mode thats set, increase counter */
1907                         ModeHandler* mh = Instance->Modes->FindMode(*v, MODETYPE_USER);
1908                         if (mh)
1909                                 mh->ChangeCount(1);
1910                 }
1911
1912                 /* now we've done with modes processing, put the + back for remote servers */
1913                 params[5] = "+" + params[5];
1914
1915 #ifdef SUPPORT_IP6LINKS
1916                 if (params[6].find_first_of(":") != std::string::npos)
1917                         _new->SetSockAddr(AF_INET6, params[6].c_str(), 0);
1918                 else
1919 #endif
1920                         _new->SetSockAddr(AF_INET, params[6].c_str(), 0);
1921
1922                 Instance->AddGlobalClone(_new);
1923
1924                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
1925
1926                 params[7] = ":" + params[7];
1927                 Utils->DoOneToAllButSender(source,"NICK", params, source);
1928
1929                 // Increment the Source Servers User Count..
1930                 TreeServer* SourceServer = Utils->FindServer(source);
1931                 if (SourceServer)
1932                 {
1933                         Instance->Log(DEBUG,"Found source server of %s",_new->nick);
1934                         SourceServer->AddUserCount();
1935                 }
1936
1937                 FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
1938
1939                 return true;
1940         }
1941
1942         /** Send one or more FJOINs for a channel of users.
1943          * If the length of a single line is more than 480-NICKMAX
1944          * in length, it is split over multiple lines.
1945          */
1946         void SendFJoins(TreeServer* Current, chanrec* c)
1947         {
1948                 std::string buffer;
1949
1950                 Instance->Log(DEBUG,"Sending FJOINs to other server for %s",c->name);
1951                 char list[MAXBUF];
1952                 std::string individual_halfops = std::string(":")+this->Instance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age);
1953                 
1954                 size_t dlen, curlen;
1955                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1956                 int numusers = 0;
1957                 char* ptr = list + dlen;
1958
1959                 CUList *ulist = c->GetUsers();
1960                 std::string modes = "";
1961                 std::string params = "";
1962
1963                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1964                 {
1965                         // The first parameter gets a : before it
1966                         size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", c->GetAllPrefixChars(i->second), i->second->nick);
1967
1968                         curlen += ptrlen;
1969                         ptr += ptrlen;
1970
1971                         numusers++;
1972
1973                         if (curlen > (480-NICKMAX))
1974                         {
1975                                 buffer.append(list).append("\r\n");
1976
1977                                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1978                                 ptr = list + dlen;
1979                                 ptrlen = 0;
1980                                 numusers = 0;
1981                         }
1982                 }
1983
1984                 if (numusers)
1985                         buffer.append(list).append("\r\n");
1986
1987                 /* Sorry for the hax. Because newly created channels assume +nt,
1988                  * if this channel doesnt have +nt, explicitly send -n and -t for the missing modes.
1989                  */
1990                 bool inverted = false;
1991                 if (!c->IsModeSet('n'))
1992                 {
1993                         modes.append("-n");
1994                         inverted = true;
1995                 }
1996                 if (!c->IsModeSet('t'))
1997                 {
1998                         modes.append("-t");
1999                         inverted = true;
2000                 }
2001                 if (inverted)
2002                 {
2003                         modes.append("+");
2004                 }
2005
2006                 for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
2007                 {
2008                         modes.append("b");
2009                         params.append(" ").append(b->data);
2010
2011                         if (params.length() >= MAXMODES)
2012                         {
2013                                 /* Wrap at MAXMODES */
2014                                 buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params).append("\r\n");
2015                                 modes = "";
2016                                 params = "";
2017                         }
2018                 }
2019
2020                 buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(c->ChanModes(true));
2021
2022                 /* Only send these if there are any */
2023                 if (!modes.empty())
2024                         buffer.append("\r\n").append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params);
2025
2026                 this->WriteLine(buffer);
2027         }
2028
2029         /** Send G, Q, Z and E lines */
2030         void SendXLines(TreeServer* Current)
2031         {
2032                 char data[MAXBUF];
2033                 std::string buffer;
2034                 std::string n = this->Instance->Config->ServerName;
2035                 const char* sn = n.c_str();
2036
2037                 /* Yes, these arent too nice looking, but they get the job done */
2038                 for (std::vector<ZLine*>::iterator i = Instance->XLines->zlines.begin(); i != Instance->XLines->zlines.end(); i++)
2039                 {
2040                         snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s\r\n",sn,(*i)->ipaddr,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2041                         buffer.append(data);
2042                 }
2043                 for (std::vector<QLine*>::iterator i = Instance->XLines->qlines.begin(); i != Instance->XLines->qlines.end(); i++)
2044                 {
2045                         snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s\r\n",sn,(*i)->nick,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2046                         buffer.append(data);
2047                 }
2048                 for (std::vector<GLine*>::iterator i = Instance->XLines->glines.begin(); i != Instance->XLines->glines.end(); i++)
2049                 {
2050                         snprintf(data,MAXBUF,":%s ADDLINE G %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2051                         buffer.append(data);
2052                 }
2053                 for (std::vector<ELine*>::iterator i = Instance->XLines->elines.begin(); i != Instance->XLines->elines.end(); i++)
2054                 {
2055                         snprintf(data,MAXBUF,":%s ADDLINE E %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2056                         buffer.append(data);
2057                 }
2058                 for (std::vector<ZLine*>::iterator i = Instance->XLines->pzlines.begin(); i != Instance->XLines->pzlines.end(); i++)
2059                 {
2060                         snprintf(data,MAXBUF,":%s ADDLINE Z %s %s %lu %lu :%s\r\n",sn,(*i)->ipaddr,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2061                         buffer.append(data);
2062                 }
2063                 for (std::vector<QLine*>::iterator i = Instance->XLines->pqlines.begin(); i != Instance->XLines->pqlines.end(); i++)
2064                 {
2065                         snprintf(data,MAXBUF,":%s ADDLINE Q %s %s %lu %lu :%s\r\n",sn,(*i)->nick,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2066                         buffer.append(data);
2067                 }
2068                 for (std::vector<GLine*>::iterator i = Instance->XLines->pglines.begin(); i != Instance->XLines->pglines.end(); i++)
2069                 {
2070                         snprintf(data,MAXBUF,":%s ADDLINE G %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2071                         buffer.append(data);
2072                 }
2073                 for (std::vector<ELine*>::iterator i = Instance->XLines->pelines.begin(); i != Instance->XLines->pelines.end(); i++)
2074                 {
2075                         snprintf(data,MAXBUF,":%s ADDLINE E %s@%s %s %lu %lu :%s\r\n",sn,(*i)->identmask,(*i)->hostmask,(*i)->source,(unsigned long)(*i)->set_time,(unsigned long)(*i)->duration,(*i)->reason);
2076                         buffer.append(data);
2077                 }
2078
2079                 if (!buffer.empty())
2080                         this->WriteLine(buffer);
2081         }
2082
2083         /** Send channel modes and topics */
2084         void SendChannelModes(TreeServer* Current)
2085         {
2086                 char data[MAXBUF];
2087                 std::deque<std::string> list;
2088                 std::string n = this->Instance->Config->ServerName;
2089                 const char* sn = n.c_str();
2090                 for (chan_hash::iterator c = this->Instance->chanlist->begin(); c != this->Instance->chanlist->end(); c++)
2091                 {
2092                         SendFJoins(Current, c->second);
2093                         if (*c->second->topic)
2094                         {
2095                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
2096                                 this->WriteLine(data);
2097                         }
2098                         FOREACH_MOD_I(this->Instance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
2099                         list.clear();
2100                         c->second->GetExtList(list);
2101                         for (unsigned int j = 0; j < list.size(); j++)
2102                         {
2103                                 FOREACH_MOD_I(this->Instance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
2104                         }
2105                 }
2106         }
2107
2108         /** send all users and their oper state/modes */
2109         void SendUsers(TreeServer* Current)
2110         {
2111                 char data[MAXBUF];
2112                 std::deque<std::string> list;
2113                 std::string dataline;
2114                 for (user_hash::iterator u = this->Instance->clientlist->begin(); u != this->Instance->clientlist->end(); u++)
2115                 {
2116                         if (u->second->registered == REG_ALL)
2117                         {
2118                                 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->FormatModes(),u->second->GetIPString(),u->second->fullname);
2119                                 this->WriteLine(data);
2120                                 if (*u->second->oper)
2121                                 {
2122                                         snprintf(data,MAXBUF,":%s OPERTYPE %s", u->second->nick, u->second->oper);
2123                                         this->WriteLine(data);
2124                                 }
2125                                 if (*u->second->awaymsg)
2126                                 {
2127                                         snprintf(data,MAXBUF,":%s AWAY :%s", u->second->nick, u->second->awaymsg);
2128                                         this->WriteLine(data);
2129                                 }
2130                                 FOREACH_MOD_I(this->Instance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
2131                                 list.clear();
2132                                 u->second->GetExtList(list);
2133                                 for (unsigned int j = 0; j < list.size(); j++)
2134                                 {
2135                                         FOREACH_MOD_I(this->Instance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
2136                                 }
2137                         }
2138                 }
2139         }
2140
2141         /** This function is called when we want to send a netburst to a local
2142          * server. There is a set order we must do this, because for example
2143          * users require their servers to exist, and channels require their
2144          * users to exist. You get the idea.
2145          */
2146         void DoBurst(TreeServer* s)
2147         {
2148                 std::string burst = "BURST "+ConvToStr(Instance->Time(true));
2149                 std::string endburst = "ENDBURST";
2150                 // Because by the end of the netburst, it  could be gone!
2151                 std::string name = s->GetName();
2152                 this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2"+name+"\2.");
2153                 this->WriteLine(burst);
2154                 /* send our version string */
2155                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" VERSION :"+this->Instance->GetVersionString());
2156                 /* Send server tree */
2157                 this->SendServers(Utils->TreeRoot,s,1);
2158                 /* Send users and their oper status */
2159                 this->SendUsers(s);
2160                 /* Send everything else (channel modes, xlines etc) */
2161                 this->SendChannelModes(s);
2162                 this->SendXLines(s);            
2163                 FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
2164                 this->WriteLine(endburst);
2165                 this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
2166         }
2167
2168         /** This function is called when we receive data from a remote
2169          * server. We buffer the data in a std::string (it doesnt stay
2170          * there for long), reading using InspSocket::Read() which can
2171          * read up to 16 kilobytes in one operation.
2172          *
2173          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
2174          * THE SOCKET OBJECT FOR US.
2175          */
2176         virtual bool OnDataReady()
2177         {
2178                 char* data = this->Read();
2179                 /* Check that the data read is a valid pointer and it has some content */
2180                 if (data && *data)
2181                 {
2182                         this->in_buffer.append(data);
2183                         /* While there is at least one new line in the buffer,
2184                          * do something useful (we hope!) with it.
2185                          */
2186                         while (in_buffer.find("\n") != std::string::npos)
2187                         {
2188                                 std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
2189                                 in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
2190                                 /* Use rfind here not find, as theres more
2191                                  * chance of the \r being near the end of the
2192                                  * string, not the start.
2193                                  */
2194                                 if (ret.find("\r") != std::string::npos)
2195                                         ret = in_buffer.substr(0,in_buffer.find("\r")-1);
2196                                 /* Process this one, abort if it
2197                                  * didnt return true.
2198                                  */
2199                                 if (!this->ProcessLine(ret))
2200                                 {
2201                                         return false;
2202                                 }
2203                         }
2204                         return true;
2205                 }
2206                 /* EAGAIN returns an empty but non-NULL string, so this
2207                  * evaluates to TRUE for EAGAIN but to FALSE for EOF.
2208                  */
2209                 return (data && !*data);
2210         }
2211
2212         int WriteLine(std::string line)
2213         {
2214                 Instance->Log(DEBUG,"OUT: %s",line.c_str());
2215                 line.append("\r\n");
2216                 return this->Write(line);
2217         }
2218
2219         /* Handle ERROR command */
2220         bool Error(std::deque<std::string> &params)
2221         {
2222                 if (params.size() < 1)
2223                         return false;
2224                 this->Instance->SNO->WriteToSnoMask('l',"ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
2225                 /* we will return false to cause the socket to close. */
2226                 return false;
2227         }
2228
2229         /** remote MOTD. leet, huh? */
2230         bool Motd(const std::string &prefix, std::deque<std::string> &params)
2231         {
2232                 if (params.size() > 0)
2233                 {
2234                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2235                         {
2236                                 /* It's for our server */
2237                                 string_list results;
2238                                 userrec* source = this->Instance->FindNick(prefix);
2239
2240                                 if (source)
2241                                 {
2242                                         std::deque<std::string> par;
2243                                         par.push_back(prefix);
2244                                         par.push_back("");
2245
2246                                         if (!Instance->Config->MOTD.size())
2247                                         {
2248                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
2249                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2250                                                 return true;
2251                                         }
2252    
2253                                         par[1] = std::string("::")+Instance->Config->ServerName+" 375 "+source->nick+" :"+Instance->Config->ServerName+" message of the day";
2254                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2255    
2256                                         for (unsigned int i = 0; i < Instance->Config->MOTD.size(); i++)
2257                                         {
2258                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 372 "+source->nick+" :- "+Instance->Config->MOTD[i];
2259                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2260                                         }
2261      
2262                                         par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
2263                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2264                                 }
2265                         }
2266                         else
2267                         {
2268                                 /* Pass it on */
2269                                 userrec* source = this->Instance->FindNick(prefix);
2270                                 if (source)
2271                                         Utils->DoOneToOne(prefix, "MOTD", params, params[0]);
2272                         }
2273                 }
2274                 return true;
2275         }
2276
2277         /** remote ADMIN. leet, huh? */
2278         bool Admin(const std::string &prefix, std::deque<std::string> &params)
2279         {
2280                 if (params.size() > 0)
2281                 {
2282                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2283                         {
2284                                 /* It's for our server */
2285                                 string_list results;
2286                                 userrec* source = this->Instance->FindNick(prefix);
2287
2288                                 if (source)
2289                                 {
2290                                         std::deque<std::string> par;
2291                                         par.push_back(prefix);
2292                                         par.push_back("");
2293
2294                                         par[1] = std::string("::")+Instance->Config->ServerName+" 256 "+source->nick+" :Administrative info for "+Instance->Config->ServerName;
2295                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2296
2297                                         par[1] = std::string("::")+Instance->Config->ServerName+" 257 "+source->nick+" :Name     - "+Instance->Config->AdminName;
2298                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2299
2300                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :Nickname - "+Instance->Config->AdminNick;
2301                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2302
2303                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :E-Mail   - "+Instance->Config->AdminEmail;
2304                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2305                                 }
2306                         }
2307                         else
2308                         {
2309                                 /* Pass it on */
2310                                 userrec* source = this->Instance->FindNick(prefix);
2311                                 if (source)
2312                                         Utils->DoOneToOne(prefix, "ADMIN", params, params[0]);
2313                         }
2314                 }
2315                 return true;
2316         }
2317
2318         bool Stats(const std::string &prefix, std::deque<std::string> &params)
2319         {
2320                 /* Get the reply to a STATS query if it matches this servername,
2321                  * and send it back as a load of PUSH queries
2322                  */
2323                 if (params.size() > 1)
2324                 {
2325                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[1]))
2326                         {
2327                                 /* It's for our server */
2328                                 string_list results;
2329                                 userrec* source = this->Instance->FindNick(prefix);
2330                                 if (source)
2331                                 {
2332                                         std::deque<std::string> par;
2333                                         par.push_back(prefix);
2334                                         par.push_back("");
2335                                         DoStats(this->Instance, *(params[0].c_str()), source, results);
2336                                         for (size_t i = 0; i < results.size(); i++)
2337                                         {
2338                                                 par[1] = "::" + results[i];
2339                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2340                                         }
2341                                 }
2342                         }
2343                         else
2344                         {
2345                                 /* Pass it on */
2346                                 userrec* source = this->Instance->FindNick(prefix);
2347                                 if (source)
2348                                         Utils->DoOneToOne(prefix, "STATS", params, params[1]);
2349                         }
2350                 }
2351                 return true;
2352         }
2353
2354
2355         /** Because the core won't let users or even SERVERS set +o,
2356          * we use the OPERTYPE command to do this.
2357          */
2358         bool OperType(const std::string &prefix, std::deque<std::string> &params)
2359         {
2360                 if (params.size() != 1)
2361                 {
2362                         Instance->Log(DEBUG,"Received invalid oper type from %s",prefix.c_str());
2363                         return true;
2364                 }
2365                 std::string opertype = params[0];
2366                 userrec* u = this->Instance->FindNick(prefix);
2367                 if (u)
2368                 {
2369                         u->modes[UM_OPERATOR] = 1;
2370                         strlcpy(u->oper,opertype.c_str(),NICKMAX-1);
2371                         Utils->DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
2372                         this->Instance->SNO->WriteToSnoMask('o',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server, u->nick,u->ident,u->host,irc::Spacify(opertype.c_str()));
2373
2374                 }
2375                 return true;
2376         }
2377
2378         /** Because Andy insists that services-compatible servers must
2379          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
2380          */
2381         bool ForceNick(const std::string &prefix, std::deque<std::string> &params)
2382         {
2383                 if (params.size() < 3)
2384                         return true;
2385
2386                 userrec* u = this->Instance->FindNick(params[0]);
2387
2388                 if (u)
2389                 {
2390                         Utils->DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
2391                         if (IS_LOCAL(u))
2392                         {
2393                                 std::deque<std::string> par;
2394                                 par.push_back(params[1]);
2395                                 /* This is not required as one is sent in OnUserPostNick below
2396                                  */
2397                                 //Utils->DoOneToMany(u->nick,"NICK",par);
2398                                 if (!u->ForceNickChange(params[1].c_str()))
2399                                 {
2400                                         userrec::QuitUser(this->Instance, u, "Nickname collision");
2401                                         return true;
2402                                 }
2403                                 u->age = atoi(params[2].c_str());
2404                         }
2405                 }
2406                 return true;
2407         }
2408
2409         /*
2410          * Remote SQUIT (RSQUIT). Routing works similar to SVSNICK: Route it to the server that the target is connected to locally,
2411          * then let that server do the dirty work (squit it!). Example:
2412          * A -> B -> C -> D: oper on A squits D, A routes to B, B routes to C, C notices D connected locally, kills it. -- w00t
2413          */
2414         bool RemoteSquit(const std::string &prefix, std::deque<std::string> &params)
2415         {
2416                 /* ok.. :w00t RSQUIT jupe.barafranca.com :reason here */
2417                 if (params.size() < 2)
2418                         return true;
2419
2420                 TreeServer* s = Utils->FindServerMask(params[0]);
2421
2422                 if (s)
2423                 {
2424                         if (s == Utils->TreeRoot)
2425                         {
2426                                 this->Instance->SNO->WriteToSnoMask('l',"What the fuck, I recieved a remote SQUIT for myself? :< (from %s", prefix.c_str());
2427                                 return true;
2428                         }
2429
2430                         TreeSocket* sock = s->GetSocket();
2431
2432                         if (sock)
2433                         {
2434                                 /* it's locally connected, KILL IT! */
2435                                 Instance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
2436                                 Instance->SNO->WriteToSnoMask('l',"RSQUIT: Server \002%s\002 removed from network by %s: %s", params[0].c_str(), prefix.c_str(), params[1].c_str());
2437                                 sock->Squit(s,"Server quit by " + prefix + ": " + params[1]);
2438                                 Instance->SE->DelFd(sock);
2439                                 sock->Close();
2440                                 delete sock;
2441                         }
2442                         else
2443                         {
2444                                 /* route the rsquit */
2445                                 params[1] = ":" + params[1];
2446                                 Utils->DoOneToOne(prefix, "RSQUIT", params, params[0]);
2447                         }
2448                 }
2449                 else
2450                 {
2451                         /* mother fucker! it doesn't exist */
2452                 }
2453
2454                 return true;
2455         }
2456
2457         bool ServiceJoin(const std::string &prefix, std::deque<std::string> &params)
2458         {
2459                 if (params.size() < 2)
2460                         return true;
2461
2462                 userrec* u = this->Instance->FindNick(params[0]);
2463
2464                 if (u)
2465                 {
2466                         /* only join if it's local, otherwise just pass it on! */
2467                         if (IS_LOCAL(u))
2468                                 chanrec::JoinUser(this->Instance, u, params[1].c_str(), false);
2469                         Utils->DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
2470                 }
2471                 return true;
2472         }
2473
2474         bool RemoteRehash(const std::string &prefix, std::deque<std::string> &params)
2475         {
2476                 if (params.size() < 1)
2477                         return false;
2478
2479                 std::string servermask = params[0];
2480
2481                 if (this->Instance->MatchText(this->Instance->Config->ServerName,servermask))
2482                 {
2483                         this->Instance->SNO->WriteToSnoMask('l',"Remote rehash initiated by \002"+prefix+"\002.");
2484                         this->Instance->RehashServer();
2485                         Utils->ReadConfiguration(false);
2486                         InitializeDisabledCommands(Instance->Config->DisabledCommands, Instance);
2487                 }
2488                 Utils->DoOneToAllButSender(prefix,"REHASH",params,prefix);
2489                 return true;
2490         }
2491
2492         bool RemoteKill(const std::string &prefix, std::deque<std::string> &params)
2493         {
2494                 if (params.size() != 2)
2495                         return true;
2496
2497                 std::string nick = params[0];
2498                 userrec* u = this->Instance->FindNick(prefix);
2499                 userrec* who = this->Instance->FindNick(nick);
2500
2501                 if (who)
2502                 {
2503                         /* Prepend kill source, if we don't have one */
2504                         std::string sourceserv = prefix;
2505                         if (u)
2506                         {
2507                                 sourceserv = u->server;
2508                         }
2509                         if (*(params[1].c_str()) != '[')
2510                         {
2511                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
2512                         }
2513                         std::string reason = params[1];
2514                         params[1] = ":" + params[1];
2515                         Utils->DoOneToAllButSender(prefix,"KILL",params,sourceserv);
2516                         who->Write(":%s KILL %s :%s (%s)", sourceserv.c_str(), who->nick, sourceserv.c_str(), reason.c_str());
2517                         userrec::QuitUser(this->Instance,who,reason);
2518                 }
2519                 return true;
2520         }
2521
2522         bool LocalPong(const std::string &prefix, std::deque<std::string> &params)
2523         {
2524                 if (params.size() < 1)
2525                         return true;
2526
2527                 if (params.size() == 1)
2528                 {
2529                         TreeServer* ServerSource = Utils->FindServer(prefix);
2530                         if (ServerSource)
2531                         {
2532                                 ServerSource->SetPingFlag();
2533                         }
2534                 }
2535                 else
2536                 {
2537                         std::string forwardto = params[1];
2538                         if (forwardto == this->Instance->Config->ServerName)
2539                         {
2540                                 /*
2541                                  * this is a PONG for us
2542                                  * if the prefix is a user, check theyre local, and if they are,
2543                                  * dump the PONG reply back to their fd. If its a server, do nowt.
2544                                  * Services might want to send these s->s, but we dont need to yet.
2545                                  */
2546                                 userrec* u = this->Instance->FindNick(prefix);
2547
2548                                 if (u)
2549                                 {
2550                                         u->WriteServ("PONG %s %s",params[0].c_str(),params[1].c_str());
2551                                 }
2552                         }
2553                         else
2554                         {
2555                                 // not for us, pass it on :)
2556                                 Utils->DoOneToOne(prefix,"PONG",params,forwardto);
2557                         }
2558                 }
2559
2560                 return true;
2561         }
2562         
2563         bool MetaData(const std::string &prefix, std::deque<std::string> &params)
2564         {
2565                 if (params.size() < 3)
2566                         return true;
2567
2568                 TreeServer* ServerSource = Utils->FindServer(prefix);
2569
2570                 if (ServerSource)
2571                 {
2572                         if (params[0] == "*")
2573                         {
2574                                 FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
2575                         }
2576                         else if (*(params[0].c_str()) == '#')
2577                         {
2578                                 chanrec* c = this->Instance->FindChan(params[0]);
2579                                 if (c)
2580                                 {
2581                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
2582                                 }
2583                         }
2584                         else if (*(params[0].c_str()) != '#')
2585                         {
2586                                 userrec* u = this->Instance->FindNick(params[0]);
2587                                 if (u)
2588                                 {
2589                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
2590                                 }
2591                         }
2592                 }
2593
2594                 params[2] = ":" + params[2];
2595                 Utils->DoOneToAllButSender(prefix,"METADATA",params,prefix);
2596                 return true;
2597         }
2598
2599         bool ServerVersion(const std::string &prefix, std::deque<std::string> &params)
2600         {
2601                 if (params.size() < 1)
2602                         return true;
2603
2604                 TreeServer* ServerSource = Utils->FindServer(prefix);
2605
2606                 if (ServerSource)
2607                 {
2608                         ServerSource->SetVersion(params[0]);
2609                 }
2610                 params[0] = ":" + params[0];
2611                 Utils->DoOneToAllButSender(prefix,"VERSION",params,prefix);
2612                 return true;
2613         }
2614
2615         bool ChangeHost(const std::string &prefix, std::deque<std::string> &params)
2616         {
2617                 if (params.size() < 1)
2618                         return true;
2619
2620                 userrec* u = this->Instance->FindNick(prefix);
2621
2622                 if (u)
2623                 {
2624                         u->ChangeDisplayedHost(params[0].c_str());
2625                         Utils->DoOneToAllButSender(prefix,"FHOST",params,u->server);
2626                 }
2627                 return true;
2628         }
2629
2630         bool AddLine(const std::string &prefix, std::deque<std::string> &params)
2631         {
2632                 if (params.size() < 6)
2633                         return true;
2634
2635                 bool propogate = false;
2636
2637                 switch (*(params[0].c_str()))
2638                 {
2639                         case 'Z':
2640                                 propogate = Instance->XLines->add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2641                                 Instance->XLines->zline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2642                         break;
2643                         case 'Q':
2644                                 propogate = Instance->XLines->add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2645                                 Instance->XLines->qline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2646                         break;
2647                         case 'E':
2648                                 propogate = Instance->XLines->add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2649                                 Instance->XLines->eline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2650                         break;
2651                         case 'G':
2652                                 propogate = Instance->XLines->add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2653                                 Instance->XLines->gline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2654                         break;
2655                         case 'K':
2656                                 propogate = Instance->XLines->add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2657                         break;
2658                         default:
2659                                 /* Just in case... */
2660                                 this->Instance->SNO->WriteToSnoMask('x',"\2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
2661                                 propogate = false;
2662                         break;
2663                 }
2664
2665                 /* Send it on its way */
2666                 if (propogate)
2667                 {
2668                         if (atoi(params[4].c_str()))
2669                         {
2670                                 this->Instance->SNO->WriteToSnoMask('x',"%s Added %cLINE on %s to expire in %lu seconds (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),atoi(params[4].c_str()),params[5].c_str());
2671                         }
2672                         else
2673                         {
2674                                 this->Instance->SNO->WriteToSnoMask('x',"%s Added permenant %cLINE on %s (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),params[5].c_str());
2675                         }
2676                         params[5] = ":" + params[5];
2677                         Utils->DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
2678                 }
2679                 if (!this->bursting)
2680                 {
2681                         Instance->Log(DEBUG,"Applying lines...");
2682                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2683                 }
2684                 return true;
2685         }
2686
2687         bool ChangeName(const std::string &prefix, std::deque<std::string> &params)
2688         {
2689                 if (params.size() < 1)
2690                         return true;
2691
2692                 userrec* u = this->Instance->FindNick(prefix);
2693
2694                 if (u)
2695                 {
2696                         u->ChangeName(params[0].c_str());
2697                         params[0] = ":" + params[0];
2698                         Utils->DoOneToAllButSender(prefix,"FNAME",params,u->server);
2699                 }
2700                 return true;
2701         }
2702
2703         bool Whois(const std::string &prefix, std::deque<std::string> &params)
2704         {
2705                 if (params.size() < 1)
2706                         return true;
2707
2708                 Instance->Log(DEBUG,"In IDLE command");
2709                 userrec* u = this->Instance->FindNick(prefix);
2710
2711                 if (u)
2712                 {
2713                         Instance->Log(DEBUG,"USER EXISTS: %s",u->nick);
2714                         // an incoming request
2715                         if (params.size() == 1)
2716                         {
2717                                 userrec* x = this->Instance->FindNick(params[0]);
2718                                 if ((x) && (IS_LOCAL(x)))
2719                                 {
2720                                         userrec* x = this->Instance->FindNick(params[0]);
2721                                         char signon[MAXBUF];
2722                                         char idle[MAXBUF];
2723
2724                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
2725                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-Instance->Time(true)));
2726                                         std::deque<std::string> par;
2727                                         par.push_back(prefix);
2728                                         par.push_back(signon);
2729                                         par.push_back(idle);
2730                                         // ours, we're done, pass it BACK
2731                                         Utils->DoOneToOne(params[0],"IDLE",par,u->server);
2732                                 }
2733                                 else
2734                                 {
2735                                         // not ours pass it on
2736                                         Utils->DoOneToOne(prefix,"IDLE",params,x->server);
2737                                 }
2738                         }
2739                         else if (params.size() == 3)
2740                         {
2741                                 std::string who_did_the_whois = params[0];
2742                                 userrec* who_to_send_to = this->Instance->FindNick(who_did_the_whois);
2743                                 if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2744                                 {
2745                                         // an incoming reply to a whois we sent out
2746                                         std::string nick_whoised = prefix;
2747                                         unsigned long signon = atoi(params[1].c_str());
2748                                         unsigned long idle = atoi(params[2].c_str());
2749                                         if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2750                                                 do_whois(this->Instance,who_to_send_to,u,signon,idle,nick_whoised.c_str());
2751                                 }
2752                                 else
2753                                 {
2754                                         // not ours, pass it on
2755                                         Utils->DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
2756                                 }
2757                         }
2758                 }
2759                 return true;
2760         }
2761
2762         bool Push(const std::string &prefix, std::deque<std::string> &params)
2763         {
2764                 if (params.size() < 2)
2765                         return true;
2766
2767                 userrec* u = this->Instance->FindNick(params[0]);
2768
2769                 if (!u)
2770                         return true;
2771
2772                 if (IS_LOCAL(u))
2773                 {
2774                         u->Write(params[1]);
2775                 }
2776                 else
2777                 {
2778                         // continue the raw onwards
2779                         params[1] = ":" + params[1];
2780                         Utils->DoOneToOne(prefix,"PUSH",params,u->server);
2781                 }
2782                 return true;
2783         }
2784
2785         bool HandleSetTime(const std::string &prefix, std::deque<std::string> &params)
2786         {
2787                 if (!params.size() || !Utils->EnableTimeSync)
2788                         return true;
2789                 
2790                 bool force = false;
2791                 
2792                 if ((params.size() == 2) && (params[1] == "FORCE"))
2793                         force = true;
2794                 
2795                 time_t rts = atoi(params[0].c_str());
2796                 time_t us = Instance->Time(true);
2797                 
2798                 if (rts == us)
2799                 {
2800                         Instance->Log(DEBUG, "Timestamp from %s is equal", prefix.c_str());
2801                         
2802                         Utils->DoOneToAllButSender(prefix, "TIMESET", params, prefix);
2803                 }
2804                 else if (force || (rts < us))
2805                 {
2806                         int old = Instance->SetTimeDelta(rts - us);
2807                         Instance->Log(DEBUG, "%s TS (diff %d) from %s applied (old delta was %d)", (force) ? "Forced" : "Lower", rts - us, prefix.c_str(), old);
2808                         
2809                         Utils->DoOneToAllButSender(prefix, "TIMESET", params, prefix);
2810                 }
2811                 else
2812                 {
2813                         Instance->Log(DEBUG, "Higher TS (diff %d) from %s overridden", us - rts, prefix.c_str());
2814                         
2815                         std::deque<std::string> oparams;
2816                         oparams.push_back(ConvToStr(us));
2817                         
2818                         Utils->DoOneToMany(prefix, "TIMESET", oparams);
2819                 }
2820                 
2821                 return true;
2822         }
2823
2824         bool Time(const std::string &prefix, std::deque<std::string> &params)
2825         {
2826                 // :source.server TIME remote.server sendernick
2827                 // :remote.server TIME source.server sendernick TS
2828                 if (params.size() == 2)
2829                 {
2830                         // someone querying our time?
2831                         if (this->Instance->Config->ServerName == params[0])
2832                         {
2833                                 userrec* u = this->Instance->FindNick(params[1]);
2834                                 if (u)
2835                                 {
2836                                         params.push_back(ConvToStr(Instance->Time(false)));
2837                                         params[0] = prefix;
2838                                         Utils->DoOneToOne(this->Instance->Config->ServerName,"TIME",params,params[0]);
2839                                 }
2840                         }
2841                         else
2842                         {
2843                                 // not us, pass it on
2844                                 userrec* u = this->Instance->FindNick(params[1]);
2845                                 if (u)
2846                                         Utils->DoOneToOne(prefix,"TIME",params,params[0]);
2847                         }
2848                 }
2849                 else if (params.size() == 3)
2850                 {
2851                         // a response to a previous TIME
2852                         userrec* u = this->Instance->FindNick(params[1]);
2853                         if ((u) && (IS_LOCAL(u)))
2854                         {
2855                         time_t rawtime = atol(params[2].c_str());
2856                         struct tm * timeinfo;
2857                         timeinfo = localtime(&rawtime);
2858                                 char tms[26];
2859                                 snprintf(tms,26,"%s",asctime(timeinfo));
2860                                 tms[24] = 0;
2861                         u->WriteServ("391 %s %s :%s",u->nick,prefix.c_str(),tms);
2862                         }
2863                         else
2864                         {
2865                                 if (u)
2866                                         Utils->DoOneToOne(prefix,"TIME",params,u->server);
2867                         }
2868                 }
2869                 return true;
2870         }
2871         
2872         bool LocalPing(const std::string &prefix, std::deque<std::string> &params)
2873         {
2874                 if (params.size() < 1)
2875                         return true;
2876
2877                 if (params.size() == 1)
2878                 {
2879                         std::string stufftobounce = params[0];
2880                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" PONG "+stufftobounce);
2881                         return true;
2882                 }
2883                 else
2884                 {
2885                         std::string forwardto = params[1];
2886                         if (forwardto == this->Instance->Config->ServerName)
2887                         {
2888                                 // this is a ping for us, send back PONG to the requesting server
2889                                 params[1] = params[0];
2890                                 params[0] = forwardto;
2891                                 Utils->DoOneToOne(forwardto,"PONG",params,params[1]);
2892                         }
2893                         else
2894                         {
2895                                 // not for us, pass it on :)
2896                                 Utils->DoOneToOne(prefix,"PING",params,forwardto);
2897                         }
2898                         return true;
2899                 }
2900         }
2901
2902         bool RemoveStatus(const std::string &prefix, std::deque<std::string> &params)
2903         {
2904                 if (params.size() < 1)
2905                         return true;
2906
2907                 chanrec* c = Instance->FindChan(params[0]);
2908
2909                 if (c)
2910                 {
2911                         irc::modestacker modestack(false);
2912                         CUList *ulist = c->GetUsers();
2913                         const char* y[127];
2914                         std::deque<std::string> stackresult;
2915                         std::string x;
2916
2917                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
2918                         {
2919                                 std::string modesequence = Instance->Modes->ModeString(i->second, c);
2920                                 if (modesequence.length())
2921                                 {
2922                                         Instance->Log(DEBUG,"Mode sequence = '%s'",modesequence.c_str());
2923                                         irc::spacesepstream sep(modesequence);
2924                                         std::string modeletters = sep.GetToken();
2925                                         Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2926                                         
2927                                         while (!modeletters.empty())
2928                                         {
2929                                                 char mletter = *(modeletters.begin());
2930                                                 modestack.Push(mletter,sep.GetToken());
2931                                                 Instance->Log(DEBUG,"Push letter = '%c'",mletter);
2932                                                 modeletters.erase(modeletters.begin());
2933                                                 Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2934                                         }
2935                                 }
2936                         }
2937
2938                         while (modestack.GetStackedLine(stackresult))
2939                         {
2940                                 Instance->Log(DEBUG,"Stacked line size %d",stackresult.size());
2941                                 stackresult.push_front(ConvToStr(c->age));
2942                                 stackresult.push_front(c->name);
2943                                 Utils->DoOneToMany(Instance->Config->ServerName, "FMODE", stackresult);
2944                                 stackresult.erase(stackresult.begin() + 1);
2945                                 Instance->Log(DEBUG,"Stacked items:");
2946                                 for (size_t z = 0; z < stackresult.size(); z++)
2947                                 {
2948                                         y[z] = stackresult[z].c_str();
2949                                         Instance->Log(DEBUG,"\tstackresult[%d]='%s'",z,stackresult[z].c_str());
2950                                 }
2951                                 userrec* n = new userrec(Instance);
2952                                 n->SetFd(FD_MAGIC_NUMBER);
2953                                 Instance->SendMode(y, stackresult.size(), n);
2954                                 delete n;
2955                         }
2956                 }
2957                 return true;
2958         }
2959
2960         bool RemoteServer(const std::string &prefix, std::deque<std::string> &params)
2961         {
2962                 if (params.size() < 4)
2963                         return false;
2964
2965                 std::string servername = params[0];
2966                 std::string password = params[1];
2967                 // hopcount is not used for a remote server, we calculate this ourselves
2968                 std::string description = params[3];
2969                 TreeServer* ParentOfThis = Utils->FindServer(prefix);
2970
2971                 if (!ParentOfThis)
2972                 {
2973                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
2974                         return false;
2975                 }
2976                 TreeServer* CheckDupe = Utils->FindServer(servername);
2977                 if (CheckDupe)
2978                 {
2979                         this->WriteLine("ERROR :Server "+servername+" already exists!");
2980                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+servername+"\2 denied, already exists");
2981                         return false;
2982                 }
2983                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,servername,description,ParentOfThis,NULL);
2984                 ParentOfThis->AddChild(Node);
2985                 params[3] = ":" + params[3];
2986                 Utils->DoOneToAllButSender(prefix,"SERVER",params,prefix);
2987                 this->Instance->SNO->WriteToSnoMask('l',"Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
2988                 return true;
2989         }
2990
2991         bool Outbound_Reply_Server(std::deque<std::string> &params)
2992         {
2993                 if (params.size() < 4)
2994                         return false;
2995
2996                 irc::string servername = params[0].c_str();
2997                 std::string sname = params[0];
2998                 std::string password = params[1];
2999                 int hops = atoi(params[2].c_str());
3000
3001                 if (hops)
3002                 {
3003                         this->WriteLine("ERROR :Server too far away for authentication");
3004                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
3005                         return false;
3006                 }
3007                 std::string description = params[3];
3008                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
3009                 {
3010                         if ((x->Name == servername) && (x->RecvPass == password))
3011                         {
3012                                 TreeServer* CheckDupe = Utils->FindServer(sname);
3013                                 if (CheckDupe)
3014                                 {
3015                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
3016                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
3017                                         return false;
3018                                 }
3019                                 // Begin the sync here. this kickstarts the
3020                                 // other side, waiting in WAIT_AUTH_2 state,
3021                                 // into starting their burst, as it shows
3022                                 // that we're happy.
3023                                 this->LinkState = CONNECTED;
3024                                 // we should add the details of this server now
3025                                 // to the servers tree, as a child of the root
3026                                 // node.
3027                                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,sname,description,Utils->TreeRoot,this);
3028                                 Utils->TreeRoot->AddChild(Node);
3029                                 params[3] = ":" + params[3];
3030                                 Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,sname);
3031                                 this->bursting = true;
3032                                 this->DoBurst(Node);
3033                                 return true;
3034                         }
3035                 }
3036                 this->WriteLine("ERROR :Invalid credentials");
3037                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
3038                 return false;
3039         }
3040
3041         bool Inbound_Server(std::deque<std::string> &params)
3042         {
3043                 if (params.size() < 4)
3044                         return false;
3045
3046                 irc::string servername = params[0].c_str();
3047                 std::string sname = params[0];
3048                 std::string password = params[1];
3049                 int hops = atoi(params[2].c_str());
3050
3051                 if (hops)
3052                 {
3053                         this->WriteLine("ERROR :Server too far away for authentication");
3054                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
3055                         return false;
3056                 }
3057                 std::string description = params[3];
3058                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
3059                 {
3060                         if ((x->Name == servername) && (x->RecvPass == password))
3061                         {
3062                                 TreeServer* CheckDupe = Utils->FindServer(sname);
3063                                 if (CheckDupe)
3064                                 {
3065                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
3066                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
3067                                         return false;
3068                                 }
3069                                 this->Instance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
3070
3071                                 if (this->Hook)
3072                                 {
3073                                         std::string name = InspSocketNameRequest((Module*)Utils->Creator, this->Hook).Send();
3074                                         this->Instance->SNO->WriteToSnoMask('l',"Connection from \2"+sname+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] using transport \2"+name+"\2");
3075                                 }
3076
3077                                 this->InboundServerName = sname;
3078                                 this->InboundDescription = description;
3079                                 // this is good. Send our details: Our server name and description and hopcount of 0,
3080                                 // along with the sendpass from this block.
3081                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+x->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
3082                                 // move to the next state, we are now waiting for THEM.
3083                                 this->LinkState = WAIT_AUTH_2;
3084                                 return true;
3085                         }
3086                 }
3087                 this->WriteLine("ERROR :Invalid credentials");
3088                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
3089                 return false;
3090         }
3091
3092         void Split(const std::string &line, std::deque<std::string> &n)
3093         {
3094                 n.clear();
3095                 irc::tokenstream tokens(line);
3096                 std::string param;
3097                 while ((param = tokens.GetToken()) != "")
3098                         n.push_back(param);
3099                 return;
3100         }
3101
3102         bool ProcessLine(std::string &line)
3103         {
3104                 std::deque<std::string> params;
3105                 irc::string command;
3106                 std::string prefix;
3107                 
3108                 line = line.substr(0, line.find_first_of("\r\n"));
3109                 
3110                 if (line.empty())
3111                         return true;
3112                 
3113                 Instance->Log(DEBUG,"IN: %s", line.c_str());
3114                 
3115                 this->Split(line.c_str(),params);
3116                         
3117                 if ((params[0][0] == ':') && (params.size() > 1))
3118                 {
3119                         prefix = params[0].substr(1);
3120                         params.pop_front();
3121                 }
3122
3123                 command = params[0].c_str();
3124                 params.pop_front();
3125
3126                 switch (this->LinkState)
3127                 {
3128                         TreeServer* Node;
3129                         
3130                         case WAIT_AUTH_1:
3131                                 // Waiting for SERVER command from remote server. Server initiating
3132                                 // the connection sends the first SERVER command, listening server
3133                                 // replies with theirs if its happy, then if the initiator is happy,
3134                                 // it starts to send its net sync, which starts the merge, otherwise
3135                                 // it sends an ERROR.
3136                                 if (command == "PASS")
3137                                 {
3138                                         /* Silently ignored */
3139                                 }
3140                                 else if (command == "SERVER")
3141                                 {
3142                                         return this->Inbound_Server(params);
3143                                 }
3144                                 else if (command == "ERROR")
3145                                 {
3146                                         return this->Error(params);
3147                                 }
3148                                 else if (command == "USER")
3149                                 {
3150                                         this->WriteLine("ERROR :Client connections to this port are prohibited.");
3151                                         return false;
3152                                 }
3153                                 else if (command == "CAPAB")
3154                                 {
3155                                         return this->Capab(params);
3156                                 }
3157                                 else if ((command == "U") || (command == "S"))
3158                                 {
3159                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3160                                         return false;
3161                                 }
3162                                 else
3163                                 {
3164                                         std::string error("ERROR :Invalid command in negotiation phase: ");
3165                                         error.append(command.c_str());
3166                                         this->WriteLine(error);
3167                                         return false;
3168                                 }
3169                         break;
3170                         case WAIT_AUTH_2:
3171                                 // Waiting for start of other side's netmerge to say they liked our
3172                                 // password.
3173                                 if (command == "SERVER")
3174                                 {
3175                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
3176                                         // silently ignore.
3177                                         return true;
3178                                 }
3179                                 else if ((command == "U") || (command == "S"))
3180                                 {
3181                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3182                                         return false;
3183                                 }
3184                                 else if (command == "BURST")
3185                                 {
3186                                         if (params.size() && Utils->EnableTimeSync)
3187                                         {
3188                                                 /* If a time stamp is provided, apply synchronization */
3189                                                 bool force = false;
3190                                                 time_t them = atoi(params[0].c_str());
3191                                                 time_t us = Instance->Time(true);
3192                                                 int delta = them - us;
3193
3194                                                 if ((params.size() == 2) && (params[1] == "FORCE"))
3195                                                         force = true;
3196
3197                                                 if ((delta < -600) || (delta > 600))
3198                                                 {
3199                                                         this->Instance->SNO->WriteToSnoMask('l',"\2ERROR\2: Your clocks are out by %d seconds (this is more than ten minutes). Link aborted, \2PLEASE SYNC YOUR CLOCKS!\2",abs(delta));
3200                                                         this->WriteLine("ERROR :Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
3201                                                         return false;
3202                                                 }
3203                                                 
3204                                                 if (us == them)
3205                                                 {
3206                                                         this->Instance->Log(DEBUG, "Timestamps are equal; pat yourself on the back");
3207                                                 }
3208                                                 else if (force || (us > them))
3209                                                 {
3210                                                         this->Instance->Log(DEBUG, "Remote server has lower TS (%d seconds)", them - us);
3211                                                         this->Instance->SetTimeDelta(them - us);
3212                                                         // Send this new timestamp to any other servers
3213                                                         Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
3214                                                 }
3215                                                 else
3216                                                 {
3217                                                         // Override the timestamp
3218                                                         this->Instance->Log(DEBUG, "We have a higher timestamp (by %d seconds), not updating delta", us - them);
3219                                                         this->WriteLine(":" + Utils->TreeRoot->GetName() + " TIMESET " + ConvToStr(us));
3220                                                 }
3221                                         }
3222                                         this->LinkState = CONNECTED;
3223                                         Node = new TreeServer(this->Utils,this->Instance,InboundServerName,InboundDescription,Utils->TreeRoot,this);
3224                                         Utils->TreeRoot->AddChild(Node);
3225                                         params.clear();
3226                                         params.push_back(InboundServerName);
3227                                         params.push_back("*");
3228                                         params.push_back("1");
3229                                         params.push_back(":"+InboundDescription);
3230                                         Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,InboundServerName);
3231                                         this->bursting = true;
3232                                         this->DoBurst(Node);
3233                                 }
3234                                 else if (command == "ERROR")
3235                                 {
3236                                         return this->Error(params);
3237                                 }
3238                                 else if (command == "CAPAB")
3239                                 {
3240                                         return this->Capab(params);
3241                                 }
3242                                 
3243                         break;
3244                         case LISTENER:
3245                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
3246                                 return false;
3247                         break;
3248                         case CONNECTING:
3249                                 if (command == "SERVER")
3250                                 {
3251                                         // another server we connected to, which was in WAIT_AUTH_1 state,
3252                                         // has just sent us their credentials. If we get this far, theyre
3253                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
3254                                         // if we're happy with this, we should send our netburst which
3255                                         // kickstarts the merge.
3256                                         return this->Outbound_Reply_Server(params);
3257                                 }
3258                                 else if (command == "ERROR")
3259                                 {
3260                                         return this->Error(params);
3261                                 }
3262                         break;
3263                         case CONNECTED:
3264                                 // This is the 'authenticated' state, when all passwords
3265                                 // have been exchanged and anything past this point is taken
3266                                 // as gospel.
3267                                 
3268                                 if (prefix != "")
3269                                 {
3270                                         std::string direction = prefix;
3271                                         userrec* t = this->Instance->FindNick(prefix);
3272                                         if (t)
3273                                         {
3274                                                 direction = t->server;
3275                                         }
3276                                         TreeServer* route_back_again = Utils->BestRouteTo(direction);
3277                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
3278                                         {
3279                                                 if (route_back_again)
3280                                                         Instance->Log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
3281                                                 return true;
3282                                         }
3283
3284                                         /* Fix by brain:
3285                                          * When there is activity on the socket, reset the ping counter so
3286                                          * that we're not wasting bandwidth pinging an active server.
3287                                          */ 
3288                                         route_back_again->SetNextPingTime(time(NULL) + 60);
3289                                         route_back_again->SetPingFlag();
3290                                 }
3291                                 
3292                                 if (command == "SVSMODE")
3293                                 {
3294                                         /* Services expects us to implement
3295                                          * SVSMODE. In inspircd its the same as
3296                                          * MODE anyway.
3297                                          */
3298                                         command = "MODE";
3299                                 }
3300                                 std::string target = "";
3301                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
3302                                  * working with std::string here.
3303                                  */
3304                                 if ((command == "NICK") && (params.size() > 1))
3305                                 {
3306                                         return this->IntroduceClient(prefix,params);
3307                                 }
3308                                 else if (command == "FJOIN")
3309                                 {
3310                                         return this->ForceJoin(prefix,params);
3311                                 }
3312                                 else if (command == "STATS")
3313                                 {
3314                                         return this->Stats(prefix, params);
3315                                 }
3316                                 else if (command == "MOTD")
3317                                 {
3318                                         return this->Motd(prefix, params);
3319                                 }
3320                                 else if (command == "ADMIN")
3321                                 {
3322                                         return this->Admin(prefix, params);
3323                                 }
3324                                 else if (command == "SERVER")
3325                                 {
3326                                         return this->RemoteServer(prefix,params);
3327                                 }
3328                                 else if (command == "ERROR")
3329                                 {
3330                                         return this->Error(params);
3331                                 }
3332                                 else if (command == "OPERTYPE")
3333                                 {
3334                                         return this->OperType(prefix,params);
3335                                 }
3336                                 else if (command == "FMODE")
3337                                 {
3338                                         return this->ForceMode(prefix,params);
3339                                 }
3340                                 else if (command == "KILL")
3341                                 {
3342                                         return this->RemoteKill(prefix,params);
3343                                 }
3344                                 else if (command == "FTOPIC")
3345                                 {
3346                                         return this->ForceTopic(prefix,params);
3347                                 }
3348                                 else if (command == "REHASH")
3349                                 {
3350                                         return this->RemoteRehash(prefix,params);
3351                                 }
3352                                 else if (command == "METADATA")
3353                                 {
3354                                         return this->MetaData(prefix,params);
3355                                 }
3356                                 else if (command == "REMSTATUS")
3357                                 {
3358                                         return this->RemoveStatus(prefix,params);
3359                                 }
3360                                 else if (command == "PING")
3361                                 {
3362                                         /*
3363                                          * We just got a ping from a server that's bursting.
3364                                          * This can't be right, so set them to not bursting, and
3365                                          * apply their lines.
3366                                          */
3367                                         if (this->bursting)
3368                                         {
3369                                                 this->bursting = false;
3370                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3371                                         }
3372                                         if (prefix == "")
3373                                         {
3374                                                 prefix = this->GetName();
3375                                         }
3376                                         return this->LocalPing(prefix,params);
3377                                 }
3378                                 else if (command == "PONG")
3379                                 {
3380                                         /*
3381                                          * We just got a pong from a server that's bursting.
3382                                          * This can't be right, so set them to not bursting, and
3383                                          * apply their lines.
3384                                          */
3385                                         if (this->bursting)
3386                                         {
3387                                                 this->bursting = false;
3388                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3389                                         }
3390                                         if (prefix == "")
3391                                         {
3392                                                 prefix = this->GetName();
3393                                         }
3394                                         return this->LocalPong(prefix,params);
3395                                 }
3396                                 else if (command == "VERSION")
3397                                 {
3398                                         return this->ServerVersion(prefix,params);
3399                                 }
3400                                 else if (command == "FHOST")
3401                                 {
3402                                         return this->ChangeHost(prefix,params);
3403                                 }
3404                                 else if (command == "FNAME")
3405                                 {
3406                                         return this->ChangeName(prefix,params);
3407                                 }
3408                                 else if (command == "ADDLINE")
3409                                 {
3410                                         return this->AddLine(prefix,params);
3411                                 }
3412                                 else if (command == "SVSNICK")
3413                                 {
3414                                         if (prefix == "")
3415                                         {
3416                                                 prefix = this->GetName();
3417                                         }
3418                                         return this->ForceNick(prefix,params);
3419                                 }
3420                                 else if (command == "RSQUIT")
3421                                 {
3422                                         return this->RemoteSquit(prefix, params);
3423                                 }
3424                                 else if (command == "IDLE")
3425                                 {
3426                                         return this->Whois(prefix,params);
3427                                 }
3428                                 else if (command == "PUSH")
3429                                 {
3430                                         return this->Push(prefix,params);
3431                                 }
3432                                 else if (command == "TIMESET")
3433                                 {
3434                                         return this->HandleSetTime(prefix, params);
3435                                 }
3436                                 else if (command == "TIME")
3437                                 {
3438                                         return this->Time(prefix,params);
3439                                 }
3440                                 else if ((command == "KICK") && (Utils->IsServer(prefix)))
3441                                 {
3442                                         std::string sourceserv = this->myhost;
3443                                         if (params.size() == 3)
3444                                         {
3445                                                 userrec* user = this->Instance->FindNick(params[1]);
3446                                                 chanrec* chan = this->Instance->FindChan(params[0]);
3447                                                 if (user && chan)
3448                                                 {
3449                                                         if (!chan->ServerKickUser(user, params[2].c_str(), false))
3450                                                                 /* Yikes, the channels gone! */
3451                                                                 delete chan;
3452                                                 }
3453                                         }
3454                                         if (this->InboundServerName != "")
3455                                         {
3456                                                 sourceserv = this->InboundServerName;
3457                                         }
3458                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3459                                 }
3460                                 else if (command == "SVSJOIN")
3461                                 {
3462                                         if (prefix == "")
3463                                         {
3464                                                 prefix = this->GetName();
3465                                         }
3466                                         return this->ServiceJoin(prefix,params);
3467                                 }
3468                                 else if (command == "SQUIT")
3469                                 {
3470                                         if (params.size() == 2)
3471                                         {
3472                                                 this->Squit(Utils->FindServer(params[0]),params[1]);
3473                                         }
3474                                         return true;
3475                                 }
3476                                 else if (command == "OPERNOTICE")
3477                                 {
3478                                         std::string sourceserv = this->myhost;
3479
3480                                         if (this->InboundServerName != "")
3481                                                 sourceserv = this->InboundServerName;
3482
3483                                         if (params.size() >= 1)
3484                                                 Instance->WriteOpers("*** From " + sourceserv + ": " + params[0]);
3485
3486                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3487                                 }
3488                                 else if (command == "MODENOTICE")
3489                                 {
3490                                         std::string sourceserv = this->myhost;
3491                                         if (this->InboundServerName != "")
3492                                                 sourceserv = this->InboundServerName;
3493                                         if (params.size() >= 2)
3494                                         {
3495                                                 Instance->WriteMode(params[0].c_str(), WM_AND, "*** From %s: %s", sourceserv.c_str(), params[1].c_str());
3496                                         }
3497
3498                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3499                                 }
3500                                 else if (command == "SNONOTICE")
3501                                 {
3502                                         std::string sourceserv = this->myhost;
3503                                         if (this->InboundServerName != "")
3504                                                 sourceserv = this->InboundServerName;
3505                                         if (params.size() >= 2)
3506                                         {
3507                                                 Instance->SNO->WriteToSnoMask(*(params[0].c_str()), "From " + sourceserv + ": "+ params[1]);
3508                                         }
3509
3510                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3511                                 }
3512                                 else if (command == "ENDBURST")
3513                                 {
3514                                         this->bursting = false;
3515                                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3516                                         std::string sourceserv = this->myhost;
3517                                         if (this->InboundServerName != "")
3518                                         {
3519                                                 sourceserv = this->InboundServerName;
3520                                         }
3521                                         this->Instance->SNO->WriteToSnoMask('l',"Received end of netburst from \2%s\2",sourceserv.c_str());
3522
3523                                         Event rmode((char*)sourceserv.c_str(), (Module*)Utils->Creator, "new_server");
3524                                         rmode.Send(Instance);
3525
3526                                         return true;
3527                                 }
3528                                 else
3529                                 {
3530                                         // not a special inter-server command.
3531                                         // Emulate the actual user doing the command,
3532                                         // this saves us having a huge ugly parser.
3533                                         userrec* who = this->Instance->FindNick(prefix);
3534                                         std::string sourceserv = this->myhost;
3535                                         if (this->InboundServerName != "")
3536                                         {
3537                                                 sourceserv = this->InboundServerName;
3538                                         }
3539                                         if ((!who) && (command == "MODE"))
3540                                         {
3541                                                 if (Utils->IsServer(prefix))
3542                                                 {
3543                                                         const char* modelist[127];
3544                                                         for (size_t i = 0; i < params.size(); i++)
3545                                                                 modelist[i] = params[i].c_str();
3546
3547                                                         userrec* fake = new userrec(Instance);
3548                                                         fake->SetFd(FD_MAGIC_NUMBER);
3549
3550                                                         this->Instance->SendMode(modelist, params.size(), fake);
3551         
3552                                                         delete fake;
3553
3554                                                         /* Hot potato! pass it on! */
3555                                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3556                                                 }
3557                                         }
3558                                         if (who)
3559                                         {
3560                                                 if ((command == "NICK") && (params.size() > 0))
3561                                                 {
3562                                                         /* On nick messages, check that the nick doesnt
3563                                                          * already exist here. If it does, kill their copy,
3564                                                          * and our copy.
3565                                                          */
3566                                                         userrec* x = this->Instance->FindNick(params[0]);
3567                                                         if ((x) && (x != who))
3568                                                         {
3569                                                                 std::deque<std::string> p;
3570                                                                 p.push_back(params[0]);
3571                                                                 p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
3572                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3573                                                                 p.clear();
3574                                                                 p.push_back(prefix);
3575                                                                 p.push_back("Nickname collision");
3576                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3577                                                                 userrec::QuitUser(this->Instance,x,"Nickname collision ("+prefix+" -> "+params[0]+")");
3578                                                                 userrec* y = this->Instance->FindNick(prefix);
3579                                                                 if (y)
3580                                                                 {
3581                                                                         userrec::QuitUser(this->Instance,y,"Nickname collision");
3582                                                                 }
3583                                                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3584                                                         }
3585                                                 }
3586                                                 // its a user
3587                                                 target = who->server;
3588                                                 const char* strparams[127];
3589                                                 for (unsigned int q = 0; q < params.size(); q++)
3590                                                 {
3591                                                         strparams[q] = params[q].c_str();
3592                                                 }
3593                                                 switch (this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
3594                                                 {
3595                                                         case CMD_INVALID:
3596                                                                 this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
3597                                                                 return false;
3598                                                         break;
3599                                                         case CMD_FAILURE:
3600                                                                 return true;
3601                                                         break;
3602                                                         default:
3603                                                                 /* CMD_SUCCESS and CMD_USER_DELETED fall through here */
3604                                                         break;
3605                                                 }
3606                                         }
3607                                         else
3608                                         {
3609                                                 // its not a user. Its either a server, or somethings screwed up.
3610                                                 if (Utils->IsServer(prefix))
3611                                                 {
3612                                                         target = this->Instance->Config->ServerName;
3613                                                 }
3614                                                 else
3615                                                 {
3616                                                         Instance->Log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
3617                                                         return true;
3618                                                 }
3619                                         }
3620                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3621
3622                                 }
3623                                 return true;
3624                         break;
3625                 }
3626                 return true;
3627         }
3628
3629         virtual std::string GetName()
3630         {
3631                 std::string sourceserv = this->myhost;
3632                 if (this->InboundServerName != "")
3633                 {
3634                         sourceserv = this->InboundServerName;
3635                 }
3636                 return sourceserv;
3637         }
3638
3639         virtual void OnTimeout()
3640         {
3641                 if (this->LinkState == CONNECTING)
3642                 {
3643                         this->Instance->SNO->WriteToSnoMask('l',"CONNECT: Connection to \002"+myhost+"\002 timed out.");
3644                         Link* MyLink = Utils->FindLink(myhost);
3645                         if (MyLink)
3646                                 Utils->DoFailOver(MyLink);
3647                 }
3648         }
3649
3650         virtual void OnClose()
3651         {
3652                 // Connection closed.
3653                 // If the connection is fully up (state CONNECTED)
3654                 // then propogate a netsplit to all peers.
3655                 std::string quitserver = this->myhost;
3656                 if (this->InboundServerName != "")
3657                 {
3658                         quitserver = this->InboundServerName;
3659                 }
3660                 TreeServer* s = Utils->FindServer(quitserver);
3661                 if (s)
3662                 {
3663                         Squit(s,"Remote host closed the connection");
3664                 }
3665
3666                 if (quitserver != "")
3667                         this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str());
3668         }
3669
3670         virtual int OnIncomingConnection(int newsock, char* ip)
3671         {
3672                 /* To prevent anyone from attempting to flood opers/DDoS by connecting to the server port,
3673                  * or discovering if this port is the server port, we don't allow connections from any
3674                  * IPs for which we don't have a link block.
3675                  */
3676                 bool found = false;
3677
3678                 found = (std::find(Utils->ValidIPs.begin(), Utils->ValidIPs.end(), ip) != Utils->ValidIPs.end());
3679                 if (!found)
3680                 {
3681                         for (vector<std::string>::iterator i = Utils->ValidIPs.begin(); i != Utils->ValidIPs.end(); i++)
3682                                 if (irc::sockets::MatchCIDR(ip, (*i).c_str()))
3683                                         found = true;
3684
3685                         if (!found)
3686                         {
3687                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from %s denied (no link blocks with that IP address)", ip);
3688                                 close(newsock);
3689                                 return false;
3690                         }
3691                 }
3692
3693                 TreeSocket* s = new TreeSocket(this->Utils, this->Instance, newsock, ip, this->Hook);
3694
3695                 s = s; /* Whinge whinge whinge, thats all GCC ever does. */
3696                 return true;
3697         }
3698 };
3699
3700 /** This class is used to resolve server hostnames during /connect and autoconnect.
3701  * As of 1.1, the resolver system is seperated out from InspSocket, so we must do this
3702  * resolver step first ourselves if we need it. This is totally nonblocking, and will
3703  * callback to OnLookupComplete or OnError when completed. Once it has completed we
3704  * will have an IP address which we can then use to continue our connection.
3705  */
3706 class ServernameResolver : public Resolver
3707 {       
3708  private:
3709         /** A copy of the Link tag info for what we're connecting to.
3710          * We take a copy, rather than using a pointer, just in case the
3711          * admin takes the tag away and rehashes while the domain is resolving.
3712          */
3713         Link MyLink;
3714         SpanningTreeUtilities* Utils;
3715  public: 
3716         ServernameResolver(Module* me, SpanningTreeUtilities* Util, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, me), MyLink(x), Utils(Util)
3717         {
3718                 /* Nothing in here, folks */
3719         }
3720
3721         void OnLookupComplete(const std::string &result)
3722         {
3723                 /* Initiate the connection, now that we have an IP to use.
3724                  * Passing a hostname directly to InspSocket causes it to
3725                  * just bail and set its FD to -1.
3726                  */
3727                 TreeServer* CheckDupe = Utils->FindServer(MyLink.Name.c_str());
3728                 if (!CheckDupe) /* Check that nobody tried to connect it successfully while we were resolving */
3729                 {
3730
3731                         if ((!MyLink.Hook.empty()) && (Utils->hooks.find(MyLink.Hook.c_str()) ==  Utils->hooks.end()))
3732                                 return;
3733
3734                         TreeSocket* newsocket = new TreeSocket(this->Utils, ServerInstance, result,MyLink.Port,false,MyLink.Timeout ? MyLink.Timeout : 10,MyLink.Name.c_str(),
3735                                         MyLink.Hook.empty() ? NULL : Utils->hooks[MyLink.Hook.c_str()]);
3736                         if (newsocket->GetFd() > -1)
3737                         {
3738                                 /* We're all OK */
3739                         }
3740                         else
3741                         {
3742                                 /* Something barfed, show the opers */
3743                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",MyLink.Name.c_str(),strerror(errno));
3744                                 delete newsocket;
3745                                 Utils->DoFailOver(&MyLink);
3746                         }
3747                 }
3748         }
3749
3750         void OnError(ResolverError e, const std::string &errormessage)
3751         {
3752                 /* Ooops! */
3753                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: Unable to resolve hostname - %s",MyLink.Name.c_str(),errormessage.c_str());
3754                 Utils->DoFailOver(&MyLink);
3755         }
3756 };
3757
3758 /** Handle resolving of server IPs for the cache
3759  */
3760 class SecurityIPResolver : public Resolver
3761 {
3762  private:
3763         Link MyLink;
3764         SpanningTreeUtilities* Utils;
3765  public:
3766         SecurityIPResolver(Module* me, SpanningTreeUtilities* U, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, me), MyLink(x), Utils(U)
3767         {
3768         }
3769
3770         void OnLookupComplete(const std::string &result)
3771         {
3772                 ServerInstance->Log(DEBUG,"Security IP cache: Adding IP address '%s' for Link '%s'",result.c_str(),MyLink.Name.c_str());
3773                 Utils->ValidIPs.push_back(result);
3774         }
3775
3776         void OnError(ResolverError e, const std::string &errormessage)
3777         {
3778                 ServerInstance->Log(DEBUG,"Could not resolve IP associated with Link '%s': %s",MyLink.Name.c_str(),errormessage.c_str());
3779         }
3780 };
3781
3782 SpanningTreeUtilities::SpanningTreeUtilities(InspIRCd* Instance, ModuleSpanningTree* C) : ServerInstance(Instance), Creator(C)
3783 {
3784         Bindings.clear();
3785
3786         this->TreeRoot = new TreeServer(this, ServerInstance, ServerInstance->Config->ServerName, ServerInstance->Config->ServerDesc);
3787
3788         modulelist* ml = ServerInstance->FindInterface("InspSocketHook");
3789
3790         /* Did we find any modules? */
3791         if (ml)
3792         {
3793                 /* Yes, enumerate them all to find out the hook name */
3794                 for (modulelist::iterator m = ml->begin(); m != ml->end(); m++)
3795                 {
3796                         /* Make a request to it for its name, its implementing
3797                          * InspSocketHook so we know its safe to do this
3798                          */
3799                         std::string name = InspSocketNameRequest((Module*)Creator, *m).Send();
3800                         /* Build a map of them */
3801                         hooks[name.c_str()] = *m;
3802                         hooknames.push_back(name);
3803                         ServerInstance->Log(DEBUG, "Found InspSocketHook interface: '%s' -> '%08x'", name.c_str(), *m);
3804                 }
3805         }
3806
3807         this->ReadConfiguration(true);
3808 }
3809
3810 SpanningTreeUtilities::~SpanningTreeUtilities()
3811 {
3812         for (unsigned int i = 0; i < Bindings.size(); i++)
3813         {
3814                 ServerInstance->Log(DEBUG,"Freeing binding %d of %d",i, Bindings.size());
3815                 ServerInstance->SE->DelFd(Bindings[i]);
3816                 Bindings[i]->Close();
3817                 DELETE(Bindings[i]);
3818         }
3819         ServerInstance->Log(DEBUG,"Freeing connected servers...");
3820         while (TreeRoot->ChildCount())
3821         {
3822                 TreeServer* child_server = TreeRoot->GetChild(0);
3823                 ServerInstance->Log(DEBUG,"Freeing connected server %s", child_server->GetName().c_str());
3824                 if (child_server)
3825                 {
3826                         TreeSocket* sock = child_server->GetSocket();
3827                         ServerInstance->SE->DelFd(sock);
3828                         sock->Close();
3829                         DELETE(sock);
3830                 }
3831         }
3832         delete TreeRoot;
3833 }
3834
3835 void SpanningTreeUtilities::AddThisServer(TreeServer* server, TreeServerList &list)
3836 {
3837         if (list.find(server) == list.end())
3838                 list[server] = server;
3839 }
3840
3841 /** returns a list of DIRECT servernames for a specific channel */
3842 void SpanningTreeUtilities::GetListOfServersForChannel(chanrec* c, TreeServerList &list, char status, const CUList &exempt_list)
3843 {
3844         CUList *ulist;
3845         switch (status)
3846         {
3847                 case '@':
3848                         ulist = c->GetOppedUsers();
3849                 break;
3850                 case '%':
3851                         ulist = c->GetHalfoppedUsers();
3852                 break;
3853                 case '+':
3854                         ulist = c->GetVoicedUsers();
3855                 break;
3856                 default:
3857                         ulist = c->GetUsers();
3858                 break;
3859         }
3860         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
3861         {
3862                 if ((i->second->GetFd() < 0) && (exempt_list.find(i->second) == exempt_list.end()))
3863                 {
3864                         TreeServer* best = this->BestRouteTo(i->second->server);
3865                         if (best)
3866                                 AddThisServer(best,list);
3867                 }
3868         }
3869         return;
3870 }
3871
3872 bool SpanningTreeUtilities::DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, std::deque<std::string> &params)
3873 {
3874         char pfx = 0;
3875         TreeServer* omitroute = this->BestRouteTo(omit);
3876         if ((command == "NOTICE") || (command == "PRIVMSG"))
3877         {
3878                 if (params.size() >= 2)
3879                 {
3880                         /* Prefixes */
3881                         if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
3882                         {
3883                                 pfx = params[0][0];
3884                                 params[0] = params[0].substr(1, params[0].length()-1);
3885                         }
3886                         if ((*(params[0].c_str()) != '#') && (*(params[0].c_str()) != '$'))
3887                         {
3888                                 // special routing for private messages/notices
3889                                 userrec* d = ServerInstance->FindNick(params[0]);
3890                                 if (d)
3891                                 {
3892                                         std::deque<std::string> par;
3893                                         par.push_back(params[0]);
3894                                         par.push_back(":"+params[1]);
3895                                         this->DoOneToOne(prefix,command.c_str(),par,d->server);
3896                                         return true;
3897                                 }
3898                         }
3899                         else if (*(params[0].c_str()) == '$')
3900                         {
3901                                 std::deque<std::string> par;
3902                                 par.push_back(params[0]);
3903                                 par.push_back(":"+params[1]);
3904                                 this->DoOneToAllButSender(prefix,command.c_str(),par,omitroute->GetName());
3905                                 return true;
3906                         }
3907                         else
3908                         {
3909                                 chanrec* c = ServerInstance->FindChan(params[0]);
3910                                 userrec* u = ServerInstance->FindNick(prefix);
3911                                 if (c && u)
3912                                 {
3913                                         CUList elist;
3914                                         TreeServerList list;
3915                                         FOREACH_MOD(I_OnBuildExemptList, OnBuildExemptList((command == "PRIVMSG" ? MSG_PRIVMSG : MSG_NOTICE), c, u, pfx, elist));
3916                                         GetListOfServersForChannel(c,list,pfx,elist);
3917
3918                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
3919                                         {
3920                                                 TreeSocket* Sock = i->second->GetSocket();
3921                                                 if ((Sock) && (i->second->GetName() != omit) && (omitroute != i->second))
3922                                                 {
3923                                                         Sock->WriteLine(data);
3924                                                 }
3925                                         }
3926                                         return true;
3927                                 }
3928                         }
3929                 }
3930         }
3931         unsigned int items =this->TreeRoot->ChildCount();
3932         for (unsigned int x = 0; x < items; x++)
3933         {
3934                 TreeServer* Route = this->TreeRoot->GetChild(x);
3935                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3936                 {
3937                         TreeSocket* Sock = Route->GetSocket();
3938                         if (Sock)
3939                                 Sock->WriteLine(data);
3940                 }
3941         }
3942         return true;
3943 }
3944
3945 bool SpanningTreeUtilities::DoOneToAllButSender(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string omit)
3946 {
3947         TreeServer* omitroute = this->BestRouteTo(omit);
3948         std::string FullLine = ":" + prefix + " " + command;
3949         unsigned int words = params.size();
3950         for (unsigned int x = 0; x < words; x++)
3951         {
3952                 FullLine = FullLine + " " + params[x];
3953         }
3954         unsigned int items = this->TreeRoot->ChildCount();
3955         for (unsigned int x = 0; x < items; x++)
3956         {
3957                 TreeServer* Route = this->TreeRoot->GetChild(x);
3958                 // Send the line IF:
3959                 // The route has a socket (its a direct connection)
3960                 // The route isnt the one to be omitted
3961                 // The route isnt the path to the one to be omitted
3962                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3963                 {
3964                         TreeSocket* Sock = Route->GetSocket();
3965                         if (Sock)
3966                                 Sock->WriteLine(FullLine);
3967                 }
3968         }
3969         return true;
3970 }
3971
3972 bool SpanningTreeUtilities::DoOneToMany(const std::string &prefix, const std::string &command, std::deque<std::string> &params)
3973 {
3974         std::string FullLine = ":" + prefix + " " + command;
3975         unsigned int words = params.size();
3976         for (unsigned int x = 0; x < words; x++)
3977         {
3978                 FullLine = FullLine + " " + params[x];
3979         }
3980         unsigned int items = this->TreeRoot->ChildCount();
3981         for (unsigned int x = 0; x < items; x++)
3982         {
3983                 TreeServer* Route = this->TreeRoot->GetChild(x);
3984                 if (Route && Route->GetSocket())
3985                 {
3986                         TreeSocket* Sock = Route->GetSocket();
3987                         if (Sock)
3988                                 Sock->WriteLine(FullLine);
3989                 }
3990         }
3991         return true;
3992 }
3993
3994 bool SpanningTreeUtilities::DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params)
3995 {
3996         std::string spfx = prefix;
3997         std::string scmd = command;
3998         return this->DoOneToMany(spfx, scmd, params);
3999 }
4000
4001 bool SpanningTreeUtilities::DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit)
4002 {
4003         std::string spfx = prefix;
4004         std::string scmd = command;
4005         return this->DoOneToAllButSender(spfx, scmd, params, omit);
4006 }
4007         
4008 bool SpanningTreeUtilities::DoOneToOne(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string target)
4009 {
4010         TreeServer* Route = this->BestRouteTo(target);
4011         if (Route)
4012         {
4013                 std::string FullLine = ":" + prefix + " " + command;
4014                 unsigned int words = params.size();
4015                 for (unsigned int x = 0; x < words; x++)
4016                 {
4017                         FullLine = FullLine + " " + params[x];
4018                 }
4019                 if (Route && Route->GetSocket())
4020                 {
4021                         TreeSocket* Sock = Route->GetSocket();
4022                         if (Sock)
4023                                 Sock->WriteLine(FullLine);
4024                 }
4025                 return true;
4026         }
4027         else
4028         {
4029                 return false;
4030         }
4031 }
4032
4033 void SpanningTreeUtilities::ReadConfiguration(bool rebind)
4034 {
4035         ConfigReader* Conf = new ConfigReader(ServerInstance);
4036         if (rebind)
4037         {
4038                 for (int j =0; j < Conf->Enumerate("bind"); j++)
4039                 {
4040                         std::string Type = Conf->ReadValue("bind","type",j);
4041                         std::string IP = Conf->ReadValue("bind","address",j);
4042                         std::string Port = Conf->ReadValue("bind","port",j);
4043                         std::string transport = Conf->ReadValue("bind","transport",j);
4044                         if (Type == "servers")
4045                         {
4046                                 irc::portparser portrange(Port, false);
4047                                 int portno = -1;
4048                                 while ((portno = portrange.GetToken()))
4049                                 {
4050                                         ServerInstance->Log(DEBUG,"m_spanningtree: Binding server port %s:%d", IP.c_str(), portno);
4051                                         if (IP == "*")
4052                                                 IP = "";
4053
4054                                         if ((!transport.empty()) && (hooks.find(transport.c_str()) ==  hooks.end()))
4055                                         {
4056                                                 ServerInstance->Log(DEFAULT,"m_spanningtree: WARNING: Can't find transport type '%s' for port %s:%s - maybe you forgot to load it BEFORE m_spanningtree in your config file? - Skipping this port binding",
4057                                                                 transport.c_str(), IP.c_str(), Port.c_str());
4058                                                 break;
4059                                         }
4060
4061                                         TreeSocket* listener = new TreeSocket(this, ServerInstance, IP.c_str(), portno, true, 10, transport.empty() ? NULL : hooks[transport.c_str()]);
4062                                         if (listener->GetState() == I_LISTENING)
4063                                         {
4064                                                 ServerInstance->Log(DEFAULT,"m_spanningtree: Binding server port %s:%d successful!", IP.c_str(), portno);
4065                                                 Bindings.push_back(listener);
4066                                         }
4067                                         else
4068                                         {
4069                                                 ServerInstance->Log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %s:%d",IP.c_str(), portno);
4070                                                 listener->Close();
4071                                                 DELETE(listener);
4072                                         }
4073                                         ServerInstance->Log(DEBUG,"Done with this binding");
4074                                 }
4075                         }
4076                 }
4077         }
4078         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
4079         HideULines = Conf->ReadFlag("options","hideulines",0);
4080         AnnounceTSChange = Conf->ReadFlag("options","announcets",0);
4081         EnableTimeSync = !(Conf->ReadFlag("options","notimesync",0));
4082         LinkBlocks.clear();
4083         ValidIPs.clear();
4084         for (int j =0; j < Conf->Enumerate("link"); j++)
4085         {
4086                 Link L;
4087                 std::string Allow = Conf->ReadValue("link","allowmask",j);
4088                 L.Name = (Conf->ReadValue("link","name",j)).c_str();
4089                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
4090                 L.FailOver = Conf->ReadValue("link","failover",j).c_str();
4091                 L.Port = Conf->ReadInteger("link","port",j,true);
4092                 L.SendPass = Conf->ReadValue("link","sendpass",j);
4093                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
4094                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
4095                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
4096                 L.Timeout = Conf->ReadInteger("link","timeout",j,true);
4097                 L.Hook = Conf->ReadValue("link", "transport", j);
4098
4099                 if ((!L.Hook.empty()) && (hooks.find(L.Hook.c_str()) ==  hooks.end()))
4100                 {
4101                         ServerInstance->Log(DEFAULT,"m_spanningtree: WARNING: Can't find transport type '%s' for link '%s' - maybe you forgot to load it BEFORE m_spanningtree in your config file? Skipping <link> tag completely.",
4102                                         L.Hook.c_str(), L.Name.c_str());
4103                         continue;
4104
4105                 }
4106
4107                 L.NextConnectTime = time(NULL) + L.AutoConnect;
4108                 /* Bugfix by brain, do not allow people to enter bad configurations */
4109                 if (L.Name != ServerInstance->Config->ServerName)
4110                 {
4111                         if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
4112                         {
4113                                 ValidIPs.push_back(L.IPAddr);
4114
4115                                 if (Allow.length())
4116                                         ValidIPs.push_back(Allow);
4117
4118                                 /* Needs resolving */
4119                                 insp_inaddr binip;
4120                                 if (insp_aton(L.IPAddr.c_str(), &binip) < 1)
4121                                 {
4122                                         try
4123                                         {
4124                                                 SecurityIPResolver* sr = new SecurityIPResolver((Module*)this->Creator, this, ServerInstance, L.IPAddr, L);
4125                                                 ServerInstance->AddResolver(sr);
4126                                         }
4127                                         catch (ModuleException& e)
4128                                         {
4129                                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
4130                                         }
4131                                 }
4132
4133                                 LinkBlocks.push_back(L);
4134                                 ServerInstance->Log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
4135                         }
4136                         else
4137                         {
4138                                 if (L.IPAddr == "")
4139                                 {
4140                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
4141                                 }
4142                                 else if (L.RecvPass == "")
4143                                 {
4144                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
4145                                 }
4146                                 else if (L.SendPass == "")
4147                                 {
4148                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
4149                                 }
4150                                 else if (L.Name == "")
4151                                 {
4152                                         ServerInstance->Log(DEFAULT,"Invalid configuration, link tag without a name!");
4153                                 }
4154                                 else if (!L.Port)
4155                                 {
4156                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
4157                                 }
4158                         }
4159                 }
4160                 else
4161                 {
4162                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', link tag has the same server name as the local server!",L.Name.c_str());
4163                 }
4164         }
4165         DELETE(Conf);
4166 }
4167
4168 /** To create a timer which recurs every second, we inherit from InspTimer.
4169  * InspTimer is only one-shot however, so at the end of each Tick() we simply
4170  * insert another of ourselves into the pending queue :)
4171  */
4172 class TimeSyncTimer : public InspTimer
4173 {
4174  private:
4175         InspIRCd *Instance;
4176         ModuleSpanningTree *Module;
4177  public:
4178         TimeSyncTimer(InspIRCd *Instance, ModuleSpanningTree *Mod);
4179         virtual void Tick(time_t TIME);
4180 };
4181
4182 HandshakeTimer::HandshakeTimer(InspIRCd* Inst, TreeSocket* s, Link* l, SpanningTreeUtilities* u) : InspTimer(1, time(NULL)), Instance(Inst), sock(s), lnk(l), Utils(u)
4183 {
4184         thefd = sock->GetFd();
4185 }
4186
4187 void HandshakeTimer::Tick(time_t TIME)
4188 {
4189         if (Instance->SE->GetRef(thefd) == sock)
4190         {
4191                 if (sock->GetHook() && InspSocketHSCompleteRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send())
4192                 {
4193                         Instance->Log(DEBUG,"Handshake timer activated, sending SERVER and/or CAPAB");
4194                         InspSocketAttachCertRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send();
4195                         sock->SendCapabilities();
4196                         if (sock->GetLinkState() == CONNECTING)
4197                         {
4198                                 sock->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+lnk->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
4199                         }
4200                 }
4201                 else
4202                 {
4203                         Instance->Timers->AddTimer(new HandshakeTimer(Instance, sock, lnk, Utils));
4204                 }
4205         }
4206 }
4207
4208 class ModuleSpanningTree : public Module
4209 {
4210         int line;
4211         int NumServers;
4212         unsigned int max_local;
4213         unsigned int max_global;
4214         cmd_rconnect* command_rconnect;
4215         SpanningTreeUtilities* Utils;
4216
4217  public:
4218         TimeSyncTimer *SyncTimer;
4219
4220         ModuleSpanningTree(InspIRCd* Me)
4221                 : Module::Module(Me), max_local(0), max_global(0)
4222         {
4223                 ServerInstance->UseInterface("InspSocketHook");
4224
4225                 Utils = new SpanningTreeUtilities(Me, this);
4226
4227                 command_rconnect = new cmd_rconnect(ServerInstance, this, Utils);
4228                 ServerInstance->AddCommand(command_rconnect);
4229
4230                 if (Utils->EnableTimeSync)
4231                 {
4232                         SyncTimer = new TimeSyncTimer(ServerInstance, this);
4233                         ServerInstance->Timers->AddTimer(SyncTimer);
4234                 }
4235                 else
4236                         SyncTimer = NULL;
4237         }
4238
4239         void ShowLinks(TreeServer* Current, userrec* user, int hops)
4240         {
4241                 std::string Parent = Utils->TreeRoot->GetName();
4242                 if (Current->GetParent())
4243                 {
4244                         Parent = Current->GetParent()->GetName();
4245                 }
4246                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
4247                 {
4248                         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
4249                         {
4250                                 if (*user->oper)
4251                                 {
4252                                          ShowLinks(Current->GetChild(q),user,hops+1);
4253                                 }
4254                         }
4255                         else
4256                         {
4257                                 ShowLinks(Current->GetChild(q),user,hops+1);
4258                         }
4259                 }
4260                 /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
4261                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!*user->oper))
4262                         return;
4263                 user->WriteServ("364 %s %s %s :%d %s",user->nick,Current->GetName().c_str(),(Utils->FlatLinks && (!*user->oper)) ? ServerInstance->Config->ServerName : Parent.c_str(),(Utils->FlatLinks && (!*user->oper)) ? 0 : hops,Current->GetDesc().c_str());
4264         }
4265
4266         int CountLocalServs()
4267         {
4268                 return Utils->TreeRoot->ChildCount();
4269         }
4270
4271         int CountServs()
4272         {
4273                 return Utils->serverlist.size();
4274         }
4275
4276         void HandleLinks(const char** parameters, int pcnt, userrec* user)
4277         {
4278                 ShowLinks(Utils->TreeRoot,user,0);
4279                 user->WriteServ("365 %s * :End of /LINKS list.",user->nick);
4280                 return;
4281         }
4282
4283         void HandleLusers(const char** parameters, int pcnt, userrec* user)
4284         {
4285                 unsigned int n_users = ServerInstance->UserCount();
4286
4287                 /* Only update these when someone wants to see them, more efficient */
4288                 if ((unsigned int)ServerInstance->LocalUserCount() > max_local)
4289                         max_local = ServerInstance->LocalUserCount();
4290                 if (n_users > max_global)
4291                         max_global = n_users;
4292
4293                 unsigned int ulined_count = 0;
4294                 unsigned int ulined_local_count = 0;
4295
4296                 /* If ulined are hidden and we're not an oper, count the number of ulined servers hidden,
4297                  * locally and globally (locally means directly connected to us)
4298                  */
4299                 if ((Utils->HideULines) && (!*user->oper))
4300                 {
4301                         for (server_hash::iterator q = Utils->serverlist.begin(); q != Utils->serverlist.end(); q++)
4302                         {
4303                                 if (ServerInstance->ULine(q->second->GetName().c_str()))
4304                                 {
4305                                         ulined_count++;
4306                                         if (q->second->GetParent() == Utils->TreeRoot)
4307                                                 ulined_local_count++;
4308                                 }
4309                         }
4310                 }
4311
4312                 user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-ServerInstance->InvisibleUserCount(),ServerInstance->InvisibleUserCount(),ulined_count ? this->CountServs() - ulined_count : this->CountServs());
4313                 if (ServerInstance->OperCount())
4314                         user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount());
4315                 if (ServerInstance->UnregisteredUserCount())
4316                         user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->UnregisteredUserCount());
4317                 if (ServerInstance->ChannelCount())
4318                         user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->ChannelCount());
4319                 user->WriteServ("254 %s :I have %d clients and %d servers",user->nick,ServerInstance->LocalUserCount(),ulined_local_count ? this->CountLocalServs() - ulined_local_count : this->CountLocalServs());
4320                 user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->LocalUserCount(),max_local);
4321                 user->WriteServ("266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
4322                 return;
4323         }
4324
4325         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
4326
4327         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
4328         {
4329                 if (line < 128)
4330                 {
4331                         for (int t = 0; t < depth; t++)
4332                         {
4333                                 matrix[line][t] = ' ';
4334                         }
4335
4336                         // For Aligning, we need to work out exactly how deep this thing is, and produce
4337                         // a 'Spacer' String to compensate.
4338                         char spacer[40];
4339
4340                         memset(spacer,' ',40);
4341                         if ((40 - Current->GetName().length() - depth) > 1) {
4342                                 spacer[40 - Current->GetName().length() - depth] = '\0';
4343                         }
4344                         else
4345                         {
4346                                 spacer[5] = '\0';
4347                         }
4348
4349                         float percent;
4350                         char text[80];
4351                         if (ServerInstance->clientlist->size() == 0) {
4352                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
4353                                 percent = 0;
4354                         }
4355                         else
4356                         {
4357                                 percent = ((float)Current->GetUserCount() / (float)ServerInstance->clientlist->size()) * 100;
4358                         }
4359                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
4360                         totusers += Current->GetUserCount();
4361                         totservers++;
4362                         strlcpy(&matrix[line][depth],text,80);
4363                         line++;
4364                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
4365                         {
4366                                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
4367                                 {
4368                                         if (*user->oper)
4369                                         {
4370                                                 ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4371                                         }
4372                                 }
4373                                 else
4374                                 {
4375                                         ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4376                                 }
4377                         }
4378                 }
4379         }
4380
4381         int HandleMotd(const char** parameters, int pcnt, userrec* user)
4382         {
4383                 if (pcnt > 0)
4384                 {
4385                         /* Remote MOTD, the server is within the 1st parameter */
4386                         std::deque<std::string> params;
4387                         params.push_back(parameters[0]);
4388
4389                         /* Send it out remotely, generate no reply yet */
4390                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4391                         if (s)
4392                         {
4393                                 Utils->DoOneToOne(user->nick, "MOTD", params, s->GetName());
4394                         }
4395                         else
4396                         {
4397                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4398                         }
4399                         return 1;
4400                 }
4401                 return 0;
4402         }
4403
4404         int HandleAdmin(const char** parameters, int pcnt, userrec* user)
4405         {
4406                 if (pcnt > 0)
4407                 {
4408                         /* Remote ADMIN, the server is within the 1st parameter */
4409                         std::deque<std::string> params;
4410                         params.push_back(parameters[0]);
4411
4412                         /* Send it out remotely, generate no reply yet */
4413                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4414                         if (s)
4415                         {
4416                                 Utils->DoOneToOne(user->nick, "ADMIN", params, s->GetName());
4417                         }
4418                         else
4419                         {
4420                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4421                         }
4422                         return 1;
4423                 }
4424                 return 0;
4425         }
4426
4427         int HandleStats(const char** parameters, int pcnt, userrec* user)
4428         {
4429                 if (pcnt > 1)
4430                 {
4431                         /* Remote STATS, the server is within the 2nd parameter */
4432                         std::deque<std::string> params;
4433                         params.push_back(parameters[0]);
4434                         params.push_back(parameters[1]);
4435                         /* Send it out remotely, generate no reply yet */
4436                         TreeServer* s = Utils->FindServerMask(parameters[1]);
4437                         if (s)
4438                         {
4439                                 params[1] = s->GetName();
4440                                 Utils->DoOneToOne(user->nick, "STATS", params, s->GetName());
4441                         }
4442                         else
4443                         {
4444                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4445                         }
4446                         return 1;
4447                 }
4448                 return 0;
4449         }
4450
4451         // Ok, prepare to be confused.
4452         // After much mulling over how to approach this, it struck me that
4453         // the 'usual' way of doing a /MAP isnt the best way. Instead of
4454         // keeping track of a ton of ascii characters, and line by line
4455         // under recursion working out where to place them using multiplications
4456         // and divisons, we instead render the map onto a backplane of characters
4457         // (a character matrix), then draw the branches as a series of "L" shapes
4458         // from the nodes. This is not only friendlier on CPU it uses less stack.
4459
4460         void HandleMap(const char** parameters, int pcnt, userrec* user)
4461         {
4462                 // This array represents a virtual screen which we will
4463                 // "scratch" draw to, as the console device of an irc
4464                 // client does not provide for a proper terminal.
4465                 float totusers = 0;
4466                 float totservers = 0;
4467                 char matrix[128][80];
4468                 for (unsigned int t = 0; t < 128; t++)
4469                 {
4470                         matrix[t][0] = '\0';
4471                 }
4472                 line = 0;
4473                 // The only recursive bit is called here.
4474                 ShowMap(Utils->TreeRoot,user,0,matrix,totusers,totservers);
4475                 // Process each line one by one. The algorithm has a limit of
4476                 // 128 servers (which is far more than a spanning tree should have
4477                 // anyway, so we're ok). This limit can be raised simply by making
4478                 // the character matrix deeper, 128 rows taking 10k of memory.
4479                 for (int l = 1; l < line; l++)
4480                 {
4481                         // scan across the line looking for the start of the
4482                         // servername (the recursive part of the algorithm has placed
4483                         // the servers at indented positions depending on what they
4484                         // are related to)
4485                         int first_nonspace = 0;
4486                         while (matrix[l][first_nonspace] == ' ')
4487                         {
4488                                 first_nonspace++;
4489                         }
4490                         first_nonspace--;
4491                         // Draw the `- (corner) section: this may be overwritten by
4492                         // another L shape passing along the same vertical pane, becoming
4493                         // a |- (branch) section instead.
4494                         matrix[l][first_nonspace] = '-';
4495                         matrix[l][first_nonspace-1] = '`';
4496                         int l2 = l - 1;
4497                         // Draw upwards until we hit the parent server, causing possibly
4498                         // other corners (`-) to become branches (|-)
4499                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
4500                         {
4501                                 matrix[l2][first_nonspace-1] = '|';
4502                                 l2--;
4503                         }
4504                 }
4505                 // dump the whole lot to the user. This is the easy bit, honest.
4506                 for (int t = 0; t < line; t++)
4507                 {
4508                         user->WriteServ("006 %s :%s",user->nick,&matrix[t][0]);
4509                 }
4510                 float avg_users = totusers / totservers;
4511                 user->WriteServ("270 %s :%.0f server%s and %.0f user%s, average %.2f users per server",user->nick,totservers,(totservers > 1 ? "s" : ""),totusers,(totusers > 1 ? "s" : ""),avg_users);
4512         user->WriteServ("007 %s :End of /MAP",user->nick);
4513                 return;
4514         }
4515
4516         int HandleSquit(const char** parameters, int pcnt, userrec* user)
4517         {
4518                 TreeServer* s = Utils->FindServerMask(parameters[0]);
4519                 if (s)
4520                 {
4521                         if (s == Utils->TreeRoot)
4522                         {
4523                                 user->WriteServ("NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
4524                                 return 1;
4525                         }
4526                         TreeSocket* sock = s->GetSocket();
4527                         if (sock)
4528                         {
4529                                 ServerInstance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
4530                                 ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
4531                                 sock->Squit(s,std::string("Server quit by ") + user->GetFullRealHost());
4532                                 ServerInstance->SE->DelFd(sock);
4533                                 sock->Close();
4534                                 delete sock;
4535                         }
4536                         else
4537                         {
4538                                 /* route it */
4539                                 std::deque<std::string> params;
4540                                 params.push_back(parameters[0]);
4541                                 params.push_back(std::string(":Server quit by ") + user->GetFullRealHost());
4542                                 Utils->DoOneToOne(user->nick, "RSQUIT", params, parameters[0]);
4543                         }
4544                 }
4545                 else
4546                 {
4547                          user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
4548                 }
4549                 return 1;
4550         }
4551
4552         int HandleTime(const char** parameters, int pcnt, userrec* user)
4553         {
4554                 if ((IS_LOCAL(user)) && (pcnt))
4555                 {
4556                         TreeServer* found = Utils->FindServerMask(parameters[0]);
4557                         if (found)
4558                         {
4559                                 // we dont' override for local server
4560                                 if (found == Utils->TreeRoot)
4561                                         return 0;
4562                                 
4563                                 std::deque<std::string> params;
4564                                 params.push_back(found->GetName());
4565                                 params.push_back(user->nick);
4566                                 Utils->DoOneToOne(ServerInstance->Config->ServerName,"TIME",params,found->GetName());
4567                         }
4568                         else
4569                         {
4570                                 user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4571                         }
4572                 }
4573                 return 1;
4574         }
4575
4576         int HandleRemoteWhois(const char** parameters, int pcnt, userrec* user)
4577         {
4578                 if ((IS_LOCAL(user)) && (pcnt > 1))
4579                 {
4580                         userrec* remote = ServerInstance->FindNick(parameters[1]);
4581                         if ((remote) && (remote->GetFd() < 0))
4582                         {
4583                                 std::deque<std::string> params;
4584                                 params.push_back(parameters[1]);
4585                                 Utils->DoOneToOne(user->nick,"IDLE",params,remote->server);
4586                                 return 1;
4587                         }
4588                         else if (!remote)
4589                         {
4590                                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[1]);
4591                                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
4592                                 return 1;
4593                         }
4594                 }
4595                 return 0;
4596         }
4597
4598         void DoPingChecks(time_t curtime)
4599         {
4600                 for (unsigned int j = 0; j < Utils->TreeRoot->ChildCount(); j++)
4601                 {
4602                         TreeServer* serv = Utils->TreeRoot->GetChild(j);
4603                         TreeSocket* sock = serv->GetSocket();
4604                         if (sock)
4605                         {
4606                                 if (curtime >= serv->NextPingTime())
4607                                 {
4608                                         if (serv->AnsweredLastPing())
4609                                         {
4610                                                 sock->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" PING "+serv->GetName());
4611                                                 serv->SetNextPingTime(curtime + 60);
4612                                         }
4613                                         else
4614                                         {
4615                                                 // they didnt answer, boot them
4616                                                 ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 pinged out",serv->GetName().c_str());
4617                                                 sock->Squit(serv,"Ping timeout");
4618                                                 ServerInstance->SE->DelFd(sock);
4619                                                 sock->Close();
4620                                                 delete sock;
4621                                                 return;
4622                                         }
4623                                 }
4624                         }
4625                 }
4626         }
4627
4628         void ConnectServer(Link* x)
4629         {
4630                 insp_inaddr binip;
4631
4632                 /* Do we already have an IP? If so, no need to resolve it. */
4633                 if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
4634                 {
4635                         /* Gave a hook, but it wasnt one we know */
4636                         if ((!x->Hook.empty()) && (Utils->hooks.find(x->Hook.c_str()) == Utils->hooks.end()))
4637                                 return;
4638
4639                         TreeSocket* newsocket = new TreeSocket(Utils, ServerInstance, x->IPAddr,x->Port,false,x->Timeout ? x->Timeout : 10,x->Name.c_str(), x->Hook.empty() ? NULL : Utils->hooks[x->Hook.c_str()]);
4640                         if (newsocket->GetFd() > -1)
4641                         {
4642                                 /* Handled automatically on success */
4643                         }
4644                         else
4645                         {
4646                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
4647                                 delete newsocket;
4648                                 Utils->DoFailOver(x);
4649                         }
4650                 }
4651                 else
4652                 {
4653                         try
4654                         {
4655                                 ServernameResolver* snr = new ServernameResolver((Module*)this, Utils, ServerInstance,x->IPAddr, *x);
4656                                 ServerInstance->AddResolver(snr);
4657                         }
4658                         catch (ModuleException& e)
4659                         {
4660                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
4661                                 Utils->DoFailOver(x);
4662                         }
4663                 }
4664         }
4665
4666         void AutoConnectServers(time_t curtime)
4667         {
4668                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4669                 {
4670                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
4671                         {
4672                                 ServerInstance->Log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
4673                                 x->NextConnectTime = curtime + x->AutoConnect;
4674                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4675                                 if (x->FailOver.length())
4676                                 {
4677                                         TreeServer* CheckFailOver = Utils->FindServer(x->FailOver.c_str());
4678                                         if (CheckFailOver)
4679                                         {
4680                                                 /* The failover for this server is currently a member of the network.
4681                                                  * The failover probably succeeded, where the main link did not.
4682                                                  * Don't try the main link until the failover is gone again.
4683                                                  */
4684                                                 continue;
4685                                         }
4686                                 }
4687                                 if (!CheckDupe)
4688                                 {
4689                                         // an autoconnected server is not connected. Check if its time to connect it
4690                                         ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
4691                                         this->ConnectServer(&(*x));
4692                                 }
4693                         }
4694                 }
4695         }
4696
4697         int HandleVersion(const char** parameters, int pcnt, userrec* user)
4698         {
4699                 // we've already checked if pcnt > 0, so this is safe
4700                 TreeServer* found = Utils->FindServerMask(parameters[0]);
4701                 if (found)
4702                 {
4703                         std::string Version = found->GetVersion();
4704                         user->WriteServ("351 %s :%s",user->nick,Version.c_str());
4705                         if (found == Utils->TreeRoot)
4706                         {
4707                                 ServerInstance->Config->Send005(user);
4708                         }
4709                 }
4710                 else
4711                 {
4712                         user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4713                 }
4714                 return 1;
4715         }
4716         
4717         int HandleConnect(const char** parameters, int pcnt, userrec* user)
4718         {
4719                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4720                 {
4721                         if (ServerInstance->MatchText(x->Name.c_str(),parameters[0]))
4722                         {
4723                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4724                                 if (!CheckDupe)
4725                                 {
4726                                         user->WriteServ("NOTICE %s :*** CONNECT: Connecting to server: \002%s\002 (%s:%d)",user->nick,x->Name.c_str(),(x->HiddenFromStats ? "<hidden>" : x->IPAddr.c_str()),x->Port);
4727                                         ConnectServer(&(*x));
4728                                         return 1;
4729                                 }
4730                                 else
4731                                 {
4732                                         user->WriteServ("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());
4733                                         return 1;
4734                                 }
4735                         }
4736                 }
4737                 user->WriteServ("NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
4738                 return 1;
4739         }
4740
4741         void BroadcastTimeSync()
4742         {
4743                 std::deque<std::string> params;
4744                 params.push_back(ConvToStr(ServerInstance->Time(true)));
4745                 Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
4746         }
4747
4748         virtual int OnStats(char statschar, userrec* user, string_list &results)
4749         {
4750                 if ((statschar == 'c') || (statschar == 'n'))
4751                 {
4752                         for (unsigned int i = 0; i < Utils->LinkBlocks.size(); i++)
4753                         {
4754                                 results.push_back(std::string(ServerInstance->Config->ServerName)+" 213 "+user->nick+" "+statschar+" *@"+(Utils->LinkBlocks[i].HiddenFromStats ? "<hidden>" : Utils->LinkBlocks[i].IPAddr)+" * "+Utils->LinkBlocks[i].Name.c_str()+" "+ConvToStr(Utils->LinkBlocks[i].Port)+" "+(Utils->LinkBlocks[i].Hook.empty() ? "plaintext" : Utils->LinkBlocks[i].Hook)+" "+(Utils->LinkBlocks[i].AutoConnect ? 'a' : '-')+'s');
4755                                 if (statschar == 'c')
4756                                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 244 "+user->nick+" H * * "+Utils->LinkBlocks[i].Name.c_str());
4757                         }
4758                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
4759                         ServerInstance->SNO->WriteToSnoMask('t',"Notice: %s '%c' requested by %s (%s@%s)",(!strcmp(user->server,ServerInstance->Config->ServerName) ? "Stats" : "Remote stats"),statschar,user->nick,user->ident,user->host);
4760                         return 1;
4761                 }
4762                 return 0;
4763         }
4764
4765         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
4766         {
4767                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
4768                 if (!validated)
4769                         return 0;
4770
4771                 if (command == "CONNECT")
4772                 {
4773                         return this->HandleConnect(parameters,pcnt,user);
4774                 }
4775                 else if (command == "STATS")
4776                 {
4777                         return this->HandleStats(parameters,pcnt,user);
4778                 }
4779                 else if (command == "MOTD")
4780                 {
4781                         return this->HandleMotd(parameters,pcnt,user);
4782                 }
4783                 else if (command == "ADMIN")
4784                 {
4785                         return this->HandleAdmin(parameters,pcnt,user);
4786                 }
4787                 else if (command == "SQUIT")
4788                 {
4789                         return this->HandleSquit(parameters,pcnt,user);
4790                 }
4791                 else if (command == "MAP")
4792                 {
4793                         this->HandleMap(parameters,pcnt,user);
4794                         return 1;
4795                 }
4796                 else if ((command == "TIME") && (pcnt > 0))
4797                 {
4798                         return this->HandleTime(parameters,pcnt,user);
4799                 }
4800                 else if (command == "LUSERS")
4801                 {
4802                         this->HandleLusers(parameters,pcnt,user);
4803                         return 1;
4804                 }
4805                 else if (command == "LINKS")
4806                 {
4807                         this->HandleLinks(parameters,pcnt,user);
4808                         return 1;
4809                 }
4810                 else if (command == "WHOIS")
4811                 {
4812                         if (pcnt > 1)
4813                         {
4814                                 // remote whois
4815                                 return this->HandleRemoteWhois(parameters,pcnt,user);
4816                         }
4817                 }
4818                 else if ((command == "VERSION") && (pcnt > 0))
4819                 {
4820                         this->HandleVersion(parameters,pcnt,user);
4821                         return 1;
4822                 }
4823
4824                 return 0;
4825         }
4826
4827         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
4828         {
4829                 if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
4830                 {
4831                         // this bit of code cleverly routes all module commands
4832                         // to all remote severs *automatically* so that modules
4833                         // can just handle commands locally, without having
4834                         // to have any special provision in place for remote
4835                         // commands and linking protocols.
4836                         std::deque<std::string> params;
4837                         params.clear();
4838                         for (int j = 0; j < pcnt; j++)
4839                         {
4840                                 if (strchr(parameters[j],' '))
4841                                 {
4842                                         params.push_back(":" + std::string(parameters[j]));
4843                                 }
4844                                 else
4845                                 {
4846                                         params.push_back(std::string(parameters[j]));
4847                                 }
4848                         }
4849                         ServerInstance->Log(DEBUG,"Globally route '%s'",command.c_str());
4850                         Utils->DoOneToMany(user->nick,command,params);
4851                 }
4852         }
4853
4854         virtual void OnGetServerDescription(const std::string &servername,std::string &description)
4855         {
4856                 TreeServer* s = Utils->FindServer(servername);
4857                 if (s)
4858                 {
4859                         description = s->GetDesc();
4860                 }
4861         }
4862
4863         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
4864         {
4865                 if (IS_LOCAL(source))
4866                 {
4867                         std::deque<std::string> params;
4868                         params.push_back(dest->nick);
4869                         params.push_back(channel->name);
4870                         Utils->DoOneToMany(source->nick,"INVITE",params);
4871                 }
4872         }
4873
4874         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic)
4875         {
4876                 std::deque<std::string> params;
4877                 params.push_back(chan->name);
4878                 params.push_back(":"+topic);
4879                 Utils->DoOneToMany(user->nick,"TOPIC",params);
4880         }
4881
4882         virtual void OnWallops(userrec* user, const std::string &text)
4883         {
4884                 if (IS_LOCAL(user))
4885                 {
4886                         std::deque<std::string> params;
4887                         params.push_back(":"+text);
4888                         Utils->DoOneToMany(user->nick,"WALLOPS",params);
4889                 }
4890         }
4891
4892         virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
4893         {
4894                 if (target_type == TYPE_USER)
4895                 {
4896                         userrec* d = (userrec*)dest;
4897                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4898                         {
4899                                 std::deque<std::string> params;
4900                                 params.clear();
4901                                 params.push_back(d->nick);
4902                                 params.push_back(":"+text);
4903                                 Utils->DoOneToOne(user->nick,"NOTICE",params,d->server);
4904                         }
4905                 }
4906                 else if (target_type == TYPE_CHANNEL)
4907                 {
4908                         if (IS_LOCAL(user))
4909                         {
4910                                 chanrec *c = (chanrec*)dest;
4911                                 if (c)
4912                                 {
4913                                         std::string cname = c->name;
4914                                         if (status)
4915                                                 cname = status + cname;
4916                                         TreeServerList list;
4917                                         Utils->GetListOfServersForChannel(c,list,status,exempt_list);
4918
4919                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
4920                                         {
4921                                                 TreeSocket* Sock = i->second->GetSocket();
4922                                                 if (Sock)
4923                                                         Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
4924                                         }
4925                                 }
4926                         }
4927                 }
4928                 else if (target_type == TYPE_SERVER)
4929                 {
4930                         if (IS_LOCAL(user))
4931                         {
4932                                 char* target = (char*)dest;
4933                                 std::deque<std::string> par;
4934                                 par.push_back(target);
4935                                 par.push_back(":"+text);
4936                                 Utils->DoOneToMany(user->nick,"NOTICE",par);
4937                         }
4938                 }
4939         }
4940
4941         virtual void OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
4942         {
4943                 if (target_type == TYPE_USER)
4944                 {
4945                         // route private messages which are targetted at clients only to the server
4946                         // which needs to receive them
4947                         userrec* d = (userrec*)dest;
4948                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4949                         {
4950                                 std::deque<std::string> params;
4951                                 params.clear();
4952                                 params.push_back(d->nick);
4953                                 params.push_back(":"+text);
4954                                 Utils->DoOneToOne(user->nick,"PRIVMSG",params,d->server);
4955                         }
4956                 }
4957                 else if (target_type == TYPE_CHANNEL)
4958                 {
4959                         if (IS_LOCAL(user))
4960                         {
4961                                 chanrec *c = (chanrec*)dest;
4962                                 if (c)
4963                                 {
4964                                         std::string cname = c->name;
4965                                         if (status)
4966                                                 cname = status + cname;
4967                                         TreeServerList list;
4968                                         Utils->GetListOfServersForChannel(c,list,status,exempt_list);
4969
4970                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
4971                                         {
4972                                                 TreeSocket* Sock = i->second->GetSocket();
4973                                                 if (Sock)
4974                                                         Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
4975                                         }
4976                                 }
4977                         }
4978                 }
4979                 else if (target_type == TYPE_SERVER)
4980                 {
4981                         if (IS_LOCAL(user))
4982                         {
4983                                 char* target = (char*)dest;
4984                                 std::deque<std::string> par;
4985                                 par.push_back(target);
4986                                 par.push_back(":"+text);
4987                                 Utils->DoOneToMany(user->nick,"PRIVMSG",par);
4988                         }
4989                 }
4990         }
4991
4992         virtual void OnBackgroundTimer(time_t curtime)
4993         {
4994                 AutoConnectServers(curtime);
4995                 DoPingChecks(curtime);
4996         }
4997
4998         virtual void OnUserJoin(userrec* user, chanrec* channel)
4999         {
5000                 // Only do this for local users
5001                 if (IS_LOCAL(user))
5002                 {
5003                         if (channel->GetUserCounter() == 1)
5004                         {
5005                                 std::deque<std::string> params;
5006                                 // set up their permissions and the channel TS with FJOIN.
5007                                 // All users are FJOINed now, because a module may specify
5008                                 // new joining permissions for the user.
5009                                 params.push_back(channel->name);
5010                                 params.push_back(ConvToStr(channel->age));
5011                                 params.push_back(std::string(channel->GetAllPrefixChars(user))+","+std::string(user->nick));
5012                                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FJOIN",params);
5013                                 /* First user in, sync the modes for the channel */
5014                                 params.pop_back();
5015                                 /* This is safe, all inspircd servers default to +nt */
5016                                 params.push_back("+nt");
5017                                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",params);
5018                         }
5019                         else
5020                         {
5021                                 std::deque<std::string> params;
5022                                 params.push_back(channel->name);
5023                                 params.push_back(ConvToStr(channel->age));
5024                                 Utils->DoOneToMany(user->nick,"JOIN",params);
5025                         }
5026                 }
5027         }
5028
5029         virtual void OnChangeHost(userrec* user, const std::string &newhost)
5030         {
5031                 // only occurs for local clients
5032                 if (user->registered != REG_ALL)
5033                         return;
5034                 std::deque<std::string> params;
5035                 params.push_back(newhost);
5036                 Utils->DoOneToMany(user->nick,"FHOST",params);
5037         }
5038
5039         virtual void OnChangeName(userrec* user, const std::string &gecos)
5040         {
5041                 // only occurs for local clients
5042                 if (user->registered != REG_ALL)
5043                         return;
5044                 std::deque<std::string> params;
5045                 params.push_back(gecos);
5046                 Utils->DoOneToMany(user->nick,"FNAME",params);
5047         }
5048
5049         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage)
5050         {
5051                 if (IS_LOCAL(user))
5052                 {
5053                         std::deque<std::string> params;
5054                         params.push_back(channel->name);
5055                         if (partmessage != "")
5056                                 params.push_back(":"+partmessage);
5057                         Utils->DoOneToMany(user->nick,"PART",params);
5058                 }
5059         }
5060
5061         virtual void OnUserConnect(userrec* user)
5062         {
5063                 char agestr[MAXBUF];
5064                 if (IS_LOCAL(user))
5065                 {
5066                         std::deque<std::string> params;
5067                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
5068                         params.push_back(agestr);
5069                         params.push_back(user->nick);
5070                         params.push_back(user->host);
5071                         params.push_back(user->dhost);
5072                         params.push_back(user->ident);
5073                         params.push_back("+"+std::string(user->FormatModes()));
5074                         params.push_back(user->GetIPString());
5075                         params.push_back(":"+std::string(user->fullname));
5076                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"NICK",params);
5077
5078                         // User is Local, change needs to be reflected!
5079                         TreeServer* SourceServer = Utils->FindServer(user->server);
5080                         if (SourceServer)
5081                         {
5082                                 SourceServer->AddUserCount();
5083                         }
5084
5085                 }
5086         }
5087
5088         virtual void OnUserQuit(userrec* user, const std::string &reason)
5089         {
5090                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
5091                 {
5092                         std::deque<std::string> params;
5093                         params.push_back(":"+reason);
5094                         Utils->DoOneToMany(user->nick,"QUIT",params);
5095                 }
5096                 // Regardless, We need to modify the user Counts..
5097                 TreeServer* SourceServer = Utils->FindServer(user->server);
5098                 if (SourceServer)
5099                 {
5100                         SourceServer->DelUserCount();
5101                 }
5102
5103         }
5104
5105         virtual void OnUserPostNick(userrec* user, const std::string &oldnick)
5106         {
5107                 if (IS_LOCAL(user))
5108                 {
5109                         std::deque<std::string> params;
5110                         params.push_back(user->nick);
5111                         Utils->DoOneToMany(oldnick,"NICK",params);
5112                 }
5113         }
5114
5115         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason)
5116         {
5117                 if ((source) && (IS_LOCAL(source)))
5118                 {
5119                         std::deque<std::string> params;
5120                         params.push_back(chan->name);
5121                         params.push_back(user->nick);
5122                         params.push_back(":"+reason);
5123                         Utils->DoOneToMany(source->nick,"KICK",params);
5124                 }
5125                 else if (!source)
5126                 {
5127                         std::deque<std::string> params;
5128                         params.push_back(chan->name);
5129                         params.push_back(user->nick);
5130                         params.push_back(":"+reason);
5131                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"KICK",params);
5132                 }
5133         }
5134
5135         virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason)
5136         {
5137                 std::deque<std::string> params;
5138                 params.push_back(dest->nick);
5139                 params.push_back(":"+reason);
5140                 Utils->DoOneToMany(source->nick,"KILL",params);
5141         }
5142
5143         virtual void OnRehash(userrec* user, const std::string &parameter)
5144         {
5145                 if (parameter != "")
5146                 {
5147                         std::deque<std::string> params;
5148                         params.push_back(parameter);
5149                         Utils->DoOneToMany(user ? user->nick : ServerInstance->Config->ServerName, "REHASH", params);
5150                         // check for self
5151                         if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameter))
5152                         {
5153                                 ServerInstance->WriteOpers("*** Remote rehash initiated locally by \002%s\002", user ? user->nick : ServerInstance->Config->ServerName);
5154                                 ServerInstance->RehashServer();
5155                         }
5156                 }
5157                 Utils->ReadConfiguration(false);
5158         }
5159
5160         // note: the protocol does not allow direct umode +o except
5161         // via NICK with 8 params. sending OPERTYPE infers +o modechange
5162         // locally.
5163         virtual void OnOper(userrec* user, const std::string &opertype)
5164         {
5165                 if (IS_LOCAL(user))
5166                 {
5167                         std::deque<std::string> params;
5168                         params.push_back(opertype);
5169                         Utils->DoOneToMany(user->nick,"OPERTYPE",params);
5170                 }
5171         }
5172
5173         void OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason)
5174         {
5175                 if (!source)
5176                 {
5177                         /* Server-set lines */
5178                         char data[MAXBUF];
5179                         snprintf(data,MAXBUF,"%c %s %s %lu %lu :%s", linetype, host.c_str(), ServerInstance->Config->ServerName, (unsigned long)ServerInstance->Time(false),
5180                                         (unsigned long)duration, reason.c_str());
5181                         std::deque<std::string> params;
5182                         params.push_back(data);
5183                         Utils->DoOneToMany(ServerInstance->Config->ServerName, "ADDLINE", params);
5184                 }
5185                 else
5186                 {
5187                         if (IS_LOCAL(source))
5188                         {
5189                                 char type[8];
5190                                 snprintf(type,8,"%cLINE",linetype);
5191                                 std::string stype = type;
5192                                 if (adding)
5193                                 {
5194                                         char sduration[MAXBUF];
5195                                         snprintf(sduration,MAXBUF,"%ld",duration);
5196                                         std::deque<std::string> params;
5197                                         params.push_back(host);
5198                                         params.push_back(sduration);
5199                                         params.push_back(":"+reason);
5200                                         Utils->DoOneToMany(source->nick,stype,params);
5201                                 }
5202                                 else
5203                                 {
5204                                         std::deque<std::string> params;
5205                                         params.push_back(host);
5206                                         Utils->DoOneToMany(source->nick,stype,params);
5207                                 }
5208                         }
5209                 }
5210         }
5211
5212         virtual void OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
5213         {
5214                 OnLine(source,hostmask,true,'G',duration,reason);
5215         }
5216         
5217         virtual void OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask)
5218         {
5219                 OnLine(source,ipmask,true,'Z',duration,reason);
5220         }
5221
5222         virtual void OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask)
5223         {
5224                 OnLine(source,nickmask,true,'Q',duration,reason);
5225         }
5226
5227         virtual void OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
5228         {
5229                 OnLine(source,hostmask,true,'E',duration,reason);
5230         }
5231
5232         virtual void OnDelGLine(userrec* source, const std::string &hostmask)
5233         {
5234                 OnLine(source,hostmask,false,'G',0,"");
5235         }
5236
5237         virtual void OnDelZLine(userrec* source, const std::string &ipmask)
5238         {
5239                 OnLine(source,ipmask,false,'Z',0,"");
5240         }
5241
5242         virtual void OnDelQLine(userrec* source, const std::string &nickmask)
5243         {
5244                 OnLine(source,nickmask,false,'Q',0,"");
5245         }
5246
5247         virtual void OnDelELine(userrec* source, const std::string &hostmask)
5248         {
5249                 OnLine(source,hostmask,false,'E',0,"");
5250         }
5251
5252         virtual void OnMode(userrec* user, void* dest, int target_type, const std::string &text)
5253         {
5254                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
5255                 {
5256                         if (target_type == TYPE_USER)
5257                         {
5258                                 userrec* u = (userrec*)dest;
5259                                 std::deque<std::string> params;
5260                                 params.push_back(u->nick);
5261                                 params.push_back(text);
5262                                 Utils->DoOneToMany(user->nick,"MODE",params);
5263                         }
5264                         else
5265                         {
5266                                 chanrec* c = (chanrec*)dest;
5267                                 std::deque<std::string> params;
5268                                 params.push_back(c->name);
5269                                 params.push_back(text);
5270                                 Utils->DoOneToMany(user->nick,"MODE",params);
5271                         }
5272                 }
5273         }
5274
5275         virtual void OnSetAway(userrec* user)
5276         {
5277                 if (IS_LOCAL(user))
5278                 {
5279                         std::deque<std::string> params;
5280                         params.push_back(":"+std::string(user->awaymsg));
5281                         Utils->DoOneToMany(user->nick,"AWAY",params);
5282                 }
5283         }
5284
5285         virtual void OnCancelAway(userrec* user)
5286         {
5287                 if (IS_LOCAL(user))
5288                 {
5289                         std::deque<std::string> params;
5290                         params.clear();
5291                         Utils->DoOneToMany(user->nick,"AWAY",params);
5292                 }
5293         }
5294
5295         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline)
5296         {
5297                 TreeSocket* s = (TreeSocket*)opaque;
5298                 if (target)
5299                 {
5300                         if (target_type == TYPE_USER)
5301                         {
5302                                 userrec* u = (userrec*)target;
5303                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+u->nick+" "+ConvToStr(u->age)+" "+modeline);
5304                         }
5305                         else
5306                         {
5307                                 chanrec* c = (chanrec*)target;
5308                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+modeline);
5309                         }
5310                 }
5311         }
5312
5313         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata)
5314         {
5315                 TreeSocket* s = (TreeSocket*)opaque;
5316                 if (target)
5317                 {
5318                         if (target_type == TYPE_USER)
5319                         {
5320                                 userrec* u = (userrec*)target;
5321                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+u->nick+" "+extname+" :"+extdata);
5322                         }
5323                         else if (target_type == TYPE_CHANNEL)
5324                         {
5325                                 chanrec* c = (chanrec*)target;
5326                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+c->name+" "+extname+" :"+extdata);
5327                         }
5328                 }
5329                 if (target_type == TYPE_OTHER)
5330                 {
5331                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA * "+extname+" :"+extdata);
5332                 }
5333         }
5334
5335         virtual void OnEvent(Event* event)
5336         {
5337                 std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
5338
5339                 if (event->GetEventID() == "send_metadata")
5340                 {
5341                         if (params->size() < 3)
5342                                 return;
5343                         (*params)[2] = ":" + (*params)[2];
5344                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"METADATA",*params);
5345                 }
5346                 else if (event->GetEventID() == "send_topic")
5347                 {
5348                         if (params->size() < 2)
5349                                 return;
5350                         (*params)[1] = ":" + (*params)[1];
5351                         params->insert(params->begin() + 1,ServerInstance->Config->ServerName);
5352                         params->insert(params->begin() + 1,ConvToStr(ServerInstance->Time(true)));
5353                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FTOPIC",*params);
5354                 }
5355                 else if (event->GetEventID() == "send_mode")
5356                 {
5357                         if (params->size() < 2)
5358                                 return;
5359                         // Insert the TS value of the object, either userrec or chanrec
5360                         time_t ourTS = 0;
5361                         userrec* a = ServerInstance->FindNick((*params)[0]);
5362                         if (a)
5363                         {
5364                                 ourTS = a->age;
5365                         }
5366                         else
5367                         {
5368                                 chanrec* a = ServerInstance->FindChan((*params)[0]);
5369                                 if (a)
5370                                 {
5371                                         ourTS = a->age;
5372                                 }
5373                         }
5374                         params->insert(params->begin() + 1,ConvToStr(ourTS));
5375                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",*params);
5376                 }
5377                 else if (event->GetEventID() == "send_mode_explicit")
5378                 {
5379                         if (params->size() < 2)
5380                                 return;
5381                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params);
5382                 }
5383                 else if (event->GetEventID() == "send_opers")
5384                 {
5385                         if (params->size() < 1)
5386                                 return;
5387                         (*params)[0] = ":" + (*params)[0];
5388                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"OPERNOTICE",*params);
5389                 }
5390                 else if (event->GetEventID() == "send_modeset")
5391                 {
5392                         if (params->size() < 2)
5393                                 return;
5394                         (*params)[1] = ":" + (*params)[1];
5395                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODENOTICE",*params);
5396                 }
5397                 else if (event->GetEventID() == "send_snoset")
5398                 {
5399                         if (params->size() < 2)
5400                                 return;
5401                         (*params)[1] = ":" + (*params)[1];
5402                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"SNONOTICE",*params);
5403                 }
5404                 else if (event->GetEventID() == "send_push")
5405                 {
5406                         if (params->size() < 2)
5407                                 return;
5408                         
5409                         userrec *a = ServerInstance->FindNick((*params)[0]);
5410                         
5411                         if (!a)
5412                                 return;
5413                         
5414                         (*params)[1] = ":" + (*params)[1];
5415                         Utils->DoOneToOne(ServerInstance->Config->ServerName, "PUSH", *params, a->server);
5416                 }
5417         }
5418
5419         virtual ~ModuleSpanningTree()
5420         {
5421                 ServerInstance->Log(DEBUG,"Performing unload of spanningtree!");
5422                 /* This will also free the listeners */
5423                 delete Utils;
5424                 if (SyncTimer)
5425                         ServerInstance->Timers->DelTimer(SyncTimer);
5426
5427                 ServerInstance->DoneWithInterface("InspSocketHook");
5428         }
5429
5430         virtual Version GetVersion()
5431         {
5432                 return Version(1,1,0,2,VF_VENDOR,API_VERSION);
5433         }
5434
5435         void Implements(char* List)
5436         {
5437                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
5438                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
5439                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
5440                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
5441                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
5442                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
5443                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = List[I_OnPostCommand] = 1;
5444         }
5445
5446         /* It is IMPORTANT that m_spanningtree is the last module in the chain
5447          * so that any activity it sees is FINAL, e.g. we arent going to send out
5448          * a NICK message before m_cloaking has finished putting the +x on the user,
5449          * etc etc.
5450          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
5451          * the module call queue.
5452          */
5453         Priority Prioritize()
5454         {
5455                 return PRIORITY_LAST;
5456         }
5457 };
5458
5459 TimeSyncTimer::TimeSyncTimer(InspIRCd *Inst, ModuleSpanningTree *Mod) : InspTimer(43200, Inst->Time()), Instance(Inst), Module(Mod)
5460 {
5461 }
5462
5463 void TimeSyncTimer::Tick(time_t TIME)
5464 {
5465         Module->BroadcastTimeSync();
5466         Module->SyncTimer = new TimeSyncTimer(Instance, Module);
5467         Instance->Timers->AddTimer(Module->SyncTimer);
5468 }
5469
5470 void SpanningTreeUtilities::DoFailOver(Link* x)
5471 {
5472         if (x->FailOver.length())
5473         {
5474                 if (x->FailOver == x->Name)
5475                 {
5476                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Some muppet configured the failover for server \002%s\002 to point at itself. Not following it!", x->Name.c_str());
5477                         return;
5478                 }
5479                 Link* TryThisOne = this->FindLink(x->FailOver.c_str());
5480                 if (TryThisOne)
5481                 {
5482                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Trying failover link for \002%s\002: \002%s\002...", x->Name.c_str(), TryThisOne->Name.c_str());
5483                         Creator->ConnectServer(TryThisOne);
5484                 }
5485                 else
5486                 {
5487                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Invalid failover server specified for server \002%s\002, will not follow!", x->Name.c_str());
5488                 }
5489         }
5490 }
5491
5492 Link* SpanningTreeUtilities::FindLink(const std::string& name)
5493 {
5494         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
5495         {
5496                 if (ServerInstance->MatchText(x->Name.c_str(), name.c_str()))
5497                 {
5498                         return &(*x);
5499                 }
5500         }
5501         return NULL;
5502 }
5503
5504 class ModuleSpanningTreeFactory : public ModuleFactory
5505 {
5506  public:
5507         ModuleSpanningTreeFactory()
5508         {
5509         }
5510         
5511         ~ModuleSpanningTreeFactory()
5512         {
5513         }
5514         
5515         virtual Module * CreateModule(InspIRCd* Me)
5516         {
5517                 return new ModuleSpanningTree(Me);
5518         }
5519         
5520 };
5521
5522
5523 extern "C" void * init_module( void )
5524 {
5525         return new ModuleSpanningTreeFactory;
5526 }