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 24293429037; Mon, 17 Aug 2026 14:46:10 +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=1786977971; cv=none; b=iTcil3CZRmI5OTU1rsRTM8D7OcdCErthLlPR0jLBCbMQHVWuragJL8PcymeWYegFZlztYGbkAxfBx0rAdlhT6+gq5UalSZTjDaJAl5eF50eTgPKvPMXI2I9mUuq2n6KUKk54w52L1TR401Te0Jh04lyNhJfv3cnSNOzrKeaq6So= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786977971; c=relaxed/simple; bh=6GmDxDuuXDPmV4YI2CDe14m/MU9ZJE8ERA3zw+ajvAg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BcZf62Um7pKm8+kRSODikUtka2hKak0q0dtYktCzRUwqNcSLRHHVPDNxHWUlVkHAcHeQ6/W7ga+paLx/Bm8KeRzMT9HrYCoKriaaKElTUUo1QPuzeuQ9y1uZSI7Kw0S4OBsjPeTapW5/OVyW1fJ7/NMVr0tkbJcNNxt/xMBxkJ4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IExWOeTH; 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="IExWOeTH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84FCE1F000E9; Mon, 17 Aug 2026 14:46:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786977970; bh=ORp+YATfk6JiYXS/Cg/eRQZlpbeEehfCz2hyByJzGGc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=IExWOeTHlL+BuOiQc2LeYkLBS63ks3Nx7JS/fL+9akB75FihBynxeaLv4tYfc9eYZ xwZklo8D0xgqNsVQhylSGTa8JCXpbH6OmSuX/uQMhd2vKjSB7qLt2D3CJdBFhfOX2i cu8DsMrzNyv749x5Gb95dMynm/FeJKoXYU2R4sWU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mahanta Jambigi , Sidraya Jayagond , Breno Leitao , Dust Li , Paolo Abeni , Sasha Levin Subject: [PATCH 6.12 056/181] net/smc: fix TOCTOU race between smc_listen_out() and listener close Date: Mon, 17 Aug 2026 15:32:30 +0200 Message-ID: <20260817132537.621556464@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132535.394764707@linuxfoundation.org> References: <20260817132535.394764707@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: Sidraya Jayagond [ Upstream commit 185a4caeecabc150106deda1da170b09f2ad803f ] smc_listen_out() reads lsmc->sk.sk_state without the listener lock, then acquires lock_sock_nested() only after the check passes. This opens a window where smc_close_active() can transition the listener to SMC_CLOSED, call smc_close_cleanup_listen() to drain the accept queue, and release the lock, all between the lockless read and the delayed lock acquisition: smc_listen_work (smc_hs_wq) smc_close_active() ------------------------------- ------------------------- release_sock(child) if (sk_state == SMC_LISTEN) TRUE lock_sock(listener) sk_state = SMC_CLOSED smc_close_cleanup_listen() release_sock(listener) flush_work(tcp_listen_work) lock_sock_nested(listener) smc_accept_enqueue(listener, child) /* child enqueued on dead listener */ smc_close_active() flushes only tcp_listen_work. Work items already dispatched onto smc_hs_wq for the CLC handshake continue running unguarded. smc_accept_enqueue() takes a sock_hold() on the child that is never released, so the child smc_sock, its clcsock, and the reference all leak. A remote peer that opens TCP connections while the server calls close() can exhaust kernel memory. Move lock_sock_nested() to before the sk_state check so that the test and the enqueue are atomic under the listener lock. Fixes: fd57770dd198 ("net/smc: wait for pending work before clcsock release_sock") Reviewed-by: Mahanta Jambigi Signed-off-by: Sidraya Jayagond Reviewed-by: Breno Leitao Reviewed-by: Dust Li Link: https://patch.msgid.link/20260803070701.126339-1-sidraya@linux.ibm.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- net/smc/af_smc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index 8d740f588a771..8e95839161aa1 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -1933,11 +1933,12 @@ static void smc_listen_out(struct smc_sock *new_smc) atomic_dec(&lsmc->queued_smc_hs); release_sock(newsmcsk); /* lock in smc_listen_work() */ + lock_sock_nested(&lsmc->sk, SINGLE_DEPTH_NESTING); if (lsmc->sk.sk_state == SMC_LISTEN) { - lock_sock_nested(&lsmc->sk, SINGLE_DEPTH_NESTING); smc_accept_enqueue(&lsmc->sk, newsmcsk); release_sock(&lsmc->sk); } else { /* no longer listening */ + release_sock(&lsmc->sk); smc_close_non_accepted(newsmcsk); } -- 2.53.0