1999-12-16 23:11:07 +00:00
|
|
|
/*
|
2000-02-03 23:50:32 +00:00
|
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
1999-12-16 23:11:07 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/error.h>
|
|
|
|
#include <isc/mem.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
|
|
|
|
#include <dns/aclconf.h>
|
|
|
|
#include <dns/types.h>
|
|
|
|
#include <dns/zone.h>
|
|
|
|
#include <dns/zoneconf.h>
|
2000-03-06 19:06:07 +00:00
|
|
|
#include <dns/ssu.h>
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
/* XXX copied from zone.c */
|
|
|
|
#define MAX_XFER_TIME (2*3600) /* Documented default is 2 hours. */
|
2000-01-31 19:53:14 +00:00
|
|
|
#define DNS_DEFAULT_IDLEIN 3600 /* 1 hour */
|
|
|
|
#define DNS_DEFAULT_IDLEOUT 3600 /* 1 hour */
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Convenience function for configuring a single zone ACL.
|
|
|
|
*/
|
|
|
|
static isc_result_t
|
2000-04-06 23:59:19 +00:00
|
|
|
configure_zone_acl(dns_c_zone_t *czone, dns_c_ctx_t *cctx, dns_c_view_t *cview,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_aclconfctx_t *aclconfctx, dns_zone_t *zone,
|
|
|
|
isc_result_t (*getcacl)(dns_c_zone_t *, dns_c_ipmatchlist_t **),
|
2000-04-06 23:59:19 +00:00
|
|
|
isc_result_t (*getviewcacl)(dns_c_view_t *, dns_c_ipmatchlist_t **),
|
|
|
|
isc_result_t (*getglobalcacl)(dns_c_ctx_t *, dns_c_ipmatchlist_t **),
|
1999-12-16 23:11:07 +00:00
|
|
|
void (*setzacl)(dns_zone_t *, dns_acl_t *),
|
|
|
|
void (*clearzacl)(dns_zone_t *))
|
|
|
|
{
|
|
|
|
isc_result_t result;
|
|
|
|
dns_c_ipmatchlist_t *cacl;
|
|
|
|
dns_acl_t *dacl = NULL;
|
|
|
|
result = (*getcacl)(czone, &cacl);
|
2000-04-07 00:51:32 +00:00
|
|
|
if (result == ISC_R_NOTFOUND && getviewcacl != NULL && cview != NULL) {
|
2000-04-06 23:59:19 +00:00
|
|
|
result = (*getviewcacl)(cview, &cacl);
|
|
|
|
}
|
|
|
|
if (result == ISC_R_NOTFOUND && getglobalcacl != NULL) {
|
|
|
|
result = (*getglobalcacl)(cctx, &cacl);
|
2000-02-22 21:24:24 +00:00
|
|
|
}
|
1999-12-16 23:11:07 +00:00
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
result = dns_acl_fromconfig(cacl, cctx, aclconfctx,
|
|
|
|
dns_zone_getmctx(zone), &dacl);
|
|
|
|
dns_c_ipmatchlist_detach(&cacl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
(*setzacl)(zone, dacl);
|
|
|
|
dns_acl_detach(&dacl);
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
} else if (result == ISC_R_NOTFOUND) {
|
|
|
|
(*clearzacl)(zone);
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
} else {
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-21 19:22:35 +00:00
|
|
|
|
|
|
|
static dns_zonetype_t
|
|
|
|
dns_zonetype_fromconf(dns_c_zonetype_t cztype) {
|
|
|
|
switch (cztype) {
|
|
|
|
case dns_c_zone_master:
|
|
|
|
return dns_zone_master;
|
|
|
|
case dns_c_zone_forward:
|
|
|
|
return dns_zone_forward;
|
|
|
|
case dns_c_zone_slave:
|
|
|
|
return dns_zone_slave;
|
|
|
|
case dns_c_zone_stub:
|
|
|
|
return dns_zone_stub;
|
|
|
|
case dns_c_zone_hint:
|
|
|
|
return dns_zone_hint;
|
|
|
|
}
|
|
|
|
INSIST(0);
|
|
|
|
return (dns_zone_none); /*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
2000-04-06 23:59:19 +00:00
|
|
|
dns_zone_configure(dns_c_ctx_t *cctx, dns_c_view_t *cview,
|
|
|
|
dns_c_zone_t *czone, dns_aclconfctx_t *ac,
|
|
|
|
dns_zone_t *zone)
|
1999-12-16 23:11:07 +00:00
|
|
|
{
|
|
|
|
isc_result_t result;
|
|
|
|
isc_boolean_t boolean;
|
|
|
|
const char *filename = NULL;
|
2000-01-27 19:44:49 +00:00
|
|
|
#ifdef notyet
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_severity_t severity;
|
2000-01-27 19:44:49 +00:00
|
|
|
#endif
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_iplist_t *iplist = NULL;
|
|
|
|
isc_uint32_t i;
|
|
|
|
isc_sockaddr_t sockaddr;
|
|
|
|
isc_int32_t maxxfr;
|
|
|
|
in_port_t port;
|
2000-01-31 15:09:09 +00:00
|
|
|
struct in_addr in4addr_any;
|
2000-02-09 19:04:26 +00:00
|
|
|
isc_sockaddr_t sockaddr_any4, sockaddr_any6;
|
2000-03-06 19:06:07 +00:00
|
|
|
dns_ssutable_t *ssutable;
|
2000-01-31 15:09:09 +00:00
|
|
|
|
2000-01-31 18:00:07 +00:00
|
|
|
in4addr_any.s_addr = htonl(INADDR_ANY);
|
|
|
|
isc_sockaddr_fromin(&sockaddr_any4, &in4addr_any, 0);
|
2000-02-09 19:04:26 +00:00
|
|
|
isc_sockaddr_fromin6(&sockaddr_any6, &in6addr_any, 0);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
dns_zone_setclass(zone, czone->zclass);
|
|
|
|
|
|
|
|
/* XXX needs to be an zone option */
|
|
|
|
result = dns_zone_setdbtype(zone, "rbt");
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
|
|
|
switch (czone->ztype) {
|
|
|
|
case dns_c_zone_master:
|
|
|
|
dns_zone_settype(zone, dns_zone_master);
|
|
|
|
result = dns_c_zone_getfile(czone, &filename);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = dns_zone_setdatabase(zone, filename);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
2000-01-27 19:44:49 +00:00
|
|
|
#ifdef notyet
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getchecknames(czone, &severity);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
dns_zone_setchecknames(zone, severity);
|
|
|
|
else
|
|
|
|
dns_zone_setchecknames(zone, dns_c_severity_fail);
|
2000-01-27 19:44:49 +00:00
|
|
|
#endif
|
2000-04-06 23:59:19 +00:00
|
|
|
result = configure_zone_acl(czone, cctx, NULL, ac, zone,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_zone_getallowupd,
|
2000-04-06 23:59:19 +00:00
|
|
|
NULL, NULL,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_zone_setupdateacl,
|
|
|
|
dns_zone_clearupdateacl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
2000-04-06 23:59:19 +00:00
|
|
|
result = configure_zone_acl(czone, cctx, cview, ac, zone,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_zone_getallowquery,
|
2000-04-06 23:59:19 +00:00
|
|
|
dns_c_view_getallowquery,
|
2000-04-06 20:08:34 +00:00
|
|
|
dns_c_ctx_getallowquery,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_zone_setqueryacl,
|
|
|
|
dns_zone_clearqueryacl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
2000-04-06 23:59:19 +00:00
|
|
|
result = configure_zone_acl(czone, cctx, cview, ac, zone,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_zone_getallowtransfer,
|
2000-04-06 23:59:19 +00:00
|
|
|
dns_c_view_gettransferacl,
|
2000-04-06 20:08:34 +00:00
|
|
|
dns_c_ctx_getallowtransfer,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_zone_setxfracl,
|
|
|
|
dns_zone_clearxfracl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = dns_c_zone_getdialup(czone, &boolean);
|
2000-04-21 00:18:23 +00:00
|
|
|
#ifdef notyet
|
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getdialup(cview, &boolean);
|
|
|
|
#endif
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getdialup(cctx, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
boolean = ISC_FALSE;
|
|
|
|
dns_zone_setoption(zone, DNS_ZONE_O_DIALUP, boolean);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_getnotify(czone, &boolean);
|
2000-04-21 00:18:23 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getnotify(cview, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getnotify(cctx, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
boolean = ISC_TRUE;
|
|
|
|
dns_zone_setoption(zone, DNS_ZONE_O_NOTIFY, boolean);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-04-20 20:58:50 +00:00
|
|
|
dns_zone_clearnotify(zone);
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getalsonotify(czone, &iplist);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
for (i = 0; i < iplist->nextidx; i++) {
|
|
|
|
result = dns_zone_addnotify(zone,
|
|
|
|
&iplist->ips[i]);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
}
|
2000-04-20 20:58:50 +00:00
|
|
|
}
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_getmaxtranstimeout(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getmaxtransfertimeout(cview, &maxxfr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 23:13:22 +00:00
|
|
|
result = dns_c_ctx_getmaxtransfertimeout(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = MAX_XFER_TIME;
|
2000-01-31 23:13:22 +00:00
|
|
|
dns_zone_setmaxxfrout(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-01-31 23:13:22 +00:00
|
|
|
result = dns_c_zone_getmaxtransidleout(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getmaxtransferidleout(cview, &maxxfr);
|
2000-04-21 00:20:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getmaxtransferidleout(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = DNS_DEFAULT_IDLEOUT;
|
2000-01-31 23:13:22 +00:00
|
|
|
dns_zone_setidleout(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-03-06 19:06:07 +00:00
|
|
|
ssutable = NULL;
|
|
|
|
result = dns_c_zone_getssuauth(czone, &ssutable);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
dns_ssutable_t *newssutable = NULL;
|
|
|
|
dns_ssutable_attach(ssutable, &newssutable);
|
|
|
|
dns_zone_setssutable(zone, newssutable);
|
|
|
|
}
|
|
|
|
|
1999-12-16 23:11:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case dns_c_zone_forward:
|
|
|
|
#ifdef notyet
|
|
|
|
/*
|
|
|
|
* forward zones are still in a state of flux
|
|
|
|
*/
|
|
|
|
czone->u.fzone.check_names; /* XXX unused in BIND 8 */
|
|
|
|
czone->u.fzone.forward; /* XXX*/
|
|
|
|
czone->u.fzone.forwarders; /* XXX*/
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case dns_c_zone_slave:
|
|
|
|
dns_zone_settype(zone, dns_zone_slave);
|
|
|
|
result = dns_c_zone_getfile(czone, &filename);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
result = dns_zone_setdatabase(zone, filename);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
2000-01-27 19:44:49 +00:00
|
|
|
#ifdef notyet
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getchecknames(czone, &severity);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
dns_zone_setchecknames(zone, severity);
|
|
|
|
else
|
|
|
|
dns_zone_setchecknames(zone, dns_c_severity_warn);
|
2000-01-27 19:44:49 +00:00
|
|
|
#endif
|
2000-04-06 23:59:19 +00:00
|
|
|
result = configure_zone_acl(czone, cctx, cview, ac, zone,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_c_zone_getallowquery,
|
2000-04-06 23:59:19 +00:00
|
|
|
dns_c_view_getallowquery,
|
2000-04-06 20:08:34 +00:00
|
|
|
dns_c_ctx_getallowquery,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_zone_setqueryacl,
|
|
|
|
dns_zone_clearqueryacl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = dns_c_zone_getmasterport(czone, &port);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
port = 53;
|
|
|
|
dns_zone_setmasterport(zone, port);
|
|
|
|
|
2000-04-20 20:58:50 +00:00
|
|
|
dns_zone_clearmasters(zone);
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getmasterips(czone, &iplist);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
for (i = 0; i < iplist->nextidx; i++) {
|
|
|
|
result = dns_zone_addmaster(zone,
|
|
|
|
&iplist->ips[i]);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
}
|
2000-04-20 20:58:50 +00:00
|
|
|
}
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_getmaxtranstimein(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 19:53:14 +00:00
|
|
|
result = dns_c_ctx_getmaxtransfertimein(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = MAX_XFER_TIME;
|
2000-01-31 19:53:14 +00:00
|
|
|
dns_zone_setmaxxfrin(zone, maxxfr);
|
|
|
|
|
|
|
|
result = dns_c_zone_getmaxtransidlein(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 19:53:14 +00:00
|
|
|
result = dns_c_ctx_getmaxtransferidlein(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = DNS_DEFAULT_IDLEIN;
|
2000-01-31 19:53:14 +00:00
|
|
|
dns_zone_setidlein(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_gettransfersource(czone, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_gettransfersource(cview, &sockaddr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 18:00:07 +00:00
|
|
|
result = dns_c_ctx_gettransfersource(cctx, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
sockaddr = sockaddr_any4;
|
2000-01-31 18:00:07 +00:00
|
|
|
dns_zone_setxfrsource4(zone, &sockaddr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-02-09 19:04:26 +00:00
|
|
|
result = dns_c_zone_gettransfersourcev6(czone, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_gettransfersourcev6(cview, &sockaddr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-02-09 19:04:26 +00:00
|
|
|
result = dns_c_ctx_gettransfersourcev6(cctx, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
sockaddr = sockaddr_any6;
|
2000-02-09 19:04:26 +00:00
|
|
|
dns_zone_setxfrsource6(zone, &sockaddr);
|
|
|
|
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getmaxtranstimeout(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getmaxtransfertimeout(cview, &maxxfr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 23:13:22 +00:00
|
|
|
result = dns_c_ctx_getmaxtransfertimeout(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = MAX_XFER_TIME;
|
2000-01-31 23:13:22 +00:00
|
|
|
dns_zone_setmaxxfrout(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-01-31 23:13:22 +00:00
|
|
|
result = dns_c_zone_getmaxtransidleout(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getmaxtransferidleout(cview, &maxxfr);
|
2000-04-21 00:20:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getmaxtransferidleout(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = DNS_DEFAULT_IDLEOUT;
|
2000-01-31 23:13:22 +00:00
|
|
|
dns_zone_setidleout(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-04-21 02:14:33 +00:00
|
|
|
result = dns_c_zone_getdialup(czone, &boolean);
|
|
|
|
#ifdef notyet
|
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getdialup(cview, &boolean);
|
|
|
|
#endif
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getdialup(cctx, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
boolean = ISC_FALSE;
|
|
|
|
dns_zone_setoption(zone, DNS_ZONE_O_DIALUP, boolean);
|
|
|
|
|
|
|
|
result = dns_c_zone_getnotify(czone, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_getnotify(cview, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
result = dns_c_ctx_getnotify(cctx, &boolean);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
boolean = ISC_TRUE;
|
|
|
|
dns_zone_setoption(zone, DNS_ZONE_O_NOTIFY, boolean);
|
|
|
|
|
2000-04-21 02:17:55 +00:00
|
|
|
dns_zone_clearnotify(zone);
|
2000-04-21 02:14:33 +00:00
|
|
|
result = dns_c_zone_getalsonotify(czone, &iplist);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
for (i = 0; i < iplist->nextidx; i++) {
|
|
|
|
result = dns_zone_addnotify(zone,
|
|
|
|
&iplist->ips[i]);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
}
|
2000-04-21 02:17:55 +00:00
|
|
|
}
|
2000-04-21 02:14:33 +00:00
|
|
|
|
1999-12-16 23:11:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case dns_c_zone_stub:
|
|
|
|
dns_zone_settype(zone, dns_zone_stub);
|
|
|
|
result = dns_c_zone_getfile(czone, &filename);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
result = dns_zone_setdatabase(zone, filename);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
2000-01-27 19:44:49 +00:00
|
|
|
#ifdef notyet
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getchecknames(czone, &severity);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
dns_zone_setchecknames(zone, severity);
|
|
|
|
else
|
|
|
|
dns_zone_setchecknames(zone, dns_c_severity_warn);
|
2000-01-27 19:44:49 +00:00
|
|
|
#endif
|
2000-04-06 23:59:19 +00:00
|
|
|
result = configure_zone_acl(czone, cctx, cview, ac, zone,
|
|
|
|
dns_c_zone_getallowquery,
|
|
|
|
dns_c_view_getallowquery,
|
2000-04-06 20:08:34 +00:00
|
|
|
dns_c_ctx_getallowquery,
|
1999-12-16 23:11:07 +00:00
|
|
|
dns_zone_setqueryacl,
|
|
|
|
dns_zone_clearqueryacl);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = dns_c_zone_getmasterport(czone, &port);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
port = 53;
|
|
|
|
dns_zone_setmasterport(zone, port);
|
|
|
|
|
2000-04-20 20:58:50 +00:00
|
|
|
dns_zone_clearmasters(zone);
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getmasterips(czone, &iplist);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
for (i = 0; i < iplist->nextidx; i++) {
|
|
|
|
result = dns_zone_addmaster(zone,
|
|
|
|
&iplist->ips[i]);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
|
|
|
}
|
2000-04-20 20:58:50 +00:00
|
|
|
}
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_getmaxtranstimein(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 19:53:14 +00:00
|
|
|
result = dns_c_ctx_getmaxtransfertimein(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = MAX_XFER_TIME;
|
2000-01-31 19:53:14 +00:00
|
|
|
dns_zone_setmaxxfrin(zone, maxxfr);
|
|
|
|
|
|
|
|
result = dns_c_zone_getmaxtransidlein(czone, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 19:53:14 +00:00
|
|
|
result = dns_c_ctx_getmaxtransferidlein(cctx, &maxxfr);
|
2000-04-07 18:16:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
maxxfr = DNS_DEFAULT_IDLEIN;
|
2000-01-31 19:53:14 +00:00
|
|
|
dns_zone_setidlein(zone, maxxfr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
|
|
|
result = dns_c_zone_gettransfersource(czone, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_gettransfersource(cview, &sockaddr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-31 18:00:07 +00:00
|
|
|
result = dns_c_ctx_gettransfersource(cctx, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
sockaddr = sockaddr_any4;
|
2000-01-31 18:00:07 +00:00
|
|
|
dns_zone_setxfrsource4(zone, &sockaddr);
|
1999-12-16 23:11:07 +00:00
|
|
|
|
2000-02-09 19:04:26 +00:00
|
|
|
result = dns_c_zone_gettransfersourcev6(czone, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS && cview != NULL)
|
|
|
|
result = dns_c_view_gettransfersourcev6(cview, &sockaddr);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-02-09 19:04:26 +00:00
|
|
|
result = dns_c_ctx_gettransfersourcev6(cctx, &sockaddr);
|
2000-04-07 17:27:22 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
sockaddr = sockaddr_any6;
|
2000-02-09 19:04:26 +00:00
|
|
|
dns_zone_setxfrsource6(zone, &sockaddr);
|
|
|
|
|
1999-12-16 23:11:07 +00:00
|
|
|
case dns_c_zone_hint:
|
|
|
|
dns_zone_settype(zone, dns_zone_hint);
|
|
|
|
result = dns_c_zone_getfile(czone, &filename);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
result = dns_zone_setdatabase(zone, filename);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-12-16 23:11:07 +00:00
|
|
|
return (result);
|
2000-01-27 19:44:49 +00:00
|
|
|
#ifdef notyet
|
1999-12-16 23:11:07 +00:00
|
|
|
result = dns_c_zone_getchecknames(czone, &severity);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
dns_zone_setchecknames(zone, severity);
|
|
|
|
else
|
|
|
|
dns_zone_setchecknames(zone, dns_c_severity_fail);
|
2000-01-27 19:44:49 +00:00
|
|
|
#endif
|
1999-12-16 23:11:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-12-16 23:11:07 +00:00
|
|
|
}
|
|
|
|
|
2000-01-21 19:22:35 +00:00
|
|
|
isc_boolean_t
|
|
|
|
dns_zone_reusable(dns_zone_t *zone, dns_c_zone_t *czone)
|
|
|
|
{
|
|
|
|
const char *cfilename;
|
|
|
|
const char *zfilename;
|
|
|
|
|
|
|
|
if (dns_zonetype_fromconf(czone->ztype) != dns_zone_gettype(zone))
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
cfilename = NULL;
|
|
|
|
(void) dns_c_zone_getfile(czone, &cfilename);
|
|
|
|
zfilename = dns_zone_getdatabase(zone);
|
|
|
|
if (cfilename == NULL || zfilename == NULL ||
|
|
|
|
strcmp(cfilename, zfilename) != 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
/* XXX Compare masters, too. */
|
|
|
|
|
|
|
|
return (ISC_TRUE);
|
|
|
|
}
|
|
|
|
|
2000-01-27 19:44:49 +00:00
|
|
|
isc_result_t
|
|
|
|
dns_zonemgr_configure(dns_c_ctx_t *cctx, dns_zonemgr_t *zmgr)
|
|
|
|
{
|
|
|
|
isc_int32_t val;
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
result = dns_c_ctx_gettransfersin(cctx, &val);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
2000-01-27 19:44:49 +00:00
|
|
|
val = 10;
|
|
|
|
dns_zonemgr_settransfersin(zmgr, val);
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|