Package: knot-resolver / 5.3.1-1+deb11u1

Metadata

Package Version Patches format
knot-resolver 5.3.1-1+deb11u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 treewide fix unaligned access.patch | (download)

lib/cache/impl.h | 16 11 + 5 - 0 !
lib/cache/nsec1.c | 14 10 + 4 - 0 !
lib/layer/iterate.c | 4 3 + 1 - 0 !
lib/selection.c | 4 2 + 2 - 0 !
4 files changed, 26 insertions(+), 12 deletions(-)

 [patch] treewide: fix unaligned access

Some less common HW (not x86, usually ARM) doesn't tolerate unaligned
access to memory and it's breakage of C as well.

It's easiest to check by meson's -Db_sanitize=undefined (on any HW).
I pushed millions of real-life QNAME+QTYPE queries over UDP in default
mode and the sanitizer seems clear now.

0002 validator avoid assertion in an edge case.patch | (download)

lib/dnssec/nsec3.c | 7 7 + 0 - 0 !
lib/dnssec/nsec3.h | 1 1 + 0 - 0 !
lib/layer/validate.c | 3 2 + 1 - 0 !
3 files changed, 10 insertions(+), 1 deletion(-)

 [patch] validator: avoid assertion in an edge-case

Case: NSEC3 with too many iterations used for a positive wildcard proof.

To really fix the answers, this also needed fixing the `any_rank` part
which I somehow forgot in commit 7107faebc :-(