2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Merge branch '973-pause-dbiterator-in-rpz' into 'master'

Fix deadlock in RPZ update code.

Closes #973

See merge request isc-projects/bind9!1770
This commit is contained in:
Evan Hunt
2019-04-06 15:23:37 -04:00
2 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
5201. [bug] Fix a possible deadlock in RPZ update code. [GL #973]
5200. [placeholder]
5199. [placeholder]

View File

@@ -1732,6 +1732,16 @@ setup_update(dns_rpz_zone_t *rpz) {
goto cleanup;
}
result = dns_dbiterator_pause(rpz->updbit);
if (result != ISC_R_SUCCESS) {
isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
DNS_LOGMODULE_MASTER, ISC_LOG_ERROR,
"rpz: %s: failed to pause db iterator - %s",
domain, isc_result_totext(result));
goto cleanup;
}
cleanup:
if (result != ISC_R_SUCCESS) {
if (rpz->updbit != NULL)