Remove "[Add new features here]" for 2.27
[glibc.git] / sysdeps / generic / dl-machine.h
blob41537601d2cc0c13f568f00f8213fa381d1721e9
1 /* Machine-dependent ELF dynamic relocation inline functions. Stub version.
2 Copyright (C) 1995-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #define ELF_MACHINE_NAME "stub"
21 #include <string.h>
22 #include <link.h>
25 /* Return nonzero iff ELF header is compatible with the running host. */
26 static inline int
27 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
29 switch (ehdr->e_machine)
31 default:
32 return 0;
37 /* Return the link-time address of _DYNAMIC. */
38 static inline Elf32_Addr
39 elf_machine_dynamic (void)
41 #error "Damn, no _DYNAMIC"
45 /* Return the run-time load address of the shared object. */
46 static inline Elf32_Addr
47 elf_machine_load_address (void)
49 #error "Where am I?"
52 /* Fixup a PLT entry to bounce directly to the function at VALUE. */
54 static inline ElfW(Addr)
55 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
56 const ElfW(Sym) *refsym, const ElfW(Sym) *sym,
57 const ElfW(Rel) *reloc,
58 ElfW(Addr) *reloc_addr, ElfW(Addr) value)
60 return *reloc_addr = value;
63 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
64 LOADADDR is the load address of the object; INFO is an array indexed
65 by DT_* of the .dynamic section info. */
67 auto inline void
68 __attribute__ ((always_inline))
69 elf_machine_rel (Elf32_Addr loadaddr, Elf32_Dyn *info[DT_NUM],
70 const Elf32_Rel *reloc, const Elf32_Sym *sym,
71 Elf32_Addr (*resolve) (const Elf32_Sym **ref,
72 Elf32_Addr reloc_addr,
73 int noplt))
75 Elf32_Addr *const reloc_addr = (Elf32_Addr *) reloc->r_offset;
76 Elf32_Addr loadbase;
78 switch (ELF32_R_TYPE (reloc->r_info))
80 case R_MACHINE_COPY:
81 loadbase = (*resolve) (&sym, (Elf32_Addr) reloc_addr, 0);
82 memcpy (reloc_addr, (void *) (loadbase + sym->st_value), sym->st_size);
83 break;
84 default:
85 _dl_reloc_bad_type (map, ELF32_R_TYPE (reloc->r_info), 0);
86 break;
91 auto inline Elf32_Addr
92 __attribute__ ((always_inline))
93 elf_machine_rela (Elf32_Addr loadaddr, Elf32_Dyn *info[DT_NUM],
94 const Elf32_Rel *reloc, const Elf32_Sym *sym,
95 Elf32_Addr (*resolve) (const Elf32_Sym **ref,
96 Elf32_Addr reloc_addr,
97 int noplt))
99 _dl_signal_error (0, "Elf32_Rela relocation requested -- unused on "
100 NULL, ELF_MACHINE_NAME);
104 /* Set up the loaded object described by L so its unrelocated PLT
105 entries will jump to the on-demand fixup code in dl-runtime.c. */
107 static inline int
108 elf_machine_runtime_setup (struct link_map *l, int lazy)
110 extern void _dl_runtime_resolve (Elf32_Word);
112 if (lazy)
114 /* The GOT entries for functions in the PLT have not yet been filled
115 in. Their initial contents will arrange when called to push an
116 offset into the .rel.plt section, push _GLOBAL_OFFSET_TABLE_[1],
117 and then jump to _GLOBAL_OFFSET_TABLE[2]. */
118 Elf32_Addr *got = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
119 got[1] = (Elf32_Addr) l; /* Identify this shared object. */
121 /* This function will get called to fix up the GOT entry indicated by
122 the offset on the stack, and then jump to the resolved address. */
123 got[2] = (Elf32_Addr) &_dl_runtime_resolve;
126 return lazy;
130 /* Initial entry point code for the dynamic linker.
131 The C function `_dl_start' is the real entry point;
132 its return value is the user program's entry point. */
134 #define RTLD_START #error need some startup code