Commit adfd3910 authored by Ricardo Ribalda's avatar Ricardo Ribalda Committed by Laurent Pinchart

media: uvcvideo: Remove void casting for the status endpoint

Make the code more resilient, by replacing the castings with proper
structure definitions and using offsetof() instead of open coding the
location of the data.
Suggested-by: default avatarSergey Senozhatsky <senozhatsky@chromium.org>
Signed-off-by: default avatarRicardo Ribalda <ribalda@chromium.org>
Reviewed-by: default avatarAndrzej Pietrasiewicz <andrzej.p@collabora.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: default avatarSergey Senozhatsky <senozhatsky@chromium.org>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
parent 0ce75d5e
...@@ -96,38 +96,23 @@ static void uvc_input_report_key(struct uvc_device *dev, unsigned int code, ...@@ -96,38 +96,23 @@ static void uvc_input_report_key(struct uvc_device *dev, unsigned int code,
/* -------------------------------------------------------------------------- /* --------------------------------------------------------------------------
* Status interrupt endpoint * Status interrupt endpoint
*/ */
struct uvc_streaming_status {
u8 bStatusType;
u8 bOriginator;
u8 bEvent;
u8 bValue[];
} __packed;
struct uvc_control_status {
u8 bStatusType;
u8 bOriginator;
u8 bEvent;
u8 bSelector;
u8 bAttribute;
u8 bValue[];
} __packed;
static void uvc_event_streaming(struct uvc_device *dev, static void uvc_event_streaming(struct uvc_device *dev,
struct uvc_streaming_status *status, int len) struct uvc_status *status, int len)
{ {
if (len < 3) { if (len <= offsetof(struct uvc_status, bEvent)) {
uvc_dbg(dev, STATUS, uvc_dbg(dev, STATUS,
"Invalid streaming status event received\n"); "Invalid streaming status event received\n");
return; return;
} }
if (status->bEvent == 0) { if (status->bEvent == 0) {
if (len < 4) if (len <= offsetof(struct uvc_status, streaming))
return; return;
uvc_dbg(dev, STATUS, "Button (intf %u) %s len %d\n", uvc_dbg(dev, STATUS, "Button (intf %u) %s len %d\n",
status->bOriginator, status->bOriginator,
status->bValue[0] ? "pressed" : "released", len); status->streaming.button ? "pressed" : "released", len);
uvc_input_report_key(dev, KEY_CAMERA, status->bValue[0]); uvc_input_report_key(dev, KEY_CAMERA, status->streaming.button);
} else { } else {
uvc_dbg(dev, STATUS, "Stream %u error event %02x len %d\n", uvc_dbg(dev, STATUS, "Stream %u error event %02x len %d\n",
status->bOriginator, status->bEvent, len); status->bOriginator, status->bEvent, len);
...@@ -154,7 +139,7 @@ static struct uvc_control *uvc_event_entity_find_ctrl(struct uvc_entity *entity, ...@@ -154,7 +139,7 @@ static struct uvc_control *uvc_event_entity_find_ctrl(struct uvc_entity *entity,
} }
static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev, static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev,
const struct uvc_control_status *status, const struct uvc_status *status,
struct uvc_video_chain **chain) struct uvc_video_chain **chain)
{ {
list_for_each_entry((*chain), &dev->chains, list) { list_for_each_entry((*chain), &dev->chains, list) {
...@@ -166,7 +151,7 @@ static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev, ...@@ -166,7 +151,7 @@ static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev,
continue; continue;
ctrl = uvc_event_entity_find_ctrl(entity, ctrl = uvc_event_entity_find_ctrl(entity,
status->bSelector); status->control.bSelector);
if (ctrl) if (ctrl)
return ctrl; return ctrl;
} }
...@@ -176,7 +161,7 @@ static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev, ...@@ -176,7 +161,7 @@ static struct uvc_control *uvc_event_find_ctrl(struct uvc_device *dev,
} }
static bool uvc_event_control(struct urb *urb, static bool uvc_event_control(struct urb *urb,
const struct uvc_control_status *status, int len) const struct uvc_status *status, int len)
{ {
static const char *attrs[] = { "value", "info", "failure", "min", "max" }; static const char *attrs[] = { "value", "info", "failure", "min", "max" };
struct uvc_device *dev = urb->context; struct uvc_device *dev = urb->context;
...@@ -184,24 +169,24 @@ static bool uvc_event_control(struct urb *urb, ...@@ -184,24 +169,24 @@ static bool uvc_event_control(struct urb *urb,
struct uvc_control *ctrl; struct uvc_control *ctrl;
if (len < 6 || status->bEvent != 0 || if (len < 6 || status->bEvent != 0 ||
status->bAttribute >= ARRAY_SIZE(attrs)) { status->control.bAttribute >= ARRAY_SIZE(attrs)) {
uvc_dbg(dev, STATUS, "Invalid control status event received\n"); uvc_dbg(dev, STATUS, "Invalid control status event received\n");
return false; return false;
} }
uvc_dbg(dev, STATUS, "Control %u/%u %s change len %d\n", uvc_dbg(dev, STATUS, "Control %u/%u %s change len %d\n",
status->bOriginator, status->bSelector, status->bOriginator, status->control.bSelector,
attrs[status->bAttribute], len); attrs[status->control.bAttribute], len);
/* Find the control. */ /* Find the control. */
ctrl = uvc_event_find_ctrl(dev, status, &chain); ctrl = uvc_event_find_ctrl(dev, status, &chain);
if (!ctrl) if (!ctrl)
return false; return false;
switch (status->bAttribute) { switch (status->control.bAttribute) {
case UVC_CTRL_VALUE_CHANGE: case UVC_CTRL_VALUE_CHANGE:
return uvc_ctrl_status_event_async(urb, chain, ctrl, return uvc_ctrl_status_event_async(urb, chain, ctrl,
status->bValue); status->control.bValue);
case UVC_CTRL_INFO_CHANGE: case UVC_CTRL_INFO_CHANGE:
case UVC_CTRL_FAILURE_CHANGE: case UVC_CTRL_FAILURE_CHANGE:
...@@ -237,28 +222,22 @@ static void uvc_status_complete(struct urb *urb) ...@@ -237,28 +222,22 @@ static void uvc_status_complete(struct urb *urb)
len = urb->actual_length; len = urb->actual_length;
if (len > 0) { if (len > 0) {
switch (dev->status[0] & 0x0f) { switch (dev->status->bStatusType & 0x0f) {
case UVC_STATUS_TYPE_CONTROL: { case UVC_STATUS_TYPE_CONTROL: {
struct uvc_control_status *status = if (uvc_event_control(urb, dev->status, len))
(struct uvc_control_status *)dev->status;
if (uvc_event_control(urb, status, len))
/* The URB will be resubmitted in work context. */ /* The URB will be resubmitted in work context. */
return; return;
break; break;
} }
case UVC_STATUS_TYPE_STREAMING: { case UVC_STATUS_TYPE_STREAMING: {
struct uvc_streaming_status *status = uvc_event_streaming(dev, dev->status, len);
(struct uvc_streaming_status *)dev->status;
uvc_event_streaming(dev, status, len);
break; break;
} }
default: default:
uvc_dbg(dev, STATUS, "Unknown status event type %u\n", uvc_dbg(dev, STATUS, "Unknown status event type %u\n",
dev->status[0]); dev->status->bStatusType);
break; break;
} }
} }
...@@ -282,12 +261,12 @@ int uvc_status_init(struct uvc_device *dev) ...@@ -282,12 +261,12 @@ int uvc_status_init(struct uvc_device *dev)
uvc_input_init(dev); uvc_input_init(dev);
dev->status = kzalloc(UVC_MAX_STATUS_SIZE, GFP_KERNEL); dev->status = kzalloc(sizeof(*dev->status), GFP_KERNEL);
if (dev->status == NULL) if (!dev->status)
return -ENOMEM; return -ENOMEM;
dev->int_urb = usb_alloc_urb(0, GFP_KERNEL); dev->int_urb = usb_alloc_urb(0, GFP_KERNEL);
if (dev->int_urb == NULL) { if (!dev->int_urb) {
kfree(dev->status); kfree(dev->status);
return -ENOMEM; return -ENOMEM;
} }
...@@ -304,7 +283,7 @@ int uvc_status_init(struct uvc_device *dev) ...@@ -304,7 +283,7 @@ int uvc_status_init(struct uvc_device *dev)
interval = fls(interval) - 1; interval = fls(interval) - 1;
usb_fill_int_urb(dev->int_urb, dev->udev, pipe, usb_fill_int_urb(dev->int_urb, dev->udev, pipe,
dev->status, UVC_MAX_STATUS_SIZE, uvc_status_complete, dev->status, sizeof(*dev->status), uvc_status_complete,
dev, interval); dev, interval);
return 0; return 0;
......
...@@ -51,8 +51,6 @@ ...@@ -51,8 +51,6 @@
#define UVC_URBS 5 #define UVC_URBS 5
/* Maximum number of packets per URB. */ /* Maximum number of packets per URB. */
#define UVC_MAX_PACKETS 32 #define UVC_MAX_PACKETS 32
/* Maximum status buffer size in bytes of interrupt URB. */
#define UVC_MAX_STATUS_SIZE 16
#define UVC_CTRL_CONTROL_TIMEOUT 5000 #define UVC_CTRL_CONTROL_TIMEOUT 5000
#define UVC_CTRL_STREAMING_TIMEOUT 5000 #define UVC_CTRL_STREAMING_TIMEOUT 5000
...@@ -525,6 +523,26 @@ struct uvc_device_info { ...@@ -525,6 +523,26 @@ struct uvc_device_info {
const struct uvc_control_mapping **mappings; const struct uvc_control_mapping **mappings;
}; };
struct uvc_status_streaming {
u8 button;
} __packed;
struct uvc_status_control {
u8 bSelector;
u8 bAttribute;
u8 bValue[11];
} __packed;
struct uvc_status {
u8 bStatusType;
u8 bOriginator;
u8 bEvent;
union {
struct uvc_status_control control;
struct uvc_status_streaming streaming;
};
} __packed;
struct uvc_device { struct uvc_device {
struct usb_device *udev; struct usb_device *udev;
struct usb_interface *intf; struct usb_interface *intf;
...@@ -557,7 +575,8 @@ struct uvc_device { ...@@ -557,7 +575,8 @@ struct uvc_device {
/* Status Interrupt Endpoint */ /* Status Interrupt Endpoint */
struct usb_host_endpoint *int_ep; struct usb_host_endpoint *int_ep;
struct urb *int_urb; struct urb *int_urb;
u8 *status; struct uvc_status *status;
struct input_dev *input; struct input_dev *input;
char input_phys[64]; char input_phys[64];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment