[media] media-device: dynamically allocate struct media_devnode
struct media_devnode is currently embedded at struct media_device. While this works fine during normal usage, it leads to a race condition during devnode unregister. the problem is that drivers assume that, after calling media_device_unregister(), the struct that contains media_device can be freed. This is not true, as it can't be freed until userspace closes all opened /dev/media devnodes. In other words, if the media devnode is still open, and media_device gets freed, any call to an ioctl will make the core to try to access struct media_device, with will cause an use-after-free and even GPF. Fix this by dynamically allocating the struct media_devnode and only freeing it when it is safe. Signed-off-by:Mauro Carvalho Chehab <mchehab@osg.samsung.com> Signed-off-by:
Mauro Carvalho Chehab <mchehab@s-opensource.com>
Showing
- drivers/media/media-device.c 30 additions, 14 deletionsdrivers/media/media-device.c
- drivers/media/media-devnode.c 6 additions, 1 deletiondrivers/media/media-devnode.c
- drivers/media/usb/au0828/au0828-core.c 2 additions, 2 deletionsdrivers/media/usb/au0828/au0828-core.c
- drivers/media/usb/uvc/uvc_driver.c 1 addition, 1 deletiondrivers/media/usb/uvc/uvc_driver.c
- include/media/media-device.h 1 addition, 4 deletionsinclude/media/media-device.h
- include/media/media-devnode.h 12 additions, 1 deletioninclude/media/media-devnode.h
Please register or sign in to comment