public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] hurd: writev: Get rid of alloca
@ 2023-06-08 15:58 Joe Simmons-Talbott
  2023-06-19  0:46 ` Samuel Thibault
  2023-06-19 12:24 ` Adhemerval Zanella Netto
  0 siblings, 2 replies; 4+ messages in thread
From: Joe Simmons-Talbott @ 2023-06-08 15:58 UTC (permalink / raw)
  To: libc-alpha; +Cc: Joe Simmons-Talbott

Use a scratch_buffer rather than alloca to avoid potential stack
overflows.

Checked on i686-gnu and x86_64-linux-gnu
---
 sysdeps/posix/writev.c | 35 ++++++++++++-----------------------
 1 file changed, 12 insertions(+), 23 deletions(-)

diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c
index 53e090c087..0cee0aa692 100644
--- a/sysdeps/posix/writev.c
+++ b/sysdeps/posix/writev.c
@@ -19,19 +19,13 @@
 #include <unistd.h>
 #include <string.h>
 #include <limits.h>
+#include <scratch_buffer.h>
 #include <stdbool.h>
 #include <sys/param.h>
 #include <sys/uio.h>
 #include <errno.h>
 
 
-static void
-ifree (char **ptrp)
-{
-  free (*ptrp);
-}
-
-
 /* Write data pointed by the buffers described by VECTOR, which
    is a vector of COUNT 'struct iovec's, to file descriptor FD.
    The data is written in the order specified.
@@ -53,22 +47,15 @@ __writev (int fd, const struct iovec *vector, int count)
       bytes += vector[i].iov_len;
     }
 
-  /* Allocate a temporary buffer to hold the data.  We should normally
-     use alloca since it's faster and does not require synchronization
-     with other threads.  But we cannot if the amount of memory
-     required is too large.  */
-  char *buffer;
-  char *malloced_buffer __attribute__ ((__cleanup__ (ifree))) = NULL;
-  if (__libc_use_alloca (bytes))
-    buffer = (char *) __alloca (bytes);
-  else
-    {
-      malloced_buffer = buffer = (char *) malloc (bytes);
-      if (buffer == NULL)
-	/* XXX I don't know whether it is acceptable to try writing
-	   the data in chunks.  Probably not so we just fail here.  */
-	return -1;
-    }
+  /* Allocate a temporary buffer to hold the data.  Use a scratch_buffer
+     since it's faster for small buffer sizes but can handle larger
+     allocations as well.  */
+     
+  struct scratch_buffer buf;
+  scratch_buffer_init (&buf);
+  if (!scratch_buffer_set_array_size (&buf, 1, bytes))
+    return -1;
+  char *buffer = buf.data;
 
   /* Copy the data into BUFFER.  */
   size_t to_copy = bytes;
@@ -86,6 +73,8 @@ __writev (int fd, const struct iovec *vector, int count)
 
   ssize_t bytes_written = __write (fd, buffer, bytes);
 
+  scratch_buffer_free (&buf);
+
   return bytes_written;
 }
 libc_hidden_def (__writev)
-- 
2.39.2


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

* Re: [PATCH] hurd: writev: Get rid of alloca
  2023-06-08 15:58 [PATCH] hurd: writev: Get rid of alloca Joe Simmons-Talbott
@ 2023-06-19  0:46 ` Samuel Thibault
  2023-06-19 12:24 ` Adhemerval Zanella Netto
  1 sibling, 0 replies; 4+ messages in thread
From: Samuel Thibault @ 2023-06-19  0:46 UTC (permalink / raw)
  To: Joe Simmons-Talbott; +Cc: libc-alpha

Hello,

Joe Simmons-Talbott via Libc-alpha, le jeu. 08 juin 2023 11:58:43 -0400, a ecrit:
> Use a scratch_buffer rather than alloca to avoid potential stack
> overflows.
> 
> Checked on i686-gnu and x86_64-linux-gnu

Applied after fixing spaces and comments, thanks!

Samuel

