2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 06:55:30 +00:00

3687. [bug] Address null pointer dereference in zone_xfrdone.

[RT #35042]
This commit is contained in:
Mark Andrews
2013-12-12 10:38:35 +11:00
parent e80c7005e3
commit 00112618bc
2 changed files with 19 additions and 7 deletions

View File

@@ -1,3 +1,6 @@
3687. [bug] Address null pointer dereference in zone_xfrdone.
[RT #35042]
3686. [func] "dnssec-signzone -Q" drops signatures from keys 3686. [func] "dnssec-signzone -Q" drops signatures from keys
that are still published but no longer active. that are still published but no longer active.
[RT #34990] [RT #34990]

View File

@@ -11856,6 +11856,12 @@ zone_shutdown(isc_task_t *task, isc_event_t *event) {
linked = ISC_TRUE; linked = ISC_TRUE;
zone->statelist = NULL; zone->statelist = NULL;
} }
if (zone->statelist == &zone->zmgr->xfrin_in_progress) {
ISC_LIST_UNLINK(zone->zmgr->xfrin_in_progress, zone,
statelink);
zone->statelist = NULL;
zmgr_resume_xfrs(zone->zmgr, ISC_FALSE);
}
RWUNLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write); RWUNLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write);
} }
@@ -14330,13 +14336,16 @@ zone_xfrdone(dns_zone_t *zone, isc_result_t result) {
* This transfer finishing freed up a transfer quota slot. * This transfer finishing freed up a transfer quota slot.
* Let any other zones waiting for quota have it. * Let any other zones waiting for quota have it.
*/ */
UNLOCK_ZONE(zone); if (zone->zmgr != NULL &&
RWLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write); zone->statelist == &zone->zmgr->xfrin_in_progress) {
ISC_LIST_UNLINK(zone->zmgr->xfrin_in_progress, zone, statelink); UNLOCK_ZONE(zone);
zone->statelist = NULL; RWLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write);
zmgr_resume_xfrs(zone->zmgr, ISC_FALSE); ISC_LIST_UNLINK(zone->zmgr->xfrin_in_progress, zone, statelink);
RWUNLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write); zone->statelist = NULL;
LOCK_ZONE(zone); zmgr_resume_xfrs(zone->zmgr, ISC_FALSE);
RWUNLOCK(&zone->zmgr->rwlock, isc_rwlocktype_write);
LOCK_ZONE(zone);
}
/* /*
* Retry with a different server if necessary. * Retry with a different server if necessary.