* [PATCH] [SCSI] csiostor: Don't leak mem or fail to release firmware in csio_hw_flash_config()
@ 2012-12-26 20:31 Jesper Juhl
2012-12-28 11:29 ` Naresh Kumar Inna
0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2012-12-26 20:31 UTC (permalink / raw)
To: James E.J. Bottomley; +Cc: Naresh Kumar Inna, linux-scsi, linux-kernel
If kzalloc() or csio_hw_check_fwconfig() fail we may leave the
csio_hw_flash_config() function without freeing allocated memory or
firmware. This should take care of the leaks.
Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
drivers/scsi/csiostor/csio_hw.c | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
Note: I'm unable to really test this, so the patch is compile tested
only.
diff --git a/drivers/scsi/csiostor/csio_hw.c b/drivers/scsi/csiostor/csio_hw.c
index 8ecdb94..bdd78fb 100644
--- a/drivers/scsi/csiostor/csio_hw.c
+++ b/drivers/scsi/csiostor/csio_hw.c
@@ -2131,13 +2131,16 @@ csio_hw_flash_config(struct csio_hw *hw, u32 *fw_cfg_param, char *path)
value_to_add = 4 - (cf->size % 4);
cfg_data = kzalloc(cf->size+value_to_add, GFP_KERNEL);
- if (cfg_data == NULL)
- return -ENOMEM;
+ if (cfg_data == NULL) {
+ ret = -ENOMEM;
+ goto leave;
+ }
memcpy((void *)cfg_data, (const void *)cf->data, cf->size);
-
- if (csio_hw_check_fwconfig(hw, fw_cfg_param) != 0)
- return -EINVAL;
+ if (csio_hw_check_fwconfig(hw, fw_cfg_param) != 0) {
+ ret = -EINVAL;
+ goto leave;
+ }
mtype = FW_PARAMS_PARAM_Y_GET(*fw_cfg_param);
maddr = FW_PARAMS_PARAM_Z_GET(*fw_cfg_param) << 16;
@@ -2149,9 +2152,9 @@ csio_hw_flash_config(struct csio_hw *hw, u32 *fw_cfg_param, char *path)
strncpy(path, "/lib/firmware/" CSIO_CF_FNAME, 64);
}
+leave:
kfree(cfg_data);
release_firmware(cf);
-
return ret;
}
--
1.7.1
--
Jesper Juhl <jj@chaosbits.net> http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] [SCSI] csiostor: Don't leak mem or fail to release firmware in csio_hw_flash_config()
2012-12-26 20:31 [PATCH] [SCSI] csiostor: Don't leak mem or fail to release firmware in csio_hw_flash_config() Jesper Juhl
@ 2012-12-28 11:29 ` Naresh Kumar Inna
0 siblings, 0 replies; 2+ messages in thread
From: Naresh Kumar Inna @ 2012-12-28 11:29 UTC (permalink / raw)
To: Jesper Juhl
Cc: James E.J. Bottomley, linux-scsi@vger.kernel.org,
linux-kernel@vger.kernel.org
On 12/27/2012 2:01 AM, Jesper Juhl wrote:
> If kzalloc() or csio_hw_check_fwconfig() fail we may leave the
> csio_hw_flash_config() function without freeing allocated memory or
> firmware. This should take care of the leaks.
>
> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> ---
> drivers/scsi/csiostor/csio_hw.c | 15 +++++++++------
> 1 files changed, 9 insertions(+), 6 deletions(-)
>
> Note: I'm unable to really test this, so the patch is compile tested
> only.
>
> diff --git a/drivers/scsi/csiostor/csio_hw.c b/drivers/scsi/csiostor/csio_hw.c
> index 8ecdb94..bdd78fb 100644
> --- a/drivers/scsi/csiostor/csio_hw.c
> +++ b/drivers/scsi/csiostor/csio_hw.c
> @@ -2131,13 +2131,16 @@ csio_hw_flash_config(struct csio_hw *hw, u32 *fw_cfg_param, char *path)
> value_to_add = 4 - (cf->size % 4);
>
> cfg_data = kzalloc(cf->size+value_to_add, GFP_KERNEL);
> - if (cfg_data == NULL)
> - return -ENOMEM;
> + if (cfg_data == NULL) {
> + ret = -ENOMEM;
> + goto leave;
> + }
>
> memcpy((void *)cfg_data, (const void *)cf->data, cf->size);
> -
> - if (csio_hw_check_fwconfig(hw, fw_cfg_param) != 0)
> - return -EINVAL;
> + if (csio_hw_check_fwconfig(hw, fw_cfg_param) != 0) {
> + ret = -EINVAL;
> + goto leave;
> + }
>
> mtype = FW_PARAMS_PARAM_Y_GET(*fw_cfg_param);
> maddr = FW_PARAMS_PARAM_Z_GET(*fw_cfg_param) << 16;
> @@ -2149,9 +2152,9 @@ csio_hw_flash_config(struct csio_hw *hw, u32 *fw_cfg_param, char *path)
> strncpy(path, "/lib/firmware/" CSIO_CF_FNAME, 64);
> }
>
> +leave:
> kfree(cfg_data);
> release_firmware(cf);
> -
> return ret;
> }
>
>
Acked-by: Naresh Kumar Inna <naresh@chelsio.com>
Thanks,
Naresh.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-28 11:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-26 20:31 [PATCH] [SCSI] csiostor: Don't leak mem or fail to release firmware in csio_hw_flash_config() Jesper Juhl
2012-12-28 11:29 ` Naresh Kumar Inna
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.