> ---
>  sysdeps/posix/writev.c | 35 ++++++++++++-----------------------
>  1 file changed, 12 insertions(+), 23 deletions(-)
> 
> diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c
> index 53e090c087..0cee0aa692 100644
> --- a/sysdeps/posix/writev.c
> +++ b/sysdeps/posix/writev.c
> @@ -19,19 +19,13 @@
>  #include <unistd.h>
>  #include <string.h>
>  #include <limits.h>
> +#include <scratch_buffer.h>
>  #include <stdbool.h>
>  #include <sys/param.h>
>  #include <sys/uio.h>
>  #include <errno.h>
>  
>  
> -static void
> -ifree (char **ptrp)
> -{
> -  free (*ptrp);
> -}
> -
> -
>  /* Write data pointed by the buffers described by VECTOR, which
>     is a vector of COUNT 'struct iovec's, to file descriptor FD.
>     The data is written in the order specified.
> @@ -53,22 +47,15 @@ __writev (int fd, const struct iovec *vector, int count)
>        bytes += vector[i].iov_len;
>      }
>  
> -  /* Allocate a temporary buffer to hold the data.  We should normally
> -     use alloca since it's faster and does not require synchronization
> -     with other threads.  But we cannot if the amount of memory
> -     required is too large.  */
> -  char *buffer;
> -  char *malloced_buffer __attribute__ ((__cleanup__ (ifree))) = NULL;
> -  if (__libc_use_alloca (bytes))
> -    buffer = (char *) __alloca (bytes);
> -  else
> -    {
> -      malloced_buffer = buffer = (char *) malloc (bytes);
> -      if (buffer == NULL)
> -	/* XXX I don't know whether it is acceptable to try writing
> -	   the data in chunks.  Probably not so we just fail here.  */
> -	return -1;
> -    }
> +  /* Allocate a temporary buffer to hold the data.  Use a scratch_buffer
> +     since it's faster for small buffer sizes but can handle larger
> +     allocations as well.  */
> +     
> +  struct scratch_buffer buf;
> +  scratch_buffer_init (&buf);
> +  if (!scratch_buffer_set_array_size (&buf, 1, bytes))
> +    return -1;
> +  char *buffer = buf.data;
>  
>    /* Copy the data into BUFFER.  */
>    size_t to_copy = bytes;
> @@ -86,6 +73,8 @@ __writev (int fd, const struct iovec *vector, int count)
>  
>    ssize_t bytes_written = __write (fd, buffer, bytes);
>  
> +  scratch_buffer_free (&buf);
> +
>    return bytes_written;
>  }
>  libc_hidden_def (__writev)
> -- 
> 2.39.2
> 

-- 
Samuel
---
Pour une évaluation indépendante, transparente et rigoureuse !
Je soutiens la Commission d'Évaluation de l'Inria.

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

* Re: [PATCH] hurd: writev: Get rid of alloca
  2023-06-08 15:58 [PATCH] hurd: writev: Get rid of alloca Joe Simmons-Talbott
  2023-06-19  0:46 ` Samuel Thibault
@ 2023-06-19 12:24 ` Adhemerval Zanella Netto
  2023-06-19 14:22   ` Joe Simmons-Talbott
  1 sibling, 1 reply; 4+ messages in thread
From: Adhemerval Zanella Netto @ 2023-06-19 12:24 UTC (permalink / raw)
  To: Joe Simmons-Talbott, libc-alpha, Samuel Thibault



On 08/06/23 12:58, Joe Simmons-Talbott via Libc-alpha wrote:
> Use a scratch_buffer rather than alloca to avoid potential stack
> overflows.
> 
> Checked on i686-gnu and x86_64-linux-gnu
> ---
>  sysdeps/posix/writev.c | 35 ++++++++++++-----------------------
>  1 file changed, 12 insertions(+), 23 deletions(-)
> 
> diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c
> index 53e090c087..0cee0aa692 100644
> --- a/sysdeps/posix/writev.c
> +++ b/sysdeps/posix/writev.c
> @@ -19,19 +19,13 @@
>  #include <unistd.h>
>  #include <string.h>
>  #include <limits.h>
> +#include <scratch_buffer.h>
>  #include <stdbool.h>
>  #include <sys/param.h>
>  #include <sys/uio.h>
>  #include <errno.h>
>  
>  
> -static void
> -ifree (char **ptrp)
> -{
> -  free (*ptrp);
> -}
> -
> -
>  /* Write data pointed by the buffers described by VECTOR, which
>     is a vector of COUNT 'struct iovec's, to file descriptor FD.
>     The data is written in the order specified.
> @@ -53,22 +47,15 @@ __writev (int fd, const struct iovec *vector, int count)
>        bytes += vector[i].iov_len;
>      }
>  
> -  /* Allocate a temporary buffer to hold the data.  We should normally
> -     use alloca since it's faster and does not require synchronization
> -     with other threads.  But we cannot if the amount of memory
> -     required is too large.  */
> -  char *buffer;
> -  char *malloced_buffer __attribute__ ((__cleanup__ (ifree))) = NULL;
> -  if (__libc_use_alloca (bytes))
> -    buffer = (char *) __alloca (bytes);
> -  else
> -    {
> -      malloced_buffer = buffer = (char *) malloc (bytes);
> -      if (buffer == NULL)
> -	/* XXX I don't know whether it is acceptable to try writing
> -	   the data in chunks.  Probably not so we just fail here.  */
> -	return -1;
> -    }

I am not sure if this is fully correct, since writev is a 'shall occurs' 
cancellation entrypoint and cancelling a large writev operation now will
leak memory.  So I think we should either continue to keep the cleanup 
handler or define IOV_MAX on Hurd and use it do define a static buffer.

> +  /* Allocate a temporary buffer to hold the data.  Use a scratch_buffer
> +     since it's faster for small buffer sizes but can handle larger
> +     allocations as well.  */
> +     
> +  struct scratch_buffer buf;
> +  scratch_buffer_init (&buf);
> +  if (!scratch_buffer_set_array_size (&buf, 1, bytes))
> +    return -1;
> +  char *buffer = buf.data;
>  
>    /* Copy the data into BUFFER.  */
>    size_t to_copy = bytes;
> @@ -86,6 +73,8 @@ __writev (int fd, const struct iovec *vector, int count)
>  
>    ssize_t bytes_written = __write (fd, buffer, bytes);
>  
> +  scratch_buffer_free (&buf);
> +
>    return bytes_written;
>  }
>  libc_hidden_def (__writev)

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

* Re: [PATCH] hurd: writev: Get rid of alloca
  2023-06-19 12:24 ` Adhemerval Zanella Netto
