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 2586919993E; Sun, 24 Nov 2024 13:44:03 +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=1732455843; cv=none; b=AO+J3TpCYzvSEa0HAwInfBIARh3x/WPtlkRuNFd8ukafXuh3R0jkReb0DkkHUbSwqwSo2c2UebNwdYM42sYWKZ9vJTKEgOGd2GlHFsWqX8MV31eWiAERERoldRXB+2rlpsU2VH/yrGW3BLNvTFRkcZqCB0K5DhFr8/+dcjZSNhQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1732455843; c=relaxed/simple; bh=K+dy7J2P2DkGP/rIUHYAhXsBZisveBBB0abmNJ+0Erw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZMgb8j+24mnflngcubANebJW2V6M5348dCrCb0cLmpJg0CFX0goF1jTFqIrB+RCAJ2ihnbYmyS24PkTzpw/qr/jEv/jmmvnkYDpy+Tn8sNYZAET3mOXwZM683IwtQh98C9T3JyOVyA/UCDi2hVulZMkFXUIue0kwfWByROO0AEc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=aEDRqlUZ; 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="aEDRqlUZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 20EB0C4CECC; Sun, 24 Nov 2024 13:44:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1732455843; bh=K+dy7J2P2DkGP/rIUHYAhXsBZisveBBB0abmNJ+0Erw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aEDRqlUZrFQm19waIN/g2fgqO1y/CKgunyAzlk8Jau3C0c/awH5RM7012XLLqMUk6 GIMve35Jq1tmCygVz2FOOR9Eej9K57L+icWH5usH1wKxyyfGkGMXRkgAOhiOKeqVHX jI7gukYJLyG0V6ul/u4JKn0DO9koh6tsLFiEXP/O1l8LcZjA8haHwPr7Ampg3KkorZ iHY6C/zBCQOaZIu9XwRcmtBIejCui5hq6w8YMCUYzg37D+02r9XXnAIgNd8+rdk9D1 rI9ouLp4yDWht1yAZag6Ica/6/dXB69Zx+0qat9pd+3puQ2f1vF+YQj8JMzbkLwrkE JFCgZnEhv9zrQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Levi Yun , Denis Nikitin , Christoph Hellwig , Sasha Levin , m.szyprowski@samsung.com, iommu@lists.linux.dev Subject: [PATCH AUTOSEL 6.11 54/87] dma-debug: fix a possible deadlock on radix_lock Date: Sun, 24 Nov 2024 08:38:32 -0500 Message-ID: <20241124134102.3344326-54-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241124134102.3344326-1-sashal@kernel.org> References: <20241124134102.3344326-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 X-stable-base: Linux 6.11.10 Content-Transfer-Encoding: 8bit From: Levi Yun [ Upstream commit 7543c3e3b9b88212fcd0aaf5cab5588797bdc7de ] radix_lock() shouldn't be held while holding dma_hash_entry[idx].lock otherwise, there's a possible deadlock scenario when dma debug API is called holding rq_lock(): CPU0 CPU1 CPU2 dma_free_attrs() check_unmap() add_dma_entry() __schedule() //out (A) rq_lock() get_hash_bucket() (A) dma_entry_hash check_sync() (A) radix_lock() (W) dma_entry_hash dma_entry_free() (W) radix_lock() // CPU2's one (W) rq_lock() CPU1 situation can happen when it extending radix tree and it tries to wake up kswapd via wake_all_kswapd(). CPU2 situation can happen while perf_event_task_sched_out() (i.e. dma sync operation is called while deleting perf_event using etm and etr tmc which are Arm Coresight hwtracing driver backends). To remove this possible situation, call dma_entry_free() after put_hash_bucket() in check_unmap(). Reported-by: Denis Nikitin Closes: https://lists.linaro.org/archives/list/coresight@lists.linaro.org/thread/2WMS7BBSF5OZYB63VT44U5YWLFP5HL6U/#RWM6MLQX5ANBTEQ2PRM7OXCBGCE6NPWU Signed-off-by: Levi Yun Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin --- kernel/dma/debug.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/kernel/dma/debug.c b/kernel/dma/debug.c index d570535342cb7..f6f0387761d05 100644 --- a/kernel/dma/debug.c +++ b/kernel/dma/debug.c @@ -1052,9 +1052,13 @@ static void check_unmap(struct dma_debug_entry *ref) } hash_bucket_del(entry); - dma_entry_free(entry); - put_hash_bucket(bucket, flags); + + /* + * Free the entry outside of bucket_lock to avoid ABBA deadlocks + * between that and radix_lock. + */ + dma_entry_free(entry); } static void check_for_stack(struct device *dev, -- 2.43.0