* [PATCH] Check if skb_alloc returns Null in function fw_download_code
@ 2014-06-17 3:23 Nicholas Krause
2014-06-17 4:07 ` Greg KH
2014-06-17 6:07 ` Dan Carpenter
0 siblings, 2 replies; 4+ messages in thread
From: Nicholas Krause @ 2014-06-17 3:23 UTC (permalink / raw)
To: gregkh; +Cc: valentina.manea.m, lisa, ben, devel, linux-kernel
Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
---
drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
index 1a95d1f..11e915e 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
@@ -61,11 +61,13 @@ static bool fw_download_code(struct net_device *dev, u8 *code_virtual_address,
}
skb = dev_alloc_skb(frag_length + 4);
+ if (!skb) {
memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
tcb_desc = (struct cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
tcb_desc->queue_index = TXCMD_QUEUE;
tcb_desc->bCmdOrInit = DESC_PACKET_TYPE_INIT;
tcb_desc->bLastIniPkt = bLastIniPkt;
+ }
seg_ptr = skb->data;
for (i = 0; i < frag_length; i += 4) {
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Check if skb_alloc returns Null in function fw_download_code
2014-06-17 3:23 [PATCH] Check if skb_alloc returns Null in function fw_download_code Nicholas Krause
@ 2014-06-17 4:07 ` Greg KH
2014-06-17 4:20 ` Dave Jones
2014-06-17 6:07 ` Dan Carpenter
1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2014-06-17 4:07 UTC (permalink / raw)
To: Nicholas Krause; +Cc: valentina.manea.m, lisa, ben, devel, linux-kernel
On Mon, Jun 16, 2014 at 11:23:13PM -0400, Nicholas Krause wrote:
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
> drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> index 1a95d1f..11e915e 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> @@ -61,11 +61,13 @@ static bool fw_download_code(struct net_device *dev, u8 *code_virtual_address,
> }
>
> skb = dev_alloc_skb(frag_length + 4);
> + if (!skb) {
> memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
> tcb_desc = (struct cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
> tcb_desc->queue_index = TXCMD_QUEUE;
> tcb_desc->bCmdOrInit = DESC_PACKET_TYPE_INIT;
> tcb_desc->bLastIniPkt = bLastIniPkt;
> + }
>
Please run your patches through scripts/checkpatch.pl to find the errors
before sending them out and having someone else point them out to you...
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Check if skb_alloc returns Null in function fw_download_code
2014-06-17 4:07 ` Greg KH
@ 2014-06-17 4:20 ` Dave Jones
0 siblings, 0 replies; 4+ messages in thread
From: Dave Jones @ 2014-06-17 4:20 UTC (permalink / raw)
To: Greg KH; +Cc: Nicholas Krause, valentina.manea.m, lisa, ben, devel,
linux-kernel
On Mon, Jun 16, 2014 at 09:07:45PM -0700, Greg KH wrote:
> On Mon, Jun 16, 2014 at 11:23:13PM -0400, Nicholas Krause wrote:
> > Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> > ---
> > drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> > index 1a95d1f..11e915e 100644
> > --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> > +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> > @@ -61,11 +61,13 @@ static bool fw_download_code(struct net_device *dev, u8 *code_virtual_address,
> > }
> >
> > skb = dev_alloc_skb(frag_length + 4);
> > + if (!skb) {
> > memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
> > tcb_desc = (struct cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
> > tcb_desc->queue_index = TXCMD_QUEUE;
> > tcb_desc->bCmdOrInit = DESC_PACKET_TYPE_INIT;
> > tcb_desc->bLastIniPkt = bLastIniPkt;
> > + }
> >
>
> Please run your patches through scripts/checkpatch.pl to find the errors
> before sending them out and having someone else point them out to you...
I suspect checkpatch would pick up the indentation mess, but
indentation is the least of this patch's problems.
if that alloc_skb fails, going around the loop again is pointless, and
harmful. (we'll oops right below that added bracket).
on failure, this should be returning 0 so that the caller
handles the failure appropriately.
Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Check if skb_alloc returns Null in function fw_download_code
2014-06-17 3:23 [PATCH] Check if skb_alloc returns Null in function fw_download_code Nicholas Krause
2014-06-17 4:07 ` Greg KH
@ 2014-06-17 6:07 ` Dan Carpenter
1 sibling, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2014-06-17 6:07 UTC (permalink / raw)
To: Nicholas Krause; +Cc: gregkh, devel, ben, lisa, valentina.manea.m, linux-kernel
On Mon, Jun 16, 2014 at 11:23:13PM -0400, Nicholas Krause wrote:
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
> drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> index 1a95d1f..11e915e 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c
> @@ -61,11 +61,13 @@ static bool fw_download_code(struct net_device *dev, u8 *code_virtual_address,
> }
>
> skb = dev_alloc_skb(frag_length + 4);
> + if (!skb) {
This test is reversed and causes a NULL dereference on the next line.
regards,
dan carpenter
> memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
> tcb_desc = (struct cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
> tcb_desc->queue_index = TXCMD_QUEUE;
> tcb_desc->bCmdOrInit = DESC_PACKET_TYPE_INIT;
> tcb_desc->bLastIniPkt = bLastIniPkt;
> + }
>
> seg_ptr = skb->data;
> for (i = 0; i < frag_length; i += 4) {
> --
> 1.9.1
>
> _______________________________________________
> devel mailing list
> devel@linuxdriverproject.org
> http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-17 6:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-17 3:23 [PATCH] Check if skb_alloc returns Null in function fw_download_code Nicholas Krause
2014-06-17 4:07 ` Greg KH
2014-06-17 4:20 ` Dave Jones
2014-06-17 6:07 ` Dan Carpenter
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).