]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree.cpp
Whoops, forgot to put something back that i took out during testing!
[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                                 this->RemoveStatus(Instance->Config->ServerName, param_list);
1660                                 chan->age = TS;
1661                         }
1662                 }
1663
1664                 /* Put the final parameter of the FJOIN into a tokenstream ready to split it */
1665                 irc::tokenstream users(params[2]);
1666                 std::string item = "*";
1667
1668                 /* do this first, so our mode reversals are correctly received by other servers
1669                  * if there is a TS collision.
1670                  */
1671                 params[2] = ":" + params[2];
1672                 Utils->DoOneToAllButSender(source,"FJOIN",params,source);
1673
1674                 /* Now, process every 'prefixes,nick' pair */
1675                 while (item != "")
1676                 {
1677                         /* Find next user */
1678                         item = users.GetToken();
1679
1680                         const char* usr = item.c_str();
1681
1682                         /* Safety check just to make sure someones not sent us an FJOIN full of spaces
1683                          * (is this even possible?) */
1684                         if (usr && *usr)
1685                         {
1686                                 const char* permissions = usr;
1687                                 int ntimes = 0;
1688                                 char* nm = new char[MAXBUF];
1689                                 char* tnm = nm;
1690
1691                                 /* Iterate through all the prefix values, convert them from prefixes
1692                                  * to mode letters, and append them to the mode sequence
1693                                  */
1694                                 while ((*permissions) && (*permissions != ',') && (ntimes < MAXBUF))
1695                                 {
1696                                         ModeHandler* mh = Instance->Modes->FindPrefix(*permissions);
1697                                         if (mh)
1698                                         {
1699                                                 /* This is a valid prefix */
1700                                                 ntimes++;
1701                                                 *tnm++ = mh->GetModeChar();
1702                                         }
1703                                         else
1704                                         {
1705                                                 /* Not a valid prefix...
1706                                                  * danger bill bobbertson! (that's will robinsons older brother ;-) ...)
1707                                                  */
1708                                                 this->Instance->WriteOpers("ERROR: We received a user with an unknown prefix '%c'. Closed connection to avoid a desync.",*permissions);
1709                                                 this->WriteLine(std::string("ERROR :Invalid prefix '")+(*permissions)+"' in FJOIN");
1710                                                 return false;
1711                                         }
1712                                         usr++;
1713                                         permissions++;
1714                                 }
1715
1716                                 /* Null terminate modes */
1717                                 *tnm = 0;
1718                                 /* Advance past the comma, to the nick */
1719                                 usr++;
1720
1721                                 /* Check the user actually exists */
1722                                 who = this->Instance->FindNick(usr);
1723                                 if (who)
1724                                 {
1725                                         /* Did they get any modes? How many times? */
1726                                         strlcat(modestring, nm, MAXBUF);
1727                                         for (int k = 0; k < ntimes; k++)
1728                                                 mode_users[modectr++] = strdup(usr);
1729
1730                                         /* Free temporary buffer used for mode sequence */
1731                                         delete[] nm;
1732
1733                                         /* Check that the user's 'direction' is correct
1734                                          * based on the server sending the FJOIN. We must
1735                                          * check each nickname in turn, because the origin of
1736                                          * the FJOIN may be different to the origin of the nicks
1737                                          * in the command itself.
1738                                          */
1739                                         TreeServer* route_back_again = Utils->BestRouteTo(who->server);
1740                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
1741                                         {
1742                                                 /* Oh dear oh dear. */
1743                                                 Instance->Log(DEBUG,"Fake direction in FJOIN, user '%s'",who->nick);
1744                                                 continue;
1745                                         }
1746                                         /* Finally, we can actually place the user into the channel.
1747                                          * We're sure its right. Final answer, phone a friend.
1748                                          */
1749                                         chanrec::JoinUser(this->Instance, who, channel.c_str(), true, "");
1750
1751                                         /* Have we already queued up MAXMODES modes with parameters
1752                                          * (+qaohv) ready to be sent to the server?
1753                                          */
1754                                         if (modectr >= (MAXMODES-1))
1755                                         {
1756                                                 /* Only actually give the users any status if we lost
1757                                                  * the FJOIN or drew (equal timestamps).
1758                                                  * It isn't actually possible for ourTS to be > TS here,
1759                                                  * only possible to actually have ourTS == TS, or
1760                                                  * ourTS < TS, because if we lost, we already lowered
1761                                                  * our TS above before we entered this loop. We only
1762                                                  * check >= as a safety measure, in case someone stuffed
1763                                                  * up. If someone DID stuff up, it was most likely me.
1764                                                  * Note: I do not like baseball bats in the face...
1765                                                  */
1766                                                 if (ourTS >= TS)
1767                                                 {
1768                                                         Instance->Log(DEBUG,"Our our channel newer than theirs, accepting their modes");
1769                                                         this->Instance->SendMode((const char**)mode_users,modectr,who);
1770
1771                                                         /* Something stuffed up, and for some reason, the timestamp is
1772                                                          * NOT lowered right now and should be. Lower it. Usually this
1773                                                          * code won't be executed, doubtless someone will remove it some
1774                                                          * day soon.
1775                                                          */
1776                                                         if (ourTS > TS)
1777                                                         {
1778                                                                 Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1779                                                                 chan->age = TS;
1780                                                                 ourTS = TS;
1781                                                         }
1782                                                 }
1783
1784                                                 /* Reset all this back to defaults, and
1785                                                  * free any ram we have left allocated.
1786                                                  */
1787                                                 strcpy(mode_users[1],"+");
1788                                                 for (unsigned int f = 2; f < modectr; f++)
1789                                                         free(mode_users[f]);
1790                                                 modectr = 2;
1791                                         }
1792                                 }
1793                                 else
1794                                 {
1795                                         /* Remember to free this */
1796                                         delete[] nm;
1797                                         /* If we got here, there's a nick in FJOIN which doesnt exist on this server.
1798                                          * We don't try to process the nickname here (that WOULD cause a segfault because
1799                                          * we'd be playing with null pointers) however, we DO pass the nickname on, just
1800                                          * in case somehow we're desynched, so that other users which might be able to see
1801                                          * the nickname get their fair chance to process it.
1802                                          */
1803                                         Instance->Log(SPARSE,"Warning! Invalid user in FJOIN to channel %s IGNORED", channel.c_str());
1804                                         continue;
1805                                 }
1806                         }
1807                 }
1808
1809                 /* there werent enough modes built up to flush it during FJOIN,
1810                  * or, there are a number left over. flush them out.
1811                  */
1812                 if ((modectr > 2) && (who) && (chan))
1813                 {
1814                         if (ourTS >= TS)
1815                         {
1816                                 /* Our channel is newer than theirs. Evil deeds must be afoot. */
1817                                 this->Instance->SendMode((const char**)mode_users,modectr,who);
1818                                 /* Yet again, we can't actually get a true value here, if everything else
1819                                  * is working as it should.
1820                                  */
1821                                 if (ourTS > TS)
1822                                 {
1823                                         Instance->Log(DEFAULT,"Channel TS for %s changed from %lu to %lu",chan->name,ourTS,TS);
1824                                         chan->age = TS;
1825                                         ourTS = TS;
1826                                 }
1827                         }
1828
1829                         /* Free anything we have left to free */
1830                         for (unsigned int f = 2; f < modectr; f++)
1831                                 free(mode_users[f]);
1832                 }
1833
1834                 /* if we newly created the channel, set it's TS properly. */
1835                 if (created)
1836                 {
1837                         /* find created channel .. */
1838                         chan = this->Instance->FindChan(channel);
1839                         if (chan)
1840                                 /* w00t said this shouldnt be needed but it is.
1841                                  * This isnt strictly true, as chan can be NULL
1842                                  * if a nick collision has occured and therefore
1843                                  * the channel was never created.
1844                                  */
1845                                 chan->age = TS;
1846                 }
1847
1848                 /* All done. That wasnt so bad was it, you can wipe
1849                  * the sweat from your forehead now. :-)
1850                  */
1851                 return true;
1852         }
1853
1854         /** NICK command */
1855         bool IntroduceClient(const std::string &source, std::deque<std::string> &params)
1856         {
1857                 if (params.size() < 8)
1858                         return true;
1859                 if (params.size() > 8)
1860                 {
1861                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+params[1]+" :Invalid client introduction ("+params[1]+"?)");
1862                         return true;
1863                 }
1864                 // NICK age nick host dhost ident +modes ip :gecos
1865                 //       0    1   2     3     4      5   6     7
1866                 time_t age = atoi(params[0].c_str());
1867                 
1868                 /* This used to have a pretty craq'y loop doing the same thing,
1869                  * now we just let the STL do the hard work (more efficiently)
1870                  */
1871                 std::string::size_type pos_after_plus = params[5].find_first_not_of('+');
1872                 if (pos_after_plus != std::string::npos)
1873                         params[5] = params[5].substr(pos_after_plus);
1874                 
1875                 const char* tempnick = params[1].c_str();
1876                 Instance->Log(DEBUG,"Introduce client %s!%s@%s",tempnick,params[4].c_str(),params[2].c_str());
1877                 
1878                 user_hash::iterator iter = this->Instance->clientlist->find(tempnick);
1879                 
1880                 if (iter != this->Instance->clientlist->end())
1881                 {
1882                         // nick collision
1883                         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);
1884                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" KILL "+tempnick+" :Nickname collision");
1885                         userrec::QuitUser(this->Instance, iter->second, "Nickname collision");
1886                         return true;
1887                 }
1888
1889                 userrec* _new = new userrec(this->Instance);
1890                 (*(this->Instance->clientlist))[tempnick] = _new;
1891                 _new->SetFd(FD_MAGIC_NUMBER);
1892                 strlcpy(_new->nick, tempnick,NICKMAX-1);
1893                 strlcpy(_new->host, params[2].c_str(),63);
1894                 strlcpy(_new->dhost, params[3].c_str(),63);
1895                 _new->server = this->Instance->FindServerNamePtr(source.c_str());
1896                 strlcpy(_new->ident, params[4].c_str(),IDENTMAX);
1897                 strlcpy(_new->fullname, params[7].c_str(),MAXGECOS);
1898                 _new->registered = REG_ALL;
1899                 _new->signon = age;
1900                 
1901                 for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++)
1902                         _new->modes[(*v)-65] = 1;
1903
1904 #ifdef SUPPORT_IP6LINKS
1905                 if (params[6].find_first_of(":") != std::string::npos)
1906                         _new->SetSockAddr(AF_INET6, params[6].c_str(), 0);
1907                 else
1908 #endif
1909                         _new->SetSockAddr(AF_INET, params[6].c_str(), 0);
1910
1911                 Instance->AddGlobalClone(_new);
1912
1913                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
1914
1915                 params[7] = ":" + params[7];
1916                 Utils->DoOneToAllButSender(source,"NICK",params,source);
1917
1918                 // Increment the Source Servers User Count..
1919                 TreeServer* SourceServer = Utils->FindServer(source);
1920                 if (SourceServer)
1921                 {
1922                         Instance->Log(DEBUG,"Found source server of %s",_new->nick);
1923                         SourceServer->AddUserCount();
1924                 }
1925
1926                 FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
1927
1928                 return true;
1929         }
1930
1931         /** Send one or more FJOINs for a channel of users.
1932          * If the length of a single line is more than 480-NICKMAX
1933          * in length, it is split over multiple lines.
1934          */
1935         void SendFJoins(TreeServer* Current, chanrec* c)
1936         {
1937                 std::string buffer;
1938
1939                 Instance->Log(DEBUG,"Sending FJOINs to other server for %s",c->name);
1940                 char list[MAXBUF];
1941                 std::string individual_halfops = std::string(":")+this->Instance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age);
1942                 
1943                 size_t dlen, curlen;
1944                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1945                 int numusers = 0;
1946                 char* ptr = list + dlen;
1947
1948                 CUList *ulist = c->GetUsers();
1949                 std::string modes = "";
1950                 std::string params = "";
1951
1952                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
1953                 {
1954                         // The first parameter gets a : before it
1955                         size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", c->GetAllPrefixChars(i->second), i->second->nick);
1956
1957                         curlen += ptrlen;
1958                         ptr += ptrlen;
1959
1960                         numusers++;
1961
1962                         if (curlen > (480-NICKMAX))
1963                         {
1964                                 buffer.append(list).append("\r\n");
1965
1966                                 dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu",this->Instance->Config->ServerName,c->name,(unsigned long)c->age);
1967                                 ptr = list + dlen;
1968                                 ptrlen = 0;
1969                                 numusers = 0;
1970                         }
1971                 }
1972
1973                 if (numusers)
1974                         buffer.append(list).append("\r\n");
1975
1976                 /* Sorry for the hax. Because newly created channels assume +nt,
1977                  * if this channel doesnt have +nt, explicitly send -n and -t for the missing modes.
1978                  */
1979                 bool inverted = false;
1980                 if (!c->IsModeSet('n'))
1981                 {
1982                         modes.append("-n");
1983                         inverted = true;
1984                 }
1985                 if (!c->IsModeSet('t'))
1986                 {
1987                         modes.append("-t");
1988                         inverted = true;
1989                 }
1990                 if (inverted)
1991                 {
1992                         modes.append("+");
1993                 }
1994
1995                 for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
1996                 {
1997                         modes.append("b");
1998                         params.append(" ").append(b->data);
1999
2000                         if (params.length() >= MAXMODES)
2001                         {
2002                                 /* Wrap at MAXMODES */
2003                                 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");
2004                                 modes = "";
2005                                 params = "";
2006                         }
2007                 }
2008
2009                 buffer.append(":").append(this->Instance->Config->ServerName).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(c->ChanModes(true));
2010
2011                 /* Only send these if there are any */
2012                 if (!modes.empty())
2013                         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);
2014
2015                 this->WriteLine(buffer);
2016         }
2017
2018         /** Send G, Q, Z and E lines */
2019         void SendXLines(TreeServer* Current)
2020         {
2021                 char data[MAXBUF];
2022                 std::string buffer;
2023                 std::string n = this->Instance->Config->ServerName;
2024                 const char* sn = n.c_str();
2025
2026                 /* Yes, these arent too nice looking, but they get the job done */
2027                 for (std::vector<ZLine*>::iterator i = Instance->XLines->zlines.begin(); i != Instance->XLines->zlines.end(); i++)
2028                 {
2029                         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);
2030                         buffer.append(data);
2031                 }
2032                 for (std::vector<QLine*>::iterator i = Instance->XLines->qlines.begin(); i != Instance->XLines->qlines.end(); i++)
2033                 {
2034                         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);
2035                         buffer.append(data);
2036                 }
2037                 for (std::vector<GLine*>::iterator i = Instance->XLines->glines.begin(); i != Instance->XLines->glines.end(); i++)
2038                 {
2039                         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);
2040                         buffer.append(data);
2041                 }
2042                 for (std::vector<ELine*>::iterator i = Instance->XLines->elines.begin(); i != Instance->XLines->elines.end(); i++)
2043                 {
2044                         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);
2045                         buffer.append(data);
2046                 }
2047                 for (std::vector<ZLine*>::iterator i = Instance->XLines->pzlines.begin(); i != Instance->XLines->pzlines.end(); i++)
2048                 {
2049                         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);
2050                         buffer.append(data);
2051                 }
2052                 for (std::vector<QLine*>::iterator i = Instance->XLines->pqlines.begin(); i != Instance->XLines->pqlines.end(); i++)
2053                 {
2054                         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);
2055                         buffer.append(data);
2056                 }
2057                 for (std::vector<GLine*>::iterator i = Instance->XLines->pglines.begin(); i != Instance->XLines->pglines.end(); i++)
2058                 {
2059                         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);
2060                         buffer.append(data);
2061                 }
2062                 for (std::vector<ELine*>::iterator i = Instance->XLines->pelines.begin(); i != Instance->XLines->pelines.end(); i++)
2063                 {
2064                         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);
2065                         buffer.append(data);
2066                 }
2067
2068                 if (!buffer.empty())
2069                         this->WriteLine(buffer);
2070         }
2071
2072         /** Send channel modes and topics */
2073         void SendChannelModes(TreeServer* Current)
2074         {
2075                 char data[MAXBUF];
2076                 std::deque<std::string> list;
2077                 std::string n = this->Instance->Config->ServerName;
2078                 const char* sn = n.c_str();
2079                 for (chan_hash::iterator c = this->Instance->chanlist->begin(); c != this->Instance->chanlist->end(); c++)
2080                 {
2081                         SendFJoins(Current, c->second);
2082                         if (*c->second->topic)
2083                         {
2084                                 snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
2085                                 this->WriteLine(data);
2086                         }
2087                         FOREACH_MOD_I(this->Instance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
2088                         list.clear();
2089                         c->second->GetExtList(list);
2090                         for (unsigned int j = 0; j < list.size(); j++)
2091                         {
2092                                 FOREACH_MOD_I(this->Instance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
2093                         }
2094                 }
2095         }
2096
2097         /** send all users and their oper state/modes */
2098         void SendUsers(TreeServer* Current)
2099         {
2100                 char data[MAXBUF];
2101                 std::deque<std::string> list;
2102                 std::string dataline;
2103                 for (user_hash::iterator u = this->Instance->clientlist->begin(); u != this->Instance->clientlist->end(); u++)
2104                 {
2105                         if (u->second->registered == REG_ALL)
2106                         {
2107                                 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);
2108                                 this->WriteLine(data);
2109                                 if (*u->second->oper)
2110                                 {
2111                                         snprintf(data,MAXBUF,":%s OPERTYPE %s", u->second->nick, u->second->oper);
2112                                         this->WriteLine(data);
2113                                 }
2114                                 if (*u->second->awaymsg)
2115                                 {
2116                                         snprintf(data,MAXBUF,":%s AWAY :%s", u->second->nick, u->second->awaymsg);
2117                                         this->WriteLine(data);
2118                                 }
2119                                 FOREACH_MOD_I(this->Instance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
2120                                 list.clear();
2121                                 u->second->GetExtList(list);
2122                                 for (unsigned int j = 0; j < list.size(); j++)
2123                                 {
2124                                         FOREACH_MOD_I(this->Instance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
2125                                 }
2126                         }
2127                 }
2128         }
2129
2130         /** This function is called when we want to send a netburst to a local
2131          * server. There is a set order we must do this, because for example
2132          * users require their servers to exist, and channels require their
2133          * users to exist. You get the idea.
2134          */
2135         void DoBurst(TreeServer* s)
2136         {
2137                 std::string burst = "BURST "+ConvToStr(Instance->Time(true));
2138                 std::string endburst = "ENDBURST";
2139                 // Because by the end of the netburst, it  could be gone!
2140                 std::string name = s->GetName();
2141                 this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2"+name+"\2.");
2142                 this->WriteLine(burst);
2143                 /* send our version string */
2144                 this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" VERSION :"+this->Instance->GetVersionString());
2145                 /* Send server tree */
2146                 this->SendServers(Utils->TreeRoot,s,1);
2147                 /* Send users and their oper status */
2148                 this->SendUsers(s);
2149                 /* Send everything else (channel modes, xlines etc) */
2150                 this->SendChannelModes(s);
2151                 this->SendXLines(s);            
2152                 FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
2153                 this->WriteLine(endburst);
2154                 this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
2155         }
2156
2157         /** This function is called when we receive data from a remote
2158          * server. We buffer the data in a std::string (it doesnt stay
2159          * there for long), reading using InspSocket::Read() which can
2160          * read up to 16 kilobytes in one operation.
2161          *
2162          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
2163          * THE SOCKET OBJECT FOR US.
2164          */
2165         virtual bool OnDataReady()
2166         {
2167                 char* data = this->Read();
2168                 /* Check that the data read is a valid pointer and it has some content */
2169                 if (data && *data)
2170                 {
2171                         this->in_buffer.append(data);
2172                         /* While there is at least one new line in the buffer,
2173                          * do something useful (we hope!) with it.
2174                          */
2175                         while (in_buffer.find("\n") != std::string::npos)
2176                         {
2177                                 std::string ret = in_buffer.substr(0,in_buffer.find("\n")-1);
2178                                 in_buffer = in_buffer.substr(in_buffer.find("\n")+1,in_buffer.length()-in_buffer.find("\n"));
2179                                 /* Use rfind here not find, as theres more
2180                                  * chance of the \r being near the end of the
2181                                  * string, not the start.
2182                                  */
2183                                 if (ret.find("\r") != std::string::npos)
2184                                         ret = in_buffer.substr(0,in_buffer.find("\r")-1);
2185                                 /* Process this one, abort if it
2186                                  * didnt return true.
2187                                  */
2188                                 if (!this->ProcessLine(ret))
2189                                 {
2190                                         return false;
2191                                 }
2192                         }
2193                         return true;
2194                 }
2195                 /* EAGAIN returns an empty but non-NULL string, so this
2196                  * evaluates to TRUE for EAGAIN but to FALSE for EOF.
2197                  */
2198                 return (data && !*data);
2199         }
2200
2201         int WriteLine(std::string line)
2202         {
2203                 Instance->Log(DEBUG,"OUT: %s",line.c_str());
2204                 line.append("\r\n");
2205                 return this->Write(line);
2206         }
2207
2208         /* Handle ERROR command */
2209         bool Error(std::deque<std::string> &params)
2210         {
2211                 if (params.size() < 1)
2212                         return false;
2213                 this->Instance->SNO->WriteToSnoMask('l',"ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
2214                 /* we will return false to cause the socket to close. */
2215                 return false;
2216         }
2217
2218         /** remote MOTD. leet, huh? */
2219         bool Motd(const std::string &prefix, std::deque<std::string> &params)
2220         {
2221                 if (params.size() > 0)
2222                 {
2223                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2224                         {
2225                                 /* It's for our server */
2226                                 string_list results;
2227                                 userrec* source = this->Instance->FindNick(prefix);
2228
2229                                 if (source)
2230                                 {
2231                                         std::deque<std::string> par;
2232                                         par.push_back(prefix);
2233                                         par.push_back("");
2234
2235                                         if (!Instance->Config->MOTD.size())
2236                                         {
2237                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
2238                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2239                                                 return true;
2240                                         }
2241    
2242                                         par[1] = std::string("::")+Instance->Config->ServerName+" 375 "+source->nick+" :"+Instance->Config->ServerName+" message of the day";
2243                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2244    
2245                                         for (unsigned int i = 0; i < Instance->Config->MOTD.size(); i++)
2246                                         {
2247                                                 par[1] = std::string("::")+Instance->Config->ServerName+" 372 "+source->nick+" :- "+Instance->Config->MOTD[i];
2248                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2249                                         }
2250      
2251                                         par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
2252                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2253                                 }
2254                         }
2255                         else
2256                         {
2257                                 /* Pass it on */
2258                                 userrec* source = this->Instance->FindNick(prefix);
2259                                 if (source)
2260                                         Utils->DoOneToOne(prefix, "MOTD", params, params[0]);
2261                         }
2262                 }
2263                 return true;
2264         }
2265
2266         /** remote ADMIN. leet, huh? */
2267         bool Admin(const std::string &prefix, std::deque<std::string> &params)
2268         {
2269                 if (params.size() > 0)
2270                 {
2271                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
2272                         {
2273                                 /* It's for our server */
2274                                 string_list results;
2275                                 userrec* source = this->Instance->FindNick(prefix);
2276
2277                                 if (source)
2278                                 {
2279                                         std::deque<std::string> par;
2280                                         par.push_back(prefix);
2281                                         par.push_back("");
2282
2283                                         par[1] = std::string("::")+Instance->Config->ServerName+" 256 "+source->nick+" :Administrative info for "+Instance->Config->ServerName;
2284                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2285
2286                                         par[1] = std::string("::")+Instance->Config->ServerName+" 257 "+source->nick+" :Name     - "+Instance->Config->AdminName;
2287                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2288
2289                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :Nickname - "+Instance->Config->AdminNick;
2290                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2291
2292                                         par[1] = std::string("::")+Instance->Config->ServerName+" 258 "+source->nick+" :E-Mail   - "+Instance->Config->AdminEmail;
2293                                         Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2294                                 }
2295                         }
2296                         else
2297                         {
2298                                 /* Pass it on */
2299                                 userrec* source = this->Instance->FindNick(prefix);
2300                                 if (source)
2301                                         Utils->DoOneToOne(prefix, "ADMIN", params, params[0]);
2302                         }
2303                 }
2304                 return true;
2305         }
2306
2307         bool Stats(const std::string &prefix, std::deque<std::string> &params)
2308         {
2309                 /* Get the reply to a STATS query if it matches this servername,
2310                  * and send it back as a load of PUSH queries
2311                  */
2312                 if (params.size() > 1)
2313                 {
2314                         if (this->Instance->MatchText(this->Instance->Config->ServerName, params[1]))
2315                         {
2316                                 /* It's for our server */
2317                                 string_list results;
2318                                 userrec* source = this->Instance->FindNick(prefix);
2319                                 if (source)
2320                                 {
2321                                         std::deque<std::string> par;
2322                                         par.push_back(prefix);
2323                                         par.push_back("");
2324                                         DoStats(this->Instance, *(params[0].c_str()), source, results);
2325                                         for (size_t i = 0; i < results.size(); i++)
2326                                         {
2327                                                 par[1] = "::" + results[i];
2328                                                 Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
2329                                         }
2330                                 }
2331                         }
2332                         else
2333                         {
2334                                 /* Pass it on */
2335                                 userrec* source = this->Instance->FindNick(prefix);
2336                                 if (source)
2337                                         Utils->DoOneToOne(prefix, "STATS", params, params[1]);
2338                         }
2339                 }
2340                 return true;
2341         }
2342
2343
2344         /** Because the core won't let users or even SERVERS set +o,
2345          * we use the OPERTYPE command to do this.
2346          */
2347         bool OperType(const std::string &prefix, std::deque<std::string> &params)
2348         {
2349                 if (params.size() != 1)
2350                 {
2351                         Instance->Log(DEBUG,"Received invalid oper type from %s",prefix.c_str());
2352                         return true;
2353                 }
2354                 std::string opertype = params[0];
2355                 userrec* u = this->Instance->FindNick(prefix);
2356                 if (u)
2357                 {
2358                         u->modes[UM_OPERATOR] = 1;
2359                         strlcpy(u->oper,opertype.c_str(),NICKMAX-1);
2360                         Utils->DoOneToAllButSender(u->nick,"OPERTYPE",params,u->server);
2361                         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()));
2362
2363                 }
2364                 return true;
2365         }
2366
2367         /** Because Andy insists that services-compatible servers must
2368          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
2369          */
2370         bool ForceNick(const std::string &prefix, std::deque<std::string> &params)
2371         {
2372                 if (params.size() < 3)
2373                         return true;
2374
2375                 userrec* u = this->Instance->FindNick(params[0]);
2376
2377                 if (u)
2378                 {
2379                         Utils->DoOneToAllButSender(prefix,"SVSNICK",params,prefix);
2380                         if (IS_LOCAL(u))
2381                         {
2382                                 std::deque<std::string> par;
2383                                 par.push_back(params[1]);
2384                                 /* This is not required as one is sent in OnUserPostNick below
2385                                  */
2386                                 //Utils->DoOneToMany(u->nick,"NICK",par);
2387                                 if (!u->ForceNickChange(params[1].c_str()))
2388                                 {
2389                                         userrec::QuitUser(this->Instance, u, "Nickname collision");
2390                                         return true;
2391                                 }
2392                                 u->age = atoi(params[2].c_str());
2393                         }
2394                 }
2395                 return true;
2396         }
2397
2398         /*
2399          * Remote SQUIT (RSQUIT). Routing works similar to SVSNICK: Route it to the server that the target is connected to locally,
2400          * then let that server do the dirty work (squit it!). Example:
2401          * 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
2402          */
2403         bool RemoteSquit(const std::string &prefix, std::deque<std::string> &params)
2404         {
2405                 /* ok.. :w00t RSQUIT jupe.barafranca.com :reason here */
2406                 if (params.size() < 2)
2407                         return true;
2408
2409                 TreeServer* s = Utils->FindServerMask(params[0]);
2410
2411                 if (s)
2412                 {
2413                         if (s == Utils->TreeRoot)
2414                         {
2415                                 this->Instance->SNO->WriteToSnoMask('l',"What the fuck, I recieved a remote SQUIT for myself? :< (from %s", prefix.c_str());
2416                                 return true;
2417                         }
2418
2419                         TreeSocket* sock = s->GetSocket();
2420
2421                         if (sock)
2422                         {
2423                                 /* it's locally connected, KILL IT! */
2424                                 Instance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
2425                                 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());
2426                                 sock->Squit(s,"Server quit by " + prefix + ": " + params[1]);
2427                                 Instance->SE->DelFd(sock);
2428                                 sock->Close();
2429                                 delete sock;
2430                         }
2431                         else
2432                         {
2433                                 /* route the rsquit */
2434                                 params[1] = ":" + params[1];
2435                                 Utils->DoOneToOne(prefix, "RSQUIT", params, params[0]);
2436                         }
2437                 }
2438                 else
2439                 {
2440                         /* mother fucker! it doesn't exist */
2441                 }
2442
2443                 return true;
2444         }
2445
2446         bool ServiceJoin(const std::string &prefix, std::deque<std::string> &params)
2447         {
2448                 if (params.size() < 2)
2449                         return true;
2450
2451                 userrec* u = this->Instance->FindNick(params[0]);
2452
2453                 if (u)
2454                 {
2455                         chanrec::JoinUser(this->Instance, u, params[1].c_str(), false);
2456                         Utils->DoOneToAllButSender(prefix,"SVSJOIN",params,prefix);
2457                 }
2458                 return true;
2459         }
2460
2461         bool RemoteRehash(const std::string &prefix, std::deque<std::string> &params)
2462         {
2463                 if (params.size() < 1)
2464                         return false;
2465
2466                 std::string servermask = params[0];
2467
2468                 if (this->Instance->MatchText(this->Instance->Config->ServerName,servermask))
2469                 {
2470                         this->Instance->SNO->WriteToSnoMask('l',"Remote rehash initiated from server \002"+prefix+"\002.");
2471                         this->Instance->RehashServer();
2472                         Utils->ReadConfiguration(false);
2473                         InitializeDisabledCommands(Instance->Config->DisabledCommands, Instance);
2474                 }
2475                 Utils->DoOneToAllButSender(prefix,"REHASH",params,prefix);
2476                 return true;
2477         }
2478
2479         bool RemoteKill(const std::string &prefix, std::deque<std::string> &params)
2480         {
2481                 if (params.size() != 2)
2482                         return true;
2483
2484                 std::string nick = params[0];
2485                 userrec* u = this->Instance->FindNick(prefix);
2486                 userrec* who = this->Instance->FindNick(nick);
2487
2488                 if (who)
2489                 {
2490                         /* Prepend kill source, if we don't have one */
2491                         std::string sourceserv = prefix;
2492                         if (u)
2493                         {
2494                                 sourceserv = u->server;
2495                         }
2496                         if (*(params[1].c_str()) != '[')
2497                         {
2498                                 params[1] = "[" + sourceserv + "] Killed (" + params[1] +")";
2499                         }
2500                         std::string reason = params[1];
2501                         params[1] = ":" + params[1];
2502                         Utils->DoOneToAllButSender(prefix,"KILL",params,sourceserv);
2503                         who->Write(":%s KILL %s :%s (%s)", sourceserv.c_str(), who->nick, sourceserv.c_str(), reason.c_str());
2504                         userrec::QuitUser(this->Instance,who,reason);
2505                 }
2506                 return true;
2507         }
2508
2509         bool LocalPong(const std::string &prefix, std::deque<std::string> &params)
2510         {
2511                 if (params.size() < 1)
2512                         return true;
2513
2514                 if (params.size() == 1)
2515                 {
2516                         TreeServer* ServerSource = Utils->FindServer(prefix);
2517                         if (ServerSource)
2518                         {
2519                                 ServerSource->SetPingFlag();
2520                         }
2521                 }
2522                 else
2523                 {
2524                         std::string forwardto = params[1];
2525                         if (forwardto == this->Instance->Config->ServerName)
2526                         {
2527                                 /*
2528                                  * this is a PONG for us
2529                                  * if the prefix is a user, check theyre local, and if they are,
2530                                  * dump the PONG reply back to their fd. If its a server, do nowt.
2531                                  * Services might want to send these s->s, but we dont need to yet.
2532                                  */
2533                                 userrec* u = this->Instance->FindNick(prefix);
2534
2535                                 if (u)
2536                                 {
2537                                         u->WriteServ("PONG %s %s",params[0].c_str(),params[1].c_str());
2538                                 }
2539                         }
2540                         else
2541                         {
2542                                 // not for us, pass it on :)
2543                                 Utils->DoOneToOne(prefix,"PONG",params,forwardto);
2544                         }
2545                 }
2546
2547                 return true;
2548         }
2549         
2550         bool MetaData(const std::string &prefix, std::deque<std::string> &params)
2551         {
2552                 if (params.size() < 3)
2553                         return true;
2554
2555                 TreeServer* ServerSource = Utils->FindServer(prefix);
2556
2557                 if (ServerSource)
2558                 {
2559                         if (params[0] == "*")
2560                         {
2561                                 FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_OTHER,NULL,params[1],params[2]));
2562                         }
2563                         else if (*(params[0].c_str()) == '#')
2564                         {
2565                                 chanrec* c = this->Instance->FindChan(params[0]);
2566                                 if (c)
2567                                 {
2568                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_CHANNEL,c,params[1],params[2]));
2569                                 }
2570                         }
2571                         else if (*(params[0].c_str()) != '#')
2572                         {
2573                                 userrec* u = this->Instance->FindNick(params[0]);
2574                                 if (u)
2575                                 {
2576                                         FOREACH_MOD_I(this->Instance,I_OnDecodeMetaData,OnDecodeMetaData(TYPE_USER,u,params[1],params[2]));
2577                                 }
2578                         }
2579                 }
2580
2581                 params[2] = ":" + params[2];
2582                 Utils->DoOneToAllButSender(prefix,"METADATA",params,prefix);
2583                 return true;
2584         }
2585
2586         bool ServerVersion(const std::string &prefix, std::deque<std::string> &params)
2587         {
2588                 if (params.size() < 1)
2589                         return true;
2590
2591                 TreeServer* ServerSource = Utils->FindServer(prefix);
2592
2593                 if (ServerSource)
2594                 {
2595                         ServerSource->SetVersion(params[0]);
2596                 }
2597                 params[0] = ":" + params[0];
2598                 Utils->DoOneToAllButSender(prefix,"VERSION",params,prefix);
2599                 return true;
2600         }
2601
2602         bool ChangeHost(const std::string &prefix, std::deque<std::string> &params)
2603         {
2604                 if (params.size() < 1)
2605                         return true;
2606
2607                 userrec* u = this->Instance->FindNick(prefix);
2608
2609                 if (u)
2610                 {
2611                         u->ChangeDisplayedHost(params[0].c_str());
2612                         Utils->DoOneToAllButSender(prefix,"FHOST",params,u->server);
2613                 }
2614                 return true;
2615         }
2616
2617         bool AddLine(const std::string &prefix, std::deque<std::string> &params)
2618         {
2619                 if (params.size() < 6)
2620                         return true;
2621
2622                 bool propogate = false;
2623
2624                 switch (*(params[0].c_str()))
2625                 {
2626                         case 'Z':
2627                                 propogate = Instance->XLines->add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2628                                 Instance->XLines->zline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2629                         break;
2630                         case 'Q':
2631                                 propogate = Instance->XLines->add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2632                                 Instance->XLines->qline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2633                         break;
2634                         case 'E':
2635                                 propogate = Instance->XLines->add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2636                                 Instance->XLines->eline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2637                         break;
2638                         case 'G':
2639                                 propogate = Instance->XLines->add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2640                                 Instance->XLines->gline_set_creation_time(params[1].c_str(), atoi(params[3].c_str()));
2641                         break;
2642                         case 'K':
2643                                 propogate = Instance->XLines->add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
2644                         break;
2645                         default:
2646                                 /* Just in case... */
2647                                 this->Instance->SNO->WriteToSnoMask('x',"\2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
2648                                 propogate = false;
2649                         break;
2650                 }
2651
2652                 /* Send it on its way */
2653                 if (propogate)
2654                 {
2655                         if (atoi(params[4].c_str()))
2656                         {
2657                                 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());
2658                         }
2659                         else
2660                         {
2661                                 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());
2662                         }
2663                         params[5] = ":" + params[5];
2664                         Utils->DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
2665                 }
2666                 if (!this->bursting)
2667                 {
2668                         Instance->Log(DEBUG,"Applying lines...");
2669                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
2670                 }
2671                 return true;
2672         }
2673
2674         bool ChangeName(const std::string &prefix, std::deque<std::string> &params)
2675         {
2676                 if (params.size() < 1)
2677                         return true;
2678
2679                 userrec* u = this->Instance->FindNick(prefix);
2680
2681                 if (u)
2682                 {
2683                         u->ChangeName(params[0].c_str());
2684                         params[0] = ":" + params[0];
2685                         Utils->DoOneToAllButSender(prefix,"FNAME",params,u->server);
2686                 }
2687                 return true;
2688         }
2689
2690         bool Whois(const std::string &prefix, std::deque<std::string> &params)
2691         {
2692                 if (params.size() < 1)
2693                         return true;
2694
2695                 Instance->Log(DEBUG,"In IDLE command");
2696                 userrec* u = this->Instance->FindNick(prefix);
2697
2698                 if (u)
2699                 {
2700                         Instance->Log(DEBUG,"USER EXISTS: %s",u->nick);
2701                         // an incoming request
2702                         if (params.size() == 1)
2703                         {
2704                                 userrec* x = this->Instance->FindNick(params[0]);
2705                                 if ((x) && (IS_LOCAL(x)))
2706                                 {
2707                                         userrec* x = this->Instance->FindNick(params[0]);
2708                                         char signon[MAXBUF];
2709                                         char idle[MAXBUF];
2710
2711                                         snprintf(signon,MAXBUF,"%lu",(unsigned long)x->signon);
2712                                         snprintf(idle,MAXBUF,"%lu",(unsigned long)abs((x->idle_lastmsg)-Instance->Time(true)));
2713                                         std::deque<std::string> par;
2714                                         par.push_back(prefix);
2715                                         par.push_back(signon);
2716                                         par.push_back(idle);
2717                                         // ours, we're done, pass it BACK
2718                                         Utils->DoOneToOne(params[0],"IDLE",par,u->server);
2719                                 }
2720                                 else
2721                                 {
2722                                         // not ours pass it on
2723                                         Utils->DoOneToOne(prefix,"IDLE",params,x->server);
2724                                 }
2725                         }
2726                         else if (params.size() == 3)
2727                         {
2728                                 std::string who_did_the_whois = params[0];
2729                                 userrec* who_to_send_to = this->Instance->FindNick(who_did_the_whois);
2730                                 if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2731                                 {
2732                                         // an incoming reply to a whois we sent out
2733                                         std::string nick_whoised = prefix;
2734                                         unsigned long signon = atoi(params[1].c_str());
2735                                         unsigned long idle = atoi(params[2].c_str());
2736                                         if ((who_to_send_to) && (IS_LOCAL(who_to_send_to)))
2737                                                 do_whois(this->Instance,who_to_send_to,u,signon,idle,nick_whoised.c_str());
2738                                 }
2739                                 else
2740                                 {
2741                                         // not ours, pass it on
2742                                         Utils->DoOneToOne(prefix,"IDLE",params,who_to_send_to->server);
2743                                 }
2744                         }
2745                 }
2746                 return true;
2747         }
2748
2749         bool Push(const std::string &prefix, std::deque<std::string> &params)
2750         {
2751                 if (params.size() < 2)
2752                         return true;
2753
2754                 userrec* u = this->Instance->FindNick(params[0]);
2755
2756                 if (!u)
2757                         return true;
2758
2759                 if (IS_LOCAL(u))
2760                 {
2761                         u->Write(params[1]);
2762                 }
2763                 else
2764                 {
2765                         // continue the raw onwards
2766                         params[1] = ":" + params[1];
2767                         Utils->DoOneToOne(prefix,"PUSH",params,u->server);
2768                 }
2769                 return true;
2770         }
2771
2772         bool HandleSetTime(const std::string &prefix, std::deque<std::string> &params)
2773         {
2774                 if (!params.size() || !Utils->EnableTimeSync)
2775                         return true;
2776                 
2777                 bool force = false;
2778                 
2779                 if ((params.size() == 2) && (params[1] == "FORCE"))
2780                         force = true;
2781                 
2782                 time_t rts = atoi(params[0].c_str());
2783                 time_t us = Instance->Time(true);
2784                 
2785                 if (rts == us)
2786                 {
2787                         Instance->Log(DEBUG, "Timestamp from %s is equal", prefix.c_str());
2788                         
2789                         Utils->DoOneToAllButSender(prefix, "TIMESET", params, prefix);
2790                 }
2791                 else if (force || (rts < us))
2792                 {
2793                         int old = Instance->SetTimeDelta(rts - us);
2794                         Instance->Log(DEBUG, "%s TS (diff %d) from %s applied (old delta was %d)", (force) ? "Forced" : "Lower", rts - us, prefix.c_str(), old);
2795                         
2796                         Utils->DoOneToAllButSender(prefix, "TIMESET", params, prefix);
2797                 }
2798                 else
2799                 {
2800                         Instance->Log(DEBUG, "Higher TS (diff %d) from %s overridden", us - rts, prefix.c_str());
2801                         
2802                         std::deque<std::string> oparams;
2803                         oparams.push_back(ConvToStr(us));
2804                         
2805                         Utils->DoOneToMany(prefix, "TIMESET", oparams);
2806                 }
2807                 
2808                 return true;
2809         }
2810
2811         bool Time(const std::string &prefix, std::deque<std::string> &params)
2812         {
2813                 // :source.server TIME remote.server sendernick
2814                 // :remote.server TIME source.server sendernick TS
2815                 if (params.size() == 2)
2816                 {
2817                         // someone querying our time?
2818                         if (this->Instance->Config->ServerName == params[0])
2819                         {
2820                                 userrec* u = this->Instance->FindNick(params[1]);
2821                                 if (u)
2822                                 {
2823                                         params.push_back(ConvToStr(Instance->Time(false)));
2824                                         params[0] = prefix;
2825                                         Utils->DoOneToOne(this->Instance->Config->ServerName,"TIME",params,params[0]);
2826                                 }
2827                         }
2828                         else
2829                         {
2830                                 // not us, pass it on
2831                                 userrec* u = this->Instance->FindNick(params[1]);
2832                                 if (u)
2833                                         Utils->DoOneToOne(prefix,"TIME",params,params[0]);
2834                         }
2835                 }
2836                 else if (params.size() == 3)
2837                 {
2838                         // a response to a previous TIME
2839                         userrec* u = this->Instance->FindNick(params[1]);
2840                         if ((u) && (IS_LOCAL(u)))
2841                         {
2842                         time_t rawtime = atol(params[2].c_str());
2843                         struct tm * timeinfo;
2844                         timeinfo = localtime(&rawtime);
2845                                 char tms[26];
2846                                 snprintf(tms,26,"%s",asctime(timeinfo));
2847                                 tms[24] = 0;
2848                         u->WriteServ("391 %s %s :%s",u->nick,prefix.c_str(),tms);
2849                         }
2850                         else
2851                         {
2852                                 if (u)
2853                                         Utils->DoOneToOne(prefix,"TIME",params,u->server);
2854                         }
2855                 }
2856                 return true;
2857         }
2858         
2859         bool LocalPing(const std::string &prefix, std::deque<std::string> &params)
2860         {
2861                 if (params.size() < 1)
2862                         return true;
2863
2864                 if (params.size() == 1)
2865                 {
2866                         std::string stufftobounce = params[0];
2867                         this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" PONG "+stufftobounce);
2868                         return true;
2869                 }
2870                 else
2871                 {
2872                         std::string forwardto = params[1];
2873                         if (forwardto == this->Instance->Config->ServerName)
2874                         {
2875                                 // this is a ping for us, send back PONG to the requesting server
2876                                 params[1] = params[0];
2877                                 params[0] = forwardto;
2878                                 Utils->DoOneToOne(forwardto,"PONG",params,params[1]);
2879                         }
2880                         else
2881                         {
2882                                 // not for us, pass it on :)
2883                                 Utils->DoOneToOne(prefix,"PING",params,forwardto);
2884                         }
2885                         return true;
2886                 }
2887         }
2888
2889         bool RemoveStatus(const std::string &prefix, std::deque<std::string> &params)
2890         {
2891                 if (params.size() < 1)
2892                         return true;
2893
2894                 chanrec* c = Instance->FindChan(params[0]);
2895
2896                 if (c)
2897                 {
2898                         irc::modestacker modestack(false);
2899                         CUList *ulist = c->GetUsers();
2900                         const char* y[127];
2901                         std::deque<std::string> stackresult;
2902                         std::string x;
2903
2904                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
2905                         {
2906                                 std::string modesequence = Instance->Modes->ModeString(i->second, c);
2907                                 if (modesequence.length())
2908                                 {
2909                                         Instance->Log(DEBUG,"Mode sequence = '%s'",modesequence.c_str());
2910                                         irc::spacesepstream sep(modesequence);
2911                                         std::string modeletters = sep.GetToken();
2912                                         Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2913                                         
2914                                         while (!modeletters.empty())
2915                                         {
2916                                                 char mletter = *(modeletters.begin());
2917                                                 modestack.Push(mletter,sep.GetToken());
2918                                                 Instance->Log(DEBUG,"Push letter = '%c'",mletter);
2919                                                 modeletters.erase(modeletters.begin());
2920                                                 Instance->Log(DEBUG,"Mode letters = '%s'",modeletters.c_str());
2921                                         }
2922                                 }
2923                         }
2924
2925                         while (modestack.GetStackedLine(stackresult))
2926                         {
2927                                 Instance->Log(DEBUG,"Stacked line size %d",stackresult.size());
2928                                 stackresult.push_front(ConvToStr(c->age));
2929                                 stackresult.push_front(c->name);
2930                                 // dont echo this out, at best its just going to be bounced back -- Brain
2931                                 //Utils->DoOneToMany(Instance->Config->ServerName, "FMODE", stackresult);
2932                                 stackresult.erase(stackresult.begin() + 1);
2933                                 Instance->Log(DEBUG,"Stacked items:");
2934                                 for (size_t z = 0; z < stackresult.size(); z++)
2935                                 {
2936                                         y[z] = stackresult[z].c_str();
2937                                         Instance->Log(DEBUG,"\tstackresult[%d]='%s'",z,stackresult[z].c_str());
2938                                 }
2939                                 userrec* n = new userrec(Instance);
2940                                 n->SetFd(FD_MAGIC_NUMBER);
2941                                 Instance->SendMode(y, stackresult.size(), n);
2942                                 delete n;
2943                         }
2944                 }
2945                 return true;
2946         }
2947
2948         bool RemoteServer(const std::string &prefix, std::deque<std::string> &params)
2949         {
2950                 if (params.size() < 4)
2951                         return false;
2952
2953                 std::string servername = params[0];
2954                 std::string password = params[1];
2955                 // hopcount is not used for a remote server, we calculate this ourselves
2956                 std::string description = params[3];
2957                 TreeServer* ParentOfThis = Utils->FindServer(prefix);
2958
2959                 if (!ParentOfThis)
2960                 {
2961                         this->WriteLine("ERROR :Protocol error - Introduced remote server from unknown server "+prefix);
2962                         return false;
2963                 }
2964                 TreeServer* CheckDupe = Utils->FindServer(servername);
2965                 if (CheckDupe)
2966                 {
2967                         this->WriteLine("ERROR :Server "+servername+" already exists!");
2968                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+servername+"\2 denied, already exists");
2969                         return false;
2970                 }
2971                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,servername,description,ParentOfThis,NULL);
2972                 ParentOfThis->AddChild(Node);
2973                 params[3] = ":" + params[3];
2974                 Utils->DoOneToAllButSender(prefix,"SERVER",params,prefix);
2975                 this->Instance->SNO->WriteToSnoMask('l',"Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
2976                 return true;
2977         }
2978
2979         bool Outbound_Reply_Server(std::deque<std::string> &params)
2980         {
2981                 if (params.size() < 4)
2982                         return false;
2983
2984                 irc::string servername = params[0].c_str();
2985                 std::string sname = params[0];
2986                 std::string password = params[1];
2987                 int hops = atoi(params[2].c_str());
2988
2989                 if (hops)
2990                 {
2991                         this->WriteLine("ERROR :Server too far away for authentication");
2992                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
2993                         return false;
2994                 }
2995                 std::string description = params[3];
2996                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
2997                 {
2998                         if ((x->Name == servername) && (x->RecvPass == password))
2999                         {
3000                                 TreeServer* CheckDupe = Utils->FindServer(sname);
3001                                 if (CheckDupe)
3002                                 {
3003                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
3004                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
3005                                         return false;
3006                                 }
3007                                 // Begin the sync here. this kickstarts the
3008                                 // other side, waiting in WAIT_AUTH_2 state,
3009                                 // into starting their burst, as it shows
3010                                 // that we're happy.
3011                                 this->LinkState = CONNECTED;
3012                                 // we should add the details of this server now
3013                                 // to the servers tree, as a child of the root
3014                                 // node.
3015                                 TreeServer* Node = new TreeServer(this->Utils,this->Instance,sname,description,Utils->TreeRoot,this);
3016                                 Utils->TreeRoot->AddChild(Node);
3017                                 params[3] = ":" + params[3];
3018                                 Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,sname);
3019                                 this->bursting = true;
3020                                 this->DoBurst(Node);
3021                                 return true;
3022                         }
3023                 }
3024                 this->WriteLine("ERROR :Invalid credentials");
3025                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
3026                 return false;
3027         }
3028
3029         bool Inbound_Server(std::deque<std::string> &params)
3030         {
3031                 if (params.size() < 4)
3032                         return false;
3033
3034                 irc::string servername = params[0].c_str();
3035                 std::string sname = params[0];
3036                 std::string password = params[1];
3037                 int hops = atoi(params[2].c_str());
3038
3039                 if (hops)
3040                 {
3041                         this->WriteLine("ERROR :Server too far away for authentication");
3042                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
3043                         return false;
3044                 }
3045                 std::string description = params[3];
3046                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
3047                 {
3048                         if ((x->Name == servername) && (x->RecvPass == password))
3049                         {
3050                                 TreeServer* CheckDupe = Utils->FindServer(sname);
3051                                 if (CheckDupe)
3052                                 {
3053                                         this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
3054                                         this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
3055                                         return false;
3056                                 }
3057                                 this->Instance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
3058
3059                                 if (this->Hook)
3060                                 {
3061                                         std::string name = InspSocketNameRequest((Module*)Utils->Creator, this->Hook).Send();
3062                                         this->Instance->SNO->WriteToSnoMask('l',"Connection from \2"+sname+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] using transport \2"+name+"\2");
3063                                 }
3064
3065                                 this->InboundServerName = sname;
3066                                 this->InboundDescription = description;
3067                                 // this is good. Send our details: Our server name and description and hopcount of 0,
3068                                 // along with the sendpass from this block.
3069                                 this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+x->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
3070                                 // move to the next state, we are now waiting for THEM.
3071                                 this->LinkState = WAIT_AUTH_2;
3072                                 return true;
3073                         }
3074                 }
3075                 this->WriteLine("ERROR :Invalid credentials");
3076                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
3077                 return false;
3078         }
3079
3080         void Split(const std::string &line, std::deque<std::string> &n)
3081         {
3082                 n.clear();
3083                 irc::tokenstream tokens(line);
3084                 std::string param;
3085                 while ((param = tokens.GetToken()) != "")
3086                         n.push_back(param);
3087                 return;
3088         }
3089
3090         bool ProcessLine(std::string &line)
3091         {
3092                 std::deque<std::string> params;
3093                 irc::string command;
3094                 std::string prefix;
3095                 
3096                 line = line.substr(0, line.find_first_of("\r\n"));
3097                 
3098                 if (line.empty())
3099                         return true;
3100                 
3101                 Instance->Log(DEBUG,"IN: %s", line.c_str());
3102                 
3103                 this->Split(line.c_str(),params);
3104                         
3105                 if ((params[0][0] == ':') && (params.size() > 1))
3106                 {
3107                         prefix = params[0].substr(1);
3108                         params.pop_front();
3109                 }
3110
3111                 command = params[0].c_str();
3112                 params.pop_front();
3113
3114                 switch (this->LinkState)
3115                 {
3116                         TreeServer* Node;
3117                         
3118                         case WAIT_AUTH_1:
3119                                 // Waiting for SERVER command from remote server. Server initiating
3120                                 // the connection sends the first SERVER command, listening server
3121                                 // replies with theirs if its happy, then if the initiator is happy,
3122                                 // it starts to send its net sync, which starts the merge, otherwise
3123                                 // it sends an ERROR.
3124                                 if (command == "PASS")
3125                                 {
3126                                         /* Silently ignored */
3127                                 }
3128                                 else if (command == "SERVER")
3129                                 {
3130                                         return this->Inbound_Server(params);
3131                                 }
3132                                 else if (command == "ERROR")
3133                                 {
3134                                         return this->Error(params);
3135                                 }
3136                                 else if (command == "USER")
3137                                 {
3138                                         this->WriteLine("ERROR :Client connections to this port are prohibited.");
3139                                         return false;
3140                                 }
3141                                 else if (command == "CAPAB")
3142                                 {
3143                                         return this->Capab(params);
3144                                 }
3145                                 else if ((command == "U") || (command == "S"))
3146                                 {
3147                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3148                                         return false;
3149                                 }
3150                                 else
3151                                 {
3152                                         std::string error("ERROR :Invalid command in negotiation phase: ");
3153                                         error.append(command.c_str());
3154                                         this->WriteLine(error);
3155                                         return false;
3156                                 }
3157                         break;
3158                         case WAIT_AUTH_2:
3159                                 // Waiting for start of other side's netmerge to say they liked our
3160                                 // password.
3161                                 if (command == "SERVER")
3162                                 {
3163                                         // cant do this, they sent it to us in the WAIT_AUTH_1 state!
3164                                         // silently ignore.
3165                                         return true;
3166                                 }
3167                                 else if ((command == "U") || (command == "S"))
3168                                 {
3169                                         this->WriteLine("ERROR :Cannot use the old-style mesh linking protocol with m_spanningtree.so!");
3170                                         return false;
3171                                 }
3172                                 else if (command == "BURST")
3173                                 {
3174                                         if (params.size() && Utils->EnableTimeSync)
3175                                         {
3176                                                 /* If a time stamp is provided, apply synchronization */
3177                                                 bool force = false;
3178                                                 time_t them = atoi(params[0].c_str());
3179                                                 time_t us = Instance->Time(true);
3180                                                 int delta = them - us;
3181
3182                                                 if ((params.size() == 2) && (params[1] == "FORCE"))
3183                                                         force = true;
3184
3185                                                 if ((delta < -600) || (delta > 600))
3186                                                 {
3187                                                         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));
3188                                                         this->WriteLine("ERROR :Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
3189                                                         return false;
3190                                                 }
3191                                                 
3192                                                 if (us == them)
3193                                                 {
3194                                                         this->Instance->Log(DEBUG, "Timestamps are equal; pat yourself on the back");
3195                                                 }
3196                                                 else if (force || (us > them))
3197                                                 {
3198                                                         this->Instance->Log(DEBUG, "Remote server has lower TS (%d seconds)", them - us);
3199                                                         this->Instance->SetTimeDelta(them - us);
3200                                                         // Send this new timestamp to any other servers
3201                                                         Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
3202                                                 }
3203                                                 else
3204                                                 {
3205                                                         // Override the timestamp
3206                                                         this->Instance->Log(DEBUG, "We have a higher timestamp (by %d seconds), not updating delta", us - them);
3207                                                         this->WriteLine(":" + Utils->TreeRoot->GetName() + " TIMESET " + ConvToStr(us));
3208                                                 }
3209                                         }
3210                                         this->LinkState = CONNECTED;
3211                                         Node = new TreeServer(this->Utils,this->Instance,InboundServerName,InboundDescription,Utils->TreeRoot,this);
3212                                         Utils->TreeRoot->AddChild(Node);
3213                                         params.clear();
3214                                         params.push_back(InboundServerName);
3215                                         params.push_back("*");
3216                                         params.push_back("1");
3217                                         params.push_back(":"+InboundDescription);
3218                                         Utils->DoOneToAllButSender(Utils->TreeRoot->GetName(),"SERVER",params,InboundServerName);
3219                                         this->bursting = true;
3220                                         this->DoBurst(Node);
3221                                 }
3222                                 else if (command == "ERROR")
3223                                 {
3224                                         return this->Error(params);
3225                                 }
3226                                 else if (command == "CAPAB")
3227                                 {
3228                                         return this->Capab(params);
3229                                 }
3230                                 
3231                         break;
3232                         case LISTENER:
3233                                 this->WriteLine("ERROR :Internal error -- listening socket accepted its own descriptor!!!");
3234                                 return false;
3235                         break;
3236                         case CONNECTING:
3237                                 if (command == "SERVER")
3238                                 {
3239                                         // another server we connected to, which was in WAIT_AUTH_1 state,
3240                                         // has just sent us their credentials. If we get this far, theyre
3241                                         // happy with OUR credentials, and they are now in WAIT_AUTH_2 state.
3242                                         // if we're happy with this, we should send our netburst which
3243                                         // kickstarts the merge.
3244                                         return this->Outbound_Reply_Server(params);
3245                                 }
3246                                 else if (command == "ERROR")
3247                                 {
3248                                         return this->Error(params);
3249                                 }
3250                         break;
3251                         case CONNECTED:
3252                                 // This is the 'authenticated' state, when all passwords
3253                                 // have been exchanged and anything past this point is taken
3254                                 // as gospel.
3255                                 
3256                                 if (prefix != "")
3257                                 {
3258                                         std::string direction = prefix;
3259                                         userrec* t = this->Instance->FindNick(prefix);
3260                                         if (t)
3261                                         {
3262                                                 direction = t->server;
3263                                         }
3264                                         TreeServer* route_back_again = Utils->BestRouteTo(direction);
3265                                         if ((!route_back_again) || (route_back_again->GetSocket() != this))
3266                                         {
3267                                                 if (route_back_again)
3268                                                         Instance->Log(DEBUG,"Protocol violation: Fake direction in command '%s' from connection '%s'",line.c_str(),this->GetName().c_str());
3269                                                 return true;
3270                                         }
3271
3272                                         /* Fix by brain:
3273                                          * When there is activity on the socket, reset the ping counter so
3274                                          * that we're not wasting bandwidth pinging an active server.
3275                                          */ 
3276                                         route_back_again->SetNextPingTime(time(NULL) + 60);
3277                                         route_back_again->SetPingFlag();
3278                                 }
3279                                 
3280                                 if (command == "SVSMODE")
3281                                 {
3282                                         /* Services expects us to implement
3283                                          * SVSMODE. In inspircd its the same as
3284                                          * MODE anyway.
3285                                          */
3286                                         command = "MODE";
3287                                 }
3288                                 std::string target = "";
3289                                 /* Yes, know, this is a mess. Its reasonably fast though as we're
3290                                  * working with std::string here.
3291                                  */
3292                                 if ((command == "NICK") && (params.size() > 1))
3293                                 {
3294                                         return this->IntroduceClient(prefix,params);
3295                                 }
3296                                 else if (command == "FJOIN")
3297                                 {
3298                                         return this->ForceJoin(prefix,params);
3299                                 }
3300                                 else if (command == "STATS")
3301                                 {
3302                                         return this->Stats(prefix, params);
3303                                 }
3304                                 else if (command == "MOTD")
3305                                 {
3306                                         return this->Motd(prefix, params);
3307                                 }
3308                                 else if (command == "ADMIN")
3309                                 {
3310                                         return this->Admin(prefix, params);
3311                                 }
3312                                 else if (command == "SERVER")
3313                                 {
3314                                         return this->RemoteServer(prefix,params);
3315                                 }
3316                                 else if (command == "ERROR")
3317                                 {
3318                                         return this->Error(params);
3319                                 }
3320                                 else if (command == "OPERTYPE")
3321                                 {
3322                                         return this->OperType(prefix,params);
3323                                 }
3324                                 else if (command == "FMODE")
3325                                 {
3326                                         return this->ForceMode(prefix,params);
3327                                 }
3328                                 else if (command == "KILL")
3329                                 {
3330                                         return this->RemoteKill(prefix,params);
3331                                 }
3332                                 else if (command == "FTOPIC")
3333                                 {
3334                                         return this->ForceTopic(prefix,params);
3335                                 }
3336                                 else if (command == "REHASH")
3337                                 {
3338                                         return this->RemoteRehash(prefix,params);
3339                                 }
3340                                 else if (command == "METADATA")
3341                                 {
3342                                         return this->MetaData(prefix,params);
3343                                 }
3344                                 else if (command == "REMSTATUS")
3345                                 {
3346                                         return this->RemoveStatus(prefix,params);
3347                                 }
3348                                 else if (command == "PING")
3349                                 {
3350                                         /*
3351                                          * We just got a ping from a server that's bursting.
3352                                          * This can't be right, so set them to not bursting, and
3353                                          * apply their lines.
3354                                          */
3355                                         if (this->bursting)
3356                                         {
3357                                                 this->bursting = false;
3358                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3359                                         }
3360                                         if (prefix == "")
3361                                         {
3362                                                 prefix = this->GetName();
3363                                         }
3364                                         return this->LocalPing(prefix,params);
3365                                 }
3366                                 else if (command == "PONG")
3367                                 {
3368                                         /*
3369                                          * We just got a pong from a server that's bursting.
3370                                          * This can't be right, so set them to not bursting, and
3371                                          * apply their lines.
3372                                          */
3373                                         if (this->bursting)
3374                                         {
3375                                                 this->bursting = false;
3376                                                 Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3377                                         }
3378                                         if (prefix == "")
3379                                         {
3380                                                 prefix = this->GetName();
3381                                         }
3382                                         return this->LocalPong(prefix,params);
3383                                 }
3384                                 else if (command == "VERSION")
3385                                 {
3386                                         return this->ServerVersion(prefix,params);
3387                                 }
3388                                 else if (command == "FHOST")
3389                                 {
3390                                         return this->ChangeHost(prefix,params);
3391                                 }
3392                                 else if (command == "FNAME")
3393                                 {
3394                                         return this->ChangeName(prefix,params);
3395                                 }
3396                                 else if (command == "ADDLINE")
3397                                 {
3398                                         return this->AddLine(prefix,params);
3399                                 }
3400                                 else if (command == "SVSNICK")
3401                                 {
3402                                         if (prefix == "")
3403                                         {
3404                                                 prefix = this->GetName();
3405                                         }
3406                                         return this->ForceNick(prefix,params);
3407                                 }
3408                                 else if (command == "RSQUIT")
3409                                 {
3410                                         return this->RemoteSquit(prefix, params);
3411                                 }
3412                                 else if (command == "IDLE")
3413                                 {
3414                                         return this->Whois(prefix,params);
3415                                 }
3416                                 else if (command == "PUSH")
3417                                 {
3418                                         return this->Push(prefix,params);
3419                                 }
3420                                 else if (command == "TIMESET")
3421                                 {
3422                                         return this->HandleSetTime(prefix, params);
3423                                 }
3424                                 else if (command == "TIME")
3425                                 {
3426                                         return this->Time(prefix,params);
3427                                 }
3428                                 else if ((command == "KICK") && (Utils->IsServer(prefix)))
3429                                 {
3430                                         std::string sourceserv = this->myhost;
3431                                         if (params.size() == 3)
3432                                         {
3433                                                 userrec* user = this->Instance->FindNick(params[1]);
3434                                                 chanrec* chan = this->Instance->FindChan(params[0]);
3435                                                 if (user && chan)
3436                                                 {
3437                                                         if (!chan->ServerKickUser(user, params[2].c_str(), false))
3438                                                                 /* Yikes, the channels gone! */
3439                                                                 delete chan;
3440                                                 }
3441                                         }
3442                                         if (this->InboundServerName != "")
3443                                         {
3444                                                 sourceserv = this->InboundServerName;
3445                                         }
3446                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3447                                 }
3448                                 else if (command == "SVSJOIN")
3449                                 {
3450                                         if (prefix == "")
3451                                         {
3452                                                 prefix = this->GetName();
3453                                         }
3454                                         return this->ServiceJoin(prefix,params);
3455                                 }
3456                                 else if (command == "SQUIT")
3457                                 {
3458                                         if (params.size() == 2)
3459                                         {
3460                                                 this->Squit(Utils->FindServer(params[0]),params[1]);
3461                                         }
3462                                         return true;
3463                                 }
3464                                 else if (command == "OPERNOTICE")
3465                                 {
3466                                         std::string sourceserv = this->myhost;
3467
3468                                         if (this->InboundServerName != "")
3469                                                 sourceserv = this->InboundServerName;
3470
3471                                         if (params.size() >= 1)
3472                                                 Instance->WriteOpers("*** From " + sourceserv + ": " + params[0]);
3473
3474                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3475                                 }
3476                                 else if (command == "MODENOTICE")
3477                                 {
3478                                         std::string sourceserv = this->myhost;
3479                                         if (this->InboundServerName != "")
3480                                                 sourceserv = this->InboundServerName;
3481                                         if (params.size() >= 2)
3482                                         {
3483                                                 Instance->WriteMode(params[0].c_str(), WM_AND, "*** From %s: %s", sourceserv.c_str(), params[1].c_str());
3484                                         }
3485
3486                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3487                                 }
3488                                 else if (command == "SNONOTICE")
3489                                 {
3490                                         std::string sourceserv = this->myhost;
3491                                         if (this->InboundServerName != "")
3492                                                 sourceserv = this->InboundServerName;
3493                                         if (params.size() >= 2)
3494                                         {
3495                                                 Instance->SNO->WriteToSnoMask(*(params[0].c_str()), "From " + sourceserv + ": "+ params[1]);
3496                                         }
3497
3498                                         return Utils->DoOneToAllButSenderRaw(line, sourceserv, prefix, command, params);
3499                                 }
3500                                 else if (command == "ENDBURST")
3501                                 {
3502                                         this->bursting = false;
3503                                         Instance->XLines->apply_lines(APPLY_ZLINES|APPLY_GLINES|APPLY_QLINES);
3504                                         std::string sourceserv = this->myhost;
3505                                         if (this->InboundServerName != "")
3506                                         {
3507                                                 sourceserv = this->InboundServerName;
3508                                         }
3509                                         this->Instance->SNO->WriteToSnoMask('l',"Received end of netburst from \2%s\2",sourceserv.c_str());
3510
3511                                         Event rmode((char*)sourceserv.c_str(), (Module*)Utils->Creator, "new_server");
3512                                         rmode.Send(Instance);
3513
3514                                         return true;
3515                                 }
3516                                 else
3517                                 {
3518                                         // not a special inter-server command.
3519                                         // Emulate the actual user doing the command,
3520                                         // this saves us having a huge ugly parser.
3521                                         userrec* who = this->Instance->FindNick(prefix);
3522                                         std::string sourceserv = this->myhost;
3523                                         if (this->InboundServerName != "")
3524                                         {
3525                                                 sourceserv = this->InboundServerName;
3526                                         }
3527                                         if ((!who) && (command == "MODE"))
3528                                         {
3529                                                 if (Utils->IsServer(prefix))
3530                                                 {
3531                                                         const char* modelist[127];
3532                                                         for (size_t i = 0; i < params.size(); i++)
3533                                                                 modelist[i] = params[i].c_str();
3534
3535                                                         userrec* fake = new userrec(Instance);
3536                                                         fake->SetFd(FD_MAGIC_NUMBER);
3537
3538                                                         this->Instance->SendMode(modelist, params.size(), fake);
3539         
3540                                                         delete fake;
3541
3542                                                         /* Hot potato! pass it on! */
3543                                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3544                                                 }
3545                                         }
3546                                         if (who)
3547                                         {
3548                                                 if ((command == "NICK") && (params.size() > 0))
3549                                                 {
3550                                                         /* On nick messages, check that the nick doesnt
3551                                                          * already exist here. If it does, kill their copy,
3552                                                          * and our copy.
3553                                                          */
3554                                                         userrec* x = this->Instance->FindNick(params[0]);
3555                                                         if ((x) && (x != who))
3556                                                         {
3557                                                                 std::deque<std::string> p;
3558                                                                 p.push_back(params[0]);
3559                                                                 p.push_back("Nickname collision ("+prefix+" -> "+params[0]+")");
3560                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3561                                                                 p.clear();
3562                                                                 p.push_back(prefix);
3563                                                                 p.push_back("Nickname collision");
3564                                                                 Utils->DoOneToMany(this->Instance->Config->ServerName,"KILL",p);
3565                                                                 userrec::QuitUser(this->Instance,x,"Nickname collision ("+prefix+" -> "+params[0]+")");
3566                                                                 userrec* y = this->Instance->FindNick(prefix);
3567                                                                 if (y)
3568                                                                 {
3569                                                                         userrec::QuitUser(this->Instance,y,"Nickname collision");
3570                                                                 }
3571                                                                 return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3572                                                         }
3573                                                 }
3574                                                 // its a user
3575                                                 target = who->server;
3576                                                 const char* strparams[127];
3577                                                 for (unsigned int q = 0; q < params.size(); q++)
3578                                                 {
3579                                                         strparams[q] = params[q].c_str();
3580                                                 }
3581                                                 switch (this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
3582                                                 {
3583                                                         case CMD_INVALID:
3584                                                                 this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
3585                                                                 return false;
3586                                                         break;
3587                                                         case CMD_FAILURE:
3588                                                                 return true;
3589                                                         break;
3590                                                         default:
3591                                                                 /* CMD_SUCCESS and CMD_USER_DELETED fall through here */
3592                                                         break;
3593                                                 }
3594                                         }
3595                                         else
3596                                         {
3597                                                 // its not a user. Its either a server, or somethings screwed up.
3598                                                 if (Utils->IsServer(prefix))
3599                                                 {
3600                                                         target = this->Instance->Config->ServerName;
3601                                                 }
3602                                                 else
3603                                                 {
3604                                                         Instance->Log(DEBUG,"Command with unknown origin '%s'",prefix.c_str());
3605                                                         return true;
3606                                                 }
3607                                         }
3608                                         return Utils->DoOneToAllButSenderRaw(line,sourceserv,prefix,command,params);
3609
3610                                 }
3611                                 return true;
3612                         break;
3613                 }
3614                 return true;
3615         }
3616
3617         virtual std::string GetName()
3618         {
3619                 std::string sourceserv = this->myhost;
3620                 if (this->InboundServerName != "")
3621                 {
3622                         sourceserv = this->InboundServerName;
3623                 }
3624                 return sourceserv;
3625         }
3626
3627         virtual void OnTimeout()
3628         {
3629                 if (this->LinkState == CONNECTING)
3630                 {
3631                         this->Instance->SNO->WriteToSnoMask('l',"CONNECT: Connection to \002"+myhost+"\002 timed out.");
3632                         Link* MyLink = Utils->FindLink(myhost);
3633                         if (MyLink)
3634                                 Utils->DoFailOver(MyLink);
3635                 }
3636         }
3637
3638         virtual void OnClose()
3639         {
3640                 // Connection closed.
3641                 // If the connection is fully up (state CONNECTED)
3642                 // then propogate a netsplit to all peers.
3643                 std::string quitserver = this->myhost;
3644                 if (this->InboundServerName != "")
3645                 {
3646                         quitserver = this->InboundServerName;
3647                 }
3648                 TreeServer* s = Utils->FindServer(quitserver);
3649                 if (s)
3650                 {
3651                         Squit(s,"Remote host closed the connection");
3652                 }
3653
3654                 if (quitserver != "")
3655                         this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str());
3656         }
3657
3658         virtual int OnIncomingConnection(int newsock, char* ip)
3659         {
3660                 /* To prevent anyone from attempting to flood opers/DDoS by connecting to the server port,
3661                  * or discovering if this port is the server port, we don't allow connections from any
3662                  * IPs for which we don't have a link block.
3663                  */
3664                 bool found = false;
3665
3666                 found = (std::find(Utils->ValidIPs.begin(), Utils->ValidIPs.end(), ip) != Utils->ValidIPs.end());
3667                 if (!found)
3668                 {
3669                         for (vector<std::string>::iterator i = Utils->ValidIPs.begin(); i != Utils->ValidIPs.end(); i++)
3670                                 if (irc::sockets::MatchCIDR(ip, (*i).c_str()))
3671                                         found = true;
3672
3673                         if (!found)
3674                         {
3675                                 this->Instance->SNO->WriteToSnoMask('l',"Server connection from %s denied (no link blocks with that IP address)", ip);
3676                                 close(newsock);
3677                                 return false;
3678                         }
3679                 }
3680
3681                 TreeSocket* s = new TreeSocket(this->Utils, this->Instance, newsock, ip, this->Hook);
3682
3683                 s = s; /* Whinge whinge whinge, thats all GCC ever does. */
3684                 return true;
3685         }
3686 };
3687
3688 /** This class is used to resolve server hostnames during /connect and autoconnect.
3689  * As of 1.1, the resolver system is seperated out from InspSocket, so we must do this
3690  * resolver step first ourselves if we need it. This is totally nonblocking, and will
3691  * callback to OnLookupComplete or OnError when completed. Once it has completed we
3692  * will have an IP address which we can then use to continue our connection.
3693  */
3694 class ServernameResolver : public Resolver
3695 {       
3696  private:
3697         /** A copy of the Link tag info for what we're connecting to.
3698          * We take a copy, rather than using a pointer, just in case the
3699          * admin takes the tag away and rehashes while the domain is resolving.
3700          */
3701         Link MyLink;
3702         SpanningTreeUtilities* Utils;
3703  public: 
3704         ServernameResolver(Module* me, SpanningTreeUtilities* Util, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, me), MyLink(x), Utils(Util)
3705         {
3706                 /* Nothing in here, folks */
3707         }
3708
3709         void OnLookupComplete(const std::string &result)
3710         {
3711                 /* Initiate the connection, now that we have an IP to use.
3712                  * Passing a hostname directly to InspSocket causes it to
3713                  * just bail and set its FD to -1.
3714                  */
3715                 TreeServer* CheckDupe = Utils->FindServer(MyLink.Name.c_str());
3716                 if (!CheckDupe) /* Check that nobody tried to connect it successfully while we were resolving */
3717                 {
3718
3719                         if ((!MyLink.Hook.empty()) && (Utils->hooks.find(MyLink.Hook.c_str()) ==  Utils->hooks.end()))
3720                                 return;
3721
3722                         TreeSocket* newsocket = new TreeSocket(this->Utils, ServerInstance, result,MyLink.Port,false,MyLink.Timeout ? MyLink.Timeout : 10,MyLink.Name.c_str(),
3723                                         MyLink.Hook.empty() ? NULL : Utils->hooks[MyLink.Hook.c_str()]);
3724                         if (newsocket->GetFd() > -1)
3725                         {
3726                                 /* We're all OK */
3727                         }
3728                         else
3729                         {
3730                                 /* Something barfed, show the opers */
3731                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",MyLink.Name.c_str(),strerror(errno));
3732                                 delete newsocket;
3733                                 Utils->DoFailOver(&MyLink);
3734                         }
3735                 }
3736         }
3737
3738         void OnError(ResolverError e, const std::string &errormessage)
3739         {
3740                 /* Ooops! */
3741                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: Unable to resolve hostname - %s",MyLink.Name.c_str(),errormessage.c_str());
3742                 Utils->DoFailOver(&MyLink);
3743         }
3744 };
3745
3746 /** Handle resolving of server IPs for the cache
3747  */
3748 class SecurityIPResolver : public Resolver
3749 {
3750  private:
3751         Link MyLink;
3752         SpanningTreeUtilities* Utils;
3753  public:
3754         SecurityIPResolver(Module* me, SpanningTreeUtilities* U, InspIRCd* Instance, const std::string &hostname, Link x) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, me), MyLink(x), Utils(U)
3755         {
3756         }
3757
3758         void OnLookupComplete(const std::string &result)
3759         {
3760                 ServerInstance->Log(DEBUG,"Security IP cache: Adding IP address '%s' for Link '%s'",result.c_str(),MyLink.Name.c_str());
3761                 Utils->ValidIPs.push_back(result);
3762         }
3763
3764         void OnError(ResolverError e, const std::string &errormessage)
3765         {
3766                 ServerInstance->Log(DEBUG,"Could not resolve IP associated with Link '%s': %s",MyLink.Name.c_str(),errormessage.c_str());
3767         }
3768 };
3769
3770 SpanningTreeUtilities::SpanningTreeUtilities(InspIRCd* Instance, ModuleSpanningTree* C) : ServerInstance(Instance), Creator(C)
3771 {
3772         Bindings.clear();
3773
3774         this->TreeRoot = new TreeServer(this, ServerInstance, ServerInstance->Config->ServerName, ServerInstance->Config->ServerDesc);
3775
3776         modulelist* ml = ServerInstance->FindInterface("InspSocketHook");
3777
3778         /* Did we find any modules? */
3779         if (ml)
3780         {
3781                 /* Yes, enumerate them all to find out the hook name */
3782                 for (modulelist::iterator m = ml->begin(); m != ml->end(); m++)
3783                 {
3784                         /* Make a request to it for its name, its implementing
3785                          * InspSocketHook so we know its safe to do this
3786                          */
3787                         std::string name = InspSocketNameRequest((Module*)Creator, *m).Send();
3788                         /* Build a map of them */
3789                         hooks[name.c_str()] = *m;
3790                         hooknames.push_back(name);
3791                         ServerInstance->Log(DEBUG, "Found InspSocketHook interface: '%s' -> '%08x'", name.c_str(), *m);
3792                 }
3793         }
3794
3795         this->ReadConfiguration(true);
3796 }
3797
3798 SpanningTreeUtilities::~SpanningTreeUtilities()
3799 {
3800         for (unsigned int i = 0; i < Bindings.size(); i++)
3801         {
3802                 ServerInstance->Log(DEBUG,"Freeing binding %d of %d",i, Bindings.size());
3803                 ServerInstance->SE->DelFd(Bindings[i]);
3804                 Bindings[i]->Close();
3805                 DELETE(Bindings[i]);
3806         }
3807         ServerInstance->Log(DEBUG,"Freeing connected servers...");
3808         while (TreeRoot->ChildCount())
3809         {
3810                 TreeServer* child_server = TreeRoot->GetChild(0);
3811                 ServerInstance->Log(DEBUG,"Freeing connected server %s", child_server->GetName().c_str());
3812                 if (child_server)
3813                 {
3814                         TreeSocket* sock = child_server->GetSocket();
3815                         ServerInstance->SE->DelFd(sock);
3816                         sock->Close();
3817                         DELETE(sock);
3818                 }
3819         }
3820         delete TreeRoot;
3821 }
3822
3823 void SpanningTreeUtilities::AddThisServer(TreeServer* server, TreeServerList &list)
3824 {
3825         if (list.find(server) == list.end())
3826                 list[server] = server;
3827 }
3828
3829 /** returns a list of DIRECT servernames for a specific channel */
3830 void SpanningTreeUtilities::GetListOfServersForChannel(chanrec* c, TreeServerList &list, char status, const CUList &exempt_list)
3831 {
3832         CUList *ulist;
3833         switch (status)
3834         {
3835                 case '@':
3836                         ulist = c->GetOppedUsers();
3837                 break;
3838                 case '%':
3839                         ulist = c->GetHalfoppedUsers();
3840                 break;
3841                 case '+':
3842                         ulist = c->GetVoicedUsers();
3843                 break;
3844                 default:
3845                         ulist = c->GetUsers();
3846                 break;
3847         }
3848         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
3849         {
3850                 if ((i->second->GetFd() < 0) && (exempt_list.find(i->second) == exempt_list.end()))
3851                 {
3852                         TreeServer* best = this->BestRouteTo(i->second->server);
3853                         if (best)
3854                                 AddThisServer(best,list);
3855                 }
3856         }
3857         return;
3858 }
3859
3860 bool SpanningTreeUtilities::DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, std::deque<std::string> &params)
3861 {
3862         char pfx = 0;
3863         TreeServer* omitroute = this->BestRouteTo(omit);
3864         if ((command == "NOTICE") || (command == "PRIVMSG"))
3865         {
3866                 if (params.size() >= 2)
3867                 {
3868                         /* Prefixes */
3869                         if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
3870                         {
3871                                 pfx = params[0][0];
3872                                 params[0] = params[0].substr(1, params[0].length()-1);
3873                         }
3874                         if ((*(params[0].c_str()) != '#') && (*(params[0].c_str()) != '$'))
3875                         {
3876                                 // special routing for private messages/notices
3877                                 userrec* d = ServerInstance->FindNick(params[0]);
3878                                 if (d)
3879                                 {
3880                                         std::deque<std::string> par;
3881                                         par.push_back(params[0]);
3882                                         par.push_back(":"+params[1]);
3883                                         this->DoOneToOne(prefix,command.c_str(),par,d->server);
3884                                         return true;
3885                                 }
3886                         }
3887                         else if (*(params[0].c_str()) == '$')
3888                         {
3889                                 std::deque<std::string> par;
3890                                 par.push_back(params[0]);
3891                                 par.push_back(":"+params[1]);
3892                                 this->DoOneToAllButSender(prefix,command.c_str(),par,omitroute->GetName());
3893                                 return true;
3894                         }
3895                         else
3896                         {
3897                                 chanrec* c = ServerInstance->FindChan(params[0]);
3898                                 userrec* u = ServerInstance->FindNick(prefix);
3899                                 if (c && u)
3900                                 {
3901                                         CUList elist;
3902                                         TreeServerList list;
3903                                         FOREACH_MOD(I_OnBuildExemptList, OnBuildExemptList((command == "PRIVMSG" ? MSG_PRIVMSG : MSG_NOTICE), c, u, pfx, elist));
3904                                         GetListOfServersForChannel(c,list,pfx,elist);
3905
3906                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
3907                                         {
3908                                                 TreeSocket* Sock = i->second->GetSocket();
3909                                                 if ((Sock) && (i->second->GetName() != omit) && (omitroute != i->second))
3910                                                 {
3911                                                         Sock->WriteLine(data);
3912                                                 }
3913                                         }
3914                                         return true;
3915                                 }
3916                         }
3917                 }
3918         }
3919         unsigned int items =this->TreeRoot->ChildCount();
3920         for (unsigned int x = 0; x < items; x++)
3921         {
3922                 TreeServer* Route = this->TreeRoot->GetChild(x);
3923                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3924                 {
3925                         TreeSocket* Sock = Route->GetSocket();
3926                         if (Sock)
3927                                 Sock->WriteLine(data);
3928                 }
3929         }
3930         return true;
3931 }
3932
3933 bool SpanningTreeUtilities::DoOneToAllButSender(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string omit)
3934 {
3935         TreeServer* omitroute = this->BestRouteTo(omit);
3936         std::string FullLine = ":" + prefix + " " + command;
3937         unsigned int words = params.size();
3938         for (unsigned int x = 0; x < words; x++)
3939         {
3940                 FullLine = FullLine + " " + params[x];
3941         }
3942         unsigned int items = this->TreeRoot->ChildCount();
3943         for (unsigned int x = 0; x < items; x++)
3944         {
3945                 TreeServer* Route = this->TreeRoot->GetChild(x);
3946                 // Send the line IF:
3947                 // The route has a socket (its a direct connection)
3948                 // The route isnt the one to be omitted
3949                 // The route isnt the path to the one to be omitted
3950                 if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
3951                 {
3952                         TreeSocket* Sock = Route->GetSocket();
3953                         if (Sock)
3954                                 Sock->WriteLine(FullLine);
3955                 }
3956         }
3957         return true;
3958 }
3959
3960 bool SpanningTreeUtilities::DoOneToMany(const std::string &prefix, const std::string &command, std::deque<std::string> &params)
3961 {
3962         std::string FullLine = ":" + prefix + " " + command;
3963         unsigned int words = params.size();
3964         for (unsigned int x = 0; x < words; x++)
3965         {
3966                 FullLine = FullLine + " " + params[x];
3967         }
3968         unsigned int items = this->TreeRoot->ChildCount();
3969         for (unsigned int x = 0; x < items; x++)
3970         {
3971                 TreeServer* Route = this->TreeRoot->GetChild(x);
3972                 if (Route && Route->GetSocket())
3973                 {
3974                         TreeSocket* Sock = Route->GetSocket();
3975                         if (Sock)
3976                                 Sock->WriteLine(FullLine);
3977                 }
3978         }
3979         return true;
3980 }
3981
3982 bool SpanningTreeUtilities::DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params)
3983 {
3984         std::string spfx = prefix;
3985         std::string scmd = command;
3986         return this->DoOneToMany(spfx, scmd, params);
3987 }
3988
3989 bool SpanningTreeUtilities::DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit)
3990 {
3991         std::string spfx = prefix;
3992         std::string scmd = command;
3993         return this->DoOneToAllButSender(spfx, scmd, params, omit);
3994 }
3995         
3996 bool SpanningTreeUtilities::DoOneToOne(const std::string &prefix, const std::string &command, std::deque<std::string> &params, std::string target)
3997 {
3998         TreeServer* Route = this->BestRouteTo(target);
3999         if (Route)
4000         {
4001                 std::string FullLine = ":" + prefix + " " + command;
4002                 unsigned int words = params.size();
4003                 for (unsigned int x = 0; x < words; x++)
4004                 {
4005                         FullLine = FullLine + " " + params[x];
4006                 }
4007                 if (Route && Route->GetSocket())
4008                 {
4009                         TreeSocket* Sock = Route->GetSocket();
4010                         if (Sock)
4011                                 Sock->WriteLine(FullLine);
4012                 }
4013                 return true;
4014         }
4015         else
4016         {
4017                 return false;
4018         }
4019 }
4020
4021 void SpanningTreeUtilities::ReadConfiguration(bool rebind)
4022 {
4023         ConfigReader* Conf = new ConfigReader(ServerInstance);
4024         if (rebind)
4025         {
4026                 for (int j =0; j < Conf->Enumerate("bind"); j++)
4027                 {
4028                         std::string Type = Conf->ReadValue("bind","type",j);
4029                         std::string IP = Conf->ReadValue("bind","address",j);
4030                         std::string Port = Conf->ReadValue("bind","port",j);
4031                         std::string transport = Conf->ReadValue("bind","transport",j);
4032                         if (Type == "servers")
4033                         {
4034                                 irc::portparser portrange(Port, false);
4035                                 int portno = -1;
4036                                 while ((portno = portrange.GetToken()))
4037                                 {
4038                                         ServerInstance->Log(DEBUG,"m_spanningtree: Binding server port %s:%d", IP.c_str(), portno);
4039                                         if (IP == "*")
4040                                                 IP = "";
4041
4042                                         if ((!transport.empty()) && (hooks.find(transport.c_str()) ==  hooks.end()))
4043                                         {
4044                                                 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",
4045                                                                 transport.c_str(), IP.c_str(), Port.c_str());
4046                                                 break;
4047                                         }
4048
4049                                         TreeSocket* listener = new TreeSocket(this, ServerInstance, IP.c_str(), portno, true, 10, transport.empty() ? NULL : hooks[transport.c_str()]);
4050                                         if (listener->GetState() == I_LISTENING)
4051                                         {
4052                                                 ServerInstance->Log(DEFAULT,"m_spanningtree: Binding server port %s:%d successful!", IP.c_str(), portno);
4053                                                 Bindings.push_back(listener);
4054                                         }
4055                                         else
4056                                         {
4057                                                 ServerInstance->Log(DEFAULT,"m_spanningtree: Warning: Failed to bind server port %s:%d",IP.c_str(), portno);
4058                                                 listener->Close();
4059                                                 DELETE(listener);
4060                                         }
4061                                         ServerInstance->Log(DEBUG,"Done with this binding");
4062                                 }
4063                         }
4064                 }
4065         }
4066         FlatLinks = Conf->ReadFlag("options","flatlinks",0);
4067         HideULines = Conf->ReadFlag("options","hideulines",0);
4068         AnnounceTSChange = Conf->ReadFlag("options","announcets",0);
4069         EnableTimeSync = !(Conf->ReadFlag("options","notimesync",0));
4070         LinkBlocks.clear();
4071         ValidIPs.clear();
4072         for (int j =0; j < Conf->Enumerate("link"); j++)
4073         {
4074                 Link L;
4075                 std::string Allow = Conf->ReadValue("link","allowmask",j);
4076                 L.Name = (Conf->ReadValue("link","name",j)).c_str();
4077                 L.IPAddr = Conf->ReadValue("link","ipaddr",j);
4078                 L.FailOver = Conf->ReadValue("link","failover",j).c_str();
4079                 L.Port = Conf->ReadInteger("link","port",j,true);
4080                 L.SendPass = Conf->ReadValue("link","sendpass",j);
4081                 L.RecvPass = Conf->ReadValue("link","recvpass",j);
4082                 L.AutoConnect = Conf->ReadInteger("link","autoconnect",j,true);
4083                 L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
4084                 L.Timeout = Conf->ReadInteger("link","timeout",j,true);
4085                 L.Hook = Conf->ReadValue("link", "transport", j);
4086
4087                 if ((!L.Hook.empty()) && (hooks.find(L.Hook.c_str()) ==  hooks.end()))
4088                 {
4089                         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.",
4090                                         L.Hook.c_str(), L.Name.c_str());
4091                         continue;
4092
4093                 }
4094
4095                 L.NextConnectTime = time(NULL) + L.AutoConnect;
4096                 /* Bugfix by brain, do not allow people to enter bad configurations */
4097                 if (L.Name != ServerInstance->Config->ServerName)
4098                 {
4099                         if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
4100                         {
4101                                 ValidIPs.push_back(L.IPAddr);
4102
4103                                 if (Allow.length())
4104                                         ValidIPs.push_back(Allow);
4105
4106                                 /* Needs resolving */
4107                                 insp_inaddr binip;
4108                                 if (insp_aton(L.IPAddr.c_str(), &binip) < 1)
4109                                 {
4110                                         try
4111                                         {
4112                                                 SecurityIPResolver* sr = new SecurityIPResolver((Module*)this->Creator, this, ServerInstance, L.IPAddr, L);
4113                                                 ServerInstance->AddResolver(sr);
4114                                         }
4115                                         catch (ModuleException& e)
4116                                         {
4117                                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
4118                                         }
4119                                 }
4120
4121                                 LinkBlocks.push_back(L);
4122                                 ServerInstance->Log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
4123                         }
4124                         else
4125                         {
4126                                 if (L.IPAddr == "")
4127                                 {
4128                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
4129                                 }
4130                                 else if (L.RecvPass == "")
4131                                 {
4132                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
4133                                 }
4134                                 else if (L.SendPass == "")
4135                                 {
4136                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
4137                                 }
4138                                 else if (L.Name == "")
4139                                 {
4140                                         ServerInstance->Log(DEFAULT,"Invalid configuration, link tag without a name!");
4141                                 }
4142                                 else if (!L.Port)
4143                                 {
4144                                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
4145                                 }
4146                         }
4147                 }
4148                 else
4149                 {
4150                         ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', link tag has the same server name as the local server!",L.Name.c_str());
4151                 }
4152         }
4153         DELETE(Conf);
4154 }
4155
4156 /** To create a timer which recurs every second, we inherit from InspTimer.
4157  * InspTimer is only one-shot however, so at the end of each Tick() we simply
4158  * insert another of ourselves into the pending queue :)
4159  */
4160 class TimeSyncTimer : public InspTimer
4161 {
4162  private:
4163         InspIRCd *Instance;
4164         ModuleSpanningTree *Module;
4165  public:
4166         TimeSyncTimer(InspIRCd *Instance, ModuleSpanningTree *Mod);
4167         virtual void Tick(time_t TIME);
4168 };
4169
4170 HandshakeTimer::HandshakeTimer(InspIRCd* Inst, TreeSocket* s, Link* l, SpanningTreeUtilities* u) : InspTimer(1, time(NULL)), Instance(Inst), sock(s), lnk(l), Utils(u)
4171 {
4172         thefd = sock->GetFd();
4173 }
4174
4175 void HandshakeTimer::Tick(time_t TIME)
4176 {
4177         if (Instance->SE->GetRef(thefd) == sock)
4178         {
4179                 if (sock->GetHook() && InspSocketHSCompleteRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send())
4180                 {
4181                         Instance->Log(DEBUG,"Handshake timer activated, sending SERVER and/or CAPAB");
4182                         InspSocketAttachCertRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send();
4183                         sock->SendCapabilities();
4184                         if (sock->GetLinkState() == CONNECTING)
4185                         {
4186                                 sock->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+lnk->SendPass+" 0 :"+this->Instance->Config->ServerDesc);
4187                         }
4188                 }
4189                 else
4190                 {
4191                         Instance->Timers->AddTimer(new HandshakeTimer(Instance, sock, lnk, Utils));
4192                 }
4193         }
4194 }
4195
4196 class ModuleSpanningTree : public Module
4197 {
4198         int line;
4199         int NumServers;
4200         unsigned int max_local;
4201         unsigned int max_global;
4202         cmd_rconnect* command_rconnect;
4203         SpanningTreeUtilities* Utils;
4204
4205  public:
4206         TimeSyncTimer *SyncTimer;
4207
4208         ModuleSpanningTree(InspIRCd* Me)
4209                 : Module::Module(Me), max_local(0), max_global(0)
4210         {
4211                 ServerInstance->UseInterface("InspSocketHook");
4212
4213                 Utils = new SpanningTreeUtilities(Me, this);
4214
4215                 command_rconnect = new cmd_rconnect(ServerInstance, this, Utils);
4216                 ServerInstance->AddCommand(command_rconnect);
4217
4218                 if (Utils->EnableTimeSync)
4219                 {
4220                         SyncTimer = new TimeSyncTimer(ServerInstance, this);
4221                         ServerInstance->Timers->AddTimer(SyncTimer);
4222                 }
4223                 else
4224                         SyncTimer = NULL;
4225         }
4226
4227         void ShowLinks(TreeServer* Current, userrec* user, int hops)
4228         {
4229                 std::string Parent = Utils->TreeRoot->GetName();
4230                 if (Current->GetParent())
4231                 {
4232                         Parent = Current->GetParent()->GetName();
4233                 }
4234                 for (unsigned int q = 0; q < Current->ChildCount(); q++)
4235                 {
4236                         if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
4237                         {
4238                                 if (*user->oper)
4239                                 {
4240                                          ShowLinks(Current->GetChild(q),user,hops+1);
4241                                 }
4242                         }
4243                         else
4244                         {
4245                                 ShowLinks(Current->GetChild(q),user,hops+1);
4246                         }
4247                 }
4248                 /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
4249                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!*user->oper))
4250                         return;
4251                 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());
4252         }
4253
4254         int CountLocalServs()
4255         {
4256                 return Utils->TreeRoot->ChildCount();
4257         }
4258
4259         int CountServs()
4260         {
4261                 return Utils->serverlist.size();
4262         }
4263
4264         void HandleLinks(const char** parameters, int pcnt, userrec* user)
4265         {
4266                 ShowLinks(Utils->TreeRoot,user,0);
4267                 user->WriteServ("365 %s * :End of /LINKS list.",user->nick);
4268                 return;
4269         }
4270
4271         void HandleLusers(const char** parameters, int pcnt, userrec* user)
4272         {
4273                 unsigned int n_users = ServerInstance->UserCount();
4274
4275                 /* Only update these when someone wants to see them, more efficient */
4276                 if ((unsigned int)ServerInstance->LocalUserCount() > max_local)
4277                         max_local = ServerInstance->LocalUserCount();
4278                 if (n_users > max_global)
4279                         max_global = n_users;
4280
4281                 unsigned int ulined_count = 0;
4282                 unsigned int ulined_local_count = 0;
4283
4284                 /* If ulined are hidden and we're not an oper, count the number of ulined servers hidden,
4285                  * locally and globally (locally means directly connected to us)
4286                  */
4287                 if ((Utils->HideULines) && (!*user->oper))
4288                 {
4289                         for (server_hash::iterator q = Utils->serverlist.begin(); q != Utils->serverlist.end(); q++)
4290                         {
4291                                 if (ServerInstance->ULine(q->second->GetName().c_str()))
4292                                 {
4293                                         ulined_count++;
4294                                         if (q->second->GetParent() == Utils->TreeRoot)
4295                                                 ulined_local_count++;
4296                                 }
4297                         }
4298                 }
4299
4300                 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());
4301                 if (ServerInstance->OperCount())
4302                         user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount());
4303                 if (ServerInstance->UnregisteredUserCount())
4304                         user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->UnregisteredUserCount());
4305                 if (ServerInstance->ChannelCount())
4306                         user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->ChannelCount());
4307                 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());
4308                 user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->LocalUserCount(),max_local);
4309                 user->WriteServ("266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
4310                 return;
4311         }
4312
4313         // WARNING: NOT THREAD SAFE - DONT GET ANY SMART IDEAS.
4314
4315         void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers)
4316         {
4317                 if (line < 128)
4318                 {
4319                         for (int t = 0; t < depth; t++)
4320                         {
4321                                 matrix[line][t] = ' ';
4322                         }
4323
4324                         // For Aligning, we need to work out exactly how deep this thing is, and produce
4325                         // a 'Spacer' String to compensate.
4326                         char spacer[40];
4327
4328                         memset(spacer,' ',40);
4329                         if ((40 - Current->GetName().length() - depth) > 1) {
4330                                 spacer[40 - Current->GetName().length() - depth] = '\0';
4331                         }
4332                         else
4333                         {
4334                                 spacer[5] = '\0';
4335                         }
4336
4337                         float percent;
4338                         char text[80];
4339                         if (ServerInstance->clientlist->size() == 0) {
4340                                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
4341                                 percent = 0;
4342                         }
4343                         else
4344                         {
4345                                 percent = ((float)Current->GetUserCount() / (float)ServerInstance->clientlist->size()) * 100;
4346                         }
4347                         snprintf(text, 80, "%s %s%5d [%5.2f%%]", Current->GetName().c_str(), spacer, Current->GetUserCount(), percent);
4348                         totusers += Current->GetUserCount();
4349                         totservers++;
4350                         strlcpy(&matrix[line][depth],text,80);
4351                         line++;
4352                         for (unsigned int q = 0; q < Current->ChildCount(); q++)
4353                         {
4354                                 if ((Utils->HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
4355                                 {
4356                                         if (*user->oper)
4357                                         {
4358                                                 ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4359                                         }
4360                                 }
4361                                 else
4362                                 {
4363                                         ShowMap(Current->GetChild(q),user,(Utils->FlatLinks && (!*user->oper)) ? depth : depth+2,matrix,totusers,totservers);
4364                                 }
4365                         }
4366                 }
4367         }
4368
4369         int HandleMotd(const char** parameters, int pcnt, userrec* user)
4370         {
4371                 if (pcnt > 0)
4372                 {
4373                         /* Remote MOTD, the server is within the 1st parameter */
4374                         std::deque<std::string> params;
4375                         params.push_back(parameters[0]);
4376
4377                         /* Send it out remotely, generate no reply yet */
4378                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4379                         if (s)
4380                         {
4381                                 Utils->DoOneToOne(user->nick, "MOTD", params, s->GetName());
4382                         }
4383                         else
4384                         {
4385                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4386                         }
4387                         return 1;
4388                 }
4389                 return 0;
4390         }
4391
4392         int HandleAdmin(const char** parameters, int pcnt, userrec* user)
4393         {
4394                 if (pcnt > 0)
4395                 {
4396                         /* Remote ADMIN, the server is within the 1st parameter */
4397                         std::deque<std::string> params;
4398                         params.push_back(parameters[0]);
4399
4400                         /* Send it out remotely, generate no reply yet */
4401                         TreeServer* s = Utils->FindServerMask(parameters[0]);
4402                         if (s)
4403                         {
4404                                 Utils->DoOneToOne(user->nick, "ADMIN", params, s->GetName());
4405                         }
4406                         else
4407                         {
4408                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4409                         }
4410                         return 1;
4411                 }
4412                 return 0;
4413         }
4414
4415         int HandleStats(const char** parameters, int pcnt, userrec* user)
4416         {
4417                 if (pcnt > 1)
4418                 {
4419                         /* Remote STATS, the server is within the 2nd parameter */
4420                         std::deque<std::string> params;
4421                         params.push_back(parameters[0]);
4422                         params.push_back(parameters[1]);
4423                         /* Send it out remotely, generate no reply yet */
4424                         TreeServer* s = Utils->FindServerMask(parameters[1]);
4425                         if (s)
4426                         {
4427                                 params[1] = s->GetName();
4428                                 Utils->DoOneToOne(user->nick, "STATS", params, s->GetName());
4429                         }
4430                         else
4431                         {
4432                                 user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
4433                         }
4434                         return 1;
4435                 }
4436                 return 0;
4437         }
4438
4439         // Ok, prepare to be confused.
4440         // After much mulling over how to approach this, it struck me that
4441         // the 'usual' way of doing a /MAP isnt the best way. Instead of
4442         // keeping track of a ton of ascii characters, and line by line
4443         // under recursion working out where to place them using multiplications
4444         // and divisons, we instead render the map onto a backplane of characters
4445         // (a character matrix), then draw the branches as a series of "L" shapes
4446         // from the nodes. This is not only friendlier on CPU it uses less stack.
4447
4448         void HandleMap(const char** parameters, int pcnt, userrec* user)
4449         {
4450                 // This array represents a virtual screen which we will
4451                 // "scratch" draw to, as the console device of an irc
4452                 // client does not provide for a proper terminal.
4453                 float totusers = 0;
4454                 float totservers = 0;
4455                 char matrix[128][80];
4456                 for (unsigned int t = 0; t < 128; t++)
4457                 {
4458                         matrix[t][0] = '\0';
4459                 }
4460                 line = 0;
4461                 // The only recursive bit is called here.
4462                 ShowMap(Utils->TreeRoot,user,0,matrix,totusers,totservers);
4463                 // Process each line one by one. The algorithm has a limit of
4464                 // 128 servers (which is far more than a spanning tree should have
4465                 // anyway, so we're ok). This limit can be raised simply by making
4466                 // the character matrix deeper, 128 rows taking 10k of memory.
4467                 for (int l = 1; l < line; l++)
4468                 {
4469                         // scan across the line looking for the start of the
4470                         // servername (the recursive part of the algorithm has placed
4471                         // the servers at indented positions depending on what they
4472                         // are related to)
4473                         int first_nonspace = 0;
4474                         while (matrix[l][first_nonspace] == ' ')
4475                         {
4476                                 first_nonspace++;
4477                         }
4478                         first_nonspace--;
4479                         // Draw the `- (corner) section: this may be overwritten by
4480                         // another L shape passing along the same vertical pane, becoming
4481                         // a |- (branch) section instead.
4482                         matrix[l][first_nonspace] = '-';
4483                         matrix[l][first_nonspace-1] = '`';
4484                         int l2 = l - 1;
4485                         // Draw upwards until we hit the parent server, causing possibly
4486                         // other corners (`-) to become branches (|-)
4487                         while ((matrix[l2][first_nonspace-1] == ' ') || (matrix[l2][first_nonspace-1] == '`'))
4488                         {
4489                                 matrix[l2][first_nonspace-1] = '|';
4490                                 l2--;
4491                         }
4492                 }
4493                 // dump the whole lot to the user. This is the easy bit, honest.
4494                 for (int t = 0; t < line; t++)
4495                 {
4496                         user->WriteServ("006 %s :%s",user->nick,&matrix[t][0]);
4497                 }
4498                 float avg_users = totusers / totservers;
4499                 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);
4500         user->WriteServ("007 %s :End of /MAP",user->nick);
4501                 return;
4502         }
4503
4504         int HandleSquit(const char** parameters, int pcnt, userrec* user)
4505         {
4506                 TreeServer* s = Utils->FindServerMask(parameters[0]);
4507                 if (s)
4508                 {
4509                         if (s == Utils->TreeRoot)
4510                         {
4511                                 user->WriteServ("NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick,parameters[0]);
4512                                 return 1;
4513                         }
4514                         TreeSocket* sock = s->GetSocket();
4515                         if (sock)
4516                         {
4517                                 ServerInstance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
4518                                 ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
4519                                 sock->Squit(s,std::string("Server quit by ") + user->GetFullRealHost());
4520                                 ServerInstance->SE->DelFd(sock);
4521                                 sock->Close();
4522                                 delete sock;
4523                         }
4524                         else
4525                         {
4526                                 /* route it */
4527                                 std::deque<std::string> params;
4528                                 params.push_back(parameters[0]);
4529                                 params.push_back(std::string(":Server quit by ") + user->GetFullRealHost());
4530                                 Utils->DoOneToOne(user->nick, "RSQUIT", params, parameters[0]);
4531                         }
4532                 }
4533                 else
4534                 {
4535                          user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick,parameters[0]);
4536                 }
4537                 return 1;
4538         }
4539
4540         int HandleTime(const char** parameters, int pcnt, userrec* user)
4541         {
4542                 if ((IS_LOCAL(user)) && (pcnt))
4543                 {
4544                         TreeServer* found = Utils->FindServerMask(parameters[0]);
4545                         if (found)
4546                         {
4547                                 // we dont' override for local server
4548                                 if (found == Utils->TreeRoot)
4549                                         return 0;
4550                                 
4551                                 std::deque<std::string> params;
4552                                 params.push_back(found->GetName());
4553                                 params.push_back(user->nick);
4554                                 Utils->DoOneToOne(ServerInstance->Config->ServerName,"TIME",params,found->GetName());
4555                         }
4556                         else
4557                         {
4558                                 user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4559                         }
4560                 }
4561                 return 1;
4562         }
4563
4564         int HandleRemoteWhois(const char** parameters, int pcnt, userrec* user)
4565         {
4566                 if ((IS_LOCAL(user)) && (pcnt > 1))
4567                 {
4568                         userrec* remote = ServerInstance->FindNick(parameters[1]);
4569                         if ((remote) && (remote->GetFd() < 0))
4570                         {
4571                                 std::deque<std::string> params;
4572                                 params.push_back(parameters[1]);
4573                                 Utils->DoOneToOne(user->nick,"IDLE",params,remote->server);
4574                                 return 1;
4575                         }
4576                         else if (!remote)
4577                         {
4578                                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[1]);
4579                                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, parameters[1]);
4580                                 return 1;
4581                         }
4582                 }
4583                 return 0;
4584         }
4585
4586         void DoPingChecks(time_t curtime)
4587         {
4588                 for (unsigned int j = 0; j < Utils->TreeRoot->ChildCount(); j++)
4589                 {
4590                         TreeServer* serv = Utils->TreeRoot->GetChild(j);
4591                         TreeSocket* sock = serv->GetSocket();
4592                         if (sock)
4593                         {
4594                                 if (curtime >= serv->NextPingTime())
4595                                 {
4596                                         if (serv->AnsweredLastPing())
4597                                         {
4598                                                 sock->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" PING "+serv->GetName());
4599                                                 serv->SetNextPingTime(curtime + 60);
4600                                         }
4601                                         else
4602                                         {
4603                                                 // they didnt answer, boot them
4604                                                 ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 pinged out",serv->GetName().c_str());
4605                                                 sock->Squit(serv,"Ping timeout");
4606                                                 ServerInstance->SE->DelFd(sock);
4607                                                 sock->Close();
4608                                                 delete sock;
4609                                                 return;
4610                                         }
4611                                 }
4612                         }
4613                 }
4614         }
4615
4616         void ConnectServer(Link* x)
4617         {
4618                 insp_inaddr binip;
4619
4620                 /* Do we already have an IP? If so, no need to resolve it. */
4621                 if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
4622                 {
4623                         /* Gave a hook, but it wasnt one we know */
4624                         if ((!x->Hook.empty()) && (Utils->hooks.find(x->Hook.c_str()) == Utils->hooks.end()))
4625                                 return;
4626
4627                         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()]);
4628                         if (newsocket->GetFd() > -1)
4629                         {
4630                                 /* Handled automatically on success */
4631                         }
4632                         else
4633                         {
4634                                 ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
4635                                 delete newsocket;
4636                                 Utils->DoFailOver(x);
4637                         }
4638                 }
4639                 else
4640                 {
4641                         try
4642                         {
4643                                 ServernameResolver* snr = new ServernameResolver((Module*)this, Utils, ServerInstance,x->IPAddr, *x);
4644                                 ServerInstance->AddResolver(snr);
4645                         }
4646                         catch (ModuleException& e)
4647                         {
4648                                 ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
4649                                 Utils->DoFailOver(x);
4650                         }
4651                 }
4652         }
4653
4654         void AutoConnectServers(time_t curtime)
4655         {
4656                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4657                 {
4658                         if ((x->AutoConnect) && (curtime >= x->NextConnectTime))
4659                         {
4660                                 ServerInstance->Log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
4661                                 x->NextConnectTime = curtime + x->AutoConnect;
4662                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4663                                 if (x->FailOver.length())
4664                                 {
4665                                         TreeServer* CheckFailOver = Utils->FindServer(x->FailOver.c_str());
4666                                         if (CheckFailOver)
4667                                         {
4668                                                 /* The failover for this server is currently a member of the network.
4669                                                  * The failover probably succeeded, where the main link did not.
4670                                                  * Don't try the main link until the failover is gone again.
4671                                                  */
4672                                                 continue;
4673                                         }
4674                                 }
4675                                 if (!CheckDupe)
4676                                 {
4677                                         // an autoconnected server is not connected. Check if its time to connect it
4678                                         ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
4679                                         this->ConnectServer(&(*x));
4680                                 }
4681                         }
4682                 }
4683         }
4684
4685         int HandleVersion(const char** parameters, int pcnt, userrec* user)
4686         {
4687                 // we've already checked if pcnt > 0, so this is safe
4688                 TreeServer* found = Utils->FindServerMask(parameters[0]);
4689                 if (found)
4690                 {
4691                         std::string Version = found->GetVersion();
4692                         user->WriteServ("351 %s :%s",user->nick,Version.c_str());
4693                         if (found == Utils->TreeRoot)
4694                         {
4695                                 ServerInstance->Config->Send005(user);
4696                         }
4697                 }
4698                 else
4699                 {
4700                         user->WriteServ("402 %s %s :No such server",user->nick,parameters[0]);
4701                 }
4702                 return 1;
4703         }
4704         
4705         int HandleConnect(const char** parameters, int pcnt, userrec* user)
4706         {
4707                 for (std::vector<Link>::iterator x = Utils->LinkBlocks.begin(); x < Utils->LinkBlocks.end(); x++)
4708                 {
4709                         if (ServerInstance->MatchText(x->Name.c_str(),parameters[0]))
4710                         {
4711                                 TreeServer* CheckDupe = Utils->FindServer(x->Name.c_str());
4712                                 if (!CheckDupe)
4713                                 {
4714                                         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);
4715                                         ConnectServer(&(*x));
4716                                         return 1;
4717                                 }
4718                                 else
4719                                 {
4720                                         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());
4721                                         return 1;
4722                                 }
4723                         }
4724                 }
4725                 user->WriteServ("NOTICE %s :*** CONNECT: No server matching \002%s\002 could be found in the config file.",user->nick,parameters[0]);
4726                 return 1;
4727         }
4728
4729         void BroadcastTimeSync()
4730         {
4731                 std::deque<std::string> params;
4732                 params.push_back(ConvToStr(ServerInstance->Time(true)));
4733                 Utils->DoOneToMany(Utils->TreeRoot->GetName(), "TIMESET", params);
4734         }
4735
4736         virtual int OnStats(char statschar, userrec* user, string_list &results)
4737         {
4738                 if ((statschar == 'c') || (statschar == 'n'))
4739                 {
4740                         for (unsigned int i = 0; i < Utils->LinkBlocks.size(); i++)
4741                         {
4742                                 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');
4743                                 if (statschar == 'c')
4744                                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 244 "+user->nick+" H * * "+Utils->LinkBlocks[i].Name.c_str());
4745                         }
4746                         results.push_back(std::string(ServerInstance->Config->ServerName)+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
4747                         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);
4748                         return 1;
4749                 }
4750                 return 0;
4751         }
4752
4753         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
4754         {
4755                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
4756                 if (!validated)
4757                         return 0;
4758
4759                 if (command == "CONNECT")
4760                 {
4761                         return this->HandleConnect(parameters,pcnt,user);
4762                 }
4763                 else if (command == "STATS")
4764                 {
4765                         return this->HandleStats(parameters,pcnt,user);
4766                 }
4767                 else if (command == "MOTD")
4768                 {
4769                         return this->HandleMotd(parameters,pcnt,user);
4770                 }
4771                 else if (command == "ADMIN")
4772                 {
4773                         return this->HandleAdmin(parameters,pcnt,user);
4774                 }
4775                 else if (command == "SQUIT")
4776                 {
4777                         return this->HandleSquit(parameters,pcnt,user);
4778                 }
4779                 else if (command == "MAP")
4780                 {
4781                         this->HandleMap(parameters,pcnt,user);
4782                         return 1;
4783                 }
4784                 else if ((command == "TIME") && (pcnt > 0))
4785                 {
4786                         return this->HandleTime(parameters,pcnt,user);
4787                 }
4788                 else if (command == "LUSERS")
4789                 {
4790                         this->HandleLusers(parameters,pcnt,user);
4791                         return 1;
4792                 }
4793                 else if (command == "LINKS")
4794                 {
4795                         this->HandleLinks(parameters,pcnt,user);
4796                         return 1;
4797                 }
4798                 else if (command == "WHOIS")
4799                 {
4800                         if (pcnt > 1)
4801                         {
4802                                 // remote whois
4803                                 return this->HandleRemoteWhois(parameters,pcnt,user);
4804                         }
4805                 }
4806                 else if ((command == "VERSION") && (pcnt > 0))
4807                 {
4808                         this->HandleVersion(parameters,pcnt,user);
4809                         return 1;
4810                 }
4811
4812                 return 0;
4813         }
4814
4815         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
4816         {
4817                 if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
4818                 {
4819                         // this bit of code cleverly routes all module commands
4820                         // to all remote severs *automatically* so that modules
4821                         // can just handle commands locally, without having
4822                         // to have any special provision in place for remote
4823                         // commands and linking protocols.
4824                         std::deque<std::string> params;
4825                         params.clear();
4826                         for (int j = 0; j < pcnt; j++)
4827                         {
4828                                 if (strchr(parameters[j],' '))
4829                                 {
4830                                         params.push_back(":" + std::string(parameters[j]));
4831                                 }
4832                                 else
4833                                 {
4834                                         params.push_back(std::string(parameters[j]));
4835                                 }
4836                         }
4837                         ServerInstance->Log(DEBUG,"Globally route '%s'",command.c_str());
4838                         Utils->DoOneToMany(user->nick,command,params);
4839                 }
4840         }
4841
4842         virtual void OnGetServerDescription(const std::string &servername,std::string &description)
4843         {
4844                 TreeServer* s = Utils->FindServer(servername);
4845                 if (s)
4846                 {
4847                         description = s->GetDesc();
4848                 }
4849         }
4850
4851         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
4852         {
4853                 if (IS_LOCAL(source))
4854                 {
4855                         std::deque<std::string> params;
4856                         params.push_back(dest->nick);
4857                         params.push_back(channel->name);
4858                         Utils->DoOneToMany(source->nick,"INVITE",params);
4859                 }
4860         }
4861
4862         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic)
4863         {
4864                 std::deque<std::string> params;
4865                 params.push_back(chan->name);
4866                 params.push_back(":"+topic);
4867                 Utils->DoOneToMany(user->nick,"TOPIC",params);
4868         }
4869
4870         virtual void OnWallops(userrec* user, const std::string &text)
4871         {
4872                 if (IS_LOCAL(user))
4873                 {
4874                         std::deque<std::string> params;
4875                         params.push_back(":"+text);
4876                         Utils->DoOneToMany(user->nick,"WALLOPS",params);
4877                 }
4878         }
4879
4880         virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
4881         {
4882                 if (target_type == TYPE_USER)
4883                 {
4884                         userrec* d = (userrec*)dest;
4885                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4886                         {
4887                                 std::deque<std::string> params;
4888                                 params.clear();
4889                                 params.push_back(d->nick);
4890                                 params.push_back(":"+text);
4891                                 Utils->DoOneToOne(user->nick,"NOTICE",params,d->server);
4892                         }
4893                 }
4894                 else if (target_type == TYPE_CHANNEL)
4895                 {
4896                         if (IS_LOCAL(user))
4897                         {
4898                                 chanrec *c = (chanrec*)dest;
4899                                 if (c)
4900                                 {
4901                                         std::string cname = c->name;
4902                                         if (status)
4903                                                 cname = status + cname;
4904                                         TreeServerList list;
4905                                         Utils->GetListOfServersForChannel(c,list,status,exempt_list);
4906
4907                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
4908                                         {
4909                                                 TreeSocket* Sock = i->second->GetSocket();
4910                                                 if (Sock)
4911                                                         Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
4912                                         }
4913                                 }
4914                         }
4915                 }
4916                 else if (target_type == TYPE_SERVER)
4917                 {
4918                         if (IS_LOCAL(user))
4919                         {
4920                                 char* target = (char*)dest;
4921                                 std::deque<std::string> par;
4922                                 par.push_back(target);
4923                                 par.push_back(":"+text);
4924                                 Utils->DoOneToMany(user->nick,"NOTICE",par);
4925                         }
4926                 }
4927         }
4928
4929         virtual void OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
4930         {
4931                 if (target_type == TYPE_USER)
4932                 {
4933                         // route private messages which are targetted at clients only to the server
4934                         // which needs to receive them
4935                         userrec* d = (userrec*)dest;
4936                         if ((d->GetFd() < 0) && (IS_LOCAL(user)))
4937                         {
4938                                 std::deque<std::string> params;
4939                                 params.clear();
4940                                 params.push_back(d->nick);
4941                                 params.push_back(":"+text);
4942                                 Utils->DoOneToOne(user->nick,"PRIVMSG",params,d->server);
4943                         }
4944                 }
4945                 else if (target_type == TYPE_CHANNEL)
4946                 {
4947                         if (IS_LOCAL(user))
4948                         {
4949                                 chanrec *c = (chanrec*)dest;
4950                                 if (c)
4951                                 {
4952                                         std::string cname = c->name;
4953                                         if (status)
4954                                                 cname = status + cname;
4955                                         TreeServerList list;
4956                                         Utils->GetListOfServersForChannel(c,list,status,exempt_list);
4957
4958                                         for (TreeServerList::iterator i = list.begin(); i != list.end(); i++)
4959                                         {
4960                                                 TreeSocket* Sock = i->second->GetSocket();
4961                                                 if (Sock)
4962                                                         Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
4963                                         }
4964                                 }
4965                         }
4966                 }
4967                 else if (target_type == TYPE_SERVER)
4968                 {
4969                         if (IS_LOCAL(user))
4970                         {
4971                                 char* target = (char*)dest;
4972                                 std::deque<std::string> par;
4973                                 par.push_back(target);
4974                                 par.push_back(":"+text);
4975                                 Utils->DoOneToMany(user->nick,"PRIVMSG",par);
4976                         }
4977                 }
4978         }
4979
4980         virtual void OnBackgroundTimer(time_t curtime)
4981         {
4982                 AutoConnectServers(curtime);
4983                 DoPingChecks(curtime);
4984         }
4985
4986         virtual void OnUserJoin(userrec* user, chanrec* channel)
4987         {
4988                 // Only do this for local users
4989                 if (IS_LOCAL(user))
4990                 {
4991                         if (channel->GetUserCounter() == 1)
4992                         {
4993                                 std::deque<std::string> params;
4994                                 // set up their permissions and the channel TS with FJOIN.
4995                                 // All users are FJOINed now, because a module may specify
4996                                 // new joining permissions for the user.
4997                                 params.push_back(channel->name);
4998                                 params.push_back(ConvToStr(channel->age));
4999                                 params.push_back(std::string(channel->GetAllPrefixChars(user))+","+std::string(user->nick));
5000                                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FJOIN",params);
5001                                 /* First user in, sync the modes for the channel */
5002                                 params.pop_back();
5003                                 /* This is safe, all inspircd servers default to +nt */
5004                                 params.push_back("+nt");
5005                                 Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",params);
5006                         }
5007                         else
5008                         {
5009                                 std::deque<std::string> params;
5010                                 params.push_back(channel->name);
5011                                 params.push_back(ConvToStr(channel->age));
5012                                 Utils->DoOneToMany(user->nick,"JOIN",params);
5013                         }
5014                 }
5015         }
5016
5017         virtual void OnChangeHost(userrec* user, const std::string &newhost)
5018         {
5019                 // only occurs for local clients
5020                 if (user->registered != REG_ALL)
5021                         return;
5022                 std::deque<std::string> params;
5023                 params.push_back(newhost);
5024                 Utils->DoOneToMany(user->nick,"FHOST",params);
5025         }
5026
5027         virtual void OnChangeName(userrec* user, const std::string &gecos)
5028         {
5029                 // only occurs for local clients
5030                 if (user->registered != REG_ALL)
5031                         return;
5032                 std::deque<std::string> params;
5033                 params.push_back(gecos);
5034                 Utils->DoOneToMany(user->nick,"FNAME",params);
5035         }
5036
5037         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage)
5038         {
5039                 if (IS_LOCAL(user))
5040                 {
5041                         std::deque<std::string> params;
5042                         params.push_back(channel->name);
5043                         if (partmessage != "")
5044                                 params.push_back(":"+partmessage);
5045                         Utils->DoOneToMany(user->nick,"PART",params);
5046                 }
5047         }
5048
5049         virtual void OnUserConnect(userrec* user)
5050         {
5051                 char agestr[MAXBUF];
5052                 if (IS_LOCAL(user))
5053                 {
5054                         std::deque<std::string> params;
5055                         snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
5056                         params.push_back(agestr);
5057                         params.push_back(user->nick);
5058                         params.push_back(user->host);
5059                         params.push_back(user->dhost);
5060                         params.push_back(user->ident);
5061                         params.push_back("+"+std::string(user->FormatModes()));
5062                         params.push_back(user->GetIPString());
5063                         params.push_back(":"+std::string(user->fullname));
5064                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"NICK",params);
5065
5066                         // User is Local, change needs to be reflected!
5067                         TreeServer* SourceServer = Utils->FindServer(user->server);
5068                         if (SourceServer)
5069                         {
5070                                 SourceServer->AddUserCount();
5071                         }
5072
5073                 }
5074         }
5075
5076         virtual void OnUserQuit(userrec* user, const std::string &reason)
5077         {
5078                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
5079                 {
5080                         std::deque<std::string> params;
5081                         params.push_back(":"+reason);
5082                         Utils->DoOneToMany(user->nick,"QUIT",params);
5083                 }
5084                 // Regardless, We need to modify the user Counts..
5085                 TreeServer* SourceServer = Utils->FindServer(user->server);
5086                 if (SourceServer)
5087                 {
5088                         SourceServer->DelUserCount();
5089                 }
5090
5091         }
5092
5093         virtual void OnUserPostNick(userrec* user, const std::string &oldnick)
5094         {
5095                 if (IS_LOCAL(user))
5096                 {
5097                         std::deque<std::string> params;
5098                         params.push_back(user->nick);
5099                         Utils->DoOneToMany(oldnick,"NICK",params);
5100                 }
5101         }
5102
5103         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason)
5104         {
5105                 if ((source) && (IS_LOCAL(source)))
5106                 {
5107                         std::deque<std::string> params;
5108                         params.push_back(chan->name);
5109                         params.push_back(user->nick);
5110                         params.push_back(":"+reason);
5111                         Utils->DoOneToMany(source->nick,"KICK",params);
5112                 }
5113                 else if (!source)
5114                 {
5115                         std::deque<std::string> params;
5116                         params.push_back(chan->name);
5117                         params.push_back(user->nick);
5118                         params.push_back(":"+reason);
5119                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"KICK",params);
5120                 }
5121         }
5122
5123         virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason)
5124         {
5125                 std::deque<std::string> params;
5126                 params.push_back(dest->nick);
5127                 params.push_back(":"+reason);
5128                 Utils->DoOneToMany(source->nick,"KILL",params);
5129         }
5130
5131         virtual void OnRehash(const std::string &parameter)
5132         {
5133                 if (parameter != "")
5134                 {
5135                         std::deque<std::string> params;
5136                         params.push_back(parameter);
5137                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"REHASH",params);
5138                         // check for self
5139                         if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameter))
5140                         {
5141                                 ServerInstance->WriteOpers("*** Remote rehash initiated from server \002%s\002",ServerInstance->Config->ServerName);
5142                                 ServerInstance->RehashServer();
5143                         }
5144                 }
5145                 Utils->ReadConfiguration(false);
5146         }
5147
5148         // note: the protocol does not allow direct umode +o except
5149         // via NICK with 8 params. sending OPERTYPE infers +o modechange
5150         // locally.
5151         virtual void OnOper(userrec* user, const std::string &opertype)
5152         {
5153                 if (IS_LOCAL(user))
5154                 {
5155                         std::deque<std::string> params;
5156                         params.push_back(opertype);
5157                         Utils->DoOneToMany(user->nick,"OPERTYPE",params);
5158                 }
5159         }
5160
5161         void OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason)
5162         {
5163                 if (!source)
5164                 {
5165                         /* Server-set lines */
5166                         char data[MAXBUF];
5167                         snprintf(data,MAXBUF,"%c %s %s %lu %lu :%s", linetype, host.c_str(), ServerInstance->Config->ServerName, (unsigned long)ServerInstance->Time(false),
5168                                         (unsigned long)duration, reason.c_str());
5169                         std::deque<std::string> params;
5170                         params.push_back(data);
5171                         Utils->DoOneToMany(ServerInstance->Config->ServerName, "ADDLINE", params);
5172                 }
5173                 else
5174                 {
5175                         if (IS_LOCAL(source))
5176                         {
5177                                 char type[8];
5178                                 snprintf(type,8,"%cLINE",linetype);
5179                                 std::string stype = type;
5180                                 if (adding)
5181                                 {
5182                                         char sduration[MAXBUF];
5183                                         snprintf(sduration,MAXBUF,"%ld",duration);
5184                                         std::deque<std::string> params;
5185                                         params.push_back(host);
5186                                         params.push_back(sduration);
5187                                         params.push_back(":"+reason);
5188                                         Utils->DoOneToMany(source->nick,stype,params);
5189                                 }
5190                                 else
5191                                 {
5192                                         std::deque<std::string> params;
5193                                         params.push_back(host);
5194                                         Utils->DoOneToMany(source->nick,stype,params);
5195                                 }
5196                         }
5197                 }
5198         }
5199
5200         virtual void OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
5201         {
5202                 OnLine(source,hostmask,true,'G',duration,reason);
5203         }
5204         
5205         virtual void OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask)
5206         {
5207                 OnLine(source,ipmask,true,'Z',duration,reason);
5208         }
5209
5210         virtual void OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask)
5211         {
5212                 OnLine(source,nickmask,true,'Q',duration,reason);
5213         }
5214
5215         virtual void OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask)
5216         {
5217                 OnLine(source,hostmask,true,'E',duration,reason);
5218         }
5219
5220         virtual void OnDelGLine(userrec* source, const std::string &hostmask)
5221         {
5222                 OnLine(source,hostmask,false,'G',0,"");
5223         }
5224
5225         virtual void OnDelZLine(userrec* source, const std::string &ipmask)
5226         {
5227                 OnLine(source,ipmask,false,'Z',0,"");
5228         }
5229
5230         virtual void OnDelQLine(userrec* source, const std::string &nickmask)
5231         {
5232                 OnLine(source,nickmask,false,'Q',0,"");
5233         }
5234
5235         virtual void OnDelELine(userrec* source, const std::string &hostmask)
5236         {
5237                 OnLine(source,hostmask,false,'E',0,"");
5238         }
5239
5240         virtual void OnMode(userrec* user, void* dest, int target_type, const std::string &text)
5241         {
5242                 if ((IS_LOCAL(user)) && (user->registered == REG_ALL))
5243                 {
5244                         if (target_type == TYPE_USER)
5245                         {
5246                                 userrec* u = (userrec*)dest;
5247                                 std::deque<std::string> params;
5248                                 params.push_back(u->nick);
5249                                 params.push_back(text);
5250                                 Utils->DoOneToMany(user->nick,"MODE",params);
5251                         }
5252                         else
5253                         {
5254                                 chanrec* c = (chanrec*)dest;
5255                                 std::deque<std::string> params;
5256                                 params.push_back(c->name);
5257                                 params.push_back(text);
5258                                 Utils->DoOneToMany(user->nick,"MODE",params);
5259                         }
5260                 }
5261         }
5262
5263         virtual void OnSetAway(userrec* user)
5264         {
5265                 if (IS_LOCAL(user))
5266                 {
5267                         std::deque<std::string> params;
5268                         params.push_back(":"+std::string(user->awaymsg));
5269                         Utils->DoOneToMany(user->nick,"AWAY",params);
5270                 }
5271         }
5272
5273         virtual void OnCancelAway(userrec* user)
5274         {
5275                 if (IS_LOCAL(user))
5276                 {
5277                         std::deque<std::string> params;
5278                         params.clear();
5279                         Utils->DoOneToMany(user->nick,"AWAY",params);
5280                 }
5281         }
5282
5283         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline)
5284         {
5285                 TreeSocket* s = (TreeSocket*)opaque;
5286                 if (target)
5287                 {
5288                         if (target_type == TYPE_USER)
5289                         {
5290                                 userrec* u = (userrec*)target;
5291                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+u->nick+" "+ConvToStr(u->age)+" "+modeline);
5292                         }
5293                         else
5294                         {
5295                                 chanrec* c = (chanrec*)target;
5296                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" FMODE "+c->name+" "+ConvToStr(c->age)+" "+modeline);
5297                         }
5298                 }
5299         }
5300
5301         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata)
5302         {
5303                 TreeSocket* s = (TreeSocket*)opaque;
5304                 if (target)
5305                 {
5306                         if (target_type == TYPE_USER)
5307                         {
5308                                 userrec* u = (userrec*)target;
5309                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+u->nick+" "+extname+" :"+extdata);
5310                         }
5311                         else if (target_type == TYPE_CHANNEL)
5312                         {
5313                                 chanrec* c = (chanrec*)target;
5314                                 s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA "+c->name+" "+extname+" :"+extdata);
5315                         }
5316                 }
5317                 if (target_type == TYPE_OTHER)
5318                 {
5319                         s->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" METADATA * "+extname+" :"+extdata);
5320                 }
5321         }
5322
5323         virtual void OnEvent(Event* event)
5324         {
5325                 std::deque<std::string>* params = (std::deque<std::string>*)event->GetData();
5326
5327                 if (event->GetEventID() == "send_metadata")
5328                 {
5329                         if (params->size() < 3)
5330                                 return;
5331                         (*params)[2] = ":" + (*params)[2];
5332                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"METADATA",*params);
5333                 }
5334                 else if (event->GetEventID() == "send_topic")
5335                 {
5336                         if (params->size() < 2)
5337                                 return;
5338                         (*params)[1] = ":" + (*params)[1];
5339                         params->insert(params->begin() + 1,ServerInstance->Config->ServerName);
5340                         params->insert(params->begin() + 1,ConvToStr(ServerInstance->Time(true)));
5341                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FTOPIC",*params);
5342                 }
5343                 else if (event->GetEventID() == "send_mode")
5344                 {
5345                         if (params->size() < 2)
5346                                 return;
5347                         // Insert the TS value of the object, either userrec or chanrec
5348                         time_t ourTS = 0;
5349                         userrec* a = ServerInstance->FindNick((*params)[0]);
5350                         if (a)
5351                         {
5352                                 ourTS = a->age;
5353                         }
5354                         else
5355                         {
5356                                 chanrec* a = ServerInstance->FindChan((*params)[0]);
5357                                 if (a)
5358                                 {
5359                                         ourTS = a->age;
5360                                 }
5361                         }
5362                         params->insert(params->begin() + 1,ConvToStr(ourTS));
5363                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"FMODE",*params);
5364                 }
5365                 else if (event->GetEventID() == "send_mode_explicit")
5366                 {
5367                         if (params->size() < 2)
5368                                 return;
5369                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODE",*params);
5370                 }
5371                 else if (event->GetEventID() == "send_opers")
5372                 {
5373                         if (params->size() < 1)
5374                                 return;
5375                         (*params)[0] = ":" + (*params)[0];
5376                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"OPERNOTICE",*params);
5377                 }
5378                 else if (event->GetEventID() == "send_modeset")
5379                 {
5380                         if (params->size() < 2)
5381                                 return;
5382                         (*params)[1] = ":" + (*params)[1];
5383                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"MODENOTICE",*params);
5384                 }
5385                 else if (event->GetEventID() == "send_snoset")
5386                 {
5387                         if (params->size() < 2)
5388                                 return;
5389                         (*params)[1] = ":" + (*params)[1];
5390                         Utils->DoOneToMany(ServerInstance->Config->ServerName,"SNONOTICE",*params);
5391                 }
5392                 else if (event->GetEventID() == "send_push")
5393                 {
5394                         if (params->size() < 2)
5395                                 return;
5396                         
5397                         userrec *a = ServerInstance->FindNick((*params)[0]);
5398                         
5399                         if (!a)
5400                                 return;
5401                         
5402                         (*params)[1] = ":" + (*params)[1];
5403                         Utils->DoOneToOne(ServerInstance->Config->ServerName, "PUSH", *params, a->server);
5404                 }
5405         }
5406
5407         virtual ~ModuleSpanningTree()
5408         {
5409                 ServerInstance->Log(DEBUG,"Performing unload of spanningtree!");
5410                 /* This will also free the listeners */
5411                 delete Utils;
5412                 if (SyncTimer)
5413                         ServerInstance->Timers->DelTimer(SyncTimer);
5414
5415                 ServerInstance->DoneWithInterface("InspSocketHook");
5416         }
5417
5418         virtual Version GetVersion()
5419         {
5420                 return Version(1,1,0,2,VF_VENDOR,API_VERSION);
5421         }
5422
5423         void Implements(char* List)
5424         {
5425                 List[I_OnPreCommand] = List[I_OnGetServerDescription] = List[I_OnUserInvite] = List[I_OnPostLocalTopicChange] = 1;
5426                 List[I_OnWallops] = List[I_OnUserNotice] = List[I_OnUserMessage] = List[I_OnBackgroundTimer] = 1;
5427                 List[I_OnUserJoin] = List[I_OnChangeHost] = List[I_OnChangeName] = List[I_OnUserPart] = List[I_OnUserConnect] = 1;
5428                 List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
5429                 List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
5430                 List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
5431                 List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = List[I_OnPostCommand] = 1;
5432         }
5433
5434         /* It is IMPORTANT that m_spanningtree is the last module in the chain
5435          * so that any activity it sees is FINAL, e.g. we arent going to send out
5436          * a NICK message before m_cloaking has finished putting the +x on the user,
5437          * etc etc.
5438          * Therefore, we return PRIORITY_LAST to make sure we end up at the END of
5439          * the module call queue.
5440          */
5441         Priority Prioritize()
5442         {
5443                 return PRIORITY_LAST;
5444         }
5445 };
5446
5447 TimeSyncTimer::TimeSyncTimer(InspIRCd *Inst, ModuleSpanningTree *Mod) : InspTimer(43200, Inst->Time()), Instance(Inst), Module(Mod)
5448 {
5449 }
5450
5451 void TimeSyncTimer::Tick(time_t TIME)
5452 {
5453         Module->BroadcastTimeSync();
5454         Module->SyncTimer = new TimeSyncTimer(Instance, Module);
5455         Instance->Timers->AddTimer(Module->SyncTimer);
5456 }
5457
5458 void SpanningTreeUtilities::DoFailOver(Link* x)
5459 {
5460         if (x->FailOver.length())
5461         {
5462                 if (x->FailOver == x->Name)
5463                 {
5464                         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());
5465                         return;
5466                 }
5467                 Link* TryThisOne = this->FindLink(x->FailOver.c_str());
5468                 if (TryThisOne)
5469                 {
5470                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Trying failover link for \002%s\002: \002%s\002...", x->Name.c_str(), TryThisOne->Name.c_str());
5471                         Creator->ConnectServer(TryThisOne);
5472                 }
5473                 else
5474                 {
5475                         ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Invalid failover server specified for server \002%s\002, will not follow!", x->Name.c_str());
5476                 }
5477         }
5478 }
5479
5480 Link* SpanningTreeUtilities::FindLink(const std::string& name)
5481 {
5482         for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
5483         {
5484                 if (ServerInstance->MatchText(x->Name.c_str(), name.c_str()))
5485                 {
5486                         return &(*x);
5487                 }
5488         }
5489         return NULL;
5490 }
5491
5492 class ModuleSpanningTreeFactory : public ModuleFactory
5493 {
5494  public:
5495         ModuleSpanningTreeFactory()
5496         {
5497         }
5498         
5499         ~ModuleSpanningTreeFactory()
5500         {
5501         }
5502         
5503         virtual Module * CreateModule(InspIRCd* Me)
5504         {
5505                 return new ModuleSpanningTree(Me);
5506         }
5507         
5508 };
5509
5510
5511 extern "C" void * init_module( void )
5512 {
5513         return new ModuleSpanningTreeFactory;
5514 }