public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella Netto <adhemerval.zanella@linaro.org>
To: Joe Simmons-Talbott <josimmon@redhat.com>, libc-alpha@sourceware.org
Cc: Paul Eggert <eggert@cs.ucla.edu>
Subject: Re: [PATCH] time: strftime_l: Avoid an unbounded alloca.
Date: Tue, 23 May 2023 16:11:05 -0300	[thread overview]
Message-ID: <bf2ad70d-4628-704a-80e0-28ab1629daf9@linaro.org> (raw)
In-Reply-To: <20230522183245.4161004-1-josimmon@redhat.com>



On 22/05/23 15:32, Joe Simmons-Talbott via Libc-alpha wrote:
> Avoid possible stack overflow by removing alloca() and converting to
> wide characters within the buffer.
> 
> Suggested-by: Paul Eggert <eggert@cs.ucla.edu>
> ---
> Supersedes: https://sourceware.org/pipermail/libc-alpha/2023-May/147996.html
>  time/strftime_l.c | 39 +++++++++++++++++++++++++--------------
>  1 file changed, 25 insertions(+), 14 deletions(-)
> 
> diff --git a/time/strftime_l.c b/time/strftime_l.c
> index 402c6c4111..bb8e9e7f25 100644
> --- a/time/strftime_l.c
> +++ b/time/strftime_l.c
> @@ -267,15 +267,6 @@ static const CHAR_T zeroes[16] = /* "0000000000000000" */
>  #  undef __mbsrtowcs_l
>  #  define __mbsrtowcs_l(d, s, l, st, loc) __mbsrtowcs (d, s, l, st)
>  # endif
> -# define widen(os, ws, l) \
> -  {									      \
> -    mbstate_t __st;							      \
> -    const char *__s = os;						      \
> -    memset (&__st, '\0', sizeof (__st));				      \
> -    l = __mbsrtowcs_l (NULL, &__s, 0, &__st, loc);			      \
> -    ws = alloca ((l + 1) * sizeof (wchar_t));				      \
> -    (void) __mbsrtowcs_l (ws, &__s, l, &__st, loc);			      \
> -  }
>  #endif
>  
>  
> @@ -1342,11 +1333,31 @@ __strftime_internal (CHAR_T *s, size_t maxsize, const CHAR_T *format,
>  #ifdef COMPILE_WIDE
>  	  {
>  	    /* The zone string is always given in multibyte form.  We have
> -	       to transform it first.  */
> -	    wchar_t *wczone;
> -	    size_t len;
> -	    widen (zone, wczone, len);
> -	    cpy (len, wczone);
> +               to convert it to wide character.  */
> +            size_t w = pad == L_('-') || width < 0 ? 0 : width;
> +            char const *z = zone;
> +            mbstate_t st = {0};
> +            size_t len = __mbsrtowcs_l (p, &z, maxsize - i, &st, loc);
> +            if (len == (size_t) -1)
> +              return 0;
> +            size_t incr = len < w ? w : len;
> +            if (incr >= maxsize - i)
> +              {
> +                errno = ERANGE;
> +                return 0;
> +              }
> +            if (p)
> +              {
> +                if (len < w)
> +                  {
> +                    size_t delta = w - len;
> +                    wmemmove (p + delta, p, len);


This triggers a local PLT failure:

$ cat elf/check-localplt.out
Extra PLT reference: libc.so: wmemmove

I am not sure why it not caught by the buildbots. The rest of the patch looks
ok.

> +                    wchar_t wc = pad == L_('0') || pad == L_('+') ? L'0' : L' ';
> +                    wmemset (p, wc, delta);
> +                  }
> +                p += incr;
> +              }
> +            i += incr;
>  	  }
>  #else
>  	  cpy (strlen (zone), zone);

  reply	other threads:[~2023-05-23 19:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-22 18:32 Joe Simmons-Talbott
2023-05-23 19:11 ` Adhemerval Zanella Netto [this message]
2023-05-23 19:43   ` Joe Simmons-Talbott

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=bf2ad70d-4628-704a-80e0-28ab1629daf9@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=eggert@cs.ucla.edu \
    --cc=josimmon@redhat.com \
    --cc=libc-alpha@sourceware.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 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).