1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Permit parsing A and AAAA RRs to a common class

This commit is contained in:
dmiller
2024-04-25 17:12:28 +00:00
parent 18beddee40
commit 100c1ffccb
2 changed files with 48 additions and 11 deletions

View File

@@ -1529,6 +1529,30 @@ size_t DNS::Factory::parseUnsignedInt(u32 &num, const u8 *buf, size_t offset, si
return 0; return 0;
} }
size_t DNS::Factory::parseIPv4(struct in_addr &addr, const u8 *buf, size_t offset, size_t maxlen)
{
size_t max_access = offset+3;
if(buf && (maxlen > max_access))
{
memcpy(&addr, buf + offset, 4);
return 4;
}
return 0;
}
size_t DNS::Factory::parseIPv6(struct in6_addr &addr, const u8 *buf, size_t offset, size_t maxlen)
{
size_t max_access = offset+15;
if(buf && (maxlen > max_access))
{
memcpy(&addr, buf + offset, 16);
return 16;
}
return 0;
}
size_t DNS::Factory::parseDomainName(std::string &name, const u8 *buf, size_t offset, size_t maxlen) size_t DNS::Factory::parseDomainName(std::string &name, const u8 *buf, size_t offset, size_t maxlen)
{ {
size_t tmp = 0; size_t tmp = 0;
@@ -1596,16 +1620,26 @@ size_t DNS::Factory::parseDomainName(std::string &name, const u8 *buf, size_t of
return max_offset - offset; return max_offset - offset;
} }
size_t DNS::A_Record::parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen) size_t DNS::A_Record::parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen, RECORD_TYPE rt)
{ {
size_t tmp, ret = 0; size_t tmp, ret = 0;
u32 num; struct sockaddr_in * ip4addr = (sockaddr_in *) &value;
DNS_CHECK_ACCUMLATE(ret, tmp, Factory::parseUnsignedInt(num, buf, offset, maxlen)); struct sockaddr_in6 * ip6addr = (sockaddr_in6 *) &value;
memset(&value, 0, sizeof(value)); memset(&value, 0, sizeof(value));
struct sockaddr_in * ip4addr = (sockaddr_in *) &value; switch (rt) {
ip4addr->sin_family = AF_INET; case DNS::A:
ip4addr->sin_addr.s_addr = htonl(num); DNS_CHECK_ACCUMLATE(ret, tmp, Factory::parseIPv4(ip4addr->sin_addr, buf, offset, maxlen));
ip4addr->sin_family = AF_INET;
break;
case DNS::AAAA:
DNS_CHECK_ACCUMLATE(ret, tmp, Factory::parseIPv6(ip6addr->sin6_addr, buf, offset, maxlen));
ip6addr->sin6_family = AF_INET6;
break;
default:
return 0;
break;
}
return ret; return ret;
} }
@@ -1643,6 +1677,7 @@ size_t DNS::Answer::parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen)
switch(record_type) switch(record_type)
{ {
case A: case A:
case AAAA:
{ {
record = new A_Record(); record = new A_Record();
break; break;
@@ -1661,7 +1696,7 @@ size_t DNS::Answer::parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen)
return 0; return 0;
} }
DNS_CHECK_ACCUMLATE(ret, tmp, record->parseFromBuffer(buf, offset+ret, maxlen)); DNS_CHECK_ACCUMLATE(ret, tmp, record->parseFromBuffer(buf, offset+ret, maxlen, (RECORD_TYPE) record_type));
} }
return ret; return ret;

View File

@@ -152,6 +152,8 @@ public:
static size_t putDomainName(const std::string &name, u8 *buf, size_t offset, size_t maxlen); static size_t putDomainName(const std::string &name, u8 *buf, size_t offset, size_t maxlen);
static size_t parseUnsignedShort(u16 &num, const u8 *buf, size_t offset, size_t maxlen); static size_t parseUnsignedShort(u16 &num, const u8 *buf, size_t offset, size_t maxlen);
static size_t parseUnsignedInt(u32 &num, const u8 *buf, size_t offset, size_t maxlen); static size_t parseUnsignedInt(u32 &num, const u8 *buf, size_t offset, size_t maxlen);
static size_t parseIPv4(struct in_addr &addr, const u8 *buf, size_t offset, size_t maxlen);
static size_t parseIPv6(struct in6_addr &addr, const u8 *buf, size_t offset, size_t maxlen);
static size_t parseDomainName(std::string &name, const u8 *buf, size_t offset, size_t maxlen); static size_t parseDomainName(std::string &name, const u8 *buf, size_t offset, size_t maxlen);
}; };
@@ -160,7 +162,7 @@ class Record
public: public:
virtual Record * clone() = 0; virtual Record * clone() = 0;
virtual ~Record() {} virtual ~Record() {}
virtual size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen) = 0; virtual size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen, RECORD_TYPE rt) = 0;
}; };
class A_Record : public Record class A_Record : public Record
@@ -169,7 +171,7 @@ public:
sockaddr_storage value; sockaddr_storage value;
Record * clone() { return new A_Record(*this); } Record * clone() { return new A_Record(*this); }
~A_Record() {} ~A_Record() {}
size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen); size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen, RECORD_TYPE rt);
}; };
class PTR_Record : public Record class PTR_Record : public Record
@@ -178,7 +180,7 @@ public:
std::string value; std::string value;
Record * clone() { return new PTR_Record(*this); } Record * clone() { return new PTR_Record(*this); }
~PTR_Record() {} ~PTR_Record() {}
size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen) size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen, RECORD_TYPE rt)
{ {
return Factory::parseDomainName(value, buf, offset, maxlen); return Factory::parseDomainName(value, buf, offset, maxlen);
} }
@@ -190,7 +192,7 @@ public:
std::string value; std::string value;
Record * clone() { return new CNAME_Record(*this); } Record * clone() { return new CNAME_Record(*this); }
~CNAME_Record() {} ~CNAME_Record() {}
size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen) size_t parseFromBuffer(const u8 *buf, size_t offset, size_t maxlen, RECORD_TYPE rt)
{ {
return Factory::parseDomainName(value, buf, offset, maxlen); return Factory::parseDomainName(value, buf, offset, maxlen);
} }