]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree.cpp
Made SANICK not collide the user (theres no need to in the new 1.1 now we have return...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
index b9e15143dbd841ae88011c9d2c59db8f1000840c..c52a167871515a76a59a778706a08de89469c322 100644 (file)
 
 using namespace std;
 
-#include <stdio.h>
-#include <vector>
-#include <deque>
-#include "globals.h"
-#include "inspircd_config.h"
-#include "hash_map.h"
 #include "configreader.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "commands.h"
 #include "commands/cmd_whois.h"
 #include "commands/cmd_stats.h"
 #include "socket.h"
-#include "helperfuncs.h"
 #include "inspircd.h"
 #include "wildcard.h"
-#include "inspstring.h"
-#include "hashcomp.h"
 #include "xline.h"
-#include "typedefs.h"
 #include "cull_list.h"
 #include "aes.h"
 
 #define nspace __gnu_cxx
 
+
+/** If you make a change which breaks the protocol, increment this.
+ * If you  completely change the protocol, completely change the number.
+ */
+const long ProtocolVersion = 1100;
+
 /*
  * The server list in InspIRCd is maintained as two structures
  * which hold the data in different ways. Most of the time, we
@@ -109,7 +104,9 @@ typedef nspace::hash_map<std::string, char*> sid_hash;
 /* More forward declarations */
 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target);
 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> &params, std::string omit);
+bool DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit);
 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> &params);
+bool DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params);
 bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string prefix, irc::string command, std::deque<std::string> &params);
 void ReadConfiguration(bool rebind);
 
@@ -237,7 +234,7 @@ class TreeServer : public classbase
        {
                VersionString = "";
                UserCount = OperCount = 0;
-               this->SetNextPingTime(time(NULL) + 120);
+               this->SetNextPingTime(time(NULL) + 60);
                this->SetPingFlag();
 
                /* find the 'route' for this server (e.g. the one directly connected
@@ -309,7 +306,7 @@ class TreeServer : public classbase
                for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
                {
                        userrec* a = (userrec*)*n;
-                       ServerInstance->Log(DEBUG,"Kill %s fd=%d",a->nick,a->fd);
+                       ServerInstance->Log(DEBUG,"Kill %s fd=%d",a->nick,a->GetFd());
                        if (!IS_LOCAL(a))
                                userrec::QuitUser(ServerInstance,a,reason_s);
                }
@@ -500,17 +497,21 @@ class TreeServer : public classbase
 class Link : public classbase
 {
  public:
-        irc::string Name;
-        std::string IPAddr;
-        int Port;
-        std::string SendPass;
-        std::string RecvPass;
-        unsigned long AutoConnect;
-        time_t NextConnectTime;
-        std::string EncryptionKey;
-        bool HiddenFromStats;
+       irc::string Name;
+       std::string IPAddr;
+       int Port;
+       std::string SendPass;
+       std::string RecvPass;
+       unsigned long AutoConnect;
+       time_t NextConnectTime;
+       std::string EncryptionKey;
+       bool HiddenFromStats;
+       irc::string FailOver;
 };
 
+void DoFailOver(Link* x);
+Link* FindLink(const std::string& name);
+
 /* The usual stuff for inspircd modules,
  * plus the vector of Link classes which we
  * use to store the <link> tags from the config
@@ -593,18 +594,22 @@ class cmd_rconnect : public command_t
                syntax = "<remote-server-mask> <servermask>";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
        {
                user->WriteServ("NOTICE %s :*** RCONNECT: Sending remote connect to \002%s\002 to connect server \002%s\002.",user->nick,parameters[0],parameters[1]);
                /* Is this aimed at our server? */
                if (ServerInstance->MatchText(ServerInstance->Config->ServerName,parameters[0]))
                {
                        /* Yes, initiate the given connect */
-                       ServerInstance->WriteOpers("*** Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick,parameters[0],parameters[1]);
+                       ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick,parameters[0],parameters[1]);
                        const char* para[1];
                        para[0] = parameters[1];
                        Creator->OnPreCommand("CONNECT", para, 1, user, true);
+
+                       return CMD_SUCCESS;
                }
+
+               return CMD_FAILURE;
        }
 };
  
@@ -637,7 +642,9 @@ class TreeSocket : public InspSocket
        AES* ctx_in;
        AES* ctx_out;
        unsigned int keylength;
-       
+       std::string ModuleList;
+       std::map<std::string,std::string> CapKeys;
+
  public:
 
        /* Because most of the I/O gubbins are encapsulated within
@@ -696,12 +703,12 @@ class TreeSocket : public InspSocket
                keylength = key.length();
                if (!(keylength == 16 || keylength == 24 || keylength == 32))
                {
-                       this->Instance->WriteOpers("*** \2ERROR\2: Key length for encryptionkey is not 16, 24 or 32 bytes in length!");
+                       this->Instance->SNO->WriteToSnoMask('l',"\2ERROR\2: Key length for encryptionkey is not 16, 24 or 32 bytes in length!");
                        ServerInstance->Log(DEBUG,"Key length not 16, 24 or 32 characters!");
                }
                else
                {
-                       this->Instance->WriteOpers("*** \2AES\2: Initialized %d bit encryption to server %s",keylength*8,SName.c_str());
+                       this->Instance->SNO->WriteToSnoMask('l',"\2AES\2: Initialized %d bit encryption to server %s",keylength*8,SName.c_str());
                        ctx_in->MakeKey(key.c_str(), "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
                                \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", keylength, keylength);
                        ctx_out->MakeKey(key.c_str(), "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
@@ -724,13 +731,13 @@ class TreeSocket : public InspSocket
                        {
                                if (x->Name == this->myhost)
                                {
-                                       this->Instance->WriteOpers("*** Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] established.");
+                                       this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] established.");
                                        this->SendCapabilities();
                                        if (x->EncryptionKey != "")
                                        {
                                                if (!(x->EncryptionKey.length() == 16 || x->EncryptionKey.length() == 24 || x->EncryptionKey.length() == 32))
                                                {
-                                                       this->Instance->WriteOpers("\2WARNING\2: Your encryption key is NOT 16, 24 or 32 characters in length, encryption will \2NOT\2 be enabled.");
+                                                       this->Instance->SNO->WriteToSnoMask('l',"\2WARNING\2: Your encryption key is NOT 16, 24 or 32 characters in length, encryption will \2NOT\2 be enabled.");
                                                }
                                                else
                                                {
@@ -749,7 +756,7 @@ class TreeSocket : public InspSocket
                 * If that happens the connection hangs here until it's closed. Unlikely
                 * and rather harmless.
                 */
-               this->Instance->WriteOpers("*** Connection to \2"+myhost+"\2 lost link tag(!)");
+               this->Instance->SNO->WriteToSnoMask('l',"Connection to \2"+myhost+"\2 lost link tag(!)");
                return true;
        }
        
@@ -761,7 +768,10 @@ class TreeSocket : public InspSocket
                 */
                if (e == I_ERR_CONNECT)
                {
-                       this->Instance->WriteOpers("*** Connection failed: Connection refused");
+                       this->Instance->SNO->WriteToSnoMask('l',"Connection failed: Connection to \002"+myhost+"\002 refused");
+                       Link* MyLink = FindLink(myhost);
+                       if (MyLink)
+                               DoFailOver(MyLink);
                }
        }
 
@@ -806,7 +816,7 @@ class TreeSocket : public InspSocket
 
                for (int i = 0; i <= this->Instance->GetModuleCount(); i++)
                {
-                       if ((this->Instance->modules[i]->GetVersion().Flags & VF_STATIC) || (this->Instance->modules[i]->GetVersion().Flags & VF_COMMON))
+                       if (this->Instance->modules[i]->GetVersion().Flags & VF_COMMON)
                                modlist.push_back(this->Instance->Config->module_names[i]);
                }
                sort(modlist.begin(),modlist.end());
