UPSTREAM: HID: check for valid USB device for many HID drivers
Many HID drivers assume that the HID device assigned to them is a USB device as that was the only way HID devices used to be able to be created in Linux. However, with the additional ways that HID devices can be created for many different bus types, that is no longer true, so properly check that we have a USB device associated with the HID device before allowing a driver that makes this assumption to claim it. Cc: Jiri Kosina <jikos@kernel.org> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cc: Michael Zaidman <michael.zaidman@gmail.com> Cc: Stefan Achatz <erazor_de@users.sourceforge.net> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com> Cc: Alexandre Torgue <alexandre.torgue@foss.st.com> Cc: linux-input@vger.kernel.org Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Tested-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> [bentiss: amended for thrustmater.c hunk to apply] Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Link: https://lore.kernel.org/r/20211201183503.2373082-3-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit 93020953d0fa7035fd036ad87a47ae2b7aa4ae33) Bug: 188677105 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I7908d6af9e70865a6db17fac75624064165449ad
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
e98c96b8b8
commit
7320fb1abd
@@ -58,8 +58,12 @@ static int ch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
|
|||||||
static __u8 *ch_switch12_report_fixup(struct hid_device *hdev, __u8 *rdesc,
|
static __u8 *ch_switch12_report_fixup(struct hid_device *hdev, __u8 *rdesc,
|
||||||
unsigned int *rsize)
|
unsigned int *rsize)
|
||||||
{
|
{
|
||||||
struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
|
struct usb_interface *intf;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return rdesc;
|
||||||
|
|
||||||
|
intf = to_usb_interface(hdev->dev.parent);
|
||||||
if (intf->cur_altsetting->desc.bInterfaceNumber == 1) {
|
if (intf->cur_altsetting->desc.bInterfaceNumber == 1) {
|
||||||
/* Change usage maximum and logical maximum from 0x7fff to
|
/* Change usage maximum and logical maximum from 0x7fff to
|
||||||
* 0x2fff, so they don't exceed HID_MAX_USAGES */
|
* 0x2fff, so they don't exceed HID_MAX_USAGES */
|
||||||
|
@@ -553,7 +553,12 @@ static int corsair_probe(struct hid_device *dev, const struct hid_device_id *id)
|
|||||||
int ret;
|
int ret;
|
||||||
unsigned long quirks = id->driver_data;
|
unsigned long quirks = id->driver_data;
|
||||||
struct corsair_drvdata *drvdata;
|
struct corsair_drvdata *drvdata;
|
||||||
struct usb_interface *usbif = to_usb_interface(dev->dev.parent);
|
struct usb_interface *usbif;
|
||||||
|
|
||||||
|
if (!hid_is_usb(dev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
usbif = to_usb_interface(dev->dev.parent);
|
||||||
|
|
||||||
drvdata = devm_kzalloc(&dev->dev, sizeof(struct corsair_drvdata),
|
drvdata = devm_kzalloc(&dev->dev, sizeof(struct corsair_drvdata),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
|
@@ -50,7 +50,7 @@ struct elan_drvdata {
|
|||||||
|
|
||||||
static int is_not_elan_touchpad(struct hid_device *hdev)
|
static int is_not_elan_touchpad(struct hid_device *hdev)
|
||||||
{
|
{
|
||||||
if (hdev->bus == BUS_USB) {
|
if (hid_is_usb(hdev)) {
|
||||||
struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
|
struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
|
||||||
|
|
||||||
return (intf->altsetting->desc.bInterfaceNumber !=
|
return (intf->altsetting->desc.bInterfaceNumber !=
|
||||||
|
@@ -229,6 +229,9 @@ static int elo_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
|||||||
struct elo_priv *priv;
|
struct elo_priv *priv;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
||||||
if (!priv)
|
if (!priv)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@@ -140,12 +140,17 @@ static int holtek_kbd_input_event(struct input_dev *dev, unsigned int type,
|
|||||||
static int holtek_kbd_probe(struct hid_device *hdev,
|
static int holtek_kbd_probe(struct hid_device *hdev,
|
||||||
const struct hid_device_id *id)
|
const struct hid_device_id *id)
|
||||||
{
|
{
|
||||||
struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
|
struct usb_interface *intf;
|
||||||
int ret = hid_parse(hdev);
|
int ret;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
ret = hid_parse(hdev);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
|
ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
|
||||||
|
|
||||||
|
intf = to_usb_interface(hdev->dev.parent);
|
||||||
if (!ret && intf->cur_altsetting->desc.bInterfaceNumber == 1) {
|
if (!ret && intf->cur_altsetting->desc.bInterfaceNumber == 1) {
|
||||||
struct hid_input *hidinput;
|
struct hid_input *hidinput;
|
||||||
list_for_each_entry(hidinput, &hdev->inputs, list) {
|
list_for_each_entry(hidinput, &hdev->inputs, list) {
|
||||||
|
@@ -62,6 +62,14 @@ static __u8 *holtek_mouse_report_fixup(struct hid_device *hdev, __u8 *rdesc,
|
|||||||
return rdesc;
|
return rdesc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int holtek_mouse_probe(struct hid_device *hdev,
|
||||||
|
const struct hid_device_id *id)
|
||||||
|
{
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct hid_device_id holtek_mouse_devices[] = {
|
static const struct hid_device_id holtek_mouse_devices[] = {
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT,
|
{ HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT,
|
||||||
USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A067) },
|
USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A067) },
|
||||||
@@ -83,6 +91,7 @@ static struct hid_driver holtek_mouse_driver = {
|
|||||||
.name = "holtek_mouse",
|
.name = "holtek_mouse",
|
||||||
.id_table = holtek_mouse_devices,
|
.id_table = holtek_mouse_devices,
|
||||||
.report_fixup = holtek_mouse_report_fixup,
|
.report_fixup = holtek_mouse_report_fixup,
|
||||||
|
.probe = holtek_mouse_probe,
|
||||||
};
|
};
|
||||||
|
|
||||||
module_hid_driver(holtek_mouse_driver);
|
module_hid_driver(holtek_mouse_driver);
|
||||||
|
@@ -769,12 +769,18 @@ static int lg_raw_event(struct hid_device *hdev, struct hid_report *report,
|
|||||||
|
|
||||||
static int lg_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
static int lg_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
||||||
{
|
{
|
||||||
struct usb_interface *iface = to_usb_interface(hdev->dev.parent);
|
struct usb_interface *iface;
|
||||||
__u8 iface_num = iface->cur_altsetting->desc.bInterfaceNumber;
|
__u8 iface_num;
|
||||||
unsigned int connect_mask = HID_CONNECT_DEFAULT;
|
unsigned int connect_mask = HID_CONNECT_DEFAULT;
|
||||||
struct lg_drv_data *drv_data;
|
struct lg_drv_data *drv_data;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
iface = to_usb_interface(hdev->dev.parent);
|
||||||
|
iface_num = iface->cur_altsetting->desc.bInterfaceNumber;
|
||||||
|
|
||||||
/* G29 only work with the 1st interface */
|
/* G29 only work with the 1st interface */
|
||||||
if ((hdev->product == USB_DEVICE_ID_LOGITECH_G29_WHEEL) &&
|
if ((hdev->product == USB_DEVICE_ID_LOGITECH_G29_WHEEL) &&
|
||||||
(iface_num != 0)) {
|
(iface_num != 0)) {
|
||||||
|
@@ -798,12 +798,18 @@ static int pk_raw_event(struct hid_device *hdev, struct hid_report *report,
|
|||||||
static int pk_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
static int pk_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
|
struct usb_interface *intf;
|
||||||
unsigned short ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
|
unsigned short ifnum;
|
||||||
unsigned long quirks = id->driver_data;
|
unsigned long quirks = id->driver_data;
|
||||||
struct pk_device *pk;
|
struct pk_device *pk;
|
||||||
struct pcmidi_snd *pm = NULL;
|
struct pcmidi_snd *pm = NULL;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
intf = to_usb_interface(hdev->dev.parent);
|
||||||
|
ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
|
||||||
|
|
||||||
pk = kzalloc(sizeof(*pk), GFP_KERNEL);
|
pk = kzalloc(sizeof(*pk), GFP_KERNEL);
|
||||||
if (pk == NULL) {
|
if (pk == NULL) {
|
||||||
hid_err(hdev, "can't alloc descriptor\n");
|
hid_err(hdev, "can't alloc descriptor\n");
|
||||||
|
@@ -344,6 +344,9 @@ static int arvo_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -324,6 +324,9 @@ static int isku_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -749,6 +749,9 @@ static int kone_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -431,6 +431,9 @@ static int koneplus_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -133,6 +133,9 @@ static int konepure_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -501,6 +501,9 @@ static int kovaplus_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -160,6 +160,9 @@ static int lua_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -449,6 +449,9 @@ static int pyra_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -141,6 +141,9 @@ static int ryos_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -113,6 +113,9 @@ static int savu_probe(struct hid_device *hdev,
|
|||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
retval = hid_parse(hdev);
|
retval = hid_parse(hdev);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -152,6 +152,9 @@ static int samsung_probe(struct hid_device *hdev,
|
|||||||
int ret;
|
int ret;
|
||||||
unsigned int cmask = HID_CONNECT_DEFAULT;
|
unsigned int cmask = HID_CONNECT_DEFAULT;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
ret = hid_parse(hdev);
|
ret = hid_parse(hdev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
hid_err(hdev, "parse failed\n");
|
hid_err(hdev, "parse failed\n");
|
||||||
|
@@ -164,6 +164,9 @@ static int uclogic_probe(struct hid_device *hdev,
|
|||||||
struct uclogic_drvdata *drvdata = NULL;
|
struct uclogic_drvdata *drvdata = NULL;
|
||||||
bool params_initialized = false;
|
bool params_initialized = false;
|
||||||
|
|
||||||
|
if (!hid_is_usb(hdev))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* libinput requires the pad interface to be on a different node
|
* libinput requires the pad interface to be on a different node
|
||||||
* than the pen, so use QUIRK_MULTI_INPUT for all tablets.
|
* than the pen, so use QUIRK_MULTI_INPUT for all tablets.
|
||||||
|
Reference in New Issue
Block a user