-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
175 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.1 = .81 | ||
LINUX_KERNEL_HASH-6.1.81 = 0ebd861c6fd47bb0a9d3a09664d704833d1a54750c7bf9c4ad8b5e9cbd49342b | ||
LINUX_VERSION-6.1 = .82 | ||
LINUX_KERNEL_HASH-6.1.82 = d150d2d9d416877668d8b56f75759f166168d192419eefaa942ed67225cbec06 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...network/services/dnsmasq/patches/0001-Fix-spurious-resource-limit-exceeded-messages.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
From 1ed783b8d7343c42910a61f12a8fc6237eb80417 Mon Sep 17 00:00:00 2001 | ||
From: Simon Kelley <simon@thekelleys.org.uk> | ||
Date: Mon, 19 Feb 2024 12:22:43 +0000 | ||
Subject: Fix spurious "resource limit exceeded" messages. | ||
|
||
Replies from upstream with a REFUSED rcode can result in | ||
log messages stating that a resource limit has been exceeded, | ||
which is not the case. | ||
|
||
Thanks to Dominik Derigs and the Pi-hole project for | ||
spotting this. | ||
--- | ||
CHANGELOG | 5 +++++ | ||
src/forward.c | 6 +++--- | ||
2 files changed, 8 insertions(+), 3 deletions(-) | ||
|
||
--- a/CHANGELOG | ||
+++ b/CHANGELOG | ||
@@ -1,3 +1,8 @@ | ||
+version 2.91 | ||
+ Fix spurious "resource limit exceeded messages". Thanks to | ||
+ Dominik Derigs for the bug report. | ||
+ | ||
+ | ||
version 2.90 | ||
Fix reversion in --rev-server introduced in 2.88 which | ||
caused breakage if the prefix length is not exactly divisible | ||
--- a/src/forward.c | ||
+++ b/src/forward.c | ||
@@ -937,10 +937,10 @@ static void dnssec_validate(struct frec | ||
status = dnssec_validate_reply(now, header, plen, daemon->namebuff, daemon->keyname, &forward->class, | ||
!option_bool(OPT_DNSSEC_IGN_NS) && (forward->sentto->flags & SERV_DO_DNSSEC), | ||
NULL, NULL, NULL, &orig->validate_counter); | ||
- } | ||
|
||
- if (STAT_ISEQUAL(status, STAT_ABANDONED)) | ||
- log_resource = 1; | ||
+ if (STAT_ISEQUAL(status, STAT_ABANDONED)) | ||
+ log_resource = 1; | ||
+ } | ||
|
||
/* Can't validate, as we're missing key data. Put this | ||
answer aside, whilst we get that. */ |
31 changes: 31 additions & 0 deletions
31
.../services/dnsmasq/patches/0002-PATCH-Fix-error-introduced-in-51471cafa5a4fa44d6fe49.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From ccff85ad72d2f858d9743d40525128e4f62d41a8 Mon Sep 17 00:00:00 2001 | ||
From: renmingshuai <renmingshuai@huawei.com> | ||
Date: Wed, 21 Feb 2024 00:24:25 +0000 | ||
Subject: [PATCH] Fix error introduced in | ||
51471cafa5a4fa44d6fe490885d9910bd72a5907 | ||
|
||
Signed-off-by: renmingshuai <renmingshuai@huawei.com> | ||
--- | ||
src/dnssec.c | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
--- a/src/dnssec.c | ||
+++ b/src/dnssec.c | ||
@@ -1547,7 +1547,7 @@ static int prove_non_existence_nsec3(str | ||
nsecs[i] = NULL; /* Speculative, will be restored if OK. */ | ||
|
||
if (!(p = skip_name(nsec3p, header, plen, 15))) | ||
- return 0; /* bad packet */ | ||
+ return DNSSEC_FAIL_BADPACKET; /* bad packet */ | ||
|
||
p += 10; /* type, class, TTL, rdlen */ | ||
|
||
@@ -1640,7 +1640,7 @@ static int prove_non_existence_nsec3(str | ||
if (!wildname) | ||
{ | ||
if (!(wildcard = strchr(next_closest, '.')) || wildcard == next_closest) | ||
- return 0; | ||
+ return DNSSEC_FAIL_NONSEC; | ||
|
||
wildcard--; | ||
*wildcard = '*'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.