@@ -821,31 +831,196 @@ class TreeSocket : public InspSocket
        
        void SendCapabilities()
        {
-               this->WriteLine("CAPAB "+MyCapabilities());
+               irc::commasepstream modulelist(MyCapabilities());
+
+               this->WriteLine("CAPAB START");
+
+               /* Send module names, split at 509 length */
+               std::string item = "*";
+               std::string line = "CAPAB MODULES ";
+               while ((item = modulelist.GetToken()) != "")
+               {
+                       if (line.length() + item.length() + 1 > 509)
+                       {
+                               this->WriteLine(line);
+                               line = "CAPAB MODULES ";
+                       }
+
+                       if (line != "CAPAB MODULES ")
+                               line.append(",");
+
+                       line.append(item);
+               }
+               if (line != "CAPAB MODULES ")
+                       this->WriteLine(line);
+
+               int ip6 = 0;
+               int ip6support = 0;
+#ifdef IPV6
+               ip6 = 1;
+#endif
+#ifdef SUPPORT_IP6LINKS
+               ip6support = 1;
+#endif
+               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));
+
+               this->WriteLine("CAPAB END");
+       }
+
+       /* Check a comma seperated list for an item */
+       bool HasItem(const std::string &list, const std::string &item)
+       {
+               irc::commasepstream seplist(list);
+
+               std::string item2 = "*";
+               while ((item2 = seplist.GetToken()) != "")
+               {
+                       if (item2 == item)
+                               return true;
+               }
+
+               return false;
+       }
+
+       /* Isolate and return the elements that are different between two comma seperated lists */
+       std::string ListDifference(const std::string &one, const std::string &two)
+       {
+               irc::commasepstream list_one(one);
+               std::string item = "*";
+               std::string result = "";
+               while ((item = list_one.GetToken()) != "")
+               {
+                       if (!HasItem(two, item))
+                       {
+                               result.append(" ");
+                               result.append(item);
+                       }
+               }
+               return result;
        }
 
        bool Capab(std::deque<std::string> params)
        {
-               if (params.size() != 1)
+               if (params.size() < 1)
                {
-                       this->WriteLine("ERROR :Invalid number of parameters for CAPAB");
+                       this->WriteLine("ERROR :Invalid number of parameters for CAPAB - Mismatched version");
                        return false;
                }
 
-               if (params[0] != this->MyCapabilities())
+               if (params[0] == "START")
                {
-                       std::string quitserver = this->myhost;
-                       if (this->InboundServerName != "")
+                       this->ModuleList = "";
+                       this->CapKeys.clear();
+               }
+               else if (params[0] == "END")
+               {
+                       std::string reason = "";
+                       int ip6support = 0;
+#ifdef SUPPORT_IP6LINKS
+                       ip6support = 1;
+#endif
+                       /* Compare ModuleList and check CapKeys...
+                        * Maybe this could be tidier? -- Brain
+                        */
+                       if ((this->ModuleList != this->MyCapabilities()) && (this->ModuleList.length()))
                        {
-                               quitserver = this->InboundServerName;
+                               std::string diff = ListDifference(this->ModuleList, this->MyCapabilities());
+                               if (!diff.length())
+                               {
+                                       diff = "your server:" + ListDifference(this->MyCapabilities(), this->ModuleList);
+                               }
+                               else
+                               {
+                                       diff = "this server:" + diff;
+                               }
+                               if (diff.length() == 12)
+                                       reason = "Module list in CAPAB is not alphabetically ordered, cannot compare lists.";
+                               else
+                                       reason = "Modules loaded on these servers are not correctly matched, these modules are not loaded on " + diff;
                        }
 
-                       this->Instance->WriteOpers("*** \2ERROR\2: Server '%s' does not have the same set of modules loaded, cannot link!",quitserver.c_str());
-                       this->Instance->WriteOpers("*** Our networked module set is: '%s'",this->MyCapabilities().c_str());
-                       this->Instance->WriteOpers("*** Other server's networked module set is: '%s'",params[0].c_str());
-                       this->Instance->WriteOpers("*** These lists must match exactly on both servers. Please correct these errors, and try again.");
-                       this->WriteLine("ERROR :CAPAB mismatch; My capabilities: '"+this->MyCapabilities()+"'");
-                       return false;
+                       if (((this->CapKeys.find("IP6SUPPORT") == this->CapKeys.end()) && (ip6support)) || ((this->CapKeys.find("IP6SUPPORT") != this->CapKeys.end()) && (this->CapKeys.find("IP6SUPPORT")->second != ConvToStr(ip6support))))
+                               reason = "We don't both support linking to IPV6 servers";
+
+                       if (((this->CapKeys.find("IP6NATIVE") != this->CapKeys.end()) && (this->CapKeys.find("IP6NATIVE")->second == "1")) && (!ip6support))
+                               reason = "The remote server is IPV6 native, and we don't support linking to IPV6 servers";
+
+                       if (((this->CapKeys.find("NICKMAX") == this->CapKeys.end()) || ((this->CapKeys.find("NICKMAX") != this->CapKeys.end()) && (this->CapKeys.find("NICKMAX")->second != ConvToStr(NICKMAX)))))
+                               reason = "Maximum nickname lengths differ or remote nickname length not specified";
+
+                       if (((this->CapKeys.find("PROTOCOL") == this->CapKeys.end()) || ((this->CapKeys.find("PROTOCOL") != this->CapKeys.end()) && (this->CapKeys.find("PROTOCOL")->second != ConvToStr(ProtocolVersion)))))
+                       {
+                               if (this->CapKeys.find("PROTOCOL") != this->CapKeys.end())
+                               {
+                                       reason = "Mismatched protocol versions "+this->CapKeys.find("PROTOCOL")->second+" and "+ConvToStr(ProtocolVersion);
+                               }
+                               else
+                               {
+                                       reason = "Protocol version not specified";
+                               }
+                       }
+
+                       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))))
+                               reason = "We don't both have halfop support enabled/disabled identically";
+
+                       if (((this->CapKeys.find("IDENTMAX") == this->CapKeys.end()) || ((this->CapKeys.find("IDENTMAX") != this->CapKeys.end()) && (this->CapKeys.find("IDENTMAX")->second != ConvToStr(IDENTMAX)))))
+                               reason = "Maximum ident lengths differ or remote ident length not specified";
+
+                       if (((this->CapKeys.find("CHANMAX") == this->CapKeys.end()) || ((this->CapKeys.find("CHANMAX") != this->CapKeys.end()) && (this->CapKeys.find("CHANMAX")->second != ConvToStr(CHANMAX)))))
+                               reason = "Maximum channel lengths differ or remote channel length not specified";
+
+                       if (((this->CapKeys.find("MAXMODES") == this->CapKeys.end()) || ((this->CapKeys.find("MAXMODES") != this->CapKeys.end()) && (this->CapKeys.find("MAXMODES")->second != ConvToStr(MAXMODES)))))
+                               reason = "Maximum modes per line differ or remote modes per line not specified";
+
+                       if (((this->CapKeys.find("MAXQUIT") == this->CapKeys.end()) || ((this->CapKeys.find("MAXQUIT") != this->CapKeys.end()) && (this->CapKeys.find("MAXQUIT")->second != ConvToStr(MAXQUIT)))))
+                               reason = "Maximum quit lengths differ or remote quit length not specified";
+
+                       if (((this->CapKeys.find("MAXTOPIC") == this->CapKeys.end()) || ((this->CapKeys.find("MAXTOPIC") != this->CapKeys.end()) && (this->CapKeys.find("MAXTOPIC")->second != ConvToStr(MAXTOPIC)))))
+                               reason = "Maximum topic lengths differ or remote topic length not specified";
+
+                       if (((this->CapKeys.find("MAXKICK") == this->CapKeys.end()) || ((this->CapKeys.find("MAXKICK") != this->CapKeys.end()) && (this->CapKeys.find("MAXKICK")->second != ConvToStr(MAXKICK)))))
+                               reason = "Maximum kick lengths differ or remote kick length not specified";
+
+                       if (((this->CapKeys.find("MAXGECOS") == this->CapKeys.end()) || ((this->CapKeys.find("MAXGECOS") != this->CapKeys.end()) && (this->CapKeys.find("MAXGECOS")->second != ConvToStr(MAXGECOS)))))
+                               reason = "Maximum GECOS (fullname) lengths differ or remote GECOS length not specified";
+
+                       if (((this->CapKeys.find("MAXAWAY") == this->CapKeys.end()) || ((this->CapKeys.find("MAXAWAY") != this->CapKeys.end()) && (this->CapKeys.find("MAXAWAY")->second != ConvToStr(MAXAWAY)))))
+                               reason = "Maximum awaymessage lengths differ or remote awaymessage length not specified";
+
+                       if (reason.length())
+                       {
+                               this->WriteLine("ERROR :CAPAB negotiation failed: "+reason);
+                               return false;
+                       }
+               }
+               else if ((params[0] == "MODULES") && (params.size() == 2))
+               {
+                       if (!this->ModuleList.length())
+                       {
+                               this->ModuleList.append(params[1]);
+                       }
+                       else
+                       {
+                               this->ModuleList.append(",");
+                               this->ModuleList.append(params[1]);
+                       }
+               }
+               else if ((params[0] == "CAPABILITIES") && (params.size() == 2))
+               {
+                       irc::tokenstream capabs(params[1]);
+                       std::string item = "*";
+                       while ((item = capabs.GetToken()) != "")
+                       {
+                               /* Process each key/value pair */
+                               std::string::size_type equals = item.rfind('=');
+                               if (equals != std::string::npos)
+                               {
+                                       std::string var = item.substr(0, equals);
+                                       std::string value = item.substr(equals+1, item.length());
+                                       this->Instance->Log(DEBUG,"Key='%s' Value='%s'",var.c_str(),value.c_str());
+                                       CapKeys[var] = value;
+                               }
+                       }
                }
 
                return true;
