Skip to content

Commit 689e0d1

Browse files
author
Ken Cox
committed
net: asix: add proper error handling of usb read errors
JIRA: https://issues.redhat.com/browse/RHEL-28110 CVE: CVE-2021-47101 commit 920a9fa Author: Pavel Skripkin <paskripkin@gmail.com> Date: Sun Feb 6 21:05:16 2022 +0300 net: asix: add proper error handling of usb read errors Syzbot once again hit uninit value in asix driver. The problem still the same -- asix_read_cmd() reads less bytes, than was requested by caller. Since all read requests are performed via asix_read_cmd() let's catch usb related error there and add __must_check notation to be sure all callers actually check return value. So, this patch adds sanity check inside asix_read_cmd(), that simply checks if bytes read are not less, than was requested and adds missing error handling of asix_read_cmd() all across the driver code. Fixes: d9fe64e ("net: asix: Add in_pm parameter") Reported-and-tested-by: syzbot+6ca9f7867b77c2d316ac@syzkaller.appspotmail.com Signed-off-by: Pavel Skripkin <paskripkin@gmail.com> Tested-by: Oleksij Rempel <o.rempel@pengutronix.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ken Cox <jkc@redhat.com>
1 parent 2312ab5 commit 689e0d1

File tree

3 files changed

+33
-11
lines changed

3 files changed

+33
-11
lines changed

drivers/net/usb/asix.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ extern const struct driver_info ax88172a_info;
192192
/* ASIX specific flags */
193193
#define FLAG_EEPROM_MAC (1UL << 0) /* init device MAC from eeprom */
194194

195-
int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
196-
u16 size, void *data, int in_pm);
195+
int __must_check asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
196+
u16 size, void *data, int in_pm);
197197

198198
int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
199199
u16 size, void *data, int in_pm);

drivers/net/usb/asix_common.c

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#include "asix.h"
1111

12-
int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
13-
u16 size, void *data, int in_pm)
12+
int __must_check asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
13+
u16 size, void *data, int in_pm)
1414
{
1515
int ret;
1616
int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
@@ -25,9 +25,12 @@ int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
2525
ret = fn(dev, cmd, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2626
value, index, data, size);
2727

28-
if (unlikely(ret < 0))
28+
if (unlikely(ret < size)) {
29+
ret = ret < 0 ? ret : -ENODATA;
30+
2931
netdev_warn(dev->net, "Failed to read reg index 0x%04x: %d\n",
3032
index, ret);
33+
}
3134

3235
return ret;
3336
}
@@ -77,7 +80,7 @@ static int asix_check_host_enable(struct usbnet *dev, int in_pm)
7780
0, 0, 1, &smsr, in_pm);
7881
if (ret == -ENODEV)
7982
break;
80-
else if (ret < sizeof(smsr))
83+
else if (ret < 0)
8184
continue;
8285
else if (smsr & AX_HOST_EN)
8386
break;
@@ -577,8 +580,12 @@ int asix_mdio_read_nopm(struct net_device *netdev, int phy_id, int loc)
577580
return ret;
578581
}
579582

580-
asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
581-
(__u16)loc, 2, &res, 1);
583+
ret = asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
584+
(__u16)loc, 2, &res, 1);
585+
if (ret < 0) {
586+
mutex_unlock(&dev->phy_mutex);
587+
return ret;
588+
}
582589
asix_set_hw_mii(dev, 1);
583590
mutex_unlock(&dev->phy_mutex);
584591

drivers/net/usb/asix_devices.c

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,12 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
756756
priv->phy_addr = ret;
757757
priv->embd_phy = ((priv->phy_addr & 0x1f) == 0x10);
758758

759-
asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, 0, 1, &chipcode, 0);
759+
ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG, 0, 0, 1, &chipcode, 0);
760+
if (ret < 0) {
761+
netdev_dbg(dev->net, "Failed to read STATMNGSTS_REG: %d\n", ret);
762+
return ret;
763+
}
764+
760765
chipcode &= AX_CHIPCODE_MASK;
761766

762767
ret = (chipcode == AX_AX88772_CHIPCODE) ? ax88772_hw_reset(dev, 0) :
@@ -925,11 +930,21 @@ static int ax88178_reset(struct usbnet *dev)
925930
int gpio0 = 0;
926931
u32 phyid;
927932

928-
asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status, 0);
933+
ret = asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status, 0);
934+
if (ret < 0) {
935+
netdev_dbg(dev->net, "Failed to read GPIOS: %d\n", ret);
936+
return ret;
937+
}
938+
929939
netdev_dbg(dev->net, "GPIO Status: 0x%04x\n", status);
930940

931941
asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL, 0);
932-
asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom, 0);
942+
ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom, 0);
943+
if (ret < 0) {
944+
netdev_dbg(dev->net, "Failed to read EEPROM: %d\n", ret);
945+
return ret;
946+
}
947+
933948
asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL, 0);
934949

935950
netdev_dbg(dev->net, "EEPROM index 0x17 is 0x%04x\n", eeprom);

0 commit comments

Comments
 (0)