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 C021C169AD2; Tue, 16 Jun 2026 17:47:21 +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=1781632042; cv=none; b=gIO4he26M6/i19CTPPyJL7rmVRvvOpKjeQZqS+jlh4FDXzvGPGmCu73XchdPAETQnoNIsdSTEVVRIaxMcqXpa1by0/Z1/VTL3Su07d6umsLRSeswtVoN/MtudpH/irW5rIufXxZ6LKTfAtdoqAG6XjOrsYd5eMa3yUK9fnUl/w4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781632042; c=relaxed/simple; bh=nkckoRzLAoIgqugumdHiM4D6vd9/dOQ1cvtNMEHlYt8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=oGwBAOHSDViAveHji9ahmbop7wLLviu698JSsGxDQ1SJYu8hrIKG/+clmTkWnWdglOpbSEJLQ7ajtHUZD3OXoks5jVPR3a8pvdVSEUXw3+sbaLR4BdivBA7kcysXFN9YCjD7VKeE0mbkfVENJQ+3T5b7SevWri06/VlVvl8i/wI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2u49JGmU; 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="2u49JGmU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C9ABA1F000E9; Tue, 16 Jun 2026 17:47:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1781632041; bh=VrXNiGyG5T+Md7VQMPQJsEZva6FyXOkrrBA+3yS3EZU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=2u49JGmUs+IcVVClwQ8JQSj+ADvDVFznWTsS6nHAAjk6BaSY5eVYYuktNB2AE/yVc sf8d/PEilX9r+YzPu+Kx3ZDFiOzFcq9qPSlTAOmt1rNtn90xfT7QQTDZZ968/QnrYP 6rksRQUbymZ/2LcZ6Ucy01jMvLUFD/kpkpS4yuWE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Zhenghang Xiao , Srinivas Kandagatla Subject: [PATCH 6.1 302/522] misc: fastrpc: fix use-after-free race in fastrpc_map_create Date: Tue, 16 Jun 2026 20:27:29 +0530 Message-ID: <20260616145140.024473763@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260616145125.307082728@linuxfoundation.org> References: <20260616145125.307082728@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Zhenghang Xiao commit 07ebe87915d8accdaba20c4f88c5ae430fe62fbb upstream. fastrpc_map_lookup returns a raw pointer after releasing fl->lock. The caller fastrpc_map_create then calls fastrpc_map_get (kref_get_unless_zero) on this unprotected pointer. A concurrent MEM_UNMAP can free the map between the lock release and the kref operation, resulting in a use-after-free on the freed slab object. Restore the take_ref parameter to fastrpc_map_lookup so the reference is acquired atomically under fl->lock before the pointer is exposed to the caller. Fixes: 10df039834f8 ("misc: fastrpc: Skip reference for DMA handles") Cc: stable@vger.kernel.org Signed-off-by: Zhenghang Xiao Signed-off-by: Srinivas Kandagatla Link: https://patch.msgid.link/20260530204528.116920-5-srini@kernel.org Signed-off-by: Greg Kroah-Hartman --- drivers/misc/fastrpc.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) --- a/drivers/misc/fastrpc.c +++ b/drivers/misc/fastrpc.c @@ -344,7 +344,7 @@ static int fastrpc_map_get(struct fastrp static int fastrpc_map_lookup(struct fastrpc_user *fl, int fd, - struct fastrpc_map **ppmap) + struct fastrpc_map **ppmap, bool take_ref) { struct fastrpc_map *map = NULL; struct dma_buf *buf; @@ -359,6 +359,12 @@ static int fastrpc_map_lookup(struct fas if (map->fd != fd || map->buf != buf) continue; + if (take_ref) { + ret = fastrpc_map_get(map); + if (ret) + break; + } + *ppmap = map; ret = 0; break; @@ -830,19 +836,10 @@ get_err: static int fastrpc_map_create(struct fastrpc_user *fl, int fd, u64 len, u32 attr, struct fastrpc_map **ppmap) { - struct fastrpc_session_ctx *sess = fl->sctx; - int err = 0; + if (!fastrpc_map_lookup(fl, fd, ppmap, true)) + return 0; - if (!fastrpc_map_lookup(fl, fd, ppmap)) { - if (!fastrpc_map_get(*ppmap)) - return 0; - dev_dbg(sess->dev, "%s: Failed to get map fd=%d\n", - __func__, fd); - } - - err = fastrpc_map_attach(fl, fd, len, attr, ppmap); - - return err; + return fastrpc_map_attach(fl, fd, len, attr, ppmap); } /* @@ -1109,7 +1106,7 @@ cleanup_fdlist: for (i = 0; i < FASTRPC_MAX_FDLIST; i++) { if (!fdlist[i]) break; - if (!fastrpc_map_lookup(fl, (int)fdlist[i], &mmap)) + if (!fastrpc_map_lookup(fl, (int)fdlist[i], &mmap, false)) fastrpc_map_put(mmap); }