@@ -932,7 +1107,7 @@ class TreeSocket : public InspSocket
                {
                        /* FMODE from a server, create a fake user to receive mode feedback */
                        who = new userrec(this->Instance);
-                       who->fd = FD_MAGIC_NUMBER;
+                       who->SetFd(FD_MAGIC_NUMBER);
                        smode = true;           /* Setting this flag tells us we should free the userrec later */
                        sourceserv = source;    /* Set sourceserv to the actual source string */
                }
@@ -1007,7 +1182,7 @@ class TreeSocket : public InspSocket
                                                        /* We only care about whats being set,
                                                         * not whats being unset
                                                         */
-                                                       mh = this->Instance->ModeGrok->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
+                                                       mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
 
                                                        if ((mh) && (mh->GetNumParams(adding) > 0) && (!mh->IsListMode()))
                                                        {
@@ -1072,7 +1247,7 @@ class TreeSocket : public InspSocket
                                                        }
                                                        else
                                                        {
-                                                               mh = this->Instance->ModeGrok->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
+                                                               mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
 
                                                                if (mh)
                                                                {
@@ -1097,7 +1272,7 @@ class TreeSocket : public InspSocket
                                                }
                                                else
                                                {
-                                                       mh = this->Instance->ModeGrok->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
+                                                       mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
 
                                                        if (mh)
                                                        {
@@ -1159,7 +1334,7 @@ class TreeSocket : public InspSocket
                }
                else
                /* U-lined servers always win regardless of their TS */
-               if ((TS > ourTS) && (!this->Instance->is_uline(source.c_str())))
+               if ((TS > ourTS) && (!this->Instance->ULine(source.c_str())))
                {
                        /* Bounce the mode back to its sender.* We use our lower TS, so the other end
                         * SHOULD accept it, if its clock is right.
@@ -1204,7 +1379,7 @@ class TreeSocket : public InspSocket
                                        break;
                                        default:
                                                /* Find the mode handler for this mode */
-                                               mh = this->Instance->ModeGrok->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
+                                               mh = this->Instance->Modes->FindMode(*x, chan ? MODETYPE_CHANNEL : MODETYPE_USER);
 
                                                /* Got a mode handler?
                                                 * This also prevents us bouncing modes we have no handler for.
@@ -1272,7 +1447,7 @@ class TreeSocket : public InspSocket
                        /* The server was ulined, but something iffy is up with the TS.
                         * Sound the alarm bells!
                         */
-                       if ((this->Instance->is_uline(sourceserv.c_str())) && (TS > ourTS))
+                       if ((this->Instance->ULine(sourceserv.c_str())) && (TS > ourTS))
                        {
                                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());
                        }
@@ -1375,38 +1550,48 @@ class TreeSocket : public InspSocket
 
                ServerInstance->Log(DEBUG,"FJOIN detected, our TS=%lu, their TS=%lu",ourTS,TS);
 
+               irc::tokenstream users(params[2]);
+               std::string item = "*";
+
                /* do this first, so our mode reversals are correctly received by other servers
                 * if there is a TS collision.
                 */
+               params[2] = ":" + params[2];
                DoOneToAllButSender(source,"FJOIN",params,source);
-               
-               for (unsigned int usernum = 2; usernum < params.size(); usernum++)
+               while (item != "")
                {
-                       /* process one channel at a time, applying modes. */
-                       char* usr = (char*)params[usernum].c_str();
+                       item = users.GetToken();
+                       /* process one user at a time, applying modes. */
+                       char* usr = (char*)item.c_str();
                        /* Safety check just to make sure someones not sent us an FJOIN full of spaces
                         * (is this even possible?) */
                        if (usr && *usr)
                        {
-                               char permissions = *usr;
-                               switch (permissions)
+                               char* permissions = usr;
+                               int ntimes = 0;
+                               while ((*permissions) && (*permissions != ','))
                                {
-                                       case '@':
-                                               usr++;
-                                               mode_users[modectr++] = usr;
-                                               strlcat(modestring,"o",MAXBUF);
-                                       break;
-                                       case '%':
-                                               usr++;
-                                               mode_users[modectr++] = usr;
-                                               strlcat(modestring,"h",MAXBUF);
-                                       break;
-                                       case '+':
-                                               usr++;
-                                               mode_users[modectr++] = usr;
-                                               strlcat(modestring,"v",MAXBUF);
-                                       break;
+                                       ModeHandler* mh = ServerInstance->Modes->FindPrefix(*permissions);
+                                       if (mh)
+                                       {
+                                               ntimes++;
+                                               charlcat(modestring,mh->GetModeChar(),MAXBUF);
+                                       }
+                                       else
+                                       {
+                                               this->Instance->WriteOpers("ERROR: We received a user with an unknown prefix '%c'. Closed connection to avoid a desync.",mh->GetPrefix());
+                                               this->WriteLine(std::string("ERROR :Invalid prefix '")+mh->GetModeChar()+"' in FJOIN");
+                                               return false;
+                                       }
+                                       usr++;
+                                       permissions++;
                                }
+                               usr++;
+
+                               /* Did they get any modes? How many times? */
+                               for (int k = 0; k < ntimes; k++)
+                                       mode_users[modectr++] = strdup(usr); // XXX
+
                                who = this->Instance->FindNick(usr);
                                if (who)
                                {
@@ -1416,7 +1601,7 @@ class TreeSocket : public InspSocket
                                                /* theres a mode for this user. push them onto the mode queue, and flush it
                                                 * if there are more than MAXMODES to go.
                                                 */
-                                               if ((ourTS >= TS) || (this->Instance->is_uline(who->server)))
+                                               if ((ourTS >= TS) || (this->Instance->ULine(who->server)))
                                                {
                                                        /* We also always let u-lined clients win, no matter what the TS value */
                                                        ServerInstance->Log(DEBUG,"Our our channel newer than theirs, accepting their modes");
@@ -1448,9 +1633,16 @@ class TreeSocket : public InspSocket
                                                        DoOneToMany(this->Instance->Config->ServerName,"FMODE",params);
                                                }
                                                strcpy(mode_users[1],"+");
+                                               for (unsigned int f = 2; f < modectr; f++)
+                                                       free(mode_users[f]);
                                                modectr = 2;
                                        }
                                }
+                               else
+                               {
+                                       ServerInstance->Log(SPARSE,"Warning! Invalid user %s in FJOIN to channel %s IGNORED", who->nick, channel.c_str());
+                                       continue;
+                               }
                        }
                }
                /* there werent enough modes built up to flush it during FJOIN,
@@ -1484,27 +1676,10 @@ class TreeSocket : public InspSocket
                                }
                                DoOneToMany(this->Instance->Config->ServerName,"FMODE",params);
                        }
-               }
-               return true;
-       }
 
-       bool SyncChannelTS(std::string source, std::deque<std::string> &params)
-       {
-               if (params.size() >= 2)
-               {
-                       chanrec* c = this->Instance->FindChan(params[0]);
-                       if (c)
-                       {
-                               time_t theirTS = atoi(params[1].c_str());
-                               time_t ourTS = c->age;
-                               if (ourTS >= theirTS)
-                               {
-                                       ServerInstance->Log(DEBUG,"Updating timestamp for %s, our timestamp was %lu and theirs is %lu",c->name,ourTS,theirTS);
-                                       c->age = theirTS;
-                               }
-                       }
+                       for (unsigned int f = 2; f < modectr; f++)
+                               free(mode_users[f]);
                }
-               DoOneToAllButSender(this->Instance->Config->ServerName,"SYNCTS",params,source);
                return true;
        }
 
@@ -1525,7 +1700,9 @@ class TreeSocket : public InspSocket
                /* This used to have a pretty craq'y loop doing the same thing,
                 * now we just let the STL do the hard work (more efficiently)
                 */
-               params[5] = params[5].substr(params[5].find_first_not_of('+'));
+               std::string::size_type pos_after_plus = params[5].find_first_not_of('+');
+               if (pos_after_plus != std::string::npos)
+                       params[5] = params[5].substr(pos_after_plus);
                
                const char* tempnick = params[1].c_str();
                ServerInstance->Log(DEBUG,"Introduce client %s!%s@%s",tempnick,params[4].c_str(),params[2].c_str());
@@ -1542,7 +1719,7 @@ class TreeSocket : public InspSocket
 
                userrec* _new = new userrec(this->Instance);
                this->Instance->clientlist[tempnick] = _new;
-               _new->fd = FD_MAGIC_NUMBER;
+               _new->SetFd(FD_MAGIC_NUMBER);
                strlcpy(_new->nick, tempnick,NICKMAX-1);
                strlcpy(_new->host, params[2].c_str(),63);
                strlcpy(_new->dhost, params[3].c_str(),63);
@@ -1555,12 +1732,14 @@ class TreeSocket : public InspSocket
                for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++)
                        _new->modes[(*v)-65] = 1;
 
+#ifdef SUPPORT_IP6LINKS
                if (params[6].find_first_of(":") != std::string::npos)
                        _new->SetSockAddr(AF_INET6, params[6].c_str(), 0);
                else
