Blame SOURCES/bind-9.16-CVE-2022-3094-3.patch

bd9435
From 93b8bd39145566053ad8b22cef597146e9175ea4 Mon Sep 17 00:00:00 2001
bd9435
From: Evan Hunt <each@isc.org>
bd9435
Date: Tue, 8 Nov 2022 17:32:41 -0800
bd9435
Subject: [PATCH] move update ACL and update-policy checks before quota
bd9435
bd9435
check allow-update, update-policy, and allow-update-forwarding before
bd9435
consuming quota slots, so that unauthorized clients can't fill the
bd9435
quota.
bd9435
bd9435
(this moves the access check before the prerequisite check, which
bd9435
violates the precise wording of RFC 2136. however, RFC co-author Paul
bd9435
Vixie has stated that the RFC is mistaken on this point; it should have
bd9435
said that access checking must happen *no later than* the completion of
bd9435
prerequisite checks, not that it must happen exactly then.)
bd9435
bd9435
(cherry picked from commit 964f559edb5036880b8e463b8f190b9007ee055d)
bd9435
---
bd9435
 lib/ns/update.c | 335 ++++++++++++++++++++++++++----------------------
bd9435
 1 file changed, 181 insertions(+), 154 deletions(-)
bd9435
bd9435
diff --git a/lib/ns/update.c b/lib/ns/update.c
bd9435
index 9a8c309..036184b 100644
bd9435
--- a/lib/ns/update.c
bd9435
+++ b/lib/ns/update.c
bd9435
@@ -261,6 +261,9 @@ static void
bd9435
 forward_done(isc_task_t *task, isc_event_t *event);
bd9435
 static isc_result_t
bd9435
 add_rr_prepare_action(void *data, rr_t *rr);
bd9435
+static isc_result_t
bd9435
+rr_exists(dns_db_t *db, dns_dbversion_t *ver, dns_name_t *name,
bd9435
+	  const dns_rdata_t *rdata, bool *flag);
bd9435
 
bd9435
 /**************************************************************************/
bd9435
 
