Skip to content

Commit af4bc14

Browse files
BigfootACAopsiff
authored andcommitted
misc: fastrpc: Fix dma_buf object leak in fastrpc_map_lookup
commit fff111b upstream. In fastrpc_map_lookup, dma_buf_get is called to obtain a reference to the dma_buf for comparison purposes. However, this reference is never released when the function returns, leading to a dma_buf memory leak. Fix this by adding dma_buf_put before returning from the function, ensuring that the temporarily acquired reference is properly released regardless of whether a matching map is found. Fixes: 9031626 ("misc: fastrpc: Fix fastrpc_map_lookup operation") Cc: stable@kernel.org Signed-off-by: Junhao Xie <bigfoot@radxa.com> Tested-by: Xilin Wu <sophon@radxa.com> Link: https://lore.kernel.org/stable/48B368FB4C7007A7%2B20251017083906.3259343-1-bigfoot%40radxa.com Link: https://patch.msgid.link/48B368FB4C7007A7+20251017083906.3259343-1-bigfoot@radxa.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit 9a297a68c3ba4a7ecb31ed52f61bd6634abb79d3) Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
1 parent 89602d9 commit af4bc14

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/misc/fastrpc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,8 @@ static int fastrpc_map_lookup(struct fastrpc_user *fl, int fd,
383383
}
384384
spin_unlock(&fl->lock);
385385

386+
dma_buf_put(buf);
387+
386388
return ret;
387389
}
388390

0 commit comments

Comments
 (0)