Linux USB
 help / color / mirror / Atom feed
* [PATCH] USB: core: replace memdup_user with memdup_array_user in proc_do_submiturb
@ 2025-09-19 12:25 Thorsten Blum
  2025-10-08 11:05 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2025-09-19 12:25 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Alan Stern, Rex Nie, Jann Horn
  Cc: Thorsten Blum, linux-usb, linux-kernel

Use memdup_array_user() instead of memdup_user() in proc_do_submiturb().
Compared to memdup_user(), memdup_array_user() automatically checks for
multiplication overflow. Remove the obsolete local variable 'isofrmlen'.

Return early if an error occurs instead of manually setting 'ret' and
using 'goto error'.

No functional changes intended.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 drivers/usb/core/devio.c | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c
index f6ce6e26e0d4..a259fb6d6292 100644
--- a/drivers/usb/core/devio.c
+++ b/drivers/usb/core/devio.c
@@ -1624,7 +1624,7 @@ static int proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb
 	struct usb_host_endpoint *ep;
 	struct async *as = NULL;
 	struct usb_ctrlrequest *dr = NULL;
-	unsigned int u, totlen, isofrmlen;
+	unsigned int u, totlen;
 	int i, ret, num_sgs = 0, ifnum = -1;
 	int number_of_packets = 0;
 	unsigned int stream_id = 0;
@@ -1745,14 +1745,10 @@ static int proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb
 		if (!usb_endpoint_xfer_isoc(&ep->desc))
 			return -EINVAL;
 		number_of_packets = uurb->number_of_packets;
-		isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
-				   number_of_packets;
-		isopkt = memdup_user(iso_frame_desc, isofrmlen);
-		if (IS_ERR(isopkt)) {
-			ret = PTR_ERR(isopkt);
-			isopkt = NULL;
-			goto error;
-		}
+		isopkt = memdup_array_user(iso_frame_desc, number_of_packets,
+				sizeof(struct usbdevfs_iso_packet_desc));
+		if (IS_ERR(isopkt))
+			return PTR_ERR(isopkt);
 		for (totlen = u = 0; u < number_of_packets; u++) {
 			/*
 			 * arbitrary limit need for USB 3.1 Gen2
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] USB: core: replace memdup_user with memdup_array_user in proc_do_submiturb
  2025-09-19 12:25 [PATCH] USB: core: replace memdup_user with memdup_array_user in proc_do_submiturb Thorsten Blum
@ 2025-10-08 11:05 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2025-10-08 11:05 UTC (permalink / raw)
  To: Thorsten Blum; +Cc: Alan Stern, Rex Nie, Jann Horn, linux-usb, linux-kernel

On Fri, Sep 19, 2025 at 02:25:57PM +0200, Thorsten Blum wrote:
> Use memdup_array_user() instead of memdup_user() in proc_do_submiturb().
> Compared to memdup_user(), memdup_array_user() automatically checks for
> multiplication overflow. Remove the obsolete local variable 'isofrmlen'.

But there is no chance for overflow here, right?

I'm all for using "proper" functions, but there is no need to go and
rewrite existing code for them if you can't test the results.  Did you
test this?

> Return early if an error occurs instead of manually setting 'ret' and
> using 'goto error'.

There is no need to do that, please leave the code flow alone as we
"know" it works properly as-is.

> No functional changes intended.

"intended", but did you succeed?  :)

Testing is good, please do that.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-10-08 11:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-19 12:25 [PATCH] USB: core: replace memdup_user with memdup_array_user in proc_do_submiturb Thorsten Blum
2025-10-08 11:05 ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox