mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 10:10:06 +00:00
fixup! Allow negative RRSIGs in the qpcache again
This commit is contained in:
parent
7235a733e0
commit
8fce84f194
@ -1540,11 +1540,6 @@ qpcache_find(dns_db_t *db, const dns_name_t *name, dns_dbversion_t *version,
|
|||||||
dns_slabheader_t *nsecheader = NULL, *nsecsig = NULL;
|
dns_slabheader_t *nsecheader = NULL, *nsecsig = NULL;
|
||||||
dns_typepair_t typepair, sigpair;
|
dns_typepair_t typepair, sigpair;
|
||||||
|
|
||||||
if (type == dns_rdatatype_none) {
|
|
||||||
/* We can't search negative cache directly */
|
|
||||||
return ISC_R_NOTFOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
qpc_search_t search;
|
qpc_search_t search;
|
||||||
qpc_search_init(&search, (qpcache_t *)db, options, __now);
|
qpc_search_init(&search, (qpcache_t *)db, options, __now);
|
||||||
|
|
||||||
@ -1629,10 +1624,11 @@ qpcache_find(dns_db_t *db, const dns_name_t *name, dns_dbversion_t *version,
|
|||||||
/*
|
/*
|
||||||
* Certain DNSSEC types are not subject to CNAME matching
|
* Certain DNSSEC types are not subject to CNAME matching
|
||||||
* (RFC4035, section 2.5 and RFC3007).
|
* (RFC4035, section 2.5 and RFC3007).
|
||||||
|
*
|
||||||
|
* We don't check for RRSIG, because we don't store RRSIG records
|
||||||
|
* directly.
|
||||||
*/
|
*/
|
||||||
if (type == dns_rdatatype_key || type == dns_rdatatype_nsec ||
|
if (type == dns_rdatatype_key || type == dns_rdatatype_nsec) {
|
||||||
type == dns_rdatatype_rrsig)
|
|
||||||
{
|
|
||||||
cname_ok = false;
|
cname_ok = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user