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 E6F4B43F08A; Tue, 21 Jul 2026 22:31:27 +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=1784673089; cv=none; b=I+XF6GkMaTfxKnwBCmk1xjZeQtrSvyKyBlL+VTaVOfQY5L0oqrX1cAebV54r/O12SeCwlIMf0uemXCX3Pv4naM1zoUMRGq054ERNSCljQHnh0zNuT2yUmXYjNbI0SAJ9qras9K+KLyKxnt6sqB1LFpF25hoy/Hh00Lsq7T2jPPQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784673089; c=relaxed/simple; bh=zSCKYyJ8TGfwe15GLQCu77YBszKQ4tznEhi/7pPc8cA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gxcemdLU5cg6dKxpwlhd1m7BHjPc0qBTlZWaH2ZsCuJn5kjgWU8kxFaqNC4Wn1gFxz0kBf2emR5GjNtt0x+9fxG0SYh+qX3PaMGcl0GzMwKdIHq2L9dH9vnYFqfQGqILUI70/Xm2XEKQTVTPEyT88r4kb4oir4AhvKsLFxcf0c4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=rHLKZWY8; 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="rHLKZWY8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 07ACD1F000E9; Tue, 21 Jul 2026 22:31:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784673087; bh=05/vsstumAb2NL9eeQBxJBSHeI/sdzdwDNUZV8v1tns=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=rHLKZWY8SvK6/5RJe8W7aJ3jmLjSXwxDF/f26+LCnT9Zlgi5lEMjyTOoh0v3z4b2c 6yhX3MiH7AXfz6wT6pQFn3LuNOc4fb/Sx4FTFuUofGJCm2HNv6XPrStrRK+RdW3480 0zZDY1pjDTvhXczbSrwOlQa7cnHulHvFEEXA9vN4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Johan Hovold , Wolfram Sang , Sasha Levin Subject: [PATCH 5.10 030/699] i2c: core: fix adapter registration race Date: Tue, 21 Jul 2026 17:16:29 +0200 Message-ID: <20260721152356.384803769@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152355.667394603@linuxfoundation.org> References: <20260721152355.667394603@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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Johan Hovold [ Upstream commit ba14d7cf2fe7284610a29854bdff22b2537d3ce6 ] Adapters can be looked up based on their id using i2c_get_adapter() which takes a reference to the embedded struct device. Make sure that the adapter (including its struct device) has been initialised before adding it to the IDR to avoid accessing uninitialised data which could, for example, lead to NULL-pointer dereferences or use-after-free. Note that the i2c-dev chardev, which is registered from a bus notifier, currently uses i2c_get_adapter() so the adapter needs to be added to the IDR before registration. Fixes: 6e13e6418418 ("i2c: Add i2c_add_numbered_adapter()") Cc: stable@vger.kernel.org # 2.6.22 Signed-off-by: Johan Hovold Signed-off-by: Wolfram Sang Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/i2c/i2c-core-base.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) --- a/drivers/i2c/i2c-core-base.c +++ b/drivers/i2c/i2c-core-base.c @@ -1468,6 +1468,10 @@ static int i2c_register_adapter(struct i pm_suspend_ignore_children(&adap->dev, true); pm_runtime_enable(&adap->dev); + mutex_lock(&core_lock); + idr_replace(&i2c_adapter_idr, adap, adap->nr); + mutex_unlock(&core_lock); + res = device_add(&adap->dev); if (res) { pr_err("adapter '%s': can't register device (%d)\n", adap->name, res); @@ -1535,7 +1539,7 @@ static int __i2c_add_numbered_adapter(st int id; mutex_lock(&core_lock); - id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1, GFP_KERNEL); + id = idr_alloc(&i2c_adapter_idr, NULL, adap->nr, adap->nr + 1, GFP_KERNEL); mutex_unlock(&core_lock); if (WARN(id < 0, "couldn't get idr")) return id == -ENOSPC ? -EBUSY : id; @@ -1571,7 +1575,7 @@ int i2c_add_adapter(struct i2c_adapter * } mutex_lock(&core_lock); - id = idr_alloc(&i2c_adapter_idr, adapter, + id = idr_alloc(&i2c_adapter_idr, NULL, __i2c_first_dynamic_bus_num, 0, GFP_KERNEL); mutex_unlock(&core_lock); if (WARN(id < 0, "couldn't get idr"))