From nobody Fri Dec 19 16:02:39 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 2B002129A7D; Sun, 24 Mar 2024 22:36:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711319781; cv=none; b=WR3p9FcpXqeNDeubCkiXPqa7OVcXdbEavC2OpifJ7UAzAEI4cRL9qdfuLWv7uMkTgZXDhUVHO/HT6+i+1aeglF2kH/IT2b7yry7vGIAdCuloVnhvAapHgGib/njYvqlnhs5ZDWyVwwMofEUkHV9GkIbZKDhUTFriBtMTK2Kuy9M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711319781; c=relaxed/simple; bh=06FpT3mRKSJTpgTZHFDze+IrA6YW+8cePTPaBKN39AE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kedkT3XB1DpRtXqTWdcoz+Oc1rNDbas6IgUBDs8onNP1bwOn+G5qSvGD77/OLbESlpVOWOiGAgTc0b5MZrqUtObA6pnM5qoXKYt7G1JzFVv3Zd9h1ejWw8KSzqZiVdOUVAXwAAhJ19rvOr6MJI/A2RO01u5oDrbh7aU1dIB3vuE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Y2ZyWgqa; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Y2ZyWgqa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2763EC433C7; Sun, 24 Mar 2024 22:36:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711319781; bh=06FpT3mRKSJTpgTZHFDze+IrA6YW+8cePTPaBKN39AE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Y2ZyWgqazo7hKazo4zZ2y32RDv5fd1BkQgm2Wm5cny98oZ6LQkrbFwIQfPeJ+BrSR /+6q2THE5S/+wyJs/OOLTD06ohlxcv1vrFArNHczBbVOCCu59dQ4s2u7GC85/e8TP2 YYrdX+eVGu/Avio95wUyyi0PdFP1i5xhcZTukG562vmCy0EmoYbaJ5lrvi/5eYEdzj L0LD+jkcQG+NfgbRDe668Eb7bRjRZzwRlltiibguqeS4s/XVn0THxo4i+uB1lYNWWb 1oCgbiI0kAwIWBXbuTXf+LAIIl7bg9rC2nGtkL/zUhLfZRDiwCL1M9BKzgRSoQSq4B +Y1LSGHWtp73w== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Eric Dumazet , Guillaume Nault , Kuniyuki Iwashima , Willem de Bruijn , Paolo Abeni , Sasha Levin Subject: [PATCH 6.8 082/715] inet_diag: annotate data-races around inet_diag_table[] Date: Sun, 24 Mar 2024 18:24:21 -0400 Message-ID: <20240324223455.1342824-83-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240324223455.1342824-1-sashal@kernel.org> References: <20240324223455.1342824-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Eric Dumazet [ Upstream commit e50e10ae5d81ddb41547114bfdc5edc04422f082 ] inet_diag_lock_handler() reads inet_diag_table[proto] locklessly. Use READ_ONCE()/WRITE_ONCE() annotations to avoid potential issues. Fixes: d523a328fb02 ("[INET]: Fix inet_diag dead-lock regression") Signed-off-by: Eric Dumazet Reviewed-by: Guillaume Nault Reviewed-by: Kuniyuki Iwashima Reviewed-by: Willem de Bruijn Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- net/ipv4/inet_diag.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c index 8e6b6aa0579e1..9804e9608a5a0 100644 --- a/net/ipv4/inet_diag.c +++ b/net/ipv4/inet_diag.c @@ -57,7 +57,7 @@ static const struct inet_diag_handler *inet_diag_lock_han= dler(int proto) return ERR_PTR(-ENOENT); } =20 - if (!inet_diag_table[proto]) + if (!READ_ONCE(inet_diag_table[proto])) sock_load_diag_module(AF_INET, proto); =20 mutex_lock(&inet_diag_table_mutex); @@ -1503,7 +1503,7 @@ int inet_diag_register(const struct inet_diag_handler= *h) mutex_lock(&inet_diag_table_mutex); err =3D -EEXIST; if (!inet_diag_table[type]) { - inet_diag_table[type] =3D h; + WRITE_ONCE(inet_diag_table[type], h); err =3D 0; } mutex_unlock(&inet_diag_table_mutex); @@ -1520,7 +1520,7 @@ void inet_diag_unregister(const struct inet_diag_hand= ler *h) return; =20 mutex_lock(&inet_diag_table_mutex); - inet_diag_table[type] =3D NULL; + WRITE_ONCE(inet_diag_table[type], NULL); mutex_unlock(&inet_diag_table_mutex); } EXPORT_SYMBOL_GPL(inet_diag_unregister); --=20 2.43.0