From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bat.birch.relay.mailchannels.net (bat.birch.relay.mailchannels.net [23.83.209.13]) by sourceware.org (Postfix) with ESMTPS id 958B93858405 for ; Fri, 29 Oct 2021 03:05:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 958B93858405 X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 61B287819A4; Fri, 29 Oct 2021 03:05:40 +0000 (UTC) Received: from pdx1-sub0-mail-a53.g.dreamhost.com (100-96-17-28.trex.outbound.svc.cluster.local [100.96.17.28]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id E89F57819A9; Fri, 29 Oct 2021 03:05:39 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from pdx1-sub0-mail-a53.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384) by 100.96.17.28 (trex/6.4.3); Fri, 29 Oct 2021 03:05:40 +0000 X-MC-Relay: Junk X-MailChannels-SenderId: dreamhost|x-authsender|siddhesh@gotplt.org X-MailChannels-Auth-Id: dreamhost X-Name-Cure: 1d1b8114362c953f_1635476740192_1822860917 X-MC-Loop-Signature: 1635476740192:33169237 X-MC-Ingress-Time: 1635476740192 Received: from pdx1-sub0-mail-a53.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a53.g.dreamhost.com (Postfix) with ESMTP id ABF4A7E613; Thu, 28 Oct 2021 20:05:39 -0700 (PDT) Received: from rhbox.redhat.com (unknown [1.186.223.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: siddhesh@gotplt.org) by pdx1-sub0-mail-a53.g.dreamhost.com (Postfix) with ESMTPSA id 0295B7F6B4; Thu, 28 Oct 2021 20:05:35 -0700 (PDT) X-DH-BACKEND: pdx1-sub0-mail-a53 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [PATCH] malloc-debug: Return 0 on NULL input [BZ #28506] Date: Fri, 29 Oct 2021 08:35:28 +0530 Message-Id: <20211029030528.3504087-1-siddhesh@sourceware.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-3494.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_NONE, KAM_DMARC_STATUS, RCVD_IN_ABUSEAT, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2021 03:05:43 -0000 Hoist the NULL check for malloc_usable_size into its entry points in malloc-debug and malloc and assume non-NULL in all callees. This fixes BZ #28506 Signed-off-by: Siddhesh Poyarekar --- malloc/malloc-debug.c | 12 ++++++------ malloc/malloc.c | 23 ++++++++++------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/malloc/malloc-debug.c b/malloc/malloc-debug.c index 9922ef5f25..5e954d7dc2 100644 --- a/malloc/malloc-debug.c +++ b/malloc/malloc-debug.c @@ -399,17 +399,17 @@ strong_alias (__debug_calloc, calloc) size_t malloc_usable_size (void *mem) { + if (mem =3D=3D NULL) + return 0; + if (__is_malloc_debug_enabled (MALLOC_MCHECK_HOOK)) return mcheck_usable_size (mem); if (__is_malloc_debug_enabled (MALLOC_CHECK_HOOK)) return malloc_check_get_size (mem); =20 - if (mem !=3D NULL) - { - mchunkptr p =3D mem2chunk (mem); - if (DUMPED_MAIN_ARENA_CHUNK (p)) - return chunksize (p) - SIZE_SZ; - } + mchunkptr p =3D mem2chunk (mem); + if (DUMPED_MAIN_ARENA_CHUNK (p)) + return chunksize (p) - SIZE_SZ; =20 return musable (mem); } diff --git a/malloc/malloc.c b/malloc/malloc.c index 2ba1fee144..9a345572a1 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5008,29 +5008,26 @@ static size_t musable (void *mem) { mchunkptr p; - if (mem !=3D 0) - { - size_t result =3D 0; + size_t result =3D 0; =20 - p =3D mem2chunk (mem); + p =3D mem2chunk (mem); =20 - if (chunk_is_mmapped (p)) - result =3D chunksize (p) - CHUNK_HDR_SZ; - else if (inuse (p)) - result =3D memsize (p); + if (chunk_is_mmapped (p)) + result =3D chunksize (p) - CHUNK_HDR_SZ; + else if (inuse (p)) + result =3D memsize (p); =20 - return result; - } - return 0; + return result; } =20 #if IS_IN (libc) size_t __malloc_usable_size (void *m) { - size_t result; + size_t result =3D 0; =20 - result =3D musable (m); + if (m !=3D NULL) + result =3D musable (m); return result; } #endif --=20 2.31.1