6ca6e8
commit 9001cb1102cddba54f0e84e147dfbb0356067356
6ca6e8
Author: Florian Weimer <fweimer@redhat.com>
6ca6e8
Date:   Wed Aug 3 11:41:53 2022 +0200
6ca6e8
6ca6e8
    assert: Do not use stderr in libc-internal assert
6ca6e8
    
6ca6e8
    Redirect internal assertion failures to __libc_assert_fail, based on
6ca6e8
    based on __libc_message, which writes directly to STDERR_FILENO
6ca6e8
    and calls abort.  Also disable message translation and reword the
6ca6e8
    error message slightly (adjusting stdlib/tst-bz20544 accordingly).
6ca6e8
    
6ca6e8
    As a result of these changes, malloc no longer needs its own
6ca6e8
    redefinition of __assert_fail.
6ca6e8
    
6ca6e8
    __libc_assert_fail needs to be stubbed out during rtld dependency
6ca6e8
    analysis because the rtld rebuilds turn __libc_assert_fail into
6ca6e8
    __assert_fail, which is unconditionally provided by elf/dl-minimal.c.
6ca6e8
    
6ca6e8
    This change is not possible for the public assert macro and its
6ca6e8
    __assert_fail function because POSIX requires that the diagnostic
6ca6e8
    is written to stderr.
6ca6e8
    
6ca6e8
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
6ca6e8
6ca6e8
diff --git a/assert/Makefile b/assert/Makefile
6ca6e8
index 0008de34cb484a13..2bc9e2214e3e9a8b 100644
6ca6e8
--- a/assert/Makefile
6ca6e8
+++ b/assert/Makefile
6ca6e8
@@ -24,7 +24,12 @@ include ../Makeconfig
6ca6e8
 
6ca6e8
 headers	:= assert.h
6ca6e8
 
6ca6e8
-routines := assert assert-perr __assert
6ca6e8
+routines := \
6ca6e8
+  __assert \
6ca6e8
+  __libc_assert_fail \
6ca6e8
+  assert \
6ca6e8
+  assert-perr \
6ca6e8
+  # routines
6ca6e8
 tests := test-assert test-assert-perr tst-assert-c++ tst-assert-g++
6ca6e8
 
6ca6e8
 ifeq ($(have-cxx-thread_local),yes)
6ca6e8
diff --git a/assert/__libc_assert_fail.c b/assert/__libc_assert_fail.c
6ca6e8
new file mode 100644
6ca6e8
index 0000000000000000..149d5feae12f4af8
6ca6e8
--- /dev/null
6ca6e8
+++ b/assert/__libc_assert_fail.c
6ca6e8
@@ -0,0 +1,33 @@
6ca6e8
+/* libc-internal assert that calls __libc_message.
6ca6e8
+   Copyright (C) 2022 Free Software Foundation, Inc.
6ca6e8
+   This file is part of the GNU C Library.
6ca6e8
+
6ca6e8
+   The GNU C Library is free software; you can redistribute it and/or
6ca6e8
+   modify it under the terms of the GNU Lesser General Public
6ca6e8
+   License as published by the Free Software Foundation; either
6ca6e8
+   version 2.1 of the License, or (at your option) any later version.
6ca6e8
+
6ca6e8
+   The GNU C Library is distributed in the hope that it will be useful,
6ca6e8
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
6ca6e8
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
6ca6e8
+   Lesser General Public License for more details.
6ca6e8
+
6ca6e8
+   You should have received a copy of the GNU Lesser General Public
6ca6e8
+   License along with the GNU C Library; if not, see
6ca6e8
+   <https://www.gnu.org/licenses/>.  */
6ca6e8
+
6ca6e8
+#include <_itoa.h>
6ca6e8
+#include <array_length.h>
6ca6e8
+#include <intprops.h>
6ca6e8
+#include <stdio.h>
6ca6e8
+
6ca6e8
+void
6ca6e8
+__libc_assert_fail (const char *assertion, const char *file, unsigned int line,
6ca6e8
+                    const char *function)
6ca6e8
+{
6ca6e8
+  char linebuf[INT_BUFSIZE_BOUND (unsigned int)];
6ca6e8
+  array_end (linebuf)[-1] = '\0';
6ca6e8
+  char *linestr = _itoa_word (line, array_end (linebuf) - 1, 10, 0);
6ca6e8
+  __libc_message ("Fatal glibc error: %s:%s (%s): assertion failed: %s\n",
6ca6e8
+                  file, linestr, function, assertion);
6ca6e8
+}
6ca6e8
diff --git a/assert/assert.c b/assert/assert.c
6ca6e8
index 8a277dce008b3495..989126c7e5b6b265 100644
6ca6e8
--- a/assert/assert.c
6ca6e8
+++ b/assert/assert.c
6ca6e8
@@ -101,4 +101,3 @@ __assert_fail (const char *assertion, const char *file, unsigned int line,
6ca6e8
   __assert_fail_base (_("%s%s%s:%u: %s%sAssertion `%s' failed.\n%n"),
6ca6e8
 		      assertion, file, line, function);
6ca6e8
 }
