]> sourceware.org Git - glibc.git/blame - sysdeps/i386/dl-machine.h
Update.
[glibc.git] / sysdeps / i386 / dl-machine.h
CommitLineData
d66e34cd 1/* Machine-dependent ELF dynamic relocation inline functions. i386 version.
5879ee9f 2 Copyright (C) 1995,96,97,98,99,2000 Free Software Foundation, Inc.
47707456 3 This file is part of the GNU C Library.
d66e34cd 4
47707456
UD
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
d66e34cd 9
47707456
UD
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 Library General Public License for more details.
d66e34cd 14
47707456 15 You should have received a copy of the GNU Library General Public
01c901a5
UD
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
d66e34cd 19
f51d1dfd
RM
20#ifndef dl_machine_h
21#define dl_machine_h
22
d66e34cd
RM
23#define ELF_MACHINE_NAME "i386"
24
1f07e617
UD
25#include <sys/param.h>
26
d66e34cd 27/* Return nonzero iff E_MACHINE is compatible with the running host. */
e75154a6 28static inline int __attribute__ ((unused))
d66e34cd
RM
29elf_machine_matches_host (Elf32_Half e_machine)
30{
31 switch (e_machine)
32 {
33 case EM_386:
d66e34cd
RM
34 return 1;
35 default:
36 return 0;
37 }
38}
39
40
47707456
UD
41/* Return the link-time address of _DYNAMIC. Conveniently, this is the
42 first element of the GOT. This must be inlined in a function which
43 uses global data. */
0a54e401 44static inline Elf32_Addr __attribute__ ((unused))
47707456 45elf_machine_dynamic (void)
d66e34cd
RM
46{
47 register Elf32_Addr *got asm ("%ebx");
47707456 48 return *got;
d66e34cd
RM
49}
50
51
52/* Return the run-time load address of the shared object. */
e75154a6 53static inline Elf32_Addr __attribute__ ((unused))
d66e34cd
RM
54elf_machine_load_address (void)
55{
56 Elf32_Addr addr;
92f1da4d
UD
57 asm ("leal _dl_start@GOTOFF(%%ebx), %0\n"
58 "subl _dl_start@GOT(%%ebx), %0"
59 : "=r" (addr) : : "cc");
d66e34cd
RM
60 return addr;
61}
d66e34cd 62
5ae9d168 63#ifndef PROF
831372e7
UD
64/* We add a declaration of this function here so that in dl-runtime.c
65 the ELF_MACHINE_RUNTIME_TRAMPOLINE macro really can pass the parameters
5ae9d168
UD
66 in registers.
67
68 We cannot use this scheme for profiling because the _mcount call
69 destroys the passed register information. */
831372e7
UD
70static ElfW(Addr) fixup (struct link_map *l, ElfW(Word) reloc_offset)
71 __attribute__ ((regparm (2), unused));
3996f34b
UD
72static ElfW(Addr) profile_fixup (struct link_map *l, ElfW(Word) reloc_offset,
73 ElfW(Addr) retaddr)
74 __attribute__ ((regparm (3), unused));
5ae9d168 75#endif
831372e7 76
d66e34cd
RM
77/* Set up the loaded object described by L so its unrelocated PLT
78 entries will jump to the on-demand fixup code in dl-runtime.c. */
79
0a54e401 80static inline int __attribute__ ((unused))
3996f34b 81elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
d66e34cd 82{
a1a9d215 83 Elf32_Addr *got;
d66e34cd 84 extern void _dl_runtime_resolve (Elf32_Word);
3996f34b 85 extern void _dl_runtime_profile (Elf32_Word);
a1a9d215 86
a2e1b046
RM
87 if (l->l_info[DT_JMPREL] && lazy)
88 {
89 /* The GOT entries for functions in the PLT have not yet been filled
90 in. Their initial contents will arrange when called to push an
91 offset into the .rel.plt section, push _GLOBAL_OFFSET_TABLE_[1],
92 and then jump to _GLOBAL_OFFSET_TABLE[2]. */
a42195db 93 got = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
a2e1b046 94 got[1] = (Elf32_Addr) l; /* Identify this shared object. */
3996f34b
UD
95
96 /* The got[2] entry contains the address of a function which gets
97 called to get the address of a so far unresolved function and
98 jump to it. The profiling extension of the dynamic linker allows
99 to intercept the calls to collect information. In this case we
100 don't store the address in the GOT so that all future calls also
101 end in this function. */
102 if (profile)
103 {
104 got[2] = (Elf32_Addr) &_dl_runtime_profile;
c0fb8a56
UD
105
106 if (_dl_name_match_p (_dl_profile, l))
107 /* This is the object we are looking for. Say that we really
108 want profiling and the timers are started. */
109 _dl_profile_map = l;
3996f34b
UD
110 }
111 else
112 /* This function will get called to fix up the GOT entry indicated by
113 the offset on the stack, and then jump to the resolved address. */
114 got[2] = (Elf32_Addr) &_dl_runtime_resolve;
a2e1b046 115 }
d66e34cd 116
0501d603
UD
117 return lazy;
118}
831372e7 119
0501d603
UD
120/* This code is used in dl-runtime.c to call the `fixup' function
121 and then redirect to the address it returns. */
5ae9d168
UD
122#ifndef PROF
123# define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\
650425ce 124 .text
38334018
RM
125 .globl _dl_runtime_resolve
126 .type _dl_runtime_resolve, @function
f41c8091 127 .align 16
38334018 128_dl_runtime_resolve:
831372e7
UD
129 pushl %eax # Preserve registers otherwise clobbered.
130 pushl %ecx
131 pushl %edx
132 movl 16(%esp), %edx # Copy args pushed by PLT in register. Note
133 movl 12(%esp), %eax # that `fixup' takes its parameters in regs.
134 call fixup # Call resolver.
135 popl %edx # Get register content back.
136 popl %ecx
137 xchgl %eax, (%esp) # Get %eax contents end store function address.
138 ret $8 # Jump to function address.
139 .size _dl_runtime_resolve, .-_dl_runtime_resolve
3996f34b
UD
140
141 .globl _dl_runtime_profile
142 .type _dl_runtime_profile, @function
f41c8091 143 .align 16
3996f34b
UD
144_dl_runtime_profile:
145 pushl %eax # Preserve registers otherwise clobbered.
146 pushl %ecx
147 pushl %edx
148 movl 20(%esp), %ecx # Load return address
149 movl 16(%esp), %edx # Copy args pushed by PLT in register. Note
150 movl 12(%esp), %eax # that `fixup' takes its parameters in regs.
151 call profile_fixup # Call resolver.
152 popl %edx # Get register content back.
153 popl %ecx
154 xchgl %eax, (%esp) # Get %eax contents end store function address.
155 ret $8 # Jump to function address.
156 .size _dl_runtime_profile, .-_dl_runtime_profile
650425ce 157 .previous
38334018 158");
5ae9d168
UD
159#else
160# define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\
650425ce 161 .text
5ae9d168 162 .globl _dl_runtime_resolve
3996f34b 163 .globl _dl_runtime_profile
5ae9d168 164 .type _dl_runtime_resolve, @function
3996f34b 165 .type _dl_runtime_profile, @function
f41c8091 166 .align 16
5ae9d168 167_dl_runtime_resolve:
3996f34b 168_dl_runtime_profile:
5ae9d168
UD
169 pushl %eax # Preserve registers otherwise clobbered.
170 pushl %ecx
171 pushl %edx
172 movl 16(%esp), %edx # Push the arguments for `fixup'
173 movl 12(%esp), %eax
174 pushl %edx
175 pushl %eax
176 call fixup # Call resolver.
177 popl %edx # Pop the parameters
178 popl %ecx
179 popl %edx # Get register content back.
180 popl %ecx
181 xchgl %eax, (%esp) # Get %eax contents end store function address.
182 ret $8 # Jump to function address.
183 .size _dl_runtime_resolve, .-_dl_runtime_resolve
3996f34b 184 .size _dl_runtime_profile, .-_dl_runtime_profile
650425ce 185 .previous
5ae9d168
UD
186");
187#endif
d66e34cd 188
5bf62f2d
RM
189/* Mask identifying addresses reserved for the user program,
190 where the dynamic linker should not map anything. */
191#define ELF_MACHINE_USER_ADDRESS_MASK 0xf8000000UL
192
d66e34cd
RM
193/* Initial entry point code for the dynamic linker.
194 The C function `_dl_start' is the real entry point;
195 its return value is the user program's entry point. */
196
197#define RTLD_START asm ("\
198.text\n\
9ad04ff7
UD
199 .align 16\n\
2000: movl (%esp), %ebx\n\
201 ret\n\
202 .align 16\n\
d66e34cd 203.globl _start\n\
421f82e5
RM
204.globl _dl_start_user\n\
205_start:\n\
8d6468d0 206 pushl %esp\n\
421f82e5 207 call _dl_start\n\
8d6468d0 208 popl %ebx\n\
421f82e5
RM
209_dl_start_user:\n\
210 # Save the user entry point address in %edi.\n\
211 movl %eax, %edi\n\
212 # Point %ebx at the GOT.
9ad04ff7
UD
213 call 0b\n\
214 addl $_GLOBAL_OFFSET_TABLE_, %ebx\n\
c0fb8a56 215 # Store the highest stack address\n\
95a99ee6
UD
216 movl __libc_stack_end@GOT(%ebx), %eax\n\
217 movl %esp, (%eax)\n\
a1a9d215
RM
218 # See if we were run as a command with the executable file\n\
219 # name as an extra leading argument.\n\
24906b43 220 movl _dl_skip_args@GOT(%ebx), %eax\n\
edf5b2d7 221 movl (%eax), %eax\n\
24906b43 222 # Pop the original argument count.\n\
0a63529d 223 popl %edx\n\
24906b43
RM
224 # Adjust the stack pointer to skip _dl_skip_args words.\n\
225 leal (%esp,%eax,4), %esp\n\
5879ee9f 226 # Subtract _dl_skip_args from argc.\n\
0a63529d 227 subl %eax, %edx\n\
5879ee9f 228 # Push argc back on the stack.\n\
0a63529d 229 push %edx\n\
5879ee9f
RM
230 # The special initializer gets called with the stack just\n\
231 # as the application's entry point will see it; it can\n\
232 # switch stacks if it moves these contents over.\n\
233" RTLD_START_SPECIAL_INIT "\n\
dacc8ffa 234 # Load the parameters again.\n\
5879ee9f 235 # (eax, edx, ecx, *--esp) = (_dl_loaded, argc, argv, envp)\n\
0a63529d
UD
236 movl _dl_loaded@GOT(%ebx), %esi\n\
237 leal 8(%esp,%edx,4), %eax\n\
5879ee9f 238 leal 4(%esp), %ecx\n\
0a63529d
UD
239 pushl %eax\n\
240 movl (%esi), %eax\n\
dacc8ffa
UD
241 # Call the function to run the initializers.\n\
242 call _dl_init@PLT\n\
39778c6c 243 # Pass our finalizer function to the user in %edx, as per ELF ABI.\n\
a1a9d215 244 movl _dl_fini@GOT(%ebx), %edx\n\
421f82e5
RM
245 # Jump to the user's entry point.\n\
246 jmp *%edi\n\
92f1da4d 247.previous\n\
d66e34cd 248");
f51d1dfd 249
5879ee9f
RM
250#ifndef RTLD_START_SPECIAL_INIT
251#define RTLD_START_SPECIAL_INIT /* nothing */
252#endif
253
34b402e5
UD
254/* Nonzero iff TYPE should not be allowed to resolve to one of
255 the main executable's symbols, as for a COPY reloc. */
bc9f6000
UD
256#define elf_machine_lookup_noexec_p(type) ((type) == R_386_COPY)
257
258/* Nonzero iff TYPE describes relocation of a PLT entry, so
259 PLT entries should not be allowed to define the value. */
260#define elf_machine_lookup_noplt_p(type) ((type) == R_386_JMP_SLOT)
261
262/* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
a2b08ee5 263#define ELF_MACHINE_JMP_SLOT R_386_JMP_SLOT
f51d1dfd
RM
264
265/* The i386 never uses Elf32_Rela relocations. */
266#define ELF_MACHINE_NO_RELA 1
267
0a54e401
UD
268/* We define an initialization functions. This is called very early in
269 _dl_sysdep_start. */
270#define DL_PLATFORM_INIT dl_platform_init ()
271
272extern const char *_dl_platform;
273
274static inline void __attribute__ ((unused))
275dl_platform_init (void)
276{
27a5bb33
UD
277 if (_dl_platform != NULL && *_dl_platform == '\0')
278 /* Avoid an empty string which would disturb us. */
0a54e401
UD
279 _dl_platform = NULL;
280}
281
a2b08ee5
UD
282static inline void
283elf_machine_fixup_plt (struct link_map *map, const Elf32_Rel *reloc,
284 Elf32_Addr *reloc_addr, Elf32_Addr value)
285{
286 *reloc_addr = value;
287}
288
dfd2257a
UD
289/* Return the final value of a plt relocation. */
290static inline Elf32_Addr
291elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc,
292 Elf32_Addr value)
293{
294 return value;
295}
296
f51d1dfd
RM
297#endif /* !dl_machine_h */
298
299#ifdef RESOLVE
300
301/* Perform the relocation specified by RELOC and SYM (which is fully resolved).
302 MAP is the object containing the reloc. */
303
304static inline void
c84142e8 305elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
3996f34b
UD
306 const Elf32_Sym *sym, const struct r_found_version *version,
307 Elf32_Addr *const reloc_addr)
f51d1dfd 308{
bc9f6000 309 if (ELF32_R_TYPE (reloc->r_info) == R_386_RELATIVE)
f51d1dfd 310 {
f51d1dfd
RM
311#ifndef RTLD_BOOTSTRAP
312 if (map != &_dl_rtld_map) /* Already done in rtld itself. */
313#endif
314 *reloc_addr += map->l_addr;
f51d1dfd 315 }
714a562f 316 else if (ELF32_R_TYPE (reloc->r_info) != R_386_NONE)
bc9f6000 317 {
bc9f6000 318 const Elf32_Sym *const refsym = sym;
bc9f6000
UD
319 Elf32_Addr value = RESOLVE (&sym, version, ELF32_R_TYPE (reloc->r_info));
320 if (sym)
321 value += sym->st_value;
322
323 switch (ELF32_R_TYPE (reloc->r_info))
324 {
325 case R_386_COPY:
5107cf1d
UD
326 if (sym == NULL)
327 /* This can happen in trace mode if an object could not be
328 found. */
329 break;
cf29ffbe 330 if (sym->st_size > refsym->st_size
db276fa1 331 || (sym->st_size < refsym->st_size && _dl_verbose))
1f07e617
UD
332 {
333 const char *strtab;
334
a42195db 335 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
60c96635
UD
336 _dl_sysdep_error (_dl_argv[0] ?: "<program name unknown>",
337 ": Symbol `", strtab + refsym->st_name,
1f07e617
UD
338 "' has different size in shared object, "
339 "consider re-linking\n", NULL);
340 }
341 memcpy (reloc_addr, (void *) value, MIN (sym->st_size,
342 refsym->st_size));
bc9f6000
UD
343 break;
344 case R_386_GLOB_DAT:
345 case R_386_JMP_SLOT:
346 *reloc_addr = value;
347 break;
348 case R_386_32:
349 {
350#ifndef RTLD_BOOTSTRAP
351 /* This is defined in rtld.c, but nowhere in the static
352 libc.a; make the reference weak so static programs can
353 still link. This declaration cannot be done when
f420344c 354 compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP) because
bc9f6000
UD
355 rtld.c contains the common defn for _dl_rtld_map, which
356 is incompatible with a weak decl in the same file. */
357 weak_extern (_dl_rtld_map);
358 if (map == &_dl_rtld_map)
359 /* Undo the relocation done here during bootstrapping.
360 Now we will relocate it anew, possibly using a
361 binding found in the user program or a loaded library
362 rather than the dynamic linker's built-in definitions
363 used while loading those libraries. */
364 value -= map->l_addr + refsym->st_value;
365#endif
366 *reloc_addr += value;
367 break;
368 }
369 case R_386_PC32:
370 *reloc_addr += (value - (Elf32_Addr) reloc_addr);
371 break;
bc9f6000 372 default:
421c80d2 373 _dl_reloc_bad_type (map, ELFW(R_TYPE) (reloc->r_info), 0);
bc9f6000
UD
374 break;
375 }
376 }
f51d1dfd
RM
377}
378
379static inline void
421c80d2
RM
380elf_machine_lazy_rel (struct link_map *map,
381 Elf32_Addr l_addr, const Elf32_Rel *reloc)
f51d1dfd 382{
b0cf070b
UD
383 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
384 /* Check for unexpected PLT reloc type. */
421c80d2
RM
385 if (ELF32_R_TYPE (reloc->r_info) == R_386_JMP_SLOT)
386 *reloc_addr += l_addr;
387 else
388 _dl_reloc_bad_type (map, ELFW(R_TYPE) (reloc->r_info), 1);
f51d1dfd
RM
389}
390
391#endif /* RESOLVE */
This page took 0.185691 seconds and 5 git commands to generate.