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 61F2035BDAA; Thu, 30 Jul 2026 15:51:24 +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=1785426685; cv=none; b=B2WG8uljZHntrT/LqjOmypN74We2ec/GN5iDrdNb+JAwg03O9SH1Q0ZbUHHc1kzMxLqA12uINXFzat17L+WMJKOiIUZfnUhTy2dykEdi32uWfei0neRrfiJIsnhP+YFlUECh2H3DKUBKb7wigzwLgKpc2918C2GpFkkohk2+yXE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426685; c=relaxed/simple; bh=nr0lOrxzoV3kLSkZmPql7jQOXAfG+7g497B5ztih+hI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Lj5ncyCd+2AQ6BpClDshE9s5CuLCMIasEDEQ2KyjfAscIOVeC9Nq7ZEbUGu1wXeI53ZIdyDb6ahUAbCAXUzGQOU4ZSYQuQLW3rqN/Apr2xMm9nqK32LHZ07e5DmUhlgZhTjzSl/2yuOdwDaCVReZb7zRPfupBMH4FMGPbyrYI+c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xntILA+I; 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="xntILA+I" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD4DE1F00A3F; Thu, 30 Jul 2026 15:51:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785426684; bh=67NAc6fjOeYn3OmQAlQOkTopcrZMSiJOdx7+U6noG84=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=xntILA+IzkDpJH6bb17d46Pm+G8WGSJlcpvV8dhWlp85t10t4UImpiyBIeaxuuU8k rw+F5V1bIUjtpUWh8sMAM47HMSfYLkCJJCrIVqVosvKQLZBkP+METt2RTC7JZpsXMY QMLQXlaDkK3lRcNBG3s1DzhI7bgkm2b8RBFg8FwU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ren Wei , Pablo Neira Ayuso , Florian Westphal , Sasha Levin Subject: [PATCH 6.12 505/602] netfilter: nf_conntrack_sip: validate skb_dst() before accessing it Date: Thu, 30 Jul 2026 16:14:57 +0200 Message-ID: <20260730141446.599337195@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pablo Neira Ayuso [ Upstream commit e5e24a365a5e024efef63cc49abb345fbd4852c5 ] tc ingress and openvswitch do not guarantee routing information to be available. These subsystems use the conntrack helper infrastructure, and the SIP helper relies on the skb_dst() to be present if sip_external_media is set to 1 (which is disabled by default as a module parameter). This effectively disables the sip_external_media toggle for these subsystems without resulting in a crash. Fixes: cae3a2627520 ("openvswitch: Allow attaching helpers to ct action") Fixes: b57dc7c13ea9 ("net/sched: Introduce action ct") Cc: stable@vger.kernel.org Reported-by: Ren Wei Signed-off-by: Pablo Neira Ayuso Signed-off-by: Florian Westphal Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- net/netfilter/nf_conntrack_sip.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- a/net/netfilter/nf_conntrack_sip.c +++ b/net/netfilter/nf_conntrack_sip.c @@ -947,7 +947,6 @@ static int set_expected_rtp_rtcp(struct return NF_ACCEPT; saddr = &ct->tuplehash[!dir].tuple.src.u3; } else if (sip_external_media) { - struct net_device *dev = skb_dst(skb)->dev; struct dst_entry *dst = NULL; struct flowi fl; @@ -969,7 +968,11 @@ static int set_expected_rtp_rtcp(struct * through the same interface as the signalling peer. */ if (dst) { - bool external_media = (dst->dev == dev); + const struct dst_entry *this_dst = skb_dst(skb); + bool external_media = false; + + if (this_dst && dst->dev == this_dst->dev) + external_media = true; dst_release(dst); if (external_media)