diff mbox series

sound:Fix a memory leak related to variable data

Message ID 20240323080413.641089-1-lumingyindetect@163.com (mailing list archive)
State New, archived
Headers show
Series sound:Fix a memory leak related to variable data | expand

Commit Message

LuMingYin March 23, 2024, 8:04 a.m. UTC
In the file /linux/sound/core/control_compat.c, a pointer named 'data' is defined at line 82. This pointer allocates a block of dynamic memory using the 'kzalloc' function at line 85. When the if statement at line 86 returns false, it indicates successful allocation of the dynamic memory area pointed to by 'data'. However, when the if statement at line 90 returns true, the program returns at line 91. During this process, the dynamic memory area pointed to by 'data' is neither used as in the switch statement at line 108 nor deallocated, leading to a memory leak bug. The if statement at line 95 also has the same issue. This commit fixes this problem.

Signed-off-by: LuMingYin <lumingyindetect@163.com>
---
 sound/core/control_compat.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Comments

Takashi Iwai March 23, 2024, 9:29 a.m. UTC | #1
On Sat, 23 Mar 2024 09:04:13 +0100,
LuMingYin wrote:
> 
> In the file /linux/sound/core/control_compat.c, a pointer named 'data' is defined at line 82. This pointer allocates a block of dynamic memory using the 'kzalloc' function at line 85. When the if statement at line 86 returns false, it indicates successful allocation of the dynamic memory area pointed to by 'data'. However, when the if statement at line 90 returns true, the program returns at line 91. During this process, the dynamic memory area pointed to by 'data' is neither used as in the switch statement at line 108 nor deallocated, leading to a memory leak bug. The if statement at line 95 also has the same issue. This commit fixes this problem.
> 
> Signed-off-by: LuMingYin <lumingyindetect@163.com>

It's using the new automatic free mechanism.  See the commit
1052d9882269 ("ALSA: control: Use automatic cleanup of kfree()")


thanks,

Takashi


> ---
>  sound/core/control_compat.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/core/control_compat.c b/sound/core/control_compat.c
> index 934bb945e702..32113eb06f68 100644
> --- a/sound/core/control_compat.c
> +++ b/sound/core/control_compat.c
> @@ -87,13 +87,19 @@ static int snd_ctl_elem_info_compat(struct snd_ctl_file *ctl,
>  		return -ENOMEM;
>  
>  	/* copy id */
> -	if (copy_from_user(&data->id, &data32->id, sizeof(data->id)))
> +	if (copy_from_user(&data->id, &data32->id, sizeof(data->id))){
> +		kfree(data);
> +		data = NULL;
>  		return -EFAULT;
> +	}
>  	/* we need to copy the item index.
>  	 * hope this doesn't break anything..
>  	 */
> -	if (get_user(data->value.enumerated.item, &data32->value.enumerated.item))
> +	if (get_user(data->value.enumerated.item, &data32->value.enumerated.item)){
> +		kfree(data);
> +		data = NULL;
>  		return -EFAULT;
> +	}
>  
>  	err = snd_ctl_elem_info(ctl, data);
>  	if (err < 0)
> -- 
> 2.25.1
>
diff mbox series

Patch

diff --git a/sound/core/control_compat.c b/sound/core/control_compat.c
index 934bb945e702..32113eb06f68 100644
--- a/sound/core/control_compat.c
+++ b/sound/core/control_compat.c
@@ -87,13 +87,19 @@  static int snd_ctl_elem_info_compat(struct snd_ctl_file *ctl,
 		return -ENOMEM;
 
 	/* copy id */
-	if (copy_from_user(&data->id, &data32->id, sizeof(data->id)))
+	if (copy_from_user(&data->id, &data32->id, sizeof(data->id))){
+		kfree(data);
+		data = NULL;
 		return -EFAULT;
+	}
 	/* we need to copy the item index.
 	 * hope this doesn't break anything..
 	 */
-	if (get_user(data->value.enumerated.item, &data32->value.enumerated.item))
+	if (get_user(data->value.enumerated.item, &data32->value.enumerated.item)){
+		kfree(data);
+		data = NULL;
 		return -EFAULT;
+	}
 
 	err = snd_ctl_elem_info(ctl, data);
 	if (err < 0)