+#endif
                        _new->SetSockAddr(AF_INET, params[6].c_str(), 0);
 
-               this->Instance->WriteOpers("*** Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
+               this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString());
 
                params[7] = ":" + params[7];
                DoOneToAllButSender(source,"NICK",params,source);
@@ -1599,31 +1778,8 @@ class TreeSocket : public InspSocket
 
                for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
                {
-                       int x = c->GetStatusFlags(i->second);
-                       if ((x & UCMODE_HOP) && (x & UCMODE_OP))
-                       {
-                               specific_halfop.push_back(i->second);
-                       }
-                       if (((x & UCMODE_HOP) || (x & UCMODE_OP)) && (x & UCMODE_VOICE))
-                       {
-                               specific_voice.push_back(i->second);
-                       }
-
-                       const char* n = "";
-                       if (x & UCMODE_OP)
-                       {
-                               n = "@";
-                       }
-                       else if (x & UCMODE_HOP)
-                       {
-                               n = "%";
-                       }
-                       else if (x & UCMODE_VOICE)
-                       {
-                               n = "+";
-                       }
-
-                       size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s", n, i->second->nick);
+                       // The first parameter gets a : before it
+                       size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", c->GetAllPrefixChars(i->second), i->second->nick);
 
                        curlen += ptrlen;
                        ptr += ptrlen;
@@ -1637,32 +1793,11 @@ class TreeSocket : public InspSocket
                                ptr = list + dlen;
                                ptrlen = 0;
                                numusers = 0;
-                               for (unsigned int y = 0; y < specific_voice.size(); y++)
-                               {
-                                       modes.append("v");
-                                       params.append(specific_voice[y]->nick).append(" ");
-                               }
-                               for (unsigned int y = 0; y < specific_halfop.size(); y++)
-                               {
-                                       modes.append("h");
-                                       params.append(specific_halfop[y]->nick).append(" ");
-                               }
                        }
                }
+
                if (numusers)
-               {
                        this->WriteLine(list);
-                       for (unsigned int y = 0; y < specific_voice.size(); y++)
-                       {
-                               modes.append("v");
-                               params.append(specific_voice[y]->nick).append(" ");
-                       }
-                       for (unsigned int y = 0; y < specific_halfop.size(); y++)
-                       {
-                               modes.append("h");
-                               params.append(specific_halfop[y]->nick).append(" ");
-                       }
-               }
 
                 for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
                 {
@@ -1790,7 +1925,7 @@ class TreeSocket : public InspSocket
                std::string endburst = "ENDBURST";
                // Because by the end of the netburst, it  could be gone!
                std::string name = s->GetName();
-               this->Instance->WriteOpers("*** Bursting to \2"+name+"\2.");
+               this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2"+name+"\2.");
                this->WriteLine(burst);
                /* send our version string */
                this->WriteLine(std::string(":")+this->Instance->Config->ServerName+" VERSION :"+this->Instance->GetVersionString());
@@ -1803,7 +1938,7 @@ class TreeSocket : public InspSocket
                this->SendXLines(s);            
                FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)TreeProtocolModule,(void*)this));
                this->WriteLine(endburst);
-               this->Instance->WriteOpers("*** Finished bursting to \2"+name+"\2.");
+               this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
        }
 
        /* This function is called when we receive data from a remote
@@ -1899,11 +2034,100 @@ class TreeSocket : public InspSocket
        {
                if (params.size() < 1)
                        return false;
-               this->Instance->WriteOpers("*** ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
+               this->Instance->SNO->WriteToSnoMask('l',"ERROR from %s: %s",(InboundServerName != "" ? InboundServerName.c_str() : myhost.c_str()),params[0].c_str());
                /* we will return false to cause the socket to close. */
                return false;
        }
 
+       /* remote MOTD. leet, huh? */
+       bool Motd(std::string prefix, std::deque<std::string> &params)
+       {
+               if (params.size() > 0)
+               {
+                       if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
+                       {
+                               /* It's for our server */
+                               string_list results;
+                               userrec* source = this->Instance->FindNick(prefix);
+
+                               if (source)
+                               {
+                                       std::deque<std::string> par;
+                                       par.push_back(prefix);
+                                       par.push_back("");
+
+                                       if (!ServerInstance->Config->MOTD.size())
+                                       {
+                                               par[1] = std::string("::")+ServerInstance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
+                                               DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+                                               return true;
+                                       }
+   
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 375 "+source->nick+" :"+ServerInstance->Config->ServerName+" message of the day";
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+   
+                                       for (unsigned int i = 0; i < ServerInstance->Config->MOTD.size(); i++)
+                                       {
+                                               par[1] = std::string("::")+ServerInstance->Config->ServerName+" 372 "+source->nick+" :- "+ServerInstance->Config->MOTD[i];
+                                               DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+                                       }
+     
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+                               }
+                       }
+                       else
+                       {
+                               /* Pass it on */
+                               userrec* source = this->Instance->FindNick(prefix);
+                               if (source)
+                                       DoOneToOne(prefix, "MOTD", params, params[0]);
+                       }
+               }
+               return true;
+       }
+
+       /* remote ADMIN. leet, huh? */
+       bool Admin(std::string prefix, std::deque<std::string> &params)
+       {
+               if (params.size() > 0)
+               {
+                       if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
+                       {
+                               /* It's for our server */
+                               string_list results;
+                               userrec* source = this->Instance->FindNick(prefix);
+
+                               if (source)
+                               {
+                                       std::deque<std::string> par;
+                                       par.push_back(prefix);
+                                       par.push_back("");
+
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 256 "+source->nick+" :Administrative info for "+ServerInstance->Config->ServerName;
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 257 "+source->nick+" :Name     - "+ServerInstance->Config->AdminName;
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 258 "+source->nick+" :Nickname - "+ServerInstance->Config->AdminNick;
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 258 "+source->nick+" :E-Mail   - "+ServerInstance->Config->AdminEmail;
+                                       DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
+                               }
+                       }
+                       else
+                       {
+                               /* Pass it on */
+                               userrec* source = this->Instance->FindNick(prefix);
+                               if (source)
+                                       DoOneToOne(prefix, "ADMIN", params, params[0]);
+                       }
+               }
+               return true;
+       }
+
        bool Stats(std::string prefix, std::deque<std::string> &params)
        {
                /* Get the reply to a STATS query if it matches this servername,
@@ -2017,7 +2241,7 @@ class TreeSocket : public InspSocket
 
                if (this->Instance->MatchText(this->Instance->Config->ServerName,servermask))
                {
-                       this->Instance->WriteOpers("*** Remote rehash initiated from server \002"+prefix+"\002.");
+                       this->Instance->SNO->WriteToSnoMask('l',"Remote rehash initiated from server \002"+prefix+"\002.");
                        this->Instance->RehashServer();
                        ReadConfiguration(false);
                }
@@ -2193,7 +2417,7 @@ class TreeSocket : public InspSocket
                        break;
                        default:
                                /* Just in case... */
-                               this->Instance->WriteOpers("*** \2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
+                               this->Instance->SNO->WriteToSnoMask('x',"\2WARNING\2: Invalid xline type '"+params[0]+"' sent by server "+prefix+", ignored!");
                                propogate = false;
                        break;
                }
@@ -2203,11 +2427,11 @@ class TreeSocket : public InspSocket
                {
                        if (atoi(params[4].c_str()))
                        {
-                               this->Instance->WriteOpers("*** %s Added %cLINE on %s to expire in %lu seconds (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),atoi(params[4].c_str()),params[5].c_str());
+                               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());
                        }
                        else
                        {
-                               this->Instance->WriteOpers("*** %s Added permenant %cLINE on %s (%s).",prefix.c_str(),*(params[0].c_str()),params[1].c_str(),params[5].c_str());
+                               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());
                        }
                        params[5] = ":" + params[5];
                        DoOneToAllButSender(prefix,"ADDLINE",params,prefix);
@@ -2420,14 +2644,14 @@ class TreeSocket : public InspSocket
                if (CheckDupe)
                {
                        this->WriteLine("ERROR :Server "+servername+" already exists!");
-                       this->Instance->WriteOpers("*** Server connection from \2"+servername+"\2 denied, already exists");
+                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+servername+"\2 denied, already exists");
                        return false;
                }
                TreeServer* Node = new TreeServer(this->Instance,servername,description,ParentOfThis,NULL);
                ParentOfThis->AddChild(Node);
                params[3] = ":" + params[3];
                DoOneToAllButSender(prefix,"SERVER",params,prefix);
-               this->Instance->WriteOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
+               this->Instance->SNO->WriteToSnoMask('l',"Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
                return true;
        }
 
@@ -2444,7 +2668,7 @@ class TreeSocket : public InspSocket
                if (hops)
                {
                        this->WriteLine("ERROR :Server too far away for authentication");
-                       this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
+                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
                        return false;
                }
                std::string description = params[3];
