mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Fix RPZ bug when resuming a query during a reconfiguration
After a reconfiguration the old view can be left without a valid
'rpzs' member, because when the RPZ is not changed during the named
reconfiguration 'rpzs' "migrate" from the old view into the new
view, so when a query resumes it can find that 'qctx->view->rpzs'
is NULL which query_resume() currently doesn't expect to happen if
it's recursing and 'qctx->rpz_st' is not NULL.
Fix the issue by adding a NULL-check. In order to not split the log
message to two different log messages depending on whether
'qctx->view->rpzs' is NULL or not, change the message to not log
the RPZ policy's "version" which is just a runtime counter and is
most likely not very useful for the users.
(cherry picked from commit 3ea2fbc238)
This commit is contained in:
parent
b601cb32ee
commit
f1ec774f9a
1 changed files with 5 additions and 6 deletions
|
|
@ -6798,14 +6798,13 @@ query_resume(query_ctx_t *qctx) {
|
|||
/*
|
||||
* Has response policy changed out from under us?
|
||||
*/
|
||||
if (qctx->rpz_st->rpz_ver != qctx->view->rpzs->rpz_ver) {
|
||||
if (qctx->view->rpzs == NULL ||
|
||||
qctx->rpz_st->rpz_ver != qctx->view->rpzs->rpz_ver)
|
||||
{
|
||||
ns_client_log(qctx->client, NS_LOGCATEGORY_CLIENT,
|
||||
NS_LOGMODULE_QUERY, DNS_RPZ_INFO_LEVEL,
|
||||
"query_resume: RPZ settings "
|
||||
"out of date "
|
||||
"(rpz_ver %d, expected %d)",
|
||||
qctx->view->rpzs->rpz_ver,
|
||||
qctx->rpz_st->rpz_ver);
|
||||
"query_resume: RPZ settings out of date "
|
||||
"after of a reconfiguration");
|
||||
QUERY_ERROR(qctx, DNS_R_SERVFAIL);
|
||||
return ns_query_done(qctx);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue