All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Baineng Shou" <shoubaineng@gmail.com>
Cc: media-ci@linuxtv.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v7 2/4] misc: fastrpc: don't publish fd before copy_to_user() succeeds
Date: Mon, 17 Aug 2026 05:20:25 +0000	[thread overview]
Message-ID: <20260817052026.47E851F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260817050457.1005285-3-shoubaineng@gmail.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [Critical] Exported DMA buffers maintain a raw pointer to `fastrpc_user` (`buf->fl`) without holding a reference, leading to a Use-After-Free if the DMA buffer outlives the fastrpc device descriptor.
--

--- Patch [2]: [PATCH v7 2/4] misc: fastrpc: don't publish fd before copy_to_user() succeeds ---
commit f5005f3a9100abf2f83ab45f3bc5e948d9e97e67
Author: Baineng Shou <shoubaineng@gmail.com>

misc: fastrpc: don't publish fd before copy_to_user() succeeds

This commit fixes an issue where a DMA buffer file descriptor is installed
into the fd table before successfully copying the fd number back to
userspace. It updates the allocation path to reserve the fd first, attempt
the user copy, and only publish the fd upon success to prevent leaking
access to the fd on failure.

> diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c
> --- a/drivers/misc/fastrpc.c
> +++ b/drivers/misc/fastrpc.c
> @@ -1709,24 +1709,20 @@ static int fastrpc_dmabuf_alloc(struct fastrpc_user *fl, char __user *argp)
>  		return err;
>  	}
>  
> -	bp.fd = dma_buf_fd(buf->dmabuf, O_ACCMODE);
> +	bp.fd = get_unused_fd_flags(O_ACCMODE);
>  	if (bp.fd < 0) {
>  		dma_buf_put(buf->dmabuf);
> -		return -EINVAL;
> +		return bp.fd;
>  	}
>  
>  	if (copy_to_user(argp, &bp, sizeof(bp))) {
> -		/*
> -		 * The usercopy failed, but we can't do much about it, as
> -		 * dma_buf_fd() already called fd_install() and made the
> -		 * file descriptor accessible for the current process. It
> -		 * might already be closed and dmabuf no longer valid when
> -		 * we reach this point. Therefore "leak" the fd and rely on
> -		 * the process exit path to do any required cleanup.
> -		 */
> +		put_unused_fd(bp.fd);
> +		dma_buf_put(buf->dmabuf);
>  		return -EFAULT;
>  	}
>  
> +	dma_buf_fd_install(buf->dmabuf, bp.fd);

[Severity: Critical]
This is a pre-existing issue, but does exporting this dma-buf introduce a
use-after-free risk if the dma-buf fd outlives the fastrpc device fd?

When the fastrpc device fd is closed, the fastrpc_user struct (fl) is
released. However, the exported dma-buf maintains a raw pointer to it via
buf->fl without holding a reference.

If an unprivileged user allocates a dma-buf here, closes the fastrpc device
fd, and then calls close() or mmap() on the dma-buf fd, it triggers
dma_buf_put() or mmap(). Those paths call into fastrpc_buf_free() or
fastrpc_mmap(), which dereference the dangling buf->fl pointer:

fastrpc_buf_free()
    fastrpc_ipa_to_dma_addr(buf->fl->cctx, buf->dma_addr)

Is there a missing reference count increment on fastrpc_user when exporting
the buffer, or should the dma-buf release operations handle the device
teardown differently?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260817050457.1005285-1-shoubaineng@gmail.com?part=2

  reply	other threads:[~2026-08-17  5:20 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-03  8:09 [PATCH] dma-buf: dma-heap: close installed fd when copy_to_user() fails Baineng Shou
2026-07-03  8:17 ` sashiko-bot
2026-07-03  8:26 ` Christian König
2026-07-10 10:57 ` [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-07-10 11:06   ` sashiko-bot
2026-07-10 20:20     ` T.J. Mercier
2026-07-11  4:18       ` 寿柏能
2026-07-13 23:33         ` T.J. Mercier
2026-07-14 11:46           ` [PATCH v3 0/2] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou
2026-07-14 11:46             ` [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-07-14 13:13               ` David Laight
2026-07-14 13:38                 ` 寿柏能
2026-07-14 14:33                   ` David Laight
2026-07-15  2:04                     ` 寿柏能
     [not found]                       ` <CAGCp47zxaZsoBKeXz2YdyxbX8QOy_g8dGwnC9gVpJ-Sqng48Qg@mail.gmail.com>
2026-07-28  6:35                         ` Sumit Semwal
2026-07-30  6:25                           ` [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou
2026-07-30  6:25                             ` [PATCH v5 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-07-30  6:25                             ` [PATCH v5 2/4] misc: fastrpc: " Baineng Shou
2026-07-30  6:26                           ` [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou
2026-07-30  6:26                             ` [PATCH v5 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-07-30  6:26                             ` [PATCH v5 2/4] misc: fastrpc: " Baineng Shou
2026-07-30  6:26                             ` [PATCH v5 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing Baineng Shou
2026-07-30  6:40                               ` sashiko-bot
2026-07-31 17:14                               ` T.J. Mercier
2026-08-07 10:09                                 ` [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou
2026-08-07 10:10                                 ` Baineng Shou
2026-08-07 10:10                                   ` [PATCH v6 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-08-07 10:10                                 ` [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou
2026-08-07 10:11                                 ` Baineng Shou
2026-08-07 10:11                                 ` Baineng Shou
2026-08-07 10:11                                   ` [PATCH v6 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-08-07 10:11                                   ` [PATCH v6 2/4] misc: fastrpc: " Baineng Shou
2026-08-07 10:11                                   ` [PATCH v6 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing Baineng Shou
2026-08-07 10:22                                     ` sashiko-bot
2026-08-07 10:11                                   ` [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test Baineng Shou
2026-08-07 10:20                                     ` sashiko-bot
2026-08-07 21:49                                     ` T.J. Mercier
2026-08-12 15:27                                   ` [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Sumit Semwal
2026-08-17  5:04                                 ` [PATCH v7 " Baineng Shou
2026-08-17  5:04                                   ` [PATCH v7 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-08-17  5:04                                   ` [PATCH v7 2/4] misc: fastrpc: " Baineng Shou
2026-08-17  5:20                                     ` sashiko-bot [this message]
2026-08-17  5:04                                   ` [PATCH v7 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing Baineng Shou
2026-08-17  5:14                                     ` sashiko-bot
2026-08-17  5:04                                   ` [PATCH v7 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test Baineng Shou
2026-08-17  5:14                                     ` sashiko-bot
2026-07-30  6:26                             ` [PATCH v5 " Baineng Shou
2026-07-30  6:38                               ` sashiko-bot
2026-07-31 17:09                               ` T.J. Mercier
2026-07-14 11:46             ` [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds Baineng Shou
2026-07-14 12:08               ` sashiko-bot
2026-07-15 20:44               ` T.J. Mercier
2026-07-14 12:24             ` [PATCH v3 0/2] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Christian König
2026-07-14 13:27               ` [PATCH v3] drm/prime: use dma_buf_fd_install() to preserve export tracing Baineng Shou
2026-07-14 13:45                 ` sashiko-bot
2026-07-10 12:33   ` [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Christian König
2026-07-11  4:14 ` Baineng Shou
2026-07-11  4:29   ` sashiko-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260817052026.47E851F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=media-ci@linuxtv.org \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=shoubaineng@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.