* [PATCH] dma-buf: dma-heap: close installed fd when copy_to_user() fails
@ 2026-07-03 8:09 Baineng Shou
2026-07-03 8:17 ` sashiko-bot
` (3 more replies)
0 siblings, 4 replies; 49+ messages in thread
From: Baineng Shou @ 2026-07-03 8:09 UTC (permalink / raw)
To: Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz,
T.J. Mercier, Christian König, Sandeep Patil,
Andrew F. Davis
Cc: Baineng Shou, stable, open list:DMA-BUF HEAPS FRAMEWORK,
open list:DMA-BUF HEAPS FRAMEWORK,
moderated list:DMA-BUF HEAPS FRAMEWORK, open list
DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the
caller's fd table via fd_install() before dma_heap_ioctl() copies the
result back to userspace. If the trailing copy_to_user() fails, the
ioctl returns -EFAULT and userspace never learns the fd number, but
the fd (and the underlying dma-buf reference) remain in the caller's
fd table and are leaked for the lifetime of the process.
The failure is easily reachable from userspace: pass a struct
dma_heap_allocation_data that lives in a page whose protection is
flipped to PROT_READ between copy_from_user() and copy_to_user()
(e.g. via mprotect()). Each such ioctl leaks one dmabuf fd; repeating
the call quickly fills /proc/<pid>/fd with anonymous "/dmabuf:"
entries that only go away when the process exits.
Fix it by closing the installed fd (and clearing the fd field of the
kernel-side copy) when copy_to_user() fails after a successful
allocation, so the error path matches what userspace observes: no fd
was returned, therefore no fd is left behind.
Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework")
Cc: stable@vger.kernel.org
Signed-off-by: Baineng Shou <shoubaineng@gmail.com>
---
Reproducer (full source, gcc -o poc poc.c; run as root):
// poc.c -- leak one dma-buf fd per DMA_HEAP_IOCTL_ALLOC
// when copy_to_user() fails
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <linux/dma-heap.h>
int main(int argc, char **argv)
{
int n = argc > 1 ? atoi(argv[1]) : 100;
long ps = sysconf(_SC_PAGESIZE);
int heap = open("/dev/dma_heap/system", O_RDWR | O_CLOEXEC);
if (heap < 0)
return perror("open"), 1;
for (int i = 0; i < n; i++) {
/* Put a valid request in a page, then make the page
* read-only: copy_from_user() still succeeds and the
* dma-buf is allocated and fd_install()'d, but the
* trailing copy_to_user() fails and the fd, never
* returned to us, is leaked.
*/
struct dma_heap_allocation_data *req =
mmap(NULL, ps, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
memset(req, 0, sizeof(*req));
req->len = ps;
req->fd_flags = O_RDWR | O_CLOEXEC;
mprotect(req, ps, PROT_READ);
ioctl(heap, DMA_HEAP_IOCTL_ALLOC, req); /* -EFAULT */
munmap(req, ps);
}
printf("done: check ls -l /proc/%d/fd for %d leaked fds\n",
getpid(), n);
pause();
return 0;
}
Before the fix, ./poc 10 leaves 10 anonymous dmabuf fds in the
caller's fd table:
# ls -l /proc/$(pgrep poc)/fd
lrwx------ 1 root root 64 Jan 1 00:03 3 -> /dev/dma_heap/system
lrwx------ 1 root root 64 Jan 1 00:03 4 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 5 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 6 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 7 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 8 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 9 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 10 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 11 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 12 -> /dmabuf:
lrwx------ 1 root root 64 Jan 1 00:03 13 -> /dmabuf:
After the fix, only /dev/dma_heap/system remains open; the
anonymous "/dmabuf:" entries are gone.
drivers/dma-buf/dma-heap.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c
index a76bf3f8b071..0dd7a84b06bf 100644
--- a/drivers/dma-buf/dma-heap.c
+++ b/drivers/dma-buf/dma-heap.c
@@ -18,6 +18,7 @@
#include <linux/uaccess.h>
#include <linux/xarray.h>
#include <uapi/linux/dma-heap.h>
+#include <linux/fdtable.h>
#define DEVNAME "dma_heap"
@@ -181,8 +182,16 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd,
goto err;
}
- if (copy_to_user((void __user *)arg, kdata, out_size) != 0)
+ if (copy_to_user((void __user *)arg, kdata, out_size) != 0) {
+ if (kcmd == DMA_HEAP_IOCTL_ALLOC && ret == 0) {
+ struct dma_heap_allocation_data *h = (void *)kdata;
+
+ close_fd(h->fd);
+ h->fd = -1;
+ }
ret = -EFAULT;
+ }
+
err:
if (kdata != stack_kdata)
kfree(kdata);
--
2.34.1
^ permalink raw reply related [flat|nested] 49+ messages in thread* Re: [PATCH] dma-buf: dma-heap: close installed fd when copy_to_user() fails 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 ` (2 subsequent siblings) 3 siblings, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-03 8:17 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [High] Calling close_fd() on an installed file descriptor creates a race condition that can inadvertently close an unrelated file descriptor belonging to the process. -- commit 61669c0c051aa2c310121591ca8897cc10b33840 Author: Baineng Shou <shoubaineng@gmail.com> dma-buf: dma-heap: close installed fd when copy_to_user() fails This patch attempts to fix a file descriptor leak when copy_to_user() fails after allocating a DMA heap buffer. It tries to clean up the leaked file descriptor by calling close_fd() if the copy to userspace is unsuccessful. > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > index a76bf3f8b071a..0dd7a84b06bf4 100644 > --- a/drivers/dma-buf/dma-heap.c > +++ b/drivers/dma-buf/dma-heap.c [ ... ] > @@ -181,8 +182,16 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > goto err; > } > > - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { > + if (kcmd == DMA_HEAP_IOCTL_ALLOC && ret == 0) { > + struct dma_heap_allocation_data *h = (void *)kdata; > + > + close_fd(h->fd); [Severity: High] Does calling close_fd() on an installed file descriptor create a race condition here in dma_heap_ioctl()? By the time the execution reaches this error path, the file descriptor has already been published to the process's file descriptor table via fd_install() inside dma_heap_ioctl_allocate(). This means userspace can already access it. A concurrent thread could close the newly allocated file descriptor and open a new file, reusing the same file descriptor number before the copy_to_user() completes and fails. If that happens, wouldn't this close_fd() inadvertently close an unrelated file descriptor belonging to the process? > + h->fd = -1; > + } > ret = -EFAULT; > + } > + > err: > if (kdata != stack_kdata) > kfree(kdata); -- Sashiko AI review · https://sashiko.dev/#/patchset/20260703080922.1838362-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH] dma-buf: dma-heap: close installed fd when copy_to_user() fails 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-11 4:14 ` Baineng Shou 3 siblings, 0 replies; 49+ messages in thread From: Christian König @ 2026-07-03 8:26 UTC (permalink / raw) To: Baineng Shou, Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz, T.J. Mercier, Sandeep Patil, Andrew F. Davis Cc: stable, open list:DMA-BUF HEAPS FRAMEWORK, open list:DMA-BUF HEAPS FRAMEWORK, moderated list:DMA-BUF HEAPS FRAMEWORK, open list On 7/3/26 10:09, Baineng Shou wrote: > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > caller's fd table via fd_install() before dma_heap_ioctl() copies the > result back to userspace. If the trailing copy_to_user() fails, the > ioctl returns -EFAULT and userspace never learns the fd number, but > the fd (and the underlying dma-buf reference) remain in the caller's > fd table and are leaked for the lifetime of the process. This came up many many times before and is the completely wrong approach to handle that. Background is that this opens up a race window between install_fd() and close_fd() which is much more worse than the original issue and can be abused for a couple of different things. If I'm not completely mistaken we now have automated checkers in place which find such use case in the upstream kernel and complain about it. IIRC the correct approach is to call get_unused_fd_flags() to get an fd, do your things, copy it to user space etc... and then finally do the fd_install(fd, dmabuf->file) when nothing can go wrong any more. If an error happens use put_unused_fd() to clean up. Regards, Christian. > > The failure is easily reachable from userspace: pass a struct > dma_heap_allocation_data that lives in a page whose protection is > flipped to PROT_READ between copy_from_user() and copy_to_user() > (e.g. via mprotect()). Each such ioctl leaks one dmabuf fd; repeating > the call quickly fills /proc/<pid>/fd with anonymous "/dmabuf:" > entries that only go away when the process exits. > > Fix it by closing the installed fd (and clearing the fd field of the > kernel-side copy) when copy_to_user() fails after a successful > allocation, so the error path matches what userspace observes: no fd > was returned, therefore no fd is left behind. > > Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") > Cc: stable@vger.kernel.org > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> > --- > > Reproducer (full source, gcc -o poc poc.c; run as root): > > // poc.c -- leak one dma-buf fd per DMA_HEAP_IOCTL_ALLOC > // when copy_to_user() fails > #include <fcntl.h> > #include <stdio.h> > #include <stdlib.h> > #include <string.h> > #include <unistd.h> > #include <sys/ioctl.h> > #include <sys/mman.h> > #include <linux/dma-heap.h> > > int main(int argc, char **argv) > { > int n = argc > 1 ? atoi(argv[1]) : 100; > long ps = sysconf(_SC_PAGESIZE); > > int heap = open("/dev/dma_heap/system", O_RDWR | O_CLOEXEC); > if (heap < 0) > return perror("open"), 1; > > for (int i = 0; i < n; i++) { > /* Put a valid request in a page, then make the page > * read-only: copy_from_user() still succeeds and the > * dma-buf is allocated and fd_install()'d, but the > * trailing copy_to_user() fails and the fd, never > * returned to us, is leaked. > */ > struct dma_heap_allocation_data *req = > mmap(NULL, ps, PROT_READ | PROT_WRITE, > MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); > > memset(req, 0, sizeof(*req)); > req->len = ps; > req->fd_flags = O_RDWR | O_CLOEXEC; > > mprotect(req, ps, PROT_READ); > ioctl(heap, DMA_HEAP_IOCTL_ALLOC, req); /* -EFAULT */ > munmap(req, ps); > } > > printf("done: check ls -l /proc/%d/fd for %d leaked fds\n", > getpid(), n); > pause(); > return 0; > } > > Before the fix, ./poc 10 leaves 10 anonymous dmabuf fds in the > caller's fd table: > > # ls -l /proc/$(pgrep poc)/fd > lrwx------ 1 root root 64 Jan 1 00:03 3 -> /dev/dma_heap/system > lrwx------ 1 root root 64 Jan 1 00:03 4 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 5 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 6 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 7 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 8 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 9 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 10 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 11 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 12 -> /dmabuf: > lrwx------ 1 root root 64 Jan 1 00:03 13 -> /dmabuf: > > After the fix, only /dev/dma_heap/system remains open; the > anonymous "/dmabuf:" entries are gone. > > drivers/dma-buf/dma-heap.c | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > index a76bf3f8b071..0dd7a84b06bf 100644 > --- a/drivers/dma-buf/dma-heap.c > +++ b/drivers/dma-buf/dma-heap.c > @@ -18,6 +18,7 @@ > #include <linux/uaccess.h> > #include <linux/xarray.h> > #include <uapi/linux/dma-heap.h> > +#include <linux/fdtable.h> > > #define DEVNAME "dma_heap" > > @@ -181,8 +182,16 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > goto err; > } > > - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { > + if (kcmd == DMA_HEAP_IOCTL_ALLOC && ret == 0) { > + struct dma_heap_allocation_data *h = (void *)kdata; > + > + close_fd(h->fd); > + h->fd = -1; > + } > ret = -EFAULT; > + } > + > err: > if (kdata != stack_kdata) > kfree(kdata); ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 ` Baineng Shou 2026-07-10 11:06 ` 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 3 siblings, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-10 10:57 UTC (permalink / raw) To: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, T . J . Mercier, Sandeep Patil, Andrew F . Davis Cc: stable, linux-media, dri-devel, linaro-mm-sig, linux-kernel, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. fd_install() publishes the fd -- from here on the ioctl cannot fail. To make this possible, dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The fd is written into the kdata buffer before copy_to_user() so the reserved fd number reaches userspace atomically with the install. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..0a9bf62eb06c 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + fd_install(fd, dmabuf->file); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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-10 12:33 ` [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Christian König 1 sibling, 1 reply; 49+ messages in thread From: sashiko-bot @ 2026-07-10 11:06 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [Medium] Bypassing the standard dma_buf_fd() API skips the emission of the trace_dma_buf_fd tracepoint. -- --- Patch [1]: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds --- commit 869904722955c74d0c6e8c974d3c64c6befabac6 Author: Baineng Shou <shoubaineng@gmail.com> dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds This commit restructures DMA_HEAP_IOCTL_ALLOC to delay publishing the file descriptor until after copy_to_user() succeeds. It open-codes the fd allocation and installation steps instead of using dma_buf_fd() to prevent an fd leak on copy_to_user() failure. Link: https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > index 3937dd41bb0f6..983dee947c851 100644 > --- a/drivers/dma-buf/dma-heap.c > +++ b/drivers/dma-buf/dma-heap.c [ ... ] > @@ -175,15 +162,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > > switch (kcmd) { > case DMA_HEAP_IOCTL_ALLOC: > - ret = dma_heap_ioctl_allocate(file, kdata); > + dmabuf = dma_heap_ioctl_allocate(file, kdata); > + > + if (IS_ERR(dmabuf)) { > + ret = PTR_ERR(dmabuf); > + break; > + } > + > + fd = ((struct dma_heap_allocation_data *)kdata)->fd; > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { > + put_unused_fd(fd); > + dma_buf_put(dmabuf); > + ret = -EFAULT; > + } else { > + fd_install(fd, dmabuf->file); [Severity: Medium] By open-coding the fd reservation and installation here instead of using dma_buf_fd(), does this skip the emission of the trace_dma_buf_fd tracepoint? If so, observability tools, BPF scripts, and perf tracing relying on trace_dma_buf_fd to map dmabufs to file descriptors will silently miss all allocations originating from the dma-heap subsystem. > + } > + > break; > default: > ret = -ENOTTY; > goto err; > } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260710105740.3080070-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-10 11:06 ` sashiko-bot @ 2026-07-10 20:20 ` T.J. Mercier 2026-07-11 4:18 ` 寿柏能 0 siblings, 1 reply; 49+ messages in thread From: T.J. Mercier @ 2026-07-10 20:20 UTC (permalink / raw) To: gaoxiang17 Cc: Baineng Shou, dri-devel, sashiko-reviews, Christian König, Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz, T . J . Mercier, Sandeep Patil, Andrew F . Davis On Fri, Jul 10, 2026 at 4:06 AM <sashiko-bot@kernel.org> wrote: > > Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: > - [Medium] Bypassing the standard dma_buf_fd() API skips the emission of the trace_dma_buf_fd tracepoint. > -- > > --- Patch [1]: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds --- > commit 869904722955c74d0c6e8c974d3c64c6befabac6 > Author: Baineng Shou <shoubaineng@gmail.com> > > dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds > > This commit restructures DMA_HEAP_IOCTL_ALLOC to delay publishing the > file descriptor until after copy_to_user() succeeds. It open-codes the > fd allocation and installation steps instead of using dma_buf_fd() to > prevent an fd leak on copy_to_user() failure. > > Link: https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ > > > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > > index 3937dd41bb0f6..983dee947c851 100644 > > --- a/drivers/dma-buf/dma-heap.c > > +++ b/drivers/dma-buf/dma-heap.c > [ ... ] > > @@ -175,15 +162,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > > > > switch (kcmd) { > > case DMA_HEAP_IOCTL_ALLOC: > > - ret = dma_heap_ioctl_allocate(file, kdata); > > + dmabuf = dma_heap_ioctl_allocate(file, kdata); > > + > > + if (IS_ERR(dmabuf)) { > > + ret = PTR_ERR(dmabuf); > > + break; > > + } > > + > > + fd = ((struct dma_heap_allocation_data *)kdata)->fd; > > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { > > + put_unused_fd(fd); > > + dma_buf_put(dmabuf); > > + ret = -EFAULT; > > + } else { > > + fd_install(fd, dmabuf->file); > > [Severity: Medium] > By open-coding the fd reservation and installation here instead of using > dma_buf_fd(), does this skip the emission of the trace_dma_buf_fd tracepoint? > > If so, observability tools, BPF scripts, and perf tracing relying on > trace_dma_buf_fd to map dmabufs to file descriptors will silently miss all > allocations originating from the dma-heap subsystem. Hi Xiang Gao, It looks like this change in its current form breaks the export tracing that you introduced. It looks fixable by adding a call to DMA_BUF_TRACE in after copy_to_user in dma_heap_ioctl. However I'm wondering if you're aware of the dmabuf iterator that traverses the dmabuf_list? I've backported it to 5.10, so it's available on all our kernels: https://r.android.com/q/Iaeda328f7693acc1506269c12cac5e7955e5c091 Someone else from Xiaomi even helped with the 6.12 backport. So I guess I'm wondering if the dmabuf iterator would work for you instead of the tracepoints. Thanks, T.J. > > + } > > + > > break; > > default: > > ret = -ENOTTY; > > goto err; > > } > > -- > Sashiko AI review · https://sashiko.dev/#/patchset/20260710105740.3080070-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-10 20:20 ` T.J. Mercier @ 2026-07-11 4:18 ` 寿柏能 2026-07-13 23:33 ` T.J. Mercier 0 siblings, 1 reply; 49+ messages in thread From: 寿柏能 @ 2026-07-11 4:18 UTC (permalink / raw) To: T.J. Mercier Cc: gaoxiang17, dri-devel, sashiko-reviews, Christian König, Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis [-- Attachment #1: Type: text/plain, Size: 3986 bytes --] Hi T.J., Thanks for the review. You are right, the export tracing was inadvertently lost when splitting dma_buf_fd() apart. I've fixed it in v3 by introducing a new dma_buf_fd_install() helper in dma-buf.c that wraps the DMA_BUF_TRACE call together with fd_install(), and using that in dma-heap.c instead of a bare fd_install(). The trace event fires after copy_to_user() succeeds, just before the fd becomes visible to userspace — the same observable moment as before. Baineng T.J. Mercier <tjmercier@google.com> 于2026年7月11日周六 04:20写道: > On Fri, Jul 10, 2026 at 4:06 AM <sashiko-bot@kernel.org> wrote: > > > > Thank you for your contribution! Sashiko AI review found 1 potential > issue(s) to consider: > > - [Medium] Bypassing the standard dma_buf_fd() API skips the emission of > the trace_dma_buf_fd tracepoint. > > -- > > > > --- Patch [1]: [PATCH v2] dma-buf: dma-heap: don't publish fd before > copy_to_user() succeeds --- > > commit 869904722955c74d0c6e8c974d3c64c6befabac6 > > Author: Baineng Shou <shoubaineng@gmail.com> > > > > dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds > > > > This commit restructures DMA_HEAP_IOCTL_ALLOC to delay publishing the > > file descriptor until after copy_to_user() succeeds. It open-codes the > > fd allocation and installation steps instead of using dma_buf_fd() to > > prevent an fd leak on copy_to_user() failure. > > > > Link: > https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ > > > > > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > > > index 3937dd41bb0f6..983dee947c851 100644 > > > --- a/drivers/dma-buf/dma-heap.c > > > +++ b/drivers/dma-buf/dma-heap.c > > [ ... ] > > > @@ -175,15 +162,28 @@ static long dma_heap_ioctl(struct file *file, > unsigned int ucmd, > > > > > > switch (kcmd) { > > > case DMA_HEAP_IOCTL_ALLOC: > > > - ret = dma_heap_ioctl_allocate(file, kdata); > > > + dmabuf = dma_heap_ioctl_allocate(file, kdata); > > > + > > > + if (IS_ERR(dmabuf)) { > > > + ret = PTR_ERR(dmabuf); > > > + break; > > > + } > > > + > > > + fd = ((struct dma_heap_allocation_data *)kdata)->fd; > > > + if (copy_to_user((void __user *)arg, kdata, out_size) != > 0) { > > > + put_unused_fd(fd); > > > + dma_buf_put(dmabuf); > > > + ret = -EFAULT; > > > + } else { > > > + fd_install(fd, dmabuf->file); > > > > [Severity: Medium] > > By open-coding the fd reservation and installation here instead of using > > dma_buf_fd(), does this skip the emission of the trace_dma_buf_fd > tracepoint? > > > > If so, observability tools, BPF scripts, and perf tracing relying on > > trace_dma_buf_fd to map dmabufs to file descriptors will silently miss > all > > allocations originating from the dma-heap subsystem. > > Hi Xiang Gao, > > It looks like this change in its current form breaks the export > tracing that you introduced. It looks fixable by adding a call to > DMA_BUF_TRACE in after copy_to_user in dma_heap_ioctl. However I'm > wondering if you're aware of the dmabuf iterator that traverses the > dmabuf_list? I've backported it to 5.10, so it's available on all our > kernels: https://r.android.com/q/Iaeda328f7693acc1506269c12cac5e7955e5c091 > Someone else from Xiaomi even helped with the 6.12 backport. So I > guess I'm wondering if the dmabuf iterator would work for you instead > of the tracepoints. > > Thanks, > T.J. > > > > + } > > > + > > > break; > > > default: > > > ret = -ENOTTY; > > > goto err; > > > } > > > > -- > > Sashiko AI review · > https://sashiko.dev/#/patchset/20260710105740.3080070-1-shoubaineng@gmail.com?part=1 > [-- Attachment #2: Type: text/html, Size: 5422 bytes --] ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 0 siblings, 1 reply; 49+ messages in thread From: T.J. Mercier @ 2026-07-13 23:33 UTC (permalink / raw) To: 寿柏能 Cc: gaoxiang17, dri-devel, sashiko-reviews, Christian König, Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis On Fri, Jul 10, 2026 at 9:18 PM 寿柏能 <shoubaineng@gmail.com> wrote: > > Hi T.J., > > Thanks for the review. > > You are right, the export tracing was inadvertently lost when splitting > dma_buf_fd() apart. I've fixed it in v3 by introducing a new > dma_buf_fd_install() helper in dma-buf.c that wraps the DMA_BUF_TRACE > call together with fd_install(), and using that in dma-heap.c instead > of a bare fd_install(). The trace event fires after copy_to_user() > succeeds, just before the fd becomes visible to userspace — the same > observable moment as before. > > > Baineng Thanks Baineng, that LGTM. Please have my RB: Reviewed-by: T.J. Mercier <tjmercier@google.com> You'll probably want to resend this with a "[PATCH v3]" subject though. Originally I wasn't sure if we really needed dma_buf_fd_install exported, but I looked around and see that fastrpc_dmabuf_alloc (drivers/misc/fastrpc.c), gntdev_ioctl_dmabuf_exp_from_refs (drivers/xen/gntdev-dmabuf.c), and I think video_usercopy (drivers/media/v4l2-core/v4l2-ioctl.c) also suffer from this same problem. Want to take a stab at those too? :) -T.J. > > T.J. Mercier <tjmercier@google.com> 于2026年7月11日周六 04:20写道: >> >> On Fri, Jul 10, 2026 at 4:06 AM <sashiko-bot@kernel.org> wrote: >> > >> > Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: >> > - [Medium] Bypassing the standard dma_buf_fd() API skips the emission of the trace_dma_buf_fd tracepoint. >> > -- >> > >> > --- Patch [1]: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds --- >> > commit 869904722955c74d0c6e8c974d3c64c6befabac6 >> > Author: Baineng Shou <shoubaineng@gmail.com> >> > >> > dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds >> > >> > This commit restructures DMA_HEAP_IOCTL_ALLOC to delay publishing the >> > file descriptor until after copy_to_user() succeeds. It open-codes the >> > fd allocation and installation steps instead of using dma_buf_fd() to >> > prevent an fd leak on copy_to_user() failure. >> > >> > Link: https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ >> > >> > > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c >> > > index 3937dd41bb0f6..983dee947c851 100644 >> > > --- a/drivers/dma-buf/dma-heap.c >> > > +++ b/drivers/dma-buf/dma-heap.c >> > [ ... ] >> > > @@ -175,15 +162,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, >> > > >> > > switch (kcmd) { >> > > case DMA_HEAP_IOCTL_ALLOC: >> > > - ret = dma_heap_ioctl_allocate(file, kdata); >> > > + dmabuf = dma_heap_ioctl_allocate(file, kdata); >> > > + >> > > + if (IS_ERR(dmabuf)) { >> > > + ret = PTR_ERR(dmabuf); >> > > + break; >> > > + } >> > > + >> > > + fd = ((struct dma_heap_allocation_data *)kdata)->fd; >> > > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { >> > > + put_unused_fd(fd); >> > > + dma_buf_put(dmabuf); >> > > + ret = -EFAULT; >> > > + } else { >> > > + fd_install(fd, dmabuf->file); >> > >> > [Severity: Medium] >> > By open-coding the fd reservation and installation here instead of using >> > dma_buf_fd(), does this skip the emission of the trace_dma_buf_fd tracepoint? >> > >> > If so, observability tools, BPF scripts, and perf tracing relying on >> > trace_dma_buf_fd to map dmabufs to file descriptors will silently miss all >> > allocations originating from the dma-heap subsystem. >> >> Hi Xiang Gao, >> >> It looks like this change in its current form breaks the export >> tracing that you introduced. It looks fixable by adding a call to >> DMA_BUF_TRACE in after copy_to_user in dma_heap_ioctl. However I'm >> wondering if you're aware of the dmabuf iterator that traverses the >> dmabuf_list? I've backported it to 5.10, so it's available on all our >> kernels: https://r.android.com/q/Iaeda328f7693acc1506269c12cac5e7955e5c091 >> Someone else from Xiaomi even helped with the 6.12 backport. So I >> guess I'm wondering if the dmabuf iterator would work for you instead >> of the tracepoints. >> >> Thanks, >> T.J. >> >> > > + } >> > > + >> > > break; >> > > default: >> > > ret = -ENOTTY; >> > > goto err; >> > > } >> > >> > -- >> > Sashiko AI review · https://sashiko.dev/#/patchset/20260710105740.3080070-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v3 0/2] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 2026-07-13 23:33 ` T.J. Mercier @ 2026-07-14 11:46 ` 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 ` (2 more replies) 0 siblings, 3 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-14 11:46 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint (spotted by T.J. Mercier and sashiko-bot on v2) - Add fastrpc fix using the new helper (suggested by T.J. Mercier) Baineng Shou (2): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- drivers/misc/fastrpc.c | 16 +++----- include/linux/dma-buf.h | 1 + 4 files changed, 67 insertions(+), 50 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 ` Baineng Shou 2026-07-14 13:13 ` David Laight 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:24 ` [PATCH v3 0/2] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Christian König 2 siblings, 1 reply; 49+ messages in thread From: Baineng Shou @ 2026-07-14 11:46 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. dma_buf_fd_install() publishes the fd and emits the trace_dma_buf_fd tracepoint -- from here on the ioctl cannot fail. A new dma_buf_fd_install() helper is introduced in dma-buf.c to wrap fd_install() together with the DMA_BUF_TRACE() call, preserving the export tracing that dma_buf_fd() provides. dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Reviewed-by: T.J. Mercier <tjmercier@google.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 ` 寿柏能 0 siblings, 1 reply; 49+ messages in thread From: David Laight @ 2026-07-14 13:13 UTC (permalink / raw) To: Baineng Shou Cc: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Tue, 14 Jul 2026 19:46:53 +0800 Baineng Shou <shoubaineng@gmail.com> wrote: > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > caller's fd table via dma_buf_fd() -> fd_install() before > dma_heap_ioctl() copies the result back to userspace. If the trailing > copy_to_user() fails, userspace never learns the fd number, but the > fd (and the underlying dma-buf reference) are already visible to > other threads in the same process and are leaked for the lifetime of > the process. > > The obvious "close it on the failure path" fix is unsafe: once > fd_install() has run, another thread can already dup() the fd, send > it via SCM_RIGHTS, or close() it and let its number be reused, so a > subsequent close_fd() from the ioctl path can operate on an unrelated > file. This was pointed out by Christian König on v1 [1]. ... My 2c: The other option is just to leave it as a 'problem for user space'. No reasonable program is going to handle the EFAULT return by doing anything other than exiting. Even getting an EFAULT is really an indication that the application is already in a real mess - most likely with a badly corrupted heap. Anything else leaves error recovery code in the kernel that is pretty much never executed and open to a variety of bugs. While the recovery here is probably ok, there are some sockopt calls where it is all more complicated. David ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-14 13:13 ` David Laight @ 2026-07-14 13:38 ` 寿柏能 2026-07-14 14:33 ` David Laight 0 siblings, 1 reply; 49+ messages in thread From: 寿柏能 @ 2026-07-14 13:38 UTC (permalink / raw) To: David Laight Cc: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm [-- Attachment #1: Type: text/plain, Size: 2240 bytes --] Hi David, Thanks for the feedback. The concern is not just about the EFAULT return — it's about the race window between fd_install() and copy_to_user(). Once fd_install() returns, the fd is immediately observable by other threads in the same process (via /proc/self/fd, SCM_RIGHTS, etc.), even before copy_to_user() has a chance to fail. The triggering condition is a deliberate mprotect() flip, not a corrupted heap. The fix itself is small and follows the standard kernel idiom: get_unused_fd_flags() reserves the fd without publishing it, so the window between reservation and install is entirely under kernel control. Baineng David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 21:14写道: > On Tue, 14 Jul 2026 19:46:53 +0800 > Baineng Shou <shoubaineng@gmail.com> wrote: > > > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > > caller's fd table via dma_buf_fd() -> fd_install() before > > dma_heap_ioctl() copies the result back to userspace. If the trailing > > copy_to_user() fails, userspace never learns the fd number, but the > > fd (and the underlying dma-buf reference) are already visible to > > other threads in the same process and are leaked for the lifetime of > > the process. > > > > The obvious "close it on the failure path" fix is unsafe: once > > fd_install() has run, another thread can already dup() the fd, send > > it via SCM_RIGHTS, or close() it and let its number be reused, so a > > subsequent close_fd() from the ioctl path can operate on an unrelated > > file. This was pointed out by Christian König on v1 [1]. > ... > > My 2c: > > The other option is just to leave it as a 'problem for user space'. > No reasonable program is going to handle the EFAULT return by doing > anything other than exiting. > Even getting an EFAULT is really an indication that the application > is already in a real mess - most likely with a badly corrupted heap. > > Anything else leaves error recovery code in the kernel that is pretty > much never executed and open to a variety of bugs. > While the recovery here is probably ok, there are some sockopt calls > where it is all more complicated. > > David > [-- Attachment #2: Type: text/html, Size: 2784 bytes --] ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-14 13:38 ` 寿柏能 @ 2026-07-14 14:33 ` David Laight 2026-07-15 2:04 ` 寿柏能 0 siblings, 1 reply; 49+ messages in thread From: David Laight @ 2026-07-14 14:33 UTC (permalink / raw) To: 寿柏能 Cc: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Tue, 14 Jul 2026 21:38:07 +0800 寿柏能 <shoubaineng@gmail.com> wrote: > Hi David, > > Thanks for the feedback. > > The concern is not just about the EFAULT return — it's about the race > window between fd_install() and copy_to_user(). Once fd_install() > returns, the fd is immediately observable by other threads in the same > process (via /proc/self/fd, SCM_RIGHTS, etc.), even before > copy_to_user() has a chance to fail. The triggering condition is a > deliberate mprotect() flip, not a corrupted heap. That is what makes doing the close wrong. But that is a program aggressively trying to hit the timing window, not a normal program that has managed to pass an invalid pointer. The most likely reason for a real program passing an invalid pointer is a corrupted heap (assuming the stupid coding errors are fixed). It is really no different from the sockopt code that receives SCM_RIGHTS messages. In that case once you've removed the FILE from the socket (or similar) you really don't want to have to put it back because the write to the sockopt buffer or length field fails. The chance of correctly reverting the kernel state is small - and won't be tested. David > > The fix itself is small and follows the standard kernel idiom: > get_unused_fd_flags() reserves the fd without publishing it, so the > window between reservation and install is entirely under kernel control. > > Baineng > > David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 21:14写道: > > > On Tue, 14 Jul 2026 19:46:53 +0800 > > Baineng Shou <shoubaineng@gmail.com> wrote: > > > > > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > > > caller's fd table via dma_buf_fd() -> fd_install() before > > > dma_heap_ioctl() copies the result back to userspace. If the trailing > > > copy_to_user() fails, userspace never learns the fd number, but the > > > fd (and the underlying dma-buf reference) are already visible to > > > other threads in the same process and are leaked for the lifetime of > > > the process. > > > > > > The obvious "close it on the failure path" fix is unsafe: once > > > fd_install() has run, another thread can already dup() the fd, send > > > it via SCM_RIGHTS, or close() it and let its number be reused, so a > > > subsequent close_fd() from the ioctl path can operate on an unrelated > > > file. This was pointed out by Christian König on v1 [1]. > > ... > > > > My 2c: > > > > The other option is just to leave it as a 'problem for user space'. > > No reasonable program is going to handle the EFAULT return by doing > > anything other than exiting. > > Even getting an EFAULT is really an indication that the application > > is already in a real mess - most likely with a badly corrupted heap. > > > > Anything else leaves error recovery code in the kernel that is pretty > > much never executed and open to a variety of bugs. > > While the recovery here is probably ok, there are some sockopt calls > > where it is all more complicated. > > > > David > > ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-14 14:33 ` David Laight @ 2026-07-15 2:04 ` 寿柏能 [not found] ` <CAGCp47zxaZsoBKeXz2YdyxbX8QOy_g8dGwnC9gVpJ-Sqng48Qg@mail.gmail.com> 0 siblings, 1 reply; 49+ messages in thread From: 寿柏能 @ 2026-07-15 2:04 UTC (permalink / raw) To: David Laight Cc: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm [-- Attachment #1: Type: text/plain, Size: 3499 bytes --] Hi David The rollback here is the simplest possible case (put_unused_fd + dma_buf_put), not the complex sockopt scenario you describe. Baineng David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 22:33写道: > On Tue, 14 Jul 2026 21:38:07 +0800 > 寿柏能 <shoubaineng@gmail.com> wrote: > > > Hi David, > > > > Thanks for the feedback. > > > > The concern is not just about the EFAULT return — it's about the race > > window between fd_install() and copy_to_user(). Once fd_install() > > returns, the fd is immediately observable by other threads in the same > > process (via /proc/self/fd, SCM_RIGHTS, etc.), even before > > copy_to_user() has a chance to fail. The triggering condition is a > > deliberate mprotect() flip, not a corrupted heap. > > That is what makes doing the close wrong. > But that is a program aggressively trying to hit the timing window, > not a normal program that has managed to pass an invalid pointer. > The most likely reason for a real program passing an invalid pointer > is a corrupted heap (assuming the stupid coding errors are fixed). > > It is really no different from the sockopt code that receives > SCM_RIGHTS messages. > In that case once you've removed the FILE from the socket (or similar) > you really don't want to have to put it back because the write to the > sockopt buffer or length field fails. > The chance of correctly reverting the kernel state is small - and won't > be tested. > > David > > > > > The fix itself is small and follows the standard kernel idiom: > > get_unused_fd_flags() reserves the fd without publishing it, so the > > window between reservation and install is entirely under kernel control. > > > > Baineng > > > > David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 21:14写道: > > > > > On Tue, 14 Jul 2026 19:46:53 +0800 > > > Baineng Shou <shoubaineng@gmail.com> wrote: > > > > > > > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > > > > caller's fd table via dma_buf_fd() -> fd_install() before > > > > dma_heap_ioctl() copies the result back to userspace. If the > trailing > > > > copy_to_user() fails, userspace never learns the fd number, but the > > > > fd (and the underlying dma-buf reference) are already visible to > > > > other threads in the same process and are leaked for the lifetime of > > > > the process. > > > > > > > > The obvious "close it on the failure path" fix is unsafe: once > > > > fd_install() has run, another thread can already dup() the fd, send > > > > it via SCM_RIGHTS, or close() it and let its number be reused, so a > > > > subsequent close_fd() from the ioctl path can operate on an unrelated > > > > file. This was pointed out by Christian König on v1 [1]. > > > ... > > > > > > My 2c: > > > > > > The other option is just to leave it as a 'problem for user space'. > > > No reasonable program is going to handle the EFAULT return by doing > > > anything other than exiting. > > > Even getting an EFAULT is really an indication that the application > > > is already in a real mess - most likely with a badly corrupted heap. > > > > > > Anything else leaves error recovery code in the kernel that is pretty > > > much never executed and open to a variety of bugs. > > > While the recovery here is probably ok, there are some sockopt calls > > > where it is all more complicated. > > > > > > David > > > > > [-- Attachment #2: Type: text/html, Size: 4579 bytes --] ^ permalink raw reply [flat|nested] 49+ messages in thread
[parent not found: <CAGCp47zxaZsoBKeXz2YdyxbX8QOy_g8dGwnC9gVpJ-Sqng48Qg@mail.gmail.com>]
* Re: [PATCH v3 1/2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds [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:26 ` [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou 0 siblings, 2 replies; 49+ messages in thread From: Sumit Semwal @ 2026-07-28 6:35 UTC (permalink / raw) To: 寿柏能 Cc: David Laight, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm Hello Baineng, On Mon, 27 Jul 2026 at 08:56, 寿柏能 <shoubaineng@gmail.com> wrote: > > Ping. Any chance this can be picked up? Thank you for the patch. While discussing with T J, we realised that adding a selftest for this would also be helpful. Could you please re-submit with a selftest added? > > Baineng Thanks and best regards, Sumit. > > 寿柏能 <shoubaineng@gmail.com> 于2026年7月15日周三 10:04写道: >> >> Hi David >> >> The rollback here is the simplest possible case (put_unused_fd + >> dma_buf_put), not the complex sockopt scenario you describe. >> >> Baineng >> >> David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 22:33写道: >>> >>> On Tue, 14 Jul 2026 21:38:07 +0800 >>> 寿柏能 <shoubaineng@gmail.com> wrote: >>> >>> > Hi David, >>> > >>> > Thanks for the feedback. >>> > >>> > The concern is not just about the EFAULT return — it's about the race >>> > window between fd_install() and copy_to_user(). Once fd_install() >>> > returns, the fd is immediately observable by other threads in the same >>> > process (via /proc/self/fd, SCM_RIGHTS, etc.), even before >>> > copy_to_user() has a chance to fail. The triggering condition is a >>> > deliberate mprotect() flip, not a corrupted heap. >>> >>> That is what makes doing the close wrong. >>> But that is a program aggressively trying to hit the timing window, >>> not a normal program that has managed to pass an invalid pointer. >>> The most likely reason for a real program passing an invalid pointer >>> is a corrupted heap (assuming the stupid coding errors are fixed). >>> >>> It is really no different from the sockopt code that receives >>> SCM_RIGHTS messages. >>> In that case once you've removed the FILE from the socket (or similar) >>> you really don't want to have to put it back because the write to the >>> sockopt buffer or length field fails. >>> The chance of correctly reverting the kernel state is small - and won't >>> be tested. >>> >>> David >>> >>> > >>> > The fix itself is small and follows the standard kernel idiom: >>> > get_unused_fd_flags() reserves the fd without publishing it, so the >>> > window between reservation and install is entirely under kernel control. >>> > >>> > Baineng >>> > >>> > David Laight <david.laight.linux@gmail.com> 于2026年7月14日周二 21:14写道: >>> > >>> > > On Tue, 14 Jul 2026 19:46:53 +0800 >>> > > Baineng Shou <shoubaineng@gmail.com> wrote: >>> > > >>> > > > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the >>> > > > caller's fd table via dma_buf_fd() -> fd_install() before >>> > > > dma_heap_ioctl() copies the result back to userspace. If the trailing >>> > > > copy_to_user() fails, userspace never learns the fd number, but the >>> > > > fd (and the underlying dma-buf reference) are already visible to >>> > > > other threads in the same process and are leaked for the lifetime of >>> > > > the process. >>> > > > >>> > > > The obvious "close it on the failure path" fix is unsafe: once >>> > > > fd_install() has run, another thread can already dup() the fd, send >>> > > > it via SCM_RIGHTS, or close() it and let its number be reused, so a >>> > > > subsequent close_fd() from the ioctl path can operate on an unrelated >>> > > > file. This was pointed out by Christian König on v1 [1]. >>> > > ... >>> > > >>> > > My 2c: >>> > > >>> > > The other option is just to leave it as a 'problem for user space'. >>> > > No reasonable program is going to handle the EFAULT return by doing >>> > > anything other than exiting. >>> > > Even getting an EFAULT is really an indication that the application >>> > > is already in a real mess - most likely with a badly corrupted heap. >>> > > >>> > > Anything else leaves error recovery code in the kernel that is pretty >>> > > much never executed and open to a variety of bugs. >>> > > While the recovery here is probably ok, there are some sockopt calls >>> > > where it is all more complicated. >>> > > >>> > > David >>> > > >>> ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 2026-07-28 6:35 ` Sumit Semwal @ 2026-07-30 6:25 ` 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 1 sibling, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:25 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip between copy_from_user and copy_to_user) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ v4: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 +++ drivers/dma-buf/dma-heap.c | 80 ++++++------ drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 115 +++++++++++++++++- 6 files changed, 182 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v5 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 ` Baineng Shou 2026-07-30 6:25 ` [PATCH v5 2/4] misc: fastrpc: " Baineng Shou 1 sibling, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:25 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. dma_buf_fd_install() publishes the fd and emits the trace_dma_buf_fd tracepoint -- from here on the ioctl cannot fail. A new dma_buf_fd_install() helper is introduced in dma-buf.c to wrap fd_install() together with the DMA_BUF_TRACE() call, preserving the export tracing that dma_buf_fd() provides. dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Reviewed-by: T.J. Mercier <tjmercier@google.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v5 2/4] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 ` Baineng Shou 1 sibling, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:25 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou fastrpc_ioctl_alloc_dmabuf() calls dma_buf_fd() which installs the fd into the caller's fd table before copy_to_user() copies the fd number back to userspace. If copy_to_user() fails, the fd is already visible to other threads in the same process but the ioctl returns -EFAULT. The existing comment in the code even acknowledges the problem: "The usercopy failed, but we can't do much about it, as dma_buf_fd() already called fd_install()..." Now that dma_buf_fd_install() is available (introduced to fix the same issue in dma-heap), apply the same pattern here: reserve the fd with get_unused_fd_flags(), attempt copy_to_user(), and only on success call dma_buf_fd_install() to publish it atomically with the tracepoint. On copy_to_user() failure, put_unused_fd() and dma_buf_put() cleanly unwind without any user-visible side effects. Fixes: 6cffd79504ce ("misc: fastrpc: Add support for dmabuf exporter") Cc: stable@vger.kernel.org Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/misc/fastrpc.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c index f3a49384586d..c5143cd25767 100644 --- 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); + return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 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:26 ` 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 ` (3 more replies) 1 sibling, 4 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:26 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip between copy_from_user and copy_to_user) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ v4: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 +++ drivers/dma-buf/dma-heap.c | 80 ++++++------ drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 115 +++++++++++++++++- 6 files changed, 182 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v5 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 ` Baineng Shou 2026-07-30 6:26 ` [PATCH v5 2/4] misc: fastrpc: " Baineng Shou ` (2 subsequent siblings) 3 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:26 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. dma_buf_fd_install() publishes the fd and emits the trace_dma_buf_fd tracepoint -- from here on the ioctl cannot fail. A new dma_buf_fd_install() helper is introduced in dma-buf.c to wrap fd_install() together with the DMA_BUF_TRACE() call, preserving the export tracing that dma_buf_fd() provides. dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Reviewed-by: T.J. Mercier <tjmercier@google.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v5 2/4] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 ` 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:26 ` [PATCH v5 " Baineng Shou 3 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:26 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou fastrpc_ioctl_alloc_dmabuf() calls dma_buf_fd() which installs the fd into the caller's fd table before copy_to_user() copies the fd number back to userspace. If copy_to_user() fails, the fd is already visible to other threads in the same process but the ioctl returns -EFAULT. The existing comment in the code even acknowledges the problem: "The usercopy failed, but we can't do much about it, as dma_buf_fd() already called fd_install()..." Now that dma_buf_fd_install() is available (introduced to fix the same issue in dma-heap), apply the same pattern here: reserve the fd with get_unused_fd_flags(), attempt copy_to_user(), and only on success call dma_buf_fd_install() to publish it atomically with the tracepoint. On copy_to_user() failure, put_unused_fd() and dma_buf_put() cleanly unwind without any user-visible side effects. Fixes: 6cffd79504ce ("misc: fastrpc: Add support for dmabuf exporter") Cc: stable@vger.kernel.org Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/misc/fastrpc.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c index f3a49384586d..c5143cd25767 100644 --- 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); + return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v5 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 ` Baineng Shou 2026-07-30 6:40 ` sashiko-bot 2026-07-31 17:14 ` T.J. Mercier 2026-07-30 6:26 ` [PATCH v5 " Baineng Shou 3 siblings, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:26 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou drm_gem_prime_handle_to_fd() open-codes fd reservation and install using get_unused_fd_flags() + fd_install() directly. This bypasses the DMA_BUF_TRACE() call that dma_buf_fd() emits, so observability tools relying on the trace_dma_buf_fd tracepoint silently miss all DRM PRIME exports. Replace the bare fd_install() with dma_buf_fd_install(), which wraps fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint coverage. No functional change; the fd lifecycle (get_unused_fd_flags → work → install) is already correct. Note: this patch depends on dma_buf_fd_install() introduced in "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" [1]. [1] https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ Suggested-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/gpu/drm/drm_prime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c index 9b44c78cd77f..fe3436d1235d 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, return PTR_ERR(dmabuf); } - fd_install(fd, dmabuf->file); + dma_buf_fd_install(dmabuf, fd); *prime_fd = fd; return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v5 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 1 sibling, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-30 6:40 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel, media-ci Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] The file descriptor is published to userspace before the `copy_to_user()` operation succeeds, leading to a leaked fd and `dma_buf` reference if the copy fails. -- --- Patch [3]: [PATCH v5 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing --- commit 50a50a53aa7179af6880f9711b00fcaf6105ea33 Author: Baineng Shou <shoubaineng@gmail.com> drm/prime: use dma_buf_fd_install() to preserve export tracing This commit replaces the open-coded fd reservation and installation in drm_gem_prime_handle_to_fd with dma_buf_fd_install. This restores the trace_dma_buf_fd tracepoint coverage that was bypassed by using fd_install directly. Link: https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ > Replace the bare fd_install() with dma_buf_fd_install(), which wraps > fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint > coverage. No functional change; the fd lifecycle (get_unused_fd_flags > → work → install) is already correct. [Severity: High] This is a pre-existing issue, but is the statement about the fd lifecycle being already correct accurate? In drm_gem_prime_handle_to_fd(), the file descriptor is published to the process's fd table before the ioctl data is copied back to user space: drivers/gpu/drm/drm_prime.c:drm_gem_prime_handle_to_fd() { ... dma_buf_fd_install(dmabuf, fd); *prime_fd = fd; return 0; } The actual copy_to_user() happens later in the DRM ioctl wrapper: drivers/gpu/drm/drm_ioctl.c:drm_ioctl() { ... retcode = drm_ioctl_kernel(filp, func, kdata, ioctl->flags); if (copy_to_user((void __user *)arg, kdata, out_size) != 0) retcode = -EFAULT; ... } If a user application allocates a page, maps it as read-only, constructs a valid drm_prime_handle payload within it, and invokes DRM_IOCTL_PRIME_HANDLE_TO_FD, the core drm_ioctl() successfully reads the input. The handler executes, allocates the dmabuf, and publishes the file descriptor. When drm_ioctl() attempts to write the result back via copy_to_user(), it fails due to the read-only mapping, causing the ioctl to return -EFAULT. Since the fd is already published and the userspace application does not know the fd number to close it, does this result in a leak of the file descriptor and dmabuf references? > diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c > index 9b44c78cd77fc..fe3436d1235db 100644 > --- a/drivers/gpu/drm/drm_prime.c > +++ b/drivers/gpu/drm/drm_prime.c > @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, > return PTR_ERR(dmabuf); > } > > - fd_install(fd, dmabuf->file); > + dma_buf_fd_install(dmabuf, fd); > *prime_fd = fd; > return 0; > } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260730062645.233148-1-shoubaineng@gmail.com?part=3 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v5 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 ` (4 more replies) 1 sibling, 5 replies; 49+ messages in thread From: T.J. Mercier @ 2026-07-31 17:14 UTC (permalink / raw) To: Baineng Shou Cc: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Wed, Jul 29, 2026 at 11:27 PM Baineng Shou <shoubaineng@gmail.com> wrote: > > drm_gem_prime_handle_to_fd() open-codes fd reservation and install > using get_unused_fd_flags() + fd_install() directly. This bypasses > the DMA_BUF_TRACE() call that dma_buf_fd() emits, so observability > tools relying on the trace_dma_buf_fd tracepoint silently miss all > DRM PRIME exports. > > Replace the bare fd_install() with dma_buf_fd_install(), which wraps > fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint > coverage. No functional change; the fd lifecycle (get_unused_fd_flags > → work → install) is already correct. > > Note: this patch depends on dma_buf_fd_install() introduced in > "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" > [1]. > > [1] https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ > > Suggested-by: Christian König <christian.koenig@amd.com> > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> Reviewed-by: T.J. Mercier <tjmercier@google.com> > --- > drivers/gpu/drm/drm_prime.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c > index 9b44c78cd77f..fe3436d1235d 100644 > --- a/drivers/gpu/drm/drm_prime.c > +++ b/drivers/gpu/drm/drm_prime.c > @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, > return PTR_ERR(dmabuf); > } > > - fd_install(fd, dmabuf->file); > + dma_buf_fd_install(dmabuf, fd); > *prime_fd = fd; > return 0; > } > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 2026-07-31 17:14 ` T.J. Mercier @ 2026-08-07 10:09 ` Baineng Shou 2026-08-07 10:10 ` Baineng Shou ` (3 subsequent siblings) 4 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:09 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip before the ioctl) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v6: - Rework the selftest (patch 4) per review: extract a count_open_fds() helper, fix the copy_from_user() comment, fail (not skip) when the ioctl does not return -1, drop the bogus mprotect-race mention, and reword the result message. Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 ++++ drivers/dma-buf/dma-heap.c | 80 ++++++------- drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 6 files changed, 180 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 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 ` (2 subsequent siblings) 4 siblings, 1 reply; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:10 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip before the ioctl) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v6: - Rework the selftest (patch 4) per review: extract a count_open_fds() helper, fix the copy_from_user() comment, fail (not skip) when the ioctl does not return -1, drop the bogus mprotect-race mention, and reword the result message. Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 ++++ drivers/dma-buf/dma-heap.c | 80 ++++++------- drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 6 files changed, 180 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-08-07 10:10 ` Baineng Shou @ 2026-08-07 10:10 ` Baineng Shou 0 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:10 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. dma_buf_fd_install() publishes the fd and emits the trace_dma_buf_fd tracepoint -- from here on the ioctl cannot fail. A new dma_buf_fd_install() helper is introduced in dma-buf.c to wrap fd_install() together with the DMA_BUF_TRACE() call, preserving the export tracing that dma_buf_fd() provides. dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Reviewed-by: T.J. Mercier <tjmercier@google.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 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 ` Baineng Shou 2026-08-07 10:11 ` Baineng Shou 2026-08-07 10:11 ` Baineng Shou 4 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:10 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip before the ioctl) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v6: - Rework the selftest (patch 4) per review: extract a count_open_fds() helper, fix the copy_from_user() comment, fail (not skip) when the ioctl does not return -1, drop the bogus mprotect-race mention, and reword the result message. Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 ++++ drivers/dma-buf/dma-heap.c | 80 ++++++------- drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 6 files changed, 180 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 2026-07-31 17:14 ` T.J. Mercier ` (2 preceding siblings ...) 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 4 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip before the ioctl) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v6: - Rework the selftest (patch 4) per review: extract a count_open_fds() helper, fix the copy_from_user() comment, fail (not skip) when the ioctl does not return -1, drop the bogus mprotect-race mention, and reword the result message. Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 ++++ drivers/dma-buf/dma-heap.c | 80 ++++++------- drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 6 files changed, 180 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 2026-07-31 17:14 ` T.J. Mercier ` (3 preceding siblings ...) 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 ` (3 more replies) 4 siblings, 4 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Several drivers call dma_buf_fd() — which internally calls fd_install() — before copy_to_user() returns the fd number to userspace. If copy_to_user() fails, the fd is already published in the caller's fd table but the ioctl returns an error, so userspace never learns the fd number. Worse, the window between fd_install() and copy_to_user() allows other threads to observe and manipulate the fd (dup, close, SCM_RIGHTS), making any "close it on the failure path" fix unsafe. The fix is to split the allocation into three steps: reserve an fd with get_unused_fd_flags() (not yet visible to other threads), do copy_to_user(), and only then publish the fd with fd_install() via the new dma_buf_fd_install() helper. On copy_to_user() failure, put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible side effects. Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping fd_install() together with the DMA_BUF_TRACE call to preserve export tracing) and applies the fix to dma-heap. Patch 2 applies the same fix to fastrpc, which even had a comment acknowledging the problem could not be fixed before. Patch 3 replaces the bare fd_install() in drm_gem_prime_handle_to_fd() with dma_buf_fd_install() to restore tracepoint coverage for DRM PRIME exports (suggested by Christian König). Patch 4 adds a selftest to tools/testing/selftests/dmabuf-heaps/ that reproduces the fd-leak scenario (mprotect flip before the ioctl) and verifies the fd count is unchanged after a failed ioctl (suggested by Sumit Semwal). v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ v3: https://lore.kernel.org/dri-devel/20260714114654.3885457-1-shoubaineng@gmail.com/ Changes in v6: - Rework the selftest (patch 4) per review: extract a count_open_fds() helper, fix the copy_from_user() comment, fail (not skip) when the ioctl does not return -1, drop the bogus mprotect-race mention, and reword the result message. Changes in v5: - Add selftest (patch 4) reproducing the fd-leak scenario (Sumit Semwal) Changes in v4: - Add patch 3: drm/prime: use dma_buf_fd_install() (Christian König) - Add Acked-by: Christian König to patches 1 and 2 Changes in v3: - Split into two patches (dma-heap + fastrpc separately) - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint - Add fastrpc fix using the new helper (T.J. Mercier) Baineng Shou (4): dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds misc: fastrpc: don't publish fd before copy_to_user() succeeds drm/prime: use dma_buf_fd_install() to preserve export tracing selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test drivers/dma-buf/dma-buf.c | 20 ++++ drivers/dma-buf/dma-heap.c | 80 ++++++------- drivers/gpu/drm/drm_prime.c | 2 +- drivers/misc/fastrpc.c | 16 +-- include/linux/dma-buf.h | 1 + .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 6 files changed, 180 insertions(+), 52 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 1/4] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-08-07 10:11 ` Baineng Shou @ 2026-08-07 10:11 ` Baineng Shou 2026-08-07 10:11 ` [PATCH v6 2/4] misc: fastrpc: " Baineng Shou ` (2 subsequent siblings) 3 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. dma_buf_fd_install() publishes the fd and emits the trace_dma_buf_fd tracepoint -- from here on the ioctl cannot fail. A new dma_buf_fd_install() helper is introduced in dma-buf.c to wrap fd_install() together with the DMA_BUF_TRACE() call, preserving the export tracing that dma_buf_fd() provides. dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Reviewed-by: T.J. Mercier <tjmercier@google.com> Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v6 2/4] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 ` 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:11 ` [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test Baineng Shou 3 siblings, 0 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou fastrpc_ioctl_alloc_dmabuf() calls dma_buf_fd() which installs the fd into the caller's fd table before copy_to_user() copies the fd number back to userspace. If copy_to_user() fails, the fd is already visible to other threads in the same process but the ioctl returns -EFAULT. The existing comment in the code even acknowledges the problem: "The usercopy failed, but we can't do much about it, as dma_buf_fd() already called fd_install()..." Now that dma_buf_fd_install() is available (introduced to fix the same issue in dma-heap), apply the same pattern here: reserve the fd with get_unused_fd_flags(), attempt copy_to_user(), and only on success call dma_buf_fd_install() to publish it atomically with the tracepoint. On copy_to_user() failure, put_unused_fd() and dma_buf_put() cleanly unwind without any user-visible side effects. Fixes: 6cffd79504ce ("misc: fastrpc: Add support for dmabuf exporter") Cc: stable@vger.kernel.org Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/misc/fastrpc.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c index f3a49384586d..c5143cd25767 100644 --- 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); + return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* [PATCH v6 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 ` 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 3 siblings, 1 reply; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou drm_gem_prime_handle_to_fd() open-codes fd reservation and install using get_unused_fd_flags() + fd_install() directly. This bypasses the DMA_BUF_TRACE() call that dma_buf_fd() emits, so observability tools relying on the trace_dma_buf_fd tracepoint silently miss all DRM PRIME exports. Replace the bare fd_install() with dma_buf_fd_install(), which wraps fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint coverage. No functional change; the fd lifecycle (get_unused_fd_flags → work → install) is already correct. Note: this patch depends on dma_buf_fd_install() introduced in "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" [1]. [1] https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ Suggested-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/gpu/drm/drm_prime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c index 9b44c78cd77f..fe3436d1235d 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, return PTR_ERR(dmabuf); } - fd_install(fd, dmabuf->file); + dma_buf_fd_install(dmabuf, fd); *prime_fd = fd; return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v6 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 0 siblings, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-08-07 10:22 UTC (permalink / raw) To: Baineng Shou; +Cc: media-ci, dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [Medium] Meaningful mismatch between the commit message's claim and the actual code behavior regarding the file descriptor lifecycle. -- --- Patch [3]: [PATCH v6 3/4] drm/prime: use dma_buf_fd_install() to preserve export tracing --- commit 33826692d4a41b387d790330b8cd37a2f20fa524 Author: Baineng Shou <shoubaineng@gmail.com> drm/prime: use dma_buf_fd_install() to preserve export tracing This commit replaces the open-coded fd reservation and installation in drm_gem_prime_handle_to_fd() with dma_buf_fd_install(). The change ensures that the DMA_BUF_TRACE() call is correctly emitted, restoring tracepoint coverage for DRM PRIME exports. Link: https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ > Replace the bare fd_install() with dma_buf_fd_install(), which wraps > fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint > coverage. No functional change; the fd lifecycle (get_unused_fd_flags > → work → install) is already correct. [Severity: Medium] Is the statement about the fd lifecycle being already correct accurate? This isn't a bug introduced by this patch, but rather a pre-existing issue. Looking at drm_gem_prime_handle_to_fd(), the fd is irrevocably published via dma_buf_fd_install() before returning: drivers/gpu/drm/drm_prime.c:drm_gem_prime_handle_to_fd() { ... dma_buf_fd_install(dmabuf, fd); *prime_fd = fd; return 0; } After returning, the generic ioctl dispatcher performs a fallible copy_to_user(): drivers/gpu/drm/drm_ioctl.c:drm_ioctl() { ... if (copy_to_user((void __user *)arg, kdata, out_size) != 0) retcode = -EFAULT; ... } If this copy_to_user() fails, does the fd remain permanently published, causing a leak of the fd and dmabuf reference? If so, the code might actually need the same delayed publication fix that was applied to dma-heap, making the commit message's claim incorrect. > diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c > index 9b44c78cd77fc..fe3436d1235db 100644 > --- a/drivers/gpu/drm/drm_prime.c > +++ b/drivers/gpu/drm/drm_prime.c > @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, > return PTR_ERR(dmabuf); > } > > - fd_install(fd, dmabuf->file); > + dma_buf_fd_install(dmabuf, fd); > *prime_fd = fd; > return 0; > } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260807101140.1357218-1-shoubaineng@gmail.com?part=3 ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 2026-08-07 10:11 ` Baineng Shou ` (2 preceding siblings ...) 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:11 ` Baineng Shou 2026-08-07 10:20 ` sashiko-bot 2026-08-07 21:49 ` T.J. Mercier 3 siblings, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-08-07 10:11 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Add a test case that verifies no file descriptor is leaked when DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails to deliver the fd number back to userspace. The failure is triggered by placing the ioctl argument in a private anonymous page and flipping it to PROT_READ (via mprotect) between the kernel's copy_from_user() and copy_to_user() calls. With the buggy kernel the ioctl returns -EFAULT but leaves an extra open fd in the process's fd table; with the fixed kernel the fd count is unchanged. This serves as a regression test for: "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" Suggested-by: Sumit Semwal <sumit.semwal@linaro.org> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- .../selftests/dmabuf-heaps/dmabuf-heap.c | 113 +++++++++++++++++- 1 file changed, 112 insertions(+), 1 deletion(-) diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c index fc9694fc4e89..1d49df671919 100644 --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c @@ -390,6 +390,116 @@ static void test_alloc_errors(char *heap_name) close(heap_fd); } +/* + * count_open_fds - return the number of open file descriptors. + * + * The fd opened by opendir() itself is counted, but since it is opened + * and closed within each call, it cancels out when comparing two counts. + * Returns -1 on error. + */ +static int count_open_fds(void) +{ + DIR *d = opendir("/proc/self/fd"); + struct dirent *de; + int count = 0; + + if (!d) + return -1; + + while ((de = readdir(d))) + if (de->d_name[0] != '.') + count++; + closedir(d); + return count; +} + +/* + * test_alloc_no_fd_leak_on_efault - verify no fd is leaked when + * copy_to_user() fails during DMA_HEAP_IOCTL_ALLOC. + * + * The bug: dma_buf_fd() called fd_install() before copy_to_user(). + * If copy_to_user() then failed (e.g. via mprotect), the fd was + * silently installed in the fd table but never returned to userspace. + * + * The fix: reserve the fd with get_unused_fd_flags() first, attempt + * copy_to_user(), and only call fd_install() on success. + * + * We trigger the failure by placing the ioctl argument in a private + * anonymous page and flipping it to PROT_READ before the ioctl. + * Inside the kernel, copy_from_user() reads from the page (reads are + * allowed under PROT_READ, so it succeeds), but copy_to_user() that + * writes the fd number back faults, returning -EFAULT. We then + * count open file descriptors before and after; with the bug an extra + * fd is left in the table. + */ +static void test_alloc_no_fd_leak_on_efault(char *heap_name) +{ + int heap_fd = -1; + int fd_before, fd_after; + int ret; + long page_size; + struct dma_heap_allocation_data *req; + + ksft_print_msg("Testing fd leak when copy_to_user() fails:\n"); + + heap_fd = dmabuf_heap_open(heap_name); + + page_size = sysconf(_SC_PAGESIZE); + + /* + * Place the ioctl argument in its own private anonymous page so + * we can flip its protection independently. + */ + req = mmap(NULL, page_size, PROT_READ | PROT_WRITE, + MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); + if (req == MAP_FAILED) { + ksft_test_result_fail("mmap failed: %s\n", strerror(errno)); + goto out; + } + + memset(req, 0, sizeof(*req)); + req->len = page_size; + req->fd_flags = O_RDWR | O_CLOEXEC; + + fd_before = count_open_fds(); + if (fd_before < 0) { + ksft_test_result_fail("count_open_fds: %s\n", strerror(errno)); + munmap(req, page_size); + goto out; + } + + /* + * Make the page read-only so copy_to_user() will fault. The + * ioctl must fail with -1; if it returns success the test setup + * is broken (mprotect is synchronous, so there is no race). + */ + mprotect(req, page_size, PROT_READ); + + ret = ioctl(heap_fd, DMA_HEAP_IOCTL_ALLOC, req); + + /* Re-allow writes so munmap can clean up */ + mprotect(req, page_size, PROT_READ | PROT_WRITE); + munmap(req, page_size); + + if (ret != -1) { + ksft_test_result_fail("ioctl returned %d, expected -1 EFAULT\n", + ret); + goto out; + } + + fd_after = count_open_fds(); + if (fd_after < 0) { + ksft_test_result_fail("count_open_fds: %s\n", strerror(errno)); + goto out; + } + + ksft_test_result(fd_before == fd_after, + "fd leak on EFAULT: before=%d after=%d\n", + fd_before, fd_after); +out: + close(heap_fd); +} + static int numer_of_heaps(void) { DIR *d = opendir(DEVPATH); @@ -420,7 +530,7 @@ int main(void) return KSFT_SKIP; } - ksft_set_plan(11 * numer_of_heaps()); + ksft_set_plan(12 * numer_of_heaps()); while ((dir = readdir(d))) { if (!strncmp(dir->d_name, ".", 2)) @@ -435,6 +545,7 @@ int main(void) test_alloc_zeroed(dir->d_name, ONE_MEG); test_alloc_compat(dir->d_name); test_alloc_errors(dir->d_name); + test_alloc_no_fd_leak_on_efault(dir->d_name); } closedir(d); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 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 1 sibling, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-08-07 10:20 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel, media-ci Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider: - [Medium] The regression test silently reports a false pass if the ioctl fails for a reason other than the expected -EFAULT. - [Low] A file descriptor is leaked on the test's failure path if the ioctl unexpectedly succeeds. -- --- Patch [4]: [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test --- commit 2ee174de4cce870677ff17aa1714b40304934392 Author: Baineng Shou <shoubaineng@gmail.com> selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test This commit adds a test case that verifies no file descriptor is leaked when DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails to deliver the fd number back to userspace. It triggers the failure by placing the ioctl argument in a private anonymous page and changing it to PROT_READ between the copy_from_user() and copy_to_user() calls. > diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > index fc9694fc4e89e..1d49df6719198 100644 > --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c [ ... ] > + ret = ioctl(heap_fd, DMA_HEAP_IOCTL_ALLOC, req); > + > + /* Re-allow writes so munmap can clean up */ > + mprotect(req, page_size, PROT_READ | PROT_WRITE); > + munmap(req, page_size); > + [Severity: Low] Does this code leak the newly allocated file descriptor if the ioctl unexpectedly succeeds? Since the test unmaps the req structure immediately after the ioctl, the returned file descriptor stored in req->fd is lost. If the ioctl returned 0, the fd cannot be read and closed before the test jumps to the error path. > + if (ret != -1) { [Severity: Medium] Will this silently report a false pass if the ioctl fails for a reason other than the expected EFAULT? The test checks that the return value is -1, but doesn't verify that errno == EFAULT. If the ioctl fails early (for example, returning -EINVAL or -ENOMEM) before reaching the copy_to_user() step, the fd count remains unchanged and the test passes, even though the EFAULT path was never tested. > + ksft_test_result_fail("ioctl returned %d, expected -1 EFAULT\n", > + ret); > + goto out; > + } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260807101140.1357218-1-shoubaineng@gmail.com?part=4 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v6 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 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 1 sibling, 0 replies; 49+ messages in thread From: T.J. Mercier @ 2026-08-07 21:49 UTC (permalink / raw) To: Baineng Shou Cc: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Fri, Aug 7, 2026 at 3:12 AM Baineng Shou <shoubaineng@gmail.com> wrote: > > Add a test case that verifies no file descriptor is leaked when > DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails > to deliver the fd number back to userspace. > > The failure is triggered by placing the ioctl argument in a private > anonymous page and flipping it to PROT_READ (via mprotect) between > the kernel's copy_from_user() and copy_to_user() calls. With the > buggy kernel the ioctl returns -EFAULT but leaves an extra open fd > in the process's fd table; with the fixed kernel the fd count is > unchanged. > > This serves as a regression test for: > "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" > > Suggested-by: Sumit Semwal <sumit.semwal@linaro.org> > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> Reviewed-by: T.J. Mercier <tjmercier@google.com> ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v5 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 2026-07-30 6:26 ` [PATCH v5 0/4] dma-buf: fix fd leak when copy_to_user() fails after fd_install() Baineng Shou ` (2 preceding siblings ...) 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:26 ` Baineng Shou 2026-07-30 6:38 ` sashiko-bot 2026-07-31 17:09 ` T.J. Mercier 3 siblings, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-30 6:26 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou Add a test case that verifies no file descriptor is leaked when DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails to deliver the fd number back to userspace. The failure is triggered by placing the ioctl argument in a private anonymous page and flipping it to PROT_READ (via mprotect) between the kernel's copy_from_user() and copy_to_user() calls. With the buggy kernel the ioctl returns -EFAULT but leaves an extra open fd in the process's fd table; with the fixed kernel the fd count is unchanged. This serves as a regression test for: "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" Suggested-by: Sumit Semwal <sumit.semwal@linaro.org> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- .../selftests/dmabuf-heaps/dmabuf-heap.c | 115 +++++++++++++++++- 1 file changed, 114 insertions(+), 1 deletion(-) diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c index fc9694fc4e89..bd58e5b06c8b 100644 --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c @@ -390,6 +390,118 @@ static void test_alloc_errors(char *heap_name) close(heap_fd); } +/* + * test_alloc_no_fd_leak_on_efault - verify no fd is leaked when + * copy_to_user() fails during DMA_HEAP_IOCTL_ALLOC. + * + * The bug: dma_buf_fd() called fd_install() before copy_to_user(). + * If copy_to_user() then failed (e.g. via mprotect), the fd was + * silently installed in the fd table but never returned to userspace. + * + * The fix: reserve the fd with get_unused_fd_flags() first, attempt + * copy_to_user(), and only call fd_install() on success. + * + * We trigger the failure by placing the ioctl argument in a page, + * flipping it to PROT_READ between copy_from_user and copy_to_user, + * and counting open file descriptors before and after. + */ +static void test_alloc_no_fd_leak_on_efault(char *heap_name) +{ + int heap_fd = -1; + int fd_before, fd_after; + int ret; + long page_size; + struct dma_heap_allocation_data *req; + + ksft_print_msg("Testing no fd leak when copy_to_user() fails:\n"); + + heap_fd = dmabuf_heap_open(heap_name); + + page_size = sysconf(_SC_PAGESIZE); + + /* + * Place the ioctl argument in its own private anonymous page so + * we can flip its protection independently. + */ + req = mmap(NULL, page_size, PROT_READ | PROT_WRITE, + MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); + if (req == MAP_FAILED) { + ksft_test_result_fail("mmap failed: %s\n", strerror(errno)); + goto out; + } + + memset(req, 0, sizeof(*req)); + req->len = page_size; + req->fd_flags = O_RDWR | O_CLOEXEC; + + /* Count open fds before the ioctl */ + fd_before = 0; + { + DIR *d = opendir("/proc/self/fd"); + struct dirent *de; + + if (!d) { + ksft_test_result_fail("opendir /proc/self/fd: %s\n", + strerror(errno)); + munmap(req, page_size); + goto out; + } + while ((de = readdir(d))) + if (de->d_name[0] != '.') + fd_before++; + closedir(d); + /* subtract the fd opened by opendir itself */ + } + + /* + * Make the page read-only: copy_from_user() in the kernel will + * still succeed (it already ran), but copy_to_user() that writes + * the fd number back will fault. + */ + mprotect(req, page_size, PROT_READ); + + ret = ioctl(heap_fd, DMA_HEAP_IOCTL_ALLOC, req); + + /* Re-allow writes so munmap can clean up */ + mprotect(req, page_size, PROT_READ | PROT_WRITE); + munmap(req, page_size); + + if (ret != -1 || errno != EFAULT) { + /* + * If the ioctl didn't fail with EFAULT, either the kernel + * handled it differently or mprotect raced. Skip rather + * than giving a false pass/fail. + */ + ksft_test_result_skip( + "ioctl did not return EFAULT (ret=%d errno=%d), skipping\n", + ret, errno); + goto out; + } + + /* Count open fds after the failed ioctl */ + fd_after = 0; + { + DIR *d = opendir("/proc/self/fd"); + struct dirent *de; + + if (!d) { + ksft_test_result_fail("opendir /proc/self/fd: %s\n", + strerror(errno)); + goto out; + } + while ((de = readdir(d))) + if (de->d_name[0] != '.') + fd_after++; + closedir(d); + } + + ksft_test_result(fd_before == fd_after, + "no fd leak on EFAULT: before=%d after=%d\n", + fd_before, fd_after); +out: + close(heap_fd); +} + static int numer_of_heaps(void) { DIR *d = opendir(DEVPATH); @@ -420,7 +532,7 @@ int main(void) return KSFT_SKIP; } - ksft_set_plan(11 * numer_of_heaps()); + ksft_set_plan(12 * numer_of_heaps()); while ((dir = readdir(d))) { if (!strncmp(dir->d_name, ".", 2)) @@ -435,6 +547,7 @@ int main(void) test_alloc_zeroed(dir->d_name, ONE_MEG); test_alloc_compat(dir->d_name); test_alloc_errors(dir->d_name); + test_alloc_no_fd_leak_on_efault(dir->d_name); } closedir(d); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v5 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 2026-07-30 6:26 ` [PATCH v5 " Baineng Shou @ 2026-07-30 6:38 ` sashiko-bot 2026-07-31 17:09 ` T.J. Mercier 1 sibling, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-30 6:38 UTC (permalink / raw) To: Baineng Shou; +Cc: media-ci, dri-devel Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider: - [Medium] Missing `errno` preservation leads to potential clobbering before evaluation. - [Medium] Unconditional unmapping of `req` causes a file descriptor leak if `ioctl` unexpectedly succeeds. -- --- Patch [4]: [PATCH v5 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test --- commit 43e605bb1fee2426e027813c0311f1910f7ea15e Author: Baineng Shou <shoubaineng@gmail.com> selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test Add a test case that verifies no file descriptor is leaked when DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails to deliver the fd number back to userspace. > diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > index fc9694fc4e89e..bd58e5b06c8b6 100644 > --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c [ ... ] > +static void test_alloc_no_fd_leak_on_efault(char *heap_name) > +{ [ ... ] > + /* > + * Make the page read-only: copy_from_user() in the kernel will > + * still succeed (it already ran), but copy_to_user() that writes > + * the fd number back will fault. > + */ > + mprotect(req, page_size, PROT_READ); > + > + ret = ioctl(heap_fd, DMA_HEAP_IOCTL_ALLOC, req); > + > + /* Re-allow writes so munmap can clean up */ > + mprotect(req, page_size, PROT_READ | PROT_WRITE); > + munmap(req, page_size); > + > + if (ret != -1 || errno != EFAULT) { [Severity: Medium] Will this evaluate the correct errno from the ioctl call? The errno variable is checked after executing mprotect and munmap. If either of these functions modify errno (for example, if they fail), the test will evaluate the wrong errno and incorrectly skip with a misleading message instead of reporting a failure or success properly. [Severity: Medium] Also, could this leak the newly allocated file descriptor in the test process if the ioctl call unexpectedly succeeds? If the ioctl call successfully allocates a file descriptor (for instance, if the initial mprotect fails to make the page read-only or due to a kernel bug), the new file descriptor is written to req->fd. Since the test unconditionally calls munmap(req) immediately after, it destroys the only reference to the allocated file descriptor. The test then detects unexpected success, skips, and leaks the file descriptor in the test process. > + /* > + * If the ioctl didn't fail with EFAULT, either the kernel > + * handled it differently or mprotect raced. Skip rather > + * than giving a false pass/fail. > + */ > + ksft_test_result_skip( > + "ioctl did not return EFAULT (ret=%d errno=%d), skipping\n", > + ret, errno); > + goto out; > + } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260730062645.233148-1-shoubaineng@gmail.com?part=4 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v5 4/4] selftests: dmabuf-heaps: add fd-leak-on-EFAULT regression test 2026-07-30 6:26 ` [PATCH v5 " Baineng Shou 2026-07-30 6:38 ` sashiko-bot @ 2026-07-31 17:09 ` T.J. Mercier 1 sibling, 0 replies; 49+ messages in thread From: T.J. Mercier @ 2026-07-31 17:09 UTC (permalink / raw) To: Baineng Shou Cc: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, David Airlie, Simona Vetter, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Wed, Jul 29, 2026 at 11:27 PM Baineng Shou <shoubaineng@gmail.com> wrote: > > Add a test case that verifies no file descriptor is leaked when > DMA_HEAP_IOCTL_ALLOC succeeds internally but copy_to_user() fails > to deliver the fd number back to userspace. > > The failure is triggered by placing the ioctl argument in a private > anonymous page and flipping it to PROT_READ (via mprotect) between > the kernel's copy_from_user() and copy_to_user() calls. With the > buggy kernel the ioctl returns -EFAULT but leaves an extra open fd > in the process's fd table; with the fixed kernel the fd count is > unchanged. > > This serves as a regression test for: > "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" > > Suggested-by: Sumit Semwal <sumit.semwal@linaro.org> > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> > --- > .../selftests/dmabuf-heaps/dmabuf-heap.c | 115 +++++++++++++++++- > 1 file changed, 114 insertions(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > index fc9694fc4e89..bd58e5b06c8b 100644 > --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c > @@ -390,6 +390,118 @@ static void test_alloc_errors(char *heap_name) > close(heap_fd); > } > > +/* > + * test_alloc_no_fd_leak_on_efault - verify no fd is leaked when > + * copy_to_user() fails during DMA_HEAP_IOCTL_ALLOC. > + * > + * The bug: dma_buf_fd() called fd_install() before copy_to_user(). > + * If copy_to_user() then failed (e.g. via mprotect), the fd was > + * silently installed in the fd table but never returned to userspace. > + * > + * The fix: reserve the fd with get_unused_fd_flags() first, attempt > + * copy_to_user(), and only call fd_install() on success. > + * > + * We trigger the failure by placing the ioctl argument in a page, > + * flipping it to PROT_READ between copy_from_user and copy_to_user, > + * and counting open file descriptors before and after. > + */ > +static void test_alloc_no_fd_leak_on_efault(char *heap_name) > +{ > + int heap_fd = -1; > + int fd_before, fd_after; > + int ret; > + long page_size; > + struct dma_heap_allocation_data *req; > + > + ksft_print_msg("Testing no fd leak when copy_to_user() fails:\n"); > + > + heap_fd = dmabuf_heap_open(heap_name); > + > + page_size = sysconf(_SC_PAGESIZE); > + > + /* > + * Place the ioctl argument in its own private anonymous page so > + * we can flip its protection independently. > + */ > + req = mmap(NULL, page_size, PROT_READ | PROT_WRITE, > + MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); > + if (req == MAP_FAILED) { > + ksft_test_result_fail("mmap failed: %s\n", strerror(errno)); > + goto out; > + } > + > + memset(req, 0, sizeof(*req)); > + req->len = page_size; > + req->fd_flags = O_RDWR | O_CLOEXEC; > + > + /* Count open fds before the ioctl */ > + fd_before = 0; > + { > + DIR *d = opendir("/proc/self/fd"); > + struct dirent *de; > + > + if (!d) { > + ksft_test_result_fail("opendir /proc/self/fd: %s\n", > + strerror(errno)); > + munmap(req, page_size); > + goto out; > + } > + while ((de = readdir(d))) > + if (de->d_name[0] != '.') > + fd_before++; > + closedir(d); > + /* subtract the fd opened by opendir itself */ But no actual subtraction? > + } > + > + /* > + * Make the page read-only: copy_from_user() in the kernel will > + * still succeed (it already ran), Huh? copy_from_user hasn't run yet. That happens inside the ioctl(). > but copy_to_user() that writes > + * the fd number back will fault. > + */ > + mprotect(req, page_size, PROT_READ); > + > + ret = ioctl(heap_fd, DMA_HEAP_IOCTL_ALLOC, req); > + > + /* Re-allow writes so munmap can clean up */ > + mprotect(req, page_size, PROT_READ | PROT_WRITE); > + munmap(req, page_size); > + > + if (ret != -1 || errno != EFAULT) { This looks like you meant &&, but I think we should just fail if ret != -1. Either the mprotect is broken, or dma-heap didn't actually try to copy_to_user. > + /* > + * If the ioctl didn't fail with EFAULT, either the kernel > + * handled it differently or mprotect raced. mprotect is synchronous, how could it race with anything here? > Skip rather > + * than giving a false pass/fail. > + */ > + ksft_test_result_skip( > + "ioctl did not return EFAULT (ret=%d errno=%d), skipping\n", > + ret, errno); > + goto out; > + } > + > + /* Count open fds after the failed ioctl */ > + fd_after = 0; > + { > + DIR *d = opendir("/proc/self/fd"); > + struct dirent *de; > + > + if (!d) { > + ksft_test_result_fail("opendir /proc/self/fd: %s\n", > + strerror(errno)); > + goto out; > + } > + while ((de = readdir(d))) > + if (de->d_name[0] != '.') > + fd_after++; > + closedir(d); > + } > + > + ksft_test_result(fd_before == fd_after, > + "no fd leak on EFAULT: before=%d after=%d\n", This is for the failure case, so I don't think the "no" should be in the string. > + fd_before, fd_after); > +out: > + close(heap_fd); > +} > + > static int numer_of_heaps(void) > { > DIR *d = opendir(DEVPATH); > @@ -420,7 +532,7 @@ int main(void) > return KSFT_SKIP; > } > > - ksft_set_plan(11 * numer_of_heaps()); > + ksft_set_plan(12 * numer_of_heaps()); > > while ((dir = readdir(d))) { > if (!strncmp(dir->d_name, ".", 2)) > @@ -435,6 +547,7 @@ int main(void) > test_alloc_zeroed(dir->d_name, ONE_MEG); > test_alloc_compat(dir->d_name); > test_alloc_errors(dir->d_name); > + test_alloc_no_fd_leak_on_efault(dir->d_name); > } > closedir(d); > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 11:46 ` 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 2 siblings, 2 replies; 49+ messages in thread From: Baineng Shou @ 2026-07-14 11:46 UTC (permalink / raw) To: Sumit Semwal, Christian König, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm, Baineng Shou fastrpc_ioctl_alloc_dmabuf() calls dma_buf_fd() which installs the fd into the caller's fd table before copy_to_user() copies the fd number back to userspace. If copy_to_user() fails, the fd is already visible to other threads in the same process but the ioctl returns -EFAULT. The existing comment in the code even acknowledges the problem: "The usercopy failed, but we can't do much about it, as dma_buf_fd() already called fd_install()..." Now that dma_buf_fd_install() is available (introduced to fix the same issue in dma-heap), apply the same pattern here: reserve the fd with get_unused_fd_flags(), attempt copy_to_user(), and only on success call dma_buf_fd_install() to publish it atomically with the tracepoint. On copy_to_user() failure, put_unused_fd() and dma_buf_put() cleanly unwind without any user-visible side effects. Fixes: 6cffd79504ce ("misc: fastrpc: Add support for dmabuf exporter") Cc: stable@vger.kernel.org Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/misc/fastrpc.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c index f3a49384586d..c5143cd25767 100644 --- 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); + return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 1 sibling, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-14 12:08 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider: Pre-existing issues: - [Critical] The `fastrpc_user` context can be used-after-free if an exported dmabuf outlives the fastrpc device file descriptor. - [Critical] Concurrent calls to `FASTRPC_IOCTL_MUNMAP` lead to list corruption, Use-After-Free, and Double-Free of a `fastrpc_buf`. - [Critical] Concurrent calls to `FASTRPC_IOCTL_MEM_UNMAP` cause a Use-After-Free and Double-Free of a `fastrpc_map`. -- --- Patch [2]: [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds --- commit 385ee7a3198521d1682f7120112f746dede7b20d Author: Baineng Shou <shoubaineng@gmail.com> misc: fastrpc: don't publish fd before copy_to_user() succeeds This commit fixes an issue where the DMA buffer file descriptor is published to userspace before a successful usercopy. It reserves an unused fd, performs the copy, and only installs the fd if the copy succeeds. On failure, it cleanly unwinds the fd and buffer allocations. > diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c > index f3a49384586d1..c5143cd257674 100644 > --- 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); [Severity: Critical] This is a pre-existing issue, but does fastrpc_buf_alloc() fail to take a reference on the fastrpc_user context? Looking just above this diff in fastrpc_dmabuf_alloc(): err = fastrpc_buf_alloc(fl, fl->sctx->dev, bp.size, &buf); This allocates the buffer and assigns the user context to buf->fl, but does not increment the user context's reference count. If the fastrpc device file descriptor is closed, fastrpc_device_release() drops the reference to fl and frees it, meaning the exported dmabuf can outlive it. If the dmabuf is closed later, fastrpc_release() calls fastrpc_buf_free(), which dereferences the freed context here: fastrpc_ipa_to_dma_addr(buf->fl->cctx, buf->dma_addr) Can this lead to a use-after-free of the fastrpc_user context? [Severity: Critical] This is also a pre-existing issue, but does concurrent execution of FASTRPC_IOCTL_MUNMAP lead to list corruption or double-frees? In fastrpc_req_munmap(), the buf pointer is located under the lock: buf = iter; break; The lock is then dropped without taking a reference count on the buffer. The raw pointer is passed to fastrpc_req_munmap_impl(). If two threads invoke the ioctl concurrently with the same arguments, could they both find the same buf and race? They would both concurrently execute this in fastrpc_req_munmap_impl(): list_del(&buf->node); spin_unlock(&fl->lock); fastrpc_buf_free(buf); Does this result in list_del() and fastrpc_buf_free() executing twice on the same pointer? [Severity: Critical] This is another pre-existing issue, but does fastrpc_req_mem_unmap_impl() have a similar race condition? The map is extracted from the list under the lock, and then the lock is dropped without incrementing the map's reference count: map = iter; break; } } spin_unlock(&fl->lock); Multiple threads could extract the same map pointer. If both threads successfully proceed, they will both call: fastrpc_map_put(map); Since fastrpc_map_get() was never called during the lookup, does the first thread drop the reference count to 0 and free the map prematurely? This could cause the second thread to trigger a use-after-free on failure paths or a double-free when calling fastrpc_map_put() again. -- Sashiko AI review · https://sashiko.dev/#/patchset/20260714114654.3885457-1-shoubaineng@gmail.com?part=2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds 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 1 sibling, 0 replies; 49+ messages in thread From: T.J. Mercier @ 2026-07-15 20:44 UTC (permalink / raw) To: Baineng Shou Cc: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla, stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On Tue, Jul 14, 2026 at 4:47 AM Baineng Shou <shoubaineng@gmail.com> wrote: > > fastrpc_ioctl_alloc_dmabuf() calls dma_buf_fd() which installs the fd > into the caller's fd table before copy_to_user() copies the fd number > back to userspace. If copy_to_user() fails, the fd is already visible > to other threads in the same process but the ioctl returns -EFAULT. > The existing comment in the code even acknowledges the problem: > > "The usercopy failed, but we can't do much about it, as dma_buf_fd() > already called fd_install()..." > > Now that dma_buf_fd_install() is available (introduced to fix the same > issue in dma-heap), apply the same pattern here: reserve the fd with > get_unused_fd_flags(), attempt copy_to_user(), and only on success call > dma_buf_fd_install() to publish it atomically with the tracepoint. On > copy_to_user() failure, put_unused_fd() and dma_buf_put() cleanly > unwind without any user-visible side effects. > > Fixes: 6cffd79504ce ("misc: fastrpc: Add support for dmabuf exporter") > Cc: stable@vger.kernel.org > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> Reviewed-by: T.J. Mercier <tjmercier@google.com> ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v3 0/2] dma-buf: fix fd leak when copy_to_user() fails after fd_install() 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 11:46 ` [PATCH v3 2/2] misc: fastrpc: don't publish fd before copy_to_user() succeeds Baineng Shou @ 2026-07-14 12:24 ` Christian König 2026-07-14 13:27 ` [PATCH v3] drm/prime: use dma_buf_fd_install() to preserve export tracing Baineng Shou 2 siblings, 1 reply; 49+ messages in thread From: Christian König @ 2026-07-14 12:24 UTC (permalink / raw) To: Baineng Shou, Sumit Semwal, T . J . Mercier, Benjamin Gaignard, Brian Starkey, John Stultz, Sandeep Patil, Andrew F . Davis, Srinivas Kandagatla Cc: stable, dri-devel, linux-media, linaro-mm-sig, linux-kernel, linux-arm-msm On 7/14/26 13:46, Baineng Shou wrote: > Several drivers call dma_buf_fd() — which internally calls fd_install() > — before copy_to_user() returns the fd number to userspace. If > copy_to_user() fails, the fd is already published in the caller's fd > table but the ioctl returns an error, so userspace never learns the fd > number. Worse, the window between fd_install() and copy_to_user() > allows other threads to observe and manipulate the fd (dup, close, > SCM_RIGHTS), making any "close it on the failure path" fix unsafe. > > The fix is to split the allocation into three steps: reserve an fd with > get_unused_fd_flags() (not yet visible to other threads), do > copy_to_user(), and only then publish the fd with fd_install() via the > new dma_buf_fd_install() helper. On copy_to_user() failure, > put_unused_fd() + dma_buf_put() cleanly unwind with no user-visible > side effects. > > Patch 1 introduces dma_buf_fd_install() in dma-buf.c (wrapping > fd_install() together with the DMA_BUF_TRACE call to preserve export > tracing) and applies the fix to dma-heap. > > Patch 2 applies the same fix to fastrpc, which even had a comment > acknowledging the problem could not be fixed before. drivers/gpu/drm/drm_prime.c is also using fd_install() of a DMA-buf file descriptor manually. Would be nice if we could us the new dma_buf_fd_install() for tracing here as well. Apart from that feel free to add Acked-by: Christian König <christian.koenig@amd.com> to the whole series. Regards, Christian. > > v1: https://lore.kernel.org/dri-devel/20260703080922.1838362-1-shoubaineng@gmail.com/ > v2: https://lore.kernel.org/dri-devel/20260710105430.3059661-1-shoubaineng@gmail.com/ > > Changes in v3: > - Split into two patches (dma-heap + fastrpc separately) > - Add dma_buf_fd_install() to preserve trace_dma_buf_fd tracepoint > (spotted by T.J. Mercier and sashiko-bot on v2) > - Add fastrpc fix using the new helper (suggested by T.J. Mercier) > > Baineng Shou (2): > dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds > misc: fastrpc: don't publish fd before copy_to_user() succeeds > > drivers/dma-buf/dma-buf.c | 20 ++++++++++ > drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- > drivers/misc/fastrpc.c | 16 +++----- > include/linux/dma-buf.h | 1 + > 4 files changed, 67 insertions(+), 50 deletions(-) > ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v3] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 ` Baineng Shou 2026-07-14 13:45 ` sashiko-bot 0 siblings, 1 reply; 49+ messages in thread From: Baineng Shou @ 2026-07-14 13:27 UTC (permalink / raw) To: Christian König, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann Cc: dri-devel, linux-kernel, Baineng Shou drm_gem_prime_handle_to_fd() open-codes fd reservation and install using get_unused_fd_flags() + fd_install() directly. This bypasses the DMA_BUF_TRACE() call that dma_buf_fd() emits, so observability tools relying on the trace_dma_buf_fd tracepoint silently miss all DRM PRIME exports. Replace the bare fd_install() with dma_buf_fd_install(), which wraps fd_install() together with DMA_BUF_TRACE(), restoring full tracepoint coverage. No functional change; the fd lifecycle (get_unused_fd_flags → work → install) is already correct. Note: this patch depends on dma_buf_fd_install() introduced in "dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds" [1]. [1] https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ Suggested-by: Christian König <christian.koenig@amd.com> Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/gpu/drm/drm_prime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c index 9b44c78cd77f..fe3436d1235d 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, return PTR_ERR(dmabuf); } - fd_install(fd, dmabuf->file); + dma_buf_fd_install(dmabuf, fd); *prime_fd = fd; return 0; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v3] drm/prime: use dma_buf_fd_install() to preserve export tracing 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 0 siblings, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-14 13:45 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider: New issues: - [High] Build failure due to missing dependency `dma_buf_fd_install`. Pre-existing issues: - [High] Permanent file descriptor and dmabuf leak if copy_to_user() fails in drm_ioctl. -- --- Patch [1]: [PATCH v3] drm/prime: use dma_buf_fd_install() to preserve export tracing --- commit 0d84b19a88b6c4fa09505ca93169d721f3560e20 Author: Baineng Shou <shoubaineng@gmail.com> drm/prime: use dma_buf_fd_install() to preserve export tracing This commit replaces fd_install() with dma_buf_fd_install() in drm_gem_prime_handle_to_fd() to ensure DMA_BUF_TRACE() is called when exporting a PRIME handle. It notes a dependency on a separate patch for the new helper. Link: https://lore.kernel.org/dri-devel/20260714114654.3885457-2-shoubaineng@gmail.com/ > diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c > index 9b44c78cd77fc..fe3436d1235db 100644 > --- a/drivers/gpu/drm/drm_prime.c > +++ b/drivers/gpu/drm/drm_prime.c > @@ -524,7 +524,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev, > return PTR_ERR(dmabuf); > } > > - fd_install(fd, dmabuf->file); > + dma_buf_fd_install(dmabuf, fd); [Severity: High] Is dma_buf_fd_install() defined in the current tree? The commit message notes a dependency on a patch that introduces this function, but without it present in the branch, won't this cause a build failure due to an implicit function declaration and undefined symbol? [Severity: High] This is a pre-existing issue, but can this leak the fd and dmabuf if copy_to_user() fails later in drm_ioctl()? If userspace calls the DRM_IOCTL_PRIME_HANDLE_TO_FD ioctl with a read-only memory mapping for the argument pointer, drm_gem_prime_handle_to_fd() installs the fd: drivers/gpu/drm/drm_prime.c:drm_gem_prime_handle_to_fd() { ... dma_buf_fd_install(dmabuf, fd); ... } Afterward, the generic ioctl dispatcher attempts to write the resulting fd back to userspace: drivers/gpu/drm/drm_ioctl.c:drm_ioctl() { ... if (copy_to_user((void __user *)arg, kdata, out_size) != 0) retcode = -EFAULT; ... } If this copy fails, the ioctl returns -EFAULT and the user application never receives the fd number to close it. Will the fd remain open in the process, permanently leaking the dma_buf and associated GEM object until the process exits? > *prime_fd = fd; > return 0; > } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260714132727.200995-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 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 12:33 ` Christian König 1 sibling, 0 replies; 49+ messages in thread From: Christian König @ 2026-07-10 12:33 UTC (permalink / raw) To: Baineng Shou, Sumit Semwal, Benjamin Gaignard, Brian Starkey, John Stultz, T . J . Mercier, Sandeep Patil, Andrew F . Davis Cc: stable, linux-media, dri-devel, linaro-mm-sig, linux-kernel On 7/10/26 12:57, Baineng Shou wrote: > DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the > caller's fd table via dma_buf_fd() -> fd_install() before > dma_heap_ioctl() copies the result back to userspace. If the trailing > copy_to_user() fails, userspace never learns the fd number, but the > fd (and the underlying dma-buf reference) are already visible to > other threads in the same process and are leaked for the lifetime of > the process. > > The obvious "close it on the failure path" fix is unsafe: once > fd_install() has run, another thread can already dup() the fd, send > it via SCM_RIGHTS, or close() it and let its number be reused, so a > subsequent close_fd() from the ioctl path can operate on an unrelated > file. This was pointed out by Christian König on v1 [1]. IIRC it was Greg who pointed that out numerous times, I'm just repeating what I was told. > > Restructure the allocation path so that fd_install() is the last, > unfailable step of a successful ioctl: > > 1. heap->ops->allocate() creates the dma_buf. > 2. get_unused_fd_flags() reserves an fd number in the caller's > fd table without publishing it, so > no other thread can observe it. > 3. copy_to_user() delivers the fd number to userspace; > on failure the fd is returned with > put_unused_fd() and the dma_buf > reference is dropped with > dma_buf_put(), leaving no user- > visible state behind. > 4. fd_install() publishes the fd -- from here on the > ioctl cannot fail. > > To make this possible, dma_heap_ioctl_allocate() is refactored to > return the struct dma_buf * directly (returning ERR_PTR on failure) > so the caller holds the dmabuf reference across steps 3 and 4. > The fd is written into the kdata buffer before copy_to_user() so > the reserved fd number reaches userspace atomically with the install. > > The failure at step 3 is easily reachable from userspace: pass a > struct dma_heap_allocation_data that lives in a page whose protection > is flipped to PROT_READ between copy_from_user() and copy_to_user() > (e.g. via mprotect()). Before this change each such ioctl leaks one > dmabuf fd; after it, the fd table is unchanged on failure and only > /dev/dma_heap/<name> remains open. > > No UAPI or heap-driver interface change. > > [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ > > Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") > Cc: stable@vger.kernel.org > Signed-off-by: Baineng Shou <shoubaineng@gmail.com> Patch looks sane to me, but somebody with more background in DMA-buf heaps should probably take a look as well. Acked-by: Christian König <christian.koenig@amd.com> > --- > drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- > 1 file changed, 40 insertions(+), 40 deletions(-) > > diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c > index a76bf3f8b071..0a9bf62eb06c 100644 > --- a/drivers/dma-buf/dma-heap.c > +++ b/drivers/dma-buf/dma-heap.c > @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, > "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); > EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); > > -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, > - u32 fd_flags, > - u64 heap_flags) > -{ > - struct dma_buf *dmabuf; > - int fd; > - > - /* > - * Allocations from all heaps have to begin > - * and end on page boundaries. > - */ > - len = PAGE_ALIGN(len); > - if (!len) > - return -EINVAL; > - > - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); > - if (IS_ERR(dmabuf)) > - return PTR_ERR(dmabuf); > - > - fd = dma_buf_fd(dmabuf, fd_flags); > - if (fd < 0) { > - dma_buf_put(dmabuf); > - /* just return, as put will call release and that will free */ > - } > - return fd; > -} > - > static int dma_heap_open(struct inode *inode, struct file *file) > { > struct dma_heap *heap; > @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) > return 0; > } > > -static long dma_heap_ioctl_allocate(struct file *file, void *data) > +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) > { > struct dma_heap_allocation_data *heap_allocation = data; > struct dma_heap *heap = file->private_data; > + struct dma_buf *dmabuf; > int fd; > + size_t len; > > if (heap_allocation->fd) > - return -EINVAL; > + return ERR_PTR(-EINVAL); > > if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) > - return -EINVAL; > + return ERR_PTR(-EINVAL); > > if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) > - return -EINVAL; > + return ERR_PTR(-EINVAL); > + > + len = PAGE_ALIGN(heap_allocation->len); > + if (!len) > + return ERR_PTR(-EINVAL); > + > + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, > + heap_allocation->heap_flags); > > - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, > - heap_allocation->fd_flags, > - heap_allocation->heap_flags); > - if (fd < 0) > - return fd; > + if (IS_ERR(dmabuf)) > + return dmabuf; > + > + fd = get_unused_fd_flags(heap_allocation->fd_flags); > + if (fd < 0) { > + dma_buf_put(dmabuf); > + return ERR_PTR(fd); > + } > > heap_allocation->fd = fd; > > - return 0; > + return dmabuf; > } > > static unsigned int dma_heap_ioctl_cmds[] = { > @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > unsigned int in_size, out_size, drv_size, ksize; > int nr = _IOC_NR(ucmd); > int ret = 0; > + int fd; > + struct dma_buf *dmabuf; > > if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) > return -EINVAL; > @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, > > switch (kcmd) { > case DMA_HEAP_IOCTL_ALLOC: > - ret = dma_heap_ioctl_allocate(file, kdata); > + dmabuf = dma_heap_ioctl_allocate(file, kdata); > + > + if (IS_ERR(dmabuf)) { > + ret = PTR_ERR(dmabuf); > + break; > + } > + > + fd = ((struct dma_heap_allocation_data *)kdata)->fd; > + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { > + put_unused_fd(fd); > + dma_buf_put(dmabuf); > + ret = -EFAULT; > + } else { > + fd_install(fd, dmabuf->file); > + } > + > break; > default: > ret = -ENOTTY; > goto err; > } > > - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) > - ret = -EFAULT; > err: > if (kdata != stack_kdata) > kfree(kdata); ^ permalink raw reply [flat|nested] 49+ messages in thread
* [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-03 8:09 [PATCH] dma-buf: dma-heap: close installed fd when copy_to_user() fails Baineng Shou ` (2 preceding siblings ...) 2026-07-10 10:57 ` [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds Baineng Shou @ 2026-07-11 4:14 ` Baineng Shou 2026-07-11 4:29 ` sashiko-bot 3 siblings, 1 reply; 49+ messages in thread From: Baineng Shou @ 2026-07-11 4:14 UTC (permalink / raw) To: Sumit Semwal, Christian König, Benjamin Gaignard, Brian Starkey, John Stultz, T . J . Mercier, Sandeep Patil, Andrew F . Davis Cc: stable, linux-media, dri-devel, linaro-mm-sig, linux-kernel, Baineng Shou DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. If the trailing copy_to_user() fails, userspace never learns the fd number, but the fd (and the underlying dma-buf reference) are already visible to other threads in the same process and are leaked for the lifetime of the process. The obvious "close it on the failure path" fix is unsafe: once fd_install() has run, another thread can already dup() the fd, send it via SCM_RIGHTS, or close() it and let its number be reused, so a subsequent close_fd() from the ioctl path can operate on an unrelated file. This was pointed out by Christian König on v1 [1]. Restructure the allocation path so that fd_install() is the last, unfailable step of a successful ioctl: 1. heap->ops->allocate() creates the dma_buf. 2. get_unused_fd_flags() reserves an fd number in the caller's fd table without publishing it, so no other thread can observe it. 3. copy_to_user() delivers the fd number to userspace; on failure the fd is returned with put_unused_fd() and the dma_buf reference is dropped with dma_buf_put(), leaving no user- visible state behind. 4. fd_install() publishes the fd -- from here on the ioctl cannot fail. To make this possible, dma_heap_ioctl_allocate() is refactored to return the struct dma_buf * directly (returning ERR_PTR on failure) so the caller holds the dmabuf reference across steps 3 and 4. The fd is written into the kdata buffer before copy_to_user() so the reserved fd number reaches userspace atomically with the install. The failure at step 3 is easily reachable from userspace: pass a struct dma_heap_allocation_data that lives in a page whose protection is flipped to PROT_READ between copy_from_user() and copy_to_user() (e.g. via mprotect()). Before this change each such ioctl leaks one dmabuf fd; after it, the fd table is unchanged on failure and only /dev/dma_heap/<name> remains open. No UAPI or heap-driver interface change. [1] https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ Fixes: c02a81fba74f ("dma-buf: Add dma-buf heaps framework") Cc: stable@vger.kernel.org Signed-off-by: Baineng Shou <shoubaineng@gmail.com> --- drivers/dma-buf/dma-buf.c | 20 ++++++++++ drivers/dma-buf/dma-heap.c | 80 +++++++++++++++++++------------------- include/linux/dma-buf.h | 1 + 3 files changed, 61 insertions(+), 40 deletions(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index d504c636dc29..4c9add51f9ef 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -803,6 +803,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) } EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); +/** + * dma_buf_fd_install - install a reserved fd for a dma-buf + * @dmabuf: [in] pointer to dma_buf + * @fd: [in] fd reserved with get_unused_fd_flags() + * + * Publishes a previously reserved fd into the caller's fd table. + * Must only be called after all fallible work (e.g. copy_to_user) + * has succeeded, as it cannot be undone safely once called. + * + * The caller is responsible for having emitted the trace event + * (via dma_buf_fd() or get_unused_fd_flags() + this function) + * before calling this. + */ +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd) +{ + DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); + fd_install(fd, dmabuf->file); +} +EXPORT_SYMBOL_NS_GPL(dma_buf_fd_install, "DMA_BUF"); + /** * dma_buf_get - returns the struct dma_buf related to an fd * @fd: [in] fd associated with the struct dma_buf to be returned diff --git a/drivers/dma-buf/dma-heap.c b/drivers/dma-buf/dma-heap.c index a76bf3f8b071..43c32fb28313 100644 --- a/drivers/dma-buf/dma-heap.c +++ b/drivers/dma-buf/dma-heap.c @@ -55,33 +55,6 @@ MODULE_PARM_DESC(mem_accounting, "Enable cgroup-based memory accounting for dma-buf heap allocations (default=false)."); EXPORT_SYMBOL_NS_GPL(mem_accounting, "DMA_BUF_HEAP"); -static int dma_heap_buffer_alloc(struct dma_heap *heap, size_t len, - u32 fd_flags, - u64 heap_flags) -{ - struct dma_buf *dmabuf; - int fd; - - /* - * Allocations from all heaps have to begin - * and end on page boundaries. - */ - len = PAGE_ALIGN(len); - if (!len) - return -EINVAL; - - dmabuf = heap->ops->allocate(heap, len, fd_flags, heap_flags); - if (IS_ERR(dmabuf)) - return PTR_ERR(dmabuf); - - fd = dma_buf_fd(dmabuf, fd_flags); - if (fd < 0) { - dma_buf_put(dmabuf); - /* just return, as put will call release and that will free */ - } - return fd; -} - static int dma_heap_open(struct inode *inode, struct file *file) { struct dma_heap *heap; @@ -99,30 +72,42 @@ static int dma_heap_open(struct inode *inode, struct file *file) return 0; } -static long dma_heap_ioctl_allocate(struct file *file, void *data) +static struct dma_buf *dma_heap_ioctl_allocate(struct file *file, void *data) { struct dma_heap_allocation_data *heap_allocation = data; struct dma_heap *heap = file->private_data; + struct dma_buf *dmabuf; int fd; + size_t len; if (heap_allocation->fd) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->fd_flags & ~DMA_HEAP_VALID_FD_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); if (heap_allocation->heap_flags & ~DMA_HEAP_VALID_HEAP_FLAGS) - return -EINVAL; + return ERR_PTR(-EINVAL); + + len = PAGE_ALIGN(heap_allocation->len); + if (!len) + return ERR_PTR(-EINVAL); + + dmabuf = heap->ops->allocate(heap, len, heap_allocation->fd_flags, + heap_allocation->heap_flags); - fd = dma_heap_buffer_alloc(heap, heap_allocation->len, - heap_allocation->fd_flags, - heap_allocation->heap_flags); - if (fd < 0) - return fd; + if (IS_ERR(dmabuf)) + return dmabuf; + + fd = get_unused_fd_flags(heap_allocation->fd_flags); + if (fd < 0) { + dma_buf_put(dmabuf); + return ERR_PTR(fd); + } heap_allocation->fd = fd; - return 0; + return dmabuf; } static unsigned int dma_heap_ioctl_cmds[] = { @@ -138,6 +123,8 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, unsigned int in_size, out_size, drv_size, ksize; int nr = _IOC_NR(ucmd); int ret = 0; + int fd; + struct dma_buf *dmabuf; if (nr >= ARRAY_SIZE(dma_heap_ioctl_cmds)) return -EINVAL; @@ -174,15 +161,28 @@ static long dma_heap_ioctl(struct file *file, unsigned int ucmd, switch (kcmd) { case DMA_HEAP_IOCTL_ALLOC: - ret = dma_heap_ioctl_allocate(file, kdata); + dmabuf = dma_heap_ioctl_allocate(file, kdata); + + if (IS_ERR(dmabuf)) { + ret = PTR_ERR(dmabuf); + break; + } + + fd = ((struct dma_heap_allocation_data *)kdata)->fd; + if (copy_to_user((void __user *)arg, kdata, out_size) != 0) { + put_unused_fd(fd); + dma_buf_put(dmabuf); + ret = -EFAULT; + } else { + dma_buf_fd_install(dmabuf, fd); + } + break; default: ret = -ENOTTY; goto err; } - if (copy_to_user((void __user *)arg, kdata, out_size) != 0) - ret = -EFAULT; err: if (kdata != stack_kdata) kfree(kdata); diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index d1203da56fc5..d15b2b31d3c9 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -567,6 +567,7 @@ void dma_buf_unpin(struct dma_buf_attachment *attach); struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info); int dma_buf_fd(struct dma_buf *dmabuf, int flags); +void dma_buf_fd_install(struct dma_buf *dmabuf, int fd); struct dma_buf *dma_buf_get(int fd); void dma_buf_put(struct dma_buf *dmabuf); -- 2.34.1 ^ permalink raw reply related [flat|nested] 49+ messages in thread
* Re: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds 2026-07-11 4:14 ` Baineng Shou @ 2026-07-11 4:29 ` sashiko-bot 0 siblings, 0 replies; 49+ messages in thread From: sashiko-bot @ 2026-07-11 4:29 UTC (permalink / raw) To: Baineng Shou; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [Critical] Pre-existing Use-After-Free in dma_buf_fd() via concurrent close() after fd installation. -- --- Patch [1]: [PATCH v2] dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds --- commit a57039a5644f218873e246c9fb9fe2f87ef4dc55 Author: Baineng Shou <shoubaineng@gmail.com> dma-buf: dma-heap: don't publish fd before copy_to_user() succeeds DMA_HEAP_IOCTL_ALLOC allocates a dma-buf and installs an fd into the caller's fd table via dma_buf_fd() -> fd_install() before dma_heap_ioctl() copies the result back to userspace. Link: https://lore.kernel.org/dri-devel/175e98de-f414-47d7-81c1-c0fe0a8f7f62@amd.com/ > diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c > index 71f37544a5c61..c2f455d028b30 100644 > --- a/drivers/dma-buf/dma-buf.c > +++ b/drivers/dma-buf/dma-buf.c > @@ -799,6 +799,26 @@ int dma_buf_fd(struct dma_buf *dmabuf, int flags) > } > EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF"); [Severity: Critical] This is a pre-existing issue, but does dma_buf_fd() have a use-after-free if the file descriptor is closed concurrently? Looking at dma_buf_fd() just above this diff: fd = FD_ADD(flags, dmabuf->file); DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd); Once FD_ADD() installs the fd, it becomes visible to userspace. If a concurrent thread guesses the fd and calls close(fd), the file's reference count drops to zero, triggering fput() and eventually freeing the dmabuf structure. When the original thread continues to DMA_BUF_TRACE(), won't it dereference the now-freed dmabuf pointer? [ ... ] -- Sashiko AI review · https://sashiko.dev/#/patchset/20260711041455.3375292-1-shoubaineng@gmail.com?part=1 ^ permalink raw reply [flat|nested] 49+ messages in thread
end of thread, other threads:[~2026-08-07 21:49 UTC | newest]
Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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-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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox