[PATCH] dma-buf: free dmabuf->name in dma_buf_release()
Chenbo Feng
fengc at google.com
Tue Feb 18 18:40:30 UTC 2020
Acked-by: Chenbo Feng <fengc at google.com>
On Thu, Dec 26, 2019 at 10:32 PM Cong Wang <xiyou.wangcong at gmail.com> wrote:
> dma-buff name can be set via DMA_BUF_SET_NAME ioctl, but once set
> it never gets freed.
>
> Free it in dma_buf_release().
>
> Fixes: bb2bb9030425 ("dma-buf: add DMA_BUF_SET_NAME ioctls")
> Reported-by: syzbot+b2098bc44728a4efb3e9 at syzkaller.appspotmail.com
> Cc: Greg Hackmann <ghackmann at google.com>
> Cc: Chenbo Feng <fengc at google.com>
> Cc: Sumit Semwal <sumit.semwal at linaro.org>
> Signed-off-by: Cong Wang <xiyou.wangcong at gmail.com>
> ---
> drivers/dma-buf/dma-buf.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c
> index ce41cd9b758a..2427398ff22a 100644
> --- a/drivers/dma-buf/dma-buf.c
> +++ b/drivers/dma-buf/dma-buf.c
> @@ -108,6 +108,7 @@ static int dma_buf_release(struct inode *inode, struct
> file *file)
> dma_resv_fini(dmabuf->resv);
>
> module_put(dmabuf->owner);
> + kfree(dmabuf->name);
> kfree(dmabuf);
> return 0;
> }
> --
> 2.21.0
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20200218/4098dd38/attachment-0001.htm>
More information about the dri-devel
mailing list