@@ -2456,7 +2680,7 @@ class TreeSocket : public InspSocket
                                if (CheckDupe)
                                {
                                        this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
-                                       this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
+                                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
                                        return false;
                                }
                                // Begin the sync here. this kickstarts the
@@ -2477,7 +2701,7 @@ class TreeSocket : public InspSocket
                        }
                }
                this->WriteLine("ERROR :Invalid credentials");
-               this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, invalid link credentials");
+               this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
                return false;
        }
 
@@ -2494,7 +2718,7 @@ class TreeSocket : public InspSocket
                if (hops)
                {
                        this->WriteLine("ERROR :Server too far away for authentication");
-                       this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
+                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, server is too far away for authentication");
                        return false;
                }
                std::string description = params[3];
@@ -2506,7 +2730,7 @@ class TreeSocket : public InspSocket
                                if (CheckDupe)
                                {
                                        this->WriteLine("ERROR :Server "+sname+" already exists on server "+CheckDupe->GetParent()->GetName()+"!");
-                                       this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
+                                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, already exists on server "+CheckDupe->GetParent()->GetName());
                                        return false;
                                }
                                /* If the config says this link is encrypted, but the remote side
@@ -2516,10 +2740,10 @@ class TreeSocket : public InspSocket
                                if ((x->EncryptionKey != "") && (!this->ctx_in))
                                {
                                        this->WriteLine("ERROR :This link requires AES encryption to be enabled. Plaintext connection refused.");
-                                       this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, remote server did not enable AES.");
+                                       this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, remote server did not enable AES.");
                                        return false;
                                }
-                               this->Instance->WriteOpers("*** Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
+                               this->Instance->SNO->WriteToSnoMask('l',"Verified incoming server connection from \002"+sname+"\002["+(x->HiddenFromStats ? "<hidden>" : this->GetIP())+"] ("+description+")");
                                this->InboundServerName = sname;
                                this->InboundDescription = description;
                                // this is good. Send our details: Our server name and description and hopcount of 0,
@@ -2531,7 +2755,7 @@ class TreeSocket : public InspSocket
                        }
                }
                this->WriteLine("ERROR :Invalid credentials");
-               this->Instance->WriteOpers("*** Server connection from \2"+sname+"\2 denied, invalid link credentials");
+               this->Instance->SNO->WriteToSnoMask('l',"Server connection from \2"+sname+"\2 denied, invalid link credentials");
                return false;
        }
 
@@ -2584,7 +2808,7 @@ class TreeSocket : public InspSocket
                }
                else if ((this->ctx_in) && (command == "AES"))
                {
-                       this->Instance->WriteOpers("*** \2AES\2: Encryption already enabled on this connection yet %s is trying to enable it twice!",params[0].c_str());
+                       this->Instance->SNO->WriteToSnoMask('l',"\2AES\2: Encryption already enabled on this connection yet %s is trying to enable it twice!",params[0].c_str());
                }
 
                switch (this->LinkState)
@@ -2652,13 +2876,13 @@ class TreeSocket : public InspSocket
                                                long delta = THEM-time(NULL);
                                                if ((delta < -600) || (delta > 600))
                                                {
-                                                       this->Instance->WriteOpers("*** \2ERROR\2: Your clocks are out by %d seconds (this is more than ten minutes). Link aborted, \2PLEASE SYNC YOUR CLOCKS!\2",abs(delta));
+                                                       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));
                                                        this->WriteLine("ERROR :Your clocks are out by "+ConvToStr(abs(delta))+" seconds (this is more than ten minutes). Link aborted, PLEASE SYNC YOUR CLOCKS!");
                                                        return false;
                                                }
                                                else if ((delta < -60) || (delta > 60))
                                                {
-                                                       this->Instance->WriteOpers("*** \2WARNING\2: Your clocks are out by %d seconds, please consider synching your clocks.",abs(delta));
+                                                       this->Instance->SNO->WriteToSnoMask('l',"\2WARNING\2: Your clocks are out by %d seconds, please consider synching your clocks.",abs(delta));
                                                }
                                        }
                                        this->LinkState = CONNECTED;
@@ -2727,7 +2951,7 @@ class TreeSocket : public InspSocket
                                         * When there is activity on the socket, reset the ping counter so
                                         * that we're not wasting bandwidth pinging an active server.
                                         */ 
-                                       route_back_again->SetNextPingTime(time(NULL) + 120);
+                                       route_back_again->SetNextPingTime(time(NULL) + 60);
                                        route_back_again->SetPingFlag();
                                }
                                
@@ -2755,6 +2979,14 @@ class TreeSocket : public InspSocket
                                {
                                        return this->Stats(prefix, params);
                                }
+                               else if (command == "MOTD")
+                               {
+                                       return this->Motd(prefix, params);
+                               }
+                               else if (command == "ADMIN")
+                               {
+                                       return this->Admin(prefix, params);
+                               }
                                else if (command == "SERVER")
                                {
                                        return this->RemoteServer(prefix,params);
@@ -2904,7 +3136,7 @@ class TreeSocket : public InspSocket
                                        {
                                                sourceserv = this->InboundServerName;
                                        }
-                                       this->Instance->WriteOpers("*** Received end of netburst from \2%s\2",sourceserv.c_str());
+                                       this->Instance->SNO->WriteToSnoMask('l',"Received end of netburst from \2%s\2",sourceserv.c_str());
                                        return true;
                                }
                                else
@@ -2953,10 +3185,17 @@ class TreeSocket : public InspSocket
                                                {
                                                        strparams[q] = params[q].c_str();
                                                }
-                                               if (!this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
+                                               switch (this->Instance->CallCommandHandler(command.c_str(), strparams, params.size(), who))
                                                {
-                                                       this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
-                                                       return false;
+                                                       case CMD_INVALID:
+                                                               this->WriteLine("ERROR :Unrecognised command '"+std::string(command.c_str())+"' -- possibly loaded mismatched modules");
+                                                               return false;
+                                                       break;
+                                                       case CMD_FAILURE:
+                                                               return true;
+                                                       break;
+                                                       default:
+                                                       break;
                                                }
                                        }
                                        else
@@ -2995,7 +3234,10 @@ class TreeSocket : public InspSocket
        {
                if (this->LinkState == CONNECTING)
                {
-                       this->Instance->WriteOpers("*** CONNECT: Connection to \002"+myhost+"\002 timed out.");
+                       this->Instance->SNO->WriteToSnoMask('l',"CONNECT: Connection to \002"+myhost+"\002 timed out.");
+                       Link* MyLink = FindLink(myhost);
+                       if (MyLink)
+                               DoFailOver(MyLink);
                }
        }
 
@@ -3014,7 +3256,7 @@ class TreeSocket : public InspSocket
                {
                        Squit(s,"Remote host closed the connection");
                }
-               this->Instance->WriteOpers("Server '\2%s\2' closed the connection.",quitserver.c_str());
+               this->Instance->SNO->WriteToSnoMask('l',"Connection to '\2%s\2' failed.",quitserver.c_str());
        }
 
        virtual int OnIncomingConnection(int newsock, char* ip)
@@ -3034,13 +3276,13 @@ class TreeSocket : public InspSocket
 
                        if (!found)
                        {
-                               this->Instance->WriteOpers("Server connection from %s denied (no link blocks with that IP address)", ip);
+                               this->Instance->SNO->WriteToSnoMask('l',"Server connection from %s denied (no link blocks with that IP address)", ip);
                                close(newsock);
                                return false;
                        }
                }
                TreeSocket* s = new TreeSocket(this->Instance, newsock, ip);
-               this->Instance->AddSocket(s);
+               s = s; /* Whinge whinge whinge, thats all GCC ever does. */
                return true;
        }
 };
@@ -3078,13 +3320,13 @@ class ServernameResolver : public Resolver
                        if (newsocket->GetFd() > -1)
                        {
                                /* We're all OK */
-                               ServerInstance->AddSocket(newsocket);
                        }
                        else
                        {
                                /* Something barfed, show the opers */
-                               ServerInstance->WriteOpers("*** CONNECT: Error connecting \002%s\002: %s.",MyLink.Name.c_str(),strerror(errno));
+                               ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",MyLink.Name.c_str(),strerror(errno));
                                delete newsocket;
+                               DoFailOver(&MyLink);
                        }
                }
        }
@@ -3092,7 +3334,8 @@ class ServernameResolver : public Resolver
        void OnError(ResolverError e, const std::string &errormessage)
        {
                /* Ooops! */
-               ServerInstance->WriteOpers("*** CONNECT: Error connecting \002%s\002: Unable to resolve hostname - %s",MyLink.Name.c_str(),errormessage.c_str());
+               ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: Unable to resolve hostname - %s",MyLink.Name.c_str(),errormessage.c_str());
+               DoFailOver(&MyLink);
        }
 };
 
