media: v4l2-subdev: without controls return -ENOTTY
authorHans Verkuil <hverkuil@xs4all.nl>
Fri, 2 Feb 2018 13:05:23 +0000 (08:05 -0500)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Mon, 26 Feb 2018 14:32:59 +0000 (09:32 -0500)
If the subdev did not define any controls, then return -ENOTTY if
userspace attempts to call these ioctls.

The control framework functions will return -EINVAL, not -ENOTTY if
vfh->ctrl_handler is NULL.

Several of these framework functions are also called directly from
drivers, so I don't want to change the error code there.

Found with vimc and v4l2-compliance.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/v4l2-core/v4l2-subdev.c

index 74fe808..ec0bd64 100644 (file)
@@ -187,27 +187,51 @@ static long subdev_do_ioctl(struct file *file, unsigned int cmd, void *arg)
 
        switch (cmd) {
        case VIDIOC_QUERYCTRL:
+               /*
+                * TODO: this really should be folded into v4l2_queryctrl (this
+                * currently returns -EINVAL for NULL control handlers).
+                * However, v4l2_queryctrl() is still called directly by
+                * drivers as well and until that has been addressed I believe
+                * it is safer to do the check here. The same is true for the
+                * other control ioctls below.
+                */
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_queryctrl(vfh->ctrl_handler, arg);
 
        case VIDIOC_QUERY_EXT_CTRL:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_query_ext_ctrl(vfh->ctrl_handler, arg);
 
        case VIDIOC_QUERYMENU:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_querymenu(vfh->ctrl_handler, arg);
 
        case VIDIOC_G_CTRL:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_g_ctrl(vfh->ctrl_handler, arg);
 
        case VIDIOC_S_CTRL:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_s_ctrl(vfh, vfh->ctrl_handler, arg);
 
        case VIDIOC_G_EXT_CTRLS:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_g_ext_ctrls(vfh->ctrl_handler, arg);
 
        case VIDIOC_S_EXT_CTRLS:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_s_ext_ctrls(vfh, vfh->ctrl_handler, arg);
 
        case VIDIOC_TRY_EXT_CTRLS:
+               if (!vfh->ctrl_handler)
+                       return -ENOTTY;
                return v4l2_try_ext_ctrls(vfh->ctrl_handler, arg);
 
        case VIDIOC_DQEVENT: