Blame include/rtld-malloc.h

Packit Service cdfee5
/* Redirection of malloc inside the dynamic linker.
Packit Service cdfee5
   Copyright (C) 2020 Free Software Foundation, Inc.
Packit Service cdfee5
   This file is part of the GNU C Library.
Packit Service cdfee5
Packit Service cdfee5
   The GNU C Library is free software; you can redistribute it and/or
Packit Service cdfee5
   modify it under the terms of the GNU Lesser General Public
Packit Service cdfee5
   License as published by the Free Software Foundation; either
Packit Service cdfee5
   version 2.1 of the License, or (at your option) any later version.
Packit Service cdfee5
Packit Service cdfee5
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service cdfee5
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service cdfee5
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service cdfee5
   Lesser General Public License for more details.
Packit Service cdfee5
Packit Service cdfee5
   You should have received a copy of the GNU Lesser General Public
Packit Service cdfee5
   License along with the GNU C Library; if not, see
Packit Service cdfee5
   <https://www.gnu.org/licenses/>.  */
Packit Service cdfee5
Packit Service cdfee5
/* The dynamic linker needs to use its own minimal malloc before libc
Packit Service cdfee5
   has been relocated, and the libc malloc afterwards.  The active
Packit Service cdfee5
   malloc implementation is reached via the __rtld_* function pointers
Packit Service cdfee5
   declared below.  They are initialized to the minimal malloc by
Packit Service cdfee5
   __rtld_malloc_init_stubs, and set to the final implementation by
Packit Service cdfee5
   __rtld_malloc_init_real.  */
Packit Service cdfee5
Packit Service cdfee5
#ifndef _RTLD_MALLOC_H
Packit Service cdfee5
#define _RTLD_MALLOC_H
Packit Service cdfee5
Packit Service cdfee5
#if IS_IN (rtld)
Packit Service cdfee5
Packit Service cdfee5
extern __typeof (calloc) *__rtld_calloc attribute_hidden;
Packit Service cdfee5
extern __typeof (free) *__rtld_free attribute_hidden;
Packit Service cdfee5
extern __typeof (malloc) *__rtld_malloc attribute_hidden;
Packit Service cdfee5
extern __typeof (realloc) *__rtld_realloc attribute_hidden;
Packit Service cdfee5
Packit Service cdfee5
/* Wrapper functions which call through the function pointers above.
Packit Service cdfee5
   Note that it is not supported to take the address of those
Packit Service cdfee5
   functions.  Instead the function pointers must be used
Packit Service cdfee5
   directly.  */
Packit Service cdfee5
Packit Service cdfee5
__extern_inline void *
Packit Service cdfee5
calloc (size_t a, size_t b)
Packit Service cdfee5
{
Packit Service cdfee5
  return __rtld_calloc (a, b);
Packit Service cdfee5
}
Packit Service cdfee5
Packit Service cdfee5
__extern_inline void
Packit Service cdfee5
free (void *ptr)
Packit Service cdfee5
{
Packit Service cdfee5
   __rtld_free (ptr);
Packit Service cdfee5
}
Packit Service cdfee5
Packit Service cdfee5
__extern_inline void *
Packit Service cdfee5
malloc (size_t size)
Packit Service cdfee5
{
Packit Service cdfee5
  return __rtld_malloc (size);
Packit Service cdfee5
}
Packit Service cdfee5
Packit Service cdfee5
__extern_inline void *
Packit Service cdfee5
realloc (void *ptr, size_t size)
Packit Service cdfee5
{
Packit Service cdfee5
  return __rtld_realloc (ptr, size);
Packit Service cdfee5
}
Packit Service cdfee5
Packit Service cdfee5
/* Called after the first self-relocation to activate the minimal malloc
Packit Service cdfee5
   implementation.  */
Packit Service cdfee5
void __rtld_malloc_init_stubs (void) attribute_hidden;
Packit Service cdfee5
Packit Service 7f2103
/* Return false if the active malloc is the ld.so minimal malloc, true
Packit Service 7f2103
   if it is the full implementation from libc.so.  */
Packit Service 7f2103
_Bool __rtld_malloc_is_complete (void) attribute_hidden;
Packit Service 7f2103
Packit Service cdfee5
/* Called shortly before the final self-relocation (when RELRO
Packit Service cdfee5
   variables are still writable) to activate the real malloc
Packit Service cdfee5
   implementation.  MAIN_MAP is the link map of the executable.  */
Packit Service cdfee5
struct link_map;
Packit Service cdfee5
void __rtld_malloc_init_real (struct link_map *main_map) attribute_hidden;
Packit Service cdfee5
Packit Service cdfee5
#else /* !IS_IN (rtld) */
Packit Service cdfee5
Packit Service cdfee5
/* This allows static/non-rtld builds to get a pointer to the
Packit Service cdfee5
   functions, in the same way that is required inside rtld.  */
Packit Service cdfee5
# define __rtld_calloc (&calloc)
Packit Service cdfee5
# define __rtld_free (&free)
Packit Service cdfee5
# define __rtld_malloc (&malloc)
Packit Service cdfee5
# define __rtld_realloc (&realloc)
Packit Service cdfee5
Packit Service cdfee5
#endif /* !IS_IN (rtld) */
Packit Service cdfee5
#endif /* _RTLD_MALLOC_H */