@@ -3135,7 +3378,7 @@ void GetListOfServersForChannel(chanrec* c, std::deque<TreeServer*> &list)
        CUList *ulist = c->GetUsers();
        for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
        {
-               if (i->second->fd < 0)
+               if (i->second->GetFd() < 0)
                {
                        TreeServer* best = BestRouteTo(i->second->server);
                        if (best)
@@ -3206,10 +3449,11 @@ bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string pref
        for (unsigned int x = 0; x < items; x++)
        {
                TreeServer* Route = TreeRoot->GetChild(x);
-               if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
+               if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
                {
                        TreeSocket* Sock = Route->GetSocket();
-                       Sock->WriteLine(data);
+                       if (Sock)
+                               Sock->WriteLine(data);
                }
        }
        return true;
@@ -3232,10 +3476,11 @@ bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std
                // The route has a socket (its a direct connection)
                // The route isnt the one to be omitted
                // The route isnt the path to the one to be omitted
-               if ((Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
+               if ((Route) && (Route->GetSocket()) && (Route->GetName() != omit) && (omitroute != Route))
                {
                        TreeSocket* Sock = Route->GetSocket();
-                       Sock->WriteLine(FullLine);
+                       if (Sock)
+                               Sock->WriteLine(FullLine);
                }
        }
        return true;
@@ -3253,15 +3498,30 @@ bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string
        for (unsigned int x = 0; x < items; x++)
        {
                TreeServer* Route = TreeRoot->GetChild(x);
-               if (Route->GetSocket())
+               if (Route && Route->GetSocket())
                {
                        TreeSocket* Sock = Route->GetSocket();
-                       Sock->WriteLine(FullLine);
+                       if (Sock)
+                               Sock->WriteLine(FullLine);
                }
        }
        return true;
 }
 
+bool DoOneToMany(const char* prefix, const char* command, std::deque<std::string> &params)
+{
+       std::string spfx = prefix;
+       std::string scmd = command;
+       return DoOneToMany(spfx, scmd, params);
+}
+
+bool DoOneToAllButSender(const char* prefix, const char* command, std::deque<std::string> &params, std::string omit)
+{
+       std::string spfx = prefix;
+       std::string scmd = command;
+       return DoOneToAllButSender(spfx, scmd, params, omit);
+}
+
 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> &params, std::string target)
 {
        TreeServer* Route = BestRouteTo(target);
@@ -3273,16 +3533,17 @@ bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string>
                {
                        FullLine = FullLine + " " + params[x];
                }
-               if (Route->GetSocket())
+               if (Route && Route->GetSocket())
                {
                        TreeSocket* Sock = Route->GetSocket();
-                       Sock->WriteLine(FullLine);
+                       if (Sock)
+                               Sock->WriteLine(FullLine);
                }
                return true;
        }
        else
        {
-               return true;
+               return false;
        }
 }
 
@@ -3307,7 +3568,6 @@ void ReadConfiguration(bool rebind)
                                TreeSocket* listener = new TreeSocket(ServerInstance, IP.c_str(),Port,true,10);
                                if (listener->GetState() == I_LISTENING)
                                {
-                                       ServerInstance->AddSocket(listener);
                                        Bindings.push_back(listener);
                                }
                                else
@@ -3329,6 +3589,7 @@ void ReadConfiguration(bool rebind)
                std::string Allow = Conf->ReadValue("link","allowmask",j);
                L.Name = (Conf->ReadValue("link","name",j)).c_str();
                L.IPAddr = Conf->ReadValue("link","ipaddr",j);
+               L.FailOver = Conf->ReadValue("link","failover",j).c_str();
                L.Port = Conf->ReadInteger("link","port",j,true);
                L.SendPass = Conf->ReadValue("link","sendpass",j);
                L.RecvPass = Conf->ReadValue("link","recvpass",j);
@@ -3337,53 +3598,60 @@ void ReadConfiguration(bool rebind)
                L.HiddenFromStats = Conf->ReadFlag("link","hidden",j);
                L.NextConnectTime = time(NULL) + L.AutoConnect;
                /* Bugfix by brain, do not allow people to enter bad configurations */
-               if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
+               if (L.Name != ServerInstance->Config->ServerName)
                {
-                       ValidIPs.push_back(L.IPAddr);
+                       if ((L.IPAddr != "") && (L.RecvPass != "") && (L.SendPass != "") && (L.Name != "") && (L.Port))
+                       {
+                               ValidIPs.push_back(L.IPAddr);
+
+                               if (Allow.length())
+                                       ValidIPs.push_back(Allow);
 
-                       if (Allow.length())
-                               ValidIPs.push_back(Allow);
+                               /* Needs resolving */
+                               insp_inaddr binip;
+                               if (insp_aton(L.IPAddr.c_str(), &binip) < 1)
+                               {
+                                       try
+                                       {
+                                               SecurityIPResolver* sr = new SecurityIPResolver(ServerInstance, L.IPAddr, L);
+                                               ServerInstance->AddResolver(sr);
+                                       }
+                                       catch (ModuleException& e)
+                                       {
+                                               ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
+                                       }
+                               }
 
-                       /* Needs resolving */
-                       insp_inaddr binip;
-                       if (insp_aton(L.IPAddr.c_str(), &binip) < 1)
+                               LinkBlocks.push_back(L);
+                               ServerInstance->Log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
+                       }
+                       else
                        {
-                               try
+                               if (L.IPAddr == "")
+                               {
+                                       ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
+                               }
+                               else if (L.RecvPass == "")
+                               {
+                                       ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
+                               }
+                               else if (L.SendPass == "")
                                {
-                                       SecurityIPResolver* sr = new SecurityIPResolver(ServerInstance, L.IPAddr, L);
-                                       ServerInstance->AddResolver(sr);
+                                       ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
                                }
-                               catch (ModuleException& e)
+                               else if (L.Name == "")
                                {
-                                       ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
+                                       ServerInstance->Log(DEFAULT,"Invalid configuration, link tag without a name!");
+                               }
+                               else if (!L.Port)
+                               {
+                                       ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
                                }
                        }
-
-                       LinkBlocks.push_back(L);
-                       ServerInstance->Log(DEBUG,"m_spanningtree: Read server %s with host %s:%d",L.Name.c_str(),L.IPAddr.c_str(),L.Port);
                }
                else
                {
-                       if (L.IPAddr == "")
-                       {
-                               ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', IP address not defined!",L.Name.c_str());
-                       }
-                       else if (L.RecvPass == "")
-                       {
-                               ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', recvpass not defined!",L.Name.c_str());
-                       }
-                       else if (L.SendPass == "")
-                       {
-                               ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', sendpass not defined!",L.Name.c_str());
-                       }
-                       else if (L.Name == "")
-                       {
-                               ServerInstance->Log(DEFAULT,"Invalid configuration, link tag without a name!");
-                       }
-                       else if (!L.Port)
-                       {
-                               ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', no port specified!",L.Name.c_str());
-                       }
+                       ServerInstance->Log(DEFAULT,"Invalid configuration for server '%s', link tag has the same server name as the local server!",L.Name.c_str());
                }
        }
        DELETE(Conf);
@@ -3427,7 +3695,7 @@ class ModuleSpanningTree : public Module
                }
                for (unsigned int q = 0; q < Current->ChildCount(); q++)
                {
-                       if ((HideULines) && (ServerInstance->is_uline(Current->GetChild(q)->GetName().c_str())))
+                       if ((HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
                        {
                                if (*user->oper)
                                {
@@ -3440,7 +3708,7 @@ class ModuleSpanningTree : public Module
                        }
                }
                /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
-               if ((HideULines) && (ServerInstance->is_uline(Current->GetName().c_str())) && (!*user->oper))
+               if ((HideULines) && (ServerInstance->ULine(Current->GetName().c_str())) && (!*user->oper))
                        return;
                user->WriteServ("364 %s %s %s :%d %s",user->nick,Current->GetName().c_str(),(FlatLinks && (!*user->oper)) ? ServerInstance->Config->ServerName : Parent.c_str(),(FlatLinks && (!*user->oper)) ? 0 : hops,Current->GetDesc().c_str());
        }
@@ -3464,23 +3732,23 @@ class ModuleSpanningTree : public Module
 
        void HandleLusers(const char** parameters, int pcnt, userrec* user)
        {
-               unsigned int n_users = ServerInstance->usercnt();
+               unsigned int n_users = ServerInstance->UserCount();
 
                /* Only update these when someone wants to see them, more efficient */
-               if ((unsigned int)ServerInstance->local_count() > max_local)
-                       max_local = ServerInstance->local_count();
+               if ((unsigned int)ServerInstance->LocalUserCount() > max_local)
+                       max_local = ServerInstance->LocalUserCount();
                if (n_users > max_global)
                        max_global = n_users;
 
-               user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-ServerInstance->usercount_invisible(),ServerInstance->usercount_invisible(),this->CountServs());
-               if (ServerInstance->usercount_opers())
-                       user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->usercount_opers());
-               if (ServerInstance->usercount_unknown())
-                       user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->usercount_unknown());
-               if (ServerInstance->chancount())
-                       user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->chancount());
-               user->WriteServ("254 %s :I have %d clients and %d servers",user->nick,ServerInstance->local_count(),this->CountLocalServs());
-               user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->local_count(),max_local);
+               user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-ServerInstance->InvisibleUserCount(),ServerInstance->InvisibleUserCount(),this->CountServs());
+               if (ServerInstance->OperCount())
+                       user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount());
+               if (ServerInstance->UnregisteredUserCount())
+                       user->WriteServ("253 %s %d :unknown connections",user->nick,ServerInstance->UnregisteredUserCount());
+               if (ServerInstance->ChannelCount())
+                       user->WriteServ("254 %s %d :channels formed",user->nick,ServerInstance->ChannelCount());
+               user->WriteServ("254 %s :I have %d clients and %d servers",user->nick,ServerInstance->LocalUserCount(),this->CountLocalServs());
+               user->WriteServ("265 %s :Current Local Users: %d  Max: %d",user->nick,ServerInstance->LocalUserCount(),max_local);
                user->WriteServ("266 %s :Current Global Users: %d  Max: %d",user->nick,n_users,max_global);
                return;
        }