bd9435
@@ -333,25 +336,26 @@ inc_stats(ns_client_t *client, dns_zone_t *zone, isc_statscounter_t counter) {
bd9435
 static isc_result_t
bd9435
 checkqueryacl(ns_client_t *client, dns_acl_t *queryacl, dns_name_t *zonename,
bd9435
 	      dns_acl_t *updateacl, dns_ssutable_t *ssutable) {
bd9435
+	isc_result_t result;
bd9435
 	char namebuf[DNS_NAME_FORMATSIZE];
bd9435
 	char classbuf[DNS_RDATACLASS_FORMATSIZE];
bd9435
-	int level;
bd9435
-	isc_result_t result;
bd9435
+	bool update_possible =
bd9435
+		((updateacl != NULL && !dns_acl_isnone(updateacl)) ||
bd9435
+		 ssutable != NULL);
bd9435
 
bd9435
 	result = ns_client_checkaclsilent(client, NULL, queryacl, true);
bd9435
 	if (result != ISC_R_SUCCESS) {
bd9435
+		int level = update_possible ? ISC_LOG_ERROR : ISC_LOG_INFO;
bd9435
+
bd9435
 		dns_name_format(zonename, namebuf, sizeof(namebuf));
bd9435
 		dns_rdataclass_format(client->view->rdclass, classbuf,
bd9435
 				      sizeof(classbuf));
bd9435
 
bd9435
-		level = (updateacl == NULL && ssutable == NULL) ? ISC_LOG_INFO
bd9435
-								: ISC_LOG_ERROR;
bd9435
-
bd9435
 		ns_client_log(client, NS_LOGCATEGORY_UPDATE_SECURITY,
bd9435
 			      NS_LOGMODULE_UPDATE, level,
bd9435
 			      "update '%s/%s' denied due to allow-query",
bd9435
 			      namebuf, classbuf);
bd9435
-	} else if (updateacl == NULL && ssutable == NULL) {
bd9435
+	} else if (!update_possible) {
bd9435
 		dns_name_format(zonename, namebuf, sizeof(namebuf));
bd9435
 		dns_rdataclass_format(client->view->rdclass, classbuf,
bd9435
 				      sizeof(classbuf));
bd9435
@@ -1543,6 +1547,156 @@ send_update_event(ns_client_t *client, dns_zone_t *zone) {
bd9435
 	isc_result_t result = ISC_R_SUCCESS;
bd9435
 	update_event_t *event = NULL;
bd9435
 	isc_task_t *zonetask = NULL;
bd9435
+	dns_ssutable_t *ssutable = NULL;
bd9435
+	dns_message_t *request = client->message;
bd9435
+	dns_aclenv_t *env =
bd9435
+		ns_interfacemgr_getaclenv(client->manager->interface->mgr);
bd9435
+	dns_rdataclass_t zoneclass;
bd9435
+	dns_rdatatype_t covers;
bd9435
+	dns_name_t *zonename = NULL;
bd9435
+	dns_db_t *db = NULL;
bd9435
+	dns_dbversion_t *ver = NULL;
bd9435
+
bd9435
+	CHECK(dns_zone_getdb(zone, &db);;
bd9435
+	zonename = dns_db_origin(db);
bd9435
+	zoneclass = dns_db_class(db);
bd9435
+	dns_zone_getssutable(zone, &ssutable);
bd9435
+	dns_db_currentversion(db, &ver);
bd9435
+
bd9435
+	/*
bd9435
+	 * Update message processing can leak record existence information
bd9435
+	 * so check that we are allowed to query this zone.  Additionally,
bd9435
+	 * if we would refuse all updates for this zone, we bail out here.
bd9435
+	 */
bd9435
+	CHECK(checkqueryacl(client, dns_zone_getqueryacl(zone),
bd9435
+			    dns_zone_getorigin(zone),
bd9435
+			    dns_zone_getupdateacl(zone), ssutable));
bd9435
+
bd9435
+	/*
bd9435
+	 * Check requestor's permissions.
bd9435
+	 */
bd9435
+	if (ssutable == NULL) {
bd9435
+		CHECK(checkupdateacl(client, dns_zone_getupdateacl(zone),
bd9435
+				     "update", dns_zone_getorigin(zone), false,
bd9435
+				     false));
bd9435
+	} else if (client->signer == NULL && !TCPCLIENT(client)) {
bd9435
+		CHECK(checkupdateacl(client, NULL, "update",
bd9435
+				     dns_zone_getorigin(zone), false, true));
bd9435
+	}
bd9435
+
bd9435
+	if (dns_zone_getupdatedisabled(zone)) {
bd9435
+		FAILC(DNS_R_REFUSED, "dynamic update temporarily disabled "
bd9435
+				     "because the zone is frozen.  Use "
bd9435
+				     "'rndc thaw' to re-enable updates.");
bd9435
+	}
bd9435
+
bd9435
+	/*
bd9435
+	 * Prescan the update section, checking for updates that
bd9435
+	 * are illegal or violate policy.
bd9435
+	 */
bd9435
+	for (result = dns_message_firstname(request, DNS_SECTION_UPDATE);
bd9435
+	     result == ISC_R_SUCCESS;
bd9435
+	     result = dns_message_nextname(request, DNS_SECTION_UPDATE))
bd9435
+	{
bd9435
+		dns_name_t *name = NULL;
bd9435
+		dns_rdata_t rdata = DNS_RDATA_INIT;
bd9435
+		dns_ttl_t ttl;
bd9435
+		dns_rdataclass_t update_class;
bd9435
+
bd9435
+		get_current_rr(request, DNS_SECTION_UPDATE, zoneclass, &name,
bd9435
+			       &rdata, &covers, &ttl, &update_class);
bd9435
+
bd9435
+		if (!dns_name_issubdomain(name, zonename)) {
bd9435
+			FAILC(DNS_R_NOTZONE, "update RR is outside zone");
bd9435
+		}
bd9435
+		if (update_class == zoneclass) {
bd9435
+			/*
bd9435
+			 * Check for meta-RRs.  The RFC2136 pseudocode says
bd9435
+			 * check for ANY|AXFR|MAILA|MAILB, but the text adds
bd9435
+			 * "or any other QUERY metatype"
bd9435
+			 */
bd9435
+			if (dns_rdatatype_ismeta(rdata.type)) {
bd9435
+				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
+			}
bd9435
+			result = dns_zone_checknames(zone, name, &rdata);
bd9435
+			if (result != ISC_R_SUCCESS) {
bd9435
+				FAIL(DNS_R_REFUSED);
bd9435
+			}
bd9435
+		} else if (update_class == dns_rdataclass_any) {
bd9435
+			if (ttl != 0 || rdata.length != 0 ||
bd9435
+			    (dns_rdatatype_ismeta(rdata.type) &&
bd9435
+			     rdata.type != dns_rdatatype_any))
bd9435
+			{
bd9435
+				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
+			}
bd9435
+		} else if (update_class == dns_rdataclass_none) {
bd9435
+			if (ttl != 0 || dns_rdatatype_ismeta(rdata.type)) {
bd9435
+				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
+			}
bd9435
+		} else {
bd9435
+			update_log(client, zone, ISC_LOG_WARNING,
bd9435
+				   "update RR has incorrect class %d",
bd9435
+				   update_class);
bd9435
+			FAIL(DNS_R_FORMERR);
bd9435
+		}
bd9435
+
bd9435
+		/*
bd9435
+		 * draft-ietf-dnsind-simple-secure-update-01 says
bd9435
+		 * "Unlike traditional dynamic update, the client
bd9435
+		 * is forbidden from updating NSEC records."
bd9435
+		 */
bd9435
+		if (rdata.type == dns_rdatatype_nsec3) {
bd9435
+			FAILC(DNS_R_REFUSED, "explicit NSEC3 updates are not "
bd9435
+					     "allowed "
bd9435
+					     "in secure zones");
bd9435
+		} else if (rdata.type == dns_rdatatype_nsec) {
bd9435
+			FAILC(DNS_R_REFUSED, "explicit NSEC updates are not "
bd9435
+					     "allowed "
bd9435
+					     "in secure zones");
bd9435
+		} else if (rdata.type == dns_rdatatype_rrsig &&
bd9435
+			   !dns_name_equal(name, zonename))
bd9435
+		{
bd9435
+			FAILC(DNS_R_REFUSED, "explicit RRSIG updates are "
bd9435
+					     "currently "
bd9435
+					     "not supported in secure zones "
bd9435
+					     "except "
bd9435
+					     "at the apex");
bd9435
+		}
bd9435
+
bd9435
+		if (ssutable != NULL) {
bd9435
+			isc_netaddr_t netaddr;
bd9435
+			dst_key_t *tsigkey = NULL;
bd9435
+			isc_netaddr_fromsockaddr(&netaddr, &client->peeraddr);
bd9435
+
bd9435
+			if (client->message->tsigkey != NULL) {
bd9435
+				tsigkey = client->message->tsigkey->key;
bd9435
+			}
bd9435
+
bd9435
+			if (rdata.type != dns_rdatatype_any) {
bd9435
+				if (!dns_ssutable_checkrules(
bd9435
+					    ssutable, client->signer, name,
bd9435
+					    &netaddr, TCPCLIENT(client), env,
bd9435
+					    rdata.type, tsigkey))
bd9435
+				{
bd9435
+					FAILC(DNS_R_REFUSED, "rejected by "
bd9435
+							     "secure update");
bd9435
+				}
bd9435
+			} else {
bd9435
+				if (!ssu_checkall(db, ver, name, ssutable,
bd9435
+						  client->signer, &netaddr, env,
bd9435
+						  TCPCLIENT(client), tsigkey))
bd9435
+				{
bd9435
+					FAILC(DNS_R_REFUSED, "rejected by "
bd9435
+							     "secure update");
bd9435
+				}
bd9435
+			}
bd9435
+		}
bd9435
+	}
bd9435
+	if (result != ISC_R_NOMORE) {
bd9435
+		FAIL(result);
bd9435
+	}
bd9435
+
bd9435
+	update_log(client, zone, LOGLEVEL_DEBUG, "update section prescan OK");
bd9435
 
bd9435
 	result = isc_quota_attach(&client->manager->sctx->updquota,
bd9435
 				  &(isc_quota_t *){ NULL });
bd9435
@@ -1552,9 +1706,7 @@ send_update_event(ns_client_t *client, dns_zone_t *zone) {
bd9435
 			   isc_result_totext(result));
bd9435
 		ns_stats_increment(client->manager->sctx->nsstats,
bd9435
 				   ns_statscounter_updatequota);
bd9435
-		ns_client_drop(client, result);
bd9435
-		isc_nmhandle_detach(&client->reqhandle);
bd9435
-		return (DNS_R_DROP);
bd9435
+		CHECK(DNS_R_DROP);
bd9435
 	}
bd9435
 
bd9435
 	event = (update_event_t *)isc_event_allocate(
bd9435
@@ -1571,6 +1723,16 @@ send_update_event(ns_client_t *client, dns_zone_t *zone) {
bd9435
 	dns_zone_gettask(zone, &zonetask);
bd9435
 	isc_task_send(zonetask, ISC_EVENT_PTR(&event));
bd9435
 
bd9435
+failure:
bd9435
+	if (db != NULL) {
bd9435
+		dns_db_closeversion(db, &ver, false);
bd9435
+		dns_db_detach(&db);
bd9435
+	}
bd9435
+
bd9435
+	if (ssutable != NULL) {
bd9435
+		dns_ssutable_detach(&ssutable);
bd9435
+	}
bd9435
+
bd9435
 	return (result);
bd9435
 }
bd9435
 
bd9435
@@ -1671,9 +1833,6 @@ ns_update_start(ns_client_t *client, isc_nmhandle_t *handle,
bd9435
 		break;
bd9435
 	case dns_zone_secondary:
bd9435
 	case dns_zone_mirror:
bd9435
-		CHECK(checkupdateacl(client, dns_zone_getforwardacl(zone),
bd9435
-				     "update forwarding", zonename, true,
bd9435
-				     false));
bd9435
 		CHECK(send_forward_event(client, zone));
bd9435
 		break;
bd9435
 	default:
bd9435
@@ -1685,8 +1844,6 @@ ns_update_start(ns_client_t *client, isc_nmhandle_t *handle,
bd9435
 
bd9435
 failure:
bd9435
 	if (result == DNS_R_REFUSED) {
bd9435
-		INSIST(dns_zone_gettype(zone) == dns_zone_secondary ||
bd9435
-		       dns_zone_gettype(zone) == dns_zone_mirror);
bd9435
 		inc_stats(client, zone, ns_statscounter_updaterej);
bd9435
 	}
bd9435
 
bd9435
@@ -2578,7 +2735,7 @@ update_action(isc_task_t *task, isc_event_t *event) {
bd9435
 	dns_rdatatype_t covers;
bd9435
 	dns_message_t *request = client->message;
bd9435
 	dns_rdataclass_t zoneclass;
bd9435
-	dns_name_t *zonename;
bd9435
+	dns_name_t *zonename = NULL;
bd9435
 	dns_ssutable_t *ssutable = NULL;
bd9435
 	dns_fixedname_t tmpnamefixed;
bd9435
 	dns_name_t *tmpname = NULL;
bd9435
@@ -2590,8 +2747,6 @@ update_action(isc_task_t *task, isc_event_t *event) {
bd9435
 	dns_ttl_t maxttl = 0;
bd9435
 	uint32_t maxrecords;
bd9435
 	uint64_t records;
bd9435
-	dns_aclenv_t *env =
bd9435
-		ns_interfacemgr_getaclenv(client->manager->interface->mgr);
bd9435
 
bd9435
 	INSIST(event->ev_type == DNS_EVENT_UPDATE);
bd9435
 
bd9435
@@ -2602,14 +2757,7 @@ update_action(isc_task_t *task, isc_event_t *event) {
bd9435
 	zonename = dns_db_origin(db);
bd9435
 	zoneclass = dns_db_class(db);
bd9435
 	dns_zone_getssutable(zone, &ssutable);
bd9435
-
bd9435
-	/*
bd9435
-	 * Update message processing can leak record existence information
bd9435
-	 * so check that we are allowed to query this zone.  Additionally
bd9435
-	 * if we would refuse all updates for this zone we bail out here.
bd9435
-	 */
bd9435
-	CHECK(checkqueryacl(client, dns_zone_getqueryacl(zone), zonename,
bd9435
-			    dns_zone_getupdateacl(zone), ssutable));
bd9435
+	options = dns_zone_getoptions(zone);
bd9435
 
bd9435
 	/*
bd9435
 	 * Get old and new versions now that queryacl has been checked.
bd9435
@@ -2745,135 +2893,10 @@ update_action(isc_task_t *task, isc_event_t *event) {
bd9435
 
bd9435
 	update_log(client, zone, LOGLEVEL_DEBUG, "prerequisites are OK");
bd9435
 
bd9435
-	/*
bd9435
-	 * Check Requestor's Permissions.  It seems a bit silly to do this
bd9435
-	 * only after prerequisite testing, but that is what RFC2136 says.
bd9435
-	 */
bd9435
-	if (ssutable == NULL) {
bd9435
-		CHECK(checkupdateacl(client, dns_zone_getupdateacl(zone),
bd9435
-				     "update", zonename, false, false));
bd9435
-	} else if (client->signer == NULL && !TCPCLIENT(client)) {
bd9435
-		CHECK(checkupdateacl(client, NULL, "update", zonename, false,
bd9435
-				     true));
bd9435
-	}
bd9435
-
bd9435
-	if (dns_zone_getupdatedisabled(zone)) {
bd9435
-		FAILC(DNS_R_REFUSED, "dynamic update temporarily disabled "
bd9435
-				     "because the zone is frozen.  Use "
bd9435
-				     "'rndc thaw' to re-enable updates.");
bd9435
-	}
bd9435
-
bd9435
-	/*
bd9435
-	 * Perform the Update Section Prescan.
bd9435
-	 */
bd9435
-
bd9435
-	for (result = dns_message_firstname(request, DNS_SECTION_UPDATE);
bd9435
-	     result == ISC_R_SUCCESS;
bd9435
-	     result = dns_message_nextname(request, DNS_SECTION_UPDATE))
bd9435
-	{
bd9435
-		dns_name_t *name = NULL;
bd9435
-		dns_rdata_t rdata = DNS_RDATA_INIT;
bd9435
-		dns_ttl_t ttl;
bd9435
-		dns_rdataclass_t update_class;
bd9435
-		get_current_rr(request, DNS_SECTION_UPDATE, zoneclass, &name,
bd9435
-			       &rdata, &covers, &ttl, &update_class);
bd9435
-
bd9435
-		if (!dns_name_issubdomain(name, zonename)) {
bd9435
-			FAILC(DNS_R_NOTZONE, "update RR is outside zone");
bd9435
-		}
bd9435
-		if (update_class == zoneclass) {
bd9435
-			/*
bd9435
-			 * Check for meta-RRs.  The RFC2136 pseudocode says
bd9435
-			 * check for ANY|AXFR|MAILA|MAILB, but the text adds
bd9435
-			 * "or any other QUERY metatype"
bd9435
-			 */
bd9435
-			if (dns_rdatatype_ismeta(rdata.type)) {
bd9435
-				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
-			}
bd9435
-			result = dns_zone_checknames(zone, name, &rdata);
bd9435
-			if (result != ISC_R_SUCCESS) {
bd9435
-				FAIL(DNS_R_REFUSED);
bd9435
-			}
bd9435
-		} else if (update_class == dns_rdataclass_any) {
bd9435
-			if (ttl != 0 || rdata.length != 0 ||
bd9435
-			    (dns_rdatatype_ismeta(rdata.type) &&
bd9435
-			     rdata.type != dns_rdatatype_any))
bd9435
-			{
bd9435
-				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
-			}
bd9435
-		} else if (update_class == dns_rdataclass_none) {
bd9435
-			if (ttl != 0 || dns_rdatatype_ismeta(rdata.type)) {
bd9435
-				FAILC(DNS_R_FORMERR, "meta-RR in update");
bd9435
-			}
bd9435
-		} else {
bd9435
-			update_log(client, zone, ISC_LOG_WARNING,
bd9435
-				   "update RR has incorrect class %d",
bd9435
-				   update_class);
bd9435
-			FAIL(DNS_R_FORMERR);
bd9435
-		}
bd9435
-
bd9435
-		/*
bd9435
-		 * draft-ietf-dnsind-simple-secure-update-01 says
bd9435
-		 * "Unlike traditional dynamic update, the client
bd9435
-		 * is forbidden from updating NSEC records."
bd9435
-		 */
bd9435
-		if (rdata.type == dns_rdatatype_nsec3) {
bd9435
-			FAILC(DNS_R_REFUSED, "explicit NSEC3 updates are not "
bd9435
-					     "allowed "
bd9435
-					     "in secure zones");
bd9435
-		} else if (rdata.type == dns_rdatatype_nsec) {
bd9435
-			FAILC(DNS_R_REFUSED, "explicit NSEC updates are not "
bd9435
-					     "allowed "
bd9435
-					     "in secure zones");
bd9435
-		} else if (rdata.type == dns_rdatatype_rrsig &&
bd9435
-			   !dns_name_equal(name, zonename)) {
bd9435
-			FAILC(DNS_R_REFUSED, "explicit RRSIG updates are "
bd9435
-					     "currently "
bd9435
-					     "not supported in secure zones "
bd9435
-					     "except "
bd9435
-					     "at the apex");
bd9435
-		}
bd9435
-
bd9435
-		if (ssutable != NULL) {
bd9435
-			isc_netaddr_t netaddr;
bd9435
-			dst_key_t *tsigkey = NULL;
bd9435
-			isc_netaddr_fromsockaddr(&netaddr, &client->peeraddr);
bd9435
-
bd9435
-			if (client->message->tsigkey != NULL) {
bd9435
-				tsigkey = client->message->tsigkey->key;
bd9435
-			}
bd9435
-
bd9435
-			if (rdata.type != dns_rdatatype_any) {
bd9435
-				if (!dns_ssutable_checkrules(
bd9435
-					    ssutable, client->signer, name,
bd9435
-					    &netaddr, TCPCLIENT(client), env,
bd9435
-					    rdata.type, tsigkey))
bd9435
-				{
bd9435
-					FAILC(DNS_R_REFUSED, "rejected by "
bd9435
-							     "secure update");
bd9435
-				}
bd9435
-			} else {
bd9435
-				if (!ssu_checkall(db, ver, name, ssutable,
bd9435
-						  client->signer, &netaddr, env,
bd9435
-						  TCPCLIENT(client), tsigkey))
bd9435
-				{
bd9435
-					FAILC(DNS_R_REFUSED, "rejected by "
bd9435
-							     "secure update");
bd9435
-				}
bd9435
-			}
bd9435
-		}
bd9435
-	}
bd9435
-	if (result != ISC_R_NOMORE) {
bd9435
-		FAIL(result);
bd9435
-	}
bd9435
-
bd9435
-	update_log(client, zone, LOGLEVEL_DEBUG, "update section prescan OK");
bd9435
-
bd9435
 	/*
bd9435
 	 * Process the Update Section.
bd9435
 	 */
bd9435
 
bd9435
-	options = dns_zone_getoptions(zone);
bd9435
 	for (result = dns_message_firstname(request, DNS_SECTION_UPDATE);
bd9435
 	     result == ISC_R_SUCCESS;
bd9435
 	     result = dns_message_nextname(request, DNS_SECTION_UPDATE))
bd9435
@@ -3307,10 +3330,7 @@ update_action(isc_task_t *task, isc_event_t *event) {
bd9435
 			if (result == ISC_R_SUCCESS && records > maxrecords) {
bd9435
 				update_log(client, zone, ISC_LOG_ERROR,
bd9435
 					   "records in zone (%" PRIu64 ") "
bd9435
-					   "exceeds"
bd9435
-					   " max-"
bd9435
-					   "records"
bd9435
-					   " (%u)",
bd9435
+					   "exceeds max-records (%u)",
bd9435
 					   records, maxrecords);
bd9435
 				result = DNS_R_TOOMANYRECORDS;
bd9435
 				goto failure;
bd9435
@@ -3601,6 +3621,13 @@ send_forward_event(ns_client_t *client, dns_zone_t *zone) {
bd9435
 	update_event_t *event = NULL;
bd9435
 	isc_task_t *zonetask = NULL;
bd9435
 
bd9435
+	result = checkupdateacl(client, dns_zone_getforwardacl(zone),
bd9435
+				"update forwarding", dns_zone_getorigin(zone),
bd9435
+				true, false);
bd9435
+	if (result != ISC_R_SUCCESS) {
bd9435
+		return (result);
bd9435
+	}
bd9435
+
bd9435
 	result = isc_quota_attach(&client->manager->sctx->updquota,
bd9435
 				  &(isc_quota_t *){ NULL });
bd9435
 	if (result != ISC_R_SUCCESS) {
bd9435
-- 
bd9435
2.39.1
bd9435