Skip to content

Commit 07fb75a

Browse files
Jesper JuhlJames Bottomley
authored andcommitted
[SCSI] fix (unlikely) memory leak in DAC960 driver
The Coverity checker found a memory leak (bug nr. 1245) in drivers/block/DAC960.c::DAC960_V2_ProcessCompletedCommand() The leak is pretty unlikely since it requires that the first of two successive kmalloc() calls fail while the second one succeeds. But it can still happen even if it's unlikely. If the first call that allocates 'PhysicalDeviceInfo' fails but the one that allocates 'InquiryUnitSerialNumber' succeeds, then we will leak the memory allocated to 'InquiryUnitSerialNumber' when the variable goes out of scope. A simple fix for this is to change the existing code that frees 'PhysicalDeviceInfo' if that one was allocated but 'InquiryUnitSerialNumber' was not, into a check for either pointer being NULL and if so just free both. This is safe since kfree() can deal with being passed a NULL pointer and it avoids the leak. While I was there I also removed the casts of the kmalloc() return value since it's pointless. I also updated the driver version since this patch changes the workings of the code (however slightly). This issue could probably be fixed a lot more elegantly, but the code is a big mess IMHO and I just took the least intrusive route to a fix that I could find instead of starting on a cleanup as well (that can come later). Please consider for inclusion. Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
1 parent 5b9851b commit 07fb75a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

drivers/block/DAC960.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
*/
1818

1919

20-
#define DAC960_DriverVersion "2.5.47"
21-
#define DAC960_DriverDate "14 November 2002"
20+
#define DAC960_DriverVersion "2.5.48"
21+
#define DAC960_DriverDate "14 May 2006"
2222

2323

2424
#include <linux/module.h>
@@ -4780,15 +4780,16 @@ static void DAC960_V2_ProcessCompletedCommand(DAC960_Command_T *Command)
47804780
(NewPhysicalDeviceInfo->LogicalUnit !=
47814781
PhysicalDeviceInfo->LogicalUnit))
47824782
{
4783-
PhysicalDeviceInfo = (DAC960_V2_PhysicalDeviceInfo_T *)
4783+
PhysicalDeviceInfo =
47844784
kmalloc(sizeof(DAC960_V2_PhysicalDeviceInfo_T), GFP_ATOMIC);
47854785
InquiryUnitSerialNumber =
4786-
(DAC960_SCSI_Inquiry_UnitSerialNumber_T *)
47874786
kmalloc(sizeof(DAC960_SCSI_Inquiry_UnitSerialNumber_T),
47884787
GFP_ATOMIC);
4789-
if (InquiryUnitSerialNumber == NULL &&
4790-
PhysicalDeviceInfo != NULL)
4788+
if (InquiryUnitSerialNumber == NULL ||
4789+
PhysicalDeviceInfo == NULL)
47914790
{
4791+
kfree(InquiryUnitSerialNumber);
4792+
InquiryUnitSerialNumber = NULL;
47924793
kfree(PhysicalDeviceInfo);
47934794
PhysicalDeviceInfo = NULL;
47944795
}

0 commit comments

Comments
 (0)