@@ -3526,7 +3794,7 @@ class ModuleSpanningTree : public Module
                        line++;
                        for (unsigned int q = 0; q < Current->ChildCount(); q++)
                        {
-                               if ((HideULines) && (ServerInstance->is_uline(Current->GetChild(q)->GetName().c_str())))
+                               if ((HideULines) && (ServerInstance->ULine(Current->GetChild(q)->GetName().c_str())))
                                {
                                        if (*user->oper)
                                        {
@@ -3541,6 +3809,52 @@ class ModuleSpanningTree : public Module
                }
        }
 
+       int HandleMotd(const char** parameters, int pcnt, userrec* user)
+       {
+               if (pcnt > 0)
+               {
+                       /* Remote MOTD, the server is within the 1st parameter */
+                       std::deque<std::string> params;
+                       params.push_back(parameters[0]);
+
+                       /* Send it out remotely, generate no reply yet */
+                       TreeServer* s = FindServerMask(parameters[0]);
+                       if (s)
+                       {
+                               DoOneToOne(user->nick, "MOTD", params, s->GetName());
+                       }
+                       else
+                       {
+                               user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
+                       }
+                       return 1;
+               }
+               return 0;
+       }
+
+       int HandleAdmin(const char** parameters, int pcnt, userrec* user)
+       {
+               if (pcnt > 0)
+               {
+                       /* Remote ADMIN, the server is within the 1st parameter */
+                       std::deque<std::string> params;
+                       params.push_back(parameters[0]);
+
+                       /* Send it out remotely, generate no reply yet */
+                       TreeServer* s = FindServerMask(parameters[0]);
+                       if (s)
+                       {
+                               DoOneToOne(user->nick, "ADMIN", params, s->GetName());
+                       }
+                       else
+                       {
+                               user->WriteServ( "402 %s %s :No such server", user->nick, parameters[0]);
+                       }
+                       return 1;
+               }
+               return 0;
+       }
+
        int HandleStats(const char** parameters, int pcnt, userrec* user)
        {
                if (pcnt > 1)
@@ -3644,9 +3958,11 @@ class ModuleSpanningTree : public Module
                        if (sock)
                        {
                                ServerInstance->Log(DEBUG,"Splitting server %s",s->GetName().c_str());
-                               ServerInstance->WriteOpers("*** SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
+                               ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0],user->nick);
                                sock->Squit(s,"Server quit by "+std::string(user->nick)+"!"+std::string(user->ident)+"@"+std::string(user->host));
-                               ServerInstance->RemoveSocket(sock);
+                               ServerInstance->SE->DelFd(sock);
+                               sock->Close();
+                               delete sock;
                        }
                        else
                        {
@@ -3689,7 +4005,7 @@ class ModuleSpanningTree : public Module
                if ((IS_LOCAL(user)) && (pcnt > 1))
                {
                        userrec* remote = ServerInstance->FindNick(parameters[1]);
-                       if ((remote) && (remote->fd < 0))
+                       if ((remote) && (remote->GetFd() < 0))
                        {
                                std::deque<std::string> params;
                                params.push_back(parameters[1]);
@@ -3719,14 +4035,16 @@ class ModuleSpanningTree : public Module
                                        if (serv->AnsweredLastPing())
                                        {
                                                sock->WriteLine(std::string(":")+ServerInstance->Config->ServerName+" PING "+serv->GetName());
-                                               serv->SetNextPingTime(curtime + 120);
+                                               serv->SetNextPingTime(curtime + 60);
                                        }
                                        else
                                        {
                                                // they didnt answer, boot them
-                                               ServerInstance->WriteOpers("*** Server \002%s\002 pinged out",serv->GetName().c_str());
+                                               ServerInstance->SNO->WriteToSnoMask('l',"Server \002%s\002 pinged out",serv->GetName().c_str());
                                                sock->Squit(serv,"Ping timeout");
-                                               ServerInstance->RemoveSocket(sock);
+                                               ServerInstance->SE->DelFd(sock);
+                                               sock->Close();
+                                               delete sock;
                                                return;
                                        }
                                }
@@ -3734,6 +4052,74 @@ class ModuleSpanningTree : public Module
                }
        }
 
+       void ConnectServer(Link* x)
+       {
+               insp_inaddr binip;
+
+               /* Do we already have an IP? If so, no need to resolve it. */
+               if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
+               {
+                       TreeSocket* newsocket = new TreeSocket(ServerInstance, x->IPAddr,x->Port,false,10,x->Name.c_str());
+                       if (newsocket->GetFd() > -1)
+                       {
+                               /* Handled automatically on success */
+                       }
+                       else
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('l',"CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
+                               delete newsocket;
+                               this->DoFailOver(x);
+                       }
+               }
+               else
+               {
+                       try
+                       {
+                               ServernameResolver* snr = new ServernameResolver(ServerInstance,x->IPAddr, *x);
+                               ServerInstance->AddResolver(snr);
+                       }
+                       catch (ModuleException& e)
+                       {
+                               ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
+                               this->DoFailOver(x);
+                       }
+               }
+       }
+
+       void DoFailOver(Link* x)
+       {
+               if (x->FailOver.length())
+               {
+                       if (x->FailOver == x->Name)
+                       {
+                               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());
+                               return;
+                       }
+                       Link* TryThisOne = this->FindLink(x->FailOver.c_str());
+                       if (TryThisOne)
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Trying failover link for \002%s\002: \002%s\002...", x->Name.c_str(), TryThisOne->Name.c_str());
+                               ConnectServer(TryThisOne);
+                       }
+                       else
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('l',"FAILOVER: Invalid failover server specified for server \002%s\002, will not follow!", x->Name.c_str());
+                       }
+               }
+       }
+
+       Link* FindLink(const std::string& name)
+       {
+               for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
+               {
+                       if (ServerInstance->MatchText(x->Name.c_str(), name.c_str()))
+                       {
+                               return &(*x);
+                       }
+               }
+               return NULL;
+       }
+
        void AutoConnectServers(time_t curtime)
        {
                for (std::vector<Link>::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++)
@@ -3743,40 +4129,23 @@ class ModuleSpanningTree : public Module
                                ServerInstance->Log(DEBUG,"Auto-Connecting %s",x->Name.c_str());
                                x->NextConnectTime = curtime + x->AutoConnect;
                                TreeServer* CheckDupe = FindServer(x->Name.c_str());
-                               if (!CheckDupe)
+                               if (x->FailOver.length())
                                {
-                                       // an autoconnected server is not connected. Check if its time to connect it
-                                       ServerInstance->WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
-
-                                       insp_inaddr binip;
-
-                                       /* Do we already have an IP? If so, no need to resolve it. */
-                                       if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
+                                       TreeServer* CheckFailOver = FindServer(x->FailOver.c_str());
+                                       if (CheckFailOver)
                                        {
-                                               TreeSocket* newsocket = new TreeSocket(ServerInstance, x->IPAddr,x->Port,false,10,x->Name.c_str());
-                                               if (newsocket->GetFd() > -1)
-                                               {
-                                                       ServerInstance->AddSocket(newsocket);
-                                               }
-                                               else
-                                               {
-                                                       ServerInstance->WriteOpers("*** AUTOCONNECT: Error autoconnecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
-                                                       delete newsocket;
-                                               }
-                                       }
-                                       else
-                                       {
-                                               try
-                                               {
-                                                       ServernameResolver* snr = new ServernameResolver(ServerInstance,x->IPAddr, *x);
-                                                       ServerInstance->AddResolver(snr);
-                                               }
-                                               catch (ModuleException& e)
-                                               {
-                                                       ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
-                                               }
+                                               /* The failover for this server is currently a member of the network.
+                                                * The failover probably succeeded, where the main link did not.
+                                                * Don't try the main link until the failover is gone again.
+                                                */
+                                               continue;
                                        }
-
+                               }
+                               if (!CheckDupe)
+                               {
+                                       // an autoconnected server is not connected. Check if its time to connect it
+                                       ServerInstance->SNO->WriteToSnoMask('l',"AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect);
+                                       this->ConnectServer(&(*x));
                                }
                        }
                }
@@ -3829,34 +4198,7 @@ class ModuleSpanningTree : public Module
                                if (!CheckDupe)
                                {
                                        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);
-                                       insp_inaddr binip;
-
-                                       /* Do we already have an IP? If so, no need to resolve it. */
-                                       if (insp_aton(x->IPAddr.c_str(), &binip) > 0)
-                                       {
-                                               TreeSocket* newsocket = new TreeSocket(ServerInstance,x->IPAddr,x->Port,false,10,x->Name.c_str());
-                                               if (newsocket->GetFd() > -1)
-                                               {
-                                                       ServerInstance->AddSocket(newsocket);
-                                               }
-                                               else
-                                               {
-                                                       ServerInstance->WriteOpers("*** CONNECT: Error connecting \002%s\002: %s.",x->Name.c_str(),strerror(errno));
-                                                       delete newsocket;
-                                               }
-                                       }
-                                       else
-                                       {
-                                               try
-                                               {
-                                                       ServernameResolver* snr = new ServernameResolver(ServerInstance, x->IPAddr, *x);
-                                                       ServerInstance->AddResolver(snr);
-                                               }
-                                               catch (ModuleException& e)
-                                               {
-                                                       ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
-                                               }
-                                       }
+                                       ConnectServer(&(*x));
                                        return 1;
                                }
                                else
