All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: fix a potential information leaking bug
@ 2019-07-27  9:30 Wang Xiayang
       [not found] ` <20190727093030.6256-1-xywang.sjtu-u2tTgNRCH2jM1kAEIRd3EQ@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Wang Xiayang @ 2019-07-27  9:30 UTC (permalink / raw)
  Cc: alexander.deucher-5C7GfCeVMHo, David1.Zhou-5C7GfCeVMHo,
	Wang Xiayang, christian.koenig-5C7GfCeVMHo,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Coccinelle reports a path that the array "data" is never initialized.
The path skips the checks in the conditional branches when either
of callback functions, read_wave_vgprs and read_wave_sgprs, is not
registered. Later, the uninitialized "data" array is read
in the while-loop below and passed to put_user().

Fix the path by allocating the array with kcalloc().

The patch is simplier than adding a fall-back branch that explicitly
calls memset(data, 0, ...). Also it does not need the multiplication
1024*sizeof(*data) as the size parameter for memset() though there is
no risk of integer overflow.

Signed-off-by: Wang Xiayang <xywang.sjtu@sjtu.edu.cn>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
index 6d54decef7f8..5652cc72ed3a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
@@ -707,7 +707,7 @@ static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
 	thread = (*pos & GENMASK_ULL(59, 52)) >> 52;
 	bank = (*pos & GENMASK_ULL(61, 60)) >> 60;
 
-	data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
+	data = kcalloc(1024, sizeof(*data), GFP_KERNEL);
 	if (!data)
 		return -ENOMEM;
 
-- 
2.11.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] drm/amdgpu: fix a potential information leaking bug
       [not found] ` <20190727093030.6256-1-xywang.sjtu-u2tTgNRCH2jM1kAEIRd3EQ@public.gmane.org>
@ 2019-07-27  9:37   ` Chunming Zhou
       [not found]     ` <44b2a1d2-415f-3ae7-fa84-a0f4711ef4a9-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Chunming Zhou @ 2019-07-27  9:37 UTC (permalink / raw)
  To: Wang Xiayang
  Cc: Deucher, Alexander, Zhou, David(ChunMing),
	Koenig, Christian, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW


在 2019/7/27 17:30, Wang Xiayang 写道:
> Coccinelle reports a path that the array "data" is never initialized.
> The path skips the checks in the conditional branches when either
> of callback functions, read_wave_vgprs and read_wave_sgprs, is not
> registered. Later, the uninitialized "data" array is read
> in the while-loop below and passed to put_user().
>
> Fix the path by allocating the array with kcalloc().
>
> The patch is simplier than adding a fall-back branch that explicitly
> calls memset(data, 0, ...). Also it does not need the multiplication
> 1024*sizeof(*data) as the size parameter for memset() though there is
> no risk of integer overflow.
>
> Signed-off-by: Wang Xiayang <xywang.sjtu@sjtu.edu.cn>

Reviewed-by: Chunming Zhou <david1.zhou@amd.com>

-David

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> index 6d54decef7f8..5652cc72ed3a 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> @@ -707,7 +707,7 @@ static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
>   	thread = (*pos & GENMASK_ULL(59, 52)) >> 52;
>   	bank = (*pos & GENMASK_ULL(61, 60)) >> 60;
>   
> -	data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
> +	data = kcalloc(1024, sizeof(*data), GFP_KERNEL);
>   	if (!data)
>   		return -ENOMEM;
>   
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] drm/amdgpu: fix a potential information leaking bug
       [not found]     ` <44b2a1d2-415f-3ae7-fa84-a0f4711ef4a9-5C7GfCeVMHo@public.gmane.org>
@ 2019-07-30 11:58       ` Christian König
  0 siblings, 0 replies; 3+ messages in thread
From: Christian König @ 2019-07-30 11:58 UTC (permalink / raw)
  To: Chunming Zhou, Wang Xiayang
  Cc: Deucher, Alexander, Zhou, David(ChunMing),
	Koenig, Christian, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Am 27.07.19 um 11:37 schrieb Chunming Zhou:
> 在 2019/7/27 17:30, Wang Xiayang 写道:
>> Coccinelle reports a path that the array "data" is never initialized.
>> The path skips the checks in the conditional branches when either
>> of callback functions, read_wave_vgprs and read_wave_sgprs, is not
>> registered. Later, the uninitialized "data" array is read
>> in the while-loop below and passed to put_user().
>>
>> Fix the path by allocating the array with kcalloc().
>>
>> The patch is simplier than adding a fall-back branch that explicitly
>> calls memset(data, 0, ...). Also it does not need the multiplication
>> 1024*sizeof(*data) as the size parameter for memset() though there is
>> no risk of integer overflow.
>>
>> Signed-off-by: Wang Xiayang <xywang.sjtu@sjtu.edu.cn>
> Reviewed-by: Chunming Zhou <david1.zhou@amd.com>

Picked that up, reviewed it and pushed it into our internal branch.

Christian.

>
> -David
>
>> ---
>>    drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 2 +-
>>    1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> index 6d54decef7f8..5652cc72ed3a 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> @@ -707,7 +707,7 @@ static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
>>    	thread = (*pos & GENMASK_ULL(59, 52)) >> 52;
>>    	bank = (*pos & GENMASK_ULL(61, 60)) >> 60;
>>    
>> -	data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
>> +	data = kcalloc(1024, sizeof(*data), GFP_KERNEL);
>>    	if (!data)
>>    		return -ENOMEM;
>>    
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2019-07-30 11:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-27  9:30 [PATCH] drm/amdgpu: fix a potential information leaking bug Wang Xiayang
     [not found] ` <20190727093030.6256-1-xywang.sjtu-u2tTgNRCH2jM1kAEIRd3EQ@public.gmane.org>
2019-07-27  9:37   ` Chunming Zhou
     [not found]     ` <44b2a1d2-415f-3ae7-fa84-a0f4711ef4a9-5C7GfCeVMHo@public.gmane.org>
2019-07-30 11:58       ` Christian König

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.