xfrin.c revision 4cd3d6df39927315e3fadc07a8da3788175f4195
/*
* 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.1 1999/08/20 05:35:16 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/fixedname.h>
#include <dns/rdatalist.h>
#include <dns/rdataset.h>
#include <dns/rdatasetiter.h>
#include <dns/dbiterator.h>
/*
* Incoming AXFR and IXFR.
*/
/*
* TODO:
*
* maintenance based on SOA timers (with support for the "dialup" option)
* transmitting SOA queries
* more error checking
*/
} 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 */
/*
* 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
char *addrstr, /* XXX */
unsigned int port,
xfrin_ctx_t **xfrp);
dns_rdata_t *rdata);
dns_rdata_t *rdata);
/**************************************************************************/
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
#if 0
#else
/* XXX Temporary code for testing only. */
{
}
#endif
return (result);
}
/**************************************************************************/
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 gets sent when
* the current version on the master is not newer than the
* version in the request.
*/
printf("requested %u, master has %u, not updating\n",
}
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:
break;
default:
INSIST(0);
break;
}
return (result);
}
void
unsigned char dom[] = "\007dynamic\007araneus\002fi";
/* char dom[] = "\003tky\003hut\002fi"; */
printf("Testing ixfr...\n");
== DNS_R_SUCCESS);
if (result == DNS_R_NOTFOUND) {
printf("no database exists, trying to create with axfr\n");
} else {
printf("database exists, trying ixfr\n");
}
db,
task,
&name,
}
/* The rest will be done when the task runs its shutdown event */
}
static void
if (result != DNS_R_UPTODATE) {
printf("error in incoming zone transfer: %s: %s\n",
}
}
char *addrstr, /* XXX */
unsigned int port,
xfrin_ctx_t **xfrp)
{
return (DNS_R_NOMEMORY);
/* sockaddr */
/* qbuffer */
/* qbuffer_data */
/* tcpmsg */
/* end_serial */
/* is_ixfr */
/* ixfr.request_serial */
/* ixfr.end_serial */
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. Build an *XFR request
* and send its length prefix.
*/
static void
unsigned char length[2];
printf("connected\n");
/* Get the SOA. */
/* XXX is using the current version the right thing? */
printf("requesting IXFR for serial %u\n",
/* Create a dns_rdatalist_t */
}
return;
}
/* XXX there should be library support for sending DNS TCP messages */
static void
{
printf("sendlen done\n");
xfrin_send_done, xfr));
return;
}
static void
{
printf("send done\n");
xfrin_recv_done, xfr));
return;
}
static void
isc_event_free(&ev);
printf("tcp msg recv done\n");
if (maybe_free(xfr))
return;
/* XXX should tell message library not to combine names,
like for dynamic update */
result == DNS_R_SUCCESS;
{
{
result == DNS_R_SUCCESS;
{
}
}
}
if (result != DNS_R_NOMORE)
goto failure;
} else {
/* Read the next message. */
xfrin_recv_done, xfr));
}
return;
}
static void
}
static void
}
static isc_boolean_t
return (ISC_FALSE);
printf("freeing xfrin context\n");
}
if (xfr->tcpmsg_valid)
}
printf("xfrin_shutdown done\n");
return (ISC_TRUE);
}