From: Siddhesh Poyarekar <siddhesh@gotplt.org>
To: Florian Weimer <fweimer@redhat.com>, libc-alpha@sourceware.org
Subject: Re: [PATCH] malloc: Simplify checked_request2size interface
Date: Tue, 28 Jun 2022 20:56:55 +0530 [thread overview]
Message-ID: <1a289c3a-796c-fa15-537f-221ed8192627@gotplt.org> (raw)
In-Reply-To: <871qv9ggfe.fsf@oldenburg.str.redhat.com>
On 28/06/2022 17:15, Florian Weimer via Libc-alpha wrote:
> In-band signaling avoids an uninitialized variable warning when
> building with -Og and GCC 12.
>
> Tested on i686-linux-gnu and x86_64-linux-gnu. Built with
> build-many-glibcs.py.
LGTM.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
>
> ---
> malloc/malloc-check.c | 3 ++-
> malloc/malloc.c | 30 ++++++++++++++++--------------
> 2 files changed, 18 insertions(+), 15 deletions(-)
>
> diff --git a/malloc/malloc-check.c b/malloc/malloc-check.c
> index 0299fe99a7..3368532adf 100644
> --- a/malloc/malloc-check.c
> +++ b/malloc/malloc-check.c
> @@ -275,7 +275,8 @@ realloc_check (void *oldmem, size_t bytes)
> malloc_printerr ("realloc(): invalid pointer");
> const INTERNAL_SIZE_T oldsize = chunksize (oldp);
>
> - if (!checked_request2size (rb, &chnb))
> + chnb = checked_request2size (rb);
> + if (chnb == 0)
> {
> __set_errno (ENOMEM);
> goto invert;
> diff --git a/malloc/malloc.c b/malloc/malloc.c
> index 09e5ff2bce..12908b8f97 100644
> --- a/malloc/malloc.c
> +++ b/malloc/malloc.c
> @@ -1333,15 +1333,15 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
> MINSIZE : \
> ((req) + SIZE_SZ + MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK)
>
> -/* Check if REQ overflows when padded and aligned and if the resulting value
> - is less than PTRDIFF_T. Returns TRUE and the requested size or MINSIZE in
> - case the value is less than MINSIZE on SZ or false if any of the previous
> - check fail. */
> -static inline bool
> -checked_request2size (size_t req, size_t *sz) __nonnull (1)
> +/* Check if REQ overflows when padded and aligned and if the resulting
> + value is less than PTRDIFF_T. Returns the requested size or
> + MINSIZE in case the value is less than MINSIZE, or 0 if any of the
> + previous checks fail. */
> +static inline size_t
> +checked_request2size (size_t req) __nonnull (1)
> {
> if (__glibc_unlikely (req > PTRDIFF_MAX))
> - return false;
> + return 0;
>
> /* When using tagged memory, we cannot share the end of the user
> block with the header for the next chunk, so ensure that we
> @@ -1359,8 +1359,7 @@ checked_request2size (size_t req, size_t *sz) __nonnull (1)
> ~(size_t)(__MTAG_GRANULE_SIZE - 1);
> }
>
> - *sz = request2size (req);
> - return true;
> + return request2size (req);
> }
>
> /*
> @@ -3295,8 +3294,8 @@ __libc_malloc (size_t bytes)
> ptmalloc_init ();
> #if USE_TCACHE
> /* int_free also calls request2size, be careful to not pad twice. */
> - size_t tbytes;
> - if (!checked_request2size (bytes, &tbytes))
> + size_t tbytes = checked_request2size (bytes);
> + if (tbytes == 0)
> {
> __set_errno (ENOMEM);
> return NULL;
> @@ -3443,7 +3442,8 @@ __libc_realloc (void *oldmem, size_t bytes)
> || __builtin_expect (misaligned_chunk (oldp), 0)))
> malloc_printerr ("realloc(): invalid pointer");
>
> - if (!checked_request2size (bytes, &nb))
> + nb = checked_request2size (bytes);
> + if (nb == 0)
> {
> __set_errno (ENOMEM);
> return NULL;
> @@ -3800,7 +3800,8 @@ _int_malloc (mstate av, size_t bytes)
> aligned.
> */
>
> - if (!checked_request2size (bytes, &nb))
> + nb = checked_request2size (bytes);
> + if (nb == 0)
> {
> __set_errno (ENOMEM);
> return NULL;
> @@ -4952,7 +4953,8 @@ _int_memalign (mstate av, size_t alignment, size_t bytes)
>
>
>
> - if (!checked_request2size (bytes, &nb))
> + nb = checked_request2size (bytes);
> + if (nb == 0)
> {
> __set_errno (ENOMEM);
> return NULL;
>
prev parent reply other threads:[~2022-06-28 15:27 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-28 11:45 Florian Weimer
2022-06-28 15:26 ` Siddhesh Poyarekar [this message]
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=1a289c3a-796c-fa15-537f-221ed8192627@gotplt.org \
--to=siddhesh@gotplt.org \
--cc=fweimer@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).