]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/dns.cpp
Add <hostchange:ports> to the m_hostchange module to implement feature in bug #363
[user/henk/code/inspircd.git] / src / dns.cpp
index 33dba1abb72a2e14f3838379bde0185a034e4690..a714794bf15b5625c64fc53a2c0efe2907268e4a 100644 (file)
@@ -21,11 +21,17 @@ Please do not assume that firedns works like this,
 looks like this, walks like this or tastes like this.
 */
 
+#ifndef WIN32
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <errno.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#else
+#include "inspircd_win32wrapper.h"
+#include "inspircd_se_config.h"
+#endif
+
 #include "dns.h"
 #include "inspircd.h"
 #include "socketengine.h"
@@ -36,6 +42,7 @@ using irc::sockets::insp_inaddr;
 using irc::sockets::insp_ntoa;
 using irc::sockets::insp_aton;
 using irc::sockets::OpenTCPSocket;
+using irc::sockets::NonBlocking;
 
 /** Masks to mask off the responses we get from the DNSRequest methods
  */
@@ -97,7 +104,7 @@ class DNSRequest
 
        DNSRequest(InspIRCd* Instance, DNS* dns, int id, const std::string &original);
        ~DNSRequest();
-       DNSInfo ResultIsReady(DNSHeader &h, int length);
+       DNSInfo ResultIsReady(DNSHeader &h, int length, int result_we_want);
        int SendRequests(const DNSHeader *header, const int length, QueryType qt);
 };
 
@@ -238,7 +245,7 @@ int DNSRequest::SendRequests(const DNSHeader *header, const int length, QueryTyp
        memcpy(&addr.sin_addr.s_addr, &dnsobj->myserver4, sizeof(addr.sin_addr));
        addr.sin_family = AF_INET;
        addr.sin_port = htons(DNS::QUERY_PORT);
-       if (sendto(dnsobj->GetFd(), payload, length + 12, 0, (sockaddr *) &addr, sizeof(addr)) != length+12)
+       if (sendto(dnsobj->GetFd(), (const char*)payload, length + 12, 0, (sockaddr *) &addr, sizeof(addr)) != length+12)
                return -1;
 #endif
 
@@ -353,6 +360,7 @@ void DNS::Rehash()
        /* Initialize mastersocket */
        int s = OpenTCPSocket(ServerInstance->Config->DNSServer, SOCK_DGRAM);
        this->SetFd(s);
+       NonBlocking(s);
 
        /* Have we got a socket and is it nonblocking? */
        if (this->GetFd() != -1)
@@ -604,7 +612,7 @@ void DNS::MakeIP6Int(char* query, const in6_addr *ip)
 }
 
 /** Return the next id which is ready, and the result attached to it */
-DNSResult DNS::GetResult()
+DNSResult DNS::GetResult(int resultnum)
 {
        /* Fetch dns query response and decide where it belongs */
        DNSHeader header;
@@ -619,7 +627,10 @@ DNSResult DNS::GetResult()
        const char* ipaddr_from;
        unsigned short int port_from = 0;
 
-       int length = recvfrom(this->GetFd(),buffer,sizeof(DNSHeader),0,from,&x);
+       void* m_readEvent = NULL;
+       GetExt("windows_readevent", m_readEvent);
+
+       int length = _recvfrom(this->GetFd(),(char*)buffer,sizeof(DNSHeader),0,from,&x);
 
        /* Did we get the whole header? */
        if (length < 12)
@@ -646,14 +657,11 @@ DNSResult DNS::GetResult()
                port_from = ntohs(((sockaddr_in6*)from)->sin6_port);
        }
        else
+#endif
        {
                ipaddr_from = inet_ntoa(((sockaddr_in*)from)->sin_addr);
                port_from = ntohs(((sockaddr_in*)from)->sin_port);
        }
-#else
-       ipaddr_from = inet_ntoa(((sockaddr_in*)from)->sin_addr);
-       port_from = ntohs(((sockaddr_in*)from)->sin_port);
-#endif
 
        delete[] from;
 
@@ -694,7 +702,7 @@ DNSResult DNS::GetResult()
         * When its finished it will return a DNSInfo which is a pair of
         * unsigned char* resource record data, and an error message.
         */
-       DNSInfo data = req->ResultIsReady(header, length);
+       DNSInfo data = req->ResultIsReady(header, length, resultnum);
        std::string resultstr;
 
        /* Check if we got a result, if we didnt, its an error */
@@ -754,7 +762,7 @@ DNSResult DNS::GetResult()
                                 * as the last parameter on the line with a value ":1".
                                 */
                                if (*formatted == ':')
-                                       resultstr = "0" + resultstr;
+                                       resultstr.insert(0, "0");
                        }
                        break;
 
@@ -779,7 +787,7 @@ DNSResult DNS::GetResult()
 }
 
 /** A result is ready, process it */
-DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length)
+DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length, int result_we_want)
 {
        int i = 0;
        int q = 0;
@@ -849,7 +857,9 @@ DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length)
                        return std::make_pair((unsigned char*)NULL,"Incorrectly sized DNS reply");
 
                /* XXX: We actually initialise 'rr' here including its ttl field */
