]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/connection.cpp
ConfigReader fixes to cope with tab characters (why didnt we notice this before?)
[user/henk/code/inspircd.git] / src / connection.cpp
index 0409f4f4796c3a73e3577f2a0b20a3e750cecd49..ec3007a8c0c0ad4e6b54fc6d990773d924db6a16 100644 (file)
 
 using namespace std;
 
+
 extern std::vector<Module*> modules;
 extern std::vector<ircd_module*> factory;
 
 extern int MODCOUNT;
 
 
-packet::packet()
-{
-       srand(time(NULL));
-       id = random();
-}
-
-packet::~packet()
-{
-}
 
 connection::connection()
 {
-       key = GenKey();
        fd = 0;
 }
 
@@ -43,6 +34,8 @@ bool connection::CreateListener(char* host, int p)
        int on = 0;
        struct linger linger = { 0 };
        
+       this->port = p;
+       
        fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
        if (fd <= 0)
        {
@@ -121,28 +114,36 @@ bool ircd_connector::SetHostAddress(char* host, int port)
        return true;
 }
 
+void ircd_connector::SetServerPort(int p)
+{
+       this->port = p;
+}
+
 bool ircd_connector::MakeOutboundConnection(char* host, int port)
 {
+       log(DEBUG,"MakeOutboundConnection: Original param: %s",host);
        hostent* hoste = gethostbyname(host);
        if (!hoste)
        {
-               WriteOpers("Failed to look up hostname for %s, using as an ip address",host);
+               log(DEBUG,"MakeOutboundConnection: gethostbyname was NULL, setting %s",host);
                this->SetHostAddress(host,port);
                SetHostAndPort(host,port);
        }
        else
        {
-               WriteOpers("Found hostname for %s",host);
-               this->SetHostAddress(hoste->h_addr,port);
-               SetHostAndPort(hoste->h_addr,port);
+               struct in_addr* ia = (in_addr*)hoste->h_addr;
+               log(DEBUG,"MakeOutboundConnection: gethostbyname was valid, setting %s",inet_ntoa(*ia));
+               this->SetHostAddress(inet_ntoa(*ia),port);
+               SetHostAndPort(inet_ntoa(*ia),port);
        }
 
        this->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
        if (this->fd >= 0)
        {
-               if(connect(this->fd, (sockaddr*)&addr,sizeof(addr)))
+               if(connect(this->fd, (sockaddr*)&this->addr,sizeof(this->addr)))
                {
                        WriteOpers("connect() failed for %s",host);
+                       RemoveServer(this->servername.c_str());
                        return false;
                }
                int flags = fcntl(this->fd, F_GETFL, 0);
@@ -156,17 +157,27 @@ bool ircd_connector::MakeOutboundConnection(char* host, int port)
        else
        {
                WriteOpers("socket() failed!");
+               RemoveServer(this->servername.c_str());
        }
 
        return false;
 }
 
 
-bool connection::BeginLink(char* targethost, int port, char* password, char* servername)
+bool connection::BeginLink(char* targethost, int port, char* password, char* servername, int myport)
 {
        char connect[MAXBUF];
        
        ircd_connector connector;
+       ircd_connector *cn = this->FindHost(servername);
+
+
+       if (cn)
+       {
+               WriteOpers("CONNECT aborted: Server %s already exists",servername);
+               return false;
+       }
+
        
        if (this->fd)
        {
@@ -175,7 +186,7 @@ bool connection::BeginLink(char* targethost, int port, char* password, char* ser
                        // targethost has been turned into an ip...
                        // we dont want this as the server name.
                        connector.SetServerName(servername);
-                       sprintf(connect,"S %s %s :%s",getservername().c_str(),password,getserverdesc().c_str());
+                       sprintf(connect,"S %s %s %d %d :%s",getservername().c_str(),password,myport,GetRevision(),getserverdesc().c_str());
                        connector.SetState(STATE_NOAUTH_OUTBOUND);
                        connector.SetHostAndPort(targethost, port);
                        this->connectors.push_back(connector);
@@ -183,6 +194,7 @@ bool connection::BeginLink(char* targethost, int port, char* password, char* ser
                }
                else
                {
+                       connector.SetState(STATE_DISCONNECTED);
                        WriteOpers("Could not create outbound connection to %s:%d",targethost,port);
                }
        }
@@ -207,11 +219,13 @@ bool connection::MeshCookie(char* targethost, int port, long cookie, char* serve
                        sprintf(connect,"- %d %s :%s",cookie,getservername().c_str(),getserverdesc().c_str());
                        connector.SetState(STATE_NOAUTH_OUTBOUND);
                        connector.SetHostAndPort(targethost, port);
+                       connector.SetState(STATE_CONNECTED);
                        this->connectors.push_back(connector);
                        return this->SendPacket(connect, servername);
                }
                else
                {
+                       connector.SetState(STATE_DISCONNECTED);
                        WriteOpers("Could not create outbound connection to %s:%d",targethost,port);
                }
        }
@@ -236,6 +250,7 @@ bool connection::AddIncoming(int fd, char* targethost, int sourceport)
        setsockopt(fd,SOL_SOCKET,SO_SNDBUF,(const void *)&sendbuf,sizeof(sendbuf)); 
        setsockopt(fd,SOL_SOCKET,SO_RCVBUF,(const void *)&recvbuf,sizeof(sendbuf));
        connector.SetHostAndPort(targethost, sourceport);
+       connector.SetState(STATE_NOAUTH_INBOUND);
        log(DEBUG,"connection::AddIncoming() Added connection: %s:%d",targethost,sourceport);
        this->connectors.push_back(connector);
        return true;
@@ -267,11 +282,21 @@ std::string ircd_connector::GetServerName()
        return this->servername;
 }
 
+std::string ircd_connector::GetDescription()
+{
+       return this->description;
+}
+
 void ircd_connector::SetServerName(std::string serv)
 {
        this->servername = serv;
 }
 
+void ircd_connector::SetDescription(std::string desc)
+{
+       this->description = desc;
+}
+
 
 int ircd_connector::GetDescriptor()
 {
@@ -287,6 +312,19 @@ int ircd_connector::GetState()
 void ircd_connector::SetState(int state)
 {
        this->state = state;
+       if (state == STATE_DISCONNECTED)
+       {
+               NetSendMyRoutingTable();
+       }
+}
+
+void ircd_connector::CloseConnection()
+{
+       int flags = fcntl(this->fd, F_GETFL, 0);
+       fcntl(this->fd, F_SETFL, flags ^ O_NONBLOCK);
+       close(this->fd);
+       flags = fcntl(this->fd, F_GETFL, 0);
+       fcntl(this->fd, F_SETFL, flags | O_NONBLOCK);
 }
 
 void ircd_connector::SetDescriptor(int fd)
@@ -298,16 +336,55 @@ bool connection::SendPacket(char *message, const char* host)
 {
        ircd_connector* cn = this->FindHost(host);
        
+       if (!strchr(message,'\n'))
+       {
+               strncat(message,"\n",MAXBUF);
+       }
+
        if (cn)
        {
                log(DEBUG,"main: Connection::SendPacket() sent '%s' to %s",message,cn->GetServerName().c_str());
+               
+               if (cn->GetState() == STATE_DISCONNECTED)
+               {
+                       log(DEBUG,"Main route to %s is down, seeking alternative",host);
+                       // fix: can only route one hop to avoid a loop
+                       if (strncat(message,"R ",2))
+                       {
+                               // this route is down, we must re-route the packet through an available point in the mesh.
+                               for (int k = 0; k < this->connectors.size(); k++)
+                               {
+                                       // search for another point in the mesh which can 'reach' where we want to go
+                                       for (int m = 0; m < this->connectors[k].routes.size(); m++)
+                                       {
+                                               if (!strcasecmp(this->connectors[k].routes[m].c_str(),host))
+                                               {
+                                                       log(DEBUG,"Found alternative route for packet: %s",this->connectors[k].GetServerName().c_str());
+                                                       char buffer[MAXBUF];
+                                                       snprintf(buffer,MAXBUF,"R %s %s",host,message);
+                                                       this->SendPacket(buffer,this->connectors[k].GetServerName().c_str());
+                                                       return true;
+                                               }
+                                       }
+                               }
+                       }
+                       char buffer[MAXBUF];
+                       snprintf(buffer,MAXBUF,"& %s",host);
+                       NetSendToAllExcept(host,buffer);
+                       log(DEBUG,"There are no routes to %s, we're gonna boot the server off!",host);
+                       DoSplit(host);
+                       return false;
+               }
 
-               strncat(message,"\n",MAXBUF);
                // returns false if the packet could not be sent (e.g. target host down)
                if (send(cn->GetDescriptor(),message,strlen(message),0)<0)
                {
                        log(DEBUG,"send() failed for Connection::SendPacket(): %s",strerror(errno));
-                       return false;
+                       log(DEBUG,"Disabling connector: %s",cn->GetServerName().c_str());
+                       cn->CloseConnection();
+                       cn->SetState(STATE_DISCONNECTED);
+                       // retry the packet along a new route so either arrival OR failure are gauranteed (bugfix)
+                       return this->SendPacket(message,host);
                }
                return true;
        }
@@ -322,10 +399,21 @@ bool connection::RecvPacket(std::deque<std::string> &messages, char* host)
        memset(data, 0, 32767);
        for (int i = 0; i < this->connectors.size(); i++)
        {
-               // returns false if the packet could not be sent (e.g. target host down)
-               int rcvsize = 0;
-               if (rcvsize = recv(this->connectors[i].GetDescriptor(),data,32767,0))
+               if (this->connectors[i].GetState() != STATE_DISCONNECTED)
                {
+                       // returns false if the packet could not be sent (e.g. target host down)
+                       int rcvsize = 0;
+                       rcvsize = recv(this->connectors[i].GetDescriptor(),data,32767,0);
+                       if (rcvsize == -1)
+                       {
+                               if (errno != EAGAIN)
+                               {
+                                       log(DEBUG,"recv() failed for Connection::RecvPacket(): %s",strerror(errno));
+                                       log(DEBUG,"Disabling connector: %s",this->connectors[i].GetServerName().c_str());
+                                       this->connectors[i].CloseConnection();
+                                       this->connectors[i].SetState(STATE_DISCONNECTED);
+                               }
+                       }
                        if (rcvsize > 0)
                        {
                                char* l = strtok(data,"\n");