From: Lennart Poettering Date: Thu, 11 Dec 2008 19:57:45 +0000 (+0100) Subject: Don't get confused by UDP packets with a source port that is zero X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;h=3093047f1aa36bed8a37fa79004bf0ee287929f4;p=catta Don't get confused by UDP packets with a source port that is zero This is a fix for rhbz 475394. Problem identified by Hugo Dias. --- diff --git a/avahi-core/server.c b/avahi-core/server.c index c4980af..11ab6cf 100644 --- a/avahi-core/server.c +++ b/avahi-core/server.c @@ -898,6 +898,12 @@ static void dispatch_packet(AvahiServer *s, AvahiDnsPacket *p, const AvahiAddres return; } + if (port <= 0) { + /* This fixes RHBZ #475394 */ + avahi_log_warn("Received packet from invalid source port."); + return; + } + if (avahi_address_is_ipv4_in_ipv6(src_address)) /* This is an IPv4 address encapsulated in IPv6, so let's ignore it. */ return;