6ca6e8
-hidden_def(__assert_fail)
6ca6e8
diff --git a/elf/Makefile b/elf/Makefile
6ca6e8
index 613d244e7781d479..2b547d5b58f1759b 100644
6ca6e8
--- a/elf/Makefile
6ca6e8
+++ b/elf/Makefile
6ca6e8
@@ -1158,6 +1158,7 @@ $(objpfx)dl-allobjs.os: $(all-rtld-routines:%=$(objpfx)%.os)
6ca6e8
 rtld-stubbed-symbols = \
6ca6e8
   __GI___pthread_disable_asynccancel \
6ca6e8
   __GI___pthread_enable_asynccancel \
6ca6e8
+  __libc_assert_fail \
6ca6e8
   __pthread_disable_asynccancel \
6ca6e8
   __pthread_enable_asynccancel \
6ca6e8
   calloc \
6ca6e8
diff --git a/include/assert.h b/include/assert.h
6ca6e8
index 61cc8aa22ff4b913..c812808f9b767964 100644
6ca6e8
--- a/include/assert.h
6ca6e8
+++ b/include/assert.h
6ca6e8
@@ -20,8 +20,14 @@ extern void __assert_fail_base (const char *fmt, const char *assertion,
6ca6e8
 				const char *function)
6ca6e8
      __THROW  __attribute__ ((__noreturn__)) attribute_hidden;
6ca6e8
 
6ca6e8
-# if IS_IN (libc) || (IS_IN (rtld) && !defined NO_RTLD_HIDDEN)
6ca6e8
-hidden_proto (__assert_fail)
6ca6e8
-hidden_proto (__assert_perror_fail)
6ca6e8
+rtld_hidden_proto (__assert_fail)
6ca6e8
+rtld_hidden_proto (__assert_perror_fail)
6ca6e8
+libc_hidden_proto (__assert_perror_fail)
6ca6e8
+
6ca6e8
+
6ca6e8
+# if IS_IN (libc)
6ca6e8
+/* Redirect to the internal version which does not use stderr.  */
6ca6e8
+extern _Noreturn __typeof (__assert_fail) __libc_assert_fail attribute_hidden;
6ca6e8
+#  define __assert_fail __libc_assert_fail
6ca6e8
 # endif
6ca6e8
 #endif
6ca6e8
diff --git a/malloc/malloc.c b/malloc/malloc.c
6ca6e8
index 918e7936f1983437..2edb469d5dbf1203 100644
6ca6e8
--- a/malloc/malloc.c
6ca6e8
+++ b/malloc/malloc.c
6ca6e8
@@ -289,22 +289,6 @@
6ca6e8
 #define MALLOC_DEBUG 0
6ca6e8
 #endif
6ca6e8
 
6ca6e8
-#if IS_IN (libc)
6ca6e8
-#ifndef NDEBUG
6ca6e8
-# define __assert_fail(assertion, file, line, function)			\
6ca6e8
-	 __malloc_assert(assertion, file, line, function)
6ca6e8
-
6ca6e8
-_Noreturn static void
6ca6e8
-__malloc_assert (const char *assertion, const char *file, unsigned int line,
6ca6e8
-		 const char *function)
6ca6e8
-{
6ca6e8
-  __libc_message ("Fatal glibc error: malloc assertion failure in %s: %s\n",
6ca6e8
-		  function, assertion);
6ca6e8
-  __builtin_unreachable ();
6ca6e8
-}
6ca6e8
-#endif
6ca6e8
-#endif
6ca6e8
-
6ca6e8
 #if USE_TCACHE
6ca6e8
 /* We want 64 entries.  This is an arbitrary limit, which tunables can reduce.  */
6ca6e8
 # define TCACHE_MAX_BINS		64
6ca6e8
diff --git a/stdlib/tst-bz20544.c b/stdlib/tst-bz20544.c
6ca6e8
index 4aa5793b8994d1f6..1337a3952c30e517 100644
6ca6e8
--- a/stdlib/tst-bz20544.c
6ca6e8
+++ b/stdlib/tst-bz20544.c
6ca6e8
@@ -78,7 +78,7 @@ test_bz20544_cxa_at_quick_exit (void *closure)
6ca6e8
 static void
6ca6e8
 test_one_fn (void (*test_fn) (void *))
6ca6e8
 {
6ca6e8
-  const char expected_error[] = "Assertion `func != NULL' failed.\n";
6ca6e8
+  const char expected_error[] = "assertion failed: func != NULL\n";
6ca6e8
   struct support_capture_subprocess result;
6ca6e8
   result = support_capture_subprocess (test_fn, NULL);
6ca6e8
   support_capture_subprocess_check (&result, "bz20544", -SIGABRT,