@@ -3880,7 +4222,7 @@ class ModuleSpanningTree : public Module
                                results.push_back(std::string(ServerInstance->Config->ServerName)+" 244 "+user->nick+" H * * "+LinkBlocks[i].Name.c_str());
                        }
                        results.push_back(std::string(ServerInstance->Config->ServerName)+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
-                       ServerInstance->WriteOpers("*** Notice: %s '%c' requested by %s (%s@%s)",(!strcmp(user->server,ServerInstance->Config->ServerName) ? "Stats" : "Remote stats"),statschar,user->nick,user->ident,user->host);
+                       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);
                        return 1;
                }
                return 0;
@@ -3900,6 +4242,14 @@ class ModuleSpanningTree : public Module
                {
                        return this->HandleStats(parameters,pcnt,user);
                }
+               else if (command == "MOTD")
+               {
+                       return this->HandleMotd(parameters,pcnt,user);
+               }
+               else if (command == "ADMIN")
+               {
+                       return this->HandleAdmin(parameters,pcnt,user);
+               }
                else if (command == "SQUIT")
                {
                        return this->HandleSquit(parameters,pcnt,user);
@@ -3936,7 +4286,13 @@ class ModuleSpanningTree : public Module
                        this->HandleVersion(parameters,pcnt,user);
                        return 1;
                }
-               else if (ServerInstance->IsValidModuleCommand(command, pcnt, user))
+
+               return 0;
+       }
+
+       virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result)
+       {
+               if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
                {
                        // this bit of code cleverly routes all module commands
                        // to all remote severs *automatically* so that modules
@@ -3959,7 +4315,6 @@ class ModuleSpanningTree : public Module
                        ServerInstance->Log(DEBUG,"Globally route '%s'",command.c_str());
                        DoOneToMany(user->nick,command,params);
                }
-               return 0;
        }
 
        virtual void OnGetServerDescription(const std::string &servername,std::string &description)
@@ -4005,7 +4360,7 @@ class ModuleSpanningTree : public Module
                if (target_type == TYPE_USER)
                {
                        userrec* d = (userrec*)dest;
-                       if ((d->fd < 0) && (IS_LOCAL(user)))
+                       if ((d->GetFd() < 0) && (IS_LOCAL(user)))
                        {
                                std::deque<std::string> params;
                                params.clear();
@@ -4019,17 +4374,20 @@ class ModuleSpanningTree : public Module
                        if (IS_LOCAL(user))
                        {
                                chanrec *c = (chanrec*)dest;
-                               std::string cname = c->name;
-                               if (status)
-                                       cname = status + cname;
-                               std::deque<TreeServer*> list;
-                               GetListOfServersForChannel(c,list);
-                               unsigned int ucount = list.size();
-                               for (unsigned int i = 0; i < ucount; i++)
+                               if (c)
                                {
-                                       TreeSocket* Sock = list[i]->GetSocket();
-                                       if (Sock)
-                                               Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
+                                       std::string cname = c->name;
+                                       if (status)
+                                               cname = status + cname;
+                                       std::deque<TreeServer*> list;
+                                       GetListOfServersForChannel(c,list);
+                                       unsigned int ucount = list.size();
+                                       for (unsigned int i = 0; i < ucount; i++)
+                                       {
+                                               TreeSocket* Sock = list[i]->GetSocket();
+                                               if (Sock)
+                                                       Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+cname+" :"+text);
+                                       }
                                }
                        }
                }
@@ -4053,7 +4411,7 @@ class ModuleSpanningTree : public Module
                        // route private messages which are targetted at clients only to the server
                        // which needs to receive them
                        userrec* d = (userrec*)dest;
-                       if ((d->fd < 0) && (IS_LOCAL(user)))
+                       if ((d->GetFd() < 0) && (IS_LOCAL(user)))
                        {
                                std::deque<std::string> params;
                                params.clear();
@@ -4067,17 +4425,20 @@ class ModuleSpanningTree : public Module
                        if (IS_LOCAL(user))
                        {
                                chanrec *c = (chanrec*)dest;
-                               std::string cname = c->name;
-                               if (status)
-                                       cname = status + cname;
-                               std::deque<TreeServer*> list;
-                               GetListOfServersForChannel(c,list);
-                               unsigned int ucount = list.size();
-                               for (unsigned int i = 0; i < ucount; i++)
+                               if (c)
                                {
-                                       TreeSocket* Sock = list[i]->GetSocket();
-                                       if (Sock)
-                                               Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
+                                       std::string cname = c->name;
+                                       if (status)
+                                               cname = status + cname;
+                                       std::deque<TreeServer*> list;
+                                       GetListOfServersForChannel(c,list);
+                                       unsigned int ucount = list.size();
+                                       for (unsigned int i = 0; i < ucount; i++)
+                                       {
+                                               TreeSocket* Sock = list[i]->GetSocket();
+                                               if (Sock)
+                                                       Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+cname+" :"+text);
+                                       }
                                }
                        }
                }
@@ -4105,10 +4466,19 @@ class ModuleSpanningTree : public Module
                // Only do this for local users
                if (IS_LOCAL(user))
                {
+                       char ts[24];
+                       snprintf(ts,24,"%lu",(unsigned long)channel->age);
+
                        std::deque<std::string> params;
                        params.clear();
                        params.push_back(channel->name);
 
+                       /** XXX: The client protocol will IGNORE this parameter.
+                        * We could make use of it if we wanted to keep the TS
+                        * in step if somehow we lose it.
+                        */
+                       params.push_back(ts);
+
                        if (channel->GetUserCounter() > 1)
                        {
                                // not the first in the channel
@@ -4118,12 +4488,10 @@ class ModuleSpanningTree : public Module
                        {
                                // first in the channel, set up their permissions
                                // and the channel TS with FJOIN.
-                               char ts[24];
-                               snprintf(ts,24,"%lu",(unsigned long)channel->age);
                                params.clear();
                                params.push_back(channel->name);
                                params.push_back(ts);
-                               params.push_back("@"+std::string(user->nick));
+                               params.push_back("@,"+std::string(user->nick));
                                DoOneToMany(ServerInstance->Config->ServerName,"FJOIN",params);
                        }
                }
@@ -4474,7 +4842,7 @@ class ModuleSpanningTree : public Module
                List[I_OnUserQuit] = List[I_OnUserPostNick] = List[I_OnUserKick] = List[I_OnRemoteKill] = List[I_OnRehash] = 1;
                List[I_OnOper] = List[I_OnAddGLine] = List[I_OnAddZLine] = List[I_OnAddQLine] = List[I_OnAddELine] = 1;
                List[I_OnDelGLine] = List[I_OnDelZLine] = List[I_OnDelQLine] = List[I_OnDelELine] = List[I_ProtoSendMode] = List[I_OnMode] = 1;
-               List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = 1;
+               List[I_OnStats] = List[I_ProtoSendMetaData] = List[I_OnEvent] = List[I_OnSetAway] = List[I_OnCancelAway] = List[I_OnPostCommand] = 1;
        }
 
        /* It is IMPORTANT that m_spanningtree is the last module in the chain
@@ -4490,6 +4858,15 @@ class ModuleSpanningTree : public Module
        }
 };
 
+void DoFailOver(Link* x)
+{
+       TreeProtocolModule->DoFailOver(x);
+}
+
+Link* FindLink(const std::string& name)
+{
+       return TreeProtocolModule->FindLink(name);
+}
 
 class ModuleSpanningTreeFactory : public ModuleFactory
 {