rdataset.c revision c569a0e4d518bf30be1b2ba9cc3592fe470e9822
/*
* Copyright (C) 1999-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdataset.c,v 1.71 2004/02/19 01:23:42 marka Exp $ */
#include <config.h>
#include <stdlib.h>
#include <dns/rdataset.h>
#include <dns/compress.h>
void
/*
* Make 'rdataset' a valid, disassociated rdataset.
*/
rdataset->attributes = 0;
rdataset->privateuint4 = 0;
}
void
/*
* Invalidate 'rdataset'.
*/
rdataset->attributes = 0;
rdataset->privateuint4 = 0;
}
void
/*
* Disassociate 'rdataset' from its rdata, allowing it to be reused.
*/
rdataset->attributes = 0;
rdataset->privateuint4 = 0;
}
/*
* Is 'rdataset' associated?
*/
return (ISC_TRUE);
return (ISC_FALSE);
}
static void
}
static isc_result_t
return (ISC_R_NOMORE);
}
static void
/*
* This routine should never be called.
*/
REQUIRE(0);
}
static void
}
static unsigned int
/*
* This routine should never be called.
*/
REQUIRE(0);
return (0);
}
static dns_rdatasetmethods_t question_methods = {
NULL,
};
void
{
/*
* Make 'rdataset' a valid, associated, question rdataset, with a
* question class of 'rdclass' and type 'type'.
*/
}
unsigned int
/*
* Return the number of records in 'rdataset'.
*/
}
void
/*
* Make 'target' refer to the same rdataset as 'source'.
*/
}
/*
* Move the rdata cursor to the first rdata in the rdataset (if any).
*/
}
/*
* Move the rdata cursor to the next rdata in the rdataset (if any).
*/
}
void
/*
* Make 'rdata' refer to the current rdata.
*/
}
#define MAX_SHUFFLE 32
struct towire_sort {
int key;
};
static int
}
static isc_result_t
{
isc_region_t r;
unsigned int headlen;
/*
* Convert 'rdataset' to wire format, compressing names as specified
* in cctx, and storing the result in 'target'.
*/
count = 0;
count = 1;
/*
* This is a negative caching rdataset.
*/
unsigned int ncache_opts = 0;
if ((options & DNS_RDATASETTOWIRE_OMITDNSSEC) != 0)
countp));
} else {
if (result == ISC_R_NOMORE)
return (ISC_R_SUCCESS);
if (result != ISC_R_SUCCESS)
return (result);
}
/*
* Do we want to shuffle this anwer?
*/
} else {
}
if (shuffle) {
/*
* First we get handles to all of the rdata.
*/
i = 0;
do {
dns_rdata_init(&shuffled[i]);
i++;
} while (result == ISC_R_SUCCESS);
if (result != ISC_R_NOMORE)
goto cleanup;
/*
* Now we shuffle.
*/
if (WANT_FIXED(rdataset)) {
/*
* 'Fixed' order.
*/
for (i = 0; i < count; i++) {
}
} else if (WANT_RANDOM(rdataset)) {
/*
* 'Random' order.
*/
for (i = 0; i < count; i++) {
else
}
} else {
/*
* "Cyclic" order.
*/
unsigned int j;
if (val == ISC_UINT32_MAX)
for (i = 0; i < count; i++) {
else
j++;
if (j == count)
j = 0; /* Wrap around. */
}
}
/*
* Sorted order.
*/
}
savedbuffer = *target;
i = 0;
added = 0;
do {
/*
* Copy out the name, type, class, ttl.
*/
if (result != ISC_R_SUCCESS)
goto rollback;
if (!question)
+ 2; /* XXX 2 for rdata len */
goto rollback;
}
if (!question) {
/*
* Save space for rdlen.
*/
/*
* Copy out the rdata
*/
if (shuffle)
else {
}
if (result != ISC_R_SUCCESS)
goto rollback;
added++;
}
if (shuffle) {
i++;
if (i == count)
else
} else {
}
} while (result == ISC_R_SUCCESS);
if (result != ISC_R_NOMORE)
goto rollback;
goto cleanup;
goto cleanup;
}
*countp = 0;
*target = savedbuffer;
return (result);
}
void *order_arg,
unsigned int options,
unsigned int *countp)
{
}
void *order_arg,
unsigned int options,
unsigned int *countp,
void **state)
{
}
unsigned int options,
unsigned int *countp)
{
}
{
/*
* For each rdata in rdataset, call 'add' for each name and type in the
* rdata which is subject to additional section processing.
*/
if (result != ISC_R_SUCCESS)
return (result);
do {
if (result == ISC_R_SUCCESS)
} while (result == ISC_R_SUCCESS);
if (result != ISC_R_NOMORE)
return (result);
return (ISC_R_SUCCESS);
}
return (ISC_R_NOTIMPLEMENTED);
}
{
return (ISC_R_NOTIMPLEMENTED);
}