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 43D7B3CBE69; Mon, 17 Aug 2026 14:39:48 +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=1786977589; cv=none; b=ZesPW+xnZnpj+pMi+jLN516BGhBW7rU7UKQfdMLZTIRh/GTiNkakCPnV/g6k5kcSuqxo8vxKZQq2t3gFGHo1vmkTR6lRi+y2rZcThwaS+Sx0zd0lqIjHg+ogBxuevEaUCumwGU2tZtoYFCeg7aWUcDk+D14gdVNhmolEisZApjo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786977589; c=relaxed/simple; bh=ImrAwttd5y5DmwwJiWnTigdexCsw6uel6LoTn9yS+pg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=By2GqHUz1zDiaWKnAxR/Ifd75mkuJgi9kQyFug8wvv/SgF8zG/L3zl98XshHEe5vtfpOGbNBbCAUATceumnr1XsMsC5aRzhKNTzoba5HYk9G4w9gdJ3LxMVb/fetL8EWDwwpk+3y6XrdV3BoWsoXnh2LudfpAP7ss7iyQKeOf4g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=i/R1KJbN; 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="i/R1KJbN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A3F2B1F000E9; Mon, 17 Aug 2026 14:39:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786977588; bh=Gm/jLns+t+IVXaosn8M5fzxs25v7rAmAwBiSitYDyj0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=i/R1KJbNa+QnkOauWTRphBdEn4ce3pJYiylaLho6ruyRObODhKxWzxQKsRgucyDJ2 W4xXQPH4/ovKD0a6ViSIGlaIBWDc2PhMYKnhNB9KiZYs/e5yVaIwtJEa0f7iI6ImW2 Yg0Z9w9TgujxE3epMsyUwjH3KhRO3qam+hhlvOps= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, AutonomousCodeSecurity@microsoft.com, Eelco Chaudron , "Cen Zhang (Microsoft)" , Ilya Maximets , Paolo Abeni , Sasha Levin Subject: [PATCH 5.15 381/456] net/openvswitch: check Ethernet header length in key_extract() Date: Mon, 17 Aug 2026 15:32:51 +0200 Message-ID: <20260817132554.369225353@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132539.792407575@linuxfoundation.org> References: <20260817132539.792407575@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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Cen Zhang (Microsoft) [ Upstream commit cf6f8b29befb92173659bcef6a441d274947bfae ] When a packet arrives on an ARPHRD_NONE device (e.g. TUN), ovs_flow_key_extract() trusts the user-provided skb->protocol field: if it is ETH_P_TEB, the packet is classified as MAC_PROTO_ETHERNET and key_extract() is called without ensuring the skb has ETH_HLEN (14) bytes of linear data. key_extract() unconditionally pulls 2 * ETH_ALEN bytes for MAC addresses and parse_ethertype() pulls 2 more, either of which triggers a kernel BUG in __skb_pull() when the linear area is too small. kernel BUG at include/linux/skbuff.h:2848! RIP: 0010:key_extract+0xa7e/0xd90 net/openvswitch/flow.c:933 ovs_flow_key_extract+0x419/0xa70 ovs_vport_receive+0x222/0x390 netdev_frame_hook+0x3e0/0x630 tun_get_user+0x2d0c/0x38e0 Fixed by calling check_header() in key_extract() before accessing the Ethernet header. Fixes: 217ac77a3c25 ("openvswitch: allow L3 netdev ports") Reported-by: AutonomousCodeSecurity@microsoft.com Reviewed-by: Eelco Chaudron Signed-off-by: Cen Zhang (Microsoft) Reviewed-by: Ilya Maximets Link: https://patch.msgid.link/20260730222006.118652-1-blbllhy@gmail.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- net/openvswitch/flow.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 52ba0e7721cd6..635edddbd55ff 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -749,8 +749,6 @@ static int key_extract_l3l4(struct sk_buff *skb, struct sw_flow_key *key) * Ethernet header * @key: output flow key * - * The caller must ensure that skb->len >= ETH_HLEN. - * * Initializes @skb header fields as follows: * * - skb->mac_header: the L2 header. @@ -770,8 +768,6 @@ static int key_extract_l3l4(struct sk_buff *skb, struct sw_flow_key *key) */ static int key_extract(struct sk_buff *skb, struct sw_flow_key *key) { - struct ethhdr *eth; - /* Flags are always used as part of stats */ key->tp.flags = 0; @@ -786,6 +782,13 @@ static int key_extract(struct sk_buff *skb, struct sw_flow_key *key) skb_reset_network_header(skb); key->eth.type = skb->protocol; } else { + struct ethhdr *eth; + int err; + + err = check_header(skb, ETH_HLEN); + if (unlikely(err)) + return err; + eth = eth_hdr(skb); ether_addr_copy(key->eth.src, eth->h_source); ether_addr_copy(key->eth.dst, eth->h_dest); -- 2.53.0