35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From 9cfd20cd90fab4c97fe91f68555b7a2e05b808e8 Mon Sep 17 00:00:00 2001
|
|
From: Mark Andrews <marka@isc.org>
|
|
Date: Tue, 16 Jan 2024 14:25:27 +1100
|
|
Subject: [PATCH] Clear qctx->zversion
|
|
|
|
Clear qctx->zversion when clearing qctx->zrdataset et al in
|
|
lib/ns/query.c:qctx_freedata. The uncleared pointer could lead to
|
|
an assertion failure if zone data needed to be re-saved which could
|
|
happen with stale data support enabled.
|
|
|
|
(cherry picked from commit 179fb3532ab8d4898ab070b2db54c0ce872ef709)
|
|
|
|
Conflict:NA
|
|
Reference:https://downloads.isc.org/isc/bind9/9.18.28/patches/0004-CVE-2024-4076.patch
|
|
|
|
---
|
|
lib/ns/query.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/lib/ns/query.c b/lib/ns/query.c
|
|
index 40e1232..7884514 100644
|
|
--- a/lib/ns/query.c
|
|
+++ b/lib/ns/query.c
|
|
@@ -5323,6 +5323,7 @@ qctx_freedata(query_ctx_t *qctx) {
|
|
ns_client_releasename(qctx->client, &qctx->zfname);
|
|
dns_db_detachnode(qctx->zdb, &qctx->znode);
|
|
dns_db_detach(&qctx->zdb);
|
|
+ qctx->zversion = NULL;
|
|
}
|
|
|
|
if (qctx->event != NULL && !qctx->client->nodetach) {
|
|
--
|
|
2.33.0
|
|
|