]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: vivid: fix potential integer overflow on left shift
authorColin Ian King <colin.king@canonical.com>
Thu, 27 Jun 2019 08:05:41 +0000 (04:05 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Tue, 23 Jul 2019 12:49:17 +0000 (08:49 -0400)
There is a potential integer overflow when int 2 is left shifted
as this is evaluated using 32 bit arithmetic but is being used in
a context that expects an expression of type s64.  Fix this by
generating a mask using GENMASK to avoid a 32 bit overflow.

Addresses-Coverity: ("Unintentional integer overflow")

Fixes: 8a99e9faa131 ("media: vivid: add HDMI (dis)connect RX emulation")
Fixes: 79a792dafac6 ("media: vivid: add HDMI (dis)connect TX emulation")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/vivid/vivid-ctrls.c

index 3e916c8befb7170e7c247e3dffc364432e10254b..fb9220e4e640219a1c5ab3488b6d586af6c147c8 100644 (file)
@@ -1613,6 +1613,8 @@ int vivid_create_controls(struct vivid_dev *dev, bool show_ccs_cap,
        }
 
        if (dev->num_hdmi_inputs) {
+               s64 hdmi_input_mask = GENMASK(dev->num_hdmi_inputs - 1, 0);
+
                dev->ctrl_dv_timings_signal_mode = v4l2_ctrl_new_custom(hdl_vid_cap,
                                        &vivid_ctrl_dv_timings_signal_mode, NULL);
 
@@ -1633,12 +1635,13 @@ int vivid_create_controls(struct vivid_dev *dev, bool show_ccs_cap,
                        V4L2_CID_DV_RX_RGB_RANGE, V4L2_DV_RGB_RANGE_FULL,
                        0, V4L2_DV_RGB_RANGE_AUTO);
                dev->ctrl_rx_power_present = v4l2_ctrl_new_std(hdl_vid_cap,
-                       NULL, V4L2_CID_DV_RX_POWER_PRESENT, 0,
-                       (2 << (dev->num_hdmi_inputs - 1)) - 1, 0,
-                       (2 << (dev->num_hdmi_inputs - 1)) - 1);
+                       NULL, V4L2_CID_DV_RX_POWER_PRESENT, 0, hdmi_input_mask,
+                       0, hdmi_input_mask);
 
        }
        if (dev->num_hdmi_outputs) {
+               s64 hdmi_output_mask = GENMASK(dev->num_hdmi_outputs - 1, 0);
+
                /*
                 * We aren't doing anything with this at the moment, but
                 * HDMI outputs typically have this controls.
@@ -1652,17 +1655,14 @@ int vivid_create_controls(struct vivid_dev *dev, bool show_ccs_cap,
                dev->ctrl_display_present = v4l2_ctrl_new_custom(hdl_vid_out,
                        &vivid_ctrl_display_present, NULL);
                dev->ctrl_tx_hotplug = v4l2_ctrl_new_std(hdl_vid_out,
-                       NULL, V4L2_CID_DV_TX_HOTPLUG, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1);
+                       NULL, V4L2_CID_DV_TX_HOTPLUG, 0, hdmi_output_mask,
+                       0, hdmi_output_mask);
                dev->ctrl_tx_rxsense = v4l2_ctrl_new_std(hdl_vid_out,
-                       NULL, V4L2_CID_DV_TX_RXSENSE, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1);
+                       NULL, V4L2_CID_DV_TX_RXSENSE, 0, hdmi_output_mask,
+                       0, hdmi_output_mask);
                dev->ctrl_tx_edid_present = v4l2_ctrl_new_std(hdl_vid_out,
-                       NULL, V4L2_CID_DV_TX_EDID_PRESENT, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1, 0,
-                       (2 << (dev->num_hdmi_outputs - 1)) - 1);
+                       NULL, V4L2_CID_DV_TX_EDID_PRESENT, 0, hdmi_output_mask,
+                       0, hdmi_output_mask);
        }
        if ((dev->has_vid_cap && dev->has_vid_out) ||
            (dev->has_vbi_cap && dev->has_vbi_out))