From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-178.mta0.migadu.com (out-178.mta0.migadu.com [91.218.175.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B50133E95A4 for ; Thu, 23 Jul 2026 16:41:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.178 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784824872; cv=none; b=o2+Mr5K26nYvFwO4KAhieWacQ/OF6rSsGuu/Gcqe0MOomC1YdBtbMWShgdmIZgF4FAtIT9O4/DSCfspQeKyxW7oQ3VldSmYfvbY6Z4MGn+GDRKD4zM0xZFnt+ObOUn1iBPfe7N6GcFh5ys5wrkSE7ml7gX+rlk9lOWG3kZgMkWg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784824872; c=relaxed/simple; bh=fjKL20u3H7MJwfLBlBVYKcR7U31I3UVlkiS/UYwoUHc=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=U0OXYOgk6DzKMkz9SWpGi+ldZDgXRmsdBmqjH9bLA/o4ElCx89sSEz97s+UyIpc8cni4nyGsmc96SHLauH6PXm1vGGGYJ57dS7J7xi1gnoE0pq/zkonciie1VittHr8t4jK5xAw0PWSgIN/cRtbeR5png2qNjZs/xFi3KRHY5Bg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=qccqKIbU; arc=none smtp.client-ip=91.218.175.178 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="qccqKIbU" Message-ID: <0550c263-136b-4f50-8424-409ebd805503@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1784824868; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=G+gn24VVAAAi6zUEkzBGlUUubpWFgtnijncTWuNJRqc=; b=qccqKIbUQSRqv4xWFnSdLSHC+MkTIwc99MfLERBd3csWZXzSElmq3RfTTBUevag0fVr17L Phewy61L7Whi9mZPu5AAmcGLX9v/JfdLXyGaHTBwiq06nVnCARv1plOEILmfMB5RHaSsM3 AXR0NA5d7ZwXcc+3gXdPbrnDn5ALTME= Date: Thu, 23 Jul 2026 17:41:04 +0100 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net 3/5] vxlan: use neigh_ha_snapshot() in route_shortcircuit() To: Eric Dumazet , "David S . Miller" , Jakub Kicinski , Paolo Abeni Cc: Simon Horman , Ido Schimmel , Andrew Lunn , netdev@vger.kernel.org, eric.dumazet@gmail.com, stable@vger.kernel.org References: <20260723144249.759100-1-edumazet@google.com> <20260723144249.759100-4-edumazet@google.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Vadim Fedorenko In-Reply-To: <20260723144249.759100-4-edumazet@google.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 23/07/2026 15:42, Eric Dumazet wrote: > The neighbour hardware address n->ha can be updated asynchronously by the > neighbour subsystem, protected by n->ha_lock seqlock. Reading n->ha without > holding the seqlock loop can lead to torn reads or reading a partially updated > MAC address. > > Use neigh_ha_snapshot() in route_shortcircuit() to safely copy n->ha under > read_seqbegin()/read_seqretry() lock protection before using it. > > Note that arp_reduce() and neigh_reduce() seem to have the same issue > left for future patches. > > Fixes: e4f67addf158 ("add DOVE extensions for VXLAN") > Cc: stable@vger.kernel.org > Signed-off-by: Eric Dumazet > --- > drivers/net/vxlan/vxlan_core.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/vxlan/vxlan_core.c b/drivers/net/vxlan/vxlan_core.c > index fb4a706cd5786d1937b1922acced31ffdb187c2f..10dd19eec09e266197ee51330a652f4e76c9643a 100644 > --- a/drivers/net/vxlan/vxlan_core.c > +++ b/drivers/net/vxlan/vxlan_core.c > @@ -2159,9 +2159,11 @@ static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb) > } > > if (n) { > + u8 haddr[ETH_ALEN]; > bool diff; > > - diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha); > + neigh_ha_snapshot(haddr, n, dev); > + diff = !ether_addr_equal_unaligned(eth_hdr(skb)->h_dest, haddr); > if (diff) { > if (skb_cow_head(skb, 0)) { > neigh_release(n); > @@ -2169,7 +2171,7 @@ static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb) > } > memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest, > dev->addr_len); > - memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len); > + memcpy(eth_hdr(skb)->h_dest, haddr, dev->addr_len); > } > neigh_release(n); > return diff; Reviewed-by: Vadim Fedorenko