]> 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 e2be63c3322fd481e37b34763b21b4427591b71c..ec3007a8c0c0ad4e6b54fc6d990773d924db6a16 100644 (file)
@@ -6,30 +6,22 @@
 #include <sys/utsname.h>
 #include <vector>
 #include <string>
+#include <deque>
 #include "inspircd.h"
 #include "modules.h"
 
 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;
 }
 
@@ -42,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)
        {
@@ -92,8 +86,27 @@ bool connection::CreateListener(char* host, int p)
        return true;
 }
 
+char* ircd_connector::GetServerIP()
+{
+       return this->host;
+}
+
+int ircd_connector::GetServerPort()
+{
+       return this->port;
+}
+
+bool ircd_connector::SetHostAndPort(char* host, int port)
+{
+       strncpy(this->host,host,160);
+       this->port = port;
+       return true;
+}
+
 bool ircd_connector::SetHostAddress(char* host, int port)
 {
+       strncpy(this->host,host,160);
+       this->port = port;
        memset((void*)&addr, 0, sizeof(addr));
        addr.sin_family = AF_INET;
        inet_aton(host,&addr.sin_addr);
@@ -101,26 +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);
+               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);
@@ -134,18 +157,58 @@ 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)
+       {
+               if (connector.MakeOutboundConnection(targethost,port))
+               {
+                       // targethost has been turned into an ip...
+                       // we dont want this as the server name.
+                       connector.SetServerName(servername);
+                       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);
+                       return this->SendPacket(connect, servername);
+               }
+               else
+               {
+                       connector.SetState(STATE_DISCONNECTED);
+                       WriteOpers("Could not create outbound connection to %s:%d",targethost,port);
+               }
+       }
+       return false;
+}
+
+bool connection::MeshCookie(char* targethost, int port, long cookie, char* servername)
 {
        char connect[MAXBUF];
        
        ircd_connector connector;
        
+       WriteOpers("Establishing meshed link to %s:%d",servername,port);
+
        if (this->fd)
        {
                if (connector.MakeOutboundConnection(targethost,port))
@@ -153,20 +216,23 @@ 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,"- %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);
                }
        }
        return false;
 }
 
-bool connection::AddIncoming(int fd,char* targethost)
+bool connection::AddIncoming(int fd, char* targethost, int sourceport)
 {
        char connect[MAXBUF];
        
@@ -177,6 +243,15 @@ bool connection::AddIncoming(int fd,char* targethost)
        connector.SetServerName(targethost);
        connector.SetDescriptor(fd);
        connector.SetState(STATE_NOAUTH_INBOUND);
+       int flags = fcntl(fd, F_GETFL, 0);
+       fcntl(fd, F_SETFL, flags | O_NONBLOCK);
+       int sendbuf = 32768;
+       int recvbuf = 32768;
+       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;
 }
@@ -207,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()
 {
@@ -227,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)
@@ -234,20 +332,59 @@ void ircd_connector::SetDescriptor(int fd)
        this->fd = fd;
 }
 
-bool connection::SendPacket(char *message, char* host)
+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;
        }
@@ -256,19 +393,52 @@ bool connection::SendPacket(char *message, char* host)
 // receives a packet from any where there is data waiting, first come, first served
 // fills the message and host values with the host where the data came from.
 
-bool connection::RecvPacket(char *message, char* host)
+bool connection::RecvPacket(std::deque<std::string> &messages, char* host)
 {
+       char data[32767];
+       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(),message,MAXBUF,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)
                        {
-                               // something new on this socket, fill the return values and bail
-                               strncpy(host,this->connectors[i].GetServerName().c_str(),160);
-                               message[rcvsize-1] = 0;
+                               char* l = strtok(data,"\n");
+                               while (l)
+                               {
+                                       char sanitized[32767];
+                                       memset(sanitized, 0, 32767);
+                                       int ptt = 0;
+                                       for (int pt = 0; pt < strlen(l); pt++)
+                                       {
+                                               if (l[pt] != '\r')
+                                               {
+                                                       sanitized[ptt++] = l[pt];
+                                               }
+                                       }
+                                       sanitized[ptt] = '\0';
+                                       if (strlen(sanitized))
+                                       {
+                                               messages.push_back(sanitized);
+                                               strncpy(host,this->connectors[i].GetServerName().c_str(),160);
+                                               log(DEBUG,"main: Connection::RecvPacket() got '%s' from %s",sanitized,host);
+                                               
+                                       }
+                                       l = strtok(NULL,"\n");
+                               }
                                return true;
                        }
                }