refactoring: RR ranks and AD flag
- Apr 24, 2017
-
-
Vladimír Čunát authored
-
Vladimír Čunát authored
It's up to iterator to pick the interesting cases to auth_selected.
-
Vladimír Čunát authored
-
- Apr 13, 2017
-
-
Vladimír Čunát authored
The jump may lead to secure zone, so let the sub-query find out by itself. Otherwise we might cache those RRs with INSECURE rank even though they are secure. This shouldn't harm AD flags anymore.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
-
- Apr 10, 2017
-
-
Vladimír Čunát authored
This part of code still deserves better review. It's a bit surprising that our current tests didn't discover it. We incorrectly answered with AD in some cases, e.g. ntp.pool.org AAAA.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
If a server puts NS into the authority section that refers to itself, accept it as autoritative and validate it (if applicable). This fixes the val_nsec3_cnametocnamewctoposwc test, as unvalidated NS in the final answer would prevent adding the AD flag. The iter_pcname test is broken by this, but the team's consensus is to prefer this solution. Nitpicks: cleaner style in the function, and don't force inlining anymore. (It's no longer a trivial function and compilers should be good at determining whether to inline static functions or not.)
-
Vladimír Čunát authored
Especially when stashing into the cache, it was unclear which RRset was being referred to. Let's add type and owner name.
-
- Apr 07, 2017
-
-
Vladimír Čunát authored
-
Vladimír Čunát authored
NS records from AUTHORITY aren't validated. The iterator seems a better place, as that's where delegations are handled, etc.
-
Vladimír Čunát authored
It's supposed to mean that we have a proof from configured TAs that the RR isn't secure (typically proof of missing DS at some point). This case was just failure to find a fitting RRSIG; new KR_RANK_MISSING is introduced for that purpose, for simplicity. Also, make the validator more thorough about what ranks are safe to skip.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
It's unlikely to be a temporary condition, unless the reply was spoofed or something. Fixes val_cname_to_unsigned_fake_rrsig test. (cherry picked from commit bc2a2670)
-
Vladimír Čunát authored
Tests: iter_minmaxttl and iter_soamin get fixed, probably because they're without a root TA but have some lower TA(s).
-
Vladimír Čunát authored
-
Vladimír Čunát authored
_SECURE and _INSECURE weren't real flags, as their setting was logically exclusive of the "values". That made changing ranks rather cumbersome. Tests: val_cname_to_unsigned_fake_rrsig gets broken, but I hope this change just uncovered a hidden bug.
-
- Apr 06, 2017
-
-
Vladimír Čunát authored
The argument to KEY_FLAG_RANK was (signed) char*, so for secure rank the shift was setting the highest two bits (which are unused). Let me end that rubbish.
-
Grigorii Demidov authored
-
- Apr 05, 2017
-
-
Vladimír Čunát authored
Also rename NOAUTH->NONAUTH.
-
Vladimír Čunát authored
... *if* we only want to ask the NSs, i.e. not to be put into answer. This fixes iter_cname_cache test.
-
Vladimír Čunát authored
at least for now (for queries without +cd). It wasn't complete, and it turned out to need more changes, and the benefits would be rather limited.
-
Vladimír Čunát authored
Also fix a related bug in pktcache.
-
- Apr 04, 2017
-
-
Vladimír Čunát authored
This fixes the iter_ns_spoof test.
-
Vladimír Čunát authored
-
- Apr 03, 2017
-
-
Vladimír Čunát authored
The ranks stored within are changing their meaning.
-
Vladimír Čunát authored
This fixes tests for hints, in particular.
-
Vladimír Čunát authored
-
Grigorii Demidov authored
-
Vladimír Čunát authored
-
Grigorii Demidov authored
-
Grigorii Demidov authored
-
Vladimír Čunát authored
This is mainly to avoid bad entries, e.g. cached for +cd.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
It will be better to have a more consistent interface with rrcache.
-
- Mar 31, 2017
-
-
Vladimír Čunát authored
TODO: check CD in the iterator if CACHED.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
Note that the stash_ds call wasn't useful anymore, as it was only re-stashing DS that were already stashed anyway (from auth_selected).
-
Vladimír Čunát authored
-
Vladimír Čunát authored
Also correct a tiny bug where iterator didn't skip RRSIGs that covered non-interesting types of the name we desired.
-
Vladimír Čunát authored
-
Vladimír Čunát authored
-
Vladimír Čunát authored
Constructing the wire format in rrcache was useless and it took 2-4 % of time in the resperf profile. Let's also pass the rank (used soon).
-
Vladimír Čunát authored
-
- Mar 29, 2017
-
-
Vladimír Čunát authored
-
Vladimír Čunát authored
To make this work, do not use KR_VLDRANK_SECURE as the default value. It's just too dangerous, and here it complicated determining the appropriate value for the AD flag.
-
- Mar 27, 2017
-
-
Vladimír Čunát authored
-