Skip to content
Snippets Groups Projects
Commit d2f18a44 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Merge branch 'axfr-out' of git+ssh://git.nic.cz/projects/labs/cutedns into axfr-out

parents 0ef61b02 fe9d5f5e
No related branches found
No related tags found
No related merge requests found
......@@ -17,5 +17,6 @@ const error_table_t dnslib_error_msgs[DNSLIB_ERROR_COUNT] = {
{DNSLIB_EHASH, "Error in hash table."},
{DNSLIB_EZONEIN, "Error inserting zone."},
{DNSLIB_ENOZONE, "No such zone found."},
{DNSLIB_EDNAMEPTR, "Domain name pointer larger than allowed."},
{DNSLIB_ERROR, 0}
};
......@@ -29,8 +29,9 @@ enum dnslib_error {
DNSLIB_EHASH, /*!< Error in hash table. */
DNSLIB_EZONEIN, /*!< Error inserting zone. */
DNSLIB_ENOZONE, /*!< No such zone found. */
DNSLIB_EDNAMEPTR, /*!< Domain name pointer larger than allowed. */
DNSLIB_ERROR_COUNT = 14
DNSLIB_ERROR_COUNT = 15
};
/*! \brief Table linking error messages to error codes. */
......
......@@ -127,6 +127,8 @@ typedef struct dnslib_compr dnslib_compr_t;
//static int COMPRESS_DNAMES = 1;
static const size_t DNSLIB_RESPONSE_MAX_PTR = 16383;
/*----------------------------------------------------------------------------*/
/* Non-API functions */
/*----------------------------------------------------------------------------*/
......@@ -565,6 +567,12 @@ DEBUG_DNSLIB_RESPONSE(
", pointer: %p\n", name, not_matched, pos, dname);
free(name);
);
if (pos > DNSLIB_RESPONSE_MAX_PTR) {
debug_dnslib_response("Pointer larger than it can be, not"
" saving\n");
return DNSLIB_EDNAMEPTR;
}
if (table->count == table->max &&
dnslib_response_realloc_compr(table) != 0) {
return DNSLIB_ENOMEM;
......@@ -1525,6 +1533,10 @@ int dnslib_response_add_rrset_answer(dnslib_response_t *response,
const dnslib_rrset_t *rrset, int tc,
int check_duplicates)
{
if (response == NULL || rrset == NULL) {
return DNSLIB_EBADARG;
}
debug_dnslib_response("add_rrset_answer()\n");
assert(response->header.arcount == 0);
assert(response->header.nscount == 0);
......@@ -1541,6 +1553,8 @@ int dnslib_response_add_rrset_answer(dnslib_response_t *response,
}
debug_dnslib_response("Trying to add RRSet to Answer section.\n");
debug_dnslib_response("RRset: %p\n", rrset);
debug_dnslib_response("Owner: %p\n", rrset->owner);
int rrs = dnslib_response_try_add_rrset(response->answer,
&response->an_rrsets, response,
......@@ -1563,6 +1577,10 @@ int dnslib_response_add_rrset_authority(dnslib_response_t *response,
const dnslib_rrset_t *rrset, int tc,
int check_duplicates)
{
if (response == NULL || rrset == NULL) {
return DNSLIB_EBADARG;
}
assert(response->header.arcount == 0);
if (response->ns_rrsets == response->max_ns_rrsets
......@@ -1599,6 +1617,10 @@ int dnslib_response_add_rrset_additional(dnslib_response_t *response,
const dnslib_rrset_t *rrset, int tc,
int check_duplicates)
{
if (response == NULL || rrset == NULL) {
return DNSLIB_EBADARG;
}
// if this is the first additional RRSet, add EDNS OPT RR first
if (response->header.arcount == 0
&& response->edns_response.version != EDNS_NOT_SUPPORTED) {
......
......@@ -1840,6 +1840,11 @@ rrset:
// we can send the RRSets in any order, so add the RRSIGs now
rrset = dnslib_rrset_rrsigs(rrset);
rrsigs:
if (rrset == NULL) {
++i;
continue;
}
ret = dnslib_response_add_rrset_answer(params->xfr->response,
rrset, 0, 0);
......@@ -1908,6 +1913,8 @@ static int ns_axfr_from_zone(dnslib_zone_t *zone, ns_xfr_t *xfr)
dnslib_zone_tree_apply_inorder(zone, ns_axfr_from_node, &params);
dnslib_zone_nsec3_apply_inorder(zone, ns_axfr_from_node, &params);
/*
* Last SOA
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment