USB: g_file_storage: fix use-after-free bug when closing files
authorAlan Stern <stern@rowland.harvard.edu>
Thu, 16 Apr 2009 19:37:28 +0000 (15:37 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 23 Apr 2009 21:15:28 +0000 (14:15 -0700)
commit82a10a81c853be3859b3d222db0f372ee8d2eaa2
tree717c7bdc51f849982a850b6fbbdbf1af36cf88d0
parentc065c60e83c006611caed23d1320450fcd709398
USB: g_file_storage: fix use-after-free bug when closing files

This patch (as1231) fixes a use-after-free bug in g_file_storage.  A
device's name may not be available after the device is unregistered,
even if the device structure itself is still allocated.  Since
close_backing_file() prints a LUN's name for debugging, it shouldn't
be called after the LUN has been unregistered.

That whole area needed to be cleaned up; the backing files were
getting closed in a couple of different places.  The patch fixes
things so that they get closed in just one place, as part of the
unbind procedure, immediately before the LUN is unregistered.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/gadget/file_storage.c