xfrin.c revision 63bb6b854b6db073856b0f2b2924d1af33e0eaf6
/*
* 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.
*/
/* $Id: xfrin.c,v 1.24 1999/10/29 22:42:44 gson Exp $ */
#include <config.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <isc/assertions.h>
#include <dns/dbiterator.h>
#include <dns/fixedname.h>
#include <dns/rdatalist.h>
#include <dns/rdataset.h>
#include <dns/rdatasetiter.h>
/*
* Incoming AXFR and IXFR.
*/
} while (0)
typedef struct xfrin_ctx xfrin_ctx_t;
/*
* The states of the *XFR state machine. We handle both IXFR and AXFR
* with a single integrated state machine because they cannot be distinguished
* immediately - an AXFR response to an IXFR request can only be detected
* when the first two (2) response RRs have already been received.
*/
typedef enum {
/*
* Incoming zone transfer context.
*/
struct xfrin_ctx {
int recvs; /* Number of receives in progress */
int tasks; /* Number of active tasks (0 or 1) */
/*
* Requested transfer type (dns_rdatatype_axfr or
* dns_rdatatype_ixfr). The actual transfer type
* may differ due to IXFR->AXFR fallback.
*/
unsigned char qbuffer_data[512];
/* Incoming reply TCP message */
int difflen; /* Number of pending tuples */
unsigned int nmsg; /* Number of messages recvd */
void *tsigctx; /* TSIG verification context */
unsigned int sincetsig; /* recvd since the last TSIG */
/*
* AXFR- and IXFR-specific data. Only one is used at a time
* according to the is_ixfr flag, so this could be a union,
* but keeping them separate makes it a bit simpler to clean
* things up when destroying the context.
*/
struct {
} axfr;
struct {
} ixfr;
};
/**************************************************************************/
/*
* Forward declarations.
*/
static dns_result_t
xfrin_ctx_t **xfrp);
dns_rdata_t *rdata);
dns_rdata_t *rdata);
static void
/**************************************************************************/
/*
* AXFR handling
*/
static dns_result_t
return (result);
}
static dns_result_t
"rbt", /* XXX guess */
0, NULL, /* XXX guess */
dbp));
}
static dns_result_t
{
return (result);
}
/* Store a set of AXFR RRs in the database. */
static dns_result_t
return (result);
}
static dns_result_t
return (result);
}
/**************************************************************************/
/*
* IXFR handling
*/
static dns_result_t
return (result);
}
static dns_result_t
{
return (result);
}
/* Apply a set of IXFR changes to the database. */
static dns_result_t
}
return (result);
}
static dns_result_t
/* XXX enter ready-to-commit state here */
}
return (result);
}
/**************************************************************************/
/*
*/
/*
* Handle a single incoming resource record according to the current
* state.
*/
static dns_result_t
{
redo:
case XFRST_INITIALSOA:
/*
* Remember the serial number in the intial SOA.
* We need it to recognize the end of an IXFR.
*/
{
/*
* This must be the single SOA record that is
* sent when the current version on the master
* is not newer than the version in the request.
*/
"master has %u, not updating",
}
break;
case XFRST_FIRSTDATA:
/*
* If the transfer begins with one SOA record, it is an AXFR,
* if it begins with two SOAs, it is an IXFR.
*/
} else {
}
goto redo;
case XFRST_IXFR_DELSOA:
break;
case XFRST_IXFR_DEL:
goto redo;
}
break;
case XFRST_IXFR_ADDSOA:
break;
case XFRST_IXFR_ADD:
break;
} else {
goto redo;
}
}
break;
case XFRST_AXFR:
break;
}
break;
case XFRST_END:
default:
INSIST(0);
break;
}
return (result);
}
void
{
/* XXX log zone name and master sockaddr */
if (result == DNS_R_NOTLOADED)
else
== DNS_R_SUCCESS);
"requesting AXFR of initial version");
} else {
"database exists, trying IXFR");
}
zone,
db,
task,
dns_db_detach(&db);
if (result != DNS_R_SUCCESS)
"zone transfer setup failed");
return;
}
}
/* The rest will be done when the task runs its shutdown event. */
}
static void
if (result != DNS_R_UPTODATE) {
}
}
static dns_result_t
xfrin_ctx_t **xfrp)
{
return (DNS_R_NOMEMORY);
/* sockaddr */
/* qbuffer */
/* qbuffer_data */
/* tcpmsg */
/* end_serial */
/* is_ixfr */
/* ixfr.request_serial */
/* ixfr.end_serial */
sizeof(xfr->qbuffer_data),
return (DNS_R_SUCCESS);
return (result);
}
void
return;
}
/* XXX the resolver could use this, too */
static dns_result_t
return (result);
}
/*
* A connection has been established.
*/
static void
if (result != DNS_R_SUCCESS)
}
/*
* Convert a tuple into a dns_name_t suitable for inserting
* into the given dns_message_t.
*/
static isc_result_t
{
return (result);
}
/*
* Build an *XFR request and send its length prefix.
*/
static dns_result_t
unsigned char length[2];
/* Create the request message */
/* Create a name for the question section. */
/* Formulate the question and attach it to the question name. */
/* Get the SOA and add it to the authority section. */
/* XXX is using the current version the right thing? */
}
/* Save the query TSIG and don't let message_destroy free it */
return (result);
}
/* XXX there should be library support for sending DNS TCP messages */
static void
{
xfrin_send_done, xfr));
if (result != DNS_R_SUCCESS)
}
static void
{
xfrin_recv_done, xfr));
if (result != DNS_R_SUCCESS)
}
static void
isc_event_free(&ev);
if (maybe_free(xfr))
return;
return;
}
result == DNS_R_SUCCESS;
{
{
result == DNS_R_SUCCESS;
{
}
}
}
if (result != DNS_R_NOMORE)
goto failure;
/* Reset the counter */
/* Free the last tsig, if there is one */
}
/* Update the last tsig pointer */
/* Reset msg->tsig so it doesn't get freed */
{
goto failure;
}
}
/* Update the number of messages received */
/* Reset msg->querytsig so it doesn't get freed */
/* Copy the context back */
} else {
/* Read the next message. */
xfrin_recv_done, xfr));
}
return;
}
if (result != DNS_R_SUCCESS)
}
static void
/* This will log "giving up: timeout". */
}
static void
}
static isc_boolean_t
return (ISC_FALSE);
if (xfr->tcpmsg_valid)
return (ISC_TRUE);
}
/* XXX log zone name, master sockaddr, and the words "zone transfer". */
static void
{
}