From: "Christian König" <ckoenig.leichtzumerken-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Tom St Denis <tstdenis-5C7GfCeVMHo@public.gmane.org>,
amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amd/amdgpu: Fix amdgpu_debugfs_gpr_read debugfs entry
Date: Wed, 11 Apr 2018 13:58:28 +0200 [thread overview]
Message-ID: <170cd64d-8d48-b2da-bbd9-d7e934628f6e@gmail.com> (raw)
In-Reply-To: <aa2b6402-dd7c-d9f1-760a-4d043865eadd-5C7GfCeVMHo@public.gmane.org>
>
> - if (size & 3 || *pos & 3)
> + if (size & 3 || size > (4 * AMDGPU_DEBUGFS_MAX_SGPR_READ))
I think checking the position alignment here is still necessary, cause
we can't read from not dw boundaries don't we?
Christian.
Am 11.04.2018 um 13:55 schrieb Tom St Denis:
> Ping?
>
> On 04/09/2018 08:16 AM, Tom St Denis wrote:
>> We don't need to check the alignment of the offset and there was
>> potential a buffer overflow as well.
>>
>> Signed-off-by: Tom St Denis <tom.stdenis@amd.com>
>> ---
>> drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> index c98e59721444..b1ea300008e5 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
>> @@ -507,6 +507,9 @@ static ssize_t amdgpu_debugfs_wave_read(struct
>> file *f, char __user *buf,
>> return result;
>> }
>> +// read at most 1024 words
>> +#define AMDGPU_DEBUGFS_MAX_SGPR_READ 1024
>> +
>> static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user
>> *buf,
>> size_t size, loff_t *pos)
>> {
>> @@ -515,7 +518,7 @@ static ssize_t amdgpu_debugfs_gpr_read(struct
>> file *f, char __user *buf,
>> ssize_t result = 0;
>> uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
>> - if (size & 3 || *pos & 3)
>> + if (size & 3 || size > (4 * AMDGPU_DEBUGFS_MAX_SGPR_READ))
>> return -EINVAL;
>> /* decode offset */
>> @@ -528,7 +531,8 @@ 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 = kmalloc_array(AMDGPU_DEBUGFS_MAX_SGPR_READ, 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
next prev parent reply other threads:[~2018-04-11 11:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-09 12:16 [PATCH] drm/amd/amdgpu: Fix amdgpu_debugfs_gpr_read debugfs entry Tom St Denis
[not found] ` <20180409121621.7514-1-tom.stdenis-5C7GfCeVMHo@public.gmane.org>
2018-04-11 11:55 ` Tom St Denis
[not found] ` <aa2b6402-dd7c-d9f1-760a-4d043865eadd-5C7GfCeVMHo@public.gmane.org>
2018-04-11 11:58 ` Christian König [this message]
[not found] ` <170cd64d-8d48-b2da-bbd9-d7e934628f6e-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-04-11 12:03 ` Tom St Denis
[not found] ` <486a6087-e3a0-872d-6f07-b141a2a3e712-5C7GfCeVMHo@public.gmane.org>
2018-04-11 12:17 ` Christian König
[not found] ` <ae463873-8fd3-9de5-a1fd-f4d10a5f8675-5C7GfCeVMHo@public.gmane.org>
2018-04-11 15:03 ` Tom St Denis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=170cd64d-8d48-b2da-bbd9-d7e934628f6e@gmail.com \
--to=ckoenig.leichtzumerken-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=christian.koenig-5C7GfCeVMHo@public.gmane.org \
--cc=tstdenis-5C7GfCeVMHo@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.