summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo SIMELIERE (Schneider Electric) <hsimeliere.opensource@witekio.com>2026-05-20 14:29:07 +0200
committerAnuj Mittal <anuj.mittal@oss.qualcomm.com>2026-05-21 09:56:20 +0530
commit7dda8e9bd75855300f55faa2d803deebac226d43 (patch)
treea7500f47bd0983b1012f192505e3a644a73fdfa4
parente614003e0af184d59b3eb85658149c8bef2ed50e (diff)
downloadmeta-openembedded-7dda8e9bd75855300f55faa2d803deebac226d43.tar.gz
dnsmasq: Fix CVE-2026-4893
Pick patch from [1] dnsmasq 2.90 debian bookworm pacthes. [1] https://sources.debian.org/src/dnsmasq/2.90-4~deb12u2/debian/patches/CVE-2026-4893.patch Signed-off-by: Hugo SIMELIERE (Schneider Electric) <hsimeliere.opensource@witekio.com> Reviewed-by: Bruno VERNAY <bruno.vernay@se.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
-rw-r--r--meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb1
-rw-r--r--meta-networking/recipes-support/dnsmasq/files/CVE-2026-4893.patch38
2 files changed, 39 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb b/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb
index 21411839c7..4e548f6e59 100644
--- a/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb
+++ b/meta-networking/recipes-support/dnsmasq/dnsmasq_2.90.bb
@@ -18,6 +18,7 @@ SRC_URI = "http://www.thekelleys.org.uk/dnsmasq/${@['archive/', ''][float(d.getV
18 file://dnsmasq-resolved.conf \ 18 file://dnsmasq-resolved.conf \
19 file://CVE-2026-4891.patch \ 19 file://CVE-2026-4891.patch \
20 file://CVE-2026-4892.patch \ 20 file://CVE-2026-4892.patch \
21 file://CVE-2026-4893.patch \
21" 22"
22SRC_URI[sha256sum] = "8f6666b542403b5ee7ccce66ea73a4a51cf19dd49392aaccd37231a2c51b303b" 23SRC_URI[sha256sum] = "8f6666b542403b5ee7ccce66ea73a4a51cf19dd49392aaccd37231a2c51b303b"
23 24
diff --git a/meta-networking/recipes-support/dnsmasq/files/CVE-2026-4893.patch b/meta-networking/recipes-support/dnsmasq/files/CVE-2026-4893.patch
new file mode 100644
index 0000000000..8aea321329
--- /dev/null
+++ b/meta-networking/recipes-support/dnsmasq/files/CVE-2026-4893.patch
@@ -0,0 +1,38 @@
1From 262aadd7a38947d2299234c8c9cf736ff6ad955d Mon Sep 17 00:00:00 2001
2From: Simon Kelley <simon@thekelleys.org.uk>
3Date: Wed, 25 Mar 2026 23:22:37 +0000
4Subject: [PATCH] Fix broken client subnet validation. CVE-2026-4893
5
6Bug report from Royce M <royce@xchglabs.com>
7
8Location: forward.c:713, edns0.c:421
9
10With --add-subnet enabled, process_reply() passes the OPT record
11length (~23 bytes) instead of the packet length to check_source().
12All internal bounds checks fail, and the function always returns 1.
13ECS source validation per RFC 7871 Section 9.2 is completely bypassed.
14
15CVE: CVE-2026-4893
16Upstream-Status: Backport [https://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=commit;h=e3a26d092e47bf1d18aeadb758e4ca35c83b5f2d]
17
18Signed-off-by: Hugo SIMELIERE (Schneider Electric) <hsimeliere.opensource@witekio.com>
19---
20 src/forward.c | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/src/forward.c b/src/forward.c
24index 32f37e40..19ff4401 100644
25--- a/src/forward.c
26+++ b/src/forward.c
27@@ -710,7 +710,7 @@ static size_t process_reply(struct dns_header *header, time_t now, struct server
28 /* Get extended RCODE. */
29 rcode |= sizep[2] << 4;
30
31- if (option_bool(OPT_CLIENT_SUBNET) && !check_source(header, plen, pheader, query_source))
32+ if (option_bool(OPT_CLIENT_SUBNET) && !check_source(header, n, pheader, query_source))
33 {
34 my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch"));
35 return 0;
36--
372.43.0
38