From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 6B0233BA225; Tue, 21 Jul 2026 20:52:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784667138; cv=none; b=EPp6bdXdH3cTqiyU2LNlSxlJe7Pf9byg/ggOO8CBD+DgwEcGY1D00DtsbVfn+4Ml1/OwNpGBBsyITSDmeVl4yZXAl0BZnPduSiI5bUdABXcd6LsptY3RBzrtBkzqU+ra3mSRGzgIkjvKGBilTLY5BBO3aFwpuVLMFXffnOJ8wRE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784667138; c=relaxed/simple; bh=ur28CyWnLpTpahgvShqxCYT9gOHcL1zpjmPdR+1Bx08=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mDIf6+HTe/BO39tRmm7r/lH0TqVGShGlJBKuIL4kbhU9fY9nnnwLbE7VyZ52yt1jxvHVlL/zuUaIWdk0IJSCLU3pm+cdumDiranTQ5nPNI3yeprWwNHbx3KfRB1rpiD5QC/U8jpcmVlO+uXhuaFE+twqTj9LDOXjcSInMtYqyaE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=x7RbOd1a; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="x7RbOd1a" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B56971F000E9; Tue, 21 Jul 2026 20:52:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784667136; bh=YcsFzQrW3fQPImFR6fF/SzmL7viEdm19HQHnYdiOerY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=x7RbOd1a1wcm40ZJPoq2dQJRWgwVm83jZJ2bpOfj23SERivKl6g+ODLXt9ePoDhXD ewf7xcTdjlHRmRnUFMOJcUck2OkWIVaWbpJ7g4MYv2RWdLxnHlJDsqcUO+ZpQKcZMm kI/m76IxStCd0lluhCmJTqQIxamWFr7Yo6Q9m0zE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sven Eckelmann Subject: [PATCH 6.6 0947/1266] batman-adv: dat: acquire ARP hw source only after skb realloc Date: Tue, 21 Jul 2026 17:23:04 +0200 Message-ID: <20260721152503.020620583@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152441.786066624@linuxfoundation.org> References: <20260721152441.786066624@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sven Eckelmann commit 48067b2ae4504500a7093d9e1e16b42e70330480 upstream. The pskb_may_pull() called by batadv_get_vid() could reallocate the buffer behind the skb. Variables which were pointing to the old buffer need to be reassigned to avoid an use-after-free. Cc: stable@vger.kernel.org Fixes: b61ec31c8575 ("batman-adv: Snoop DHCPACKs for DAT") Signed-off-by: Sven Eckelmann Signed-off-by: Greg Kroah-Hartman --- net/batman-adv/distributed-arp-table.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/net/batman-adv/distributed-arp-table.c +++ b/net/batman-adv/distributed-arp-table.c @@ -1758,6 +1758,7 @@ void batadv_dat_snoop_incoming_dhcp_ack( struct ethhdr *ethhdr; __be32 ip_src, yiaddr; unsigned short vid; + int hdr_size_tmp; __be16 proto; u8 *hw_src; @@ -1774,8 +1775,10 @@ void batadv_dat_snoop_incoming_dhcp_ack( if (!batadv_dat_check_dhcp_ack(skb, proto, &ip_src, chaddr, &yiaddr)) return; + hdr_size_tmp = hdr_size; + vid = batadv_dat_get_vid(skb, &hdr_size_tmp); + ethhdr = (struct ethhdr *)(skb->data + hdr_size); hw_src = ethhdr->h_source; - vid = batadv_dat_get_vid(skb, &hdr_size); batadv_dat_entry_add(bat_priv, yiaddr, chaddr, vid); batadv_dat_entry_add(bat_priv, ip_src, hw_src, vid);