linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] vduse: prevent uninitialized memory accesses
@ 2022-08-26 16:16 Maxime Coquelin
  2022-08-27  6:54 ` Dan Carpenter
  2022-08-29  0:44 ` Jason Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Maxime Coquelin @ 2022-08-26 16:16 UTC (permalink / raw)
  To: linux-kernel, virtualization, elic, guanjun, parav, gautam.dawar,
	dan.carpenter, xieyongji, jasowang, mst
  Cc: Maxime Coquelin

If the VDUSE application provides a smaller config space
than the driver expects, the driver may use uninitialized
memory from the stack.

This patch prevents it by initializing the buffer passed by
the driver to store the config value.

Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
---
 drivers/vdpa/vdpa_user/vduse_dev.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/vdpa/vdpa_user/vduse_dev.c b/drivers/vdpa/vdpa_user/vduse_dev.c
index 41c0b29739f1..35dceee3ed56 100644
--- a/drivers/vdpa/vdpa_user/vduse_dev.c
+++ b/drivers/vdpa/vdpa_user/vduse_dev.c
@@ -673,10 +673,15 @@ static void vduse_vdpa_get_config(struct vdpa_device *vdpa, unsigned int offset,
 {
 	struct vduse_dev *dev = vdpa_to_vduse(vdpa);
 
-	if (offset > dev->config_size ||
-	    len > dev->config_size - offset)
+	/* Initialize the buffer in case of partial copy. */
+	memset(buf, 0, len);
+
+	if (offset > dev->config_size)
 		return;
 
+	if (len > dev->config_size - offset)
+		len = dev->config_size - offset;
+
 	memcpy(buf, dev->config + offset, len);
 }
 
-- 
2.37.1


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

* Re: [PATCH] vduse: prevent uninitialized memory accesses
  2022-08-26 16:16 [PATCH] vduse: prevent uninitialized memory accesses Maxime Coquelin
@ 2022-08-27  6:54 ` Dan Carpenter
  2022-08-29  7:23   ` Maxime Coquelin
  2022-08-29  0:44 ` Jason Wang
  1 sibling, 1 reply; 4+ messages in thread
From: Dan Carpenter @ 2022-08-27  6:54 UTC (permalink / raw)
  To: Maxime Coquelin
  Cc: linux-kernel, virtualization, elic, guanjun, parav, gautam.dawar,
	xieyongji, jasowang, mst

On Fri, Aug 26, 2022 at 06:16:05PM +0200, Maxime Coquelin wrote:
> If the VDUSE application provides a smaller config space
> than the driver expects, the driver may use uninitialized
> memory from the stack.
> 
> This patch prevents it by initializing the buffer passed by
> the driver to store the config value.
> 
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>

This sounds like it needs a Fixes tag?

regards,
dan carpenter


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

* Re: [PATCH] vduse: prevent uninitialized memory accesses
  2022-08-26 16:16 [PATCH] vduse: prevent uninitialized memory accesses Maxime Coquelin
  2022-08-27  6:54 ` Dan Carpenter
@ 2022-08-29  0:44 ` Jason Wang
  1 sibling, 0 replies; 4+ messages in thread
From: Jason Wang @ 2022-08-29  0:44 UTC (permalink / raw)
  To: Maxime Coquelin
  Cc: linux-kernel, virtualization, Eli Cohen, Guanjun, Parav Pandit,
	Gautam Dawar, Dan Carpenter, Yongji Xie, mst

On Sat, Aug 27, 2022 at 12:16 AM Maxime Coquelin
<maxime.coquelin@redhat.com> wrote:
>
> If the VDUSE application provides a smaller config space
> than the driver expects, the driver may use uninitialized
> memory from the stack.
>
> This patch prevents it by initializing the buffer passed by
> the driver to store the config value.
>
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Acked-by: Jason Wang <jasowang@redhat.com>

> ---
>  drivers/vdpa/vdpa_user/vduse_dev.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/vdpa/vdpa_user/vduse_dev.c b/drivers/vdpa/vdpa_user/vduse_dev.c
> index 41c0b29739f1..35dceee3ed56 100644
> --- a/drivers/vdpa/vdpa_user/vduse_dev.c
> +++ b/drivers/vdpa/vdpa_user/vduse_dev.c
> @@ -673,10 +673,15 @@ static void vduse_vdpa_get_config(struct vdpa_device *vdpa, unsigned int offset,
>  {
>         struct vduse_dev *dev = vdpa_to_vduse(vdpa);
>
> -       if (offset > dev->config_size ||
> -           len > dev->config_size - offset)
> +       /* Initialize the buffer in case of partial copy. */
> +       memset(buf, 0, len);
> +
> +       if (offset > dev->config_size)
>                 return;
>
> +       if (len > dev->config_size - offset)
> +               len = dev->config_size - offset;
> +
>         memcpy(buf, dev->config + offset, len);
>  }
>
> --
> 2.37.1
>


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

* Re: [PATCH] vduse: prevent uninitialized memory accesses
  2022-08-27  6:54 ` Dan Carpenter
@ 2022-08-29  7:23   ` Maxime Coquelin
  0 siblings, 0 replies; 4+ messages in thread
From: Maxime Coquelin @ 2022-08-29  7:23 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: linux-kernel, virtualization, elic, guanjun, parav, gautam.dawar,
	xieyongji, jasowang, mst



On 8/27/22 08:54, Dan Carpenter wrote:
> On Fri, Aug 26, 2022 at 06:16:05PM +0200, Maxime Coquelin wrote:
>> If the VDUSE application provides a smaller config space
>> than the driver expects, the driver may use uninitialized
>> memory from the stack.
>>
>> This patch prevents it by initializing the buffer passed by
>> the driver to store the config value.
>>
>> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> 
> This sounds like it needs a Fixes tag?

Yes, I actually did it, but somehow forgot to generate the patch bedore
posting.

I'll post a v2 soon.

Thanks,
Maxime

> regards,
> dan carpenter
> 


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

end of thread, other threads:[~2022-08-29  7:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-26 16:16 [PATCH] vduse: prevent uninitialized memory accesses Maxime Coquelin
2022-08-27  6:54 ` Dan Carpenter
2022-08-29  7:23   ` Maxime Coquelin
2022-08-29  0:44 ` Jason Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).