1 /* $NetBSD: update.c,v 1.11 2015/07/08 17:28:55 christos Exp $ */
4 * Copyright (C) 2004-2014 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1999-2003 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: update.c,v 1.199 2011/12/22 07:32:40 each Exp */
24 #include <isc/netaddr.h>
25 #include <isc/print.h>
26 #include <isc/serial.h>
27 #include <isc/stats.h>
28 #include <isc/string.h>
29 #include <isc/taskpool.h>
33 #include <dns/dbiterator.h>
35 #include <dns/dnssec.h>
36 #include <dns/events.h>
37 #include <dns/fixedname.h>
38 #include <dns/journal.h>
39 #include <dns/keyvalues.h>
40 #include <dns/message.h>
42 #include <dns/nsec3.h>
43 #include <dns/private.h>
44 #include <dns/rdataclass.h>
45 #include <dns/rdataset.h>
46 #include <dns/rdatasetiter.h>
47 #include <dns/rdatastruct.h>
48 #include <dns/rdatatype.h>
52 #include <dns/update.h>
57 #include <named/client.h>
58 #include <named/log.h>
59 #include <named/server.h>
60 #include <named/update.h>
66 * This module implements dynamic update as in RFC2136.
71 * - document strict minimality
74 /**************************************************************************/
77 * Log level for tracing dynamic update protocol requests.
79 #define LOGLEVEL_PROTOCOL ISC_LOG_INFO
82 * Log level for low-level debug tracing.
84 #define LOGLEVEL_DEBUG ISC_LOG_DEBUG(8)
87 * Check an operation for failure. These macros all assume that
88 * the function using them has a 'result' variable and a 'failure'
93 if (result != ISC_R_SUCCESS) goto failure; \
94 } while (/*CONSTCOND*/0)
97 * Fail unconditionally with result 'code', which must not
98 * be ISC_R_SUCCESS. The reason for failure presumably has
99 * been logged already.
101 * The test against ISC_R_SUCCESS is there to keep the Solaris compiler
102 * from complaining about "end-of-loop code not reached".
108 if (result != ISC_R_SUCCESS) goto failure; \
109 } while (/*CONSTCOND*/0)
112 * Fail unconditionally and log as a client error.
113 * The test against ISC_R_SUCCESS is there to keep the Solaris compiler
114 * from complaining about "end-of-loop code not reached".
116 #define FAILC(code, msg) \
118 const char *_what = "failed"; \
121 case DNS_R_NXDOMAIN: \
122 case DNS_R_YXDOMAIN: \
123 case DNS_R_YXRRSET: \
124 case DNS_R_NXRRSET: \
125 _what = "unsuccessful"; \
127 update_log(client, zone, LOGLEVEL_PROTOCOL, \
128 "update %s: %s (%s)", _what, \
129 msg, isc_result_totext(result)); \
130 if (result != ISC_R_SUCCESS) goto failure; \
131 } while (/*CONSTCOND*/0)
132 #define PREREQFAILC(code, msg) \
134 inc_stats(zone, dns_nsstatscounter_updatebadprereq); \
136 } while (/*CONSTCOND*/0)
138 #define FAILN(code, name, msg) \
140 const char *_what = "failed"; \
143 case DNS_R_NXDOMAIN: \
144 case DNS_R_YXDOMAIN: \
145 case DNS_R_YXRRSET: \
146 case DNS_R_NXRRSET: \
147 _what = "unsuccessful"; \
149 if (isc_log_wouldlog(ns_g_lctx, LOGLEVEL_PROTOCOL)) { \
150 char _nbuf[DNS_NAME_FORMATSIZE]; \
151 dns_name_format(name, _nbuf, sizeof(_nbuf)); \
152 update_log(client, zone, LOGLEVEL_PROTOCOL, \
153 "update %s: %s: %s (%s)", _what, _nbuf, \
154 msg, isc_result_totext(result)); \
156 if (result != ISC_R_SUCCESS) goto failure; \
157 } while (/*CONSTCOND*/0)
158 #define PREREQFAILN(code, name, msg) \
160 inc_stats(zone, dns_nsstatscounter_updatebadprereq); \
161 FAILN(code, name, msg); \
162 } while (/*CONSTCOND*/0)
164 #define FAILNT(code, name, type, msg) \
166 const char *_what = "failed"; \
169 case DNS_R_NXDOMAIN: \
170 case DNS_R_YXDOMAIN: \
171 case DNS_R_YXRRSET: \
172 case DNS_R_NXRRSET: \
173 _what = "unsuccessful"; \
175 if (isc_log_wouldlog(ns_g_lctx, LOGLEVEL_PROTOCOL)) { \
176 char _nbuf[DNS_NAME_FORMATSIZE]; \
177 char _tbuf[DNS_RDATATYPE_FORMATSIZE]; \
178 dns_name_format(name, _nbuf, sizeof(_nbuf)); \
179 dns_rdatatype_format(type, _tbuf, sizeof(_tbuf)); \
180 update_log(client, zone, LOGLEVEL_PROTOCOL, \
181 "update %s: %s/%s: %s (%s)", \
182 _what, _nbuf, _tbuf, msg, \
183 isc_result_totext(result)); \
185 if (result != ISC_R_SUCCESS) goto failure; \
186 } while (/*CONSTCOND*/0)
187 #define PREREQFAILNT(code, name, type, msg) \
189 inc_stats(zone, dns_nsstatscounter_updatebadprereq); \
190 FAILNT(code, name, type, msg); \
191 } while (/*CONSTCOND*/0)
194 * Fail unconditionally and log as a server error.
195 * The test against ISC_R_SUCCESS is there to keep the Solaris compiler
196 * from complaining about "end-of-loop code not reached".
198 #define FAILS(code, msg) \
201 update_log(client, zone, LOGLEVEL_PROTOCOL, \
203 msg, isc_result_totext(result)); \
204 if (result != ISC_R_SUCCESS) goto failure; \
205 } while (/*CONSTCOND*/0)
208 * Return TRUE if NS_CLIENTATTR_TCP is set in the attributes other FALSE.
210 #define TCPCLIENT(client) (((client)->attributes & NS_CLIENTATTR_TCP) != 0)
212 /**************************************************************************/
214 typedef struct rr rr_t
;
217 /* dns_name_t name; */
222 typedef struct update_event update_event_t
;
224 struct update_event
{
225 ISC_EVENT_COMMON(update_event_t
);
228 dns_message_t
*answer
;
231 /**************************************************************************/
233 * Forward declarations.
236 static void update_action(isc_task_t
*task
, isc_event_t
*event
);
237 static void updatedone_action(isc_task_t
*task
, isc_event_t
*event
);
238 static isc_result_t
send_forward_event(ns_client_t
*client
, dns_zone_t
*zone
);
239 static void forward_done(isc_task_t
*task
, isc_event_t
*event
);
241 /**************************************************************************/
244 update_log(ns_client_t
*client
, dns_zone_t
*zone
,
245 int level
, const char *fmt
, ...) ISC_FORMAT_PRINTF(4, 5);
248 update_log(ns_client_t
*client
, dns_zone_t
*zone
,
249 int level
, const char *fmt
, ...)
253 char namebuf
[DNS_NAME_FORMATSIZE
];
254 char classbuf
[DNS_RDATACLASS_FORMATSIZE
];
256 if (client
== NULL
|| zone
== NULL
)
259 if (isc_log_wouldlog(ns_g_lctx
, level
) == ISC_FALSE
)
262 dns_name_format(dns_zone_getorigin(zone
), namebuf
,
264 dns_rdataclass_format(dns_zone_getclass(zone
), classbuf
,
268 vsnprintf(message
, sizeof(message
), fmt
, ap
);
271 ns_client_log(client
, NS_LOGCATEGORY_UPDATE
, NS_LOGMODULE_UPDATE
,
272 level
, "updating zone '%s/%s': %s",
273 namebuf
, classbuf
, message
);
277 update_log_cb(void *arg
, dns_zone_t
*zone
, int level
, const char *message
) {
278 update_log(arg
, zone
, level
, "%s", message
);
282 * Increment updated-related statistics counters.
285 inc_stats(dns_zone_t
*zone
, isc_statscounter_t counter
) {
286 isc_stats_increment(ns_g_server
->nsstats
, counter
);
289 isc_stats_t
*zonestats
= dns_zone_getrequeststats(zone
);
290 if (zonestats
!= NULL
)
291 isc_stats_increment(zonestats
, counter
);
296 * Check if we could have queried for the contents of this zone or
297 * if the zone is potentially updateable.
298 * If the zone can potentially be updated and the check failed then
299 * log a error otherwise we log a informational message.
302 checkqueryacl(ns_client_t
*client
, dns_acl_t
*queryacl
, dns_name_t
*zonename
,
303 dns_acl_t
*updateacl
, dns_ssutable_t
*ssutable
)
305 char namebuf
[DNS_NAME_FORMATSIZE
];
306 char classbuf
[DNS_RDATACLASS_FORMATSIZE
];
310 result
= ns_client_checkaclsilent(client
, NULL
, queryacl
, ISC_TRUE
);
311 if (result
!= ISC_R_SUCCESS
) {
312 pfilter_notify(result
, client
, "queryacl");
313 dns_name_format(zonename
, namebuf
, sizeof(namebuf
));
314 dns_rdataclass_format(client
->view
->rdclass
, classbuf
,
317 level
= (updateacl
== NULL
&& ssutable
== NULL
) ?
318 ISC_LOG_INFO
: ISC_LOG_ERROR
;
320 ns_client_log(client
, NS_LOGCATEGORY_UPDATE_SECURITY
,
321 NS_LOGMODULE_UPDATE
, level
,
322 "update '%s/%s' denied due to allow-query",
324 } else if (updateacl
== NULL
&& ssutable
== NULL
) {
325 dns_name_format(zonename
, namebuf
, sizeof(namebuf
));
326 dns_rdataclass_format(client
->view
->rdclass
, classbuf
,
329 result
= DNS_R_REFUSED
;
330 pfilter_notify(result
, client
, "updateacl");
331 ns_client_log(client
, NS_LOGCATEGORY_UPDATE_SECURITY
,
332 NS_LOGMODULE_UPDATE
, ISC_LOG_INFO
,
333 "update '%s/%s' denied", namebuf
, classbuf
);
339 * Override the default acl logging when checking whether a client
340 * can update the zone or whether we can forward the request to the
341 * master based on IP address.
343 * 'message' contains the type of operation that is being attempted.
344 * 'slave' indicates if this is a slave zone. If 'acl' is NULL then
346 * If the zone has no access controls configured ('acl' == NULL &&
347 * 'has_ssutable == ISC_FALS) log the attempt at info, otherwise
350 * If the request was signed log that we received it.
353 checkupdateacl(ns_client_t
*client
, dns_acl_t
*acl
, const char *message
,
354 dns_name_t
*zonename
, isc_boolean_t slave
,
355 isc_boolean_t has_ssutable
)
357 char namebuf
[DNS_NAME_FORMATSIZE
];
358 char classbuf
[DNS_RDATACLASS_FORMATSIZE
];
359 int level
= ISC_LOG_ERROR
;
360 const char *msg
= "denied";
363 if (slave
&& acl
== NULL
) {
364 result
= DNS_R_NOTIMP
;
365 level
= ISC_LOG_DEBUG(3);
368 result
= ns_client_checkaclsilent(client
, NULL
, acl
, ISC_FALSE
);
369 pfilter_notify(result
, client
, "updateacl");
370 if (result
== ISC_R_SUCCESS
) {
371 level
= ISC_LOG_DEBUG(3);
373 } else if (acl
== NULL
&& !has_ssutable
) {
374 level
= ISC_LOG_INFO
;
378 if (client
->signer
!= NULL
) {
379 dns_name_format(client
->signer
, namebuf
, sizeof(namebuf
));
380 ns_client_log(client
, NS_LOGCATEGORY_UPDATE_SECURITY
,
381 NS_LOGMODULE_UPDATE
, ISC_LOG_INFO
,
382 "signer \"%s\" %s", namebuf
, msg
);
385 dns_name_format(zonename
, namebuf
, sizeof(namebuf
));
386 dns_rdataclass_format(client
->view
->rdclass
, classbuf
,
389 ns_client_log(client
, NS_LOGCATEGORY_UPDATE_SECURITY
,
390 NS_LOGMODULE_UPDATE
, level
, "%s '%s/%s' %s",
391 message
, namebuf
, classbuf
, msg
);
396 * Update a single RR in version 'ver' of 'db' and log the
400 * \li '*tuple' == NULL. Either the tuple is freed, or its
401 * ownership has been transferred to the diff.
404 do_one_tuple(dns_difftuple_t
**tuple
, dns_db_t
*db
, dns_dbversion_t
*ver
,
407 dns_diff_t temp_diff
;
411 * Create a singleton diff.
413 dns_diff_init(diff
->mctx
, &temp_diff
);
414 ISC_LIST_APPEND(temp_diff
.tuples
, *tuple
, link
);
417 * Apply it to the database.
419 result
= dns_diff_apply(&temp_diff
, db
, ver
);
420 ISC_LIST_UNLINK(temp_diff
.tuples
, *tuple
, link
);
421 if (result
!= ISC_R_SUCCESS
) {
422 dns_difftuple_free(tuple
);
427 * Merge it into the current pending journal entry.
429 dns_diff_appendminimal(diff
, tuple
);
432 * Do not clear temp_diff.
434 return (ISC_R_SUCCESS
);
438 * Perform the updates in 'updates' in version 'ver' of 'db' and log the
442 * \li 'updates' is empty.
445 do_diff(dns_diff_t
*updates
, dns_db_t
*db
, dns_dbversion_t
*ver
,
449 while (! ISC_LIST_EMPTY(updates
->tuples
)) {
450 dns_difftuple_t
*t
= ISC_LIST_HEAD(updates
->tuples
);
451 ISC_LIST_UNLINK(updates
->tuples
, t
, link
);
452 CHECK(do_one_tuple(&t
, db
, ver
, diff
));
454 return (ISC_R_SUCCESS
);
457 dns_diff_clear(diff
);
462 update_one_rr(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_diff_t
*diff
,
463 dns_diffop_t op
, dns_name_t
*name
, dns_ttl_t ttl
,
466 dns_difftuple_t
*tuple
= NULL
;
468 result
= dns_difftuple_create(diff
->mctx
, op
,
469 name
, ttl
, rdata
, &tuple
);
470 if (result
!= ISC_R_SUCCESS
)
472 return (do_one_tuple(&tuple
, db
, ver
, diff
));
475 /**************************************************************************/
477 * Callback-style iteration over rdatasets and rdatas.
479 * foreach_rrset() can be used to iterate over the RRsets
480 * of a name and call a callback function with each
481 * one. Similarly, foreach_rr() can be used to iterate
482 * over the individual RRs at name, optionally restricted
483 * to RRs of a given type.
485 * The callback functions are called "actions" and take
486 * two arguments: a void pointer for passing arbitrary
487 * context information, and a pointer to the current RRset
488 * or RR. By convention, their names end in "_action".
492 * XXXRTH We might want to make this public somewhere in libdns.
496 * Function type for foreach_rrset() iterator actions.
498 typedef isc_result_t
rrset_func(void *data
, dns_rdataset_t
*rrset
);
501 * Function type for foreach_rr() iterator actions.
503 typedef isc_result_t
rr_func(void *data
, rr_t
*rr
);
506 * Internal context struct for foreach_node_rr().
510 void * rr_action_data
;
511 } foreach_node_rr_ctx_t
;
514 * Internal helper function for foreach_node_rr().
517 foreach_node_rr_action(void *data
, dns_rdataset_t
*rdataset
) {
519 foreach_node_rr_ctx_t
*ctx
= data
;
520 for (result
= dns_rdataset_first(rdataset
);
521 result
== ISC_R_SUCCESS
;
522 result
= dns_rdataset_next(rdataset
))
524 rr_t rr
= { 0, DNS_RDATA_INIT
};
526 dns_rdataset_current(rdataset
, &rr
.rdata
);
527 rr
.ttl
= rdataset
->ttl
;
528 result
= (*ctx
->rr_action
)(ctx
->rr_action_data
, &rr
);
529 if (result
!= ISC_R_SUCCESS
)
532 if (result
!= ISC_R_NOMORE
)
534 return (ISC_R_SUCCESS
);
538 * For each rdataset of 'name' in 'ver' of 'db', call 'action'
539 * with the rdataset and 'action_data' as arguments. If the name
540 * does not exist, do nothing.
542 * If 'action' returns an error, abort iteration and return the error.
545 foreach_rrset(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
546 rrset_func
*action
, void *action_data
)
550 dns_rdatasetiter_t
*iter
;
553 result
= dns_db_findnode(db
, name
, ISC_FALSE
, &node
);
554 if (result
== ISC_R_NOTFOUND
)
555 return (ISC_R_SUCCESS
);
556 if (result
!= ISC_R_SUCCESS
)
560 result
= dns_db_allrdatasets(db
, node
, ver
,
561 (isc_stdtime_t
) 0, &iter
);
562 if (result
!= ISC_R_SUCCESS
)
565 for (result
= dns_rdatasetiter_first(iter
);
566 result
== ISC_R_SUCCESS
;
567 result
= dns_rdatasetiter_next(iter
))
569 dns_rdataset_t rdataset
;
571 dns_rdataset_init(&rdataset
);
572 dns_rdatasetiter_current(iter
, &rdataset
);
574 result
= (*action
)(action_data
, &rdataset
);
576 dns_rdataset_disassociate(&rdataset
);
577 if (result
!= ISC_R_SUCCESS
)
578 goto cleanup_iterator
;
580 if (result
== ISC_R_NOMORE
)
581 result
= ISC_R_SUCCESS
;
584 dns_rdatasetiter_destroy(&iter
);
587 dns_db_detachnode(db
, &node
);
593 * For each RR of 'name' in 'ver' of 'db', call 'action'
594 * with the RR and 'action_data' as arguments. If the name
595 * does not exist, do nothing.
597 * If 'action' returns an error, abort iteration
598 * and return the error.
601 foreach_node_rr(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
602 rr_func
*rr_action
, void *rr_action_data
)
604 foreach_node_rr_ctx_t ctx
;
605 ctx
.rr_action
= rr_action
;
606 ctx
.rr_action_data
= rr_action_data
;
607 return (foreach_rrset(db
, ver
, name
,
608 foreach_node_rr_action
, &ctx
));
613 * For each of the RRs specified by 'db', 'ver', 'name', 'type',
614 * (which can be dns_rdatatype_any to match any type), and 'covers', call
615 * 'action' with the RR and 'action_data' as arguments. If the name
616 * does not exist, or if no RRset of the given type exists at the name,
619 * If 'action' returns an error, abort iteration and return the error.
622 foreach_rr(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
623 dns_rdatatype_t type
, dns_rdatatype_t covers
, rr_func
*rr_action
,
624 void *rr_action_data
)
629 dns_rdataset_t rdataset
;
631 if (type
== dns_rdatatype_any
)
632 return (foreach_node_rr(db
, ver
, name
,
633 rr_action
, rr_action_data
));
636 if (type
== dns_rdatatype_nsec3
||
637 (type
== dns_rdatatype_rrsig
&& covers
== dns_rdatatype_nsec3
))
638 result
= dns_db_findnsec3node(db
, name
, ISC_FALSE
, &node
);
640 result
= dns_db_findnode(db
, name
, ISC_FALSE
, &node
);
641 if (result
== ISC_R_NOTFOUND
)
642 return (ISC_R_SUCCESS
);
643 if (result
!= ISC_R_SUCCESS
)
646 dns_rdataset_init(&rdataset
);
647 result
= dns_db_findrdataset(db
, node
, ver
, type
, covers
,
648 (isc_stdtime_t
) 0, &rdataset
, NULL
);
649 if (result
== ISC_R_NOTFOUND
) {
650 result
= ISC_R_SUCCESS
;
653 if (result
!= ISC_R_SUCCESS
)
656 for (result
= dns_rdataset_first(&rdataset
);
657 result
== ISC_R_SUCCESS
;
658 result
= dns_rdataset_next(&rdataset
))
660 rr_t rr
= { 0, DNS_RDATA_INIT
};
661 dns_rdataset_current(&rdataset
, &rr
.rdata
);
662 rr
.ttl
= rdataset
.ttl
;
663 result
= (*rr_action
)(rr_action_data
, &rr
);
664 if (result
!= ISC_R_SUCCESS
)
665 goto cleanup_rdataset
;
667 if (result
!= ISC_R_NOMORE
)
668 goto cleanup_rdataset
;
669 result
= ISC_R_SUCCESS
;
672 dns_rdataset_disassociate(&rdataset
);
674 dns_db_detachnode(db
, &node
);
679 /**************************************************************************/
681 * Various tests on the database contents (for prerequisites, etc).
685 * Function type for predicate functions that compare a database RR 'db_rr'
686 * against an update RR 'update_rr'.
688 typedef isc_boolean_t
rr_predicate(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
);
691 * Helper function for rrset_exists().
694 rrset_exists_action(void *data
, rr_t
*rr
) {
697 return (ISC_R_EXISTS
);
701 * Utility macro for RR existence checking functions.
703 * If the variable 'result' has the value ISC_R_EXISTS or
704 * ISC_R_SUCCESS, set *exists to ISC_TRUE or ISC_FALSE,
705 * respectively, and return success.
707 * If 'result' has any other value, there was a failure.
708 * Return the failure result code and do not set *exists.
710 * This would be more readable as "do { if ... } while(0)",
711 * but that form generates tons of warnings on Solaris 2.6.
713 #define RETURN_EXISTENCE_FLAG \
714 return ((result == ISC_R_EXISTS) ? \
715 (*exists = ISC_TRUE, ISC_R_SUCCESS) : \
716 ((result == ISC_R_SUCCESS) ? \
717 (*exists = ISC_FALSE, ISC_R_SUCCESS) : \
721 * Set '*exists' to true iff an rrset of the given type exists,
722 * to false otherwise.
725 rrset_exists(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
726 dns_rdatatype_t type
, dns_rdatatype_t covers
,
727 isc_boolean_t
*exists
)
730 result
= foreach_rr(db
, ver
, name
, type
, covers
,
731 rrset_exists_action
, NULL
);
732 RETURN_EXISTENCE_FLAG
;
736 * Helper function for cname_incompatible_rrset_exists.
739 cname_compatibility_action(void *data
, dns_rdataset_t
*rrset
) {
741 if (rrset
->type
!= dns_rdatatype_cname
&&
742 ! dns_rdatatype_isdnssec(rrset
->type
))
743 return (ISC_R_EXISTS
);
744 return (ISC_R_SUCCESS
);
748 * Check whether there is an rrset incompatible with adding a CNAME RR,
749 * i.e., anything but another CNAME (which can be replaced) or a
750 * DNSSEC RR (which can coexist).
752 * If such an incompatible rrset exists, set '*exists' to ISC_TRUE.
753 * Otherwise, set it to ISC_FALSE.
756 cname_incompatible_rrset_exists(dns_db_t
*db
, dns_dbversion_t
*ver
,
757 dns_name_t
*name
, isc_boolean_t
*exists
) {
759 result
= foreach_rrset(db
, ver
, name
,
760 cname_compatibility_action
, NULL
);
761 RETURN_EXISTENCE_FLAG
;
765 * Helper function for rr_count().
768 count_rr_action(void *data
, rr_t
*rr
) {
772 return (ISC_R_SUCCESS
);
776 * Count the number of RRs of 'type' belonging to 'name' in 'ver' of 'db'.
779 rr_count(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
780 dns_rdatatype_t type
, dns_rdatatype_t covers
, int *countp
)
783 return (foreach_rr(db
, ver
, name
, type
, covers
,
784 count_rr_action
, countp
));
788 * Context struct and helper function for name_exists().
792 name_exists_action(void *data
, dns_rdataset_t
*rrset
) {
795 return (ISC_R_EXISTS
);
799 * Set '*exists' to true iff the given name exists, to false otherwise.
802 name_exists(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
803 isc_boolean_t
*exists
)
806 result
= foreach_rrset(db
, ver
, name
,
807 name_exists_action
, NULL
);
808 RETURN_EXISTENCE_FLAG
;
812 * 'ssu_check_t' is used to pass the arguments to
813 * dns_ssutable_checkrules() to the callback function
817 /* The ownername of the record to be updated. */
820 /* The signature's name if the request was signed. */
823 /* The address of the client if the request was received via TCP. */
824 isc_netaddr_t
*tcpaddr
;
826 /* The ssu table to check against. */
827 dns_ssutable_t
*table
;
829 /* the key used for TKEY requests */
834 ssu_checkrule(void *data
, dns_rdataset_t
*rrset
) {
835 ssu_check_t
*ssuinfo
= data
;
836 isc_boolean_t result
;
839 * If we're deleting all records, it's ok to delete RRSIG and NSEC even
840 * if we're normally not allowed to.
842 if (rrset
->type
== dns_rdatatype_rrsig
||
843 rrset
->type
== dns_rdatatype_nsec
)
844 return (ISC_R_SUCCESS
);
845 result
= dns_ssutable_checkrules(ssuinfo
->table
, ssuinfo
->signer
,
846 ssuinfo
->name
, ssuinfo
->tcpaddr
,
847 rrset
->type
, ssuinfo
->key
);
848 return (result
== ISC_TRUE
? ISC_R_SUCCESS
: ISC_R_FAILURE
);
852 ssu_checkall(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
853 dns_ssutable_t
*ssutable
, dns_name_t
*signer
,
854 isc_netaddr_t
*tcpaddr
, dst_key_t
*key
)
860 ssuinfo
.table
= ssutable
;
861 ssuinfo
.signer
= signer
;
862 ssuinfo
.tcpaddr
= tcpaddr
;
864 result
= foreach_rrset(db
, ver
, name
, ssu_checkrule
, &ssuinfo
);
865 return (ISC_TF(result
== ISC_R_SUCCESS
));
868 /**************************************************************************/
870 * Checking of "RRset exists (value dependent)" prerequisites.
872 * In the RFC2136 section 3.2.5, this is the pseudocode involving
873 * a variable called "temp", a mapping of <name, type> tuples to rrsets.
875 * Here, we represent the "temp" data structure as (non-minimal) "dns_diff_t"
876 * where each tuple has op==DNS_DIFFOP_EXISTS.
881 * Append a tuple asserting the existence of the RR with
882 * 'name' and 'rdata' to 'diff'.
885 temp_append(dns_diff_t
*diff
, dns_name_t
*name
, dns_rdata_t
*rdata
) {
887 dns_difftuple_t
*tuple
= NULL
;
889 REQUIRE(DNS_DIFF_VALID(diff
));
890 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_EXISTS
,
891 name
, 0, rdata
, &tuple
));
892 ISC_LIST_APPEND(diff
->tuples
, tuple
, link
);
898 * Compare two rdatasets represented as sorted lists of tuples.
899 * All list elements must have the same owner name and type.
900 * Return ISC_R_SUCCESS if the rdatasets are equal, rcode(dns_rcode_nxrrset)
904 temp_check_rrset(dns_difftuple_t
*a
, dns_difftuple_t
*b
) {
906 if (a
== NULL
|| b
== NULL
)
908 INSIST(a
->op
== DNS_DIFFOP_EXISTS
&&
909 b
->op
== DNS_DIFFOP_EXISTS
);
910 INSIST(a
->rdata
.type
== b
->rdata
.type
);
911 INSIST(dns_name_equal(&a
->name
, &b
->name
));
912 if (dns_rdata_casecompare(&a
->rdata
, &b
->rdata
) != 0)
913 return (DNS_R_NXRRSET
);
914 a
= ISC_LIST_NEXT(a
, link
);
915 b
= ISC_LIST_NEXT(b
, link
);
917 if (a
!= NULL
|| b
!= NULL
)
918 return (DNS_R_NXRRSET
);
919 return (ISC_R_SUCCESS
);
923 * A comparison function defining the sorting order for the entries
924 * in the "temp" data structure. The major sort key is the owner name,
925 * followed by the type and rdata.
928 temp_order(const void *av
, const void *bv
) {
929 dns_difftuple_t
const * const *ap
= av
;
930 dns_difftuple_t
const * const *bp
= bv
;
931 dns_difftuple_t
const *a
= *ap
;
932 dns_difftuple_t
const *b
= *bp
;
934 r
= dns_name_compare(&a
->name
, &b
->name
);
937 r
= (b
->rdata
.type
- a
->rdata
.type
);
940 r
= dns_rdata_casecompare(&a
->rdata
, &b
->rdata
);
945 * Check the "RRset exists (value dependent)" prerequisite information
946 * in 'temp' against the contents of the database 'db'.
948 * Return ISC_R_SUCCESS if the prerequisites are satisfied,
949 * rcode(dns_rcode_nxrrset) if not.
951 * 'temp' must be pre-sorted.
955 temp_check(isc_mem_t
*mctx
, dns_diff_t
*temp
, dns_db_t
*db
,
956 dns_dbversion_t
*ver
, dns_name_t
*tmpname
, dns_rdatatype_t
*typep
)
964 dns_diff_init(mctx
, &trash
);
967 * For each name and type in the prerequisites,
968 * construct a sorted rdata list of the corresponding
969 * database contents, and compare the lists.
971 t
= ISC_LIST_HEAD(temp
->tuples
);
974 (void)dns_name_copy(name
, tmpname
, NULL
);
975 *typep
= t
->rdata
.type
;
977 /* A new unique name begins here. */
979 result
= dns_db_findnode(db
, name
, ISC_FALSE
, &node
);
980 if (result
== ISC_R_NOTFOUND
) {
981 dns_diff_clear(&trash
);
982 return (DNS_R_NXRRSET
);
984 if (result
!= ISC_R_SUCCESS
) {
985 dns_diff_clear(&trash
);
989 /* A new unique type begins here. */
990 while (t
!= NULL
&& dns_name_equal(&t
->name
, name
)) {
991 dns_rdatatype_t type
, covers
;
992 dns_rdataset_t rdataset
;
993 dns_diff_t d_rrs
; /* Database RRs with
994 this name and type */
995 dns_diff_t u_rrs
; /* Update RRs with
996 this name and type */
998 *typep
= type
= t
->rdata
.type
;
999 if (type
== dns_rdatatype_rrsig
||
1000 type
== dns_rdatatype_sig
)
1001 covers
= dns_rdata_covers(&t
->rdata
);
1002 else if (type
== dns_rdatatype_any
) {
1003 dns_db_detachnode(db
, &node
);
1004 dns_diff_clear(&trash
);
1005 return (DNS_R_NXRRSET
);
1010 * Collect all database RRs for this name and type
1011 * onto d_rrs and sort them.
1013 dns_rdataset_init(&rdataset
);
1014 result
= dns_db_findrdataset(db
, node
, ver
, type
,
1015 covers
, (isc_stdtime_t
) 0,
1017 if (result
!= ISC_R_SUCCESS
) {
1018 dns_db_detachnode(db
, &node
);
1019 dns_diff_clear(&trash
);
1020 return (DNS_R_NXRRSET
);
1023 dns_diff_init(mctx
, &d_rrs
);
1024 dns_diff_init(mctx
, &u_rrs
);
1026 for (result
= dns_rdataset_first(&rdataset
);
1027 result
== ISC_R_SUCCESS
;
1028 result
= dns_rdataset_next(&rdataset
))
1030 dns_rdata_t rdata
= DNS_RDATA_INIT
;
1031 dns_rdataset_current(&rdataset
, &rdata
);
1032 result
= temp_append(&d_rrs
, name
, &rdata
);
1033 if (result
!= ISC_R_SUCCESS
)
1036 if (result
!= ISC_R_NOMORE
)
1038 result
= dns_diff_sort(&d_rrs
, temp_order
);
1039 if (result
!= ISC_R_SUCCESS
)
1043 * Collect all update RRs for this name and type
1044 * onto u_rrs. No need to sort them here -
1045 * they are already sorted.
1048 dns_name_equal(&t
->name
, name
) &&
1049 t
->rdata
.type
== type
)
1051 dns_difftuple_t
*next
=
1052 ISC_LIST_NEXT(t
, link
);
1053 ISC_LIST_UNLINK(temp
->tuples
, t
, link
);
1054 ISC_LIST_APPEND(u_rrs
.tuples
, t
, link
);
1058 /* Compare the two sorted lists. */
1059 result
= temp_check_rrset(ISC_LIST_HEAD(u_rrs
.tuples
),
1060 ISC_LIST_HEAD(d_rrs
.tuples
));
1061 if (result
!= ISC_R_SUCCESS
)
1065 * We are done with the tuples, but we can't free
1066 * them yet because "name" still points into one
1067 * of them. Move them on a temporary list.
1069 ISC_LIST_APPENDLIST(trash
.tuples
, u_rrs
.tuples
, link
);
1070 ISC_LIST_APPENDLIST(trash
.tuples
, d_rrs
.tuples
, link
);
1071 dns_rdataset_disassociate(&rdataset
);
1076 dns_diff_clear(&d_rrs
);
1077 dns_diff_clear(&u_rrs
);
1078 dns_diff_clear(&trash
);
1079 dns_rdataset_disassociate(&rdataset
);
1080 dns_db_detachnode(db
, &node
);
1084 dns_db_detachnode(db
, &node
);
1087 dns_diff_clear(&trash
);
1088 return (ISC_R_SUCCESS
);
1091 /**************************************************************************/
1093 * Conditional deletion of RRs.
1097 * Context structure for delete_if().
1101 rr_predicate
*predicate
;
1103 dns_dbversion_t
*ver
;
1106 dns_rdata_t
*update_rr
;
1107 } conditional_delete_ctx_t
;
1110 * Predicate functions for delete_if().
1114 * Return true iff 'db_rr' is neither a SOA nor an NS RR nor
1115 * an RRSIG nor an NSEC3PARAM nor a NSEC.
1117 static isc_boolean_t
1118 type_not_soa_nor_ns_p(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
) {
1120 return ((db_rr
->type
!= dns_rdatatype_soa
&&
1121 db_rr
->type
!= dns_rdatatype_ns
&&
1122 db_rr
->type
!= dns_rdatatype_nsec3param
&&
1123 db_rr
->type
!= dns_rdatatype_rrsig
&&
1124 db_rr
->type
!= dns_rdatatype_nsec
) ?
1125 ISC_TRUE
: ISC_FALSE
);
1129 * Return true iff 'db_rr' is neither a RRSIG nor a NSEC.
1131 static isc_boolean_t
1132 type_not_dnssec(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
) {
1134 return ((db_rr
->type
!= dns_rdatatype_rrsig
&&
1135 db_rr
->type
!= dns_rdatatype_nsec
) ?
1136 ISC_TRUE
: ISC_FALSE
);
1140 * Return true always.
1142 static isc_boolean_t
1143 true_p(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
) {
1150 * Return true iff the two RRs have identical rdata.
1152 static isc_boolean_t
1153 rr_equal_p(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
) {
1155 * XXXRTH This is not a problem, but we should consider creating
1156 * dns_rdata_equal() (that used dns_name_equal()), since it
1157 * would be faster. Not a priority.
1159 return (dns_rdata_casecompare(update_rr
, db_rr
) == 0 ?
1160 ISC_TRUE
: ISC_FALSE
);
1164 * Return true iff 'update_rr' should replace 'db_rr' according
1165 * to the special RFC2136 rules for CNAME, SOA, and WKS records.
1167 * RFC2136 does not mention NSEC or DNAME, but multiple NSECs or DNAMEs
1168 * make little sense, so we replace those, too.
1170 * Additionally replace RRSIG that have been generated by the same key
1171 * for the same type. This simplifies refreshing a offline KSK by not
1172 * requiring that the old RRSIG be deleted. It also simplifies key
1173 * rollover by only requiring that the new RRSIG be added.
1175 static isc_boolean_t
1176 replaces_p(dns_rdata_t
*update_rr
, dns_rdata_t
*db_rr
) {
1177 dns_rdata_rrsig_t updatesig
, dbsig
;
1178 isc_result_t result
;
1180 if (db_rr
->type
!= update_rr
->type
)
1182 if (db_rr
->type
== dns_rdatatype_cname
)
1184 if (db_rr
->type
== dns_rdatatype_dname
)
1186 if (db_rr
->type
== dns_rdatatype_soa
)
1188 if (db_rr
->type
== dns_rdatatype_nsec
)
1190 if (db_rr
->type
== dns_rdatatype_rrsig
) {
1192 * Replace existing RRSIG with the same keyid,
1193 * covered and algorithm.
1195 result
= dns_rdata_tostruct(db_rr
, &dbsig
, NULL
);
1196 RUNTIME_CHECK(result
== ISC_R_SUCCESS
);
1197 result
= dns_rdata_tostruct(update_rr
, &updatesig
, NULL
);
1198 RUNTIME_CHECK(result
== ISC_R_SUCCESS
);
1199 if (dbsig
.keyid
== updatesig
.keyid
&&
1200 dbsig
.covered
== updatesig
.covered
&&
1201 dbsig
.algorithm
== updatesig
.algorithm
)
1204 if (db_rr
->type
== dns_rdatatype_wks
) {
1206 * Compare the address and protocol fields only. These
1207 * form the first five bytes of the RR data. Do a
1208 * raw binary comparison; unpacking the WKS RRs using
1209 * dns_rdata_tostruct() might be cleaner in some ways.
1211 INSIST(db_rr
->length
>= 5 && update_rr
->length
>= 5);
1212 return (memcmp(db_rr
->data
, update_rr
->data
, 5) == 0 ?
1213 ISC_TRUE
: ISC_FALSE
);
1216 if (db_rr
->type
== dns_rdatatype_nsec3param
) {
1217 if (db_rr
->length
!= update_rr
->length
)
1219 INSIST(db_rr
->length
>= 4 && update_rr
->length
>= 4);
1221 * Replace NSEC3PARAM records that only differ by the
1224 if (db_rr
->data
[0] == update_rr
->data
[0] &&
1225 memcmp(db_rr
->data
+2, update_rr
->data
+2,
1226 update_rr
->length
- 2) == 0)
1233 * Internal helper function for delete_if().
1236 delete_if_action(void *data
, rr_t
*rr
) {
1237 conditional_delete_ctx_t
*ctx
= data
;
1238 if ((*ctx
->predicate
)(ctx
->update_rr
, &rr
->rdata
)) {
1239 isc_result_t result
;
1240 result
= update_one_rr(ctx
->db
, ctx
->ver
, ctx
->diff
,
1241 DNS_DIFFOP_DEL
, ctx
->name
,
1242 rr
->ttl
, &rr
->rdata
);
1245 return (ISC_R_SUCCESS
);
1250 * Conditionally delete RRs. Apply 'predicate' to the RRs
1251 * specified by 'db', 'ver', 'name', and 'type' (which can
1252 * be dns_rdatatype_any to match any type). Delete those
1253 * RRs for which the predicate returns true, and log the
1254 * deletions in 'diff'.
1257 delete_if(rr_predicate
*predicate
, dns_db_t
*db
, dns_dbversion_t
*ver
,
1258 dns_name_t
*name
, dns_rdatatype_t type
, dns_rdatatype_t covers
,
1259 dns_rdata_t
*update_rr
, dns_diff_t
*diff
)
1261 conditional_delete_ctx_t ctx
;
1262 ctx
.predicate
= predicate
;
1267 ctx
.update_rr
= update_rr
;
1268 return (foreach_rr(db
, ver
, name
, type
, covers
,
1269 delete_if_action
, &ctx
));
1272 /**************************************************************************/
1274 * Prepare an RR for the addition of the new RR 'ctx->update_rr',
1275 * with TTL 'ctx->update_rr_ttl', to its rdataset, by deleting
1276 * the RRs if it is replaced by the new RR or has a conflicting TTL.
1277 * The necessary changes are appended to ctx->del_diff and ctx->add_diff;
1278 * we need to do all deletions before any additions so that we don't run
1279 * into transient states with conflicting TTLs.
1284 dns_dbversion_t
*ver
;
1287 dns_rdata_t
*update_rr
;
1288 dns_ttl_t update_rr_ttl
;
1289 isc_boolean_t ignore_add
;
1290 dns_diff_t del_diff
;
1291 dns_diff_t add_diff
;
1292 } add_rr_prepare_ctx_t
;
1295 add_rr_prepare_action(void *data
, rr_t
*rr
) {
1296 isc_result_t result
= ISC_R_SUCCESS
;
1297 add_rr_prepare_ctx_t
*ctx
= data
;
1298 dns_difftuple_t
*tuple
= NULL
;
1299 isc_boolean_t equal
;
1302 * If the update RR is a "duplicate" of the update RR,
1303 * the update should be silently ignored.
1305 equal
= ISC_TF(dns_rdata_casecompare(&rr
->rdata
, ctx
->update_rr
) == 0);
1306 if (equal
&& rr
->ttl
== ctx
->update_rr_ttl
) {
1307 ctx
->ignore_add
= ISC_TRUE
;
1308 return (ISC_R_SUCCESS
);
1312 * If this RR is "equal" to the update RR, it should
1313 * be deleted before the update RR is added.
1315 if (replaces_p(ctx
->update_rr
, &rr
->rdata
)) {
1316 CHECK(dns_difftuple_create(ctx
->del_diff
.mctx
, DNS_DIFFOP_DEL
,
1317 ctx
->name
, rr
->ttl
, &rr
->rdata
,
1319 dns_diff_append(&ctx
->del_diff
, &tuple
);
1320 return (ISC_R_SUCCESS
);
1324 * If this RR differs in TTL from the update RR,
1325 * its TTL must be adjusted.
1327 if (rr
->ttl
!= ctx
->update_rr_ttl
) {
1328 CHECK(dns_difftuple_create(ctx
->del_diff
.mctx
, DNS_DIFFOP_DEL
,
1329 ctx
->name
, rr
->ttl
, &rr
->rdata
,
1331 dns_diff_append(&ctx
->del_diff
, &tuple
);
1333 CHECK(dns_difftuple_create(ctx
->add_diff
.mctx
,
1334 DNS_DIFFOP_ADD
, ctx
->name
,
1336 &rr
->rdata
, &tuple
));
1337 dns_diff_append(&ctx
->add_diff
, &tuple
);
1344 /**************************************************************************/
1346 * Miscellaneous subroutines.
1350 * Extract a single update RR from 'section' of dynamic update message
1351 * 'msg', with consistency checking.
1353 * Stores the owner name, rdata, and TTL of the update RR at 'name',
1354 * 'rdata', and 'ttl', respectively.
1357 get_current_rr(dns_message_t
*msg
, dns_section_t section
,
1358 dns_rdataclass_t zoneclass
, dns_name_t
**name
,
1359 dns_rdata_t
*rdata
, dns_rdatatype_t
*covers
,
1360 dns_ttl_t
*ttl
, dns_rdataclass_t
*update_class
)
1362 dns_rdataset_t
*rdataset
;
1363 isc_result_t result
;
1364 dns_message_currentname(msg
, section
, name
);
1365 rdataset
= ISC_LIST_HEAD((*name
)->list
);
1366 INSIST(rdataset
!= NULL
);
1367 INSIST(ISC_LIST_NEXT(rdataset
, link
) == NULL
);
1368 *covers
= rdataset
->covers
;
1369 *ttl
= rdataset
->ttl
;
1370 result
= dns_rdataset_first(rdataset
);
1371 INSIST(result
== ISC_R_SUCCESS
);
1372 dns_rdataset_current(rdataset
, rdata
);
1373 INSIST(dns_rdataset_next(rdataset
) == ISC_R_NOMORE
);
1374 *update_class
= rdata
->rdclass
;
1375 rdata
->rdclass
= zoneclass
;
1379 * Increment the SOA serial number of database 'db', version 'ver'.
1380 * Replace the SOA record in the database, and log the
1385 * XXXRTH Failures in this routine will be worth logging, when
1386 * we have a logging system. Failure to find the zonename
1387 * or the SOA rdataset warrant at least an UNEXPECTED_ERROR().
1391 update_soa_serial(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_diff_t
*diff
,
1392 isc_mem_t
*mctx
, dns_updatemethod_t method
)
1394 dns_difftuple_t
*deltuple
= NULL
;
1395 dns_difftuple_t
*addtuple
= NULL
;
1396 isc_uint32_t serial
;
1397 isc_result_t result
;
1399 CHECK(dns_db_createsoatuple(db
, ver
, mctx
, DNS_DIFFOP_DEL
, &deltuple
));
1400 CHECK(dns_difftuple_copy(deltuple
, &addtuple
));
1401 addtuple
->op
= DNS_DIFFOP_ADD
;
1403 serial
= dns_soa_getserial(&addtuple
->rdata
);
1404 serial
= dns_update_soaserial(serial
, method
);
1405 dns_soa_setserial(serial
, &addtuple
->rdata
);
1406 CHECK(do_one_tuple(&deltuple
, db
, ver
, diff
));
1407 CHECK(do_one_tuple(&addtuple
, db
, ver
, diff
));
1408 result
= ISC_R_SUCCESS
;
1411 if (addtuple
!= NULL
)
1412 dns_difftuple_free(&addtuple
);
1413 if (deltuple
!= NULL
)
1414 dns_difftuple_free(&deltuple
);
1419 * Check that the new SOA record at 'update_rdata' does not
1420 * illegally cause the SOA serial number to decrease or stay
1421 * unchanged relative to the existing SOA in 'db'.
1423 * Sets '*ok' to ISC_TRUE if the update is legal, ISC_FALSE if not.
1425 * William King points out that RFC2136 is inconsistent about
1426 * the case where the serial number stays unchanged:
1428 * section 3.4.2.2 requires a server to ignore a SOA update request
1429 * if the serial number on the update SOA is less_than_or_equal to
1430 * the zone SOA serial.
1432 * section 3.6 requires a server to ignore a SOA update request if
1433 * the serial is less_than the zone SOA serial.
1435 * Paul says 3.4.2.2 is correct.
1439 check_soa_increment(dns_db_t
*db
, dns_dbversion_t
*ver
,
1440 dns_rdata_t
*update_rdata
, isc_boolean_t
*ok
)
1442 isc_uint32_t db_serial
;
1443 isc_uint32_t update_serial
;
1444 isc_result_t result
;
1446 update_serial
= dns_soa_getserial(update_rdata
);
1448 result
= dns_db_getsoaserial(db
, ver
, &db_serial
);
1449 if (result
!= ISC_R_SUCCESS
)
1452 if (DNS_SERIAL_GE(db_serial
, update_serial
)) {
1458 return (ISC_R_SUCCESS
);
1462 /**************************************************************************/
1464 * The actual update code in all its glory. We try to follow
1465 * the RFC2136 pseudocode as closely as possible.
1469 send_update_event(ns_client_t
*client
, dns_zone_t
*zone
) {
1470 isc_result_t result
= ISC_R_SUCCESS
;
1471 update_event_t
*event
= NULL
;
1472 isc_task_t
*zonetask
= NULL
;
1473 ns_client_t
*evclient
;
1475 event
= (update_event_t
*)
1476 isc_event_allocate(client
->mctx
, client
, DNS_EVENT_UPDATE
,
1477 update_action
, NULL
, sizeof(*event
));
1479 FAIL(ISC_R_NOMEMORY
);
1481 event
->result
= ISC_R_SUCCESS
;
1484 ns_client_attach(client
, &evclient
);
1485 INSIST(client
->nupdates
== 0);
1487 event
->ev_arg
= evclient
;
1489 dns_zone_gettask(zone
, &zonetask
);
1490 isc_task_send(zonetask
, ISC_EVENT_PTR(&event
));
1494 isc_event_free(ISC_EVENT_PTR(&event
));
1499 respond(ns_client_t
*client
, isc_result_t result
) {
1500 isc_result_t msg_result
;
1502 msg_result
= dns_message_reply(client
->message
, ISC_TRUE
);
1503 if (msg_result
!= ISC_R_SUCCESS
)
1505 client
->message
->rcode
= dns_result_torcode(result
);
1507 ns_client_send(client
);
1511 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_UPDATE
, NS_LOGMODULE_UPDATE
,
1513 "could not create update response message: %s",
1514 isc_result_totext(msg_result
));
1515 ns_client_next(client
, msg_result
);
1519 ns_update_start(ns_client_t
*client
, isc_result_t sigresult
) {
1520 dns_message_t
*request
= client
->message
;
1521 isc_result_t result
;
1522 dns_name_t
*zonename
;
1523 dns_rdataset_t
*zone_rdataset
;
1524 dns_zone_t
*zone
= NULL
, *raw
= NULL
;
1527 * Interpret the zone section.
1529 result
= dns_message_firstname(request
, DNS_SECTION_ZONE
);
1530 if (result
!= ISC_R_SUCCESS
)
1531 FAILC(DNS_R_FORMERR
, "update zone section empty");
1534 * The zone section must contain exactly one "question", and
1535 * it must be of type SOA.
1538 dns_message_currentname(request
, DNS_SECTION_ZONE
, &zonename
);
1539 zone_rdataset
= ISC_LIST_HEAD(zonename
->list
);
1540 if (zone_rdataset
->type
!= dns_rdatatype_soa
)
1541 FAILC(DNS_R_FORMERR
,
1542 "update zone section contains non-SOA");
1543 if (ISC_LIST_NEXT(zone_rdataset
, link
) != NULL
)
1544 FAILC(DNS_R_FORMERR
,
1545 "update zone section contains multiple RRs");
1547 /* The zone section must have exactly one name. */
1548 result
= dns_message_nextname(request
, DNS_SECTION_ZONE
);
1549 if (result
!= ISC_R_NOMORE
)
1550 FAILC(DNS_R_FORMERR
,
1551 "update zone section contains multiple RRs");
1553 result
= dns_zt_find(client
->view
->zonetable
, zonename
, 0, NULL
,
1555 if (result
!= ISC_R_SUCCESS
)
1556 FAILC(DNS_R_NOTAUTH
, "not authoritative for update zone");
1559 * If there is a raw (unsigned) zone associated with this
1560 * zone then it processes the UPDATE request.
1562 dns_zone_getraw(zone
, &raw
);
1564 dns_zone_detach(&zone
);
1565 dns_zone_attach(raw
, &zone
);
1566 dns_zone_detach(&raw
);
1569 switch(dns_zone_gettype(zone
)) {
1570 case dns_zone_master
:
1573 * We can now fail due to a bad signature as we now know
1574 * that we are the master.
1576 if (sigresult
!= ISC_R_SUCCESS
)
1578 CHECK(send_update_event(client
, zone
));
1580 case dns_zone_slave
:
1581 CHECK(checkupdateacl(client
, dns_zone_getforwardacl(zone
),
1582 "update forwarding", zonename
, ISC_TRUE
,
1584 CHECK(send_forward_event(client
, zone
));
1587 FAILC(DNS_R_NOTAUTH
, "not authoritative for update zone");
1592 if (result
== DNS_R_REFUSED
) {
1593 INSIST(dns_zone_gettype(zone
) == dns_zone_slave
);
1594 inc_stats(zone
, dns_nsstatscounter_updaterej
);
1597 * We failed without having sent an update event to the zone.
1598 * We are still in the client task context, so we can
1599 * simply give an error response without switching tasks.
1601 respond(client
, result
);
1603 dns_zone_detach(&zone
);
1607 * DS records are not allowed to exist without corresponding NS records,
1608 * RFC 3658, 2.2 Protocol Change,
1609 * "DS RRsets MUST NOT appear at non-delegation points or at a zone's apex".
1613 remove_orphaned_ds(dns_db_t
*db
, dns_dbversion_t
*newver
, dns_diff_t
*diff
) {
1614 isc_result_t result
;
1615 isc_boolean_t ns_exists
;
1616 dns_difftuple_t
*tupple
;
1617 dns_diff_t temp_diff
;
1619 dns_diff_init(diff
->mctx
, &temp_diff
);
1621 for (tupple
= ISC_LIST_HEAD(diff
->tuples
);
1623 tupple
= ISC_LIST_NEXT(tupple
, link
)) {
1624 if (!((tupple
->op
== DNS_DIFFOP_DEL
&&
1625 tupple
->rdata
.type
== dns_rdatatype_ns
) ||
1626 (tupple
->op
== DNS_DIFFOP_ADD
&&
1627 tupple
->rdata
.type
== dns_rdatatype_ds
)))
1629 CHECK(rrset_exists(db
, newver
, &tupple
->name
,
1630 dns_rdatatype_ns
, 0, &ns_exists
));
1632 !dns_name_equal(&tupple
->name
, dns_db_origin(db
)))
1634 CHECK(delete_if(true_p
, db
, newver
, &tupple
->name
,
1635 dns_rdatatype_ds
, 0, NULL
, &temp_diff
));
1637 result
= ISC_R_SUCCESS
;
1640 for (tupple
= ISC_LIST_HEAD(temp_diff
.tuples
);
1642 tupple
= ISC_LIST_HEAD(temp_diff
.tuples
)) {
1643 ISC_LIST_UNLINK(temp_diff
.tuples
, tupple
, link
);
1644 dns_diff_appendminimal(diff
, &tupple
);
1650 * This implements the post load integrity checks for mx records.
1653 check_mx(ns_client_t
*client
, dns_zone_t
*zone
,
1654 dns_db_t
*db
, dns_dbversion_t
*newver
, dns_diff_t
*diff
)
1656 char tmp
[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:123.123.123.123.")];
1657 char ownerbuf
[DNS_NAME_FORMATSIZE
];
1658 char namebuf
[DNS_NAME_FORMATSIZE
];
1659 char altbuf
[DNS_NAME_FORMATSIZE
];
1661 dns_fixedname_t fixed
;
1662 dns_name_t
*foundname
;
1665 isc_boolean_t ok
= ISC_TRUE
;
1666 isc_boolean_t isaddress
;
1667 isc_result_t result
;
1668 struct in6_addr addr6
;
1669 struct in_addr addr
;
1670 unsigned int options
;
1672 dns_fixedname_init(&fixed
);
1673 foundname
= dns_fixedname_name(&fixed
);
1674 dns_rdata_init(&rdata
);
1675 options
= dns_zone_getoptions(zone
);
1677 for (t
= ISC_LIST_HEAD(diff
->tuples
);
1679 t
= ISC_LIST_NEXT(t
, link
)) {
1680 if (t
->op
!= DNS_DIFFOP_ADD
||
1681 t
->rdata
.type
!= dns_rdatatype_mx
)
1684 result
= dns_rdata_tostruct(&t
->rdata
, &mx
, NULL
);
1685 RUNTIME_CHECK(result
== ISC_R_SUCCESS
);
1687 * Check if we will error out if we attempt to reload the
1690 dns_name_format(&mx
.mx
, namebuf
, sizeof(namebuf
));
1691 dns_name_format(&t
->name
, ownerbuf
, sizeof(ownerbuf
));
1692 isaddress
= ISC_FALSE
;
1693 if ((options
& DNS_RDATA_CHECKMX
) != 0 &&
1694 strlcpy(tmp
, namebuf
, sizeof(tmp
)) < sizeof(tmp
)) {
1695 if (tmp
[strlen(tmp
) - 1] == '.')
1696 tmp
[strlen(tmp
) - 1] = '\0';
1697 if (inet_aton(tmp
, &addr
) == 1 ||
1698 inet_pton(AF_INET6
, tmp
, &addr6
) == 1)
1699 isaddress
= ISC_TRUE
;
1702 if (isaddress
&& (options
& DNS_RDATA_CHECKMXFAIL
) != 0) {
1703 update_log(client
, zone
, ISC_LOG_ERROR
,
1706 dns_result_totext(DNS_R_MXISADDRESS
));
1708 } else if (isaddress
) {
1709 update_log(client
, zone
, ISC_LOG_WARNING
,
1710 "%s/MX: warning: '%s': %s",
1712 dns_result_totext(DNS_R_MXISADDRESS
));
1716 * Check zone integrity checks.
1718 if ((options
& DNS_ZONEOPT_CHECKINTEGRITY
) == 0)
1720 result
= dns_db_find(db
, &mx
.mx
, newver
, dns_rdatatype_a
,
1721 0, 0, NULL
, foundname
, NULL
, NULL
);
1722 if (result
== ISC_R_SUCCESS
)
1725 if (result
== DNS_R_NXRRSET
) {
1726 result
= dns_db_find(db
, &mx
.mx
, newver
,
1728 0, 0, NULL
, foundname
,
1730 if (result
== ISC_R_SUCCESS
)
1734 if (result
== DNS_R_NXRRSET
|| result
== DNS_R_NXDOMAIN
) {
1735 update_log(client
, zone
, ISC_LOG_ERROR
,
1736 "%s/MX '%s' has no address records "
1737 "(A or AAAA)", ownerbuf
, namebuf
);
1739 } else if (result
== DNS_R_CNAME
) {
1740 update_log(client
, zone
, ISC_LOG_ERROR
,
1741 "%s/MX '%s' is a CNAME (illegal)",
1744 } else if (result
== DNS_R_DNAME
) {
1745 dns_name_format(foundname
, altbuf
, sizeof altbuf
);
1746 update_log(client
, zone
, ISC_LOG_ERROR
,
1747 "%s/MX '%s' is below a DNAME '%s' (illegal)",
1748 ownerbuf
, namebuf
, altbuf
);
1752 return (ok
? ISC_R_SUCCESS
: DNS_R_REFUSED
);
1756 rr_exists(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_name_t
*name
,
1757 const dns_rdata_t
*rdata
, isc_boolean_t
*flag
)
1759 dns_rdataset_t rdataset
;
1760 dns_dbnode_t
*node
= NULL
;
1761 isc_result_t result
;
1763 dns_rdataset_init(&rdataset
);
1764 if (rdata
->type
== dns_rdatatype_nsec3
)
1765 CHECK(dns_db_findnsec3node(db
, name
, ISC_FALSE
, &node
));
1767 CHECK(dns_db_findnode(db
, name
, ISC_FALSE
, &node
));
1768 result
= dns_db_findrdataset(db
, node
, ver
, rdata
->type
, 0,
1769 (isc_stdtime_t
) 0, &rdataset
, NULL
);
1770 if (result
== ISC_R_NOTFOUND
) {
1772 result
= ISC_R_SUCCESS
;
1776 for (result
= dns_rdataset_first(&rdataset
);
1777 result
== ISC_R_SUCCESS
;
1778 result
= dns_rdataset_next(&rdataset
)) {
1779 dns_rdata_t myrdata
= DNS_RDATA_INIT
;
1780 dns_rdataset_current(&rdataset
, &myrdata
);
1781 if (!dns_rdata_casecompare(&myrdata
, rdata
))
1784 dns_rdataset_disassociate(&rdataset
);
1785 if (result
== ISC_R_SUCCESS
) {
1787 } else if (result
== ISC_R_NOMORE
) {
1789 result
= ISC_R_SUCCESS
;
1794 dns_db_detachnode(db
, &node
);
1799 get_iterations(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_rdatatype_t privatetype
,
1800 unsigned int *iterationsp
)
1802 dns_dbnode_t
*node
= NULL
;
1803 dns_rdata_nsec3param_t nsec3param
;
1804 dns_rdataset_t rdataset
;
1805 isc_result_t result
;
1806 unsigned int iterations
= 0;
1808 dns_rdataset_init(&rdataset
);
1810 result
= dns_db_getoriginnode(db
, &node
);
1811 if (result
!= ISC_R_SUCCESS
)
1813 result
= dns_db_findrdataset(db
, node
, ver
, dns_rdatatype_nsec3param
,
1814 0, (isc_stdtime_t
) 0, &rdataset
, NULL
);
1815 if (result
== ISC_R_NOTFOUND
)
1817 if (result
!= ISC_R_SUCCESS
)
1820 for (result
= dns_rdataset_first(&rdataset
);
1821 result
== ISC_R_SUCCESS
;
1822 result
= dns_rdataset_next(&rdataset
)) {
1823 dns_rdata_t rdata
= DNS_RDATA_INIT
;
1824 dns_rdataset_current(&rdataset
, &rdata
);
1825 CHECK(dns_rdata_tostruct(&rdata
, &nsec3param
, NULL
));
1826 if ((nsec3param
.flags
& DNS_NSEC3FLAG_REMOVE
) != 0)
1828 if (nsec3param
.iterations
> iterations
)
1829 iterations
= nsec3param
.iterations
;
1831 if (result
!= ISC_R_NOMORE
)
1834 dns_rdataset_disassociate(&rdataset
);
1837 if (privatetype
== 0)
1840 result
= dns_db_findrdataset(db
, node
, ver
, privatetype
,
1841 0, (isc_stdtime_t
) 0, &rdataset
, NULL
);
1842 if (result
== ISC_R_NOTFOUND
)
1844 if (result
!= ISC_R_SUCCESS
)
1847 for (result
= dns_rdataset_first(&rdataset
);
1848 result
== ISC_R_SUCCESS
;
1849 result
= dns_rdataset_next(&rdataset
)) {
1850 unsigned char buf
[DNS_NSEC3PARAM_BUFFERSIZE
];
1851 dns_rdata_t
private = DNS_RDATA_INIT
;
1852 dns_rdata_t rdata
= DNS_RDATA_INIT
;
1854 dns_rdataset_current(&rdataset
, &rdata
);
1855 if (!dns_nsec3param_fromprivate(&private, &rdata
,
1858 CHECK(dns_rdata_tostruct(&rdata
, &nsec3param
, NULL
));
1859 if ((nsec3param
.flags
& DNS_NSEC3FLAG_REMOVE
) != 0)
1861 if (nsec3param
.iterations
> iterations
)
1862 iterations
= nsec3param
.iterations
;
1864 if (result
!= ISC_R_NOMORE
)
1868 *iterationsp
= iterations
;
1869 result
= ISC_R_SUCCESS
;
1873 dns_db_detachnode(db
, &node
);
1874 if (dns_rdataset_isassociated(&rdataset
))
1875 dns_rdataset_disassociate(&rdataset
);
1880 * Prevent the zone entering a inconsistent state where
1881 * NSEC only DNSKEYs are present with NSEC3 chains.
1884 check_dnssec(ns_client_t
*client
, dns_zone_t
*zone
, dns_db_t
*db
,
1885 dns_dbversion_t
*ver
, dns_diff_t
*diff
)
1887 dns_difftuple_t
*tuple
;
1888 isc_boolean_t nseconly
= ISC_FALSE
, nsec3
= ISC_FALSE
;
1889 isc_result_t result
;
1890 unsigned int iterations
= 0, max
;
1891 dns_rdatatype_t privatetype
= dns_zone_getprivatetype(zone
);
1893 /* Scan the tuples for an NSEC-only DNSKEY or an NSEC3PARAM */
1894 for (tuple
= ISC_LIST_HEAD(diff
->tuples
);
1896 tuple
= ISC_LIST_NEXT(tuple
, link
)) {
1897 if (tuple
->op
!= DNS_DIFFOP_ADD
)
1900 if (tuple
->rdata
.type
== dns_rdatatype_dnskey
) {
1902 alg
= tuple
->rdata
.data
[3];
1903 if (alg
== DST_ALG_RSAMD5
|| alg
== DST_ALG_RSASHA1
||
1904 alg
== DST_ALG_DSA
|| alg
== DST_ALG_ECC
) {
1905 nseconly
= ISC_TRUE
;
1908 } else if (tuple
->rdata
.type
== dns_rdatatype_nsec3param
) {
1914 /* Check existing DB for NSEC-only DNSKEY */
1916 result
= dns_nsec_nseconly(db
, ver
, &nseconly
);
1919 * An NSEC3PARAM update can proceed without a DNSKEY (it
1920 * will trigger a delayed change), so we can ignore
1921 * ISC_R_NOTFOUND here.
1923 if (result
== ISC_R_NOTFOUND
)
1924 result
= ISC_R_SUCCESS
;
1929 /* Check existing DB for NSEC3 */
1931 CHECK(dns_nsec3_activex(db
, ver
, ISC_FALSE
,
1932 privatetype
, &nsec3
));
1934 /* Refuse to allow NSEC3 with NSEC-only keys */
1935 if (nseconly
&& nsec3
) {
1936 update_log(client
, zone
, ISC_LOG_ERROR
,
1937 "NSEC only DNSKEYs and NSEC3 chains not allowed");
1938 result
= DNS_R_REFUSED
;
1942 /* Verify NSEC3 params */
1943 CHECK(get_iterations(db
, ver
, privatetype
, &iterations
));
1944 CHECK(dns_nsec3_maxiterations(db
, ver
, client
->mctx
, &max
));
1945 if (max
!= 0 && iterations
> max
) {
1946 update_log(client
, zone
, ISC_LOG_ERROR
,
1947 "too many NSEC3 iterations (%u) for "
1948 "weakest DNSKEY (%u)", iterations
, max
);
1949 result
= DNS_R_REFUSED
;
1958 * Delay NSEC3PARAM changes as they need to be applied to the whole zone.
1961 add_nsec3param_records(ns_client_t
*client
, dns_zone_t
*zone
, dns_db_t
*db
,
1962 dns_dbversion_t
*ver
, dns_diff_t
*diff
)
1964 isc_result_t result
= ISC_R_SUCCESS
;
1965 dns_difftuple_t
*tuple
, *newtuple
= NULL
, *next
;
1966 dns_rdata_t rdata
= DNS_RDATA_INIT
;
1967 unsigned char buf
[DNS_NSEC3PARAM_BUFFERSIZE
+ 1];
1968 dns_diff_t temp_diff
;
1971 dns_name_t
*name
= dns_zone_getorigin(zone
);
1972 dns_rdatatype_t privatetype
= dns_zone_getprivatetype(zone
);
1973 isc_uint32_t ttl
= 0;
1974 isc_boolean_t ttl_good
= ISC_FALSE
;
1976 update_log(client
, zone
, ISC_LOG_DEBUG(3),
1977 "checking for NSEC3PARAM changes");
1979 dns_diff_init(diff
->mctx
, &temp_diff
);
1982 * Extract NSEC3PARAM tuples from list.
1984 for (tuple
= ISC_LIST_HEAD(diff
->tuples
);
1988 next
= ISC_LIST_NEXT(tuple
, link
);
1990 if (tuple
->rdata
.type
!= dns_rdatatype_nsec3param
||
1991 !dns_name_equal(name
, &tuple
->name
))
1993 ISC_LIST_UNLINK(diff
->tuples
, tuple
, link
);
1994 ISC_LIST_APPEND(temp_diff
.tuples
, tuple
, link
);
1998 * Extract TTL changes pairs, we don't need to convert these to
2001 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2002 tuple
!= NULL
; tuple
= next
) {
2003 if (tuple
->op
== DNS_DIFFOP_ADD
) {
2006 * Any adds here will contain the final
2007 * NSEC3PARAM RRset TTL.
2010 ttl_good
= ISC_TRUE
;
2013 * Walk the temp_diff list looking for the
2014 * corresponding delete.
2016 next
= ISC_LIST_HEAD(temp_diff
.tuples
);
2017 while (next
!= NULL
) {
2018 unsigned char *next_data
= next
->rdata
.data
;
2019 unsigned char *tuple_data
= tuple
->rdata
.data
;
2020 if (next
->op
== DNS_DIFFOP_DEL
&&
2021 next
->rdata
.length
== tuple
->rdata
.length
&&
2022 !memcmp(next_data
, tuple_data
,
2023 next
->rdata
.length
)) {
2024 ISC_LIST_UNLINK(temp_diff
.tuples
, next
,
2026 ISC_LIST_APPEND(diff
->tuples
, next
,
2030 next
= ISC_LIST_NEXT(next
, link
);
2033 * If we have not found a pair move onto the next
2037 next
= ISC_LIST_NEXT(tuple
, link
);
2041 * Find the next tuple to be processed before
2042 * unlinking then complete moving the pair to 'diff'.
2044 next
= ISC_LIST_NEXT(tuple
, link
);
2045 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2046 ISC_LIST_APPEND(diff
->tuples
, tuple
, link
);
2048 next
= ISC_LIST_NEXT(tuple
, link
);
2052 * Preserve any ongoing changes from a BIND 9.6.x upgrade.
2054 * Any NSEC3PARAM records with flags other than OPTOUT named
2055 * in managing and should not be touched so revert such changes
2056 * taking into account any TTL change of the NSEC3PARAM RRset.
2058 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2059 tuple
!= NULL
; tuple
= next
) {
2060 next
= ISC_LIST_NEXT(tuple
, link
);
2061 if ((tuple
->rdata
.data
[1] & ~DNS_NSEC3FLAG_OPTOUT
) != 0) {
2063 * If we havn't had any adds then the tuple->ttl must
2064 * be the original ttl and should be used for any
2069 ttl_good
= ISC_TRUE
;
2071 op
= (tuple
->op
== DNS_DIFFOP_DEL
) ?
2072 DNS_DIFFOP_ADD
: DNS_DIFFOP_DEL
;
2073 CHECK(dns_difftuple_create(diff
->mctx
, op
, name
,
2076 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2077 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2078 dns_diff_appendminimal(diff
, &tuple
);
2083 * We now have just the actual changes to the NSEC3PARAM RRset.
2084 * Convert the adds to delayed adds and the deletions into delayed
2087 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2088 tuple
!= NULL
; tuple
= next
) {
2090 * If we havn't had any adds then the tuple->ttl must be the
2091 * original ttl and should be used for any future changes.
2095 ttl_good
= ISC_TRUE
;
2097 if (tuple
->op
== DNS_DIFFOP_ADD
) {
2098 isc_boolean_t nseconly
= ISC_FALSE
;
2101 * Look for any deletes which match this ADD ignoring
2102 * flags. We don't need to explictly remove them as
2103 * they will be removed a side effect of processing
2106 next
= ISC_LIST_HEAD(temp_diff
.tuples
);
2107 while (next
!= NULL
) {
2108 unsigned char *next_data
= next
->rdata
.data
;
2109 unsigned char *tuple_data
= tuple
->rdata
.data
;
2110 if (next
->op
!= DNS_DIFFOP_DEL
||
2111 next
->rdata
.length
!= tuple
->rdata
.length
||
2112 next_data
[0] != tuple_data
[0] ||
2113 next_data
[2] != tuple_data
[2] ||
2114 next_data
[3] != tuple_data
[3] ||
2115 memcmp(next_data
+ 4, tuple_data
+ 4,
2116 tuple
->rdata
.length
- 4)) {
2117 next
= ISC_LIST_NEXT(next
, link
);
2120 ISC_LIST_UNLINK(temp_diff
.tuples
, next
, link
);
2121 ISC_LIST_APPEND(diff
->tuples
, next
, link
);
2122 next
= ISC_LIST_HEAD(temp_diff
.tuples
);
2126 * Create a private-type record to signal that
2127 * we want a delayed NSEC3 chain add/delete
2129 dns_nsec3param_toprivate(&tuple
->rdata
, &rdata
,
2130 privatetype
, buf
, sizeof(buf
));
2131 buf
[2] |= DNS_NSEC3FLAG_CREATE
;
2134 * If the zone is not currently capable of
2135 * supporting an NSEC3 chain, then we set the
2136 * INITIAL flag to indicate that these parameters
2137 * are to be used later.
2139 result
= dns_nsec_nseconly(db
, ver
, &nseconly
);
2140 if (result
== ISC_R_NOTFOUND
|| nseconly
)
2141 buf
[2] |= DNS_NSEC3FLAG_INITIAL
;
2144 * See if this CREATE request already exists.
2146 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2149 CHECK(dns_difftuple_create(diff
->mctx
,
2153 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2157 * Remove any existing CREATE request to add an
2158 * otherwise indentical chain with a reversed
2161 buf
[2] ^= DNS_NSEC3FLAG_OPTOUT
;
2162 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2165 CHECK(dns_difftuple_create(diff
->mctx
,
2169 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2173 * Find the next tuple to be processed and remove the
2174 * temporary add record.
2176 next
= ISC_LIST_NEXT(tuple
, link
);
2177 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_DEL
,
2178 name
, ttl
, &tuple
->rdata
,
2180 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2181 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2182 dns_diff_appendminimal(diff
, &tuple
);
2183 dns_rdata_reset(&rdata
);
2185 next
= ISC_LIST_NEXT(tuple
, link
);
2188 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2189 tuple
!= NULL
; tuple
= next
) {
2193 next
= ISC_LIST_NEXT(tuple
, link
);
2195 * See if we already have a REMOVE request in progress.
2197 dns_nsec3param_toprivate(&tuple
->rdata
, &rdata
, privatetype
,
2200 buf
[2] |= DNS_NSEC3FLAG_REMOVE
| DNS_NSEC3FLAG_NONSEC
;
2202 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2204 buf
[2] &= ~DNS_NSEC3FLAG_NONSEC
;
2205 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2209 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_ADD
,
2210 name
, 0, &rdata
, &newtuple
));
2211 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2213 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_ADD
, name
,
2214 ttl
, &tuple
->rdata
, &newtuple
));
2215 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2216 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2217 dns_diff_appendminimal(diff
, &tuple
);
2218 dns_rdata_reset(&rdata
);
2221 result
= ISC_R_SUCCESS
;
2223 dns_diff_clear(&temp_diff
);
2228 rollback_private(dns_db_t
*db
, dns_rdatatype_t privatetype
,
2229 dns_dbversion_t
*ver
, dns_diff_t
*diff
)
2231 dns_diff_t temp_diff
;
2233 dns_difftuple_t
*tuple
, *newtuple
= NULL
, *next
;
2234 dns_name_t
*name
= dns_db_origin(db
);
2235 isc_mem_t
*mctx
= diff
->mctx
;
2236 isc_result_t result
;
2238 if (privatetype
== 0)
2239 return (ISC_R_SUCCESS
);
2241 dns_diff_init(mctx
, &temp_diff
);
2244 * Extract the changes to be rolled back.
2246 for (tuple
= ISC_LIST_HEAD(diff
->tuples
);
2247 tuple
!= NULL
; tuple
= next
) {
2249 next
= ISC_LIST_NEXT(tuple
, link
);
2251 if (tuple
->rdata
.type
!= privatetype
||
2252 !dns_name_equal(name
, &tuple
->name
))
2256 * Allow records which indicate that a zone has been
2257 * signed with a DNSKEY to be removed.
2259 if (tuple
->op
== DNS_DIFFOP_DEL
&&
2260 tuple
->rdata
.length
== 5 &&
2261 tuple
->rdata
.data
[0] != 0 &&
2262 tuple
->rdata
.data
[4] != 0)
2265 ISC_LIST_UNLINK(diff
->tuples
, tuple
, link
);
2266 ISC_LIST_PREPEND(temp_diff
.tuples
, tuple
, link
);
2270 * Rollback the changes.
2272 while ((tuple
= ISC_LIST_HEAD(temp_diff
.tuples
)) != NULL
) {
2273 op
= (tuple
->op
== DNS_DIFFOP_DEL
) ?
2274 DNS_DIFFOP_ADD
: DNS_DIFFOP_DEL
;
2275 CHECK(dns_difftuple_create(mctx
, op
, name
, tuple
->ttl
,
2276 &tuple
->rdata
, &newtuple
));
2277 CHECK(do_one_tuple(&newtuple
, db
, ver
, &temp_diff
));
2279 result
= ISC_R_SUCCESS
;
2282 dns_diff_clear(&temp_diff
);
2287 * Add records to cause the delayed signing of the zone by added DNSKEY
2288 * to remove the RRSIG records generated by a deleted DNSKEY.
2291 add_signing_records(dns_db_t
*db
, dns_rdatatype_t privatetype
,
2292 dns_dbversion_t
*ver
, dns_diff_t
*diff
)
2294 dns_difftuple_t
*tuple
, *newtuple
= NULL
, *next
;
2295 dns_rdata_dnskey_t dnskey
;
2296 dns_rdata_t rdata
= DNS_RDATA_INIT
;
2299 isc_result_t result
= ISC_R_SUCCESS
;
2301 unsigned char buf
[5];
2302 dns_name_t
*name
= dns_db_origin(db
);
2303 dns_diff_t temp_diff
;
2305 dns_diff_init(diff
->mctx
, &temp_diff
);
2308 * Extract the DNSKEY tuples from the list.
2310 for (tuple
= ISC_LIST_HEAD(diff
->tuples
);
2311 tuple
!= NULL
; tuple
= next
) {
2313 next
= ISC_LIST_NEXT(tuple
, link
);
2315 if (tuple
->rdata
.type
!= dns_rdatatype_dnskey
)
2318 ISC_LIST_UNLINK(diff
->tuples
, tuple
, link
);
2319 ISC_LIST_APPEND(temp_diff
.tuples
, tuple
, link
);
2323 * Extract TTL changes pairs, we don't need signing records for these.
2325 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2326 tuple
!= NULL
; tuple
= next
) {
2327 if (tuple
->op
== DNS_DIFFOP_ADD
) {
2329 * Walk the temp_diff list looking for the
2330 * corresponding delete.
2332 next
= ISC_LIST_HEAD(temp_diff
.tuples
);
2333 while (next
!= NULL
) {
2334 unsigned char *next_data
= next
->rdata
.data
;
2335 unsigned char *tuple_data
= tuple
->rdata
.data
;
2336 if (next
->op
== DNS_DIFFOP_DEL
&&
2337 dns_name_equal(&tuple
->name
, &next
->name
) &&
2338 next
->rdata
.length
== tuple
->rdata
.length
&&
2339 !memcmp(next_data
, tuple_data
,
2340 next
->rdata
.length
)) {
2341 ISC_LIST_UNLINK(temp_diff
.tuples
, next
,
2343 ISC_LIST_APPEND(diff
->tuples
, next
,
2347 next
= ISC_LIST_NEXT(next
, link
);
2350 * If we have not found a pair move onto the next
2354 next
= ISC_LIST_NEXT(tuple
, link
);
2358 * Find the next tuple to be processed before
2359 * unlinking then complete moving the pair to 'diff'.
2361 next
= ISC_LIST_NEXT(tuple
, link
);
2362 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2363 ISC_LIST_APPEND(diff
->tuples
, tuple
, link
);
2365 next
= ISC_LIST_NEXT(tuple
, link
);
2369 * Process the remaining DNSKEY entries.
2371 for (tuple
= ISC_LIST_HEAD(temp_diff
.tuples
);
2373 tuple
= ISC_LIST_HEAD(temp_diff
.tuples
)) {
2375 ISC_LIST_UNLINK(temp_diff
.tuples
, tuple
, link
);
2376 ISC_LIST_APPEND(diff
->tuples
, tuple
, link
);
2378 result
= dns_rdata_tostruct(&tuple
->rdata
, &dnskey
, NULL
);
2379 RUNTIME_CHECK(result
== ISC_R_SUCCESS
);
2381 (DNS_KEYFLAG_OWNERMASK
|DNS_KEYTYPE_NOAUTH
))
2382 != DNS_KEYOWNER_ZONE
)
2385 dns_rdata_toregion(&tuple
->rdata
, &r
);
2387 keyid
= dst_region_computeid(&r
, dnskey
.algorithm
);
2389 buf
[0] = dnskey
.algorithm
;
2390 buf
[1] = (keyid
& 0xff00) >> 8;
2391 buf
[2] = (keyid
& 0xff);
2392 buf
[3] = (tuple
->op
== DNS_DIFFOP_ADD
) ? 0 : 1;
2395 rdata
.length
= sizeof(buf
);
2396 rdata
.type
= privatetype
;
2397 rdata
.rdclass
= tuple
->rdata
.rdclass
;
2399 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2402 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_ADD
,
2403 name
, 0, &rdata
, &newtuple
));
2404 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2405 INSIST(newtuple
== NULL
);
2407 * Remove any record which says this operation has already
2411 CHECK(rr_exists(db
, ver
, name
, &rdata
, &flag
));
2413 CHECK(dns_difftuple_create(diff
->mctx
, DNS_DIFFOP_DEL
,
2414 name
, 0, &rdata
, &newtuple
));
2415 CHECK(do_one_tuple(&newtuple
, db
, ver
, diff
));
2416 INSIST(newtuple
== NULL
);
2421 dns_diff_clear(&temp_diff
);
2425 static isc_boolean_t
2426 isdnssec(dns_db_t
*db
, dns_dbversion_t
*ver
, dns_rdatatype_t privatetype
) {
2427 isc_result_t result
;
2428 isc_boolean_t build_nsec
, build_nsec3
;
2430 if (dns_db_issecure(db
))
2433 result
= dns_private_chains(db
, ver
, privatetype
,
2434 &build_nsec
, &build_nsec3
);
2435 RUNTIME_CHECK(result
== ISC_R_SUCCESS
);
2436 return (build_nsec
|| build_nsec3
);
2440 update_action(isc_task_t
*task
, isc_event_t
*event
) {
2441 update_event_t
*uev
= (update_event_t
*) event
;
2442 dns_zone_t
*zone
= uev
->zone
;
2443 ns_client_t
*client
= (ns_client_t
*)event
->ev_arg
;
2444 isc_result_t result
;
2445 dns_db_t
*db
= NULL
;
2446 dns_dbversion_t
*oldver
= NULL
;
2447 dns_dbversion_t
*ver
= NULL
;
2448 dns_diff_t diff
; /* Pending updates. */
2449 dns_diff_t temp
; /* Pending RR existence assertions. */
2450 isc_boolean_t soa_serial_changed
= ISC_FALSE
;
2451 isc_mem_t
*mctx
= client
->mctx
;
2452 dns_rdatatype_t covers
;
2453 dns_message_t
*request
= client
->message
;
2454 dns_rdataclass_t zoneclass
;
2455 dns_name_t
*zonename
;
2456 dns_ssutable_t
*ssutable
= NULL
;
2457 dns_fixedname_t tmpnamefixed
;
2458 dns_name_t
*tmpname
= NULL
;
2459 unsigned int options
, options2
;
2460 dns_difftuple_t
*tuple
;
2461 dns_rdata_dnskey_t dnskey
;
2462 isc_boolean_t had_dnskey
;
2463 dns_rdatatype_t privatetype
= dns_zone_getprivatetype(zone
);
2464 dns_ttl_t maxttl
= 0;
2466 INSIST(event
->ev_type
== DNS_EVENT_UPDATE
);
2468 dns_diff_init(mctx
, &diff
);
2469 dns_diff_init(mctx
, &temp
);
2471 CHECK(dns_zone_getdb(zone
, &db
));
2472 zonename
= dns_db_origin(db
);
2473 zoneclass
= dns_db_class(db
);
2474 dns_zone_getssutable(zone
, &ssutable
);
2477 * Update message processing can leak record existance information
2478 * so check that we are allowed to query this zone. Additionally
2479 * if we would refuse all updates for this zone we bail out here.
2481 CHECK(checkqueryacl(client
, dns_zone_getqueryacl(zone
), zonename
,
2482 dns_zone_getupdateacl(zone
), ssutable
));
2485 * Get old and new versions now that queryacl has been checked.
2487 dns_db_currentversion(db
, &oldver
);
2488 CHECK(dns_db_newversion(db
, &ver
));
2491 * Check prerequisites.
2494 for (result
= dns_message_firstname(request
, DNS_SECTION_PREREQUISITE
);
2495 result
== ISC_R_SUCCESS
;
2496 result
= dns_message_nextname(request
, DNS_SECTION_PREREQUISITE
))
2498 dns_name_t
*name
= NULL
;
2499 dns_rdata_t rdata
= DNS_RDATA_INIT
;
2501 dns_rdataclass_t update_class
;
2504 get_current_rr(request
, DNS_SECTION_PREREQUISITE
, zoneclass
,
2505 &name
, &rdata
, &covers
, &ttl
, &update_class
);
2508 PREREQFAILC(DNS_R_FORMERR
,
2509 "prerequisite TTL is not zero");
2511 if (! dns_name_issubdomain(name
, zonename
))
2512 PREREQFAILN(DNS_R_NOTZONE
, name
,
2513 "prerequisite name is out of zone");
2515 if (update_class
== dns_rdataclass_any
) {
2516 if (rdata
.length
!= 0)
2517 PREREQFAILC(DNS_R_FORMERR
,
2518 "class ANY prerequisite "
2519 "RDATA is not empty");
2520 if (rdata
.type
== dns_rdatatype_any
) {
2521 CHECK(name_exists(db
, ver
, name
, &flag
));
2523 PREREQFAILN(DNS_R_NXDOMAIN
, name
,
2529 CHECK(rrset_exists(db
, ver
, name
,
2530 rdata
.type
, covers
, &flag
));
2532 /* RRset does not exist. */
2533 PREREQFAILNT(DNS_R_NXRRSET
, name
, rdata
.type
,
2534 "'rrset exists (value independent)' "
2535 "prerequisite not satisfied");
2538 } else if (update_class
== dns_rdataclass_none
) {
2539 if (rdata
.length
!= 0)
2540 PREREQFAILC(DNS_R_FORMERR
,
2541 "class NONE prerequisite "
2542 "RDATA is not empty");
2543 if (rdata
.type
== dns_rdatatype_any
) {
2544 CHECK(name_exists(db
, ver
, name
, &flag
));
2546 PREREQFAILN(DNS_R_YXDOMAIN
, name
,
2547 "'name not in use' "
2552 CHECK(rrset_exists(db
, ver
, name
,
2553 rdata
.type
, covers
, &flag
));
2556 PREREQFAILNT(DNS_R_YXRRSET
, name
,
2558 "'rrset does not exist' "
2563 } else if (update_class
== zoneclass
) {
2564 /* "temp<rr.name, rr.type> += rr;" */
2565 result
= temp_append(&temp
, name
, &rdata
);
2566 if (result
!= ISC_R_SUCCESS
) {
2567 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
2568 "temp entry creation failed: %s",
2569 dns_result_totext(result
));
2570 FAIL(ISC_R_UNEXPECTED
);
2573 PREREQFAILC(DNS_R_FORMERR
, "malformed prerequisite");
2576 if (result
!= ISC_R_NOMORE
)
2580 * Perform the final check of the "rrset exists (value dependent)"
2583 if (ISC_LIST_HEAD(temp
.tuples
) != NULL
) {
2584 dns_rdatatype_t type
;
2587 * Sort the prerequisite records by owner name,
2590 result
= dns_diff_sort(&temp
, temp_order
);
2591 if (result
!= ISC_R_SUCCESS
)
2592 FAILC(result
, "'RRset exists (value dependent)' "
2593 "prerequisite not satisfied");
2595 dns_fixedname_init(&tmpnamefixed
);
2596 tmpname
= dns_fixedname_name(&tmpnamefixed
);
2597 result
= temp_check(mctx
, &temp
, db
, ver
, tmpname
, &type
);
2598 if (result
!= ISC_R_SUCCESS
)
2599 FAILNT(result
, tmpname
, type
,
2600 "'RRset exists (value dependent)' "
2601 "prerequisite not satisfied");
2604 update_log(client
, zone
, LOGLEVEL_DEBUG
,
2605 "prerequisites are OK");
2608 * Check Requestor's Permissions. It seems a bit silly to do this
2609 * only after prerequisite testing, but that is what RFC2136 says.
2611 if (ssutable
== NULL
)
2612 CHECK(checkupdateacl(client
, dns_zone_getupdateacl(zone
),
2613 "update", zonename
, ISC_FALSE
, ISC_FALSE
));
2614 else if (client
->signer
== NULL
&& !TCPCLIENT(client
))
2615 CHECK(checkupdateacl(client
, NULL
, "update", zonename
,
2616 ISC_FALSE
, ISC_TRUE
));
2618 if (dns_zone_getupdatedisabled(zone
))
2619 FAILC(DNS_R_REFUSED
, "dynamic update temporarily disabled "
2620 "because the zone is frozen. Use "
2621 "'rndc thaw' to re-enable updates.");
2624 * Perform the Update Section Prescan.
2627 for (result
= dns_message_firstname(request
, DNS_SECTION_UPDATE
);
2628 result
== ISC_R_SUCCESS
;
2629 result
= dns_message_nextname(request
, DNS_SECTION_UPDATE
))
2631 dns_name_t
*name
= NULL
;
2632 dns_rdata_t rdata
= DNS_RDATA_INIT
;
2634 dns_rdataclass_t update_class
;
2635 get_current_rr(request
, DNS_SECTION_UPDATE
, zoneclass
,
2636 &name
, &rdata
, &covers
, &ttl
, &update_class
);
2638 if (! dns_name_issubdomain(name
, zonename
))
2639 FAILC(DNS_R_NOTZONE
,
2640 "update RR is outside zone");
2641 if (update_class
== zoneclass
) {
2643 * Check for meta-RRs. The RFC2136 pseudocode says
2644 * check for ANY|AXFR|MAILA|MAILB, but the text adds
2645 * "or any other QUERY metatype"
2647 if (dns_rdatatype_ismeta(rdata
.type
)) {
2648 FAILC(DNS_R_FORMERR
,
2649 "meta-RR in update");
2651 result
= dns_zone_checknames(zone
, name
, &rdata
);
2652 if (result
!= ISC_R_SUCCESS
)
2653 FAIL(DNS_R_REFUSED
);
2654 } else if (update_class
== dns_rdataclass_any
) {
2655 if (ttl
!= 0 || rdata
.length
!= 0 ||
2656 (dns_rdatatype_ismeta(rdata
.type
) &&
2657 rdata
.type
!= dns_rdatatype_any
))
2658 FAILC(DNS_R_FORMERR
,
2659 "meta-RR in update");
2660 } else if (update_class
== dns_rdataclass_none
) {
2662 dns_rdatatype_ismeta(rdata
.type
))
2663 FAILC(DNS_R_FORMERR
,
2664 "meta-RR in update");
2666 update_log(client
, zone
, ISC_LOG_WARNING
,
2667 "update RR has incorrect class %d",
2669 FAIL(DNS_R_FORMERR
);
2673 * draft-ietf-dnsind-simple-secure-update-01 says
2674 * "Unlike traditional dynamic update, the client
2675 * is forbidden from updating NSEC records."
2677 if (rdata
.type
== dns_rdatatype_nsec3
) {
2678 FAILC(DNS_R_REFUSED
,
2679 "explicit NSEC3 updates are not allowed "
2681 } else if (rdata
.type
== dns_rdatatype_nsec
) {
2682 FAILC(DNS_R_REFUSED
,
2683 "explicit NSEC updates are not allowed "
2685 } else if (rdata
.type
== dns_rdatatype_rrsig
&&
2686 !dns_name_equal(name
, zonename
)) {
2687 FAILC(DNS_R_REFUSED
,
2688 "explicit RRSIG updates are currently "
2689 "not supported in secure zones except "
2693 if (ssutable
!= NULL
) {
2694 isc_netaddr_t
*tcpaddr
, netaddr
;
2695 dst_key_t
*tsigkey
= NULL
;
2697 * If this is a TCP connection then pass the
2698 * address of the client through for tcp-self
2699 * and 6to4-self otherwise pass NULL. This
2700 * provides weak address based authentication.
2702 if (TCPCLIENT(client
)) {
2703 isc_netaddr_fromsockaddr(&netaddr
,
2709 if (client
->message
->tsigkey
!= NULL
)
2710 tsigkey
= client
->message
->tsigkey
->key
;
2712 if (rdata
.type
!= dns_rdatatype_any
) {
2713 if (!dns_ssutable_checkrules(ssutable
,
2718 FAILC(DNS_R_REFUSED
,
2719 "rejected by secure update");
2721 if (!ssu_checkall(db
, ver
, name
, ssutable
,
2722 client
->signer
, tcpaddr
,
2724 FAILC(DNS_R_REFUSED
,
2725 "rejected by secure update");
2729 if (result
!= ISC_R_NOMORE
)
2732 update_log(client
, zone
, LOGLEVEL_DEBUG
,
2733 "update section prescan OK");
2736 * Process the Update Section.
2739 options
= dns_zone_getoptions(zone
);
2740 options2
= dns_zone_getoptions2(zone
);
2741 for (result
= dns_message_firstname(request
, DNS_SECTION_UPDATE
);
2742 result
== ISC_R_SUCCESS
;
2743 result
= dns_message_nextname(request
, DNS_SECTION_UPDATE
))
2745 dns_name_t
*name
= NULL
;
2746 dns_rdata_t rdata
= DNS_RDATA_INIT
;
2748 dns_rdataclass_t update_class
;
2751 get_current_rr(request
, DNS_SECTION_UPDATE
, zoneclass
,
2752 &name
, &rdata
, &covers
, &ttl
, &update_class
);
2754 if (update_class
== zoneclass
) {
2757 * RFC1123 doesn't allow MF and MD in master zones. */
2758 if (rdata
.type
== dns_rdatatype_md
||
2759 rdata
.type
== dns_rdatatype_mf
) {
2760 char typebuf
[DNS_RDATATYPE_FORMATSIZE
];
2762 dns_rdatatype_format(rdata
.type
, typebuf
,
2764 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
2765 "attempt to add %s ignored",
2769 if ((rdata
.type
== dns_rdatatype_ns
||
2770 rdata
.type
== dns_rdatatype_dname
) &&
2771 dns_name_iswildcard(name
)) {
2772 char typebuf
[DNS_RDATATYPE_FORMATSIZE
];
2774 dns_rdatatype_format(rdata
.type
, typebuf
,
2776 update_log(client
, zone
,
2778 "attempt to add wildcard %s record "
2779 "ignored", typebuf
);
2782 if (rdata
.type
== dns_rdatatype_cname
) {
2783 CHECK(cname_incompatible_rrset_exists(db
, ver
,
2787 update_log(client
, zone
,
2789 "attempt to add CNAME "
2790 "alongside non-CNAME "
2795 CHECK(rrset_exists(db
, ver
, name
,
2796 dns_rdatatype_cname
, 0,
2799 ! dns_rdatatype_isdnssec(rdata
.type
))
2801 update_log(client
, zone
,
2803 "attempt to add non-CNAME "
2804 "alongside CNAME ignored");
2808 if (rdata
.type
== dns_rdatatype_soa
) {
2810 CHECK(rrset_exists(db
, ver
, name
,
2811 dns_rdatatype_soa
, 0,
2814 update_log(client
, zone
,
2816 "attempt to create 2nd "
2820 CHECK(check_soa_increment(db
, ver
, &rdata
,
2823 update_log(client
, zone
,
2825 "SOA update failed to "
2826 "increment serial, "
2830 soa_serial_changed
= ISC_TRUE
;
2833 if (rdata
.type
== privatetype
) {
2834 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
2835 "attempt to add a private type "
2836 "(%u) record rejected internal "
2837 "use only", privatetype
);
2841 if (rdata
.type
== dns_rdatatype_nsec3param
) {
2843 * Ignore attempts to add NSEC3PARAM records
2844 * with any flags other than OPTOUT.
2846 if ((rdata
.data
[1] & ~DNS_NSEC3FLAG_OPTOUT
) != 0) {
2847 update_log(client
, zone
,
2849 "attempt to add NSEC3PARAM "
2850 "record with non OPTOUT "
2856 if ((options
& DNS_ZONEOPT_CHECKWILDCARD
) != 0 &&
2857 dns_name_internalwildcard(name
)) {
2858 char namestr
[DNS_NAME_FORMATSIZE
];
2859 dns_name_format(name
, namestr
,
2861 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
2862 "warning: ownername '%s' contains "
2863 "a non-terminal wildcard", namestr
);
2866 if ((options2
& DNS_ZONEOPT2_CHECKTTL
) != 0) {
2867 maxttl
= dns_zone_getmaxttl(zone
);
2870 update_log(client
, zone
,
2872 "reducing TTL to the "
2873 "configured max-zone-ttl %d",
2878 if (isc_log_wouldlog(ns_g_lctx
, LOGLEVEL_PROTOCOL
)) {
2879 char namestr
[DNS_NAME_FORMATSIZE
];
2880 char typestr
[DNS_RDATATYPE_FORMATSIZE
];
2884 const char *truncated
= "";
2886 dns_name_format(name
, namestr
, sizeof(namestr
));
2887 dns_rdatatype_format(rdata
.type
, typestr
,
2889 isc_buffer_init(&buf
, rdstr
, sizeof(rdstr
));
2890 result
= dns_rdata_totext(&rdata
, NULL
, &buf
);
2891 if (result
== ISC_R_NOSPACE
) {
2892 len
= (int)isc_buffer_usedlength(&buf
);
2893 truncated
= " [TRUNCATED]";
2894 } else if (result
!= ISC_R_SUCCESS
) {
2895 snprintf(rdstr
, sizeof(rdstr
), "[dns_"
2896 "rdata_totext failed: %s]",
2897 dns_result_totext(result
));
2898 len
= strlen(rdstr
);
2900 len
= (int)isc_buffer_usedlength(&buf
);
2901 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
2902 "adding an RR at '%s' %s %.*s%s",
2903 namestr
, typestr
, len
, rdstr
,
2907 /* Prepare the affected RRset for the addition. */
2909 add_rr_prepare_ctx_t ctx
;
2914 ctx
.update_rr
= &rdata
;
2915 ctx
.update_rr_ttl
= ttl
;
2916 ctx
.ignore_add
= ISC_FALSE
;
2917 dns_diff_init(mctx
, &ctx
.del_diff
);
2918 dns_diff_init(mctx
, &ctx
.add_diff
);
2919 CHECK(foreach_rr(db
, ver
, name
, rdata
.type
,
2920 covers
, add_rr_prepare_action
,
2923 if (ctx
.ignore_add
) {
2924 dns_diff_clear(&ctx
.del_diff
);
2925 dns_diff_clear(&ctx
.add_diff
);
2927 result
= do_diff(&ctx
.del_diff
, db
, ver
,
2929 if (result
== ISC_R_SUCCESS
) {
2930 result
= do_diff(&ctx
.add_diff
,
2934 if (result
!= ISC_R_SUCCESS
) {
2935 dns_diff_clear(&ctx
.del_diff
);
2936 dns_diff_clear(&ctx
.add_diff
);
2939 CHECK(update_one_rr(db
, ver
, &diff
,
2941 name
, ttl
, &rdata
));
2944 } else if (update_class
== dns_rdataclass_any
) {
2945 if (rdata
.type
== dns_rdatatype_any
) {
2946 if (isc_log_wouldlog(ns_g_lctx
,
2949 char namestr
[DNS_NAME_FORMATSIZE
];
2950 dns_name_format(name
, namestr
,
2952 update_log(client
, zone
,
2954 "delete all rrsets from "
2955 "name '%s'", namestr
);
2957 if (dns_name_equal(name
, zonename
)) {
2958 CHECK(delete_if(type_not_soa_nor_ns_p
,
2960 dns_rdatatype_any
, 0,
2963 CHECK(delete_if(type_not_dnssec
,
2965 dns_rdatatype_any
, 0,
2968 } else if (dns_name_equal(name
, zonename
) &&
2969 (rdata
.type
== dns_rdatatype_soa
||
2970 rdata
.type
== dns_rdatatype_ns
)) {
2971 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
2972 "attempt to delete all SOA "
2973 "or NS records ignored");
2976 if (isc_log_wouldlog(ns_g_lctx
,
2979 char namestr
[DNS_NAME_FORMATSIZE
];
2980 char typestr
[DNS_RDATATYPE_FORMATSIZE
];
2981 dns_name_format(name
, namestr
,
2983 dns_rdatatype_format(rdata
.type
,
2986 update_log(client
, zone
,
2988 "deleting rrset at '%s' %s",
2991 CHECK(delete_if(true_p
, db
, ver
, name
,
2992 rdata
.type
, covers
, &rdata
,
2995 } else if (update_class
== dns_rdataclass_none
) {
2996 char namestr
[DNS_NAME_FORMATSIZE
];
2997 char typestr
[DNS_RDATATYPE_FORMATSIZE
];
3000 * The (name == zonename) condition appears in
3001 * RFC2136 3.4.2.4 but is missing from the pseudocode.
3003 if (dns_name_equal(name
, zonename
)) {
3004 if (rdata
.type
== dns_rdatatype_soa
) {
3005 update_log(client
, zone
,
3007 "attempt to delete SOA "
3011 if (rdata
.type
== dns_rdatatype_ns
) {
3013 CHECK(rr_count(db
, ver
, name
,
3017 update_log(client
, zone
,
3026 dns_name_format(name
, namestr
, sizeof(namestr
));
3027 dns_rdatatype_format(rdata
.type
, typestr
,
3029 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
3030 "deleting an RR at %s %s", namestr
, typestr
);
3031 CHECK(delete_if(rr_equal_p
, db
, ver
, name
, rdata
.type
,
3032 covers
, &rdata
, &diff
));
3035 if (result
!= ISC_R_NOMORE
)
3039 * Check that any changes to DNSKEY/NSEC3PARAM records make sense.
3040 * If they don't then back out all changes to DNSKEY/NSEC3PARAM
3043 if (! ISC_LIST_EMPTY(diff
.tuples
))
3044 CHECK(check_dnssec(client
, zone
, db
, ver
, &diff
));
3046 if (! ISC_LIST_EMPTY(diff
.tuples
)) {
3047 unsigned int errors
= 0;
3048 CHECK(dns_zone_nscheck(zone
, db
, ver
, &errors
));
3050 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
3051 "update rejected: post update name server "
3052 "sanity check failed");
3053 result
= DNS_R_REFUSED
;
3059 * If any changes were made, increment the SOA serial number,
3060 * update RRSIGs and NSECs (if zone is secure), and write the update
3063 if (! ISC_LIST_EMPTY(diff
.tuples
)) {
3065 dns_journal_t
*journal
;
3066 isc_boolean_t has_dnskey
;
3069 * Increment the SOA serial, but only if it was not
3070 * changed as a result of an update operation.
3072 if (! soa_serial_changed
) {
3073 CHECK(update_soa_serial(db
, ver
, &diff
, mctx
,
3074 dns_zone_getserialupdatemethod(zone
)));
3077 CHECK(check_mx(client
, zone
, db
, ver
, &diff
));
3079 CHECK(remove_orphaned_ds(db
, ver
, &diff
));
3081 CHECK(rrset_exists(db
, ver
, zonename
, dns_rdatatype_dnskey
,
3084 #define ALLOW_SECURE_TO_INSECURE(zone) \
3085 ((dns_zone_getoptions(zone) & DNS_ZONEOPT_SECURETOINSECURE) != 0)
3087 CHECK(rrset_exists(db
, oldver
, zonename
, dns_rdatatype_dnskey
,
3089 if (!ALLOW_SECURE_TO_INSECURE(zone
)) {
3090 if (had_dnskey
&& !has_dnskey
) {
3091 update_log(client
, zone
, LOGLEVEL_PROTOCOL
,
3092 "update rejected: all DNSKEY "
3093 "records removed and "
3094 "'dnssec-secure-to-insecure' "
3096 result
= DNS_R_REFUSED
;
3101 CHECK(rollback_private(db
, privatetype
, ver
, &diff
));
3103 CHECK(add_signing_records(db
, privatetype
, ver
, &diff
));
3105 CHECK(add_nsec3param_records(client
, zone
, db
, ver
, &diff
));
3107 if (had_dnskey
&& !has_dnskey
) {
3109 * We are transitioning from secure to insecure.
3110 * Cause all NSEC3 chains to be deleted. When the
3111 * the last signature for the DNSKEY records are
3112 * remove any NSEC chain present will also be removed.
3114 CHECK(dns_nsec3param_deletechains(db
, ver
, zone
,
3116 } else if (has_dnskey
&& isdnssec(db
, ver
, privatetype
)) {
3117 isc_uint32_t interval
;
3118 dns_update_log_t log
;
3120 interval
= dns_zone_getsigvalidityinterval(zone
);
3121 log
.func
= update_log_cb
;
3123 result
= dns_update_signatures(&log
, zone
, db
, oldver
,
3124 ver
, &diff
, interval
);
3126 if (result
!= ISC_R_SUCCESS
) {
3127 update_log(client
, zone
,
3129 "RRSIG/NSEC/NSEC3 update failed: %s",
3130 isc_result_totext(result
));
3135 journalfile
= dns_zone_getjournal(zone
);
3136 if (journalfile
!= NULL
) {
3137 update_log(client
, zone
, LOGLEVEL_DEBUG
,
3138 "writing journal %s", journalfile
);
3141 result
= dns_journal_open(mctx
, journalfile
,
3142 DNS_JOURNAL_CREATE
, &journal
);
3143 if (result
!= ISC_R_SUCCESS
)
3144 FAILS(result
, "journal open failed");
3146 result
= dns_journal_write_transaction(journal
, &diff
);
3147 if (result
!= ISC_R_SUCCESS
) {
3148 dns_journal_destroy(&journal
);
3149 FAILS(result
, "journal write failed");
3152 dns_journal_destroy(&journal
);
3156 * XXXRTH Just a note that this committing code will have
3157 * to change to handle databases that need two-phase
3158 * commit, but this isn't a priority.
3160 update_log(client
, zone
, LOGLEVEL_DEBUG
,
3161 "committing update transaction");
3163 dns_db_closeversion(db
, &ver
, ISC_TRUE
);
3166 * Mark the zone as dirty so that it will be written to disk.
3168 dns_zone_markdirty(zone
);
3171 * Notify slaves of the change we just made.
3173 dns_zone_notify(zone
);
3176 * Cause the zone to be signed with the key that we
3177 * have just added or have the corresponding signatures
3180 * Note: we are already committed to this course of action.
3182 for (tuple
= ISC_LIST_HEAD(diff
.tuples
);
3184 tuple
= ISC_LIST_NEXT(tuple
, link
)) {
3186 dns_secalg_t algorithm
;
3189 if (tuple
->rdata
.type
!= dns_rdatatype_dnskey
)
3192 dns_rdata_tostruct(&tuple
->rdata
, &dnskey
, NULL
);
3194 (DNS_KEYFLAG_OWNERMASK
|DNS_KEYTYPE_NOAUTH
))
3195 != DNS_KEYOWNER_ZONE
)
3198 dns_rdata_toregion(&tuple
->rdata
, &r
);
3199 algorithm
= dnskey
.algorithm
;
3200 keyid
= dst_region_computeid(&r
, algorithm
);
3202 result
= dns_zone_signwithkey(zone
, algorithm
, keyid
,
3203 ISC_TF(tuple
->op
== DNS_DIFFOP_DEL
));
3204 if (result
!= ISC_R_SUCCESS
) {
3205 update_log(client
, zone
, ISC_LOG_ERROR
,
3206 "dns_zone_signwithkey failed: %s",
3207 dns_result_totext(result
));
3212 * Cause the zone to add/delete NSEC3 chains for the
3213 * deferred NSEC3PARAM changes.
3215 * Note: we are already committed to this course of action.
3217 for (tuple
= ISC_LIST_HEAD(diff
.tuples
);
3219 tuple
= ISC_LIST_NEXT(tuple
, link
)) {
3220 unsigned char buf
[DNS_NSEC3PARAM_BUFFERSIZE
];
3221 dns_rdata_t rdata
= DNS_RDATA_INIT
;
3222 dns_rdata_nsec3param_t nsec3param
;
3224 if (tuple
->rdata
.type
!= privatetype
||
3225 tuple
->op
!= DNS_DIFFOP_ADD
)
3228 if (!dns_nsec3param_fromprivate(&tuple
->rdata
, &rdata
,
3231 dns_rdata_tostruct(&rdata
, &nsec3param
, NULL
);
3232 if (nsec3param
.flags
== 0)
3235 result
= dns_zone_addnsec3chain(zone
, &nsec3param
);
3236 if (result
!= ISC_R_SUCCESS
) {
3237 update_log(client
, zone
, ISC_LOG_ERROR
,
3238 "dns_zone_addnsec3chain failed: %s",
3239 dns_result_totext(result
));
3243 update_log(client
, zone
, LOGLEVEL_DEBUG
, "redundant request");
3244 dns_db_closeversion(db
, &ver
, ISC_TRUE
);
3246 result
= ISC_R_SUCCESS
;
3251 * The reason for failure should have been logged at this point.
3254 update_log(client
, zone
, LOGLEVEL_DEBUG
,
3256 dns_db_closeversion(db
, &ver
, ISC_FALSE
);
3260 dns_diff_clear(&temp
);
3261 dns_diff_clear(&diff
);
3264 dns_db_closeversion(db
, &oldver
, ISC_FALSE
);
3269 if (ssutable
!= NULL
)
3270 dns_ssutable_detach(&ssutable
);
3272 isc_task_detach(&task
);
3273 uev
->result
= result
;
3275 INSIST(uev
->zone
== zone
); /* we use this later */
3276 uev
->ev_type
= DNS_EVENT_UPDATEDONE
;
3277 uev
->ev_action
= updatedone_action
;
3278 isc_task_send(client
->task
, &event
);
3280 INSIST(ver
== NULL
);
3281 INSIST(event
== NULL
);
3285 updatedone_action(isc_task_t
*task
, isc_event_t
*event
) {
3286 update_event_t
*uev
= (update_event_t
*) event
;
3287 ns_client_t
*client
= (ns_client_t
*) event
->ev_arg
;
3291 INSIST(event
->ev_type
== DNS_EVENT_UPDATEDONE
);
3292 INSIST(task
== client
->task
);
3294 INSIST(client
->nupdates
> 0);
3295 switch (uev
->result
) {
3297 inc_stats(uev
->zone
, dns_nsstatscounter_updatedone
);
3300 inc_stats(uev
->zone
, dns_nsstatscounter_updaterej
);
3303 inc_stats(uev
->zone
, dns_nsstatscounter_updatefail
);
3306 if (uev
->zone
!= NULL
)
3307 dns_zone_detach(&uev
->zone
);
3309 respond(client
, uev
->result
);
3310 isc_event_free(&event
);
3311 ns_client_detach(&client
);
3315 * Update forwarding support.
3319 forward_fail(isc_task_t
*task
, isc_event_t
*event
) {
3320 ns_client_t
*client
= (ns_client_t
*)event
->ev_arg
;
3324 INSIST(client
->nupdates
> 0);
3326 respond(client
, DNS_R_SERVFAIL
);
3327 isc_event_free(&event
);
3328 ns_client_detach(&client
);
3333 forward_callback(void *arg
, isc_result_t result
, dns_message_t
*answer
) {
3334 update_event_t
*uev
= arg
;
3335 ns_client_t
*client
= uev
->ev_arg
;
3336 dns_zone_t
*zone
= uev
->zone
;
3338 if (result
!= ISC_R_SUCCESS
) {
3339 INSIST(answer
== NULL
);
3340 uev
->ev_type
= DNS_EVENT_UPDATEDONE
;
3341 uev
->ev_action
= forward_fail
;
3342 inc_stats(zone
, dns_nsstatscounter_updatefwdfail
);
3344 uev
->ev_type
= DNS_EVENT_UPDATEDONE
;
3345 uev
->ev_action
= forward_done
;
3346 uev
->answer
= answer
;
3347 inc_stats(zone
, dns_nsstatscounter_updaterespfwd
);
3349 isc_task_send(client
->task
, ISC_EVENT_PTR(&uev
));
3350 dns_zone_detach(&zone
);
3354 forward_done(isc_task_t
*task
, isc_event_t
*event
) {
3355 update_event_t
*uev
= (update_event_t
*) event
;
3356 ns_client_t
*client
= (ns_client_t
*)event
->ev_arg
;
3360 INSIST(client
->nupdates
> 0);
3362 ns_client_sendraw(client
, uev
->answer
);
3363 dns_message_destroy(&uev
->answer
);
3364 isc_event_free(&event
);
3365 ns_client_detach(&client
);
3369 forward_action(isc_task_t
*task
, isc_event_t
*event
) {
3370 update_event_t
*uev
= (update_event_t
*) event
;
3371 dns_zone_t
*zone
= uev
->zone
;
3372 ns_client_t
*client
= (ns_client_t
*)event
->ev_arg
;
3373 isc_result_t result
;
3375 result
= dns_zone_forwardupdate(zone
, client
->message
,
3376 forward_callback
, event
);
3377 if (result
!= ISC_R_SUCCESS
) {
3378 uev
->ev_type
= DNS_EVENT_UPDATEDONE
;
3379 uev
->ev_action
= forward_fail
;
3380 isc_task_send(client
->task
, &event
);
3381 inc_stats(zone
, dns_nsstatscounter_updatefwdfail
);
3382 dns_zone_detach(&zone
);
3384 inc_stats(zone
, dns_nsstatscounter_updatereqfwd
);
3385 isc_task_detach(&task
);
3389 send_forward_event(ns_client_t
*client
, dns_zone_t
*zone
) {
3390 char namebuf
[DNS_NAME_FORMATSIZE
];
3391 char classbuf
[DNS_RDATACLASS_FORMATSIZE
];
3392 isc_result_t result
= ISC_R_SUCCESS
;
3393 update_event_t
*event
= NULL
;
3394 isc_task_t
*zonetask
= NULL
;
3395 ns_client_t
*evclient
;
3398 * This may take some time so replace this client.
3400 if (!client
->mortal
&& (client
->attributes
& NS_CLIENTATTR_TCP
) == 0)
3401 CHECK(ns_client_replace(client
));
3403 event
= (update_event_t
*)
3404 isc_event_allocate(client
->mctx
, client
, DNS_EVENT_UPDATE
,
3405 forward_action
, NULL
, sizeof(*event
));
3407 FAIL(ISC_R_NOMEMORY
);
3409 event
->result
= ISC_R_SUCCESS
;
3412 ns_client_attach(client
, &evclient
);
3413 INSIST(client
->nupdates
== 0);
3415 event
->ev_arg
= evclient
;
3417 dns_name_format(dns_zone_getorigin(zone
), namebuf
,
3419 dns_rdataclass_format(dns_zone_getclass(zone
), classbuf
,
3422 ns_client_log(client
, NS_LOGCATEGORY_UPDATE
, NS_LOGMODULE_UPDATE
,
3423 LOGLEVEL_PROTOCOL
, "forwarding update for zone '%s/%s'",
3426 dns_zone_gettask(zone
, &zonetask
);
3427 isc_task_send(zonetask
, ISC_EVENT_PTR(&event
));
3431 isc_event_free(ISC_EVENT_PTR(&event
));