* Makefile.in: Rebuild dependencies.
[deliverable/binutils-gdb.git] / bfd / elf32-i386.c
CommitLineData
e4b6b3e7 1/* Intel 80386/80486-specific support for 32-bit ELF
30dc85f1 2 Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
e4b6b3e7
ILT
3
4This file is part of BFD, the Binary File Descriptor library.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
e4b6b3e7
ILT
20#include "bfd.h"
21#include "sysdep.h"
013dec1a 22#include "bfdlink.h"
e4b6b3e7
ILT
23#include "libbfd.h"
24#include "libelf.h"
25
30dc85f1 26static reloc_howto_type *elf_i386_reloc_type_lookup
013dec1a
ILT
27 PARAMS ((bfd *, bfd_reloc_code_real_type));
28static void elf_i386_info_to_howto
29 PARAMS ((bfd *, arelent *, Elf32_Internal_Rela *));
30static void elf_i386_info_to_howto_rel
31 PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
eb4267a3
ILT
32static boolean elf_i386_check_relocs
33 PARAMS ((bfd *, struct bfd_link_info *, asection *,
34 const Elf_Internal_Rela *));
013dec1a
ILT
35static boolean elf_i386_adjust_dynamic_symbol
36 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
013dec1a
ILT
37static boolean elf_i386_size_dynamic_sections
38 PARAMS ((bfd *, struct bfd_link_info *));
39static boolean elf_i386_relocate_section
40 PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
eb4267a3 41 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
013dec1a
ILT
42static boolean elf_i386_finish_dynamic_symbol
43 PARAMS ((bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
44 Elf_Internal_Sym *));
45static boolean elf_i386_finish_dynamic_sections
46 PARAMS ((bfd *, struct bfd_link_info *));
47
e4b6b3e7
ILT
48#define USE_REL 1 /* 386 uses REL relocations instead of RELA */
49
50enum reloc_type
51 {
52 R_386_NONE = 0,
68241b2b
ILT
53 R_386_32,
54 R_386_PC32,
55 R_386_GOT32,
56 R_386_PLT32,
e4b6b3e7 57 R_386_COPY,
68241b2b
ILT
58 R_386_GLOB_DAT,
59 R_386_JUMP_SLOT,
e4b6b3e7 60 R_386_RELATIVE,
68241b2b
ILT
61 R_386_GOTOFF,
62 R_386_GOTPC,
e4b6b3e7
ILT
63 R_386_max
64 };
65
66#if 0
67static CONST char *CONST reloc_type_names[] =
68{
69 "R_386_NONE",
68241b2b
ILT
70 "R_386_32",
71 "R_386_PC32",
72 "R_386_GOT32",
73 "R_386_PLT32",
e4b6b3e7 74 "R_386_COPY",
68241b2b
ILT
75 "R_386_GLOB_DAT",
76 "R_386_JUMP_SLOT",
e4b6b3e7 77 "R_386_RELATIVE",
68241b2b
ILT
78 "R_386_GOTOFF",
79 "R_386_GOTPC",
e4b6b3e7
ILT
80};
81#endif
82
e4b6b3e7
ILT
83static reloc_howto_type elf_howto_table[]=
84{
68241b2b
ILT
85 HOWTO(R_386_NONE, 0,0, 0,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_NONE", true,0x00000000,0x00000000,false),
86 HOWTO(R_386_32, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_32", true,0xffffffff,0xffffffff,false),
87 HOWTO(R_386_PC32, 0,2,32,true, 0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_PC32", true,0xffffffff,0xffffffff,true),
88 HOWTO(R_386_GOT32, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_GOT32", true,0xffffffff,0xffffffff,false),
eb4267a3 89 HOWTO(R_386_PLT32, 0,2,32,true,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_PLT32", true,0xffffffff,0xffffffff,true),
68241b2b
ILT
90 HOWTO(R_386_COPY, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_COPY", true,0xffffffff,0xffffffff,false),
91 HOWTO(R_386_GLOB_DAT, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_GLOB_DAT", true,0xffffffff,0xffffffff,false),
92 HOWTO(R_386_JUMP_SLOT, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_JUMP_SLOT",true,0xffffffff,0xffffffff,false),
93 HOWTO(R_386_RELATIVE, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_RELATIVE", true,0xffffffff,0xffffffff,false),
94 HOWTO(R_386_GOTOFF, 0,2,32,false,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_GOTOFF", true,0xffffffff,0xffffffff,false),
eb4267a3 95 HOWTO(R_386_GOTPC, 0,2,32,true,0,complain_overflow_bitfield, bfd_elf_generic_reloc,"R_386_GOTPC", true,0xffffffff,0xffffffff,true),
e4b6b3e7
ILT
96};
97
98#ifdef DEBUG_GEN_RELOC
99#define TRACE(str) fprintf (stderr, "i386 bfd reloc lookup %d (%s)\n", code, str)
100#else
101#define TRACE(str)
102#endif
103
30dc85f1 104static reloc_howto_type *
013dec1a
ILT
105elf_i386_reloc_type_lookup (abfd, code)
106 bfd *abfd;
107 bfd_reloc_code_real_type code;
e4b6b3e7
ILT
108{
109 switch (code)
110 {
111 case BFD_RELOC_NONE:
112 TRACE ("BFD_RELOC_NONE");
113 return &elf_howto_table[ (int)R_386_NONE ];
114
115 case BFD_RELOC_32:
116 TRACE ("BFD_RELOC_32");
117 return &elf_howto_table[ (int)R_386_32 ];
118
119 case BFD_RELOC_32_PCREL:
120 TRACE ("BFD_RELOC_PC32");
121 return &elf_howto_table[ (int)R_386_PC32 ];
122
68241b2b
ILT
123 case BFD_RELOC_386_GOT32:
124 TRACE ("BFD_RELOC_386_GOT32");
125 return &elf_howto_table[ (int)R_386_GOT32 ];
126
127 case BFD_RELOC_386_PLT32:
128 TRACE ("BFD_RELOC_386_PLT32");
129 return &elf_howto_table[ (int)R_386_PLT32 ];
130
131 case BFD_RELOC_386_COPY:
132 TRACE ("BFD_RELOC_386_COPY");
133 return &elf_howto_table[ (int)R_386_COPY ];
134
135 case BFD_RELOC_386_GLOB_DAT:
136 TRACE ("BFD_RELOC_386_GLOB_DAT");
137 return &elf_howto_table[ (int)R_386_GLOB_DAT ];
138
139 case BFD_RELOC_386_JUMP_SLOT:
140 TRACE ("BFD_RELOC_386_JUMP_SLOT");
141 return &elf_howto_table[ (int)R_386_JUMP_SLOT ];
142
143 case BFD_RELOC_386_RELATIVE:
144 TRACE ("BFD_RELOC_386_RELATIVE");
145 return &elf_howto_table[ (int)R_386_RELATIVE ];
146
147 case BFD_RELOC_386_GOTOFF:
148 TRACE ("BFD_RELOC_386_GOTOFF");
149 return &elf_howto_table[ (int)R_386_GOTOFF ];
150
151 case BFD_RELOC_386_GOTPC:
152 TRACE ("BFD_RELOC_386_GOTPC");
153 return &elf_howto_table[ (int)R_386_GOTPC ];
154
e4b6b3e7 155 default:
68241b2b 156 break;
e4b6b3e7
ILT
157 }
158
159 TRACE ("Unknown");
160 return 0;
161}
162
163static void
013dec1a
ILT
164elf_i386_info_to_howto (abfd, cache_ptr, dst)
165 bfd *abfd;
166 arelent *cache_ptr;
167 Elf32_Internal_Rela *dst;
e4b6b3e7 168{
68241b2b 169 BFD_ASSERT (ELF32_R_TYPE(dst->r_info) < (unsigned int) R_386_max);
e4b6b3e7
ILT
170
171 cache_ptr->howto = &elf_howto_table[ELF32_R_TYPE(dst->r_info)];
172}
173
174static void
013dec1a
ILT
175elf_i386_info_to_howto_rel (abfd, cache_ptr, dst)
176 bfd *abfd;
177 arelent *cache_ptr;
178 Elf32_Internal_Rel *dst;
e4b6b3e7 179{
68241b2b 180 BFD_ASSERT (ELF32_R_TYPE(dst->r_info) < (unsigned int) R_386_max);
e4b6b3e7
ILT
181
182 cache_ptr->howto = &elf_howto_table[ELF32_R_TYPE(dst->r_info)];
183}
013dec1a
ILT
184\f
185/* Functions for the i386 ELF linker. */
186
187/* The name of the dynamic interpreter. This is put in the .interp
188 section. */
189
190#define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
191
192/* The size in bytes of an entry in the procedure linkage table. */
193
194#define PLT_ENTRY_SIZE 16
195
196/* The first entry in an absolute procedure linkage table looks like
197 this. See the SVR4 ABI i386 supplement to see how this works. */
198
89f7a04c 199static const bfd_byte elf_i386_plt0_entry[PLT_ENTRY_SIZE] =
013dec1a
ILT
200{
201 0xff, 0x35, /* pushl contents of address */
202 0, 0, 0, 0, /* replaced with address of .got + 4. */
203 0xff, 0x25, /* jmp indirect */
204 0, 0, 0, 0, /* replaced with address of .got + 8. */
205 0, 0, 0, 0 /* pad out to 16 bytes. */
206};
207
208/* Subsequent entries in an absolute procedure linkage table look like
209 this. */
210
89f7a04c 211static const bfd_byte elf_i386_plt_entry[PLT_ENTRY_SIZE] =
013dec1a
ILT
212{
213 0xff, 0x25, /* jmp indirect */
214 0, 0, 0, 0, /* replaced with address of this symbol in .got. */
215 0x68, /* pushl immediate */
216 0, 0, 0, 0, /* replaced with offset into relocation table. */
217 0xe9, /* jmp relative */
218 0, 0, 0, 0 /* replaced with offset to start of .plt. */
219};
220
eb4267a3
ILT
221/* The first entry in a PIC procedure linkage table look like this. */
222
89f7a04c 223static const bfd_byte elf_i386_pic_plt0_entry[PLT_ENTRY_SIZE] =
eb4267a3
ILT
224{
225 0xff, 0xb3, 4, 0, 0, 0, /* pushl 4(%ebx) */
226 0xff, 0xa3, 8, 0, 0, 0, /* jmp *8(%ebx) */
227 0, 0, 0, 0 /* pad out to 16 bytes. */
228};
229
230/* Subsequent entries in a PIC procedure linkage table look like this. */
231
89f7a04c 232static const bfd_byte elf_i386_pic_plt_entry[PLT_ENTRY_SIZE] =
eb4267a3
ILT
233{
234 0xff, 0xa3, /* jmp *offset(%ebx) */
235 0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
236 0x68, /* pushl immediate */
237 0, 0, 0, 0, /* replaced with offset into relocation table. */
238 0xe9, /* jmp relative */
239 0, 0, 0, 0 /* replaced with offset to start of .plt. */
240};
241
eb4267a3
ILT
242/* Look through the relocs for a section during the first phase, and
243 allocate space in the global offset table or procedure linkage
244 table. */
245
246static boolean
247elf_i386_check_relocs (abfd, info, sec, relocs)
248 bfd *abfd;
249 struct bfd_link_info *info;
250 asection *sec;
251 const Elf_Internal_Rela *relocs;
252{
253 bfd *dynobj;
254 Elf_Internal_Shdr *symtab_hdr;
255 struct elf_link_hash_entry **sym_hashes;
256 bfd_vma *local_got_offsets;
257 const Elf_Internal_Rela *rel;
258 const Elf_Internal_Rela *rel_end;
259 asection *sgot;
260 asection *srelgot;
eb4267a3
ILT
261 asection *sreloc;
262
263 if (info->relocateable)
264 return true;
265
266 dynobj = elf_hash_table (info)->dynobj;
267 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
268 sym_hashes = elf_sym_hashes (abfd);
269 local_got_offsets = elf_local_got_offsets (abfd);
270
271 sgot = NULL;
272 srelgot = NULL;
eb4267a3
ILT
273 sreloc = NULL;
274
275 rel_end = relocs + sec->reloc_count;
276 for (rel = relocs; rel < rel_end; rel++)
277 {
278 long r_symndx;
279 struct elf_link_hash_entry *h;
280
281 r_symndx = ELF32_R_SYM (rel->r_info);
282
283 if (r_symndx < symtab_hdr->sh_info)
284 h = NULL;
285 else
286 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
287
12662be4 288 /* Some relocs require a global offset table. */
eb4267a3
ILT
289 if (dynobj == NULL)
290 {
291 switch (ELF32_R_TYPE (rel->r_info))
292 {
293 case R_386_GOT32:
eb4267a3
ILT
294 case R_386_GOTOFF:
295 case R_386_GOTPC:
296 elf_hash_table (info)->dynobj = dynobj = abfd;
ede4eed4 297 if (! _bfd_elf_create_got_section (dynobj, info))
eb4267a3
ILT
298 return false;
299 break;
300
301 default:
302 break;
303 }
304 }
305
306 switch (ELF32_R_TYPE (rel->r_info))
307 {
308 case R_386_GOT32:
309 /* This symbol requires a global offset table entry. */
310
311 if (sgot == NULL)
312 {
313 sgot = bfd_get_section_by_name (dynobj, ".got");
12662be4
ILT
314 BFD_ASSERT (sgot != NULL);
315 }
316
317 if (srelgot == NULL
318 && (h != NULL || info->shared))
319 {
eb4267a3
ILT
320 srelgot = bfd_get_section_by_name (dynobj, ".rel.got");
321 if (srelgot == NULL)
322 {
323 srelgot = bfd_make_section (dynobj, ".rel.got");
324 if (srelgot == NULL
325 || ! bfd_set_section_flags (dynobj, srelgot,
326 (SEC_ALLOC
327 | SEC_LOAD
328 | SEC_HAS_CONTENTS
329 | SEC_IN_MEMORY
330 | SEC_READONLY))
331 || ! bfd_set_section_alignment (dynobj, srelgot, 2))
332 return false;
333 }
eb4267a3
ILT
334 }
335
336 if (h != NULL)
337 {
338 if (h->got_offset != (bfd_vma) -1)
339 {
340 /* We have already allocated space in the .got. */
341 break;
342 }
343 h->got_offset = sgot->_raw_size;
344
345 /* Make sure this symbol is output as a dynamic symbol. */
346 if (h->dynindx == -1)
347 {
348 if (! bfd_elf32_link_record_dynamic_symbol (info, h))
349 return false;
350 }
12662be4
ILT
351
352 srelgot->_raw_size += sizeof (Elf32_External_Rel);
eb4267a3
ILT
353 }
354 else
355 {
356 /* This is a global offset table entry for a local
357 symbol. */
358 if (local_got_offsets == NULL)
359 {
360 size_t size;
361 register int i;
362
363 size = symtab_hdr->sh_info * sizeof (bfd_vma);
364 local_got_offsets = (bfd_vma *) bfd_alloc (abfd, size);
365 if (local_got_offsets == NULL)
366 {
367 bfd_set_error (bfd_error_no_memory);
368 return false;
369 }
370 elf_local_got_offsets (abfd) = local_got_offsets;
371 for (i = 0; i < symtab_hdr->sh_info; i++)
372 local_got_offsets[i] = (bfd_vma) -1;
373 }
374 if (local_got_offsets[r_symndx] != (bfd_vma) -1)
375 {
376 /* We have already allocated space in the .got. */
377 break;
378 }
379 local_got_offsets[r_symndx] = sgot->_raw_size;
12662be4
ILT
380
381 if (info->shared)
382 {
383 /* If we are generating a shared object, we need to
384 output a R_386_RELATIVE reloc so that the dynamic
385 linker can adjust this GOT entry. */
386 srelgot->_raw_size += sizeof (Elf32_External_Rel);
387 }
eb4267a3
ILT
388 }
389
390 sgot->_raw_size += 4;
eb4267a3
ILT
391
392 break;
393
394 case R_386_PLT32:
12662be4
ILT
395 /* This symbol requires a procedure linkage table entry. We
396 actually build the entry in adjust_dynamic_symbol,
397 because this might be a case of linking PIC code without
398 linking in any dynamic objects, in which case we don't
399 need to generate a procedure linkage table after all. */
eb4267a3
ILT
400
401 /* If this is a local symbol, we resolve it directly without
402 creating a procedure linkage table entry. */
403 if (h == NULL)
404 continue;
405
eb4267a3
ILT
406 /* Make sure this symbol is output as a dynamic symbol. */
407 if (h->dynindx == -1)
408 {
409 if (! bfd_elf32_link_record_dynamic_symbol (info, h))
410 return false;
411 }
412
12662be4 413 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
eb4267a3
ILT
414
415 break;
416
417 case R_386_32:
418 case R_386_PC32:
419 if (info->shared
420 && (sec->flags & SEC_ALLOC) != 0)
421 {
14cac507
ILT
422 /* When creating a shared object, we must copy these
423 reloc types into the output file. We create a reloc
424 section in dynobj and make room for this reloc. */
eb4267a3
ILT
425 if (sreloc == NULL)
426 {
427 const char *name;
428
ede4eed4 429 name = (bfd_elf_string_from_elf_section
eb4267a3
ILT
430 (abfd,
431 elf_elfheader (abfd)->e_shstrndx,
432 elf_section_data (sec)->rel_hdr.sh_name));
433 if (name == NULL)
434 return false;
435
436 BFD_ASSERT (strncmp (name, ".rel", 4) == 0
437 && strcmp (bfd_get_section_name (abfd, sec),
438 name + 4) == 0);
439
440 sreloc = bfd_get_section_by_name (dynobj, name);
441 if (sreloc == NULL)
442 {
443 sreloc = bfd_make_section (dynobj, name);
444 if (sreloc == NULL
445 || ! bfd_set_section_flags (dynobj, sreloc,
446 (SEC_ALLOC
447 | SEC_LOAD
448 | SEC_HAS_CONTENTS
449 | SEC_IN_MEMORY
450 | SEC_READONLY))
451 || ! bfd_set_section_alignment (dynobj, sreloc, 2))
452 return false;
453 }
454 }
455
456 sreloc->_raw_size += sizeof (Elf32_External_Rel);
457 }
458
459 break;
460
461 default:
462 break;
463 }
464 }
013dec1a
ILT
465
466 return true;
467}
468
469/* Adjust a symbol defined by a dynamic object and referenced by a
470 regular object. The current definition is in some section of the
471 dynamic object, but we're not including those sections. We have to
472 change the definition to something the rest of the link can
473 understand. */
474
475static boolean
476elf_i386_adjust_dynamic_symbol (info, h)
477 struct bfd_link_info *info;
478 struct elf_link_hash_entry *h;
479{
480 bfd *dynobj;
481 asection *s;
482 unsigned int power_of_two;
013dec1a
ILT
483
484 dynobj = elf_hash_table (info)->dynobj;
485
486 /* Make sure we know what is going on here. */
3004a68c
ILT
487 BFD_ASSERT (dynobj != NULL
488 && ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT)
489 || ((h->elf_link_hash_flags
490 & ELF_LINK_HASH_DEF_DYNAMIC) != 0
491 && (h->elf_link_hash_flags
492 & ELF_LINK_HASH_REF_REGULAR) != 0
493 && (h->elf_link_hash_flags
494 & ELF_LINK_HASH_DEF_REGULAR) == 0)));
013dec1a
ILT
495
496 /* If this is a function, put it in the procedure linkage table. We
497 will fill in the contents of the procedure linkage table later,
498 when we know the address of the .got section. */
12662be4
ILT
499 if (h->type == STT_FUNC
500 || (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0)
013dec1a 501 {
12662be4
ILT
502 if (! elf_hash_table (info)->dynamic_sections_created)
503 {
504 /* This case can occur if we saw a PLT32 reloc in an input
505 file, but none of the input files were dynamic objects.
506 In such a case, we don't actually need to build a
507 procedure linkage table, and we can just do a PC32 reloc
508 instead. */
509 BFD_ASSERT ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0);
510 return true;
511 }
512
013dec1a
ILT
513 s = bfd_get_section_by_name (dynobj, ".plt");
514 BFD_ASSERT (s != NULL);
515
12662be4
ILT
516 /* If this is the first .plt entry, make room for the special
517 first entry. */
518 if (s->_raw_size == 0)
519 s->_raw_size += PLT_ENTRY_SIZE;
013dec1a 520
9b09a015
ILT
521 /* If this symbol is not defined in a regular file, and we are
522 not generating a shared library, then set the symbol to this
523 location in the .plt. This is required to make function
524 pointers compare as equal between the normal executable and
525 the shared library. */
526 if (! info->shared
527 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
14cac507
ILT
528 {
529 h->root.u.def.section = s;
530 h->root.u.def.value = s->_raw_size;
531 }
013dec1a 532
12662be4 533 h->plt_offset = s->_raw_size;
013dec1a 534
12662be4
ILT
535 /* Make room for this entry. */
536 s->_raw_size += PLT_ENTRY_SIZE;
013dec1a 537
12662be4
ILT
538 /* We also need to make an entry in the .got.plt section, which
539 will be placed in the .got section by the linker script. */
013dec1a 540
12662be4
ILT
541 s = bfd_get_section_by_name (dynobj, ".got.plt");
542 BFD_ASSERT (s != NULL);
543 s->_raw_size += 4;
013dec1a 544
12662be4 545 /* We also need to make an entry in the .rel.plt section. */
eb4267a3 546
12662be4
ILT
547 s = bfd_get_section_by_name (dynobj, ".rel.plt");
548 BFD_ASSERT (s != NULL);
549 s->_raw_size += sizeof (Elf32_External_Rel);
013dec1a
ILT
550
551 return true;
552 }
553
554 /* If this is a weak symbol, and there is a real definition, the
555 processor independent code will have arranged for us to see the
556 real definition first, and we can just use the same value. */
557 if (h->weakdef != NULL)
558 {
30dc85f1
ILT
559 BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
560 || h->weakdef->root.type == bfd_link_hash_defweak);
013dec1a
ILT
561 h->root.u.def.section = h->weakdef->root.u.def.section;
562 h->root.u.def.value = h->weakdef->root.u.def.value;
013dec1a
ILT
563 return true;
564 }
565
566 /* This is a reference to a symbol defined by a dynamic object which
eb4267a3
ILT
567 is not a function. */
568
569 /* If we are creating a shared library, we must presume that the
570 only references to the symbol are via the global offset table.
571 For such cases we need not do anything here; the relocations will
572 be handled correctly by relocate_section. */
573 if (info->shared)
574 return true;
575
576 /* We must allocate the symbol in our .dynbss section, which will
577 become part of the .bss section of the executable. There will be
578 an entry for this symbol in the .dynsym section. The dynamic
579 object will contain position independent code, so all references
580 from the dynamic object to this symbol will go through the global
581 offset table. The dynamic linker will use the .dynsym entry to
582 determine the address it must put in the global offset table, so
583 both the dynamic object and the regular object will refer to the
584 same memory location for the variable. */
013dec1a
ILT
585
586 s = bfd_get_section_by_name (dynobj, ".dynbss");
587 BFD_ASSERT (s != NULL);
588
589 /* If the symbol is currently defined in the .bss section of the
590 dynamic object, then it is OK to simply initialize it to zero.
591 If the symbol is in some other section, we must generate a
592 R_386_COPY reloc to tell the dynamic linker to copy the initial
593 value out of the dynamic object and into the runtime process
594 image. We need to remember the offset into the .rel.bss section
7c6da9ca 595 we are going to use. */
eb4267a3 596 if ((h->root.u.def.section->flags & SEC_LOAD) != 0)
013dec1a
ILT
597 {
598 asection *srel;
599
600 srel = bfd_get_section_by_name (dynobj, ".rel.bss");
601 BFD_ASSERT (srel != NULL);
013dec1a 602 srel->_raw_size += sizeof (Elf32_External_Rel);
eb4267a3 603 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
013dec1a
ILT
604 }
605
606 /* We need to figure out the alignment required for this symbol. I
607 have no idea how ELF linkers handle this. */
7c6da9ca
ILT
608 power_of_two = bfd_log2 (h->size);
609 if (power_of_two > 3)
610 power_of_two = 3;
013dec1a
ILT
611
612 /* Apply the required alignment. */
7c6da9ca
ILT
613 s->_raw_size = BFD_ALIGN (s->_raw_size,
614 (bfd_size_type) (1 << power_of_two));
013dec1a
ILT
615 if (power_of_two > bfd_get_section_alignment (dynobj, s))
616 {
617 if (! bfd_set_section_alignment (dynobj, s, power_of_two))
618 return false;
619 }
620
621 /* Define the symbol as being at this point in the section. */
622 h->root.u.def.section = s;
623 h->root.u.def.value = s->_raw_size;
624
625 /* Increment the section size to make room for the symbol. */
626 s->_raw_size += h->size;
627
628 return true;
629}
630
013dec1a
ILT
631/* Set the sizes of the dynamic sections. */
632
633static boolean
634elf_i386_size_dynamic_sections (output_bfd, info)
635 bfd *output_bfd;
636 struct bfd_link_info *info;
637{
638 bfd *dynobj;
639 asection *s;
eb4267a3
ILT
640 boolean plt;
641 boolean relocs;
642 boolean reltext;
013dec1a
ILT
643
644 dynobj = elf_hash_table (info)->dynobj;
645 BFD_ASSERT (dynobj != NULL);
646
12662be4 647 if (elf_hash_table (info)->dynamic_sections_created)
8af74670 648 {
12662be4
ILT
649 /* Set the contents of the .interp section to the interpreter. */
650 if (! info->shared)
651 {
652 s = bfd_get_section_by_name (dynobj, ".interp");
653 BFD_ASSERT (s != NULL);
654 s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
655 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
656 }
657 }
658 else
659 {
660 /* We may have created entries in the .rel.got section.
661 However, if we are not creating the dynamic sections, we will
662 not actually use these entries. Reset the size of .rel.got,
663 which will cause it to get stripped from the output file
664 below. */
665 s = bfd_get_section_by_name (dynobj, ".rel.got");
666 if (s != NULL)
667 s->_raw_size = 0;
8af74670 668 }
013dec1a 669
eb4267a3
ILT
670 /* The check_relocs and adjust_dynamic_symbol entry points have
671 determined the sizes of the various dynamic sections. Allocate
672 memory for them. */
673 plt = false;
674 relocs = false;
675 reltext = false;
676 for (s = dynobj->sections; s != NULL; s = s->next)
677 {
678 const char *name;
679 boolean strip;
680
681 if ((s->flags & SEC_IN_MEMORY) == 0)
682 continue;
683
684 /* It's OK to base decisions on the section name, because none
685 of the dynobj section names depend upon the input files. */
686 name = bfd_get_section_name (dynobj, s);
687
688 strip = false;
689
690 if (strcmp (name, ".plt") == 0)
691 {
692 if (s->_raw_size == 0)
693 {
694 /* Strip this section if we don't need it; see the
695 comment below. */
696 strip = true;
697 }
698 else
699 {
700 /* Remember whether there is a PLT. */
701 plt = true;
702 }
703 }
704 else if (strncmp (name, ".rel", 4) == 0)
705 {
706 if (s->_raw_size == 0)
707 {
708 /* If we don't need this section, strip it from the
709 output file. This is mostly to handle .rel.bss and
710 .rel.plt. We must create both sections in
711 create_dynamic_sections, because they must be created
712 before the linker maps input sections to output
713 sections. The linker does that before
714 adjust_dynamic_symbol is called, and it is that
715 function which decides whether anything needs to go
716 into these sections. */
717 strip = true;
718 }
719 else
720 {
721 asection *target;
722
723 /* Remember whether there are any reloc sections other
724 than .rel.plt. */
725 if (strcmp (name, ".rel.plt") != 0)
726 relocs = true;
727
728 /* If this relocation section applies to a read only
729 section, then we probably need a DT_TEXTREL entry. */
730 target = bfd_get_section_by_name (output_bfd, name + 4);
731 if (target != NULL
732 && (target->flags & SEC_READONLY) != 0)
733 reltext = true;
734
735 /* We use the reloc_count field as a counter if we need
736 to copy relocs into the output file. */
737 s->reloc_count = 0;
738 }
739 }
740 else if (strncmp (name, ".got", 4) != 0)
741 {
742 /* It's not one of our sections, so don't allocate space. */
743 continue;
744 }
745
746 if (strip)
747 {
748 asection **spp;
749
750 for (spp = &s->output_section->owner->sections;
751 *spp != s->output_section;
752 spp = &(*spp)->next)
753 ;
754 *spp = s->output_section->next;
755 --s->output_section->owner->section_count;
756
757 continue;
758 }
013dec1a 759
eb4267a3
ILT
760 /* Allocate memory for the section contents. */
761 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
762 if (s->contents == NULL && s->_raw_size != 0)
763 {
764 bfd_set_error (bfd_error_no_memory);
765 return false;
766 }
767 }
768
12662be4 769 if (elf_hash_table (info)->dynamic_sections_created)
eb4267a3 770 {
12662be4
ILT
771 /* Add some entries to the .dynamic section. We fill in the
772 values later, in elf_i386_finish_dynamic_sections, but we
773 must add the entries now so that we get the correct size for
774 the .dynamic section. The DT_DEBUG entry is filled in by the
775 dynamic linker and used by the debugger. */
776 if (! info->shared)
777 {
778 if (! bfd_elf32_add_dynamic_entry (info, DT_DEBUG, 0))
779 return false;
780 }
013dec1a 781
12662be4
ILT
782 if (plt)
783 {
784 if (! bfd_elf32_add_dynamic_entry (info, DT_PLTGOT, 0)
785 || ! bfd_elf32_add_dynamic_entry (info, DT_PLTRELSZ, 0)
786 || ! bfd_elf32_add_dynamic_entry (info, DT_PLTREL, DT_REL)
787 || ! bfd_elf32_add_dynamic_entry (info, DT_JMPREL, 0))
788 return false;
789 }
013dec1a 790
12662be4
ILT
791 if (relocs)
792 {
793 if (! bfd_elf32_add_dynamic_entry (info, DT_REL, 0)
794 || ! bfd_elf32_add_dynamic_entry (info, DT_RELSZ, 0)
795 || ! bfd_elf32_add_dynamic_entry (info, DT_RELENT,
796 sizeof (Elf32_External_Rel)))
797 return false;
798 }
013dec1a 799
12662be4
ILT
800 if (reltext)
801 {
802 if (! bfd_elf32_add_dynamic_entry (info, DT_TEXTREL, 0))
803 return false;
804 }
eb4267a3
ILT
805 }
806
013dec1a
ILT
807 return true;
808}
809
810/* Relocate an i386 ELF section. */
811
812static boolean
813elf_i386_relocate_section (output_bfd, info, input_bfd, input_section,
eb4267a3 814 contents, relocs, local_syms, local_sections)
013dec1a
ILT
815 bfd *output_bfd;
816 struct bfd_link_info *info;
817 bfd *input_bfd;
818 asection *input_section;
819 bfd_byte *contents;
820 Elf_Internal_Rela *relocs;
821 Elf_Internal_Sym *local_syms;
822 asection **local_sections;
823{
eb4267a3 824 bfd *dynobj;
013dec1a 825 Elf_Internal_Shdr *symtab_hdr;
eb4267a3
ILT
826 struct elf_link_hash_entry **sym_hashes;
827 bfd_vma *local_got_offsets;
828 asection *sgot;
829 asection *splt;
830 asection *sreloc;
013dec1a
ILT
831 Elf_Internal_Rela *rel;
832 Elf_Internal_Rela *relend;
833
eb4267a3 834 dynobj = elf_hash_table (info)->dynobj;
013dec1a 835 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
eb4267a3
ILT
836 sym_hashes = elf_sym_hashes (input_bfd);
837 local_got_offsets = elf_local_got_offsets (input_bfd);
838
839 sgot = NULL;
840 splt = NULL;
841 sreloc = NULL;
013dec1a
ILT
842
843 rel = relocs;
844 relend = relocs + input_section->reloc_count;
845 for (; rel < relend; rel++)
846 {
847 int r_type;
82b1edf7 848 reloc_howto_type *howto;
013dec1a
ILT
849 long r_symndx;
850 struct elf_link_hash_entry *h;
851 Elf_Internal_Sym *sym;
852 asection *sec;
853 bfd_vma relocation;
854 bfd_reloc_status_type r;
30dc85f1 855 char *shared_name;
013dec1a
ILT
856
857 r_type = ELF32_R_TYPE (rel->r_info);
858 if (r_type < 0 || r_type >= (int) R_386_max)
859 {
860 bfd_set_error (bfd_error_bad_value);
861 return false;
862 }
863 howto = elf_howto_table + r_type;
864
865 r_symndx = ELF32_R_SYM (rel->r_info);
866
867 if (info->relocateable)
868 {
869 /* This is a relocateable link. We don't have to change
870 anything, unless the reloc is against a section symbol,
871 in which case we have to adjust according to where the
872 section symbol winds up in the output section. */
873 if (r_symndx < symtab_hdr->sh_info)
874 {
875 sym = local_syms + r_symndx;
876 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
877 {
878 bfd_vma val;
879
880 sec = local_sections[r_symndx];
881 val = bfd_get_32 (input_bfd, contents + rel->r_offset);
882 val += sec->output_offset + sym->st_value;
883 bfd_put_32 (input_bfd, val, contents + rel->r_offset);
884 }
885 }
886
887 continue;
888 }
889
890 /* This is a final link. */
891 h = NULL;
892 sym = NULL;
893 sec = NULL;
30dc85f1
ILT
894 shared_name = NULL;
895
013dec1a
ILT
896 if (r_symndx < symtab_hdr->sh_info)
897 {
898 sym = local_syms + r_symndx;
899 sec = local_sections[r_symndx];
900 relocation = (sec->output_section->vma
901 + sec->output_offset
902 + sym->st_value);
903 }
904 else
905 {
eb4267a3 906 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
30dc85f1
ILT
907 if (h->root.type == bfd_link_hash_defined
908 || h->root.type == bfd_link_hash_defweak)
013dec1a
ILT
909 {
910 sec = h->root.u.def.section;
9b09a015
ILT
911 if (r_type == R_386_GOTPC
912 || (r_type == R_386_PLT32
913 && h->plt_offset != (bfd_vma) -1)
914 || (r_type == R_386_GOT32
915 && elf_hash_table (info)->dynamic_sections_created)
916 || (info->shared
917 && (r_type == R_386_32
918 || r_type == R_386_PC32)
919 && (input_section->flags & SEC_ALLOC) != 0))
920 {
921 /* In these cases, we don't need the relocation
922 value. We check specially because in some
923 obscure cases sec->output_section will be NULL. */
924 relocation = 0;
925 }
926 else
927 relocation = (h->root.u.def.value
928 + sec->output_section->vma
929 + sec->output_offset);
013dec1a 930 }
30dc85f1 931 else if (h->root.type == bfd_link_hash_undefweak)
013dec1a 932 relocation = 0;
eb4267a3
ILT
933 else if (info->shared)
934 relocation = 0;
013dec1a
ILT
935 else
936 {
937 if (! ((*info->callbacks->undefined_symbol)
938 (info, h->root.root.string, input_bfd,
939 input_section, rel->r_offset)))
940 return false;
941 relocation = 0;
942 }
943 }
944
eb4267a3
ILT
945 switch (r_type)
946 {
947 case R_386_GOT32:
948 /* Relocation is to the entry for this symbol in the global
949 offset table. */
950 if (sgot == NULL)
951 {
952 sgot = bfd_get_section_by_name (dynobj, ".got");
953 BFD_ASSERT (sgot != NULL);
954 }
955
956 if (h != NULL)
957 {
12662be4
ILT
958 bfd_vma off;
959
960 off = h->got_offset;
961 BFD_ASSERT (off != (bfd_vma) -1);
962
963 if (! elf_hash_table (info)->dynamic_sections_created)
964 {
965 /* This is actually a static link. We must
966 initialize this entry in the global offset table.
967 Since the offset must always be a multiple of 4,
968 we use the least significant bit to record
969 whether we have initialized it already.
970
971 When doing a dynamic link, we create a .rel.got
972 relocation entry to initialize the value. This
973 is done in the finish_dynamic_symbol routine. */
974 if ((off & 1) != 0)
975 off &= ~1;
976 else
977 {
978 bfd_put_32 (output_bfd, relocation,
979 sgot->contents + off);
980 h->got_offset |= 1;
981 }
982 }
983
984 relocation = sgot->output_offset + off;
eb4267a3
ILT
985 }
986 else
987 {
988 bfd_vma off;
989
990 BFD_ASSERT (local_got_offsets != NULL
991 && local_got_offsets[r_symndx] != (bfd_vma) -1);
992
993 off = local_got_offsets[r_symndx];
994
995 /* The offset must always be a multiple of 4. We use
996 the least significant bit to record whether we have
997 already generated the necessary reloc. */
998 if ((off & 1) != 0)
999 off &= ~1;
1000 else
1001 {
eb4267a3
ILT
1002 bfd_put_32 (output_bfd, relocation, sgot->contents + off);
1003
12662be4
ILT
1004 if (info->shared)
1005 {
1006 asection *srelgot;
1007 Elf_Internal_Rel outrel;
1008
1009 srelgot = bfd_get_section_by_name (dynobj, ".rel.got");
1010 BFD_ASSERT (srelgot != NULL);
1011
1012 outrel.r_offset = (sgot->output_section->vma
1013 + sgot->output_offset
1014 + off);
1015 outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
1016 bfd_elf32_swap_reloc_out (output_bfd, &outrel,
1017 (((Elf32_External_Rel *)
1018 srelgot->contents)
1019 + srelgot->reloc_count));
1020 ++srelgot->reloc_count;
1021 }
eb4267a3
ILT
1022
1023 local_got_offsets[r_symndx] |= 1;
1024 }
1025
1026 relocation = sgot->output_offset + off;
1027 }
1028
1029 break;
1030
1031 case R_386_GOTOFF:
1032 /* Relocation is relative to the start of the global offset
1033 table. */
1034
1035 if (sgot == NULL)
1036 {
1037 sgot = bfd_get_section_by_name (dynobj, ".got");
1038 BFD_ASSERT (sgot != NULL);
1039 }
1040
1041 /* Note that sgot->output_offset is not involved in this
1042 calculation. We always want the start of .got. If we
1043 defined _GLOBAL_OFFSET_TABLE in a different way, as is
1044 permitted by the ABI, we might have to change this
1045 calculation. */
1046 relocation -= sgot->output_section->vma;
1047
1048 break;
1049
1050 case R_386_GOTPC:
1051 /* Use global offset table as symbol value. */
1052
1053 if (sgot == NULL)
1054 {
1055 sgot = bfd_get_section_by_name (dynobj, ".got");
1056 BFD_ASSERT (sgot != NULL);
1057 }
1058
1059 relocation = sgot->output_section->vma;
1060
1061 break;
1062
1063 case R_386_PLT32:
1064 /* Relocation is to the entry for this symbol in the
1065 procedure linkage table. */
1066
1067 /* Resolve a PLT32 reloc again a local symbol directly,
1068 without using the procedure linkage table. */
1069 if (h == NULL)
1070 break;
1071
12662be4
ILT
1072 if (h->plt_offset == (bfd_vma) -1)
1073 {
1074 /* We didn't make a PLT entry for this symbol. This
1075 happens when statically linking PIC code. */
1076 break;
1077 }
1078
eb4267a3
ILT
1079 if (splt == NULL)
1080 {
1081 splt = bfd_get_section_by_name (dynobj, ".plt");
1082 BFD_ASSERT (splt != NULL);
1083 }
1084
eb4267a3
ILT
1085 relocation = (splt->output_section->vma
1086 + splt->output_offset
1087 + h->plt_offset);
1088
1089 break;
1090
1091 case R_386_32:
1092 case R_386_PC32:
1093 if (info->shared
1094 && (input_section->flags & SEC_ALLOC) != 0)
1095 {
1096 Elf_Internal_Rel outrel;
1097
1098 /* When generating a shared object, these relocations
1099 are copied into the output file to be resolved at run
1100 time. */
1101
1102 if (sreloc == NULL)
1103 {
ede4eed4 1104 shared_name = (bfd_elf_string_from_elf_section
eb4267a3
ILT
1105 (input_bfd,
1106 elf_elfheader (input_bfd)->e_shstrndx,
1107 elf_section_data (input_section)->rel_hdr.sh_name));
30dc85f1 1108 if (shared_name == NULL)
eb4267a3
ILT
1109 return false;
1110
30dc85f1 1111 BFD_ASSERT (strncmp (shared_name, ".rel", 4) == 0
eb4267a3
ILT
1112 && strcmp (bfd_get_section_name (input_bfd,
1113 input_section),
30dc85f1 1114 shared_name + 4) == 0);
eb4267a3 1115
30dc85f1 1116 sreloc = bfd_get_section_by_name (dynobj, shared_name);
eb4267a3
ILT
1117 BFD_ASSERT (sreloc != NULL);
1118 }
1119
1120 outrel.r_offset = (rel->r_offset
1121 + input_section->output_section->vma
1122 + input_section->output_offset);
1123 if (r_type == R_386_PC32)
1124 {
30dc85f1
ILT
1125 if (!h)
1126 {
1127 if (! ((*info->callbacks->undefined_symbol)
1128 (info, shared_name ? shared_name : sec->name, input_bfd,
1129 input_section, rel->r_offset)))
1130 bfd_set_error (bfd_error_bad_value);
1131 return false;
1132 }
1133 else {
1134 BFD_ASSERT (h->dynindx != -1);
1135 outrel.r_info = ELF32_R_INFO (h->dynindx, R_386_PC32);
1136 }
eb4267a3
ILT
1137 }
1138 else
1139 {
1140 if (h == NULL)
1141 outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
1142 else
1143 {
1144 BFD_ASSERT (h->dynindx != (bfd_vma) -1);
1145 outrel.r_info = ELF32_R_INFO (h->dynindx, R_386_32);
1146 }
1147 }
1148
1149 bfd_elf32_swap_reloc_out (output_bfd, &outrel,
1150 (((Elf32_External_Rel *)
1151 sreloc->contents)
1152 + sreloc->reloc_count));
1153 ++sreloc->reloc_count;
1154
1155 /* If this reloc is against an external symbol, we do
1156 not want to fiddle with the addend. Otherwise, we
1157 need to include the symbol value so that it becomes
1158 an addend for the dynamic reloc. */
1159 if (h != NULL)
1160 continue;
1161 }
1162
1163 break;
1164
1165 default:
1166 break;
1167 }
1168
013dec1a
ILT
1169 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
1170 contents, rel->r_offset,
1171 relocation, (bfd_vma) 0);
1172
1173 if (r != bfd_reloc_ok)
1174 {
1175 switch (r)
1176 {
1177 default:
1178 case bfd_reloc_outofrange:
1179 abort ();
1180 case bfd_reloc_overflow:
1181 {
1182 const char *name;
1183
1184 if (h != NULL)
1185 name = h->root.root.string;
1186 else
1187 {
ede4eed4
KR
1188 name = bfd_elf_string_from_elf_section (input_bfd,
1189 symtab_hdr->sh_link,
1190 sym->st_name);
013dec1a
ILT
1191 if (name == NULL)
1192 return false;
1193 if (*name == '\0')
1194 name = bfd_section_name (input_bfd, sec);
1195 }
1196 if (! ((*info->callbacks->reloc_overflow)
1197 (info, name, howto->name, (bfd_vma) 0,
1198 input_bfd, input_section, rel->r_offset)))
1199 return false;
1200 }
1201 break;
1202 }
1203 }
1204 }
1205
1206 return true;
1207}
1208
1209/* Finish up dynamic symbol handling. We set the contents of various
1210 dynamic sections here. */
1211
1212static boolean
1213elf_i386_finish_dynamic_symbol (output_bfd, info, h, sym)
1214 bfd *output_bfd;
1215 struct bfd_link_info *info;
1216 struct elf_link_hash_entry *h;
1217 Elf_Internal_Sym *sym;
1218{
eb4267a3 1219 bfd *dynobj;
013dec1a 1220
eb4267a3 1221 dynobj = elf_hash_table (info)->dynobj;
013dec1a 1222
eb4267a3 1223 if (h->plt_offset != (bfd_vma) -1)
013dec1a
ILT
1224 {
1225 asection *splt;
1226 asection *sgot;
1227 asection *srel;
1228 bfd_vma plt_index;
1229 bfd_vma got_offset;
1230 Elf_Internal_Rel rel;
1231
eb4267a3
ILT
1232 /* This symbol has an entry in the procedure linkage table. Set
1233 it up. */
013dec1a 1234
eb4267a3
ILT
1235 BFD_ASSERT (h->dynindx != -1);
1236
1237 splt = bfd_get_section_by_name (dynobj, ".plt");
1238 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
1239 srel = bfd_get_section_by_name (dynobj, ".rel.plt");
1240 BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
013dec1a
ILT
1241
1242 /* Get the index in the procedure linkage table which
1243 corresponds to this symbol. This is the index of this symbol
1244 in all the symbols for which we are making plt entries. The
1245 first entry in the procedure linkage table is reserved. */
eb4267a3 1246 plt_index = h->plt_offset / PLT_ENTRY_SIZE - 1;
013dec1a
ILT
1247
1248 /* Get the offset into the .got table of the entry that
1249 corresponds to this function. Each .got entry is 4 bytes.
1250 The first three are reserved. */
1251 got_offset = (plt_index + 3) * 4;
1252
1253 /* Fill in the entry in the procedure linkage table. */
eb4267a3
ILT
1254 if (! info->shared)
1255 {
1256 memcpy (splt->contents + h->plt_offset, elf_i386_plt_entry,
1257 PLT_ENTRY_SIZE);
1258 bfd_put_32 (output_bfd,
1259 (sgot->output_section->vma
1260 + sgot->output_offset
1261 + got_offset),
1262 splt->contents + h->plt_offset + 2);
1263 }
1264 else
1265 {
1266 memcpy (splt->contents + h->plt_offset, elf_i386_pic_plt_entry,
1267 PLT_ENTRY_SIZE);
1268 bfd_put_32 (output_bfd, got_offset,
1269 splt->contents + h->plt_offset + 2);
1270 }
1271
013dec1a 1272 bfd_put_32 (output_bfd, plt_index * sizeof (Elf32_External_Rel),
eb4267a3
ILT
1273 splt->contents + h->plt_offset + 7);
1274 bfd_put_32 (output_bfd, - (h->plt_offset + PLT_ENTRY_SIZE),
1275 splt->contents + h->plt_offset + 12);
013dec1a
ILT
1276
1277 /* Fill in the entry in the global offset table. */
1278 bfd_put_32 (output_bfd,
1279 (splt->output_section->vma
1280 + splt->output_offset
eb4267a3 1281 + h->plt_offset
013dec1a
ILT
1282 + 6),
1283 sgot->contents + got_offset);
1284
1285 /* Fill in the entry in the .rel.plt section. */
1286 rel.r_offset = (sgot->output_section->vma
1287 + sgot->output_offset
1288 + got_offset);
1289 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_JUMP_SLOT);
1290 bfd_elf32_swap_reloc_out (output_bfd, &rel,
1291 ((Elf32_External_Rel *) srel->contents
1292 + plt_index));
1293
eb4267a3
ILT
1294 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
1295 {
1296 /* Mark the symbol as undefined, rather than as defined in
1297 the .plt section. Leave the value alone. */
1298 sym->st_shndx = SHN_UNDEF;
1299 }
013dec1a 1300 }
eb4267a3
ILT
1301
1302 if (h->got_offset != (bfd_vma) -1)
013dec1a 1303 {
eb4267a3
ILT
1304 asection *sgot;
1305 asection *srel;
1306 Elf_Internal_Rel rel;
013dec1a 1307
eb4267a3
ILT
1308 /* This symbol has an entry in the global offset table. Set it
1309 up. */
1310
1311 BFD_ASSERT (h->dynindx != -1);
013dec1a 1312
eb4267a3
ILT
1313 sgot = bfd_get_section_by_name (dynobj, ".got");
1314 srel = bfd_get_section_by_name (dynobj, ".rel.got");
1315 BFD_ASSERT (sgot != NULL && srel != NULL);
1316
1317 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got_offset);
1318
1319 rel.r_offset = (sgot->output_section->vma
1320 + sgot->output_offset
1321 + h->got_offset);
1322 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_GLOB_DAT);
1323 bfd_elf32_swap_reloc_out (output_bfd, &rel,
1324 ((Elf32_External_Rel *) srel->contents
1325 + srel->reloc_count));
1326 ++srel->reloc_count;
1327 }
1328
1329 if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_COPY) != 0)
1330 {
1331 asection *s;
1332 Elf_Internal_Rel rel;
1333
1334 /* This symbol needs a copy reloc. Set it up. */
1335
1336 BFD_ASSERT (h->dynindx != -1
30dc85f1
ILT
1337 && (h->root.type == bfd_link_hash_defined
1338 || h->root.type == bfd_link_hash_defweak));
eb4267a3
ILT
1339
1340 s = bfd_get_section_by_name (h->root.u.def.section->owner,
1341 ".rel.bss");
1342 BFD_ASSERT (s != NULL);
1343
1344 rel.r_offset = (h->root.u.def.value
1345 + h->root.u.def.section->output_section->vma
1346 + h->root.u.def.section->output_offset);
1347 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_COPY);
1348 bfd_elf32_swap_reloc_out (output_bfd, &rel,
1349 ((Elf32_External_Rel *) s->contents
1350 + s->reloc_count));
1351 ++s->reloc_count;
013dec1a
ILT
1352 }
1353
eb4267a3
ILT
1354 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
1355 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
1356 || strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
1357 sym->st_shndx = SHN_ABS;
1358
013dec1a
ILT
1359 return true;
1360}
1361
1362/* Finish up the dynamic sections. */
1363
1364static boolean
1365elf_i386_finish_dynamic_sections (output_bfd, info)
1366 bfd *output_bfd;
1367 struct bfd_link_info *info;
1368{
eb4267a3 1369 bfd *dynobj;
013dec1a
ILT
1370 asection *sgot;
1371 asection *sdyn;
013dec1a 1372
eb4267a3
ILT
1373 dynobj = elf_hash_table (info)->dynobj;
1374
eb4267a3 1375 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
12662be4 1376 BFD_ASSERT (sgot != NULL);
eb4267a3 1377 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
013dec1a 1378
12662be4 1379 if (elf_hash_table (info)->dynamic_sections_created)
013dec1a 1380 {
12662be4
ILT
1381 asection *splt;
1382 Elf32_External_Dyn *dyncon, *dynconend;
013dec1a 1383
12662be4
ILT
1384 splt = bfd_get_section_by_name (dynobj, ".plt");
1385 BFD_ASSERT (splt != NULL && sdyn != NULL);
013dec1a 1386
12662be4
ILT
1387 dyncon = (Elf32_External_Dyn *) sdyn->contents;
1388 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
1389 for (; dyncon < dynconend; dyncon++)
013dec1a 1390 {
12662be4
ILT
1391 Elf_Internal_Dyn dyn;
1392 const char *name;
1393 asection *s;
eb4267a3 1394
12662be4 1395 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
eb4267a3 1396
12662be4 1397 switch (dyn.d_tag)
013dec1a 1398 {
12662be4
ILT
1399 default:
1400 break;
1401
1402 case DT_PLTGOT:
1403 name = ".got";
1404 goto get_vma;
1405 case DT_JMPREL:
1406 name = ".rel.plt";
1407 get_vma:
1408 s = bfd_get_section_by_name (output_bfd, name);
1409 BFD_ASSERT (s != NULL);
1410 dyn.d_un.d_ptr = s->vma;
1411 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1412 break;
1413
1414 case DT_PLTRELSZ:
1415 s = bfd_get_section_by_name (output_bfd, ".rel.plt");
1416 BFD_ASSERT (s != NULL);
013dec1a 1417 if (s->_cooked_size != 0)
12662be4 1418 dyn.d_un.d_val = s->_cooked_size;
013dec1a 1419 else
12662be4
ILT
1420 dyn.d_un.d_val = s->_raw_size;
1421 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1422 break;
1423
1424 case DT_RELSZ:
1425 /* My reading of the SVR4 ABI indicates that the
1426 procedure linkage table relocs (DT_JMPREL) should be
1427 included in the overall relocs (DT_REL). This is
1428 what Solaris does. However, UnixWare can not handle
1429 that case. Therefore, we override the DT_RELSZ entry
1430 here to make it not include the JMPREL relocs. Since
1431 the linker script arranges for .rel.plt to follow all
1432 other relocation sections, we don't have to worry
1433 about changing the DT_REL entry. */
1434 s = bfd_get_section_by_name (output_bfd, ".rel.plt");
1435 if (s != NULL)
1436 {
1437 if (s->_cooked_size != 0)
1438 dyn.d_un.d_val -= s->_cooked_size;
1439 else
1440 dyn.d_un.d_val -= s->_raw_size;
1441 }
1442 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1443 break;
013dec1a 1444 }
013dec1a 1445 }
013dec1a 1446
12662be4
ILT
1447 /* Fill in the first entry in the procedure linkage table. */
1448 if (splt->_raw_size > 0)
eb4267a3 1449 {
12662be4
ILT
1450 if (info->shared)
1451 memcpy (splt->contents, elf_i386_pic_plt0_entry, PLT_ENTRY_SIZE);
1452 else
1453 {
1454 memcpy (splt->contents, elf_i386_plt0_entry, PLT_ENTRY_SIZE);
1455 bfd_put_32 (output_bfd,
1456 sgot->output_section->vma + sgot->output_offset + 4,
1457 splt->contents + 2);
1458 bfd_put_32 (output_bfd,
1459 sgot->output_section->vma + sgot->output_offset + 8,
1460 splt->contents + 8);
1461 }
eb4267a3 1462 }
12662be4
ILT
1463
1464 /* UnixWare sets the entsize of .plt to 4, although that doesn't
1465 really seem like the right value. */
1466 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
013dec1a
ILT
1467 }
1468
1469 /* Fill in the first three entries in the global offset table. */
1470 if (sgot->_raw_size > 0)
1471 {
12662be4
ILT
1472 if (sdyn == NULL)
1473 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
1474 else
1475 bfd_put_32 (output_bfd,
1476 sdyn->output_section->vma + sdyn->output_offset,
1477 sgot->contents);
013dec1a
ILT
1478 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
1479 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
1480 }
1481
1482 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
1483
013dec1a
ILT
1484 return true;
1485}
e4b6b3e7
ILT
1486
1487#define TARGET_LITTLE_SYM bfd_elf32_i386_vec
1488#define TARGET_LITTLE_NAME "elf32-i386"
1489#define ELF_ARCH bfd_arch_i386
68241b2b 1490#define ELF_MACHINE_CODE EM_386
e4b6b3e7
ILT
1491#define elf_info_to_howto elf_i386_info_to_howto
1492#define elf_info_to_howto_rel elf_i386_info_to_howto_rel
1493#define bfd_elf32_bfd_reloc_type_lookup elf_i386_reloc_type_lookup
68241b2b 1494#define ELF_MAXPAGESIZE 0x1000
013dec1a 1495#define elf_backend_create_dynamic_sections \
ede4eed4 1496 _bfd_elf_create_dynamic_sections
eb4267a3 1497#define elf_backend_check_relocs elf_i386_check_relocs
013dec1a
ILT
1498#define elf_backend_adjust_dynamic_symbol \
1499 elf_i386_adjust_dynamic_symbol
1500#define elf_backend_size_dynamic_sections \
1501 elf_i386_size_dynamic_sections
1502#define elf_backend_relocate_section elf_i386_relocate_section
1503#define elf_backend_finish_dynamic_symbol \
1504 elf_i386_finish_dynamic_symbol
1505#define elf_backend_finish_dynamic_sections \
1506 elf_i386_finish_dynamic_sections
ede4eed4
KR
1507#define elf_backend_want_got_plt 1
1508#define elf_backend_plt_readonly 0
1509#define elf_backend_want_plt_sym 0
e4b6b3e7
ILT
1510
1511#include "elf32-target.h"
This page took 0.144777 seconds and 4 git commands to generate.