From mboxrd@z Thu Jan 1 00:00:00 1970 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 B33431A1881; Wed, 5 Jun 2024 11:51:47 +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=1717588307; cv=none; b=hShf4vfgmTMyVo70WTSRECHWyq6qetOpQESCS3Fwa7ouGPQYSA6KSjDMd9QtkDPqWsUhtsXVJXcrXRAtyUttw69YtrM8DPL6gzz2GRD/ZUQTmyzrl/diKn03Mbth+jGmXWTPdDBSfGlW1+l1MA5uUQpL8yr0T+6PlptDXP5MJ74= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717588307; c=relaxed/simple; bh=kiI/Lw2TK9Xytq4SD7omgBRD9aRnbSVuuUnrkQXDmf0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pi7fa6QJoKqwQmVmC4Z/jbpgTFo2oPBywApYo5xpWvcfwvo/iRytob9V2JlXCANXLm7Qf2W5anh5+TMztDIrkhV/o1QG9Wejjb5uZg2mb67/fHRV+2TU/2DJoWtHnTjT7coUT9nj5HpOSAcPB32ZOODRJsuDWLDNBlwI70yfWMQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Me5NHUIf; 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="Me5NHUIf" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7B02C32786; Wed, 5 Jun 2024 11:51:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1717588307; bh=kiI/Lw2TK9Xytq4SD7omgBRD9aRnbSVuuUnrkQXDmf0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Me5NHUIfQst+Ef6hFd2Zl+G/fthdgB4APYeYEftUiz1vp7IU9lYybdN4njEtWAhxi gntB4pfQ08FbBrzgw9QHwDtGNR6Dq7+at88S/fb/RYrywej/qT9gSCNn3enNDSBP3d XNGcVEktVr3QX09QkWGcDxnxoIsBdTi4rbVjkiCSAGx7Av4kfnNIJXcZkeO/8IKXf0 Vg0yeWpBL1FdezPKppepaA2ikpwi4s9Io7+0cBHhvilHK2pq4CtKX7EroWTcoMnfcC EEPN5vqICp3wQp2VDev9T9Wg00bjTj2RDia3VXHfBg7o7QFJwuGDt7+yoCm2D3IoeT wvOtxkcPMlSnQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Sicong Huang , Greg Kroah-Hartman , Sasha Levin , johan@kernel.org, greybus-dev@lists.linaro.org Subject: [PATCH AUTOSEL 6.8 18/24] greybus: Fix use-after-free bug in gb_interface_release due to race condition. Date: Wed, 5 Jun 2024 07:50:28 -0400 Message-ID: <20240605115101.2962372-18-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240605115101.2962372-1-sashal@kernel.org> References: <20240605115101.2962372-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.8.12 Content-Transfer-Encoding: 8bit From: Sicong Huang [ Upstream commit 5c9c5d7f26acc2c669c1dcf57d1bb43ee99220ce ] In gb_interface_create, &intf->mode_switch_completion is bound with gb_interface_mode_switch_work. Then it will be started by gb_interface_request_mode_switch. Here is the relevant code. if (!queue_work(system_long_wq, &intf->mode_switch_work)) { ... } If we call gb_interface_release to make cleanup, there may be an unfinished work. This function will call kfree to free the object "intf". However, if gb_interface_mode_switch_work is scheduled to run after kfree, it may cause use-after-free error as gb_interface_mode_switch_work will use the object "intf". The possible execution flow that may lead to the issue is as follows: CPU0 CPU1 | gb_interface_create | gb_interface_request_mode_switch gb_interface_release | kfree(intf) (free) | | gb_interface_mode_switch_work | mutex_lock(&intf->mutex) (use) Fix it by canceling the work before kfree. Signed-off-by: Sicong Huang Link: https://lore.kernel.org/r/20240416080313.92306-1-congei42@163.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/greybus/interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/greybus/interface.c b/drivers/greybus/interface.c index 9ec949a438ef6..52ef6be9d4499 100644 --- a/drivers/greybus/interface.c +++ b/drivers/greybus/interface.c @@ -694,6 +694,7 @@ static void gb_interface_release(struct device *dev) trace_gb_interface_release(intf); + cancel_work_sync(&intf->mode_switch_work); kfree(intf); } -- 2.43.0