Blame include/rtld-malloc.h

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