All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lightnvm: fix memory leak
@ 2015-11-23 10:35 Sudip Mukherjee
  2015-11-23 15:13 ` Matias Bjørling
  0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2015-11-23 10:35 UTC (permalink / raw
  To: Matias Bjorling; +Cc: linux-kernel, Sudip Mukherjee

If copy_to_user() fails we returned error but we missed releasing
devices.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
 drivers/lightnvm/core.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
index f659e60..6688b60 100644
--- a/drivers/lightnvm/core.c
+++ b/drivers/lightnvm/core.c
@@ -721,8 +721,11 @@ static long nvm_ioctl_get_devices(struct file *file, void __user *arg)
 
 	devices->nr_devices = i;
 
-	if (copy_to_user(arg, devices, sizeof(struct nvm_ioctl_get_devices)))
+	if (copy_to_user(arg, devices,
+			 sizeof(struct nvm_ioctl_get_devices))) {
+		kfree(devices);
 		return -EFAULT;
+	}
 
 	kfree(devices);
 	return 0;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] lightnvm: fix memory leak
  2015-11-23 10:35 [PATCH] lightnvm: fix memory leak Sudip Mukherjee
@ 2015-11-23 15:13 ` Matias Bjørling
  2015-11-23 16:40   ` Sudip Mukherjee
  0 siblings, 1 reply; 4+ messages in thread
From: Matias Bjørling @ 2015-11-23 15:13 UTC (permalink / raw
  To: Sudip Mukherjee; +Cc: linux-kernel, linux-block

On 11/23/2015 11:35 AM, Sudip Mukherjee wrote:
> If copy_to_user() fails we returned error but we missed releasing
> devices.
>
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
>   drivers/lightnvm/core.c | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
> index f659e60..6688b60 100644
> --- a/drivers/lightnvm/core.c
> +++ b/drivers/lightnvm/core.c
> @@ -721,8 +721,11 @@ static long nvm_ioctl_get_devices(struct file *file, void __user *arg)
>
>   	devices->nr_devices = i;
>
> -	if (copy_to_user(arg, devices, sizeof(struct nvm_ioctl_get_devices)))
> +	if (copy_to_user(arg, devices,
> +			 sizeof(struct nvm_ioctl_get_devices))) {
> +		kfree(devices);
>   		return -EFAULT;
> +	}
>
>   	kfree(devices);
>   	return 0;
>

Thanks Sudip, it seems like this error is in some of the others ioctl's 
as well. Do you want to send a patch with the fixes for them all?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] lightnvm: fix memory leak
  2015-11-23 15:13 ` Matias Bjørling
@ 2015-11-23 16:40   ` Sudip Mukherjee
  2015-11-23 18:41     ` Matias
  0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2015-11-23 16:40 UTC (permalink / raw
  To: Matias Bjørling; +Cc: linux-kernel, linux-block

On Mon, Nov 23, 2015 at 04:13:39PM +0100, Matias Bjørling wrote:
> On 11/23/2015 11:35 AM, Sudip Mukherjee wrote:
> >If copy_to_user() fails we returned error but we missed releasing
> >devices.
> >
> >Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> >---
> >  drivers/lightnvm/core.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> >diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
> >index f659e60..6688b60 100644
> >--- a/drivers/lightnvm/core.c
> >+++ b/drivers/lightnvm/core.c
> >@@ -721,8 +721,11 @@ static long nvm_ioctl_get_devices(struct file *file, void __user *arg)
> >
> >  	devices->nr_devices = i;
> >
> >-	if (copy_to_user(arg, devices, sizeof(struct nvm_ioctl_get_devices)))
> >+	if (copy_to_user(arg, devices,
> >+			 sizeof(struct nvm_ioctl_get_devices))) {
> >+		kfree(devices);
> >  		return -EFAULT;
> >+	}
> >
> >  	kfree(devices);
> >  	return 0;
> >
> 
> Thanks Sudip, it seems like this error is in some of the others
> ioctl's as well. Do you want to send a patch with the fixes for them
> all?

I can find a similar error in nvm_ioctl_info(). I will have a close look
tomorrow and send a patch. Is this patch applied or should I send a
combined patch fixing all these similar errors?

regards
sudip

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] lightnvm: fix memory leak
  2015-11-23 16:40   ` Sudip Mukherjee
@ 2015-11-23 18:41     ` Matias
  0 siblings, 0 replies; 4+ messages in thread
From: Matias @ 2015-11-23 18:41 UTC (permalink / raw
  To: Sudip Mukherjee; +Cc: linux-kernel, linux-block

On 11/23/2015 05:40 PM, Sudip Mukherjee wrote:
> On Mon, Nov 23, 2015 at 04:13:39PM +0100, Matias Bjørling wrote:
>> On 11/23/2015 11:35 AM, Sudip Mukherjee wrote:
>>> If copy_to_user() fails we returned error but we missed releasing
>>> devices.
>>>
>>> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
>>> ---
>>>   drivers/lightnvm/core.c | 5 ++++-
>>>   1 file changed, 4 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
>>> index f659e60..6688b60 100644
>>> --- a/drivers/lightnvm/core.c
>>> +++ b/drivers/lightnvm/core.c
>>> @@ -721,8 +721,11 @@ static long nvm_ioctl_get_devices(struct file *file, void __user *arg)
>>>
>>>   	devices->nr_devices = i;
>>>
>>> -	if (copy_to_user(arg, devices, sizeof(struct nvm_ioctl_get_devices)))
>>> +	if (copy_to_user(arg, devices,
>>> +			 sizeof(struct nvm_ioctl_get_devices))) {
>>> +		kfree(devices);
>>>   		return -EFAULT;
>>> +	}
>>>
>>>   	kfree(devices);
>>>   	return 0;
>>>
>>
>> Thanks Sudip, it seems like this error is in some of the others
>> ioctl's as well. Do you want to send a patch with the fixes for them
>> all?

Sure, That'll be great. Then I'll apply it.

>
> I can find a similar error in nvm_ioctl_info(). I will have a close look
> tomorrow and send a patch. Is this patch applied or should I send a
> combined patch fixing all these similar errors?

A combined will be great. It fixes the same type of error. Thank you.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-23 18:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-23 10:35 [PATCH] lightnvm: fix memory leak Sudip Mukherjee
2015-11-23 15:13 ` Matias Bjørling
2015-11-23 16:40   ` Sudip Mukherjee
2015-11-23 18:41     ` Matias

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.