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 8E0673E764C; Mon, 17 Aug 2026 13:42:49 +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=1786974170; cv=none; b=Rx1tE/vL341uSM3Ry3oC4/GQyxPDzsPnvwX/LUrGBWIachrwmSFK+br9JOn2fDfzJ+Fkjq5FtWvKwmO4oE0UmF5h6hLGMFrChPnLqQjNXwp7ZQzj067EhcuGyZ2iqYtdJYRKSdUnlZh6uzBtJzYB7IN71H2kux3g2FeaLB0HEZI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786974170; c=relaxed/simple; bh=R1ExKVWZVKuiyghGuzUZlNv5NOsGrLAcmlXaP7GUp8Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iiF7diuleMLhDr4w3K3S5D4t44qfw7yyLbezHiA9oFLcrkD+53gfnwO3lB1G1UJu+JZ6s7pgo4/i1b22mrSOUaUaGF4iZVJirhl1clzpP/UsCEXAxEy7AAclw2Js68nscM18a0XysBNU9IWbRjKItqV/1VZHmF4NdVfqQJnfFnA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=P5qMlve+; 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="P5qMlve+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E30B71F000E9; Mon, 17 Aug 2026 13:42:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786974169; bh=+JdJb8F+Yo4f83/yBfMgCRkqo8zEEBd8iB+C6wMFJxw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=P5qMlve+4mb3LpMX/NGGPlDt9xDkeomkfjjd9+CMOLLmR7Pni/nlPf787nKFKSNJU aLLR31LEjq372INkuxSh97UO8OWNkkV+QzxtAXEPzWRCxRWGRXM+ryuaD8OT1dGnF5 h/0tIDARXL+yjO/lUccEK9xMU17JZe0x07CRAysQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Daniele Linguaglossa , Xin Long , Jakub Kicinski , Sasha Levin Subject: [PATCH 7.1 112/271] sctp: clear control chunk transport if it is being removed Date: Mon, 17 Aug 2026 15:30:37 +0200 Message-ID: <20260817132541.493468890@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132536.752504388@linuxfoundation.org> References: <20260817132536.752504388@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 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Xin Long [ Upstream commit c9158ceaf27780ef64534ad72f44ffde3f8ccc49 ] sctp_make_heartbeat_ack() caches the destination transport in chunk->transport without taking a reference. When src_out_of_asoc_ok is enabled, the HEARTBEAT ACK may remain queued on control_chunk_list instead of being transmitted immediately. If the peer transport is removed while the chunk is still queued, sctp_assoc_rm_peer() drops the transport and schedules it for RCU freeing, but only clears cached transport pointers in out_chunk_list. The queued control chunk therefore retains a dangling transport pointer. Once an ASCONF_ACK clears the suppression and the queued control chunk is transmitted, SCTP dereferences the stale transport pointer, leading to a use-after-free. Fix this by also clearing chunk->transport for queued control chunks in control_chunk_list when removing the transport. Fixes: 8a07eb0a50ae ("sctp: Add ASCONF operation on the single-homed host") Reported-by: Daniele Linguaglossa Signed-off-by: Xin Long Link: https://patch.msgid.link/7e1168cb722132152a29d47e5eafaeac4a3bf6f3.1785943120.git.lucien.xin@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/sctp/associola.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net/sctp/associola.c b/net/sctp/associola.c index b6ac0966420a1..5b0ae616e1ff9 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -573,6 +573,10 @@ void sctp_assoc_rm_peer(struct sctp_association *asoc, if (ch->transport == peer) ch->transport = NULL; + list_for_each_entry(ch, &asoc->outqueue.control_chunk_list, list) + if (ch->transport == peer) + ch->transport = NULL; + asoc->peer.transport_count--; sctp_ulpevent_notify_peer_addr_change(peer, SCTP_ADDR_REMOVED, 0); -- 2.53.0