usbip: Fix misuse of strncpy()
authorBen Hutchings <ben@decadent.org.uk>
Fri, 20 Jul 2018 00:30:24 +0000 (01:30 +0100)
committerSalvatore Bonaccorso <carnil@debian.org>
Thu, 26 Sep 2019 12:19:06 +0000 (13:19 +0100)
gcc 8 reports:

usbip_device_driver.c: In function ‘read_usb_vudc_device’:
usbip_device_driver.c:106:2: error: ‘strncpy’ specified bound 256 equals destination size [-Werror=stringop-truncation]
  strncpy(dev->path, path, SYSFS_PATH_MAX);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
usbip_device_driver.c:125:2: error: ‘strncpy’ specified bound 32 equals destination size [-Werror=stringop-truncation]
  strncpy(dev->busid, name, SYSFS_BUS_ID_SIZE);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

I'm not convinced it makes sense to truncate the copied strings here,
but since we're already doing so let's ensure they're still null-
terminated.  We can't easily use strlcpy() here, so use snprintf().

usbip_common.c has the same problem.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Gbp-Pq: Topic bugfix/all
Gbp-Pq: Name usbip-fix-misuse-of-strncpy.patch

tools/usb/usbip/libsrc/usbip_common.c
tools/usb/usbip/libsrc/usbip_device_driver.c

index bb424638d75b0e639020a765192bea2020dd369c..03246c9aea25090587f6f82245ac845e341c8524 100644 (file)
@@ -226,8 +226,8 @@ int read_usb_device(struct udev_device *sdev, struct usbip_usb_device *udev)
        path = udev_device_get_syspath(sdev);
        name = udev_device_get_sysname(sdev);
 
-       strncpy(udev->path,  path,  SYSFS_PATH_MAX);
-       strncpy(udev->busid, name, SYSFS_BUS_ID_SIZE);
+       snprintf(udev->path, SYSFS_PATH_MAX, "%s", path);
+       snprintf(udev->busid, SYSFS_BUS_ID_SIZE, "%s", name);
 
        sscanf(name, "%u-%u", &busnum, &devnum);
        udev->busnum = busnum;
index 5a3726eb44abcd54b3d55e5f452ab73bc96ca015..5e234cd05700c3d55aa4d8758cba9e55986b9612 100644 (file)
@@ -91,7 +91,7 @@ int read_usb_vudc_device(struct udev_device *sdev, struct usbip_usb_device *dev)
        copy_descr_attr16(dev, &descr, idProduct);
        copy_descr_attr16(dev, &descr, bcdDevice);
 
-       strncpy(dev->path, path, SYSFS_PATH_MAX);
+       snprintf(dev->path, SYSFS_PATH_MAX, "%s", path);
 
        dev->speed = USB_SPEED_UNKNOWN;
        speed = udev_device_get_sysattr_value(sdev, "current_speed");
@@ -110,7 +110,7 @@ int read_usb_vudc_device(struct udev_device *sdev, struct usbip_usb_device *dev)
        dev->busnum = 0;
 
        name = udev_device_get_sysname(plat);
-       strncpy(dev->busid, name, SYSFS_BUS_ID_SIZE);
+       snprintf(dev->busid, SYSFS_BUS_ID_SIZE, "%s", name);
        return 0;
 err:
        fclose(fd);