|
|
02e780 |
From e111def44a7df4624a4aa3f85fe98054bffb6b4f Mon Sep 17 00:00:00 2001
|
|
|
02e780 |
From: Trent Lloyd <trent@lloyd.id.au>
|
|
|
02e780 |
Date: Sat, 22 Dec 2018 09:06:07 +0800
|
|
|
02e780 |
Subject: [PATCH] Drop legacy unicast queries from address not on local link
|
|
|
02e780 |
|
|
|
02e780 |
When handling legacy unicast queries, ensure that the source IP is
|
|
|
02e780 |
inside a subnet on the local link, otherwise drop the packet.
|
|
|
02e780 |
|
|
|
02e780 |
Fixes #145
|
|
|
02e780 |
Fixes #203
|
|
|
02e780 |
CVE-2017-6519
|
|
|
02e780 |
CVE-2018-100084
|
|
|
02e780 |
---
|
|
|
02e780 |
avahi-core/server.c | 8 ++++++++
|
|
|
02e780 |
1 file changed, 8 insertions(+)
|
|
|
02e780 |
|
|
|
02e780 |
diff --git a/avahi-core/server.c b/avahi-core/server.c
|
|
|
02e780 |
index a2cb19a8..a2580e38 100644
|
|
|
02e780 |
--- a/avahi-core/server.c
|
|
|
02e780 |
+++ b/avahi-core/server.c
|
|
|
02e780 |
@@ -930,6 +930,7 @@ static void dispatch_packet(AvahiServer *s, AvahiDnsPacket *p, const AvahiAddres
|
|
|
02e780 |
|
|
|
02e780 |
if (avahi_dns_packet_is_query(p)) {
|
|
|
02e780 |
int legacy_unicast = 0;
|
|
|
02e780 |
+ char t[AVAHI_ADDRESS_STR_MAX];
|
|
|
02e780 |
|
|
|
02e780 |
/* For queries EDNS0 might allow ARCOUNT != 0. We ignore the
|
|
|
02e780 |
* AR section completely here, so far. Until the day we add
|
|
|
02e780 |
@@ -947,6 +948,13 @@ static void dispatch_packet(AvahiServer *s, AvahiDnsPacket *p, const AvahiAddres
|
|
|
02e780 |
legacy_unicast = 1;
|
|
|
02e780 |
}
|
|
|
02e780 |
|
|
|
02e780 |
+ if (!is_mdns_mcast_address(dst_address) &&
|
|
|
02e780 |
+ !avahi_interface_address_on_link(i, src_address)) {
|
|
|
02e780 |
+
|
|
|
02e780 |
+ avahi_log_debug("Received non-local unicast query from host %s on interface '%s.%i'.", avahi_address_snprint(t, sizeof(t), src_address), i->hardware->name, i->protocol);
|
|
|
02e780 |
+ return;
|
|
|
02e780 |
+ }
|
|
|
02e780 |
+
|
|
|
02e780 |
if (legacy_unicast)
|
|
|
02e780 |
reflect_legacy_unicast_query_packet(s, p, i, src_address, port);
|
|
|
02e780 |
|