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