e354a5
commit 3a0ecccb599a6b1ad4b149dc569c0080e92d057b
e354a5
Author: Florian Weimer <fweimer@redhat.com>
e354a5
Date:   Sat Feb 8 19:58:43 2020 +0100
e354a5
e354a5
    ld.so: Do not export free/calloc/malloc/realloc functions [BZ #25486]
e354a5
    
e354a5
    Exporting functions and relying on symbol interposition from libc.so
e354a5
    makes the choice of implementation dependent on DT_NEEDED order, which
e354a5
    is not what some compiler drivers expect.
e354a5
    
e354a5
    This commit replaces one magic mechanism (symbol interposition) with
e354a5
    another one (preprocessor-/compiler-based redirection).  This makes
e354a5
    the hand-over from the minimal malloc to the full malloc more
e354a5
    explicit.
e354a5
    
e354a5
    Removing the ABI symbols is backwards-compatible because libc.so is
e354a5
    always in scope, and the dynamic loader will find the malloc-related
e354a5
    symbols there since commit f0b2132b35248c1f4a80f62a2c38cddcc802aa8c
e354a5
    ("ld.so: Support moving versioned symbols between sonames
e354a5
    [BZ #24741]").
e354a5
    
e354a5
    Reviewed-by: Carlos O'Donell <carlos@redhat.com>
e354a5
e354a5
Conflicts:
e354a5
	sysdeps/unix/sysv/linux/arm/le/ld.abilist
e354a5
	sysdeps/unix/sysv/linux/sh/le/ld.abilist
e354a5
	  (Missing abilist split.)
e354a5
	sysdeps/unix/sysv/linux/csky/ld.abilist
e354a5
	sysdeps/unix/sysv/linux/csky/localplt.data
e354a5
	  (Missing architecture.)
e354a5
e354a5
diff --git a/elf/Makefile b/elf/Makefile
e354a5
index a1ea44f231d8cec5..5b0aeccb0a53c182 100644
e354a5
--- a/elf/Makefile
e354a5
+++ b/elf/Makefile
e354a5
@@ -478,7 +478,11 @@ $(objpfx)dl-allobjs.os: $(all-rtld-routines:%=$(objpfx)%.os)
e354a5
 # their implementation is provided differently in rtld, and the symbol
e354a5
 # discovery mechanism is not compatible with the libc implementation
e354a5
 # when compiled for libc.
e354a5
-rtld-stubbed-symbols =
e354a5
+rtld-stubbed-symbols = \
e354a5
+  calloc \
e354a5
+  free \
e354a5
+  malloc \
e354a5
+  realloc \
e354a5
 
e354a5
 # The GCC arguments that implement $(rtld-stubbed-symbols).
e354a5
 rtld-stubbed-symbols-args = \
e354a5
diff --git a/elf/Versions b/elf/Versions
e354a5
index 3b09901f6c31e3d4..705489fc51f4ac5f 100644
e354a5
--- a/elf/Versions
e354a5
+++ b/elf/Versions
e354a5
@@ -35,9 +35,6 @@ libc {
e354a5
 
e354a5
 ld {
e354a5
   GLIBC_2.0 {
e354a5
-    # Functions which are interposed from libc.so.
e354a5
-    calloc; free; malloc; realloc;
e354a5
-
e354a5
     _r_debug;
e354a5
   }
e354a5
   GLIBC_2.1 {
e354a5
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c
e354a5
index 42fdaed99296137f..e4c479de9a1fd6ec 100644
e354a5
--- a/elf/dl-lookup.c
e354a5
+++ b/elf/dl-lookup.c
e354a5
@@ -291,7 +291,7 @@ do_lookup_unique (const char *undef_name, uint_fast32_t new_hash,
e354a5
 	  tab->size = newsize;
e354a5
 	  size = newsize;
e354a5
 	  entries = tab->entries = newentries;
e354a5
-	  tab->free = free;
e354a5
+	  tab->free = __rtld_free;
e354a5
 	}
e354a5
     }
e354a5
   else
e354a5
@@ -322,7 +322,7 @@ do_lookup_unique (const char *undef_name, uint_fast32_t new_hash,
e354a5
 
e354a5
       tab->entries = entries;
e354a5
       tab->size = size;
e354a5
-      tab->free = free;
e354a5
+      tab->free = __rtld_free;
e354a5
     }
e354a5
 
e354a5
   if ((type_class & ELF_RTYPE_CLASS_COPY) != 0)
e354a5
diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c
e354a5
index 25ceded6fe120b07..95ea7b024044864f 100644
e354a5
--- a/elf/dl-minimal.c
e354a5
+++ b/elf/dl-minimal.c
e354a5
@@ -26,11 +26,87 @@
e354a5
 #include <sys/param.h>
e354a5
 #include <sys/types.h>
e354a5
 #include <ldsodefs.h>
e354a5
+#include <dl-irel.h>
e354a5
+#include <dl-hash.h>
e354a5
+#include <dl-sym-post.h>
e354a5
 #include <_itoa.h>
e354a5
 #include <malloc/malloc-internal.h>
e354a5
 
e354a5
 #include <assert.h>
e354a5
 
e354a5
+/* The rtld startup code calls __rtld_malloc_init_stubs after the
e354a5
+  first self-relocation to adjust the pointers to the minimal
e354a5
+  implementation below.  Before the final relocation,
e354a5
+  __rtld_malloc_init_real is called to replace the pointers with the
e354a5
+  real implementation.  */
e354a5
+__typeof (calloc) *__rtld_calloc;
e354a5
+__typeof (free) *__rtld_free;
e354a5
+__typeof (malloc) *__rtld_malloc;
e354a5
+__typeof (realloc) *__rtld_realloc;
e354a5
+
e354a5
+/* Defined below.  */
e354a5
+static __typeof (calloc) rtld_calloc attribute_relro;
e354a5
+static __typeof (free) rtld_free attribute_relro;
e354a5
+static __typeof (malloc) rtld_malloc attribute_relro;
e354a5
+static __typeof (realloc) rtld_realloc attribute_relro;
e354a5
+
e354a5
+void
e354a5
+__rtld_malloc_init_stubs (void)
e354a5
+{
e354a5
+  __rtld_calloc = &rtld_calloc;
e354a5
+  __rtld_free = &rtld_free;
e354a5
+  __rtld_malloc = &rtld_malloc;
e354a5
+  __rtld_realloc = &rtld_realloc;
e354a5
+}
e354a5
+
e354a5
+/* Lookup NAME at VERSION in the scope of MATCH.  */
e354a5
+static void *
e354a5
+lookup_malloc_symbol (struct link_map *main_map, const char *name,
e354a5
+		      struct r_found_version *version)
e354a5
+{
e354a5
+
e354a5
+  const ElfW(Sym) *ref = NULL;
e354a5
+  lookup_t result = _dl_lookup_symbol_x (name, main_map, &ref,
e354a5
+					 main_map->l_scope,
e354a5
+					 version, 0, 0, NULL);
e354a5
+
e354a5
+  assert (ELFW(ST_TYPE) (ref->st_info) != STT_TLS);
e354a5
+  void *value = DL_SYMBOL_ADDRESS (result, ref);
e354a5
+
e354a5
+  return _dl_sym_post (result, ref, value, 0, main_map);
e354a5
+}
e354a5
+
e354a5
+void
e354a5
+__rtld_malloc_init_real (struct link_map *main_map)
e354a5
+{
e354a5
+  /* We cannot use relocations and initializers for this because the
e354a5
+     changes made by __rtld_malloc_init_stubs break REL-style
e354a5
+     (non-RELA) relocations that depend on the previous pointer
e354a5
+     contents.  Also avoid direct relocation depedencies for the
e354a5
+     malloc symbols so this function can be called before the final
e354a5
+     rtld relocation (which enables RELRO, after which the pointer
e354a5
+     variables cannot be written to).  */
e354a5
+
e354a5
+  struct r_found_version version;
e354a5
+  version.name = symbol_version_string (libc, GLIBC_2_0);
e354a5
+  version.hidden = 0;
e354a5
+  version.hash = _dl_elf_hash (version.name);
e354a5
+  version.filename = NULL;
e354a5
+
e354a5
+  void *new_calloc = lookup_malloc_symbol (main_map, "calloc", &version);
e354a5
+  void *new_free = lookup_malloc_symbol (main_map, "free", &version);
e354a5
+  void *new_malloc = lookup_malloc_symbol (main_map, "malloc", &version);
e354a5
+  void *new_realloc = lookup_malloc_symbol (main_map, "realloc", &version);
e354a5
+
e354a5
+  /* Update the pointers in one go, so that any internal allocations
e354a5
+     performed by lookup_malloc_symbol see a consistent
e354a5
+     implementation.  */
e354a5
+  __rtld_calloc = new_calloc;
e354a5
+  __rtld_free = new_free;
e354a5
+  __rtld_malloc = new_malloc;
e354a5
+  __rtld_realloc = new_realloc;
e354a5
+}
e354a5
+
e354a5
 /* Minimal malloc allocator for used during initial link.  After the
e354a5
    initial link, a full malloc implementation is interposed, either
e354a5
    the one in libc, or a different one supplied by the user through
e354a5
@@ -38,14 +114,9 @@
e354a5
 
e354a5
 static void *alloc_ptr, *alloc_end, *alloc_last_block;
e354a5
 
e354a5
-/* Declarations of global functions.  */
e354a5
-extern void weak_function free (void *ptr);
e354a5
-extern void * weak_function realloc (void *ptr, size_t n);
e354a5
-
e354a5
-
e354a5
 /* Allocate an aligned memory block.  */
e354a5
-void * weak_function
e354a5
-malloc (size_t n)
e354a5
+static void *
e354a5
+rtld_malloc (size_t n)
e354a5
 {
e354a5
   if (alloc_end == 0)
e354a5
     {
e354a5
@@ -87,8 +158,8 @@ malloc (size_t n)
e354a5
 /* We use this function occasionally since the real implementation may
e354a5
    be optimized when it can assume the memory it returns already is
e354a5
    set to NUL.  */
e354a5
-void * weak_function
e354a5
-calloc (size_t nmemb, size_t size)
e354a5
+static void *
e354a5
+rtld_calloc (size_t nmemb, size_t size)
e354a5
 {
e354a5
   /* New memory from the trivial malloc above is always already cleared.
e354a5
      (We make sure that's true in the rare occasion it might not be,
e354a5
@@ -104,8 +175,8 @@ calloc (size_t nmemb, size_t size)
e354a5
 }
e354a5
 
e354a5
 /* This will rarely be called.  */
e354a5
-void weak_function
e354a5
-free (void *ptr)
e354a5
+void
e354a5
+rtld_free (void *ptr)
e354a5
 {
e354a5
   /* We can free only the last block allocated.  */
e354a5
   if (ptr == alloc_last_block)
e354a5
@@ -118,8 +189,8 @@ free (void *ptr)
e354a5
 }
e354a5
 
e354a5
 /* This is only called with the most recent block returned by malloc.  */
e354a5
-void * weak_function
e354a5
-realloc (void *ptr, size_t n)
e354a5
+void *
e354a5
+rtld_realloc (void *ptr, size_t n)
e354a5
 {
e354a5
   if (ptr == NULL)
e354a5
     return malloc (n);
e354a5
diff --git a/elf/rtld.c b/elf/rtld.c
e354a5
index 18335bc666f2b89d..f755dc30331f799f 100644
e354a5
--- a/elf/rtld.c
e354a5
+++ b/elf/rtld.c
e354a5
@@ -532,6 +532,9 @@ _dl_start (void *arg)
e354a5
      header table in core.  Put the rest of _dl_start into a separate
e354a5
      function, that way the compiler cannot put accesses to the GOT
e354a5
      before ELF_DYNAMIC_RELOCATE.  */
e354a5
+
e354a5
+  __rtld_malloc_init_stubs ();
e354a5
+
e354a5
   {
e354a5
 #ifdef DONT_USE_BOOTSTRAP_MAP
e354a5
     ElfW(Addr) entry = _dl_start_final (arg);
e354a5
@@ -2203,6 +2206,10 @@ ERROR: '%s': cannot process note segment.\n", _dl_argv[0]);
e354a5
 	  rtld_timer_stop (&relocate_time, start);
e354a5
 	}
e354a5
 
e354a5
+      /* The library defining malloc has already been relocated due to
e354a5
+	 prelinking.  Resolve the malloc symbols for the dynamic
e354a5
+	 loader.  */
e354a5
+      __rtld_malloc_init_real (main_map);
e354a5
 
e354a5
       /* Mark all the objects so we know they have been already relocated.  */
e354a5
       for (struct link_map *l = main_map; l != NULL; l = l->l_next)
e354a5
@@ -2303,6 +2310,11 @@ ERROR: '%s': cannot process note segment.\n", _dl_argv[0]);
e354a5
 	 re-relocation, we might call a user-supplied function
e354a5
 	 (e.g. calloc from _dl_relocate_object) that uses TLS data.  */
e354a5
 
e354a5
+      /* The malloc implementation has been relocated, so resolving
e354a5
+	 its symbols (and potentially calling IFUNC resolvers) is safe
e354a5
+	 at this point.  */
e354a5
+      __rtld_malloc_init_real (main_map);
e354a5
+
e354a5
       RTLD_TIMING_VAR (start);
e354a5
       rtld_timer_start (&start;;
e354a5
 
e354a5
diff --git a/include/inline-hashtab.h b/include/inline-hashtab.h
e354a5
index ad73650ecc59dec1..b658e4a54b9c8187 100644
e354a5
--- a/include/inline-hashtab.h
e354a5
+++ b/include/inline-hashtab.h
e354a5
@@ -53,7 +53,7 @@ htab_create (void)
e354a5
     return NULL;
e354a5
   ht->size = 3;
e354a5
   ht->entries = malloc (sizeof (void *) * ht->size);
e354a5
-  ht->free = free;
e354a5
+  ht->free = __rtld_free;
e354a5
   if (! ht->entries)
e354a5
     {
e354a5
       if (ht->free)
e354a5
@@ -172,7 +172,7 @@ htab_expand (struct hashtab *htab, int (*hash_fn) (void *))
e354a5
 
e354a5
   /* Use the free() corresponding to the malloc() above to free this
e354a5
      up.  */
e354a5
-  htab->free = free;
e354a5
+  htab->free = __rtld_free;
e354a5
 
e354a5
   return 1;
e354a5
 }
e354a5
diff --git a/include/libc-symbols.h b/include/libc-symbols.h
e354a5
index 8b9273c13a19f265..41436050d060b89f 100644
e354a5
--- a/include/libc-symbols.h
e354a5
+++ b/include/libc-symbols.h
e354a5
@@ -413,7 +413,14 @@ for linking")
e354a5
 #  define _default_symbol_version(real, name, version) \
e354a5
      __asm__ (".symver " #real "," #name "@@" #version)
e354a5
 # endif
e354a5
-#else
e354a5
+
e354a5
+/* Evalutes to a string literal for VERSION in LIB.  */
e354a5
+# define symbol_version_string(lib, version) \
e354a5
+  _symbol_version_stringify_1 (VERSION_##lib##_##version)
e354a5
+# define _symbol_version_stringify_1(arg) _symbol_version_stringify_2 (arg)
e354a5
+# define _symbol_version_stringify_2(arg) #arg
e354a5
+
e354a5
+#else /* !SHARED */
e354a5
 # define symbol_version(real, name, version)
e354a5
 # define default_symbol_version(real, name, version) \
e354a5
   strong_alias(real, name)
e354a5
diff --git a/include/malloc.h b/include/malloc.h
e354a5
index d4cd9a5ffc929a96..e528718ac0734e5e 100644
e354a5
--- a/include/malloc.h
e354a5
+++ b/include/malloc.h
e354a5
@@ -1,7 +1,9 @@
e354a5
 #ifndef _MALLOC_H
e354a5
+
e354a5
 #include <malloc/malloc.h>
e354a5
 
e354a5
 # ifndef _ISOMAC
e354a5
+#  include <rtld-malloc.h>
e354a5
 
e354a5
 /* In the GNU libc we rename the global variable
e354a5
    `__malloc_initialized' to `__libc_malloc_initialized'.  */
e354a5
diff --git a/include/rtld-malloc.h b/include/rtld-malloc.h
e354a5
new file mode 100644
e354a5
index 0000000000000000..b026a3270cd24819
e354a5
--- /dev/null
e354a5
+++ b/include/rtld-malloc.h
e354a5
@@ -0,0 +1,85 @@
e354a5
+/* Redirection of malloc inside the dynamic linker.
e354a5
+   Copyright (C) 2020 Free Software Foundation, Inc.
e354a5
+   This file is part of the GNU C Library.
e354a5
+
e354a5
+   The GNU C Library is free software; you can redistribute it and/or
e354a5
+   modify it under the terms of the GNU Lesser General Public
e354a5
+   License as published by the Free Software Foundation; either
e354a5
+   version 2.1 of the License, or (at your option) any later version.
e354a5
+
e354a5
+   The GNU C Library is distributed in the hope that it will be useful,
e354a5
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
e354a5
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
e354a5
+   Lesser General Public License for more details.
e354a5
+
e354a5
+   You should have received a copy of the GNU Lesser General Public
e354a5
+   License along with the GNU C Library; if not, see
e354a5
+   <https://www.gnu.org/licenses/>.  */
e354a5
+
e354a5
+/* The dynamic linker needs to use its own minimal malloc before libc
e354a5
+   has been relocated, and the libc malloc afterwards.  The active
e354a5
+   malloc implementation is reached via the __rtld_* function pointers
e354a5
+   declared below.  They are initialized to the minimal malloc by
e354a5
+   __rtld_malloc_init_stubs, and set to the final implementation by
e354a5
+   __rtld_malloc_init_real.  */
e354a5
+
e354a5
+#ifndef _RTLD_MALLOC_H
e354a5
+#define _RTLD_MALLOC_H
e354a5
+
e354a5
+#if IS_IN (rtld)
e354a5
+
e354a5
+extern __typeof (calloc) *__rtld_calloc attribute_hidden;
e354a5
+extern __typeof (free) *__rtld_free attribute_hidden;
e354a5
+extern __typeof (malloc) *__rtld_malloc attribute_hidden;
e354a5
+extern __typeof (realloc) *__rtld_realloc attribute_hidden;
e354a5
+
e354a5
+/* Wrapper functions which call through the function pointers above.
e354a5
+   Note that it is not supported to take the address of those
e354a5
+   functions.  Instead the function pointers must be used
e354a5
+   directly.  */
e354a5
+
e354a5
+__extern_inline void *
e354a5
+calloc (size_t a, size_t b)
e354a5
+{
e354a5
+  return __rtld_calloc (a, b);
e354a5
+}
e354a5
+
e354a5
+__extern_inline void
e354a5
+free (void *ptr)
e354a5
+{
e354a5
+   __rtld_free (ptr);
e354a5
+}
e354a5
+
e354a5
+__extern_inline void *
e354a5
+malloc (size_t size)
e354a5
+{
e354a5
+  return __rtld_malloc (size);
e354a5
+}
e354a5
+
e354a5
+__extern_inline void *
e354a5
+realloc (void *ptr, size_t size)
e354a5
+{
e354a5
+  return __rtld_realloc (ptr, size);
e354a5
+}
e354a5
+
e354a5
+/* Called after the first self-relocation to activate the minimal malloc
e354a5
+   implementation.  */
e354a5
+void __rtld_malloc_init_stubs (void) attribute_hidden;
e354a5
+
e354a5
+/* Called shortly before the final self-relocation (when RELRO
e354a5
+   variables are still writable) to activate the real malloc
e354a5
+   implementation.  MAIN_MAP is the link map of the executable.  */
e354a5
+struct link_map;
e354a5
+void __rtld_malloc_init_real (struct link_map *main_map) attribute_hidden;
e354a5
+
e354a5
+#else /* !IS_IN (rtld) */
e354a5
+
e354a5
+/* This allows static/non-rtld builds to get a pointer to the
e354a5
+   functions, in the same way that is required inside rtld.  */
e354a5
+# define __rtld_calloc (&calloc)
e354a5
+# define __rtld_free (&free)
e354a5
+# define __rtld_malloc (&malloc)
e354a5
+# define __rtld_realloc (&realloc)
e354a5
+
e354a5
+#endif /* !IS_IN (rtld) */
e354a5
+#endif /* _RTLD_MALLOC_H */
e354a5
diff --git a/include/stdlib.h b/include/stdlib.h
e354a5
index 114e12d255977676..d7720967448f2a8f 100644
e354a5
--- a/include/stdlib.h
e354a5
+++ b/include/stdlib.h
e354a5
@@ -9,6 +9,8 @@
e354a5
 #if !defined _ISOMAC
e354a5
 # include <sys/stat.h>
e354a5
 
e354a5
+# include <rtld-malloc.h>
e354a5
+
e354a5
 extern __typeof (strtol_l) __strtol_l;
e354a5
 extern __typeof (strtoul_l) __strtoul_l;
e354a5
 extern __typeof (strtoll_l) __strtoll_l;
e354a5
diff --git a/sysdeps/generic/localplt.data b/sysdeps/generic/localplt.data
e354a5
index 2d5c66ae28a2e851..e2083c0ce6869572 100644
e354a5
--- a/sysdeps/generic/localplt.data
e354a5
+++ b/sysdeps/generic/localplt.data
e354a5
@@ -7,12 +7,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/mach/hurd/i386/ld.abilist b/sysdeps/mach/hurd/i386/ld.abilist
e354a5
index c76b913486acf6d8..6f591b249699e10c 100644
e354a5
--- a/sysdeps/mach/hurd/i386/ld.abilist
e354a5
+++ b/sysdeps/mach/hurd/i386/ld.abilist
e354a5
@@ -16,10 +16,6 @@ GLIBC_2.2.6 _dl_mcount F
e354a5
 GLIBC_2.2.6 _hurd_intr_rpc_mach_msg F
e354a5
 GLIBC_2.2.6 _r_debug D 0x14
e354a5
 GLIBC_2.2.6 abort F
e354a5
-GLIBC_2.2.6 calloc F
e354a5
-GLIBC_2.2.6 free F
e354a5
-GLIBC_2.2.6 malloc F
e354a5
-GLIBC_2.2.6 realloc F
e354a5
 GLIBC_2.3 ___tls_get_addr F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
 GLIBC_2.4 __stack_chk_guard D 0x4
e354a5
diff --git a/sysdeps/mach/hurd/i386/localplt.data b/sysdeps/mach/hurd/i386/localplt.data
e354a5
index a5b5241b84812425..4b9dbf5acc088cff 100644
e354a5
--- a/sysdeps/mach/hurd/i386/localplt.data
e354a5
+++ b/sysdeps/mach/hurd/i386/localplt.data
e354a5
@@ -9,12 +9,6 @@ libc.so: malloc + REL R_386_GLOB_DAT
e354a5
 libc.so: memalign + REL R_386_GLOB_DAT
e354a5
 libc.so: realloc + REL R_386_GLOB_DAT
e354a5
 libm.so: matherr + REL R_386_GLOB_DAT
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc + REL R_386_GLOB_DAT
e354a5
-ld.so: calloc + REL R_386_GLOB_DAT
e354a5
-ld.so: realloc + REL R_386_GLOB_DAT
e354a5
-ld.so: free + REL R_386_GLOB_DAT
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error + REL R_386_GLOB_DAT
e354a5
 ld.so: _dl_catch_error + REL R_386_GLOB_DAT
e354a5
diff --git a/sysdeps/unix/sysv/linux/aarch64/ld.abilist b/sysdeps/unix/sysv/linux/aarch64/ld.abilist
e354a5
index 4ffe688649ca02e2..80b2fe672541c6e9 100644
e354a5
--- a/sysdeps/unix/sysv/linux/aarch64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/aarch64/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.17 __stack_chk_guard D 0x8
e354a5
 GLIBC_2.17 __tls_get_addr F
e354a5
 GLIBC_2.17 _dl_mcount F
e354a5
 GLIBC_2.17 _r_debug D 0x28
e354a5
-GLIBC_2.17 calloc F
e354a5
-GLIBC_2.17 free F
e354a5
-GLIBC_2.17 malloc F
e354a5
-GLIBC_2.17 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/aarch64/localplt.data b/sysdeps/unix/sysv/linux/aarch64/localplt.data
e354a5
index 08af68b5e840b5d8..2c14b652efbfdf44 100644
e354a5
--- a/sysdeps/unix/sysv/linux/aarch64/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/aarch64/localplt.data
e354a5
@@ -12,12 +12,6 @@ libm.so: matherr
e354a5
 libc.so: __getauxval ?
e354a5
 # The dynamic loader needs __tls_get_addr for TLS.
e354a5
 ld.so: __tls_get_addr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/alpha/ld.abilist b/sysdeps/unix/sysv/linux/alpha/ld.abilist
e354a5
index 98b66edabf1a79c7..98a03f611f98f3a4 100644
e354a5
--- a/sysdeps/unix/sysv/linux/alpha/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/alpha/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x28
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x8
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/alpha/localplt.data b/sysdeps/unix/sysv/linux/alpha/localplt.data
e354a5
index c69eb04ce53e292e..43f6fdaea18b25f3 100644
e354a5
--- a/sysdeps/unix/sysv/linux/alpha/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/alpha/localplt.data
e354a5
@@ -26,12 +26,6 @@ libm.so: matherr + RELA R_ALPHA_GLOB_DAT
e354a5
 libm.so: __atan2
e354a5
 # The dynamic loader needs __tls_get_addr for TLS.
e354a5
 ld.so: __tls_get_addr ?
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc + RELA R_ALPHA_GLOB_DAT
e354a5
-ld.so: calloc + RELA R_ALPHA_GLOB_DAT
e354a5
-ld.so: realloc + RELA R_ALPHA_GLOB_DAT
e354a5
-ld.so: free + RELA R_ALPHA_GLOB_DAT
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error + RELA R_ALPHA_GLOB_DAT
e354a5
 ld.so: _dl_catch_error + RELA R_ALPHA_GLOB_DAT
e354a5
diff --git a/sysdeps/unix/sysv/linux/arm/ld.abilist b/sysdeps/unix/sysv/linux/arm/ld.abilist
e354a5
index a301c6ebc49db1d7..cc8825c3bc68ad4a 100644
e354a5
--- a/sysdeps/unix/sysv/linux/arm/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/arm/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.4 __stack_chk_guard D 0x4
e354a5
 GLIBC_2.4 __tls_get_addr F
e354a5
 GLIBC_2.4 _dl_mcount F
e354a5
 GLIBC_2.4 _r_debug D 0x14
e354a5
-GLIBC_2.4 calloc F
e354a5
-GLIBC_2.4 free F
e354a5
-GLIBC_2.4 malloc F
e354a5
-GLIBC_2.4 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/arm/localplt.data b/sysdeps/unix/sysv/linux/arm/localplt.data
e354a5
index 7bd541c28a842526..0c3af0c64e95df4b 100644
e354a5
--- a/sysdeps/unix/sysv/linux/arm/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/arm/localplt.data
e354a5
@@ -8,12 +8,6 @@ libm.so: matherr
e354a5
 libpthread.so: raise
e354a5
 # The dynamic loader needs __tls_get_addr for TLS.
e354a5
 ld.so: __tls_get_addr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/hppa/ld.abilist b/sysdeps/unix/sysv/linux/hppa/ld.abilist
e354a5
index 0387614d8fd784eb..d155a59843df9091 100644
e354a5
--- a/sysdeps/unix/sysv/linux/hppa/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/hppa/ld.abilist
e354a5
@@ -1,9 +1,5 @@
e354a5
 GLIBC_2.2 __libc_stack_end D 0x4
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.2 _r_debug D 0x14
e354a5
-GLIBC_2.2 calloc F
e354a5
-GLIBC_2.2 free F
e354a5
-GLIBC_2.2 malloc F
e354a5
-GLIBC_2.2 realloc F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
 GLIBC_2.4 __stack_chk_guard D 0x4
e354a5
diff --git a/sysdeps/unix/sysv/linux/hppa/localplt.data b/sysdeps/unix/sysv/linux/hppa/localplt.data
e354a5
index 867413f0c54d3d71..09893d4dcfd3a1f3 100644
e354a5
--- a/sysdeps/unix/sysv/linux/hppa/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/hppa/localplt.data
e354a5
@@ -10,12 +10,6 @@ libc.so: __sigsetjmp
e354a5
 libc.so: _IO_funlockfile
e354a5
 libc.so: __errno_location
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/i386/ld.abilist b/sysdeps/unix/sysv/linux/i386/ld.abilist
e354a5
index edb7307228110c33..0478e220712a55e6 100644
e354a5
--- a/sysdeps/unix/sysv/linux/i386/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/i386/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x4
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.3 ___tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/i386/localplt.data b/sysdeps/unix/sysv/linux/i386/localplt.data
e354a5
index f6f20a5d15bc79e4..5334875b4b4a4dee 100644
e354a5
--- a/sysdeps/unix/sysv/linux/i386/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/i386/localplt.data
e354a5
@@ -7,12 +7,6 @@ libc.so: malloc + REL R_386_GLOB_DAT
e354a5
 libc.so: memalign + REL R_386_GLOB_DAT
e354a5
 libc.so: realloc + REL R_386_GLOB_DAT
e354a5
 libm.so: matherr + REL R_386_GLOB_DAT
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc + REL R_386_GLOB_DAT
e354a5
-ld.so: calloc + REL R_386_GLOB_DAT
e354a5
-ld.so: realloc + REL R_386_GLOB_DAT
e354a5
-ld.so: free + REL R_386_GLOB_DAT
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error + REL R_386_GLOB_DAT
e354a5
 ld.so: _dl_catch_error + REL R_386_GLOB_DAT
e354a5
diff --git a/sysdeps/unix/sysv/linux/ia64/ld.abilist b/sysdeps/unix/sysv/linux/ia64/ld.abilist
e354a5
index 82042472c3089a29..33f91199bfa516fb 100644
e354a5
--- a/sysdeps/unix/sysv/linux/ia64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/ia64/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.2 __libc_stack_end D 0x8
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.2 _r_debug D 0x28
e354a5
-GLIBC_2.2 calloc F
e354a5
-GLIBC_2.2 free F
e354a5
-GLIBC_2.2 malloc F
e354a5
-GLIBC_2.2 realloc F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/ia64/localplt.data b/sysdeps/unix/sysv/linux/ia64/localplt.data
e354a5
index 3820e2a4e682af2e..1c566a503e2eba00 100644
e354a5
--- a/sysdeps/unix/sysv/linux/ia64/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/ia64/localplt.data
e354a5
@@ -6,12 +6,6 @@ libc.so: realloc
e354a5
 libm.so: matherr
e354a5
 libm.so: matherrf
e354a5
 libm.so: matherrl
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist b/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist
e354a5
index a301c6ebc49db1d7..cc8825c3bc68ad4a 100644
e354a5
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.4 __stack_chk_guard D 0x4
e354a5
 GLIBC_2.4 __tls_get_addr F
e354a5
 GLIBC_2.4 _dl_mcount F
e354a5
 GLIBC_2.4 _r_debug D 0x14
e354a5
-GLIBC_2.4 calloc F
e354a5
-GLIBC_2.4 free F
e354a5
-GLIBC_2.4 malloc F
e354a5
-GLIBC_2.4 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data b/sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data
e354a5
index 4a07bf387e2da296..3c5efb7204281e2a 100644
e354a5
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data
e354a5
@@ -5,12 +5,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist b/sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist
e354a5
index c9ec45cf1cf6c1c5..3ba474c27f62fb10 100644
e354a5
--- a/sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x4
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data b/sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data
e354a5
index c70d6ea3011c4511..843f4e25f213d632 100644
e354a5
--- a/sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data
e354a5
@@ -6,12 +6,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/microblaze/ld.abilist b/sysdeps/unix/sysv/linux/microblaze/ld.abilist
e354a5
index aa0d71150af8c62c..a4933c3541119538 100644
e354a5
--- a/sysdeps/unix/sysv/linux/microblaze/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/microblaze/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.18 __stack_chk_guard D 0x4
e354a5
 GLIBC_2.18 __tls_get_addr F
e354a5
 GLIBC_2.18 _dl_mcount F
e354a5
 GLIBC_2.18 _r_debug D 0x14
e354a5
-GLIBC_2.18 calloc F
e354a5
-GLIBC_2.18 free F
e354a5
-GLIBC_2.18 malloc F
e354a5
-GLIBC_2.18 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/microblaze/localplt.data b/sysdeps/unix/sysv/linux/microblaze/localplt.data
e354a5
index 8ca23897dfa5b01c..0e98d5251ee14475 100644
e354a5
--- a/sysdeps/unix/sysv/linux/microblaze/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/microblaze/localplt.data
e354a5
@@ -7,12 +7,6 @@ libc.so: realloc
e354a5
 libm.so: matherr
e354a5
 # The dynamic loader needs __tls_get_addr for TLS.
e354a5
 ld.so: __tls_get_addr ?
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/mips/mips32/ld.abilist b/sysdeps/unix/sysv/linux/mips/mips32/ld.abilist
e354a5
index 55d48868e8b686dc..be09641a48962434 100644
e354a5
--- a/sysdeps/unix/sysv/linux/mips/mips32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/mips/mips32/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.2 __libc_stack_end D 0x4
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist
e354a5
index 55d48868e8b686dc..be09641a48962434 100644
e354a5
--- a/sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.2 __libc_stack_end D 0x4
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist
e354a5
index 44b345b7cf31e854..1ea36e13f294a249 100644
e354a5
--- a/sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x28
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.2 __libc_stack_end D 0x8
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/nios2/ld.abilist b/sysdeps/unix/sysv/linux/nios2/ld.abilist
e354a5
index 110f1039fa39fb1c..52178802dd82b59a 100644
e354a5
--- a/sysdeps/unix/sysv/linux/nios2/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/nios2/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.21 __stack_chk_guard D 0x4
e354a5
 GLIBC_2.21 __tls_get_addr F
e354a5
 GLIBC_2.21 _dl_mcount F
e354a5
 GLIBC_2.21 _r_debug D 0x14
e354a5
-GLIBC_2.21 calloc F
e354a5
-GLIBC_2.21 free F
e354a5
-GLIBC_2.21 malloc F
e354a5
-GLIBC_2.21 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/nios2/localplt.data b/sysdeps/unix/sysv/linux/nios2/localplt.data
e354a5
index 4430a5891e847aed..39009a62d6385849 100644
e354a5
--- a/sysdeps/unix/sysv/linux/nios2/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/nios2/localplt.data
e354a5
@@ -27,12 +27,6 @@ libc.so: __nedf2
e354a5
 libc.so: __eqdf2
e354a5
 libc.so: __extendsfdf2
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
e354a5
index e822e0a4809e5088..a02dd5cc246329a0 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
e354a5
@@ -5,12 +5,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist
e354a5
index e8b0ea3a9bd98b92..4bbfba7a61c7a5ef 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x4
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.22 __tls_get_addr_opt F
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
e354a5
index fead931d4e5c4bc4..a4cd7cfb04249ae3 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
e354a5
@@ -35,12 +35,6 @@ libc.so: realloc
e354a5
 libm.so: copysignl ?
e354a5
 libm.so: fabsl
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist
e354a5
index 37c8f6684b54341b..b1f313c7cd33defc 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist
e354a5
@@ -2,9 +2,5 @@ GLIBC_2.17 __libc_stack_end D 0x8
e354a5
 GLIBC_2.17 __tls_get_addr F
e354a5
 GLIBC_2.17 _dl_mcount F
e354a5
 GLIBC_2.17 _r_debug D 0x28
e354a5
-GLIBC_2.17 calloc F
e354a5
-GLIBC_2.17 free F
e354a5
-GLIBC_2.17 malloc F
e354a5
-GLIBC_2.17 realloc F
e354a5
 GLIBC_2.22 __tls_get_addr_opt F
e354a5
 GLIBC_2.23 __parse_hwcap_and_convert_at_platform F
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist
e354a5
index edfc9ca56f2e4fee..283fb4510bea40ba 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist
e354a5
@@ -4,7 +4,3 @@ GLIBC_2.3 __libc_stack_end D 0x8
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
 GLIBC_2.3 _dl_mcount F
e354a5
 GLIBC_2.3 _r_debug D 0x28
e354a5
-GLIBC_2.3 calloc F
e354a5
-GLIBC_2.3 free F
e354a5
-GLIBC_2.3 malloc F
e354a5
-GLIBC_2.3 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data b/sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data
e354a5
index c1209336d2d339d4..bb498fbe3ae28d03 100644
e354a5
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data
e354a5
@@ -4,12 +4,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/riscv/localplt.data b/sysdeps/unix/sysv/linux/riscv/localplt.data
e354a5
index 14c02cb2d6c016d3..0ed8650b65a0ecbf 100644
e354a5
--- a/sysdeps/unix/sysv/linux/riscv/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/riscv/localplt.data
e354a5
@@ -6,12 +6,6 @@ libc.so: free
e354a5
 libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist
e354a5
index b411871d0631e1a3..845f356c3c3fad54 100644
e354a5
--- a/sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist
e354a5
@@ -3,7 +3,3 @@ GLIBC_2.27 __stack_chk_guard D 0x8
e354a5
 GLIBC_2.27 __tls_get_addr F
e354a5
 GLIBC_2.27 _dl_mcount F
e354a5
 GLIBC_2.27 _r_debug D 0x28
e354a5
-GLIBC_2.27 calloc F
e354a5
-GLIBC_2.27 free F
e354a5
-GLIBC_2.27 malloc F
e354a5
-GLIBC_2.27 realloc F
e354a5
diff --git a/sysdeps/unix/sysv/linux/s390/localplt.data b/sysdeps/unix/sysv/linux/s390/localplt.data
e354a5
index e822e0a4809e5088..a02dd5cc246329a0 100644
e354a5
--- a/sysdeps/unix/sysv/linux/s390/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/s390/localplt.data
e354a5
@@ -5,12 +5,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist
e354a5
index 0576c9575ea6118e..b56f005bebd3baf1 100644
e354a5
--- a/sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x4
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_offset F
e354a5
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist
e354a5
index 1fbb890d1dc495e5..6f788a086d68aaa5 100644
e354a5
--- a/sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.2 __libc_stack_end D 0x8
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.2 _r_debug D 0x28
e354a5
-GLIBC_2.2 calloc F
e354a5
-GLIBC_2.2 free F
e354a5
-GLIBC_2.2 malloc F
e354a5
-GLIBC_2.2 realloc F
e354a5
 GLIBC_2.3 __tls_get_offset F
e354a5
diff --git a/sysdeps/unix/sysv/linux/sh/ld.abilist b/sysdeps/unix/sysv/linux/sh/ld.abilist
e354a5
index 0387614d8fd784eb..d155a59843df9091 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sh/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/sh/ld.abilist
e354a5
@@ -1,9 +1,5 @@
e354a5
 GLIBC_2.2 __libc_stack_end D 0x4
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.2 _r_debug D 0x14
e354a5
-GLIBC_2.2 calloc F
e354a5
-GLIBC_2.2 free F
e354a5
-GLIBC_2.2 malloc F
e354a5
-GLIBC_2.2 realloc F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
 GLIBC_2.4 __stack_chk_guard D 0x4
e354a5
diff --git a/sysdeps/unix/sysv/linux/sh/localplt.data b/sysdeps/unix/sysv/linux/sh/localplt.data
e354a5
index babb19d71785515d..3225177c50956972 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sh/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/sh/localplt.data
e354a5
@@ -12,12 +12,6 @@ libc.so: __errno_location
e354a5
 libm.so: matherr
e354a5
 # Generated by the compiler because there is no trap insn pattern.
e354a5
 libc.so: abort ?
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist b/sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist
e354a5
index fd0b33f86d3f9c5c..0c6610e3c2f00cf3 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.0 _r_debug D 0x14
e354a5
-GLIBC_2.0 calloc F
e354a5
-GLIBC_2.0 free F
e354a5
-GLIBC_2.0 malloc F
e354a5
-GLIBC_2.0 realloc F
e354a5
 GLIBC_2.1 __libc_stack_end D 0x4
e354a5
 GLIBC_2.1 _dl_mcount F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data b/sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data
e354a5
index 1668f4017e0f28f0..be40910c4de9859a 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data
e354a5
@@ -17,12 +17,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist b/sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist
e354a5
index 82042472c3089a29..33f91199bfa516fb 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.2 __libc_stack_end D 0x8
e354a5
 GLIBC_2.2 _dl_mcount F
e354a5
 GLIBC_2.2 _r_debug D 0x28
e354a5
-GLIBC_2.2 calloc F
e354a5
-GLIBC_2.2 free F
e354a5
-GLIBC_2.2 malloc F
e354a5
-GLIBC_2.2 realloc F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data b/sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data
e354a5
index b881b9096d9fa38f..809062d46c1b4837 100644
e354a5
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data
e354a5
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data
e354a5
@@ -18,12 +18,6 @@ libc.so: malloc
e354a5
 libc.so: memalign
e354a5
 libc.so: realloc
e354a5
 libm.so: matherr
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc
e354a5
-ld.so: calloc
e354a5
-ld.so: realloc
e354a5
-ld.so: free
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error
e354a5
 ld.so: _dl_catch_error
e354a5
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/ld.abilist b/sysdeps/unix/sysv/linux/x86_64/64/ld.abilist
e354a5
index 0dc943061197d374..d3cdf7611eb9cab3 100644
e354a5
--- a/sysdeps/unix/sysv/linux/x86_64/64/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/x86_64/64/ld.abilist
e354a5
@@ -1,8 +1,4 @@
e354a5
 GLIBC_2.2.5 __libc_stack_end D 0x8
e354a5
 GLIBC_2.2.5 _dl_mcount F
e354a5
 GLIBC_2.2.5 _r_debug D 0x28
e354a5
-GLIBC_2.2.5 calloc F
e354a5
-GLIBC_2.2.5 free F
e354a5
-GLIBC_2.2.5 malloc F
e354a5
-GLIBC_2.2.5 realloc F
e354a5
 GLIBC_2.3 __tls_get_addr F
e354a5
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist b/sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist
e354a5
index 80f3161586414674..c70bccf78245a552 100644
e354a5
--- a/sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist
e354a5
+++ b/sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist
e354a5
@@ -2,7 +2,3 @@ GLIBC_2.16 __libc_stack_end D 0x4
e354a5
 GLIBC_2.16 __tls_get_addr F
e354a5
 GLIBC_2.16 _dl_mcount F
e354a5
 GLIBC_2.16 _r_debug D 0x14
e354a5
-GLIBC_2.16 calloc F
e354a5
-GLIBC_2.16 free F
e354a5
-GLIBC_2.16 malloc F
e354a5
-GLIBC_2.16 realloc F
e354a5
diff --git a/sysdeps/x86_64/localplt.data b/sysdeps/x86_64/localplt.data
e354a5
index c27a02b66acd2ab4..8f41e928708d9a42 100644
e354a5
--- a/sysdeps/x86_64/localplt.data
e354a5
+++ b/sysdeps/x86_64/localplt.data
e354a5
@@ -9,12 +9,6 @@ libc.so: malloc + RELA R_X86_64_GLOB_DAT
e354a5
 libc.so: memalign + RELA R_X86_64_GLOB_DAT
e354a5
 libc.so: realloc + RELA R_X86_64_GLOB_DAT
e354a5
 libm.so: matherr + RELA R_X86_64_GLOB_DAT
e354a5
-# The main malloc is interposed into the dynamic linker, for
e354a5
-# allocations after the initial link (when dlopen is used).
e354a5
-ld.so: malloc + RELA R_X86_64_GLOB_DAT
e354a5
-ld.so: calloc + RELA R_X86_64_GLOB_DAT
e354a5
-ld.so: realloc + RELA R_X86_64_GLOB_DAT
e354a5
-ld.so: free + RELA R_X86_64_GLOB_DAT
e354a5
 # The TLS-enabled version of these functions is interposed from libc.so.
e354a5
 ld.so: _dl_signal_error + RELA R_X86_64_GLOB_DAT
e354a5
 ld.so: _dl_catch_error + RELA R_X86_64_GLOB_DAT