message.c revision bd3ccd1c388bd914e6283c8d398c2d926c9005a3
/*
* Copyright (C) 1999 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.
*/
/***
*** Imports
***/
#include <config.h>
#include <stddef.h>
#include <string.h>
#include <isc/assertions.h>
#include <dns/rdataset.h>
#include <dns/rdataclass.h>
#include <dns/rdatatype.h>
#include <dns/rdatalist.h>
#include <dns/compress.h>
#define DNS_MESSAGE_OPCODE_MASK 0x7000U
#define DNS_MESSAGE_OPCODE_SHIFT 11
#define DNS_MESSAGE_RCODE_MASK 0x000fU
#define DNS_MESSAGE_FLAG_MASK 0x8ff0U
#define VALID_NAMED_SECTION(s) (((s) > DNS_SECTION_ANY) \
&& ((s) < DNS_SECTION_MAX))
#define VALID_SECTION(s) (((s) >= DNS_SECTION_ANY) \
&& ((s) < DNS_SECTION_MAX))
/*
* This is the size of each individual scratchpad buffer, and the numbers
* of various block allocations used within the server.
* XXXMLG These should come from a config setting.
*/
#define SCRATCHPAD_SIZE 512
#define NAME_COUNT 8
#define RDATA_COUNT 8
#define RDATALIST_COUNT 8
#define RDATASET_COUNT RDATALIST_COUNT
/*
* "helper" type, which consists of a block of some type, and is linkable.
* For it to work, sizeof(dns_msgblock_t) must be a multiple of the pointer
* size, or the allocated elements will not be alligned correctly.
*/
struct dns_msgblock {
unsigned int count;
unsigned int remaining;
}; /* dynamically sized */
static inline dns_msgblock_t *
msgblock_allocate(isc_mem_t *, unsigned int, unsigned int);
static inline void *
msgblock_internalget(dns_msgblock_t *, unsigned int);
static inline void
static inline void
/*
* Allocate a new dns_msgblock_t, and return a pointer to it. If no memory
* is free, return NULL.
*/
static inline dns_msgblock_t *
unsigned int count)
{
unsigned int length;
return (NULL);
return (block);
}
/*
* Return an element from the msgblock. If no more are available, return
* NULL.
*/
static inline void *
{
void *ptr;
return (NULL);
+ sizeof(dns_msgblock_t)
return (ptr);
}
static inline void
{
}
/*
* Release memory associated with a message block.
*/
static inline void
unsigned int sizeof_type)
{
unsigned int length;
}
/*
* Allocate a new dynamic buffer, and attach it to this message as the
* "current" buffer. (which is always the last on the list, for our
* uses)
*/
static inline dns_result_t
{
if (result != ISC_R_SUCCESS)
return (DNS_R_NOMEMORY);
return (DNS_R_SUCCESS);
}
static inline isc_buffer_t *
{
}
static inline void
{
}
static inline dns_name_t *
{
return (name);
}
return (NULL);
}
return (name);
}
static inline void
{
}
static inline dns_rdata_t *
{
return (rdata);
}
return (NULL);
}
return (rdata);
}
static inline void
{
}
static inline dns_rdatalist_t *
{
return (rdatalist);
}
sizeof(dns_rdatalist_t),
return (NULL);
}
return (rdatalist);
}
static inline void
{
}
static inline dns_rdataset_t *
{
return (rdataset);
}
return (NULL);
}
return (rdataset);
}
/*
* Init elements to default state. Used both when allocating a new element
* and when resetting one.
*/
static inline void
msginit(dns_message_t *m)
{
unsigned int i;
m->id = 0;
m->flags = 0;
m->rcode = 0;
m->opcode = 0;
m->rdclass = 0;
for (i = 0 ; i < DNS_SECTION_MAX ; i++) {
m->counts[i] = 0;
}
m->reserved = 0;
m->need_cctx_cleanup = 0;
}
/*
* Free all but one (or everything) for this message. This is used by
* both dns_message_reset() and dns_message_parse().
*/
static void
{
unsigned int i;
/*
* Clean up name lists by calling the rdataset disassociate function.
*/
for (i = 0 ; i < DNS_SECTION_MAX ; i++) {
}
}
}
/*
* Clean up linked lists.
*/
/*
* Run through the free lists, and just unlink anything found there.
* The memory isn't lost since these are part of message blocks we
* have allocated.
*/
}
}
}
}
if (!everything) {
}
}
if (!everything) {
}
}
if (!everything) {
}
}
if (!everything) {
}
}
/*
* rdatalists could be empty.
*/
}
}
/*
* Set other bits to normal default values.
*/
if (!everything)
}
{
dns_message_t *m;
unsigned int i;
|| intent == DNS_MESSAGE_INTENTRENDER);
if (m == NULL)
return(DNS_R_NOMEMORY);
m->magic = MESSAGE_MAGIC;
m->from_to_wire = intent;
msginit(m);
for (i = 0 ; i < DNS_SECTION_MAX ; i++)
ISC_LIST_INIT(m->sections[i]);
ISC_LIST_INIT(m->scratchpad);
ISC_LIST_INIT(m->names);
ISC_LIST_INIT(m->rdatas);
ISC_LIST_INIT(m->rdatalists);
ISC_LIST_INIT(m->freename);
ISC_LIST_INIT(m->freerdata);
if (iresult != ISC_R_SUCCESS)
goto cleanup1;
goto cleanup2;
goto cleanup3;
goto cleanup4;
if (intent == DNS_MESSAGE_INTENTPARSE) {
goto cleanup5;
}
*msgp = m;
return (DNS_R_SUCCESS);
/*
* Cleanup for error returns.
*/
m->magic = 0;
return (DNS_R_NOMEMORY);
}
void
{
}
void
{
}
static dns_result_t
{
return (DNS_R_SUCCESS);
}
}
return (DNS_R_NOTFOUND);
}
static dns_result_t
{
return (DNS_R_SUCCESS);
}
}
return (DNS_R_NOTFOUND);
}
/*
* Read a name from buffer "source".
*/
static dns_result_t
{
unsigned int tries;
/* XXXMLG Can this be done just once? */
else
/*
* First try: use current buffer.
* Second try: allocate a new buffer and use that.
*/
tries = 0;
while (tries < 2) {
scratch);
if (result == DNS_R_NOSPACE) {
tries++;
if (result != DNS_R_SUCCESS)
return (result);
} else {
return (result);
}
}
INSIST(0); /* Cannot get here... */
return (DNS_R_UNEXPECTED);
}
static dns_result_t
{
unsigned int tries;
/*
* First try: use current buffer.
* Second try: allocate a new buffer and use that.
*/
tries = 0;
while (tries < 2) {
scratch);
if (result == DNS_R_NOSPACE) {
tries++;
if (result != DNS_R_SUCCESS)
return (result);
} else {
return (result);
}
}
INSIST(0); /* Cannot get here... */
return (DNS_R_UNEXPECTED);
}
static dns_result_t
{
isc_region_t r;
unsigned int count;
return (DNS_R_NOMEMORY);
/*
* Parse the name out of this packet.
*/
isc_buffer_remaining(source, &r);
if (result != DNS_R_SUCCESS)
return (result);
/*
* Run through the section, looking to see if this name
* is already there. If it is found, put back the allocated
* name since we no longer need it, and set our name pointer
* to point to the name we found.
*/
/*
* If it is the first name in the section, accept it.
*
* If it is not, but is not the same as the name already
* in the question section, append to the section. Note that
* here in the question section this is illegal, so return
* FORMERR. In the future, check the opcode to see if
* this should be legal or not. In either case we no longer
* need this name pointer.
*/
if (result != DNS_R_SUCCESS) {
if (ISC_LIST_EMPTY(*section)) {
} else {
return (DNS_R_FORMERR);
}
} else {
}
/*
* Get type and class.
*/
isc_buffer_remaining(source, &r);
if (r.length < 4)
return (DNS_R_UNEXPECTEDEND);
/*
* If this class is different than the one we already read,
* this is an error.
*/
return (DNS_R_FORMERR);
/*
* Can't ask the same question twice.
*/
if (result == DNS_R_SUCCESS)
return (DNS_R_FORMERR);
/*
* Allocate a new rdatalist.
*/
return (DNS_R_NOMEMORY);
return (DNS_R_NOMEMORY);
/*
* Convert rdatalist to rdataset, and attach the latter to
* the name.
*/
if (result != DNS_R_SUCCESS)
return (result);
}
return (DNS_R_SUCCESS);
}
static dns_result_t
{
isc_region_t r;
unsigned int count;
unsigned int rdatalen;
return (DNS_R_NOMEMORY);
/*
* Parse the name out of this packet.
*/
isc_buffer_remaining(source, &r);
if (result != DNS_R_SUCCESS)
return (result);
/*
* Get type, class, ttl, and rdatalen. Verify that at least
* rdatalen bytes remain. (Some of this is deferred to
* later.)
*/
isc_buffer_remaining(source, &r);
return (DNS_R_UNEXPECTEDEND);
/*
* If this class is different than the one in the question
* section, bail.
*/
return (DNS_R_FORMERR);
/*
* If it is a tsig, verify that it is in the additional data
* section, and switch sections for the rest of this rdata.
*/
if (rdtype == dns_rdatatype_tsig) {
if (sectionid != DNS_SECTION_ADDITIONAL)
return (DNS_R_FORMERR);
}
/*
* ... now get ttl and rdatalen, and check buffer.
*/
return (DNS_R_UNEXPECTEDEND);
/*
* If we are doing a dynamic update don't bother searching
* for a name, just append this one to the end of the message.
*/
|| rdtype == dns_rdatatype_tsig) {
} else {
/*
* Run through the section, looking to see if this name
* is already there. If it is found, put back the
* allocated name since we no longer need it, and set
* our name pointer to point to the name we found.
*/
/*
* If it is a new name, append to the section.
*/
if (result == DNS_R_SUCCESS) {
} else {
}
}
/*
* If this is an OPT record, There Can Be Only One.
*/
#if 0 /* until there is a dns_rdatatype_opt XXXMLG */
return (DNS_R_FORMERR);
#endif
/*
* Search name for the particular type and class.
* Skip this stage if in update mode, or this is a TSIG.
*/
|| rdtype == dns_rdatatype_tsig)
else
/*
* If we found an rdataset that matches, we need to
* append this rdata to that set. If we did not, we need
* to create a new rdatalist, store the important bits there,
* convert it to an rdataset, and link the latter to the name.
* Yuck.
*/
if (result == DNS_R_NOTFOUND) {
return (DNS_R_NOMEMORY);
return (DNS_R_NOMEMORY);
}
/*
* Read the rdata from the wire format.
*/
return (DNS_R_NOMEMORY);
if (result != DNS_R_SUCCESS)
return (result);
/*
* XXX Perform a totally ugly hack here to pull
* the rdatalist out of the private field in the rdataset,
* and append this rdata to the rdatalist's linked list
* of rdata.
*/
/*
* If this is an OPT record, remember it.
*/
#if 0 /* until there is a dns_rdatatype_opt XXXMLG */
if (rdtype == dns_rdatatype_opt)
#endif
}
return (DNS_R_SUCCESS);
}
{
isc_region_t r;
isc_buffer_remaining(source, &r);
if (r.length < DNS_MESSAGE_HEADERLEN)
return (DNS_R_UNEXPECTEDEND);
if (ret != DNS_R_SUCCESS)
return (ret);
if (ret != DNS_R_SUCCESS)
return (ret);
if (ret != DNS_R_SUCCESS)
return (ret);
if (ret != DNS_R_SUCCESS)
return (ret);
isc_buffer_remaining(source, &r);
if (r.length != 0)
return (DNS_R_FORMERR);
/*
* XXXMLG Need to check the tsig(s) here...
*/
return (DNS_R_SUCCESS);
}
{
isc_region_t r;
/*
* Erase the contents of this buffer.
*/
/*
* Make certain there is enough for at least the header in this
* buffer.
*/
isc_buffer_available(buffer, &r);
if (result != DNS_R_SUCCESS)
return (result);
/*
* Reserve enough space for the header in this buffer.
*/
return (DNS_R_SUCCESS);
}
{
isc_region_t r, rn;
/*
* ensure that the new buffer is empty, and has enough space to
* hold the current contents.
*/
/*
* Copy the contents from the old to the new buffer.
*/
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOSPACE);
return (DNS_R_SUCCESS);
}
{
isc_region_t r;
return (DNS_R_NOSPACE);
return (DNS_R_SUCCESS);
}
{
unsigned int used;
if (sectionid == DNS_SECTION_QUESTION)
else
return (ISC_R_SUCCESS);
/*
* Shrink the space in the buffer by the reserved amount.
*/
total = 0;
count = 0;
/*
* If out of space, record stats on what we rendered
* so far, and return that status.
*/
if (result != DNS_R_SUCCESS) {
return (result);
}
}
}
return (ISC_R_SUCCESS);
}
{
isc_region_t r;
msg->need_cctx_cleanup = 0;
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOMORE);
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOMORE);
return (DNS_R_SUCCESS);
}
void
dns_name_t **name)
{
}
{
/*
* XXX These requirements are probably too intensive, especially
* where things can be NULL, but as they are they ensure that if
* something is NON-NULL, indicating that the caller expects it
* to be filled in, that we can in fact fill it in.
*/
if (type == dns_rdatatype_any) {
} else {
}
/*
* Search through, looking for the name.
*/
if (result == DNS_R_NOTFOUND)
return (DNS_R_NXDOMAIN);
else if (result != DNS_R_SUCCESS)
return (result);
/*
* And now look for the type.
*/
return (DNS_R_SUCCESS);
if (result == DNS_R_NOTFOUND)
return (DNS_R_NXRDATASET);
return (result);
}
void
{
/*
* Unlink the name from the old section
*/
}
void
{
}
{
return (DNS_R_NOMEMORY);
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOMEMORY);
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOMEMORY);
return (DNS_R_SUCCESS);
}
{
return (DNS_R_NOMEMORY);
return (DNS_R_SUCCESS);
}
void
{
}
void
{
}
void
{
}
void
{
}