Commit 27174cff authored by Benjamin Tissoires's avatar Benjamin Tissoires Committed by Jiri Kosina

HID: i2c-hid: fix memory corruption due to missing hid declaration

HID descriptors contains 4 bytes of reserved field.
The previous implementation was overriding the next fields in struct i2c_hid.
Signed-off-by: default avatarBenjamin Tissoires <benjamin.tissoires@gmail.com>
Reviewed-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent addb114d
...@@ -69,6 +69,7 @@ struct i2c_hid_desc { ...@@ -69,6 +69,7 @@ struct i2c_hid_desc {
__le16 wVendorID; __le16 wVendorID;
__le16 wProductID; __le16 wProductID;
__le16 wVersionID; __le16 wVersionID;
__le32 reserved;
} __packed; } __packed;
struct i2c_hid_cmd { struct i2c_hid_cmd {
...@@ -776,7 +777,13 @@ static int __devinit i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid) ...@@ -776,7 +777,13 @@ static int __devinit i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid)
} }
dsize = le16_to_cpu(hdesc->wHIDDescLength); dsize = le16_to_cpu(hdesc->wHIDDescLength);
if (!dsize || dsize > HID_MAX_DESCRIPTOR_SIZE) { /*
* the size of the HID descriptor should at least contain
* its size and the bcdVersion (4 bytes), and should not be greater
* than sizeof(struct i2c_hid_desc) as we directly fill this struct
* through i2c_hid_command.
*/
if (dsize < 4 || dsize > sizeof(struct i2c_hid_desc)) {
dev_err(&client->dev, "weird size of HID descriptor (%u)\n", dev_err(&client->dev, "weird size of HID descriptor (%u)\n",
dsize); dsize);
return -ENODEV; return -ENODEV;
......
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