linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: usb: gadget: udc: Fix NULL dereference
@ 2015-03-03 12:58 Tapasweni Pathak
  2015-03-04  1:11 ` Peter Chen
  0 siblings, 1 reply; 7+ messages in thread
From: Tapasweni Pathak @ 2015-03-03 12:58 UTC (permalink / raw)
  To: balbi, gregkh, peter.chen, jg1.han, benoit.taine, linux-usb,
	linux-kernel
  Cc: julia.lawall, tapaswenipathak

This patch fixes multiple instances of null pointer dereference in this code.

ep->udc is assigned to udc. ep is just an offset from _ep. _ep is then
checked for NULL. udc is dereferenced under the NULL check for _ep, making
an invalid pointer reference.

udc is then checked for NULL, if NULL, it is then dereferenced as
udc->dev.

To fix these issues, shift assignment of udc by dereferencing ep after
null check for _ep, replace both dev_dbg statements with pr_debug.

Found using Coccinelle.

Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Suggested-by : Julia Lawall <julia.lawall@lip6.fr>
Reviewed-by : Julia Lawall <julia.lawall@lip6.fr>
---
 drivers/usb/gadget/udc/lpc32xx_udc.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/gadget/udc/lpc32xx_udc.c b/drivers/usb/gadget/udc/lpc32xx_udc.c
index 27fd413..6398539 100644
--- a/drivers/usb/gadget/udc/lpc32xx_udc.c
+++ b/drivers/usb/gadget/udc/lpc32xx_udc.c
@@ -1807,17 +1807,16 @@ static int lpc32xx_ep_queue(struct usb_ep *_ep,
 	    !list_empty(&req->queue))
 		return -EINVAL;

-	udc = ep->udc;
-
 	if (!_ep) {
-		dev_dbg(udc->dev, "invalid ep\n");
+		pr_debug("invalid ep\n");
 		return -EINVAL;
 	}

+	udc = ep->udc;

 	if ((!udc) || (!udc->driver) ||
 	    (udc->gadget.speed == USB_SPEED_UNKNOWN)) {
-		dev_dbg(udc->dev, "invalid device\n");
+		pr_debug("invalid device\n");
 		return -EINVAL;
 	}

--
1.7.9.5


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

end of thread, other threads:[~2015-03-10 20:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-03 12:58 [PATCH] drivers: usb: gadget: udc: Fix NULL dereference Tapasweni Pathak
2015-03-04  1:11 ` Peter Chen
2015-03-09 15:41   ` Felipe Balbi
2015-03-10  2:02     ` Peter Chen
2015-03-10  2:36       ` Felipe Balbi
2015-03-10  3:00         ` Peter Chen
2015-03-10 20:50           ` Felipe Balbi

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).