* [PATCH] drm/amdgpu: check the result of copy_from_user in secure display debugfs
@ 2021-01-04 17:43 Alex Deucher
2021-01-04 17:47 ` Christian König
0 siblings, 1 reply; 2+ messages in thread
From: Alex Deucher @ 2021-01-04 17:43 UTC (permalink / raw)
To: amd-gfx; +Cc: Alex Deucher
Make sure the copy succeeded. Also fixes a warning.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
index 455978781380..1f98ce4e56f2 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
@@ -101,7 +101,9 @@ static ssize_t amdgpu_securedisplay_debugfs_write(struct file *f, const char __u
return -EINVAL;
memset(str, 0, sizeof(str));
- copy_from_user(str, buf, size);
+ ret = copy_from_user(str, buf, size);
+ if (ret >= size)
+ return -EINVAL;
ret = pm_runtime_get_sync(dev->dev);
if (ret < 0) {
--
2.29.2
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] drm/amdgpu: check the result of copy_from_user in secure display debugfs
2021-01-04 17:43 [PATCH] drm/amdgpu: check the result of copy_from_user in secure display debugfs Alex Deucher
@ 2021-01-04 17:47 ` Christian König
0 siblings, 0 replies; 2+ messages in thread
From: Christian König @ 2021-01-04 17:47 UTC (permalink / raw)
To: Alex Deucher, amd-gfx; +Cc: Alex Deucher
Am 04.01.21 um 18:43 schrieb Alex Deucher:
> Make sure the copy succeeded. Also fixes a warning.
>
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
> index 455978781380..1f98ce4e56f2 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_securedisplay.c
> @@ -101,7 +101,9 @@ static ssize_t amdgpu_securedisplay_debugfs_write(struct file *f, const char __u
> return -EINVAL;
>
> memset(str, 0, sizeof(str));
> - copy_from_user(str, buf, size);
> + ret = copy_from_user(str, buf, size);
> + if (ret >= size)
> + return -EINVAL;
IIRC copy_from_user return the number of bytes which couldn't be copied.
E.g. theta should be if (ret) return -EFAULT.
Christian.
>
> ret = pm_runtime_get_sync(dev->dev);
> if (ret < 0) {
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-01-04 17:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-04 17:43 [PATCH] drm/amdgpu: check the result of copy_from_user in secure display debugfs Alex Deucher
2021-01-04 17:47 ` Christian König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox