media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release
authorLv Yunlong <lyl2019@mail.ustc.edu.cn>
Sun, 9 May 2021 08:24:02 +0000 (10:24 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 2 Jun 2021 11:17:44 +0000 (13:17 +0200)
A use after free bug caused by the dangling pointer
filp->privitate_data in v4l2_fh_release.
See https://lore.kernel.org/patchwork/patch/1419058/.

My patch sets the dangling pointer to NULL to provide
robust.

Signed-off-by: Lv Yunlong <lyl2019@mail.ustc.edu.cn>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/v4l2-core/v4l2-fh.c

index 684574f58e82daa35394d5f07c06352925055a55..90eec79ee995a2d214590beeacc91b9f8f33236d 100644 (file)
@@ -96,6 +96,7 @@ int v4l2_fh_release(struct file *filp)
                v4l2_fh_del(fh);
                v4l2_fh_exit(fh);
                kfree(fh);
+               filp->private_data = NULL;
        }
        return 0;
 }