2002-03-13 02:40:39 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999, 2000 John D. Polstra.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RTLD_MACHDEP_H
|
|
|
|
#define RTLD_MACHDEP_H 1
|
|
|
|
|
2002-10-09 20:20:43 +00:00
|
|
|
#include <sys/types.h>
|
2002-03-13 02:40:39 +00:00
|
|
|
#include <machine/atomic.h>
|
|
|
|
|
|
|
|
#define CACHE_LINE_SIZE 128
|
|
|
|
|
|
|
|
struct Struct_Obj_Entry;
|
|
|
|
|
|
|
|
/* Return the address of the .dynamic section in the dynamic linker. */
|
2007-12-01 14:24:44 +00:00
|
|
|
Elf_Dyn *rtld_dynamic_addr(void);
|
Fix the problem that surfaced with the new binutils import on sparc64
(and that is for now being worked around by a binutils patch).
The rtld code tested &_DYNAMIC against 0 to see whether rtld itself
was built as PIC or not. While the sparc64 MD code did not rely
on the preset value of the GOT slot for _DYNAMIC any more due
to previous binutils changes, it still used to not be 0, so
that this check did work. The new binutils do however initialize
this slot with 0. As a consequence, rtld would not properly initialize
itself and crash.
Fix that by introducing a new macro, RTLD_IS_DYNAMIC, to take the role
of this test. For sparc64, it is implemented using the rtld_dynamic()
code that was already there. If an architecture does not provide its
own implementation, we default to the old check.
While being there, mark _DYNAMIC as a weak symbol in the sparc64
rtld_start.S. This is needed in the LDSCRIPT case, which is however
not currently supported for want of an actual ldscript.
Sanity checked with md5 on alpha, amd64, i386 and ia64.
2004-06-18 02:01:37 +00:00
|
|
|
#define rtld_dynamic(obj) rtld_dynamic_addr()
|
|
|
|
#define RTLD_IS_DYNAMIC() (rtld_dynamic_addr() != NULL)
|
2002-03-13 02:40:39 +00:00
|
|
|
|
|
|
|
Elf_Addr reloc_jmpslot(Elf_Addr *, Elf_Addr,
|
2002-11-18 22:08:50 +00:00
|
|
|
const struct Struct_Obj_Entry *,
|
|
|
|
const struct Struct_Obj_Entry *,
|
|
|
|
const Elf_Rel *);
|
2002-03-13 02:40:39 +00:00
|
|
|
|
|
|
|
#define make_function_pointer(def, defobj) \
|
|
|
|
((defobj)->relocbase + (def)->st_value)
|
|
|
|
|
|
|
|
#define call_initfini_pointer(obj, target) \
|
|
|
|
(((InitFunc)(target))())
|
|
|
|
|
2004-08-03 08:51:00 +00:00
|
|
|
#define round(size, align) \
|
|
|
|
(((size) + (align) - 1) & ~((align) - 1))
|
|
|
|
#define calculate_first_tls_offset(size, align) \
|
|
|
|
round(size, align)
|
|
|
|
#define calculate_tls_offset(prev_offset, prev_size, size, align) \
|
|
|
|
round((prev_offset) + (size), align)
|
|
|
|
#define calculate_tls_end(off, size) ((off) + (size))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned long ti_module;
|
|
|
|
unsigned long ti_offset;
|
|
|
|
} tls_index;
|
|
|
|
|
|
|
|
extern void *__tls_get_addr(tls_index *ti);
|
|
|
|
|
2002-03-13 02:40:39 +00:00
|
|
|
#endif
|