-               DNS::FillResourceRecord(&rr,&header.payload[i]);
+               if (curanswer == result_we_want)
+                       DNS::FillResourceRecord(&rr,&header.payload[i]);
+       
                i += 10;
                if (rr.type != this->type)
                {
@@ -866,7 +876,7 @@ DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length)
                break;
        }
        if ((unsigned int)curanswer == header.ancount)
-               return std::make_pair((unsigned char*)NULL,"No valid answers");
+               return std::make_pair((unsigned char*)NULL,"No more records");
 
        if (i + rr.rdlength > (unsigned int)length)
                return std::make_pair((unsigned char*)NULL,"Resource record larger than stated");
@@ -922,7 +932,7 @@ DNSInfo DNSRequest::ResultIsReady(DNSHeader &header, int length)
                        res[rr.rdlength] = 0;
                break;
        }
-       return std::make_pair(res,"No error");;
+       return std::make_pair(res,"No error");
 }
 
 /** Close the master socket */
@@ -951,7 +961,7 @@ void DNS::DelCache(const std::string &source)
 void Resolver::TriggerCachedResult()
 {
        if (CQ)
-               OnLookupComplete(CQ->data, time_left, true);
+               OnLookupComplete(CQ->data, time_left, true, 0);
 }
 
 /** High level abstraction of dns used by application at large */
@@ -1054,47 +1064,60 @@ Module* Resolver::GetCreator()
 void DNS::HandleEvent(EventType et, int errornum)
 {
        /* Fetch the id and result of the next available packet */
-       DNSResult res = this->GetResult();
-       /* Is there a usable request id? */
-       if (res.id != -1)
+       int resultnum = 0;
+       DNSResult res(0,"",0,"");
+       res.id = 0;
+       ServerInstance->Log(DEBUG,"Handle DNS event");
+       while ((res.id & ERROR_MASK) == 0)
        {
-               /* Its an error reply */
-               if (res.id & ERROR_MASK)
+               res = this->GetResult(resultnum);
+
+               ServerInstance->Log(DEBUG,"Result %d id %d", resultnum, res.id);
+       
+               /* Is there a usable request id? */
+               if (res.id != -1)
                {
-                       /* Mask off the error bit */
-                       res.id -= ERROR_MASK;
-                       /* Marshall the error to the correct class */
-                       if (Classes[res.id])
+                       /* Its an error reply */
+                       if (res.id & ERROR_MASK)
                        {
-                               if (ServerInstance && ServerInstance->stats)
-                                       ServerInstance->stats->statsDnsBad++;
-                               Classes[res.id]->OnError(RESOLVER_NXDOMAIN, res.result);
-                               delete Classes[res.id];
-                               Classes[res.id] = NULL;
+                               /* Mask off the error bit */
+                               res.id -= ERROR_MASK;
+                               /* Marshall the error to the correct class */
+                               if (Classes[res.id])
+                               {
+                                       if (ServerInstance && ServerInstance->stats)
+                                               ServerInstance->stats->statsDnsBad++;
+                                       Classes[res.id]->OnError(RESOLVER_NXDOMAIN, res.result);
+                                       delete Classes[res.id];
+                                       Classes[res.id] = NULL;
+                               }
+                               break;
                        }
-               }
-               else
-               {
-                       /* It is a non-error result, marshall the result to the correct class */
-                       if (Classes[res.id])
+                       else
                        {
-                               if (ServerInstance && ServerInstance->stats)
-                                       ServerInstance->stats->statsDnsGood++;
-
-                               if (!this->GetCache(res.original.c_str()))
-                                       this->cache->insert(std::make_pair(res.original.c_str(), CachedQuery(res.result, res.ttl)));
-
-                               Classes[res.id]->OnLookupComplete(res.result, res.ttl, false);
-                               delete Classes[res.id];
-                               Classes[res.id] = NULL;
+                               /* It is a non-error result, marshall the result to the correct class */
+                               if (Classes[res.id])
+                               {
+                                       if (ServerInstance && ServerInstance->stats)
+                                               ServerInstance->stats->statsDnsGood++;
+       
+                                       if (!this->GetCache(res.original.c_str()))
+                                               this->cache->insert(std::make_pair(res.original.c_str(), CachedQuery(res.result, res.ttl)));
+       
+                                       Classes[res.id]->OnLookupComplete(res.result, res.ttl, false, resultnum);
+                                       delete Classes[res.id];
+                                       Classes[res.id] = NULL;
+                               }
                        }
+       
+                       if (ServerInstance && ServerInstance->stats)
+                               ServerInstance->stats->statsDns++;
                }
 
-               if (ServerInstance && ServerInstance->stats)
-                       ServerInstance->stats->statsDns++;
+               resultnum++;
        }
 }
-
+       
 /** Add a derived Resolver to the working set */
 bool DNS::AddResolverClass(Resolver* r)
 {
@@ -1152,7 +1175,7 @@ unsigned long DNS::PRNG()
        gettimeofday(&n,NULL);
        val = (n.tv_usec ^ getpid() ^ geteuid() ^ (this->currid++)) ^ s->statsAccept + n.tv_sec;
        val = val + s->statsCollisions ^ s->statsDnsGood - s->statsDnsBad;
-       val += (s->statsConnects ^ (unsigned long)s->statsSent ^ (unsigned long)s->statsRecv) - s->BoundPortCount;
+       val += (s->statsConnects ^ (unsigned long)s->statsSent ^ (unsigned long)s->statsRecv) - ServerInstance->Config->ports.size();
        return val;
 }