Re: [PATCH 3/5] usb: gadget: f_mass_storage: Prevent NULL pointerdereference

From: Michal Nazarewicz
Date: Tue Apr 05 2011 - 11:56:59 EST


On Tue, 05 Apr 2011 17:36:40 +0200, Roger Quadros <roger.quadros@xxxxxxxxx> wrote:
Prevent a NULL pointer dereference in fsg_config_from_params() if
'file' parameter is not specified.

Have you observed this behaviour? I don't see how it could happen with
module parameters and if it appears in some gadget it's a bug in the
gadget. Not that I'm saying checking for null pointer is a bad idea.

Signed-off-by: Roger Quadros <roger.quadros@xxxxxxxxx>
---
drivers/usb/gadget/f_mass_storage.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/gadget/f_mass_storage.c b/drivers/usb/gadget/f_mass_storage.c
index 5d7de93..f6bd001 100644
--- a/drivers/usb/gadget/f_mass_storage.c
+++ b/drivers/usb/gadget/f_mass_storage.c
@@ -3177,7 +3177,7 @@ fsg_config_from_params(struct fsg_config *cfg,
lun->removable = /* Removable by default */
params->removable_count <= i || params->removable[i];
lun->filename =
- params->file_count > i && params->file[i][0]
+ params->file_count > i && params->file[i]

You're removing the check if an empty file name has been specified. It
should read:

+ params->file_count > i && params->file[i] && params->file[i][0]

And since the line is getting pretty long, maybe convert it to a proper
âifâ. I'm sure Greg will like that. ;)

? params->file[i]
: 0;
}

--
Best regards, _ _
.o. | Liege of Serenely Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michal "mina86" Nazarewicz (o o)
ooo +-----<email/xmpp: mnazarewicz@xxxxxxxxxx>-----ooO--(_)--Ooo--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/