2007-03-12 10:19:14 -04:00
|
|
|
/*
|
|
|
|
|
* util/data/msgreply.c - store message and reply data.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2007, NLnet Labs. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* This software is open source.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* Neither the name of the NLNET LABS nor the names of its contributors may
|
|
|
|
|
* be used to endorse or promote products derived from this software without
|
|
|
|
|
* specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
|
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file
|
|
|
|
|
*
|
|
|
|
|
* This file contains a data structure to store a message and its reply.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#include "util/data/msgreply.h"
|
2007-03-22 12:26:14 -04:00
|
|
|
#include "util/storage/lookup3.h"
|
2007-03-12 10:19:14 -04:00
|
|
|
#include "util/log.h"
|
2007-04-16 11:21:50 -04:00
|
|
|
#include "util/alloc.h"
|
2007-03-28 11:40:12 -04:00
|
|
|
#include "util/netevent.h"
|
2007-04-03 05:29:09 -04:00
|
|
|
#include "util/net_help.h"
|
2007-04-04 05:47:30 -04:00
|
|
|
#include "util/data/dname.h"
|
2007-04-11 10:26:29 -04:00
|
|
|
#include "util/region-allocator.h"
|
2007-03-12 10:19:14 -04:00
|
|
|
|
2007-04-10 05:03:05 -04:00
|
|
|
struct rrset_parse;
|
|
|
|
|
struct rr_parse;
|
|
|
|
|
|
2007-04-13 11:00:56 -04:00
|
|
|
/** number of buckets in parse rrset hash table. Must be power of 2. */
|
2007-04-10 05:03:05 -04:00
|
|
|
#define PARSE_TABLE_SIZE 1024
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Data stored in scratch pad memory during parsing.
|
|
|
|
|
* Stores the data that will enter into the msgreply and packet result.
|
|
|
|
|
*/
|
|
|
|
|
struct msg_parse {
|
2007-04-11 10:26:29 -04:00
|
|
|
/** id from message, network format. */
|
|
|
|
|
uint16_t id;
|
2007-04-10 05:03:05 -04:00
|
|
|
/** flags from message, host format. */
|
|
|
|
|
uint16_t flags;
|
|
|
|
|
/** count of RRs, host format */
|
|
|
|
|
uint16_t qdcount;
|
|
|
|
|
/** count of RRs, host format */
|
|
|
|
|
uint16_t ancount;
|
|
|
|
|
/** count of RRs, host format */
|
|
|
|
|
uint16_t nscount;
|
|
|
|
|
/** count of RRs, host format */
|
|
|
|
|
uint16_t arcount;
|
|
|
|
|
/** count of RRsets per section. */
|
|
|
|
|
size_t an_rrsets;
|
|
|
|
|
/** count of RRsets per section. */
|
|
|
|
|
size_t ns_rrsets;
|
|
|
|
|
/** count of RRsets per section. */
|
|
|
|
|
size_t ar_rrsets;
|
|
|
|
|
/** total number of rrsets found. */
|
|
|
|
|
size_t rrset_count;
|
|
|
|
|
|
|
|
|
|
/** query dname (pointer to start location in packet, NULL if none */
|
|
|
|
|
uint8_t* qname;
|
|
|
|
|
/** length of query dname in octets, 0 if none */
|
|
|
|
|
size_t qname_len;
|
|
|
|
|
/** query type, network order. 0 if qdcount=0 */
|
|
|
|
|
uint16_t qtype;
|
|
|
|
|
/** query class, network order. 0 if qdcount=0 */
|
|
|
|
|
uint16_t qclass;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Hash table array used during parsing to lookup rrset types.
|
|
|
|
|
* Based on name, type, class. Same hash value as in rrset cache.
|
|
|
|
|
*/
|
|
|
|
|
struct rrset_parse* hashtable[PARSE_TABLE_SIZE];
|
|
|
|
|
|
|
|
|
|
/** linked list of rrsets that have been found (in order). */
|
|
|
|
|
struct rrset_parse* rrset_first;
|
|
|
|
|
/** last element of rrset list. */
|
|
|
|
|
struct rrset_parse* rrset_last;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Data stored for an rrset during parsing.
|
|
|
|
|
*/
|
|
|
|
|
struct rrset_parse {
|
|
|
|
|
/** next in hash bucket */
|
|
|
|
|
struct rrset_parse* rrset_bucket_next;
|
|
|
|
|
/** next in list of all rrsets */
|
|
|
|
|
struct rrset_parse* rrset_all_next;
|
|
|
|
|
/** hash value of rrset */
|
|
|
|
|
hashvalue_t hash;
|
2007-04-11 10:26:29 -04:00
|
|
|
/** which section was it found in: one of
|
|
|
|
|
* LDNS_SECTION_ANSWER, LDNS_SECTION_AUTHORITY, LDNS_SECTION_ADDITIONAL
|
|
|
|
|
*/
|
|
|
|
|
ldns_pkt_section section;
|
2007-04-10 05:03:05 -04:00
|
|
|
/** start of (possibly compressed) dname in packet */
|
|
|
|
|
uint8_t* dname;
|
2007-04-11 10:26:29 -04:00
|
|
|
/** length of the dname uncompressed wireformat */
|
|
|
|
|
size_t dname_len;
|
2007-04-10 05:03:05 -04:00
|
|
|
/** type, network order. */
|
|
|
|
|
uint16_t type;
|
|
|
|
|
/** class, network order. name so that it is not a c++ keyword. */
|
|
|
|
|
uint16_t rrset_class;
|
2007-04-13 11:00:56 -04:00
|
|
|
/** the flags for the rrset, like for packedrrset */
|
|
|
|
|
uint32_t flags;
|
2007-04-16 11:21:50 -04:00
|
|
|
/** number of RRs in the rr list */
|
|
|
|
|
size_t rr_count;
|
2007-04-10 05:03:05 -04:00
|
|
|
/** linked list of RRs in this rrset. */
|
|
|
|
|
struct rr_parse* rr_first;
|
|
|
|
|
/** last in list of RRs in this rrset. */
|
|
|
|
|
struct rr_parse* rr_last;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Data stored for an RR during parsing.
|
|
|
|
|
*/
|
|
|
|
|
struct rr_parse {
|
|
|
|
|
/**
|
|
|
|
|
* Pointer to the RR. Points to start of TTL value in the packet.
|
|
|
|
|
* Rdata length and rdata follow it.
|
|
|
|
|
* its dname, type and class are the same and stored for the rrset.
|
|
|
|
|
*/
|
|
|
|
|
uint8_t* ttl_data;
|
2007-04-16 11:21:50 -04:00
|
|
|
/** the length of the rdata if allocated (with no dname compression)*/
|
|
|
|
|
size_t size;
|
2007-04-10 05:03:05 -04:00
|
|
|
/** next in list of RRs. */
|
|
|
|
|
struct rr_parse* next;
|
|
|
|
|
};
|
|
|
|
|
|
2007-04-12 10:54:34 -04:00
|
|
|
/** smart comparison of (compressed, valid) dnames from packet. */
|
|
|
|
|
static int
|
|
|
|
|
smart_compare(ldns_buffer* pkt, uint8_t* dnow,
|
|
|
|
|
uint8_t *dprfirst, uint8_t* dprlast)
|
|
|
|
|
{
|
|
|
|
|
if( (*dnow & 0xc0) == 0xc0) {
|
2007-04-13 11:00:56 -04:00
|
|
|
/* ptr points to a previous dname */
|
|
|
|
|
uint8_t* p = ldns_buffer_at(pkt, (dnow[0]&0x3f)<<8 | dnow[1]);
|
|
|
|
|
if( p == dprfirst || p == dprlast )
|
|
|
|
|
return 0;
|
2007-04-12 10:54:34 -04:00
|
|
|
/* prev dname is also a ptr, both ptrs are the same. */
|
2007-04-13 11:00:56 -04:00
|
|
|
/* if( (*dprfirst & 0xc0) == 0xc0 &&
|
2007-04-12 10:54:34 -04:00
|
|
|
dprfirst[0] == dnow[0] && dprfirst[1] == dnow[1])
|
2007-04-13 11:00:56 -04:00
|
|
|
return 0; */
|
2007-04-12 10:54:34 -04:00
|
|
|
if( (*dprlast & 0xc0) == 0xc0 &&
|
|
|
|
|
dprlast[0] == dnow[0] && dprlast[1] == dnow[1])
|
|
|
|
|
return 0;
|
|
|
|
|
/* checks for prev dnames pointing forwards in the packet
|
|
|
|
|
} else {
|
|
|
|
|
if( (*dprfirst & 0xc0) == 0xc0 ) {
|
|
|
|
|
if(ldns_buffer_at(pkt, (dprfirst[0]&0x3f)<<8 |
|
|
|
|
|
dprfirst[1]) == dnow)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if( (*dprlast & 0xc0) == 0xc0 ) {
|
|
|
|
|
if(ldns_buffer_at(pkt, (dprlast[0]&0x3f)<<8 |
|
|
|
|
|
dprlast[1]) == dnow)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
return dname_pkt_compare(pkt, dnow, dprlast);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-13 11:00:56 -04:00
|
|
|
/** See if next rrset is nsec at zone apex. */
|
|
|
|
|
static int
|
|
|
|
|
nsec_at_apex(ldns_buffer* pkt)
|
|
|
|
|
{
|
|
|
|
|
/* we are at ttl position in packet. */
|
|
|
|
|
size_t pos = ldns_buffer_position(pkt);
|
|
|
|
|
uint16_t rdatalen;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < 7) /* ttl+len+root */
|
|
|
|
|
return 0; /* eek! */
|
|
|
|
|
ldns_buffer_skip(pkt, 4); /* ttl */;
|
|
|
|
|
rdatalen = ldns_buffer_read_u16(pkt);
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < rdatalen) {
|
|
|
|
|
ldns_buffer_set_position(pkt, pos);
|
|
|
|
|
return 0; /* parse error happens later */
|
|
|
|
|
}
|
|
|
|
|
/* must validate the nsec next domain name format */
|
|
|
|
|
if(pkt_dname_len(pkt) == 0) {
|
|
|
|
|
ldns_buffer_set_position(pkt, pos);
|
|
|
|
|
return 0; /* parse error */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* see if SOA bit is set. */
|
|
|
|
|
if(ldns_buffer_position(pkt) < pos+rdatalen) {
|
|
|
|
|
/* nsec type bitmap contains items */
|
|
|
|
|
uint8_t win, blen, bits;
|
|
|
|
|
/* need: windownum, bitmap len, firstbyte */
|
|
|
|
|
if(ldns_buffer_position(pkt)+3 <= pos+rdatalen) {
|
|
|
|
|
ldns_buffer_set_position(pkt, pos);
|
|
|
|
|
return 0; /* malformed nsec */
|
|
|
|
|
}
|
|
|
|
|
win = ldns_buffer_read_u8(pkt);
|
|
|
|
|
blen = ldns_buffer_read_u8(pkt);
|
|
|
|
|
bits = ldns_buffer_read_u8(pkt);
|
|
|
|
|
/* 0window always first window. bitlen >=1 or parse
|
|
|
|
|
error really. bit 0x2 is SOA. */
|
|
|
|
|
if(win == 0 && blen >= 1 && (bits & 0x02)) {
|
|
|
|
|
ldns_buffer_set_position(pkt, pos);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ldns_buffer_set_position(pkt, pos);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Calculate hash value for rrset in packet. */
|
|
|
|
|
static hashvalue_t
|
|
|
|
|
pkt_hash_rrset(struct msg_parse* msg, ldns_buffer* pkt, uint8_t* dname,
|
|
|
|
|
uint16_t type, uint16_t dclass, uint32_t* rrset_flags)
|
|
|
|
|
{
|
|
|
|
|
hashvalue_t h = 0xab;
|
|
|
|
|
if(msg->flags & BIT_CD)
|
|
|
|
|
*rrset_flags = PACKED_RRSET_CD;
|
|
|
|
|
else *rrset_flags = 0;
|
|
|
|
|
if(type == htons(LDNS_RR_TYPE_NSEC) && nsec_at_apex(pkt))
|
|
|
|
|
*rrset_flags |= PACKED_RRSET_NSEC_AT_APEX;
|
|
|
|
|
|
|
|
|
|
h = hashlittle(&type, sizeof(type), h);
|
|
|
|
|
h = hashlittle(&dclass, sizeof(dclass), h);
|
|
|
|
|
h = hashlittle(rrset_flags, sizeof(uint32_t), h);
|
|
|
|
|
h = dname_pkt_hash(pkt, dname, h);
|
|
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** compare rrset_parse with data. */
|
|
|
|
|
static int
|
|
|
|
|
rrset_parse_equals(struct rrset_parse* p, ldns_buffer* pkt, hashvalue_t h,
|
|
|
|
|
uint32_t rrset_flags, uint8_t* dname, size_t dnamelen,
|
|
|
|
|
uint16_t type, uint16_t dclass)
|
|
|
|
|
{
|
|
|
|
|
if(p->hash == h && p->dname_len == dnamelen && p->type == type &&
|
|
|
|
|
p->rrset_class == dclass && p->flags == rrset_flags &&
|
|
|
|
|
dname_pkt_compare(pkt, dname, p->dname) == 0)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Lookup in msg hashtable to find a rrset
|
|
|
|
|
*/
|
|
|
|
|
static struct rrset_parse*
|
|
|
|
|
hashtable_lookup(struct msg_parse* msg, ldns_buffer* pkt, hashvalue_t h,
|
|
|
|
|
uint32_t rrset_flags, uint8_t* dname, size_t dnamelen,
|
|
|
|
|
uint16_t type, uint16_t dclass)
|
|
|
|
|
{
|
|
|
|
|
struct rrset_parse* p = msg->hashtable[h & (PARSE_TABLE_SIZE-1)];
|
|
|
|
|
while(p) {
|
|
|
|
|
if(rrset_parse_equals(p, pkt, h, rrset_flags, dname, dnamelen,
|
|
|
|
|
type, dclass))
|
|
|
|
|
return p;
|
|
|
|
|
p = p->rrset_bucket_next;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-11 10:26:29 -04:00
|
|
|
/** Find rrset. If equal to previous it is fast. hash if not so.
|
|
|
|
|
* @param msg: the message with hash table.
|
2007-04-12 10:54:34 -04:00
|
|
|
* @param pkt: the packet in wireformat (needed for compression ptrs).
|
2007-04-11 10:26:29 -04:00
|
|
|
* @param dname: pointer to start of dname (compressed) in packet.
|
|
|
|
|
* @param dnamelen: uncompressed wirefmt length of dname.
|
|
|
|
|
* @param type: type of current rr.
|
|
|
|
|
* @param dclass: class of current rr.
|
|
|
|
|
* @param hash: hash value is returned if the rrset could not be found.
|
2007-04-13 11:00:56 -04:00
|
|
|
* @param rrset_flags: is returned if the rrset could not be found.
|
2007-04-12 10:54:34 -04:00
|
|
|
* @param prev_dname_first: dname of last seen RR. First seen dname.
|
|
|
|
|
* @param prev_dname_last: dname of last seen RR. Last seen dname.
|
2007-04-11 10:26:29 -04:00
|
|
|
* @param prev_dnamelen: dname len of last seen RR.
|
|
|
|
|
* @param prev_type: type of last seen RR.
|
|
|
|
|
* @param prev_dclass: class of last seen RR.
|
|
|
|
|
* @param rrset_prev: last seen RRset.
|
|
|
|
|
* @return the rrset if found, or null if no matching rrset exists.
|
|
|
|
|
*/
|
|
|
|
|
static struct rrset_parse*
|
2007-04-12 10:54:34 -04:00
|
|
|
find_rrset(struct msg_parse* msg, ldns_buffer* pkt, uint8_t* dname,
|
|
|
|
|
size_t dnamelen, uint16_t type, uint16_t dclass, hashvalue_t* hash,
|
2007-04-13 11:00:56 -04:00
|
|
|
uint32_t* rrset_flags,
|
2007-04-12 10:54:34 -04:00
|
|
|
uint8_t** prev_dname_first, uint8_t** prev_dname_last,
|
|
|
|
|
size_t* prev_dnamelen, uint16_t* prev_type,
|
2007-04-11 10:26:29 -04:00
|
|
|
uint16_t* prev_dclass, struct rrset_parse** rrset_prev)
|
|
|
|
|
{
|
|
|
|
|
if(rrset_prev) {
|
|
|
|
|
/* check if equal to previous item */
|
2007-04-12 10:54:34 -04:00
|
|
|
if(type == *prev_type && dclass == *prev_dclass &&
|
|
|
|
|
dnamelen == *prev_dnamelen &&
|
|
|
|
|
smart_compare(pkt, dname, *prev_dname_first,
|
|
|
|
|
*prev_dname_last) == 0) {
|
|
|
|
|
/* same as previous */
|
|
|
|
|
*prev_dname_last = dname;
|
|
|
|
|
return *rrset_prev;
|
|
|
|
|
}
|
2007-04-11 10:26:29 -04:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
/* find by hashing and lookup in hashtable */
|
2007-04-13 11:00:56 -04:00
|
|
|
*hash = pkt_hash_rrset(msg, pkt, dname, type, dclass, rrset_flags);
|
|
|
|
|
*rrset_prev = hashtable_lookup(msg, pkt, *hash, *rrset_flags,
|
|
|
|
|
dname, dnamelen, type, dclass);
|
|
|
|
|
if(*rrset_prev)
|
|
|
|
|
*prev_dname_first = (*rrset_prev)->dname;
|
|
|
|
|
else *prev_dname_first = dname;
|
|
|
|
|
*prev_dname_last = dname;
|
|
|
|
|
*prev_dnamelen = dnamelen;
|
|
|
|
|
*prev_type = type;
|
|
|
|
|
*prev_dclass = dclass;
|
|
|
|
|
return *rrset_prev;
|
2007-04-11 10:26:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse query section.
|
|
|
|
|
* @param pkt: packet, position at call must be at start of query section.
|
|
|
|
|
* at end position is after query section.
|
|
|
|
|
* @param msg: store results here.
|
|
|
|
|
* @return: 0 if OK, or rcode on error.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
parse_query_section(ldns_buffer* pkt, struct msg_parse* msg)
|
|
|
|
|
{
|
|
|
|
|
if(msg->qdcount == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
if(msg->qdcount > 1)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
log_assert(msg->qdcount == 1);
|
|
|
|
|
if(ldns_buffer_remaining(pkt) <= 0)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
msg->qname = ldns_buffer_current(pkt);
|
|
|
|
|
if((msg->qname_len = query_dname_len(pkt)) == 0)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < sizeof(uint16_t)*2)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
msg->qtype = ldns_buffer_read_u16(pkt);
|
|
|
|
|
msg->qclass = ldns_buffer_read_u16(pkt);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-13 11:00:56 -04:00
|
|
|
/**
|
|
|
|
|
* Allocate new rrset in region, fill with data.
|
|
|
|
|
*/
|
|
|
|
|
static struct rrset_parse*
|
|
|
|
|
new_rrset(struct msg_parse* msg, uint8_t* dname, size_t dnamelen,
|
|
|
|
|
uint16_t type, uint16_t dclass, hashvalue_t hash,
|
|
|
|
|
uint32_t rrset_flags, ldns_pkt_section section, region_type* region)
|
|
|
|
|
{
|
|
|
|
|
struct rrset_parse* p = region_alloc(region, sizeof(*p));
|
|
|
|
|
if(!p) return NULL;
|
|
|
|
|
p->rrset_bucket_next = msg->hashtable[hash & (PARSE_TABLE_SIZE-1)];
|
|
|
|
|
msg->hashtable[hash & (PARSE_TABLE_SIZE-1)] = p;
|
|
|
|
|
p->rrset_all_next = 0;
|
|
|
|
|
if(msg->rrset_last)
|
|
|
|
|
msg->rrset_last->rrset_all_next = p;
|
|
|
|
|
else msg->rrset_first = p;
|
|
|
|
|
msg->rrset_last = p;
|
|
|
|
|
p->hash = hash;
|
|
|
|
|
p->section = section;
|
|
|
|
|
p->dname = dname;
|
|
|
|
|
p->dname_len = dnamelen;
|
|
|
|
|
p->type = type;
|
|
|
|
|
p->rrset_class = dclass;
|
|
|
|
|
p->flags = rrset_flags;
|
2007-04-16 11:21:50 -04:00
|
|
|
p->rr_count = 0;
|
2007-04-13 11:00:56 -04:00
|
|
|
p->rr_first = 0;
|
|
|
|
|
p->rr_last = 0;
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Add rr (from packet here) to rrset, skips rr */
|
|
|
|
|
static int
|
|
|
|
|
add_rr_to_rrset(struct rrset_parse* rrset, ldns_buffer* pkt,
|
|
|
|
|
region_type* region, ldns_pkt_section section)
|
|
|
|
|
{
|
|
|
|
|
uint16_t rdatalen;
|
|
|
|
|
/* check section of rrset. */
|
|
|
|
|
if(rrset->section != section) {
|
|
|
|
|
/* silently drop it */
|
|
|
|
|
verbose(VERB_DETAIL, "Packet contains rrset data in "
|
|
|
|
|
"multiple sections, dropped last part.");
|
|
|
|
|
} else {
|
|
|
|
|
/* create rr */
|
|
|
|
|
struct rr_parse* rr = region_alloc(region, sizeof(*rr));
|
|
|
|
|
if(!rr) return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
rr->ttl_data = ldns_buffer_current(pkt);
|
|
|
|
|
rr->next = 0;
|
|
|
|
|
if(rrset->rr_last)
|
|
|
|
|
rrset->rr_last->next = rr;
|
|
|
|
|
else rrset->rr_first = rr;
|
|
|
|
|
rrset->rr_last = rr;
|
2007-04-16 11:21:50 -04:00
|
|
|
rrset->rr_count++;
|
2007-04-13 11:00:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* forwards */
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < 6) /* ttl + rdatalen */
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
ldns_buffer_skip(pkt, 4); /* ttl */
|
|
|
|
|
rdatalen = ldns_buffer_read_u16(pkt);
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < rdatalen)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
ldns_buffer_skip(pkt, (ssize_t)rdatalen);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-11 10:26:29 -04:00
|
|
|
/**
|
|
|
|
|
* Parse packet RR section, for answer, authority and additional sections.
|
|
|
|
|
* @param pkt: packet, position at call must be at start of section.
|
|
|
|
|
* at end position is after section.
|
|
|
|
|
* @param msg: store results here.
|
|
|
|
|
* @param region: how to alloc results.
|
|
|
|
|
* @param section: section enum.
|
|
|
|
|
* @param num_rrs: how many rrs are in the section.
|
|
|
|
|
* @param num_rrsets: returns number of rrsets in the section.
|
|
|
|
|
* @return: 0 if OK, or rcode on error.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
parse_section(ldns_buffer* pkt, struct msg_parse* msg, region_type* region,
|
|
|
|
|
ldns_pkt_section section, uint16_t num_rrs, size_t* num_rrsets)
|
|
|
|
|
{
|
|
|
|
|
uint16_t i;
|
2007-04-12 10:54:34 -04:00
|
|
|
uint8_t* dname, *prev_dname_f = NULL, *prev_dname_l = NULL;
|
2007-04-11 10:26:29 -04:00
|
|
|
size_t dnamelen, prev_dnamelen = 0;
|
|
|
|
|
uint16_t type, prev_type = 0;
|
|
|
|
|
uint16_t dclass, prev_dclass = 0;
|
2007-04-13 11:00:56 -04:00
|
|
|
uint32_t rrset_flags = 0;
|
|
|
|
|
hashvalue_t hash = 0;
|
2007-04-11 10:26:29 -04:00
|
|
|
struct rrset_parse* rrset, *rrset_prev = NULL;
|
2007-04-13 11:00:56 -04:00
|
|
|
int r;
|
2007-04-11 10:26:29 -04:00
|
|
|
|
|
|
|
|
if(num_rrs == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) <= 0)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
for(i=0; i<num_rrs; i++) {
|
|
|
|
|
/* parse this RR. */
|
|
|
|
|
dname = ldns_buffer_current(pkt);
|
|
|
|
|
if((dnamelen = pkt_dname_len(pkt)) == 0)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < 10) /* type, class, ttl, len */
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
ldns_buffer_read(pkt, &type, sizeof(type));
|
|
|
|
|
ldns_buffer_read(pkt, &dclass, sizeof(dclass));
|
|
|
|
|
|
|
|
|
|
/* see if it is part of an existing RR set */
|
2007-04-12 10:54:34 -04:00
|
|
|
if((rrset = find_rrset(msg, pkt, dname, dnamelen, type, dclass,
|
2007-04-13 11:00:56 -04:00
|
|
|
&hash, &rrset_flags, &prev_dname_f, &prev_dname_l,
|
|
|
|
|
&prev_dnamelen, &prev_type, &prev_dclass,
|
|
|
|
|
&rrset_prev)) != 0) {
|
2007-04-11 10:26:29 -04:00
|
|
|
/* check if it fits the existing rrset */
|
|
|
|
|
/* add to rrset. */
|
|
|
|
|
} else {
|
2007-04-13 11:00:56 -04:00
|
|
|
/* it is a new RR set. hash&flags already calculated.*/
|
|
|
|
|
(*num_rrsets)++;
|
|
|
|
|
rrset = new_rrset(msg, dname, dnamelen, type, dclass,
|
|
|
|
|
hash, rrset_flags, section, region);
|
|
|
|
|
if(!rrset) return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
rrset_prev = rrset;
|
2007-04-11 10:26:29 -04:00
|
|
|
}
|
2007-04-13 11:00:56 -04:00
|
|
|
if((r=add_rr_to_rrset(rrset, pkt, region, section)))
|
|
|
|
|
return r;
|
2007-04-11 10:26:29 -04:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse the packet.
|
|
|
|
|
* @param pkt: packet, position at call must be at start of packet.
|
|
|
|
|
* at end position is after packet.
|
|
|
|
|
* @param msg: where to store results.
|
|
|
|
|
* @param region: how to alloc results.
|
|
|
|
|
* @return: 0 if OK, or rcode on error.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
parse_packet(ldns_buffer* pkt, struct msg_parse* msg,
|
|
|
|
|
region_type* region)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < LDNS_HEADER_SIZE)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
/* read the header */
|
|
|
|
|
ldns_buffer_read(pkt, &msg->id, sizeof(uint16_t));
|
|
|
|
|
msg->flags = ldns_buffer_read_u16(pkt);
|
|
|
|
|
msg->qdcount = ldns_buffer_read_u16(pkt);
|
|
|
|
|
msg->ancount = ldns_buffer_read_u16(pkt);
|
|
|
|
|
msg->nscount = ldns_buffer_read_u16(pkt);
|
|
|
|
|
msg->arcount = ldns_buffer_read_u16(pkt);
|
|
|
|
|
if(msg->qdcount > 1)
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
if((ret = parse_query_section(pkt, msg)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
if((ret = parse_section(pkt, msg, region, LDNS_SECTION_ANSWER,
|
|
|
|
|
msg->ancount, &msg->an_rrsets)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
if((ret = parse_section(pkt, msg, region, LDNS_SECTION_AUTHORITY,
|
|
|
|
|
msg->nscount, &msg->ns_rrsets)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
if((ret = parse_section(pkt, msg, region, LDNS_SECTION_ADDITIONAL,
|
|
|
|
|
msg->arcount, &msg->ar_rrsets)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
if(ldns_buffer_remaining(pkt) > 0) {
|
|
|
|
|
/* spurious data at end of packet. ignore */
|
2007-04-13 11:00:56 -04:00
|
|
|
verbose(VERB_DETAIL, "spurious data at end of packet ignored");
|
2007-04-11 10:26:29 -04:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-16 11:21:50 -04:00
|
|
|
/** copy and allocate an uncompressed dname. */
|
|
|
|
|
static uint8_t*
|
|
|
|
|
copy_uncompr(uint8_t* dname, size_t len)
|
|
|
|
|
{
|
|
|
|
|
uint8_t* p = (uint8_t*)malloc(len);
|
|
|
|
|
if(!p) return 0;
|
|
|
|
|
memmove(p, dname, len);
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** allocate qinfo, return 0 on error. */
|
|
|
|
|
static int
|
|
|
|
|
parse_create_qinfo(struct msg_parse* msg, struct query_info* qinf)
|
|
|
|
|
{
|
|
|
|
|
if(msg->qname) {
|
|
|
|
|
if(!(qinf->qname = copy_uncompr(msg->qname, msg->qname_len)))
|
|
|
|
|
return 0;
|
|
|
|
|
} else qinf->qname = 0;
|
|
|
|
|
qinf->qnamesize = msg->qname_len;
|
|
|
|
|
qinf->qtype = msg->qtype;
|
|
|
|
|
qinf->qclass = msg->qclass;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** allocate replyinfo, return 0 on error. */
|
|
|
|
|
static int
|
|
|
|
|
parse_create_repinfo(struct msg_parse* msg, struct reply_info** rep)
|
|
|
|
|
{
|
|
|
|
|
/* rrset_count-1 because the first ref is part of the struct. */
|
|
|
|
|
*rep = malloc(sizeof(struct reply_info) +
|
|
|
|
|
sizeof(struct rrset_ref) * (msg->rrset_count-1) +
|
|
|
|
|
sizeof(struct ub_packed_rrset_key*) * msg->rrset_count);
|
|
|
|
|
if(!*rep) return 0;
|
|
|
|
|
(*rep)->reply = 0; /* unused */
|
|
|
|
|
(*rep)->replysize = 0; /* unused */
|
|
|
|
|
(*rep)->flags = msg->flags;
|
|
|
|
|
(*rep)->qdcount = msg->qdcount;
|
|
|
|
|
(*rep)->ttl = 0;
|
|
|
|
|
(*rep)->an_numrrsets = msg->an_rrsets;
|
|
|
|
|
(*rep)->ns_numrrsets = msg->ns_rrsets;
|
|
|
|
|
(*rep)->ar_numrrsets = msg->ar_rrsets;
|
|
|
|
|
(*rep)->rrset_count = msg->rrset_count;
|
|
|
|
|
/* array starts after the refs */
|
|
|
|
|
(*rep)->rrsets = (struct ub_packed_rrset_key**)&
|
|
|
|
|
((*rep)->ref[msg->rrset_count]);
|
|
|
|
|
/* zero the arrays to assist cleanup in case of malloc failure */
|
|
|
|
|
memset( (*rep)->rrsets, 0,
|
|
|
|
|
sizeof(struct ub_packed_rrset_key*) * msg->rrset_count);
|
|
|
|
|
memset( &(*rep)->ref[0], 0,
|
|
|
|
|
sizeof(struct rrset_ref) * msg->rrset_count);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** allocate (special) rrset keys, return 0 on error. */
|
|
|
|
|
static int
|
|
|
|
|
parse_alloc_rrset_keys(struct msg_parse* msg, struct reply_info* rep,
|
|
|
|
|
struct alloc_cache* alloc)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
for(i=0; i<msg->rrset_count; i++) {
|
|
|
|
|
rep->rrsets[i] = alloc_special_obtain(alloc);
|
|
|
|
|
if(!rep->rrsets[i])
|
|
|
|
|
return 0;
|
|
|
|
|
rep->rrsets[i]->entry.data = NULL;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** calculate the size of one rr */
|
|
|
|
|
static int
|
|
|
|
|
calc_size(ldns_buffer* pkt, uint16_t type, struct rr_parse* rr)
|
|
|
|
|
{
|
|
|
|
|
const ldns_rr_descriptor* desc;
|
|
|
|
|
uint16_t pkt_len; /* length of rr inside the packet */
|
|
|
|
|
rr->size = sizeof(uint16_t); /* the rdatalen */
|
|
|
|
|
ldns_buffer_set_position(pkt, (size_t)(rr->ttl_data -
|
|
|
|
|
ldns_buffer_begin(pkt) + 4)); /* skip ttl */
|
|
|
|
|
pkt_len = ldns_buffer_read_u16(pkt);
|
|
|
|
|
if(ldns_buffer_remaining(pkt) < pkt_len)
|
|
|
|
|
return 0;
|
|
|
|
|
desc = ldns_rr_descript(type);
|
|
|
|
|
if(desc->_dname_count > 0) {
|
|
|
|
|
int count = (int)desc->_dname_count;
|
|
|
|
|
int rdf = 0;
|
|
|
|
|
size_t len;
|
|
|
|
|
/* skip first part. */
|
|
|
|
|
while(count) {
|
|
|
|
|
switch(desc->_wireformat[rdf]) {
|
|
|
|
|
case LDNS_RDF_TYPE_DNAME:
|
|
|
|
|
/* decompress every domain name */
|
|
|
|
|
if((len = pkt_dname_len(pkt)) == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
rr->size += len;
|
|
|
|
|
count--;
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_STR:
|
|
|
|
|
len = ldns_buffer_current(pkt)[0] + 1;
|
|
|
|
|
rr->size += len;
|
|
|
|
|
ldns_buffer_skip(pkt, (ssize_t)len);
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_CLASS:
|
|
|
|
|
case LDNS_RDF_TYPE_ALG:
|
|
|
|
|
case LDNS_RDF_TYPE_INT8:
|
|
|
|
|
ldns_buffer_skip(pkt, 1);
|
|
|
|
|
rr->size += 1;
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_INT16:
|
|
|
|
|
case LDNS_RDF_TYPE_TYPE:
|
|
|
|
|
case LDNS_RDF_TYPE_CERT_ALG:
|
|
|
|
|
ldns_buffer_skip(pkt, 2);
|
|
|
|
|
rr->size += 2;
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_INT32:
|
|
|
|
|
case LDNS_RDF_TYPE_TIME:
|
|
|
|
|
case LDNS_RDF_TYPE_A:
|
|
|
|
|
case LDNS_RDF_TYPE_PERIOD:
|
|
|
|
|
ldns_buffer_skip(pkt, 4);
|
|
|
|
|
rr->size += 4;
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_TSIGTIME:
|
|
|
|
|
ldns_buffer_skip(pkt, 6);
|
|
|
|
|
rr->size += 6;
|
|
|
|
|
break;
|
|
|
|
|
case LDNS_RDF_TYPE_AAAA:
|
|
|
|
|
ldns_buffer_skip(pkt, 16);
|
|
|
|
|
rr->size += 16;
|
|
|
|
|
default:
|
|
|
|
|
log_assert(false); /* add type above */
|
|
|
|
|
/* only types that appear before a domain *
|
|
|
|
|
* name are needed. rest is simply copied. */
|
|
|
|
|
}
|
|
|
|
|
rdf++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* remaining rdata */
|
|
|
|
|
rr->size += pkt_len;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** calculate size of rrs in rrset, 0 on parse failure */
|
|
|
|
|
static int
|
|
|
|
|
parse_rr_size(ldns_buffer* pkt, struct rrset_parse* pset, size_t* allocsize)
|
|
|
|
|
{
|
|
|
|
|
struct rr_parse* p = pset->rr_first;
|
|
|
|
|
*allocsize = 0;
|
|
|
|
|
while(p) {
|
|
|
|
|
if(!calc_size(pkt, ntohs(pset->type), p))
|
|
|
|
|
return 0;
|
|
|
|
|
*allocsize += p->size;
|
|
|
|
|
p = p->next;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** create rrset return 0 or rcode */
|
|
|
|
|
static int
|
|
|
|
|
parse_create_rrset(ldns_buffer* pkt, struct rrset_parse* pset,
|
|
|
|
|
struct packed_rrset_data** data)
|
|
|
|
|
{
|
|
|
|
|
/* calculate sizes of rr rdata */
|
|
|
|
|
size_t allocsize;
|
|
|
|
|
if(!parse_rr_size(pkt, pset, &allocsize))
|
|
|
|
|
return LDNS_RCODE_FORMERR;
|
|
|
|
|
/* allocate */
|
|
|
|
|
*data = malloc(sizeof(struct packed_rrset_data) + pset->rr_count*
|
|
|
|
|
(sizeof(size_t)+sizeof(uint8_t*)+sizeof(uint32_t)) + allocsize);
|
|
|
|
|
if(!*data)
|
|
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Copy and decompress rrs
|
|
|
|
|
* @param pkt: the packet for compression pointer resolution.
|
|
|
|
|
* @param msg: the parsed message
|
|
|
|
|
* @param rep: reply info to put rrs into.
|
|
|
|
|
* @return 0 or rcode.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
parse_copy_decompress(ldns_buffer* pkt, struct msg_parse* msg,
|
|
|
|
|
struct reply_info* rep)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
size_t i;
|
|
|
|
|
struct rrset_parse *pset = msg->rrset_first;
|
|
|
|
|
struct packed_rrset_data* data;
|
|
|
|
|
log_assert(rep);
|
|
|
|
|
|
|
|
|
|
for(i=0; i<rep->rrset_count; i++) {
|
|
|
|
|
rep->rrsets[i]->rk.flags = pset->flags;
|
|
|
|
|
rep->rrsets[i]->rk.dname_len = pset->dname_len;
|
|
|
|
|
rep->rrsets[i]->rk.dname = malloc(pset->dname_len + 4);
|
|
|
|
|
if(!rep->rrsets[i]->rk.dname)
|
|
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
/** copy & decompress dname */
|
|
|
|
|
dname_pkt_copy(pkt, rep->rrsets[i]->rk.dname, pset->dname);
|
|
|
|
|
/** copy over type and class */
|
|
|
|
|
memmove(&rep->rrsets[i]->rk.dname[pset->dname_len],
|
|
|
|
|
&pset->type, sizeof(uint16_t));
|
|
|
|
|
memmove(&rep->rrsets[i]->rk.dname[pset->dname_len+2],
|
|
|
|
|
&pset->rrset_class, sizeof(uint16_t));
|
|
|
|
|
/** read data part. */
|
|
|
|
|
if((ret=parse_create_rrset(pkt, pset, &data)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
rep->rrsets[i]->entry.data = (void*)data;
|
|
|
|
|
|
|
|
|
|
pset = pset->rrset_all_next;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** allocate and decompress message and rrsets, returns 0 or rcode. */
|
|
|
|
|
static int
|
|
|
|
|
parse_create_msg(ldns_buffer* pkt, struct msg_parse* msg,
|
|
|
|
|
struct alloc_cache* alloc, struct query_info* qinf,
|
|
|
|
|
struct reply_info** rep)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
log_assert(pkt && msg);
|
|
|
|
|
if(!parse_create_qinfo(msg, qinf))
|
|
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
if(!parse_create_repinfo(msg, rep))
|
|
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
if(!parse_alloc_rrset_keys(msg, *rep, alloc))
|
|
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
if((ret=parse_copy_decompress(pkt, msg, *rep)) != 0)
|
|
|
|
|
return ret;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-04-11 10:26:29 -04:00
|
|
|
|
2007-04-10 03:11:57 -04:00
|
|
|
int reply_info_parse(ldns_buffer* pkt, struct alloc_cache* alloc,
|
2007-04-10 03:56:05 -04:00
|
|
|
struct query_info* qinf, struct reply_info** rep)
|
|
|
|
|
{
|
2007-04-10 05:03:05 -04:00
|
|
|
/* use scratch pad region-allocator during parsing. */
|
2007-04-11 10:26:29 -04:00
|
|
|
region_type* region = region_create(malloc, free);
|
|
|
|
|
struct msg_parse* msg;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
*rep = NULL;
|
|
|
|
|
msg = region_alloc(region, sizeof(*msg));
|
|
|
|
|
if(!msg)
|
|
|
|
|
goto malloc_error;
|
|
|
|
|
memset(msg, 0, sizeof(*msg));
|
|
|
|
|
|
|
|
|
|
log_assert(ldns_buffer_position(pkt) == 0);
|
|
|
|
|
if((ret = parse_packet(pkt, msg, region)) != 0) {
|
|
|
|
|
region_free_all(region);
|
|
|
|
|
region_destroy(region);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-04-13 11:00:56 -04:00
|
|
|
|
2007-04-11 10:26:29 -04:00
|
|
|
/* parse OK, allocate return structures */
|
2007-04-16 11:21:50 -04:00
|
|
|
/* this also performs dname decompression */
|
|
|
|
|
*rep = NULL;
|
|
|
|
|
if((ret = parse_create_msg(pkt, msg, alloc, qinf, rep)) != 0) {
|
|
|
|
|
query_info_clear(qinf);
|
|
|
|
|
reply_info_parsedelete(*rep, alloc);
|
|
|
|
|
region_free_all(region);
|
|
|
|
|
region_destroy(region);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2007-04-11 10:26:29 -04:00
|
|
|
|
|
|
|
|
/* exit and cleanup */
|
|
|
|
|
region_free_all(region);
|
|
|
|
|
region_destroy(region);
|
|
|
|
|
return 0;
|
|
|
|
|
malloc_error:
|
|
|
|
|
region_free_all(region);
|
|
|
|
|
region_destroy(region);
|
2007-04-10 03:56:05 -04:00
|
|
|
return LDNS_RCODE_SERVFAIL;
|
|
|
|
|
}
|
2007-04-10 03:11:57 -04:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
reply_info_parsedelete(struct reply_info* rep, struct alloc_cache* alloc)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
if(!rep)
|
|
|
|
|
return;
|
|
|
|
|
/* no need to lock, since not shared in hashtables. */
|
|
|
|
|
for(i=0; i<rep->rrset_count; i++) {
|
|
|
|
|
ub_packed_rrset_parsedelete(rep->rrsets[i], alloc);
|
|
|
|
|
}
|
|
|
|
|
free(rep);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
int
|
|
|
|
|
query_info_parse(struct query_info* m, ldns_buffer* query)
|
2007-03-12 10:19:14 -04:00
|
|
|
{
|
|
|
|
|
uint8_t* q = ldns_buffer_begin(query);
|
|
|
|
|
/* minimum size: header + \0 + qtype + qclass */
|
|
|
|
|
if(ldns_buffer_limit(query) < LDNS_HEADER_SIZE + 5)
|
|
|
|
|
return 0;
|
|
|
|
|
log_assert(!LDNS_QR_WIRE(q));
|
|
|
|
|
log_assert(LDNS_OPCODE_WIRE(q) == LDNS_PACKET_QUERY);
|
|
|
|
|
log_assert(LDNS_QDCOUNT(q) == 1);
|
|
|
|
|
log_assert(ldns_buffer_position(query) == 0);
|
|
|
|
|
m->has_cd = (int)LDNS_CD_WIRE(q);
|
|
|
|
|
ldns_buffer_skip(query, LDNS_HEADER_SIZE);
|
2007-03-27 11:21:21 -04:00
|
|
|
m->qname = ldns_buffer_current(query);
|
2007-03-22 12:26:14 -04:00
|
|
|
if((m->qnamesize = query_dname_len(query)) == 0)
|
|
|
|
|
return 0; /* parse error */
|
2007-03-27 11:21:21 -04:00
|
|
|
if(ldns_buffer_remaining(query) < 4)
|
|
|
|
|
return 0; /* need qtype, qclass */
|
|
|
|
|
m->qtype = ldns_buffer_read_u16(query);
|
|
|
|
|
m->qclass = ldns_buffer_read_u16(query);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
query_info_allocqname(struct query_info* m)
|
|
|
|
|
{
|
|
|
|
|
uint8_t* q = m->qname;
|
2007-03-22 12:26:14 -04:00
|
|
|
if(!(m->qname = (uint8_t*)malloc(m->qnamesize))) {
|
2007-03-27 11:21:21 -04:00
|
|
|
log_err("query_info_allocqname: out of memory");
|
2007-03-22 12:26:14 -04:00
|
|
|
return 0; /* out of memory */
|
|
|
|
|
}
|
2007-04-02 06:16:02 -04:00
|
|
|
memcpy(m->qname, q, m->qnamesize);
|
2007-03-12 10:19:14 -04:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** tiny subroutine for msgreply_compare */
|
|
|
|
|
#define COMPARE_IT(x, y) \
|
|
|
|
|
if( (x) < (y) ) return -1; \
|
|
|
|
|
else if( (x) > (y) ) return +1; \
|
|
|
|
|
log_assert( (x) == (y) );
|
2007-04-02 09:58:02 -04:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
query_info_compare(void* m1, void* m2)
|
2007-03-12 10:19:14 -04:00
|
|
|
{
|
|
|
|
|
struct query_info* msg1 = (struct query_info*)m1;
|
|
|
|
|
struct query_info* msg2 = (struct query_info*)m2;
|
|
|
|
|
int mc;
|
|
|
|
|
/* from most different to least different for speed */
|
|
|
|
|
COMPARE_IT(msg1->qtype, msg2->qtype);
|
2007-04-12 10:02:02 -04:00
|
|
|
if((mc = query_dname_compare(msg1->qname, msg2->qname)) != 0)
|
2007-03-12 10:19:14 -04:00
|
|
|
return mc;
|
2007-04-12 10:02:02 -04:00
|
|
|
log_assert(msg1->qnamesize == msg2->qnamesize);
|
2007-03-12 10:19:14 -04:00
|
|
|
COMPARE_IT(msg1->has_cd, msg2->has_cd);
|
|
|
|
|
COMPARE_IT(msg1->qclass, msg2->qclass);
|
|
|
|
|
return 0;
|
|
|
|
|
#undef COMPARE_IT
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
void
|
|
|
|
|
query_info_clear(struct query_info* m)
|
2007-03-12 10:19:14 -04:00
|
|
|
{
|
2007-03-22 12:26:14 -04:00
|
|
|
free(m->qname);
|
2007-03-12 10:19:14 -04:00
|
|
|
m->qname = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
void
|
|
|
|
|
reply_info_clear(struct reply_info* m)
|
2007-03-12 10:19:14 -04:00
|
|
|
{
|
|
|
|
|
free(m->reply);
|
2007-03-22 12:26:14 -04:00
|
|
|
m->reply = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
size_t
|
|
|
|
|
msgreply_sizefunc(void* k, void* d)
|
2007-03-22 12:26:14 -04:00
|
|
|
{
|
|
|
|
|
struct query_info* q = (struct query_info*)k;
|
|
|
|
|
struct reply_info* r = (struct reply_info*)d;
|
|
|
|
|
return sizeof(struct msgreply_entry) + sizeof(struct reply_info)
|
|
|
|
|
+ r->replysize + q->qnamesize;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
void
|
|
|
|
|
query_entry_delete(void *k, void* ATTR_UNUSED(arg))
|
2007-03-22 12:26:14 -04:00
|
|
|
{
|
2007-03-23 08:41:38 -04:00
|
|
|
struct msgreply_entry* q = (struct msgreply_entry*)k;
|
|
|
|
|
lock_rw_destroy(&q->entry.lock);
|
|
|
|
|
query_info_clear(&q->key);
|
2007-03-22 12:26:14 -04:00
|
|
|
free(q);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
void
|
|
|
|
|
reply_info_delete(void* d, void* ATTR_UNUSED(arg))
|
2007-03-22 12:26:14 -04:00
|
|
|
{
|
|
|
|
|
struct reply_info* r = (struct reply_info*)d;
|
|
|
|
|
reply_info_clear(r);
|
|
|
|
|
free(r);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
hashvalue_t
|
|
|
|
|
query_info_hash(struct query_info *q)
|
2007-03-22 12:26:14 -04:00
|
|
|
{
|
|
|
|
|
hashvalue_t h = 0xab;
|
|
|
|
|
h = hashlittle(&q->qtype, sizeof(q->qtype), h);
|
|
|
|
|
h = hashlittle(&q->qclass, sizeof(q->qclass), h);
|
|
|
|
|
h = hashlittle(&q->has_cd, sizeof(q->has_cd), h);
|
2007-04-13 11:00:56 -04:00
|
|
|
h = dname_query_hash(q->qname, h);
|
2007-03-22 12:26:14 -04:00
|
|
|
return h;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
void
|
|
|
|
|
reply_info_answer(struct reply_info* rep, uint16_t qflags,
|
2007-03-22 12:26:14 -04:00
|
|
|
ldns_buffer* buffer)
|
|
|
|
|
{
|
|
|
|
|
uint16_t flags;
|
|
|
|
|
ldns_buffer_clear(buffer);
|
|
|
|
|
ldns_buffer_skip(buffer, 2); /* ID */
|
2007-04-03 05:29:09 -04:00
|
|
|
flags = rep->flags | (qflags & BIT_RD); /* copy RD bit */
|
|
|
|
|
log_assert(flags & BIT_QR); /* QR bit must be on in our replies */
|
2007-03-22 12:26:14 -04:00
|
|
|
ldns_buffer_write_u16(buffer, flags);
|
2007-03-29 06:00:10 -04:00
|
|
|
ldns_buffer_write(buffer, rep->reply, rep->replysize);
|
2007-03-22 12:26:14 -04:00
|
|
|
ldns_buffer_flip(buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-28 11:40:12 -04:00
|
|
|
void
|
|
|
|
|
reply_info_answer_iov(struct reply_info* rep, uint16_t qid,
|
2007-04-02 09:58:02 -04:00
|
|
|
uint16_t qflags, struct comm_reply* comrep, int cached)
|
2007-03-28 11:40:12 -04:00
|
|
|
{
|
2007-04-02 09:58:02 -04:00
|
|
|
/* [0]=reserved for tcplen, [1]=id, [2]=flags, [3]=message */
|
2007-03-28 11:40:12 -04:00
|
|
|
struct iovec iov[4];
|
|
|
|
|
|
2007-04-03 06:01:54 -04:00
|
|
|
iov[1].iov_base = (void*)&qid;
|
2007-03-28 11:40:12 -04:00
|
|
|
iov[1].iov_len = sizeof(uint16_t);
|
2007-04-02 09:58:02 -04:00
|
|
|
if(!cached) {
|
|
|
|
|
/* original flags, copy RD bit from query. */
|
2007-04-03 05:29:09 -04:00
|
|
|
qflags = rep->flags | (qflags & BIT_RD);
|
2007-04-02 09:58:02 -04:00
|
|
|
} else {
|
|
|
|
|
/* remove AA bit, copy RD and CD bits from query. */
|
2007-04-03 05:29:09 -04:00
|
|
|
qflags = (rep->flags & ~BIT_AA) | (qflags & (BIT_RD|BIT_CD));
|
2007-04-02 09:58:02 -04:00
|
|
|
}
|
2007-04-03 05:29:09 -04:00
|
|
|
log_assert(qflags & BIT_QR); /* QR bit must be on in our replies */
|
2007-04-02 09:58:02 -04:00
|
|
|
qflags = htons(qflags);
|
2007-04-03 06:01:54 -04:00
|
|
|
iov[2].iov_base = (void*)&qflags;
|
2007-03-28 11:40:12 -04:00
|
|
|
iov[2].iov_len = sizeof(uint16_t);
|
2007-04-03 06:01:54 -04:00
|
|
|
iov[3].iov_base = (void*)rep->reply;
|
2007-03-29 06:00:10 -04:00
|
|
|
iov[3].iov_len = rep->replysize;
|
2007-03-28 11:40:12 -04:00
|
|
|
comm_point_send_reply_iov(comrep, iov, 4);
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-02 09:58:02 -04:00
|
|
|
struct msgreply_entry*
|
|
|
|
|
query_info_entrysetup(struct query_info* q, struct reply_info* r,
|
|
|
|
|
hashvalue_t h)
|
2007-03-22 12:26:14 -04:00
|
|
|
{
|
|
|
|
|
struct msgreply_entry* e = (struct msgreply_entry*)malloc(
|
|
|
|
|
sizeof(struct msgreply_entry));
|
|
|
|
|
if(!e) return NULL;
|
|
|
|
|
memcpy(&e->key, q, sizeof(*q));
|
|
|
|
|
e->entry.hash = h;
|
|
|
|
|
e->entry.key = e;
|
|
|
|
|
e->entry.data = r;
|
|
|
|
|
lock_rw_init(&e->entry.lock);
|
2007-03-23 04:25:43 -04:00
|
|
|
lock_protect(&e->entry.lock, &e->key, sizeof(e->key));
|
|
|
|
|
lock_protect(&e->entry.lock, &e->entry.hash, sizeof(e->entry.hash) +
|
|
|
|
|
sizeof(e->entry.key) + sizeof(e->entry.data));
|
2007-03-22 12:26:14 -04:00
|
|
|
lock_protect(&e->entry.lock, e->key.qname, e->key.qnamesize);
|
|
|
|
|
q->qname = NULL;
|
|
|
|
|
return e;
|
2007-03-12 10:19:14 -04:00
|
|
|
}
|