]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/socket.cpp
kill_link safety checks
[user/henk/code/inspircd.git] / src / socket.cpp
index a8fdd30b94fb2e94b27949decaad12b4fd0971ec..787e656da0835764c5888abcd5e607227ba4c97b 100644 (file)
@@ -55,16 +55,16 @@ InspSocket::InspSocket(int newfd, char* ip)
 {
        this->fd = newfd;
        this->state = I_CONNECTED;
-       this->IP = ip;
+       strlcpy(this->IP,ip,MAXBUF);
        this->ClosePending = false;
        ServerInstance->SE->AddFd(this->fd,true,X_ESTAB_MODULE);
        socket_ref[this->fd] = this;
 }
 
-InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsigned long maxtime) : fd(-1), host(ahost)
+InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsigned long maxtime) : fd(-1)
 {
+       strlcpy(host,ahost.c_str(),MAXBUF);
        this->ClosePending = false;
-       this->outbuffer.clear();
        if (listening) {
                if ((this->fd = OpenTCPSocket()) == ERROR)
                {
@@ -76,7 +76,7 @@ InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsi
                }
                else
                {
-                       if (BindSocket(this->fd,this->client,this->server,aport,(char*)ahost.c_str()) == ERROR)
+                       if (!BindSocket(this->fd,this->client,this->server,aport,(char*)ahost.c_str()))
                        {
                                this->Close();
                                this->fd = -1;
@@ -97,12 +97,12 @@ InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsi
        }
        else
        {
-               this->host = ahost;
+               strlcpy(this->host,ahost.c_str(),MAXBUF);
                this->port = aport;
 
-               if (!inet_aton(host.c_str(),&addy))
+               if (!inet_aton(host,&addy))
                {
-                       log(DEBUG,"Attempting to resolve %s",this->host.c_str());
+                       log(DEBUG,"Attempting to resolve %s",this->host);
                        /* Its not an ip, spawn the resolver */
                        this->dns.SetNS(std::string(Config->DNSServer));
                        this->dns.ForwardLookupWithFD(host,fd);
@@ -113,8 +113,8 @@ InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsi
                }
                else
                {
-                       log(DEBUG,"No need to resolve %s",this->host.c_str());
-                       this->IP = host;
+                       log(DEBUG,"No need to resolve %s",this->host);
+                       strlcpy(this->IP,host,MAXBUF);
                        timeout_end = time(NULL) + maxtime;
                        this->DoConnect();
                }
@@ -140,7 +140,7 @@ bool InspSocket::DoResolve()
                if (res_ip != "")
                {
                        log(DEBUG,"Socket result set to %s",res_ip.c_str());
-                       this->IP = res_ip;
+                       strlcpy(this->IP,res_ip.c_str(),MAXBUF);
                        socket_ref[this->fd] = NULL;
                }
                else
@@ -170,8 +170,8 @@ bool InspSocket::DoConnect()
                return false;
        }
 
-       log(DEBUG,"Part 2 DoConnect() %s",this->IP.c_str());
-       inet_aton(this->IP.c_str(),&addy);
+       log(DEBUG,"Part 2 DoConnect() %s",this->IP);
+       inet_aton(this->IP,&addy);
        addr.sin_family = AF_INET;
        addr.sin_addr = addy;
        addr.sin_port = htons(this->port);
@@ -244,6 +244,7 @@ char* InspSocket::Read()
 
 void InspSocket::MarkAsClosed()
 {
+       log(DEBUG,"Marked as closed");
        this->ClosePending = true;
 }
 
@@ -253,31 +254,48 @@ void InspSocket::MarkAsClosed()
 // and should be aborted.
 int InspSocket::Write(const std::string &data)
 {
+       if (this->ClosePending)
+               return false;
+
+       int result = write(this->fd,data.c_str(),data.length());
+       if (result < 1)
+               return false;
+       return true;
+
        /* Try and append the data to the back of the queue, and send it on its way
         */
-       outbuffer.push_back(data);
-       return (!this->FlushWriteBuffer());
+       //outbuffer.push_back(data);
+       //return (!this->FlushWriteBuffer());
 }
 
 bool InspSocket::FlushWriteBuffer()
 {
-       if ((this->fd > -1) && (this->state == I_CONNECTED))
+       if (this->ClosePending)
+               return true;
+
+       /*if ((this->fd > -1) && (this->state == I_CONNECTED))
        {
                if (outbuffer.size())
                {
+                       log(DEBUG,"Writing %d to socket",outbuffer.size());
                        int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
                        if (result > 0)
                        {
+                               log(DEBUG,"Wrote %d to socket",result);
                                if ((unsigned int)result == outbuffer[0].length())
                                {
-                                       /* The whole block was written (usually a line)
+                                        * The whole block was written (usually a line)
                                         * Pop the block off the front of the queue
-                                        */
+                                        *
+                                       log(DEBUG,"Popping front item, now %d items left",outbuffer.size());
                                        outbuffer.pop_front();
                                }
                                else
                                {
-                                       outbuffer[0] = outbuffer[0].substr(result + 1,outbuffer[0].length());
+                                       log(DEBUG,"Cutting front item");
+                                       std::string temp = outbuffer[0].substr(result);
+                                       outbuffer[0] = temp;
+                                       log(DEBUG,"Front item is now: ",outbuffer[0].c_str());
                                }
                        }
                        else if ((result == -1) && (errno != EAGAIN))
@@ -288,17 +306,23 @@ bool InspSocket::FlushWriteBuffer()
                                return true;
                        }
                }
-       }
+       }*/
        return false;
 }
 
 bool InspSocket::Timeout(time_t current)
 {
        if (!socket_ref[this->fd] || !ServerInstance->SE->HasFd(this->fd))
+       {
+               log(DEBUG,"No FD or socket ref");
                return false;
+       }
 
        if (this->ClosePending)
+       {
+               log(DEBUG,"Close is pending");
                return true;
+       }
 
        if (((this->state == I_RESOLVING) || (this->state == I_CONNECTING)) && (current > timeout_end))
        {