@ 2023-06-19 14:22   ` Joe Simmons-Talbott
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Simmons-Talbott @ 2023-06-19 14:22 UTC (permalink / raw)
  To: Adhemerval Zanella Netto; +Cc: libc-alpha, Samuel Thibault

On Mon, Jun 19, 2023 at 09:24:34AM -0300, Adhemerval Zanella Netto wrote:
> 
> 
> On 08/06/23 12:58, Joe Simmons-Talbott via Libc-alpha wrote:
> > Use a scratch_buffer rather than alloca to avoid potential stack
> > overflows.
> > 
> > Checked on i686-gnu and x86_64-linux-gnu
> > ---
> >  sysdeps/posix/writev.c | 35 ++++++++++++-----------------------
> >  1 file changed, 12 insertions(+), 23 deletions(-)
> > 
> > diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c
> > index 53e090c087..0cee0aa692 100644
> > --- a/sysdeps/posix/writev.c
> > +++ b/sysdeps/posix/writev.c
> > @@ -19,19 +19,13 @@
> >  #include <unistd.h>
> >  #include <string.h>
> >  #include <limits.h>
> > +#include <scratch_buffer.h>
> >  #include <stdbool.h>
> >  #include <sys/param.h>
> >  #include <sys/uio.h>
> >  #include <errno.h>
> >  
> >  
> > -static void
> > -ifree (char **ptrp)
> > -{
> > -  free (*ptrp);
> > -}
> > -
> > -
> >  /* Write data pointed by the buffers described by VECTOR, which
> >     is a vector of COUNT 'struct iovec's, to file descriptor FD.
> >     The data is written in the order specified.
> > @@ -53,22 +47,15 @@ __writev (int fd, const struct iovec *vector, int count)
> >        bytes += vector[i].iov_len;
> >      }
> >  
> > -  /* Allocate a temporary buffer to hold the data.  We should normally
> > -     use alloca since it's faster and does not require synchronization
> > -     with other threads.  But we cannot if the amount of memory
> > -     required is too large.  */
> > -  char *buffer;
> > -  char *malloced_buffer __attribute__ ((__cleanup__ (ifree))) = NULL;
> > -  if (__libc_use_alloca (bytes))
> > -    buffer = (char *) __alloca (bytes);
> > -  else
> > -    {
> > -      malloced_buffer = buffer = (char *) malloc (bytes);
> > -      if (buffer == NULL)
> > -	/* XXX I don't know whether it is acceptable to try writing
> > -	   the data in chunks.  Probably not so we just fail here.  */
> > -	return -1;
> > -    }
> 
> I am not sure if this is fully correct, since writev is a 'shall occurs' 
> cancellation entrypoint and cancelling a large writev operation now will
> leak memory.  So I think we should either continue to keep the cleanup 
> handler or define IOV_MAX on Hurd and use it do define a static buffer.

Thanks for catching that.  I'll propose a patch to fix it shortly.

Thanks,
Joe


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

end of thread, other threads:[~2023-06-19 14:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-08 15:58 [PATCH] hurd: writev: Get rid of alloca Joe Simmons-Talbott
2023-06-19  0:46 ` Samuel Thibault
2023-06-19 12:24 ` Adhemerval Zanella Netto
2023-06-19 14:22   ` Joe Simmons-Talbott

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 read-only IMAP folder(s) and NNTP newsgroup(s).