linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: return -EINVAL if no proper ep address available
@ 2022-03-08 11:28 Wei Ming Chen
  2022-03-09 23:59 ` Andrey Konovalov
  0 siblings, 1 reply; 7+ messages in thread
From: Wei Ming Chen @ 2022-03-08 11:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: andreyknvl, balbi, gregkh, linux-usb, Wei Ming Chen

If we try to use raw_ioctl_ep_enable() for ep5in on a hardware that
only support from ep1-ep4 for both in and out direction, it will return
-EBUSY originally.

I think it will be more intuitive if we return -EINVAL, Cuz -EBUSY sounds
like ep5in is not available now, but might be available in the future.

Signed-off-by: Wei Ming Chen <jj251510319013@gmail.com>
---
 drivers/usb/gadget/legacy/raw_gadget.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/usb/gadget/legacy/raw_gadget.c b/drivers/usb/gadget/legacy/raw_gadget.c
index d86c3a36441e..b4cc083a7ca6 100644
--- a/drivers/usb/gadget/legacy/raw_gadget.c
+++ b/drivers/usb/gadget/legacy/raw_gadget.c
@@ -758,6 +758,7 @@ static int raw_ioctl_ep_enable(struct raw_dev *dev, unsigned long value)
 	unsigned long flags;
 	struct usb_endpoint_descriptor *desc;
 	struct raw_ep *ep;
+	bool ep_num_matched = false;
 
 	desc = memdup_user((void __user *)value, sizeof(*desc));
 	if (IS_ERR(desc))
@@ -792,6 +793,7 @@ static int raw_ioctl_ep_enable(struct raw_dev *dev, unsigned long value)
 		if (ep->addr != usb_endpoint_num(desc) &&
 				ep->addr != USB_RAW_EP_ADDR_ANY)
 			continue;
+		ep_num_matched = true;
 		if (!usb_gadget_ep_match_desc(dev->gadget, ep->ep, desc, NULL))
 			continue;
 		ep->ep->desc = desc;
@@ -815,6 +817,12 @@ static int raw_ioctl_ep_enable(struct raw_dev *dev, unsigned long value)
 		goto out_unlock;
 	}
 
+	if (!ep_num_matched) {
+		dev_dbg(&dev->gadget->dev, "fail, no proper ep address available\n");
+		ret = -EINVAL;
+		goto out_free;
+	}
+
 	dev_dbg(&dev->gadget->dev, "fail, no gadget endpoints available\n");
 	ret = -EBUSY;
 
-- 
2.25.1


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

end of thread, other threads:[~2022-03-15 14:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-08 11:28 [PATCH] usb: gadget: return -EINVAL if no proper ep address available Wei Ming Chen
2022-03-09 23:59 ` Andrey Konovalov
2022-03-11  3:22   ` [PATCH v2] usb: raw-gadget: " Wei Ming Chen
2022-03-11  6:43     ` Greg KH
2022-03-11  8:29   ` Wei Ming Chen
2022-03-13 14:52     ` Andrey Konovalov
2022-03-15 14:32       ` 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;
as well as URLs for NNTP newsgroup(s).