1999-05-03 07:29:11 +00:00
|
|
|
|
/* Intel 80386/80486-specific support for 32-bit ELF
|
2002-03-28 03:27:46 +00:00
|
|
|
|
Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
|
2000-06-07 04:08:13 +00:00
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *elf_i386_reloc_type_lookup
|
|
|
|
|
PARAMS ((bfd *, bfd_reloc_code_real_type));
|
|
|
|
|
static void elf_i386_info_to_howto
|
|
|
|
|
PARAMS ((bfd *, arelent *, Elf32_Internal_Rela *));
|
|
|
|
|
static void elf_i386_info_to_howto_rel
|
|
|
|
|
PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
|
2001-09-26 09:25:04 +00:00
|
|
|
|
static boolean elf_i386_is_local_label_name
|
|
|
|
|
PARAMS ((bfd *, const char *));
|
2001-09-25 10:11:46 +00:00
|
|
|
|
static boolean elf_i386_grok_prstatus
|
|
|
|
|
PARAMS ((bfd *abfd, Elf_Internal_Note *note));
|
|
|
|
|
static boolean elf_i386_grok_psinfo
|
|
|
|
|
PARAMS ((bfd *abfd, Elf_Internal_Note *note));
|
|
|
|
|
static struct bfd_hash_entry *link_hash_newfunc
|
1999-05-03 07:29:11 +00:00
|
|
|
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
|
|
|
|
|
static struct bfd_link_hash_table *elf_i386_link_hash_table_create
|
|
|
|
|
PARAMS ((bfd *));
|
2001-09-26 09:25:04 +00:00
|
|
|
|
static boolean create_got_section
|
|
|
|
|
PARAMS((bfd *, struct bfd_link_info *));
|
2001-06-05 05:51:55 +00:00
|
|
|
|
static boolean elf_i386_create_dynamic_sections
|
|
|
|
|
PARAMS((bfd *, struct bfd_link_info *));
|
2001-09-29 06:21:59 +00:00
|
|
|
|
static void elf_i386_copy_indirect_symbol
|
2001-09-26 09:25:04 +00:00
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, struct elf_link_hash_entry *));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
static boolean elf_i386_check_relocs
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, asection *,
|
|
|
|
|
const Elf_Internal_Rela *));
|
2001-08-09 14:38:04 +00:00
|
|
|
|
static asection *elf_i386_gc_mark_hook
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Rela *,
|
|
|
|
|
struct elf_link_hash_entry *, Elf_Internal_Sym *));
|
|
|
|
|
static boolean elf_i386_gc_sweep_hook
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, asection *,
|
|
|
|
|
const Elf_Internal_Rela *));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
static boolean elf_i386_adjust_dynamic_symbol
|
|
|
|
|
PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
|
2001-09-25 04:34:50 +00:00
|
|
|
|
static boolean allocate_dynrelocs
|
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
|
|
|
|
static boolean readonly_dynrelocs
|
2001-06-05 05:51:55 +00:00
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
2001-09-25 10:11:46 +00:00
|
|
|
|
static boolean elf_i386_fake_sections
|
|
|
|
|
PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
static boolean elf_i386_size_dynamic_sections
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
static boolean elf_i386_relocate_section
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
|
|
|
|
|
Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
|
|
|
|
|
static boolean elf_i386_finish_dynamic_symbol
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
|
|
|
|
|
Elf_Internal_Sym *));
|
2001-09-24 01:38:31 +00:00
|
|
|
|
static enum elf_reloc_type_class elf_i386_reloc_type_class
|
|
|
|
|
PARAMS ((const Elf_Internal_Rela *));
|
2001-09-25 10:11:46 +00:00
|
|
|
|
static boolean elf_i386_finish_dynamic_sections
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
#define USE_REL 1 /* 386 uses REL relocations instead of RELA */
|
|
|
|
|
|
|
|
|
|
#include "elf/i386.h"
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type elf_howto_table[]=
|
|
|
|
|
{
|
2000-06-07 03:43:33 +00:00
|
|
|
|
HOWTO(R_386_NONE, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_NONE",
|
|
|
|
|
true, 0x00000000, 0x00000000, false),
|
|
|
|
|
HOWTO(R_386_32, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_32",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, false),
|
|
|
|
|
HOWTO(R_386_PC32, 0, 2, 32, true, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_PC32",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, true),
|
|
|
|
|
HOWTO(R_386_GOT32, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_GOT32",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, false),
|
|
|
|
|
HOWTO(R_386_PLT32, 0, 2, 32, true, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_PLT32",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, true),
|
|
|
|
|
HOWTO(R_386_COPY, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_COPY",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, false),
|
|
|
|
|
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),
|
|
|
|
|
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),
|
|
|
|
|
HOWTO(R_386_RELATIVE, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_RELATIVE",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, false),
|
|
|
|
|
HOWTO(R_386_GOTOFF, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_GOTOFF",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, false),
|
|
|
|
|
HOWTO(R_386_GOTPC, 0, 2, 32, true, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_GOTPC",
|
|
|
|
|
true, 0xffffffff, 0xffffffff, true),
|
|
|
|
|
|
2000-06-07 14:23:51 +00:00
|
|
|
|
/* We have a gap in the reloc numbers here.
|
|
|
|
|
R_386_standard counts the number up to this point, and
|
|
|
|
|
R_386_ext_offset is the value to subtract from a reloc type of
|
|
|
|
|
R_386_16 thru R_386_PC8 to form an index into this table. */
|
2000-06-07 03:43:33 +00:00
|
|
|
|
#define R_386_standard ((unsigned int) R_386_GOTPC + 1)
|
|
|
|
|
#define R_386_ext_offset ((unsigned int) R_386_16 - R_386_standard)
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* The remaining relocs are a GNU extension. */
|
2000-06-07 03:43:33 +00:00
|
|
|
|
HOWTO(R_386_16, 0, 1, 16, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_16",
|
|
|
|
|
true, 0xffff, 0xffff, false),
|
|
|
|
|
HOWTO(R_386_PC16, 0, 1, 16, true, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_PC16",
|
|
|
|
|
true, 0xffff, 0xffff, true),
|
|
|
|
|
HOWTO(R_386_8, 0, 0, 8, false, 0, complain_overflow_bitfield,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_8",
|
|
|
|
|
true, 0xff, 0xff, false),
|
|
|
|
|
HOWTO(R_386_PC8, 0, 0, 8, true, 0, complain_overflow_signed,
|
|
|
|
|
bfd_elf_generic_reloc, "R_386_PC8",
|
2000-06-07 14:23:51 +00:00
|
|
|
|
true, 0xff, 0xff, true),
|
|
|
|
|
|
|
|
|
|
/* Another gap. */
|
|
|
|
|
#define R_386_ext ((unsigned int) R_386_PC8 + 1 - R_386_ext_offset)
|
|
|
|
|
#define R_386_vt_offset ((unsigned int) R_386_GNU_VTINHERIT - R_386_ext)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* GNU extension to record C++ vtable hierarchy. */
|
|
|
|
|
HOWTO (R_386_GNU_VTINHERIT, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
0, /* bitsize */
|
|
|
|
|
false, /* pc_relative */
|
|
|
|
|
0, /* bitpos */
|
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
|
NULL, /* special_function */
|
|
|
|
|
"R_386_GNU_VTINHERIT", /* name */
|
|
|
|
|
false, /* partial_inplace */
|
|
|
|
|
0, /* src_mask */
|
|
|
|
|
0, /* dst_mask */
|
2002-05-09 06:34:43 +00:00
|
|
|
|
false), /* pcrel_offset */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* GNU extension to record C++ vtable member usage. */
|
|
|
|
|
HOWTO (R_386_GNU_VTENTRY, /* type */
|
|
|
|
|
0, /* rightshift */
|
|
|
|
|
2, /* size (0 = byte, 1 = short, 2 = long) */
|
|
|
|
|
0, /* bitsize */
|
|
|
|
|
false, /* pc_relative */
|
|
|
|
|
0, /* bitpos */
|
|
|
|
|
complain_overflow_dont, /* complain_on_overflow */
|
|
|
|
|
_bfd_elf_rel_vtable_reloc_fn, /* special_function */
|
|
|
|
|
"R_386_GNU_VTENTRY", /* name */
|
|
|
|
|
false, /* partial_inplace */
|
|
|
|
|
0, /* src_mask */
|
|
|
|
|
0, /* dst_mask */
|
2002-05-09 06:34:43 +00:00
|
|
|
|
false) /* pcrel_offset */
|
2000-06-07 14:23:51 +00:00
|
|
|
|
|
|
|
|
|
#define R_386_vt ((unsigned int) R_386_GNU_VTENTRY + 1 - R_386_vt_offset)
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#ifdef DEBUG_GEN_RELOC
|
|
|
|
|
#define TRACE(str) fprintf (stderr, "i386 bfd reloc lookup %d (%s)\n", code, str)
|
|
|
|
|
#else
|
|
|
|
|
#define TRACE(str)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
|
elf_i386_reloc_type_lookup (abfd, code)
|
1999-07-11 19:49:48 +00:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
|
{
|
|
|
|
|
switch (code)
|
|
|
|
|
{
|
|
|
|
|
case BFD_RELOC_NONE:
|
|
|
|
|
TRACE ("BFD_RELOC_NONE");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_NONE ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
|
TRACE ("BFD_RELOC_32");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_32 ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_CTOR:
|
|
|
|
|
TRACE ("BFD_RELOC_CTOR");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_32 ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_32_PCREL:
|
|
|
|
|
TRACE ("BFD_RELOC_PC32");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_PC32 ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_GOT32:
|
|
|
|
|
TRACE ("BFD_RELOC_386_GOT32");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GOT32 ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_PLT32:
|
|
|
|
|
TRACE ("BFD_RELOC_386_PLT32");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_PLT32 ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_COPY:
|
|
|
|
|
TRACE ("BFD_RELOC_386_COPY");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_COPY ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_GLOB_DAT:
|
|
|
|
|
TRACE ("BFD_RELOC_386_GLOB_DAT");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GLOB_DAT ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_JUMP_SLOT:
|
|
|
|
|
TRACE ("BFD_RELOC_386_JUMP_SLOT");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_JUMP_SLOT ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_RELATIVE:
|
|
|
|
|
TRACE ("BFD_RELOC_386_RELATIVE");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_RELATIVE ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_GOTOFF:
|
|
|
|
|
TRACE ("BFD_RELOC_386_GOTOFF");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GOTOFF ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_386_GOTPC:
|
|
|
|
|
TRACE ("BFD_RELOC_386_GOTPC");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GOTPC ];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* The remaining relocs are a GNU extension. */
|
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
|
TRACE ("BFD_RELOC_16");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_16 - R_386_ext_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_16_PCREL:
|
|
|
|
|
TRACE ("BFD_RELOC_16_PCREL");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_PC16 - R_386_ext_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_8:
|
|
|
|
|
TRACE ("BFD_RELOC_8");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_8 - R_386_ext_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_8_PCREL:
|
|
|
|
|
TRACE ("BFD_RELOC_8_PCREL");
|
2000-06-07 03:43:33 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_PC8 - R_386_ext_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_VTABLE_INHERIT:
|
|
|
|
|
TRACE ("BFD_RELOC_VTABLE_INHERIT");
|
2000-06-07 14:23:51 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GNU_VTINHERIT
|
|
|
|
|
- R_386_vt_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case BFD_RELOC_VTABLE_ENTRY:
|
|
|
|
|
TRACE ("BFD_RELOC_VTABLE_ENTRY");
|
2000-06-07 14:23:51 +00:00
|
|
|
|
return &elf_howto_table[(unsigned int) R_386_GNU_VTENTRY
|
|
|
|
|
- R_386_vt_offset];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TRACE ("Unknown");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
elf_i386_info_to_howto (abfd, cache_ptr, dst)
|
1999-07-11 19:49:48 +00:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
arelent *cache_ptr ATTRIBUTE_UNUSED;
|
|
|
|
|
Elf32_Internal_Rela *dst ATTRIBUTE_UNUSED;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
elf_i386_info_to_howto_rel (abfd, cache_ptr, dst)
|
1999-07-11 19:49:48 +00:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
arelent *cache_ptr;
|
|
|
|
|
Elf32_Internal_Rel *dst;
|
|
|
|
|
{
|
2000-06-07 14:23:51 +00:00
|
|
|
|
unsigned int r_type = ELF32_R_TYPE (dst->r_info);
|
|
|
|
|
unsigned int indx;
|
|
|
|
|
|
|
|
|
|
if ((indx = r_type) >= R_386_standard
|
|
|
|
|
&& ((indx = r_type - R_386_ext_offset) - R_386_standard
|
|
|
|
|
>= R_386_ext - R_386_standard)
|
|
|
|
|
&& ((indx = r_type - R_386_vt_offset) - R_386_ext
|
|
|
|
|
>= R_386_vt - R_386_ext))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2000-06-07 14:23:51 +00:00
|
|
|
|
(*_bfd_error_handler) (_("%s: invalid relocation type %d"),
|
2001-09-20 23:30:37 +00:00
|
|
|
|
bfd_archive_filename (abfd), (int) r_type);
|
2000-06-07 14:23:51 +00:00
|
|
|
|
indx = (unsigned int) R_386_NONE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2000-06-07 14:23:51 +00:00
|
|
|
|
cache_ptr->howto = &elf_howto_table[indx];
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return whether a symbol name implies a local label. The UnixWare
|
|
|
|
|
2.1 cc generates temporary symbols that start with .X, so we
|
|
|
|
|
recognize them here. FIXME: do other SVR4 compilers also use .X?.
|
|
|
|
|
If so, we should move the .X recognition into
|
|
|
|
|
_bfd_elf_is_local_label_name. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_is_local_label_name (abfd, name)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
if (name[0] == '.' && name[1] == 'X')
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return _bfd_elf_is_local_label_name (abfd, name);
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 10:11:46 +00:00
|
|
|
|
/* Support for core dump NOTE sections. */
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_grok_prstatus (abfd, note)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
Elf_Internal_Note *note;
|
|
|
|
|
{
|
|
|
|
|
int offset;
|
|
|
|
|
size_t raw_size;
|
|
|
|
|
|
|
|
|
|
switch (note->descsz)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
case 144: /* Linux/i386 */
|
|
|
|
|
/* pr_cursig */
|
|
|
|
|
elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12);
|
|
|
|
|
|
|
|
|
|
/* pr_pid */
|
|
|
|
|
elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, note->descdata + 24);
|
|
|
|
|
|
|
|
|
|
/* pr_reg */
|
|
|
|
|
offset = 72;
|
|
|
|
|
raw_size = 68;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make a ".reg/999" section. */
|
|
|
|
|
return _bfd_elfcore_make_pseudosection (abfd, ".reg",
|
|
|
|
|
raw_size, note->descpos + offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_grok_psinfo (abfd, note)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
Elf_Internal_Note *note;
|
|
|
|
|
{
|
|
|
|
|
switch (note->descsz)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
|
2001-12-20 20:22:17 +00:00
|
|
|
|
case 124: /* Linux/i386 elf_prpsinfo */
|
2001-09-25 10:11:46 +00:00
|
|
|
|
elf_tdata (abfd)->core_program
|
|
|
|
|
= _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
|
|
|
|
|
elf_tdata (abfd)->core_command
|
|
|
|
|
= _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Note that for some reason, a spurious space is tacked
|
|
|
|
|
onto the end of the args in some (at least one anyway)
|
|
|
|
|
implementations, so strip it off if it exists. */
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
char *command = elf_tdata (abfd)->core_command;
|
|
|
|
|
int n = strlen (command);
|
|
|
|
|
|
|
|
|
|
if (0 < n && command[n - 1] == ' ')
|
|
|
|
|
command[n - 1] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Functions for the i386 ELF linker.
|
|
|
|
|
|
|
|
|
|
In order to gain some understanding of code in this file without
|
|
|
|
|
knowing all the intricate details of the linker, note the
|
|
|
|
|
following:
|
|
|
|
|
|
|
|
|
|
Functions named elf_i386_* are called by external routines, other
|
|
|
|
|
functions are only called locally. elf_i386_* functions appear
|
|
|
|
|
in this file more or less in the order in which they are called
|
|
|
|
|
from external routines. eg. elf_i386_check_relocs is called
|
|
|
|
|
early in the link process, elf_i386_finish_dynamic_sections is
|
|
|
|
|
one of the last functions. */
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* The name of the dynamic interpreter. This is put in the .interp
|
|
|
|
|
section. */
|
|
|
|
|
|
|
|
|
|
#define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
|
|
|
|
|
|
|
|
|
|
/* The size in bytes of an entry in the procedure linkage table. */
|
|
|
|
|
|
|
|
|
|
#define PLT_ENTRY_SIZE 16
|
|
|
|
|
|
|
|
|
|
/* The first entry in an absolute procedure linkage table looks like
|
|
|
|
|
this. See the SVR4 ABI i386 supplement to see how this works. */
|
|
|
|
|
|
|
|
|
|
static const bfd_byte elf_i386_plt0_entry[PLT_ENTRY_SIZE] =
|
|
|
|
|
{
|
|
|
|
|
0xff, 0x35, /* pushl contents of address */
|
|
|
|
|
0, 0, 0, 0, /* replaced with address of .got + 4. */
|
|
|
|
|
0xff, 0x25, /* jmp indirect */
|
|
|
|
|
0, 0, 0, 0, /* replaced with address of .got + 8. */
|
|
|
|
|
0, 0, 0, 0 /* pad out to 16 bytes. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Subsequent entries in an absolute procedure linkage table look like
|
|
|
|
|
this. */
|
|
|
|
|
|
|
|
|
|
static const bfd_byte elf_i386_plt_entry[PLT_ENTRY_SIZE] =
|
|
|
|
|
{
|
|
|
|
|
0xff, 0x25, /* jmp indirect */
|
|
|
|
|
0, 0, 0, 0, /* replaced with address of this symbol in .got. */
|
|
|
|
|
0x68, /* pushl immediate */
|
|
|
|
|
0, 0, 0, 0, /* replaced with offset into relocation table. */
|
|
|
|
|
0xe9, /* jmp relative */
|
|
|
|
|
0, 0, 0, 0 /* replaced with offset to start of .plt. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The first entry in a PIC procedure linkage table look like this. */
|
|
|
|
|
|
|
|
|
|
static const bfd_byte elf_i386_pic_plt0_entry[PLT_ENTRY_SIZE] =
|
|
|
|
|
{
|
|
|
|
|
0xff, 0xb3, 4, 0, 0, 0, /* pushl 4(%ebx) */
|
|
|
|
|
0xff, 0xa3, 8, 0, 0, 0, /* jmp *8(%ebx) */
|
|
|
|
|
0, 0, 0, 0 /* pad out to 16 bytes. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Subsequent entries in a PIC procedure linkage table look like this. */
|
|
|
|
|
|
|
|
|
|
static const bfd_byte elf_i386_pic_plt_entry[PLT_ENTRY_SIZE] =
|
|
|
|
|
{
|
|
|
|
|
0xff, 0xa3, /* jmp *offset(%ebx) */
|
|
|
|
|
0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
|
|
|
|
|
0x68, /* pushl immediate */
|
|
|
|
|
0, 0, 0, 0, /* replaced with offset into relocation table. */
|
|
|
|
|
0xe9, /* jmp relative */
|
|
|
|
|
0, 0, 0, 0 /* replaced with offset to start of .plt. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The i386 linker needs to keep track of the number of relocs that it
|
2001-06-23 10:03:53 +00:00
|
|
|
|
decides to copy as dynamic relocs in check_relocs for each symbol.
|
|
|
|
|
This is so that it can later discard them if they are found to be
|
|
|
|
|
unnecessary. We store the information in a field extending the
|
|
|
|
|
regular ELF linker hash table. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
struct elf_i386_dyn_relocs
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-06-23 10:03:53 +00:00
|
|
|
|
struct elf_i386_dyn_relocs *next;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
|
|
|
|
|
/* The input section of the reloc. */
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
/* Total number of relocs copied for the input section. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_size_type count;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
|
|
|
|
|
/* Number of pc-relative relocs copied for the input section. */
|
|
|
|
|
bfd_size_type pc_count;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* i386 ELF linker hash entry. */
|
|
|
|
|
|
|
|
|
|
struct elf_i386_link_hash_entry
|
|
|
|
|
{
|
2001-09-26 09:25:04 +00:00
|
|
|
|
struct elf_link_hash_entry elf;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* Track dynamic relocs copied for this symbol. */
|
2001-06-23 10:03:53 +00:00
|
|
|
|
struct elf_i386_dyn_relocs *dyn_relocs;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* i386 ELF linker hash table. */
|
|
|
|
|
|
|
|
|
|
struct elf_i386_link_hash_table
|
|
|
|
|
{
|
2001-09-26 09:25:04 +00:00
|
|
|
|
struct elf_link_hash_table elf;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
/* Short-cuts to get to dynamic linker sections. */
|
|
|
|
|
asection *sgot;
|
|
|
|
|
asection *sgotplt;
|
|
|
|
|
asection *srelgot;
|
|
|
|
|
asection *splt;
|
|
|
|
|
asection *srelplt;
|
|
|
|
|
asection *sdynbss;
|
|
|
|
|
asection *srelbss;
|
2001-11-10 00:23:35 +00:00
|
|
|
|
|
|
|
|
|
/* Small local sym to section mapping cache. */
|
|
|
|
|
struct sym_sec_cache sym_sec;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
};
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Get the i386 ELF linker hash table from a link_info structure. */
|
|
|
|
|
|
|
|
|
|
#define elf_i386_hash_table(p) \
|
|
|
|
|
((struct elf_i386_link_hash_table *) ((p)->hash))
|
|
|
|
|
|
|
|
|
|
/* Create an entry in an i386 ELF linker hash table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
2001-09-25 10:11:46 +00:00
|
|
|
|
link_hash_newfunc (entry, table, string)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
struct bfd_hash_entry *entry;
|
|
|
|
|
struct bfd_hash_table *table;
|
|
|
|
|
const char *string;
|
|
|
|
|
{
|
|
|
|
|
/* Allocate the structure if it has not already been allocated by a
|
|
|
|
|
subclass. */
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (entry == NULL)
|
|
|
|
|
{
|
|
|
|
|
entry = bfd_hash_allocate (table,
|
|
|
|
|
sizeof (struct elf_i386_link_hash_entry));
|
|
|
|
|
if (entry == NULL)
|
|
|
|
|
return entry;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Call the allocation method of the superclass. */
|
2001-09-26 09:25:04 +00:00
|
|
|
|
entry = _bfd_elf_link_hash_newfunc (entry, table, string);
|
|
|
|
|
if (entry != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-09-26 09:25:04 +00:00
|
|
|
|
struct elf_i386_link_hash_entry *eh;
|
|
|
|
|
|
|
|
|
|
eh = (struct elf_i386_link_hash_entry *) entry;
|
|
|
|
|
eh->dyn_relocs = NULL;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
return entry;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create an i386 ELF linker hash table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_link_hash_table *
|
|
|
|
|
elf_i386_link_hash_table_create (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_table *ret;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
bfd_size_type amt = sizeof (struct elf_i386_link_hash_table);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2002-04-04 19:53:38 +00:00
|
|
|
|
ret = (struct elf_i386_link_hash_table *) bfd_malloc (amt);
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (ret == NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (! _bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2002-04-04 19:53:38 +00:00
|
|
|
|
free (ret);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
ret->sgot = NULL;
|
|
|
|
|
ret->sgotplt = NULL;
|
|
|
|
|
ret->srelgot = NULL;
|
|
|
|
|
ret->splt = NULL;
|
|
|
|
|
ret->srelplt = NULL;
|
|
|
|
|
ret->sdynbss = NULL;
|
|
|
|
|
ret->srelbss = NULL;
|
2001-11-10 00:23:35 +00:00
|
|
|
|
ret->sym_sec.abfd = NULL;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
return &ret->elf.root;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
/* Create .got, .gotplt, and .rel.got sections in DYNOBJ, and set up
|
|
|
|
|
shortcuts to them in our hash table. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
create_got_section (dynobj, info)
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
|
|
|
|
|
|
|
|
|
if (! _bfd_elf_create_got_section (dynobj, info))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
htab = elf_i386_hash_table (info);
|
|
|
|
|
htab->sgot = bfd_get_section_by_name (dynobj, ".got");
|
|
|
|
|
htab->sgotplt = bfd_get_section_by_name (dynobj, ".got.plt");
|
|
|
|
|
if (!htab->sgot || !htab->sgotplt)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
htab->srelgot = bfd_make_section (dynobj, ".rel.got");
|
|
|
|
|
if (htab->srelgot == NULL
|
|
|
|
|
|| ! bfd_set_section_flags (dynobj, htab->srelgot,
|
|
|
|
|
(SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY | SEC_LINKER_CREATED
|
|
|
|
|
| SEC_READONLY))
|
|
|
|
|
|| ! bfd_set_section_alignment (dynobj, htab->srelgot, 2))
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create .plt, .rel.plt, .got, .got.plt, .rel.got, .dynbss, and
|
|
|
|
|
.rel.bss sections in DYNOBJ, and set up shortcuts to them in our
|
|
|
|
|
hash table. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_create_dynamic_sections (dynobj, info)
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
|
|
|
|
|
|
|
|
|
htab = elf_i386_hash_table (info);
|
|
|
|
|
if (!htab->sgot && !create_got_section (dynobj, info))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!_bfd_elf_create_dynamic_sections (dynobj, info))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
htab->splt = bfd_get_section_by_name (dynobj, ".plt");
|
|
|
|
|
htab->srelplt = bfd_get_section_by_name (dynobj, ".rel.plt");
|
|
|
|
|
htab->sdynbss = bfd_get_section_by_name (dynobj, ".dynbss");
|
|
|
|
|
if (!info->shared)
|
|
|
|
|
htab->srelbss = bfd_get_section_by_name (dynobj, ".rel.bss");
|
|
|
|
|
|
|
|
|
|
if (!htab->splt || !htab->srelplt || !htab->sdynbss
|
|
|
|
|
|| (!info->shared && !htab->srelbss))
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
/* Copy the extra info we tack onto an elf_link_hash_entry. */
|
|
|
|
|
|
2001-09-29 06:21:59 +00:00
|
|
|
|
static void
|
2001-09-26 09:25:04 +00:00
|
|
|
|
elf_i386_copy_indirect_symbol (dir, ind)
|
|
|
|
|
struct elf_link_hash_entry *dir, *ind;
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_entry *edir, *eind;
|
|
|
|
|
|
|
|
|
|
edir = (struct elf_i386_link_hash_entry *) dir;
|
|
|
|
|
eind = (struct elf_i386_link_hash_entry *) ind;
|
|
|
|
|
|
2001-10-15 07:28:45 +00:00
|
|
|
|
if (eind->dyn_relocs != NULL)
|
2001-09-26 09:25:04 +00:00
|
|
|
|
{
|
2001-10-15 07:28:45 +00:00
|
|
|
|
if (edir->dyn_relocs != NULL)
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_dyn_relocs **pp;
|
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
|
|
|
|
|
2001-10-15 09:45:48 +00:00
|
|
|
|
if (ind->root.type == bfd_link_hash_indirect)
|
2001-10-15 07:28:45 +00:00
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
/* Add reloc counts against the weak sym to the strong sym
|
|
|
|
|
list. Merge any entries against the same section. */
|
|
|
|
|
for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_dyn_relocs *q;
|
|
|
|
|
|
|
|
|
|
for (q = edir->dyn_relocs; q != NULL; q = q->next)
|
|
|
|
|
if (q->sec == p->sec)
|
|
|
|
|
{
|
|
|
|
|
q->pc_count += p->pc_count;
|
|
|
|
|
q->count += p->count;
|
|
|
|
|
*pp = p->next;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (q == NULL)
|
|
|
|
|
pp = &p->next;
|
|
|
|
|
}
|
|
|
|
|
*pp = edir->dyn_relocs;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
edir->dyn_relocs = eind->dyn_relocs;
|
|
|
|
|
eind->dyn_relocs = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bfd_elf_link_hash_copy_indirect (dir, ind);
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Look through the relocs for a section during the first phase, and
|
2001-09-27 16:18:42 +00:00
|
|
|
|
calculate needed space in the global offset table, procedure linkage
|
|
|
|
|
table, and dynamic reloc sections. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_check_relocs (abfd, info, sec, relocs)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
asection *sec;
|
|
|
|
|
const Elf_Internal_Rela *relocs;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
|
struct elf_link_hash_entry **sym_hashes;
|
|
|
|
|
const Elf_Internal_Rela *rel;
|
|
|
|
|
const Elf_Internal_Rela *rel_end;
|
|
|
|
|
asection *sreloc;
|
|
|
|
|
|
|
|
|
|
if (info->relocateable)
|
|
|
|
|
return true;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
|
|
|
|
|
sym_hashes = elf_sym_hashes (abfd);
|
|
|
|
|
|
|
|
|
|
sreloc = NULL;
|
|
|
|
|
|
|
|
|
|
rel_end = relocs + sec->reloc_count;
|
|
|
|
|
for (rel = relocs; rel < rel_end; rel++)
|
|
|
|
|
{
|
|
|
|
|
unsigned long r_symndx;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
|
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
|
|
|
|
|
2001-05-23 08:23:27 +00:00
|
|
|
|
if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
|
2001-04-26 19:09:20 +00:00
|
|
|
|
{
|
2001-09-20 23:30:37 +00:00
|
|
|
|
(*_bfd_error_handler) (_("%s: bad symbol index: %d"),
|
|
|
|
|
bfd_archive_filename (abfd),
|
|
|
|
|
r_symndx);
|
2001-04-26 19:09:20 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (r_symndx < symtab_hdr->sh_info)
|
|
|
|
|
h = NULL;
|
|
|
|
|
else
|
|
|
|
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
|
|
|
|
|
|
|
|
|
switch (ELF32_R_TYPE (rel->r_info))
|
|
|
|
|
{
|
|
|
|
|
case R_386_GOT32:
|
|
|
|
|
/* This symbol requires a global offset table entry. */
|
|
|
|
|
if (h != NULL)
|
|
|
|
|
{
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->got.refcount += 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
bfd_signed_vma *local_got_refcounts;
|
|
|
|
|
|
2001-06-23 11:01:44 +00:00
|
|
|
|
/* This is a global offset table entry for a local symbol. */
|
2001-09-27 16:18:42 +00:00
|
|
|
|
local_got_refcounts = elf_local_got_refcounts (abfd);
|
2000-04-27 00:31:17 +00:00
|
|
|
|
if (local_got_refcounts == NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
bfd_size_type size;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
size = symtab_hdr->sh_info;
|
|
|
|
|
size *= sizeof (bfd_signed_vma);
|
2000-04-27 00:31:17 +00:00
|
|
|
|
local_got_refcounts = ((bfd_signed_vma *)
|
2001-09-26 09:25:04 +00:00
|
|
|
|
bfd_zalloc (abfd, size));
|
2000-04-27 00:31:17 +00:00
|
|
|
|
if (local_got_refcounts == NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
elf_local_got_refcounts (abfd) = local_got_refcounts;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-09-26 09:25:04 +00:00
|
|
|
|
local_got_refcounts[r_symndx] += 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-09-27 16:18:42 +00:00
|
|
|
|
/* Fall through */
|
|
|
|
|
|
|
|
|
|
case R_386_GOTOFF:
|
|
|
|
|
case R_386_GOTPC:
|
|
|
|
|
if (htab->sgot == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (htab->elf.dynobj == NULL)
|
|
|
|
|
htab->elf.dynobj = abfd;
|
|
|
|
|
if (!create_got_section (htab->elf.dynobj, info))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_PLT32:
|
|
|
|
|
/* This symbol requires a procedure linkage table entry. We
|
2001-06-23 11:01:44 +00:00
|
|
|
|
actually build the entry in adjust_dynamic_symbol,
|
|
|
|
|
because this might be a case of linking PIC code which is
|
|
|
|
|
never referenced by a dynamic object, in which case we
|
|
|
|
|
don't need to generate a procedure linkage table entry
|
|
|
|
|
after all. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* If this is a local symbol, we resolve it directly without
|
2001-06-23 11:01:44 +00:00
|
|
|
|
creating a procedure linkage table entry. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (h == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
|
|
|
|
|
h->plt.refcount += 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_32:
|
|
|
|
|
case R_386_PC32:
|
2001-06-23 05:54:15 +00:00
|
|
|
|
if (h != NULL && !info->shared)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
{
|
2001-06-23 05:54:15 +00:00
|
|
|
|
/* If this reloc is in a read-only section, we might
|
2001-09-26 09:25:04 +00:00
|
|
|
|
need a copy reloc. We can't check reliably at this
|
|
|
|
|
stage whether the section is read-only, as input
|
|
|
|
|
sections have not yet been mapped to output sections.
|
|
|
|
|
Tentatively set the flag for now, and correct in
|
|
|
|
|
adjust_dynamic_symbol. */
|
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_NON_GOT_REF;
|
2001-06-23 05:54:15 +00:00
|
|
|
|
|
|
|
|
|
/* We may need a .plt entry if the function this reloc
|
|
|
|
|
refers to is in a shared lib. */
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->plt.refcount += 1;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
}
|
1999-09-04 16:26:08 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* If we are creating a shared library, and this is a reloc
|
2000-08-27 08:10:16 +00:00
|
|
|
|
against a global symbol, or a non PC relative reloc
|
|
|
|
|
against a local symbol, then we need to copy the reloc
|
|
|
|
|
into the shared library. However, if we are linking with
|
|
|
|
|
-Bsymbolic, we do not need to copy a reloc against a
|
|
|
|
|
global symbol which is defined in an object we are
|
|
|
|
|
including in the link (i.e., DEF_REGULAR is set). At
|
|
|
|
|
this point we have not seen all the input files, so it is
|
|
|
|
|
possible that DEF_REGULAR is not set now but will be set
|
2001-02-09 06:58:59 +00:00
|
|
|
|
later (it is never cleared). In case of a weak definition,
|
|
|
|
|
DEF_REGULAR may be cleared later by a strong definition in
|
2001-09-26 09:25:04 +00:00
|
|
|
|
a shared library. We account for that possibility below by
|
2001-02-09 06:58:59 +00:00
|
|
|
|
storing information in the relocs_copied field of the hash
|
|
|
|
|
table entry. A similar situation occurs when creating
|
|
|
|
|
shared libraries and symbol visibility changes render the
|
2001-06-23 05:54:15 +00:00
|
|
|
|
symbol local.
|
2001-09-08 05:47:01 +00:00
|
|
|
|
|
2001-06-23 05:54:15 +00:00
|
|
|
|
If on the other hand, we are creating an executable, we
|
|
|
|
|
may need to keep relocations for symbols satisfied by a
|
|
|
|
|
dynamic library if we manage to avoid copy relocs for the
|
|
|
|
|
symbol. */
|
|
|
|
|
if ((info->shared
|
|
|
|
|
&& (sec->flags & SEC_ALLOC) != 0
|
|
|
|
|
&& (ELF32_R_TYPE (rel->r_info) != R_386_PC32
|
|
|
|
|
|| (h != NULL
|
|
|
|
|
&& (! info->symbolic
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak
|
|
|
|
|
|| (h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_REGULAR) == 0))))
|
|
|
|
|
|| (!info->shared
|
|
|
|
|
&& (sec->flags & SEC_ALLOC) != 0
|
|
|
|
|
&& h != NULL
|
|
|
|
|
&& (h->root.type == bfd_link_hash_defweak
|
|
|
|
|
|| (h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_REGULAR) == 0)))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-11-10 00:23:35 +00:00
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
|
|
|
|
struct elf_i386_dyn_relocs **head;
|
|
|
|
|
|
2001-06-23 05:54:15 +00:00
|
|
|
|
/* We must copy these reloc types into the output file.
|
|
|
|
|
Create a reloc section in dynobj and make room for
|
|
|
|
|
this reloc. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (sreloc == NULL)
|
|
|
|
|
{
|
|
|
|
|
const char *name;
|
2001-09-27 16:18:42 +00:00
|
|
|
|
bfd *dynobj;
|
2002-03-28 03:27:46 +00:00
|
|
|
|
unsigned int strndx = elf_elfheader (abfd)->e_shstrndx;
|
|
|
|
|
unsigned int shnam = elf_section_data (sec)->rel_hdr.sh_name;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2002-03-28 03:27:46 +00:00
|
|
|
|
name = bfd_elf_string_from_elf_section (abfd, strndx, shnam);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (name == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
2001-01-20 06:08:35 +00:00
|
|
|
|
if (strncmp (name, ".rel", 4) != 0
|
|
|
|
|
|| strcmp (bfd_get_section_name (abfd, sec),
|
|
|
|
|
name + 4) != 0)
|
|
|
|
|
{
|
2001-09-25 04:34:50 +00:00
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%s: bad relocation section name `%s\'"),
|
|
|
|
|
bfd_archive_filename (abfd), name);
|
2001-04-26 19:09:20 +00:00
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
if (htab->elf.dynobj == NULL)
|
|
|
|
|
htab->elf.dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
dynobj = htab->elf.dynobj;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
sreloc = bfd_get_section_by_name (dynobj, name);
|
|
|
|
|
if (sreloc == NULL)
|
|
|
|
|
{
|
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
|
|
sreloc = bfd_make_section (dynobj, name);
|
|
|
|
|
flags = (SEC_HAS_CONTENTS | SEC_READONLY
|
|
|
|
|
| SEC_IN_MEMORY | SEC_LINKER_CREATED);
|
|
|
|
|
if ((sec->flags & SEC_ALLOC) != 0)
|
|
|
|
|
flags |= SEC_ALLOC | SEC_LOAD;
|
|
|
|
|
if (sreloc == NULL
|
|
|
|
|
|| ! bfd_set_section_flags (dynobj, sreloc, flags)
|
|
|
|
|
|| ! bfd_set_section_alignment (dynobj, sreloc, 2))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2001-09-25 04:34:50 +00:00
|
|
|
|
elf_section_data (sec)->sreloc = sreloc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* If this is a global symbol, we count the number of
|
|
|
|
|
relocations we need for this symbol. */
|
|
|
|
|
if (h != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-11-10 00:23:35 +00:00
|
|
|
|
head = &((struct elf_i386_link_hash_entry *) h)->dyn_relocs;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-11-10 00:23:35 +00:00
|
|
|
|
/* Track dynamic relocs needed for local syms too.
|
|
|
|
|
We really need local syms available to do this
|
|
|
|
|
easily. Oh well. */
|
|
|
|
|
|
|
|
|
|
asection *s;
|
|
|
|
|
s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
|
|
|
|
|
sec, r_symndx);
|
|
|
|
|
if (s == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
head = ((struct elf_i386_dyn_relocs **)
|
|
|
|
|
&elf_section_data (s)->local_dynrel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = *head;
|
|
|
|
|
if (p == NULL || p->sec != sec)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type amt = sizeof *p;
|
|
|
|
|
p = ((struct elf_i386_dyn_relocs *)
|
|
|
|
|
bfd_alloc (htab->elf.dynobj, amt));
|
|
|
|
|
if (p == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
p->next = *head;
|
|
|
|
|
*head = p;
|
|
|
|
|
p->sec = sec;
|
|
|
|
|
p->count = 0;
|
|
|
|
|
p->pc_count = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-11-10 00:23:35 +00:00
|
|
|
|
|
|
|
|
|
p->count += 1;
|
|
|
|
|
if (ELF32_R_TYPE (rel->r_info) == R_386_PC32)
|
|
|
|
|
p->pc_count += 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* This relocation describes the C++ object vtable hierarchy.
|
|
|
|
|
Reconstruct it for later use during GC. */
|
|
|
|
|
case R_386_GNU_VTINHERIT:
|
|
|
|
|
if (!_bfd_elf32_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
|
|
|
|
|
return false;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* This relocation describes which C++ vtable entries are actually
|
|
|
|
|
used. Record for later use during GC. */
|
|
|
|
|
case R_386_GNU_VTENTRY:
|
|
|
|
|
if (!_bfd_elf32_gc_record_vtentry (abfd, sec, h, rel->r_offset))
|
|
|
|
|
return false;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the section that should be marked against GC for a given
|
|
|
|
|
relocation. */
|
|
|
|
|
|
|
|
|
|
static asection *
|
|
|
|
|
elf_i386_gc_mark_hook (abfd, info, rel, h, sym)
|
|
|
|
|
bfd *abfd;
|
1999-07-11 19:49:48 +00:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
Elf_Internal_Rela *rel;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
Elf_Internal_Sym *sym;
|
|
|
|
|
{
|
|
|
|
|
if (h != NULL)
|
|
|
|
|
{
|
|
|
|
|
switch (ELF32_R_TYPE (rel->r_info))
|
|
|
|
|
{
|
|
|
|
|
case R_386_GNU_VTINHERIT:
|
|
|
|
|
case R_386_GNU_VTENTRY:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
switch (h->root.type)
|
|
|
|
|
{
|
|
|
|
|
case bfd_link_hash_defined:
|
|
|
|
|
case bfd_link_hash_defweak:
|
|
|
|
|
return h->root.u.def.section;
|
|
|
|
|
|
|
|
|
|
case bfd_link_hash_common:
|
|
|
|
|
return h->root.u.c.p->section;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
Support for more than 64k ELF sections.
include/elf/ChangeLog
* external.h (Elf_External_Sym_Shndx): Declare.
* internal.h (struct elf_internal_sym <st_shndx>): Make it an
unsigned int.
* common.h (SHN_BAD): Define.
bfd/ChangeLog
* configure.in: Bump bfd version.
* configure: Regenerate.
* elf-bfd.h (elf_size_info <swap_symbol_out>): Add shndx param.
(bfd_elf32_swap_symbol_in): Likewise.
(bfd_elf32_swap_symbol_out): Likewise.
(bfd_elf64_swap_symbol_in): Likewise.
(bfd_elf64_swap_symbol_out): Likewise.
(elf_reloc_cookie): Add locsym_shndx field. Make locsyms a PTR.
(elf_obj_tdata): Add num_elf_sections, symtab_shndx_hdr and
symtab_shndx_section.
(elf_numsections): Define.
(elf_symtab_shndx): Define.
* elf.c (setup_group): Use elf_numsections rather than header e_shnum.
(bfd_elf_find_section): Likewise.
(bfd_section_from_elf_index): Likewise.
(bfd_section_from_shdr): Likewise. Handle SHT_SYMTAB_SHNDX.
(bfd_section_from_r_symndx): Read symbol shndx extension, and
translate st_shndx for > SHN_HIRESERVE.
(assign_section_numbers): Skip reserved sections. Assign
symtab_shndx_section and elf_numsections. Exclude reserved
sections from e_shnum. Set up symtab_shndx_hdr.
(_bfd_elf_compute_section_file_positions): Handle symtab_shndx_hdr.
(map_sections_to_segments): Don't map eh_frame_hdr unless required.
(assign_file_positions_except_relocs): Use elf_numsections rather
than header e_shnum. Skip reserved sections and symtab_shndx_section.
(prep_headers): Set name for symtab_shndx_hdr.
(_bfd_elf_assign_file_positions_for_relocs): Use elf_numsections.
(_bfd_elf_write_object_contents): Likewise. Skip reserved sections.
(_bfd_elf_section_from_bfd_section): Check bfd_{abs,com,und}_section
first. Use elf_section_data if available. Use elf_numsections.
Start scan at index 1.
(copy_private_bfd_data ): Comment fixes.
(MAP_ONESYMTAB): Define above SHN_HIOS.
(MAP_DYNSYMTAB): Likewise.
(MAP_STRTAB): Likewise.
(MAP_SHSTRTAB): Likewise.
(MAP_SYM_SHNDX): New define.
(_bfd_elf_copy_private_symbol_data): Handle symtab_shndx_section.
(swap_out_syms): Swap out SHT_SYMTAB_SHNDX section too.
* elfcode.h (elf_swap_symbol_in): Add shndx param, and handle shndx
extension.
(elf_swap_symbol_out): Likewise.
(elf_object_p): Set elf_numsections, and use instead of e_shnum.
Initialialise reserved elf_elfsections to point at shdr[0]. Remove
redundant bfd_release calls.
(elf_slurp_symbol_table): Read symbol shndx extension, and use with
elf_swap_symbol_in. Translate st_shndx for > SHN_HIRESERVE too.
* elflink.h (elf_link_is_defined_archive_symbol): Read symbol shndx
extension, and use with elf_swap_symbol_in.
(elf_link_record_local_dynamic_symbol): Likewise.
(elf_link_add_object_symbols): Likewise. Also translate st_shndx
for elf sections > SHN_HIRESERVE.
(NAME(bfd_elf,size_dynamic_sections)): Adjust elf_swap_symbol_out
call.
(struct elf_final_link_info): Add locsym_shndx and symshndxbuf.
(elf_bfd_final_link): Allocate the above, and tidy code allocating
other buffers. Use elf_numsections instead of e_shnum. Adjust
elf_swap_symbol_out calls.
(elf_link_output_sym): Swap out symbol shndx extension too.
(elf_link_flush_output_syms): And flush them to disk.
(elf_link_output_extsym): Use SHN_BAD. Adjust elf_swap_symbol_out
calls.
(elf_gc_mark): Read symbol shndx extension, and use with
elf_swap_symbol_in.
(elf_link_input_bfd): Likewise, Translate st_shndx for elf sections
> SHN_HIRESERVE too. Use SHN_BAD.
(elf_reloc_symbol_deleted_p): Use symbol shndx extensions with
elf_swap_symbol_in. Translate st_shndx > SHN_HIRESERVE too.
(elf_bfd_discard_info): Read symbol shndx extension. Don't attempt
to continue after a bfd error.
* elf-m10200.c (mn10200_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Translate SHN_UNDEF,
SHN_ABS, SHN_COMMON and elf sections > SHN_HIRESERVE to bfd
sections too. Remove dead code.
(mn10200_elf_relax_delete_bytes): Use symbol shndx extension
when swapping in symbols. Tidy code adjusting global syms.
Don't swap in global syms.
(mn10200_elf_symbol_address_p): Likewise. Remove extsyms param.
(mn10200_elf_get_relocated_section_contents): Read symbol shndx
extension, and use with swap_symbol_in. Rename "size" -> "amt"
to maximize code in common with other files. Translate st_shndx
for > SHN_HIRESERVE too. Remove dead code.
* elf-m10300.c (mn10300_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Remove dead code.
(mn10300_elf_relax_delete_bytes): As for elf-m10200.c.
(mn10300_elf_symbol_address_p): Likewise.
(mn10300_elf_get_relocated_section_contents): Likewise.
* elf32-h8300.c (elf32_h8_relax_section): As for elf-m10300.c.
(elf32_h8_relax_delete_bytes): Likewise.
(elf32_h8_symbol_address_p): Likewise.
(elf32_h8_get_relocated_section_contents): Likewise.
* elf32-hppa.c (elf32_hppa_size_stubs): Read symbol shndx
extension, and use with swap_symbol_in.
* elf64-hppa.c (elf64_hppa_check_relocs): Likewise.
* elf32-i370.c (i370_elf_finish_dynamic_sections): Adjust call to
bfd_elf32_swap_symbol_out.
* elf32-m32r.c (m32r_elf_get_relocated_section_contents): Translate
elf sections > SHN_HIRESERVE too.
* elf32-m68k.c (bfd_m68k_elf32_create_embedded_relocs): Only read
local syms. Read symbol shndx extension, and use with swap_symbol_in.
* elf32-mips.c (_bfd_mips_elf_final_write_processing): Use
elf_numsections rather than header e_shnum.
* elf32-sh.c (sh_elf_relax_section): As for elf-m10300.c.
(sh_elf_relax_delete_bytes): Likewise.
(sh_elf_get_relocated_section_contents): Likewise. Only read local
symbols.
* elf32-v850.c (v850_elf_symbol_processing): Use an unsigned int to
hold section index. Use elf_numsections rather than e_shnum.
Rename "index" -> "indx" to avoid shadowing warning.
(v850_elf_add_symbol_hook): Likewise.
* elf64-alpha.c (elf64_alpha_relax_section): Only read local syms.
Read symbol shndx extension, and use with swap_symbol_in.
* elf32-xstormy16.c (xstormy16_elf_relax_section): Likewise.
Translate SHN_COMMON and elf sections > SHN_HIRESERVE too.
* elfxx-ia64.c (elfNN_ia64_relax_section): Likewise.
(elfNN_ia64_aix_add_symbol_hook): Use elf_numsections.
* elf-m10300.c (mn10300_elf_gc_mark_hook): Remove unnecessary checks
before calling bfd_section_from_elf_index on local syms.
* elf32-arm.h (elf32_arm_gc_mark_hook): Likewise.
* elf32-avr.c (elf32_avr_gc_mark_hook): Likewise.
* elf32-cris.c (cris_elf_gc_mark_hook): Likewise.
* elf32-d10v.c (elf32_d10v_gc_mark_hook): Likewise.
* elf32-fr30.c (fr30_elf_gc_mark_hook): Likewise.
* elf32-hppa.c (elf32_hppa_gc_mark_hook): Likewise.
* elf32-i386.c (elf_i386_gc_mark_hook): Likewise.
* elf32-m32r.c (m32r_elf_gc_mark_hook): Likewise.
* elf32-m68k.c (elf_m68k_gc_mark_hook): Likewise.
* elf32-mcore.c (mcore_elf_gc_mark_hook): Likewise.
* elf32-mips.c (_bfd_mips_elf_gc_mark_hook): Likewise.
* elf32-openrisc.c (openrisc_elf_gc_mark_hook): Likewise.
* elf32-ppc.c (ppc_elf_gc_mark_hook): Likewise.
* elf32-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf32-sh.c (sh_elf_gc_mark_hook): Likewise.
* elf32-sparc.c (elf32_sparc_gc_mark_hook): Likewise.
* elf32-v850.c (v850_elf_gc_mark_hook): Likewise.
* elf32-xstormy16.c (xstormy16_elf_gc_mark_hook): Likewise.
* elf64-mips.c (mips_elf64_gc_mark_hook): Likewise.
* elf64-mmix.c (mmix_elf_gc_mark_hook): Likewise.
* elf64-ppc.c (ppc64_elf_gc_mark_hook): Likewise.
* elf64-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf64-x86-64.c (elf64_x86_64_gc_mark_hook): Likewise.
binutils/ChangeLog
* readelf.c (symtab_shndx_hdr): New global.
(SECTION_HEADER_INDEX): Define.
(SECTION_HEADER_NUM): Define.
(SECTION_HEADER): Define.
(GET_ELF_SYMBOLS): Pass two params rather than three.
(get_32bit_elf_symbols): Take file and section args. Read and
use SHT_SYMTAB_SHNDX.
(get_64bit_elf_symbols): Likewise.
(dump_relocations): Use SECTION_HEADER to index "section_headers".
(process_section_headers): Likewise. Use SECTION_HEADER_NUM too.
Remember symtab_shdx_hdr.
(process_program_headers): Scan from index 1 for segment map.
(slurp_ia64_unwind_table): Use SECTION_HEADER to index
"section_headers".
(process_relocs): Likewise. Also adjust call to GET_ELF_SYMBOLS.
(process_unwind): Likewise.
(process_version_sections): Likewise.
(process_symbol_table): Likewise.
(display_debug_info): Likewise.
(process_dynamic_segment): Fake up a symtab section for changed
GET_ELF_SYMBOLS.
(get_symbol_index_type): Check SHN_LOOS before SHN_LORESERVE.
(process_program_headers): Kill signed/unsigned warning.
(load_debug_str): Likewise.
(display_debug_info): Likewise.
2001-12-17 00:52:35 +00:00
|
|
|
|
return bfd_section_from_elf_index (abfd, sym->st_shndx);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Update the got entry reference counts for the section being removed. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_gc_sweep_hook (abfd, info, sec, relocs)
|
2000-04-27 00:31:17 +00:00
|
|
|
|
bfd *abfd;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct bfd_link_info *info;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
asection *sec;
|
|
|
|
|
const Elf_Internal_Rela *relocs;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2000-04-27 00:31:17 +00:00
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
|
struct elf_link_hash_entry **sym_hashes;
|
|
|
|
|
bfd_signed_vma *local_got_refcounts;
|
|
|
|
|
const Elf_Internal_Rela *rel, *relend;
|
|
|
|
|
unsigned long r_symndx;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
|
2001-11-10 00:23:35 +00:00
|
|
|
|
elf_section_data (sec)->local_dynrel = NULL;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
|
|
|
|
|
sym_hashes = elf_sym_hashes (abfd);
|
|
|
|
|
local_got_refcounts = elf_local_got_refcounts (abfd);
|
2000-04-27 00:31:17 +00:00
|
|
|
|
|
|
|
|
|
relend = relocs + sec->reloc_count;
|
|
|
|
|
for (rel = relocs; rel < relend; rel++)
|
|
|
|
|
switch (ELF32_R_TYPE (rel->r_info))
|
|
|
|
|
{
|
|
|
|
|
case R_386_GOT32:
|
|
|
|
|
case R_386_GOTOFF:
|
|
|
|
|
case R_386_GOTPC:
|
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
|
|
|
|
if (r_symndx >= symtab_hdr->sh_info)
|
|
|
|
|
{
|
|
|
|
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
|
|
|
|
if (h->got.refcount > 0)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
h->got.refcount -= 1;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
}
|
|
|
|
|
else if (local_got_refcounts != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (local_got_refcounts[r_symndx] > 0)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
local_got_refcounts[r_symndx] -= 1;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
case R_386_32:
|
|
|
|
|
case R_386_PC32:
|
2001-09-25 04:34:50 +00:00
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
|
|
|
|
if (r_symndx >= symtab_hdr->sh_info)
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_entry *eh;
|
|
|
|
|
struct elf_i386_dyn_relocs **pp;
|
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
|
|
|
|
|
|
|
|
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
|
|
|
|
|
|
|
|
|
if (!info->shared && h->plt.refcount > 0)
|
|
|
|
|
h->plt.refcount -= 1;
|
|
|
|
|
|
|
|
|
|
eh = (struct elf_i386_link_hash_entry *) h;
|
|
|
|
|
|
|
|
|
|
for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
|
|
|
|
|
if (p->sec == sec)
|
|
|
|
|
{
|
|
|
|
|
if (ELF32_R_TYPE (rel->r_info) == R_386_PC32)
|
|
|
|
|
p->pc_count -= 1;
|
|
|
|
|
p->count -= 1;
|
|
|
|
|
if (p->count == 0)
|
|
|
|
|
*pp = p->next;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2000-04-27 00:31:17 +00:00
|
|
|
|
case R_386_PLT32:
|
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
|
|
|
|
if (r_symndx >= symtab_hdr->sh_info)
|
|
|
|
|
{
|
|
|
|
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
|
|
|
|
if (h->plt.refcount > 0)
|
|
|
|
|
h->plt.refcount -= 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Adjust a symbol defined by a dynamic object and referenced by a
|
|
|
|
|
regular object. The current definition is in some section of the
|
|
|
|
|
dynamic object, but we're not including those sections. We have to
|
|
|
|
|
change the definition to something the rest of the link can
|
|
|
|
|
understand. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_adjust_dynamic_symbol (info, h)
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
2001-09-26 09:25:04 +00:00
|
|
|
|
struct elf_i386_link_hash_entry * eh;
|
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
asection *s;
|
|
|
|
|
unsigned int power_of_two;
|
|
|
|
|
|
|
|
|
|
/* If this is a function, put it in the procedure linkage table. We
|
|
|
|
|
will fill in the contents of the procedure linkage table later,
|
|
|
|
|
when we know the address of the .got section. */
|
|
|
|
|
if (h->type == STT_FUNC
|
|
|
|
|
|| (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0)
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (h->plt.refcount <= 0
|
|
|
|
|
|| (! info->shared
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) == 0
|
2002-01-29 11:14:35 +00:00
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) == 0
|
|
|
|
|
&& h->root.type != bfd_link_hash_undefweak
|
|
|
|
|
&& h->root.type != bfd_link_hash_undefined))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
/* This case can occur if we saw a PLT32 reloc in an input
|
2000-04-27 00:31:17 +00:00
|
|
|
|
file, but the symbol was never referred to by a dynamic
|
|
|
|
|
object, or if all references were garbage collected. In
|
|
|
|
|
such a case, we don't actually need to build a procedure
|
|
|
|
|
linkage table, and we can just do a PC32 reloc instead. */
|
2001-10-15 07:28:45 +00:00
|
|
|
|
h->plt.offset = (bfd_vma) -1;
|
2000-04-27 00:31:17 +00:00
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
else
|
|
|
|
|
/* It's possible that we incorrectly decided a .plt reloc was
|
|
|
|
|
needed for an R_386_PC32 reloc to a non-function sym in
|
|
|
|
|
check_relocs. We can't decide accurately between function and
|
|
|
|
|
non-function syms in check-relocs; Objects loaded later in
|
|
|
|
|
the link may change h->type. So fix it now. */
|
2001-10-15 07:28:45 +00:00
|
|
|
|
h->plt.offset = (bfd_vma) -1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* If this is a weak symbol, and there is a real definition, the
|
|
|
|
|
processor independent code will have arranged for us to see the
|
|
|
|
|
real definition first, and we can just use the same value. */
|
|
|
|
|
if (h->weakdef != NULL)
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->weakdef->root.type == bfd_link_hash_defweak);
|
|
|
|
|
h->root.u.def.section = h->weakdef->root.u.def.section;
|
|
|
|
|
h->root.u.def.value = h->weakdef->root.u.def.value;
|
2001-10-03 08:33:18 +00:00
|
|
|
|
return true;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is a reference to a symbol defined by a dynamic object which
|
|
|
|
|
is not a function. */
|
|
|
|
|
|
|
|
|
|
/* If we are creating a shared library, we must presume that the
|
|
|
|
|
only references to the symbol are via the global offset table.
|
|
|
|
|
For such cases we need not do anything here; the relocations will
|
|
|
|
|
be handled correctly by relocate_section. */
|
|
|
|
|
if (info->shared)
|
|
|
|
|
return true;
|
|
|
|
|
|
1999-09-04 16:26:08 +00:00
|
|
|
|
/* If there are no references to this symbol that do not use the
|
|
|
|
|
GOT, we don't need to generate a copy reloc. */
|
|
|
|
|
if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0)
|
|
|
|
|
return true;
|
|
|
|
|
|
2001-10-03 15:11:48 +00:00
|
|
|
|
/* If -z nocopyreloc was given, we won't generate them either. */
|
|
|
|
|
if (info->nocopyreloc)
|
|
|
|
|
{
|
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_NON_GOT_REF;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
eh = (struct elf_i386_link_hash_entry *) h;
|
|
|
|
|
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
|
|
|
|
{
|
|
|
|
|
s = p->sec->output_section;
|
|
|
|
|
if (s != NULL && (s->flags & SEC_READONLY) != 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we didn't find any dynamic relocs in read-only sections, then
|
|
|
|
|
we'll be keeping the dynamic relocs and avoiding the copy reloc. */
|
|
|
|
|
if (p == NULL)
|
|
|
|
|
{
|
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_NON_GOT_REF;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* We must allocate the symbol in our .dynbss section, which will
|
|
|
|
|
become part of the .bss section of the executable. There will be
|
|
|
|
|
an entry for this symbol in the .dynsym section. The dynamic
|
|
|
|
|
object will contain position independent code, so all references
|
|
|
|
|
from the dynamic object to this symbol will go through the global
|
|
|
|
|
offset table. The dynamic linker will use the .dynsym entry to
|
|
|
|
|
determine the address it must put in the global offset table, so
|
|
|
|
|
both the dynamic object and the regular object will refer to the
|
|
|
|
|
same memory location for the variable. */
|
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* We must generate a R_386_COPY reloc to tell the dynamic linker to
|
|
|
|
|
copy the initial value out of the dynamic object and into the
|
2001-09-27 16:18:42 +00:00
|
|
|
|
runtime process image. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
|
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
htab->srelbss->_raw_size += sizeof (Elf32_External_Rel);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We need to figure out the alignment required for this symbol. I
|
|
|
|
|
have no idea how ELF linkers handle this. */
|
|
|
|
|
power_of_two = bfd_log2 (h->size);
|
|
|
|
|
if (power_of_two > 3)
|
|
|
|
|
power_of_two = 3;
|
|
|
|
|
|
|
|
|
|
/* Apply the required alignment. */
|
2001-09-27 16:18:42 +00:00
|
|
|
|
s = htab->sdynbss;
|
|
|
|
|
s->_raw_size = BFD_ALIGN (s->_raw_size, (bfd_size_type) (1 << power_of_two));
|
|
|
|
|
if (power_of_two > bfd_get_section_alignment (htab->elf.dynobj, s))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
if (! bfd_set_section_alignment (htab->elf.dynobj, s, power_of_two))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Define the symbol as being at this point in the section. */
|
|
|
|
|
h->root.u.def.section = s;
|
|
|
|
|
h->root.u.def.value = s->_raw_size;
|
|
|
|
|
|
|
|
|
|
/* Increment the section size to make room for the symbol. */
|
|
|
|
|
s->_raw_size += h->size;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
/* This is the condition under which elf_i386_finish_dynamic_symbol
|
|
|
|
|
will be called from elflink.h. If elflink.h doesn't call our
|
|
|
|
|
finish_dynamic_symbol routine, we'll need to do something about
|
|
|
|
|
initializing any .plt and .got entries in elf_i386_relocate_section. */
|
|
|
|
|
#define WILL_CALL_FINISH_DYNAMIC_SYMBOL(DYN, INFO, H) \
|
|
|
|
|
((DYN) \
|
|
|
|
|
&& ((INFO)->shared \
|
|
|
|
|
|| ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0) \
|
|
|
|
|
&& ((H)->dynindx != -1 \
|
|
|
|
|
|| ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0))
|
|
|
|
|
|
|
|
|
|
/* Allocate space in .plt, .got and associated reloc sections for
|
2001-09-25 04:34:50 +00:00
|
|
|
|
dynamic relocs. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
|
|
|
|
static boolean
|
2001-09-25 04:34:50 +00:00
|
|
|
|
allocate_dynrelocs (h, inf)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
PTR inf;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
2001-06-27 01:46:17 +00:00
|
|
|
|
struct elf_i386_link_hash_entry *eh;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2002-03-28 03:27:46 +00:00
|
|
|
|
if (h->root.type == bfd_link_hash_indirect)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
2002-03-28 03:27:46 +00:00
|
|
|
|
if (h->root.type == bfd_link_hash_warning)
|
|
|
|
|
/* When warning symbols are created, they **replace** the "real"
|
|
|
|
|
entry in the hash table, thus we never get to see the real
|
|
|
|
|
symbol in a hash traversal. So look at it now. */
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
info = (struct bfd_link_info *) inf;
|
|
|
|
|
htab = elf_i386_hash_table (info);
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (htab->elf.dynamic_sections_created
|
2001-06-05 05:51:55 +00:00
|
|
|
|
&& h->plt.refcount > 0)
|
|
|
|
|
{
|
2001-06-27 01:46:17 +00:00
|
|
|
|
/* Make sure this symbol is output as a dynamic symbol.
|
|
|
|
|
Undefined weak syms won't yet be marked as dynamic. */
|
|
|
|
|
if (h->dynindx == -1
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_elf32_link_record_dynamic_symbol (info, h))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info, h))
|
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
asection *s = htab->splt;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
/* If this is the first .plt entry, make room for the special
|
|
|
|
|
first entry. */
|
|
|
|
|
if (s->_raw_size == 0)
|
|
|
|
|
s->_raw_size += PLT_ENTRY_SIZE;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
h->plt.offset = s->_raw_size;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
/* If this symbol is not defined in a regular file, and we are
|
|
|
|
|
not generating a shared library, then set the symbol to this
|
|
|
|
|
location in the .plt. This is required to make function
|
|
|
|
|
pointers compare as equal between the normal executable and
|
|
|
|
|
the shared library. */
|
|
|
|
|
if (! info->shared
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
|
|
|
|
|
{
|
|
|
|
|
h->root.u.def.section = s;
|
|
|
|
|
h->root.u.def.value = h->plt.offset;
|
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
/* Make room for this entry. */
|
|
|
|
|
s->_raw_size += PLT_ENTRY_SIZE;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-27 16:10:28 +00:00
|
|
|
|
/* We also need to make an entry in the .got.plt section, which
|
|
|
|
|
will be placed in the .got section by the linker script. */
|
2001-09-27 16:18:42 +00:00
|
|
|
|
htab->sgotplt->_raw_size += 4;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
|
|
|
|
/* We also need to make an entry in the .rel.plt section. */
|
2001-09-27 16:18:42 +00:00
|
|
|
|
htab->srelplt->_raw_size += sizeof (Elf32_External_Rel);
|
2001-06-05 05:51:55 +00:00
|
|
|
|
}
|
2001-09-27 16:10:28 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->plt.offset = (bfd_vma) -1;
|
2001-09-27 16:10:28 +00:00
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
|
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->plt.offset = (bfd_vma) -1;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (h->got.refcount > 0)
|
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
asection *s;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
boolean dyn;
|
|
|
|
|
|
2001-06-27 01:46:17 +00:00
|
|
|
|
/* Make sure this symbol is output as a dynamic symbol.
|
|
|
|
|
Undefined weak syms won't yet be marked as dynamic. */
|
|
|
|
|
if (h->dynindx == -1
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_elf32_link_record_dynamic_symbol (info, h))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
s = htab->sgot;
|
|
|
|
|
h->got.offset = s->_raw_size;
|
|
|
|
|
s->_raw_size += 4;
|
2001-09-26 09:25:04 +00:00
|
|
|
|
dyn = htab->elf.dynamic_sections_created;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h))
|
|
|
|
|
htab->srelgot->_raw_size += sizeof (Elf32_External_Rel);
|
|
|
|
|
}
|
|
|
|
|
else
|
2001-09-29 06:21:59 +00:00
|
|
|
|
h->got.offset = (bfd_vma) -1;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-06-27 01:46:17 +00:00
|
|
|
|
eh = (struct elf_i386_link_hash_entry *) h;
|
|
|
|
|
if (eh->dyn_relocs == NULL)
|
|
|
|
|
return true;
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* In the shared -Bsymbolic case, discard space allocated for
|
|
|
|
|
dynamic pc-relative relocs against symbols which turn out to be
|
|
|
|
|
defined in regular objects. For the normal shared case, discard
|
2001-09-27 16:18:42 +00:00
|
|
|
|
space for pc-relative relocs that have become local due to symbol
|
|
|
|
|
visibility changes. */
|
2001-09-25 04:34:50 +00:00
|
|
|
|
|
|
|
|
|
if (info->shared)
|
2001-06-27 01:46:17 +00:00
|
|
|
|
{
|
2001-09-25 04:34:50 +00:00
|
|
|
|
if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
|
|
|
|
|
&& ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0
|
|
|
|
|
|| info->symbolic))
|
2001-06-27 01:46:17 +00:00
|
|
|
|
{
|
2001-09-25 04:34:50 +00:00
|
|
|
|
struct elf_i386_dyn_relocs **pp;
|
|
|
|
|
|
|
|
|
|
for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
|
|
|
|
|
{
|
|
|
|
|
p->count -= p->pc_count;
|
|
|
|
|
p->pc_count = 0;
|
|
|
|
|
if (p->count == 0)
|
|
|
|
|
*pp = p->next;
|
|
|
|
|
else
|
|
|
|
|
pp = &p->next;
|
|
|
|
|
}
|
2001-06-27 01:46:17 +00:00
|
|
|
|
}
|
2001-09-25 04:34:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* For the non-shared case, discard space for relocs against
|
|
|
|
|
symbols which turn out to need copy relocs or are not
|
|
|
|
|
dynamic. */
|
|
|
|
|
|
|
|
|
|
if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
|
|
|
|
|
&& (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
|
2001-09-26 09:25:04 +00:00
|
|
|
|
|| (htab->elf.dynamic_sections_created
|
2001-09-25 04:34:50 +00:00
|
|
|
|
&& (h->root.type == bfd_link_hash_undefweak
|
|
|
|
|
|| h->root.type == bfd_link_hash_undefined))))
|
|
|
|
|
{
|
|
|
|
|
/* Make sure this symbol is output as a dynamic symbol.
|
|
|
|
|
Undefined weak syms won't yet be marked as dynamic. */
|
|
|
|
|
if (h->dynindx == -1
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_elf32_link_record_dynamic_symbol (info, h))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2001-06-27 01:46:17 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* If that succeeded, we know we'll be keeping all the
|
|
|
|
|
relocs. */
|
|
|
|
|
if (h->dynindx != -1)
|
|
|
|
|
goto keep;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eh->dyn_relocs = NULL;
|
|
|
|
|
|
2001-11-10 00:23:35 +00:00
|
|
|
|
keep: ;
|
2001-06-27 01:46:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* Finally, allocate space. */
|
|
|
|
|
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
2001-06-23 05:54:15 +00:00
|
|
|
|
{
|
2001-09-25 04:34:50 +00:00
|
|
|
|
asection *sreloc = elf_section_data (p->sec)->sreloc;
|
|
|
|
|
sreloc->_raw_size += p->count * sizeof (Elf32_External_Rel);
|
2001-06-23 05:54:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* Find any dynamic relocs that apply to read-only sections. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
readonly_dynrelocs (h, inf)
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
PTR inf;
|
|
|
|
|
{
|
|
|
|
|
struct elf_i386_link_hash_entry *eh;
|
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
|
|
|
|
|
2002-03-28 03:27:46 +00:00
|
|
|
|
if (h->root.type == bfd_link_hash_warning)
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
eh = (struct elf_i386_link_hash_entry *) h;
|
|
|
|
|
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
|
|
|
|
{
|
|
|
|
|
asection *s = p->sec->output_section;
|
|
|
|
|
|
|
|
|
|
if (s != NULL && (s->flags & SEC_READONLY) != 0)
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *) inf;
|
|
|
|
|
|
|
|
|
|
info->flags |= DF_TEXTREL;
|
|
|
|
|
|
|
|
|
|
/* Not an error, just cut short the traversal. */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Set the sizes of the dynamic sections. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_size_dynamic_sections (output_bfd, info)
|
2001-08-23 15:14:18 +00:00
|
|
|
|
bfd *output_bfd ATTRIBUTE_UNUSED;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd *dynobj;
|
|
|
|
|
asection *s;
|
|
|
|
|
boolean relocs;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
bfd *ibfd;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
2001-09-26 09:25:04 +00:00
|
|
|
|
dynobj = htab->elf.dynobj;
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (dynobj == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (htab->elf.dynamic_sections_created)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
/* Set the contents of the .interp section to the interpreter. */
|
|
|
|
|
if (! info->shared)
|
|
|
|
|
{
|
|
|
|
|
s = bfd_get_section_by_name (dynobj, ".interp");
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (s == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
|
|
|
|
|
s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
|
|
|
|
|
}
|
2001-06-20 18:54:52 +00:00
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* Set up .got offsets for local syms, and space for local dynamic
|
|
|
|
|
relocs. */
|
|
|
|
|
for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
|
2001-06-20 18:54:52 +00:00
|
|
|
|
{
|
|
|
|
|
bfd_signed_vma *local_got;
|
|
|
|
|
bfd_signed_vma *end_local_got;
|
|
|
|
|
bfd_size_type locsymcount;
|
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
|
asection *srel;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
|
2001-06-20 18:54:52 +00:00
|
|
|
|
continue;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
for (s = ibfd->sections; s != NULL; s = s->next)
|
|
|
|
|
{
|
2001-11-10 00:23:35 +00:00
|
|
|
|
struct elf_i386_dyn_relocs *p;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
|
2001-11-10 00:23:35 +00:00
|
|
|
|
for (p = *((struct elf_i386_dyn_relocs **)
|
|
|
|
|
&elf_section_data (s)->local_dynrel);
|
|
|
|
|
p != NULL;
|
|
|
|
|
p = p->next)
|
2001-09-25 04:34:50 +00:00
|
|
|
|
{
|
2001-11-10 00:23:35 +00:00
|
|
|
|
if (!bfd_is_abs_section (p->sec)
|
|
|
|
|
&& bfd_is_abs_section (p->sec->output_section))
|
|
|
|
|
{
|
|
|
|
|
/* Input section has been discarded, either because
|
|
|
|
|
it is a copy of a linkonce section or due to
|
|
|
|
|
linker script /DISCARD/, so we'll be discarding
|
|
|
|
|
the relocs too. */
|
|
|
|
|
}
|
2002-02-05 00:00:23 +00:00
|
|
|
|
else if (p->count != 0)
|
2001-11-10 00:23:35 +00:00
|
|
|
|
{
|
|
|
|
|
srel = elf_section_data (p->sec)->sreloc;
|
|
|
|
|
srel->_raw_size += p->count * sizeof (Elf32_External_Rel);
|
2002-02-05 00:00:23 +00:00
|
|
|
|
if ((p->sec->output_section->flags & SEC_READONLY) != 0)
|
|
|
|
|
info->flags |= DF_TEXTREL;
|
2001-11-10 00:23:35 +00:00
|
|
|
|
}
|
2001-09-25 04:34:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local_got = elf_local_got_refcounts (ibfd);
|
2001-06-20 18:54:52 +00:00
|
|
|
|
if (!local_got)
|
|
|
|
|
continue;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
|
2001-06-20 18:54:52 +00:00
|
|
|
|
locsymcount = symtab_hdr->sh_info;
|
|
|
|
|
end_local_got = local_got + locsymcount;
|
|
|
|
|
s = htab->sgot;
|
|
|
|
|
srel = htab->srelgot;
|
|
|
|
|
for (; local_got < end_local_got; ++local_got)
|
|
|
|
|
{
|
|
|
|
|
if (*local_got > 0)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
{
|
2001-06-20 18:54:52 +00:00
|
|
|
|
*local_got = s->_raw_size;
|
|
|
|
|
s->_raw_size += 4;
|
|
|
|
|
if (info->shared)
|
|
|
|
|
srel->_raw_size += sizeof (Elf32_External_Rel);
|
2001-06-05 05:51:55 +00:00
|
|
|
|
}
|
2001-06-20 18:54:52 +00:00
|
|
|
|
else
|
|
|
|
|
*local_got = (bfd_vma) -1;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* Allocate global sym .plt and .got entries, and space for global
|
|
|
|
|
sym dynamic relocs. */
|
2001-09-26 09:25:04 +00:00
|
|
|
|
elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, (PTR) info);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-27 01:46:17 +00:00
|
|
|
|
/* We now have determined the sizes of the various dynamic sections.
|
|
|
|
|
Allocate memory for them. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
relocs = false;
|
|
|
|
|
for (s = dynobj->sections; s != NULL; s = s->next)
|
|
|
|
|
{
|
|
|
|
|
if ((s->flags & SEC_LINKER_CREATED) == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (s == htab->splt
|
|
|
|
|
|| s == htab->sgot
|
|
|
|
|
|| s == htab->sgotplt)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
/* Strip this section if we don't need it; see the
|
|
|
|
|
comment below. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
else if (strncmp (bfd_get_section_name (dynobj, s), ".rel", 4) == 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
if (s->_raw_size != 0 && s != htab->srelplt)
|
|
|
|
|
relocs = true;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
/* We use the reloc_count field as a counter if we need
|
|
|
|
|
to copy relocs into the output file. */
|
|
|
|
|
s->reloc_count = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2001-06-05 05:51:55 +00:00
|
|
|
|
else
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
/* It's not one of our sections, so don't allocate space. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (s->_raw_size == 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-09-27 16:18:42 +00:00
|
|
|
|
/* If we don't need this section, strip it from the
|
|
|
|
|
output file. This is mostly to handle .rel.bss and
|
|
|
|
|
.rel.plt. We must create both sections in
|
|
|
|
|
create_dynamic_sections, because they must be created
|
|
|
|
|
before the linker maps input sections to output
|
|
|
|
|
sections. The linker does that before
|
|
|
|
|
adjust_dynamic_symbol is called, and it is that
|
|
|
|
|
function which decides whether anything needs to go
|
|
|
|
|
into these sections. */
|
|
|
|
|
|
2000-02-13 22:45:29 +00:00
|
|
|
|
_bfd_strip_section_from_output (info, s);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-27 08:10:16 +00:00
|
|
|
|
/* Allocate memory for the section contents. We use bfd_zalloc
|
|
|
|
|
here in case unused entries are not reclaimed before the
|
|
|
|
|
section's contents are written out. This should not happen,
|
|
|
|
|
but this way if it does, we get a R_386_NONE reloc instead
|
|
|
|
|
of garbage. */
|
2000-08-21 23:42:56 +00:00
|
|
|
|
s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->_raw_size);
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (s->contents == NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (htab->elf.dynamic_sections_created)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
/* Add some entries to the .dynamic section. We fill in the
|
|
|
|
|
values later, in elf_i386_finish_dynamic_sections, but we
|
|
|
|
|
must add the entries now so that we get the correct size for
|
|
|
|
|
the .dynamic section. The DT_DEBUG entry is filled in by the
|
|
|
|
|
dynamic linker and used by the debugger. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
#define add_dynamic_entry(TAG, VAL) \
|
|
|
|
|
bfd_elf32_add_dynamic_entry (info, (bfd_vma) (TAG), (bfd_vma) (VAL))
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (! info->shared)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
if (!add_dynamic_entry (DT_DEBUG, 0))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (htab->splt->_raw_size != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
if (!add_dynamic_entry (DT_PLTGOT, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_PLTRELSZ, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_PLTREL, DT_REL)
|
|
|
|
|
|| !add_dynamic_entry (DT_JMPREL, 0))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (relocs)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
if (!add_dynamic_entry (DT_REL, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_RELSZ, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_RELENT, sizeof (Elf32_External_Rel)))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
/* If any dynamic relocs apply to a read-only section,
|
|
|
|
|
then we need a DT_TEXTREL entry. */
|
2002-02-05 00:00:23 +00:00
|
|
|
|
if ((info->flags & DF_TEXTREL) == 0)
|
|
|
|
|
elf_link_hash_traverse (&htab->elf, readonly_dynrelocs,
|
|
|
|
|
(PTR) info);
|
2001-09-25 04:34:50 +00:00
|
|
|
|
|
|
|
|
|
if ((info->flags & DF_TEXTREL) != 0)
|
|
|
|
|
{
|
|
|
|
|
if (!add_dynamic_entry (DT_TEXTREL, 0))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
#undef add_dynamic_entry
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 10:11:46 +00:00
|
|
|
|
/* Set the correct type for an x86 ELF section. We do this by the
|
|
|
|
|
section name, which is a hack, but ought to work. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_fake_sections (abfd, hdr, sec)
|
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
|
Elf32_Internal_Shdr *hdr;
|
|
|
|
|
asection *sec;
|
|
|
|
|
{
|
|
|
|
|
register const char *name;
|
|
|
|
|
|
|
|
|
|
name = bfd_get_section_name (abfd, sec);
|
|
|
|
|
|
|
|
|
|
/* This is an ugly, but unfortunately necessary hack that is
|
|
|
|
|
needed when producing EFI binaries on x86. It tells
|
|
|
|
|
elf.c:elf_fake_sections() not to consider ".reloc" as a section
|
|
|
|
|
containing ELF relocation info. We need this hack in order to
|
|
|
|
|
be able to generate ELF binaries that can be translated into
|
|
|
|
|
EFI applications (which are essentially COFF objects). Those
|
|
|
|
|
files contain a COFF ".reloc" section inside an ELFNN object,
|
|
|
|
|
which would normally cause BFD to segfault because it would
|
|
|
|
|
attempt to interpret this section as containing relocation
|
|
|
|
|
entries for section "oc". With this hack enabled, ".reloc"
|
|
|
|
|
will be treated as a normal data section, which will avoid the
|
|
|
|
|
segfault. However, you won't be able to create an ELFNN binary
|
|
|
|
|
with a section named "oc" that needs relocations, but that's
|
|
|
|
|
the kind of ugly side-effects you get when detecting section
|
|
|
|
|
types based on their names... In practice, this limitation is
|
|
|
|
|
unlikely to bite. */
|
|
|
|
|
if (strcmp (name, ".reloc") == 0)
|
|
|
|
|
hdr->sh_type = SHT_PROGBITS;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Relocate an i386 ELF section. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_relocate_section (output_bfd, info, input_bfd, input_section,
|
|
|
|
|
contents, relocs, local_syms, local_sections)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
bfd *input_bfd;
|
|
|
|
|
asection *input_section;
|
|
|
|
|
bfd_byte *contents;
|
|
|
|
|
Elf_Internal_Rela *relocs;
|
|
|
|
|
Elf_Internal_Sym *local_syms;
|
|
|
|
|
asection **local_sections;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
|
struct elf_link_hash_entry **sym_hashes;
|
|
|
|
|
bfd_vma *local_got_offsets;
|
|
|
|
|
Elf_Internal_Rela *rel;
|
|
|
|
|
Elf_Internal_Rela *relend;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
|
|
|
|
|
sym_hashes = elf_sym_hashes (input_bfd);
|
|
|
|
|
local_got_offsets = elf_local_got_offsets (input_bfd);
|
|
|
|
|
|
|
|
|
|
rel = relocs;
|
|
|
|
|
relend = relocs + input_section->reloc_count;
|
|
|
|
|
for (; rel < relend; rel++)
|
|
|
|
|
{
|
|
|
|
|
int r_type;
|
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
unsigned long r_symndx;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
Elf_Internal_Sym *sym;
|
|
|
|
|
asection *sec;
|
2001-06-23 10:03:53 +00:00
|
|
|
|
bfd_vma off;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_vma relocation;
|
2001-06-23 11:01:44 +00:00
|
|
|
|
boolean unresolved_reloc;
|
2002-05-09 06:34:43 +00:00
|
|
|
|
boolean overflow;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_reloc_status_type r;
|
2000-06-07 03:43:33 +00:00
|
|
|
|
unsigned int indx;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
r_type = ELF32_R_TYPE (rel->r_info);
|
2000-06-07 14:23:51 +00:00
|
|
|
|
if (r_type == (int) R_386_GNU_VTINHERIT
|
|
|
|
|
|| r_type == (int) R_386_GNU_VTENTRY)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
continue;
|
2000-06-07 14:23:51 +00:00
|
|
|
|
|
2000-06-07 03:43:33 +00:00
|
|
|
|
if ((indx = (unsigned) r_type) >= R_386_standard
|
2000-06-07 14:23:51 +00:00
|
|
|
|
&& ((indx = (unsigned) r_type - R_386_ext_offset) - R_386_standard
|
|
|
|
|
>= R_386_ext - R_386_standard))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2000-06-07 03:43:33 +00:00
|
|
|
|
howto = elf_howto_table + indx;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
r_symndx = ELF32_R_SYM (rel->r_info);
|
|
|
|
|
|
|
|
|
|
if (info->relocateable)
|
|
|
|
|
{
|
2002-05-09 06:34:43 +00:00
|
|
|
|
bfd_vma val;
|
|
|
|
|
bfd_vma addend;
|
|
|
|
|
bfd_byte *where;
|
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
/* This is a relocatable link. We don't have to change
|
1999-05-03 07:29:11 +00:00
|
|
|
|
anything, unless the reloc is against a section symbol,
|
|
|
|
|
in which case we have to adjust according to where the
|
|
|
|
|
section symbol winds up in the output section. */
|
2002-05-09 06:34:43 +00:00
|
|
|
|
if (r_symndx >= symtab_hdr->sh_info)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
sym = local_syms + r_symndx;
|
|
|
|
|
if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
sec = local_sections[r_symndx];
|
|
|
|
|
val = sec->output_offset;
|
|
|
|
|
if (val == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
where = contents + rel->r_offset;
|
|
|
|
|
switch (howto->size)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2002-05-09 06:34:43 +00:00
|
|
|
|
case 0:
|
|
|
|
|
addend = bfd_get_8 (input_bfd, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend = (addend ^ 0x80) - 0x80;
|
|
|
|
|
val += addend;
|
|
|
|
|
bfd_put_8 (input_bfd, val, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
val += 0x80;
|
|
|
|
|
if (val > 0xff)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2002-05-09 06:34:43 +00:00
|
|
|
|
h = NULL;
|
|
|
|
|
r = bfd_reloc_overflow;
|
|
|
|
|
goto overflow_error;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
addend = bfd_get_16 (input_bfd, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend = (addend ^ 0x8000) - 0x8000;
|
|
|
|
|
val += addend;
|
|
|
|
|
bfd_put_16 (input_bfd, val, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
val += 0x8000;
|
|
|
|
|
if (output_bfd->arch_info->mach != bfd_mach_i386_i8086
|
|
|
|
|
&& val > 0xffff)
|
|
|
|
|
{
|
|
|
|
|
h = NULL;
|
|
|
|
|
r = bfd_reloc_overflow;
|
|
|
|
|
goto overflow_error;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
2002-05-09 06:34:43 +00:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
val += bfd_get_32 (input_bfd, where);
|
|
|
|
|
bfd_put_32 (input_bfd, val, where);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is a final link. */
|
|
|
|
|
h = NULL;
|
|
|
|
|
sym = NULL;
|
|
|
|
|
sec = NULL;
|
2001-06-23 11:01:44 +00:00
|
|
|
|
unresolved_reloc = false;
|
2002-05-09 06:34:43 +00:00
|
|
|
|
overflow = false;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (r_symndx < symtab_hdr->sh_info)
|
|
|
|
|
{
|
|
|
|
|
sym = local_syms + r_symndx;
|
|
|
|
|
sec = local_sections[r_symndx];
|
|
|
|
|
relocation = (sec->output_section->vma
|
|
|
|
|
+ sec->output_offset
|
|
|
|
|
+ sym->st_value);
|
2001-11-23 12:17:21 +00:00
|
|
|
|
if ((sec->flags & SEC_MERGE)
|
|
|
|
|
&& ELF_ST_TYPE (sym->st_info) == STT_SECTION)
|
|
|
|
|
{
|
|
|
|
|
asection *msec;
|
|
|
|
|
bfd_vma addend;
|
2002-05-09 06:34:43 +00:00
|
|
|
|
bfd_byte *where = contents + rel->r_offset;
|
2001-11-23 12:17:21 +00:00
|
|
|
|
|
2002-05-09 06:34:43 +00:00
|
|
|
|
switch (howto->size)
|
2001-11-23 12:17:21 +00:00
|
|
|
|
{
|
2002-05-09 06:34:43 +00:00
|
|
|
|
case 0:
|
|
|
|
|
addend = bfd_get_8 (input_bfd, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
{
|
|
|
|
|
addend = (addend ^ 0x80) - 0x80;
|
|
|
|
|
addend += 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
addend = bfd_get_16 (input_bfd, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
{
|
|
|
|
|
addend = (addend ^ 0x8000) - 0x8000;
|
|
|
|
|
addend += 2;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
addend = bfd_get_32 (input_bfd, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
{
|
|
|
|
|
addend = (addend ^ 0x80000000) - 0x80000000;
|
|
|
|
|
addend += 4;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
2001-11-23 12:17:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
msec = sec;
|
2002-05-09 06:34:43 +00:00
|
|
|
|
addend = _bfd_elf_rel_local_sym (output_bfd, sym, &msec, addend);
|
|
|
|
|
addend -= relocation;
|
2001-11-23 12:17:21 +00:00
|
|
|
|
addend += msec->output_section->vma + msec->output_offset;
|
2002-05-09 06:34:43 +00:00
|
|
|
|
|
|
|
|
|
switch (howto->size)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend -= 1;
|
|
|
|
|
bfd_put_8 (input_bfd, addend, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend += 0x80;
|
|
|
|
|
overflow = addend > 0xff;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend -= 2;
|
|
|
|
|
bfd_put_16 (input_bfd, addend, where);
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend += 0x8000;
|
|
|
|
|
if (output_bfd->arch_info->mach != bfd_mach_i386_i8086)
|
|
|
|
|
overflow = addend > 0xffff;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
if (howto->pc_relative)
|
|
|
|
|
addend -= 4;
|
|
|
|
|
bfd_put_32 (input_bfd, addend, where);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-11-23 12:17:21 +00:00
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
|
|
|
|
while (h->root.type == bfd_link_hash_indirect
|
|
|
|
|
|| h->root.type == bfd_link_hash_warning)
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
2001-06-23 10:03:53 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
relocation = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak)
|
|
|
|
|
{
|
|
|
|
|
sec = h->root.u.def.section;
|
2001-06-23 11:01:44 +00:00
|
|
|
|
if (sec->output_section == NULL)
|
|
|
|
|
/* Set a flag that will be cleared later if we find a
|
|
|
|
|
relocation value for this symbol. output_section
|
|
|
|
|
is typically NULL for symbols satisfied by a shared
|
|
|
|
|
library. */
|
|
|
|
|
unresolved_reloc = true;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
relocation = (h->root.u.def.value
|
|
|
|
|
+ sec->output_section->vma
|
|
|
|
|
+ sec->output_offset);
|
|
|
|
|
}
|
|
|
|
|
else if (h->root.type == bfd_link_hash_undefweak)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
;
|
2001-09-20 10:37:35 +00:00
|
|
|
|
else if (info->shared
|
|
|
|
|
&& (!info->symbolic || info->allow_shlib_undefined)
|
2000-05-23 14:05:50 +00:00
|
|
|
|
&& !info->no_undefined
|
|
|
|
|
&& ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! ((*info->callbacks->undefined_symbol)
|
|
|
|
|
(info, h->root.root.string, input_bfd,
|
2000-03-01 19:40:54 +00:00
|
|
|
|
input_section, rel->r_offset,
|
2000-05-23 14:05:50 +00:00
|
|
|
|
(!info->shared || info->no_undefined
|
|
|
|
|
|| ELF_ST_VISIBILITY (h->other)))))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (r_type)
|
|
|
|
|
{
|
|
|
|
|
case R_386_GOT32:
|
|
|
|
|
/* Relocation is to the entry for this symbol in the global
|
|
|
|
|
offset table. */
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (htab->sgot == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
if (h != NULL)
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
boolean dyn;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
off = h->got.offset;
|
2001-09-26 09:25:04 +00:00
|
|
|
|
dyn = htab->elf.dynamic_sections_created;
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|| (info->shared
|
2001-06-05 05:51:55 +00:00
|
|
|
|
&& (info->symbolic
|
|
|
|
|
|| h->dynindx == -1
|
|
|
|
|
|| (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)))
|
|
|
|
|
{
|
|
|
|
|
/* This is actually a static link, or it is a
|
|
|
|
|
-Bsymbolic link and the symbol is defined
|
|
|
|
|
locally, or the symbol was forced to be local
|
|
|
|
|
because of a version file. We must initialize
|
|
|
|
|
this entry in the global offset table. Since the
|
|
|
|
|
offset must always be a multiple of 4, we use the
|
|
|
|
|
least significant bit to record whether we have
|
|
|
|
|
initialized it already.
|
|
|
|
|
|
|
|
|
|
When doing a dynamic link, we create a .rel.got
|
|
|
|
|
relocation entry to initialize the value. This
|
|
|
|
|
is done in the finish_dynamic_symbol routine. */
|
|
|
|
|
if ((off & 1) != 0)
|
|
|
|
|
off &= ~1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd_put_32 (output_bfd, relocation,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->sgot->contents + off);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
h->got.offset |= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-06-23 15:02:43 +00:00
|
|
|
|
else
|
|
|
|
|
unresolved_reloc = false;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (local_got_offsets == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
off = local_got_offsets[r_symndx];
|
|
|
|
|
|
|
|
|
|
/* The offset must always be a multiple of 4. We use
|
2001-06-23 11:01:44 +00:00
|
|
|
|
the least significant bit to record whether we have
|
|
|
|
|
already generated the necessary reloc. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if ((off & 1) != 0)
|
|
|
|
|
off &= ~1;
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
bfd_put_32 (output_bfd, relocation,
|
|
|
|
|
htab->sgot->contents + off);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
if (info->shared)
|
|
|
|
|
{
|
|
|
|
|
asection *srelgot;
|
|
|
|
|
Elf_Internal_Rel outrel;
|
2001-09-27 16:18:42 +00:00
|
|
|
|
Elf32_External_Rel *loc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
srelgot = htab->srelgot;
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (srelgot == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
outrel.r_offset = (htab->sgot->output_section->vma
|
|
|
|
|
+ htab->sgot->output_offset
|
1999-05-03 07:29:11 +00:00
|
|
|
|
+ off);
|
|
|
|
|
outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
|
2001-09-27 16:18:42 +00:00
|
|
|
|
loc = (Elf32_External_Rel *) srelgot->contents;
|
|
|
|
|
loc += srelgot->reloc_count++;
|
|
|
|
|
bfd_elf32_swap_reloc_out (output_bfd, &outrel, loc);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local_got_offsets[r_symndx] |= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (off >= (bfd_vma) -2)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
relocation = htab->sgot->output_offset + off;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_GOTOFF:
|
|
|
|
|
/* Relocation is relative to the start of the global offset
|
|
|
|
|
table. */
|
|
|
|
|
|
|
|
|
|
/* Note that sgot->output_offset is not involved in this
|
|
|
|
|
calculation. We always want the start of .got. If we
|
|
|
|
|
defined _GLOBAL_OFFSET_TABLE in a different way, as is
|
|
|
|
|
permitted by the ABI, we might have to change this
|
|
|
|
|
calculation. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
relocation -= htab->sgot->output_section->vma;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_GOTPC:
|
|
|
|
|
/* Use global offset table as symbol value. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
relocation = htab->sgot->output_section->vma;
|
2001-06-23 11:01:44 +00:00
|
|
|
|
unresolved_reloc = false;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_PLT32:
|
|
|
|
|
/* Relocation is to the entry for this symbol in the
|
|
|
|
|
procedure linkage table. */
|
|
|
|
|
|
2000-04-27 00:31:17 +00:00
|
|
|
|
/* Resolve a PLT32 reloc against a local symbol directly,
|
2001-06-23 11:01:44 +00:00
|
|
|
|
without using the procedure linkage table. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
if (h == NULL)
|
|
|
|
|
break;
|
|
|
|
|
|
2000-04-27 00:31:17 +00:00
|
|
|
|
if (h->plt.offset == (bfd_vma) -1
|
2001-06-05 05:51:55 +00:00
|
|
|
|
|| htab->splt == NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
/* We didn't make a PLT entry for this symbol. This
|
2001-06-23 11:01:44 +00:00
|
|
|
|
happens when statically linking PIC code, or when
|
|
|
|
|
using -Bsymbolic. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
relocation = (htab->splt->output_section->vma
|
|
|
|
|
+ htab->splt->output_offset
|
1999-05-03 07:29:11 +00:00
|
|
|
|
+ h->plt.offset);
|
2001-06-23 11:01:44 +00:00
|
|
|
|
unresolved_reloc = false;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_386_32:
|
|
|
|
|
case R_386_PC32:
|
2001-11-10 00:23:35 +00:00
|
|
|
|
/* r_symndx will be zero only for relocs against symbols
|
|
|
|
|
from removed linkonce sections, or sections discarded by
|
|
|
|
|
a linker script. */
|
|
|
|
|
if (r_symndx == 0
|
|
|
|
|
|| (input_section->flags & SEC_ALLOC) == 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2001-06-23 05:54:15 +00:00
|
|
|
|
if ((info->shared
|
|
|
|
|
&& (r_type != R_386_PC32
|
|
|
|
|
|| (h != NULL
|
|
|
|
|
&& h->dynindx != -1
|
|
|
|
|
&& (! info->symbolic
|
|
|
|
|
|| (h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_REGULAR) == 0))))
|
|
|
|
|
|| (!info->shared
|
|
|
|
|
&& h != NULL
|
|
|
|
|
&& h->dynindx != -1
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
|
2001-09-08 05:47:01 +00:00
|
|
|
|
&& (((h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_DYNAMIC) != 0
|
|
|
|
|
&& (h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_REGULAR) == 0)
|
2001-06-25 08:16:44 +00:00
|
|
|
|
|| h->root.type == bfd_link_hash_undefweak
|
|
|
|
|
|| h->root.type == bfd_link_hash_undefined)))
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Rel outrel;
|
|
|
|
|
boolean skip, relocate;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
asection *sreloc;
|
|
|
|
|
Elf32_External_Rel *loc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* When generating a shared object, these relocations
|
|
|
|
|
are copied into the output file to be resolved at run
|
|
|
|
|
time. */
|
|
|
|
|
|
|
|
|
|
skip = false;
|
2002-02-19 12:40:32 +00:00
|
|
|
|
relocate = false;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-12-07 11:12:18 +00:00
|
|
|
|
outrel.r_offset =
|
|
|
|
|
_bfd_elf_section_offset (output_bfd, info, input_section,
|
|
|
|
|
rel->r_offset);
|
|
|
|
|
if (outrel.r_offset == (bfd_vma) -1)
|
|
|
|
|
skip = true;
|
2002-02-19 12:40:32 +00:00
|
|
|
|
else if (outrel.r_offset == (bfd_vma) -2)
|
|
|
|
|
skip = true, relocate = true;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
outrel.r_offset += (input_section->output_section->vma
|
|
|
|
|
+ input_section->output_offset);
|
|
|
|
|
|
|
|
|
|
if (skip)
|
2002-02-19 12:40:32 +00:00
|
|
|
|
memset (&outrel, 0, sizeof outrel);
|
2001-06-27 01:46:17 +00:00
|
|
|
|
else if (h != NULL
|
|
|
|
|
&& h->dynindx != -1
|
|
|
|
|
&& (r_type == R_386_PC32
|
|
|
|
|
|| !info->shared
|
|
|
|
|
|| !info->symbolic
|
|
|
|
|
|| (h->elf_link_hash_flags
|
|
|
|
|
& ELF_LINK_HASH_DEF_REGULAR) == 0))
|
2002-02-19 12:40:32 +00:00
|
|
|
|
outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2001-06-27 01:46:17 +00:00
|
|
|
|
/* This symbol is local, or marked to become local. */
|
|
|
|
|
relocate = true;
|
|
|
|
|
outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 04:34:50 +00:00
|
|
|
|
sreloc = elf_section_data (input_section)->sreloc;
|
|
|
|
|
if (sreloc == NULL)
|
|
|
|
|
abort ();
|
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
loc = (Elf32_External_Rel *) sreloc->contents;
|
|
|
|
|
loc += sreloc->reloc_count++;
|
2001-09-25 04:34:50 +00:00
|
|
|
|
bfd_elf32_swap_reloc_out (output_bfd, &outrel, loc);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* If this reloc is against an external symbol, we do
|
|
|
|
|
not want to fiddle with the addend. Otherwise, we
|
|
|
|
|
need to include the symbol value so that it becomes
|
|
|
|
|
an addend for the dynamic reloc. */
|
|
|
|
|
if (! relocate)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-23 15:02:43 +00:00
|
|
|
|
/* FIXME: Why do we allow debugging sections to escape this error?
|
|
|
|
|
More importantly, why do we not emit dynamic relocs for
|
|
|
|
|
R_386_32 above in debugging sections (which are ! SEC_ALLOC)?
|
|
|
|
|
If we had emitted the dynamic reloc, we could remove the
|
|
|
|
|
fudge here. */
|
|
|
|
|
if (unresolved_reloc
|
|
|
|
|
&& !(info->shared
|
|
|
|
|
&& (input_section->flags & SEC_DEBUGGING) != 0
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0))
|
2001-06-23 11:01:44 +00:00
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%s(%s+0x%lx): unresolvable relocation against symbol `%s'"),
|
2001-09-20 23:30:37 +00:00
|
|
|
|
bfd_archive_filename (input_bfd),
|
2001-06-23 11:01:44 +00:00
|
|
|
|
bfd_get_section_name (input_bfd, input_section),
|
|
|
|
|
(long) rel->r_offset,
|
|
|
|
|
h->root.root.string);
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
r = _bfd_final_link_relocate (howto, input_bfd, input_section,
|
|
|
|
|
contents, rel->r_offset,
|
|
|
|
|
relocation, (bfd_vma) 0);
|
2002-05-09 06:34:43 +00:00
|
|
|
|
if (overflow && r == bfd_reloc_ok)
|
|
|
|
|
r = bfd_reloc_overflow;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2002-05-09 06:34:43 +00:00
|
|
|
|
overflow_error:
|
2001-10-15 12:58:48 +00:00
|
|
|
|
if (r != bfd_reloc_ok)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-10-15 12:58:48 +00:00
|
|
|
|
const char *name;
|
2001-06-23 10:03:53 +00:00
|
|
|
|
|
2001-10-15 12:58:48 +00:00
|
|
|
|
if (h != NULL)
|
|
|
|
|
name = h->root.root.string;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
name = bfd_elf_string_from_elf_section (input_bfd,
|
|
|
|
|
symtab_hdr->sh_link,
|
|
|
|
|
sym->st_name);
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
if (*name == '\0')
|
|
|
|
|
name = bfd_section_name (input_bfd, sec);
|
|
|
|
|
}
|
2001-06-23 10:03:53 +00:00
|
|
|
|
|
2001-10-15 12:58:48 +00:00
|
|
|
|
if (r == bfd_reloc_overflow)
|
|
|
|
|
{
|
|
|
|
|
if (! ((*info->callbacks->reloc_overflow)
|
|
|
|
|
(info, name, howto->name, (bfd_vma) 0,
|
|
|
|
|
input_bfd, input_section, rel->r_offset)))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%s(%s+0x%lx): reloc against `%s': error %d"),
|
|
|
|
|
bfd_archive_filename (input_bfd),
|
|
|
|
|
bfd_get_section_name (input_bfd, input_section),
|
|
|
|
|
(long) rel->r_offset, name, (int) r);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finish up dynamic symbol handling. We set the contents of various
|
|
|
|
|
dynamic sections here. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_finish_dynamic_symbol (output_bfd, info, h, sym)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
Elf_Internal_Sym *sym;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
if (h->plt.offset != (bfd_vma) -1)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma plt_index;
|
|
|
|
|
bfd_vma got_offset;
|
|
|
|
|
Elf_Internal_Rel rel;
|
2001-09-27 16:18:42 +00:00
|
|
|
|
Elf32_External_Rel *loc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* This symbol has an entry in the procedure linkage table. Set
|
|
|
|
|
it up. */
|
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (h->dynindx == -1
|
|
|
|
|
|| htab->splt == NULL
|
|
|
|
|
|| htab->sgotplt == NULL
|
|
|
|
|
|| htab->srelplt == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Get the index in the procedure linkage table which
|
|
|
|
|
corresponds to this symbol. This is the index of this symbol
|
|
|
|
|
in all the symbols for which we are making plt entries. The
|
|
|
|
|
first entry in the procedure linkage table is reserved. */
|
|
|
|
|
plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
|
|
|
|
|
|
|
|
|
|
/* Get the offset into the .got table of the entry that
|
|
|
|
|
corresponds to this function. Each .got entry is 4 bytes.
|
|
|
|
|
The first three are reserved. */
|
|
|
|
|
got_offset = (plt_index + 3) * 4;
|
|
|
|
|
|
|
|
|
|
/* Fill in the entry in the procedure linkage table. */
|
|
|
|
|
if (! info->shared)
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
memcpy (htab->splt->contents + h->plt.offset, elf_i386_plt_entry,
|
1999-05-03 07:29:11 +00:00
|
|
|
|
PLT_ENTRY_SIZE);
|
|
|
|
|
bfd_put_32 (output_bfd,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
(htab->sgotplt->output_section->vma
|
|
|
|
|
+ htab->sgotplt->output_offset
|
1999-05-03 07:29:11 +00:00
|
|
|
|
+ got_offset),
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->splt->contents + h->plt.offset + 2);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
memcpy (htab->splt->contents + h->plt.offset, elf_i386_pic_plt_entry,
|
1999-05-03 07:29:11 +00:00
|
|
|
|
PLT_ENTRY_SIZE);
|
|
|
|
|
bfd_put_32 (output_bfd, got_offset,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->splt->contents + h->plt.offset + 2);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_put_32 (output_bfd, plt_index * sizeof (Elf32_External_Rel),
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->splt->contents + h->plt.offset + 7);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_put_32 (output_bfd, - (h->plt.offset + PLT_ENTRY_SIZE),
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->splt->contents + h->plt.offset + 12);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Fill in the entry in the global offset table. */
|
|
|
|
|
bfd_put_32 (output_bfd,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
(htab->splt->output_section->vma
|
|
|
|
|
+ htab->splt->output_offset
|
1999-05-03 07:29:11 +00:00
|
|
|
|
+ h->plt.offset
|
|
|
|
|
+ 6),
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab->sgotplt->contents + got_offset);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* Fill in the entry in the .rel.plt section. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
rel.r_offset = (htab->sgotplt->output_section->vma
|
|
|
|
|
+ htab->sgotplt->output_offset
|
1999-05-03 07:29:11 +00:00
|
|
|
|
+ got_offset);
|
|
|
|
|
rel.r_info = ELF32_R_INFO (h->dynindx, R_386_JUMP_SLOT);
|
2001-09-27 16:18:42 +00:00
|
|
|
|
loc = (Elf32_External_Rel *) htab->srelplt->contents + plt_index;
|
|
|
|
|
bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Mark the symbol as undefined, rather than as defined in
|
2001-09-29 06:21:59 +00:00
|
|
|
|
the .plt section. Leave the value alone. This is a clue
|
|
|
|
|
for the dynamic linker, to make function pointer
|
|
|
|
|
comparisons work between an application and shared
|
|
|
|
|
library. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
sym->st_shndx = SHN_UNDEF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (h->got.offset != (bfd_vma) -1)
|
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Rel rel;
|
2001-09-27 16:18:42 +00:00
|
|
|
|
Elf32_External_Rel *loc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* This symbol has an entry in the global offset table. Set it
|
|
|
|
|
up. */
|
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (htab->sgot == NULL || htab->srelgot == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
rel.r_offset = (htab->sgot->output_section->vma
|
|
|
|
|
+ htab->sgot->output_offset
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 09:57:26 +00:00
|
|
|
|
+ (h->got.offset & ~(bfd_vma) 1));
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2000-04-27 00:31:17 +00:00
|
|
|
|
/* If this is a static link, or it is a -Bsymbolic link and the
|
|
|
|
|
symbol is defined locally or was forced to be local because
|
|
|
|
|
of a version file, we just want to emit a RELATIVE reloc.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
The entry in the global offset table will already have been
|
|
|
|
|
initialized in the relocate_section function. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (info->shared
|
|
|
|
|
&& (info->symbolic
|
|
|
|
|
|| h->dynindx == -1
|
|
|
|
|
|| (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL))
|
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))
|
2000-04-27 00:31:17 +00:00
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
BFD_ASSERT((h->got.offset & 1) != 0);
|
2000-04-27 00:31:17 +00:00
|
|
|
|
rel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2000-04-27 00:31:17 +00:00
|
|
|
|
BFD_ASSERT((h->got.offset & 1) == 0);
|
2001-06-05 05:51:55 +00:00
|
|
|
|
bfd_put_32 (output_bfd, (bfd_vma) 0,
|
|
|
|
|
htab->sgot->contents + h->got.offset);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
rel.r_info = ELF32_R_INFO (h->dynindx, R_386_GLOB_DAT);
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-27 16:18:42 +00:00
|
|
|
|
loc = (Elf32_External_Rel *) htab->srelgot->contents;
|
|
|
|
|
loc += htab->srelgot->reloc_count++;
|
|
|
|
|
bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-01 11:17:07 +00:00
|
|
|
|
if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_COPY) != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Rel rel;
|
2001-09-27 16:18:42 +00:00
|
|
|
|
Elf32_External_Rel *loc;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
/* This symbol needs a copy reloc. Set it up. */
|
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (h->dynindx == -1
|
|
|
|
|
|| (h->root.type != bfd_link_hash_defined
|
|
|
|
|
&& h->root.type != bfd_link_hash_defweak)
|
|
|
|
|
|| htab->srelbss == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
rel.r_offset = (h->root.u.def.value
|
|
|
|
|
+ h->root.u.def.section->output_section->vma
|
|
|
|
|
+ h->root.u.def.section->output_offset);
|
|
|
|
|
rel.r_info = ELF32_R_INFO (h->dynindx, R_386_COPY);
|
2001-09-27 16:18:42 +00:00
|
|
|
|
loc = (Elf32_External_Rel *) htab->srelbss->contents;
|
|
|
|
|
loc += htab->srelbss->reloc_count++;
|
|
|
|
|
bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
|
|
|
|
|
if (strcmp (h->root.root.string, "_DYNAMIC") == 0
|
|
|
|
|
|| strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
|
|
|
|
|
sym->st_shndx = SHN_ABS;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-25 10:11:46 +00:00
|
|
|
|
/* Used to decide how to sort relocs in an optimal manner for the
|
|
|
|
|
dynamic linker, before writing them out. */
|
|
|
|
|
|
|
|
|
|
static enum elf_reloc_type_class
|
|
|
|
|
elf_i386_reloc_type_class (rela)
|
|
|
|
|
const Elf_Internal_Rela *rela;
|
|
|
|
|
{
|
|
|
|
|
switch ((int) ELF32_R_TYPE (rela->r_info))
|
|
|
|
|
{
|
|
|
|
|
case R_386_RELATIVE:
|
|
|
|
|
return reloc_class_relative;
|
|
|
|
|
case R_386_JUMP_SLOT:
|
|
|
|
|
return reloc_class_plt;
|
|
|
|
|
case R_386_COPY:
|
|
|
|
|
return reloc_class_copy;
|
|
|
|
|
default:
|
|
|
|
|
return reloc_class_normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
/* Finish up the dynamic sections. */
|
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
elf_i386_finish_dynamic_sections (output_bfd, info)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
struct elf_i386_link_hash_table *htab;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd *dynobj;
|
|
|
|
|
asection *sdyn;
|
|
|
|
|
|
2001-06-05 05:51:55 +00:00
|
|
|
|
htab = elf_i386_hash_table (info);
|
2001-09-26 09:25:04 +00:00
|
|
|
|
dynobj = htab->elf.dynobj;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
|
|
|
|
|
|
2001-09-26 09:25:04 +00:00
|
|
|
|
if (htab->elf.dynamic_sections_created)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
Elf32_External_Dyn *dyncon, *dynconend;
|
|
|
|
|
|
2001-06-23 10:03:53 +00:00
|
|
|
|
if (sdyn == NULL || htab->sgot == NULL)
|
|
|
|
|
abort ();
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
dyncon = (Elf32_External_Dyn *) sdyn->contents;
|
|
|
|
|
dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
|
|
|
|
|
for (; dyncon < dynconend; dyncon++)
|
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Dyn dyn;
|
2001-09-29 06:21:59 +00:00
|
|
|
|
asection *s;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
|
|
|
|
|
|
|
|
|
|
switch (dyn.d_tag)
|
|
|
|
|
{
|
|
|
|
|
default:
|
2001-09-27 16:18:42 +00:00
|
|
|
|
continue;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
|
case DT_PLTGOT:
|
2001-06-05 05:51:55 +00:00
|
|
|
|
dyn.d_un.d_ptr = htab->sgot->output_section->vma;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
case DT_JMPREL:
|
2001-06-05 05:51:55 +00:00
|
|
|
|
dyn.d_un.d_ptr = htab->srelplt->output_section->vma;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_PLTRELSZ:
|
2001-09-29 06:21:59 +00:00
|
|
|
|
s = htab->srelplt->output_section;
|
|
|
|
|
if (s->_cooked_size != 0)
|
|
|
|
|
dyn.d_un.d_val = s->_cooked_size;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
2001-09-29 06:21:59 +00:00
|
|
|
|
dyn.d_un.d_val = s->_raw_size;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_RELSZ:
|
|
|
|
|
/* My reading of the SVR4 ABI indicates that the
|
|
|
|
|
procedure linkage table relocs (DT_JMPREL) should be
|
|
|
|
|
included in the overall relocs (DT_REL). This is
|
|
|
|
|
what Solaris does. However, UnixWare can not handle
|
|
|
|
|
that case. Therefore, we override the DT_RELSZ entry
|
|
|
|
|
here to make it not include the JMPREL relocs. Since
|
|
|
|
|
the linker script arranges for .rel.plt to follow all
|
|
|
|
|
other relocation sections, we don't have to worry
|
|
|
|
|
about changing the DT_REL entry. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (htab->srelplt != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-09-29 06:21:59 +00:00
|
|
|
|
s = htab->srelplt->output_section;
|
|
|
|
|
if (s->_cooked_size != 0)
|
|
|
|
|
dyn.d_un.d_val -= s->_cooked_size;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
2001-09-29 06:21:59 +00:00
|
|
|
|
dyn.d_un.d_val -= s->_raw_size;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-09-27 16:18:42 +00:00
|
|
|
|
|
|
|
|
|
bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fill in the first entry in the procedure linkage table. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
if (htab->splt && htab->splt->_raw_size > 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
|
|
|
|
if (info->shared)
|
2001-06-05 05:51:55 +00:00
|
|
|
|
memcpy (htab->splt->contents,
|
|
|
|
|
elf_i386_pic_plt0_entry, PLT_ENTRY_SIZE);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2001-06-05 05:51:55 +00:00
|
|
|
|
memcpy (htab->splt->contents,
|
|
|
|
|
elf_i386_plt0_entry, PLT_ENTRY_SIZE);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_put_32 (output_bfd,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
(htab->sgotplt->output_section->vma
|
|
|
|
|
+ htab->sgotplt->output_offset
|
|
|
|
|
+ 4),
|
|
|
|
|
htab->splt->contents + 2);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
bfd_put_32 (output_bfd,
|
2001-06-05 05:51:55 +00:00
|
|
|
|
(htab->sgotplt->output_section->vma
|
|
|
|
|
+ htab->sgotplt->output_offset
|
|
|
|
|
+ 8),
|
|
|
|
|
htab->splt->contents + 8);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* UnixWare sets the entsize of .plt to 4, although that doesn't
|
|
|
|
|
really seem like the right value. */
|
2001-06-05 05:51:55 +00:00
|
|
|
|
elf_section_data (htab->splt->output_section)
|
|
|
|
|
->this_hdr.sh_entsize = 4;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-23 05:54:15 +00:00
|
|
|
|
if (htab->sgotplt)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
{
|
2001-06-23 05:54:15 +00:00
|
|
|
|
/* Fill in the first three entries in the global offset table. */
|
|
|
|
|
if (htab->sgotplt->_raw_size > 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_put_32 (output_bfd,
|
|
|
|
|
(sdyn == NULL ? (bfd_vma) 0
|
|
|
|
|
: sdyn->output_section->vma + sdyn->output_offset),
|
|
|
|
|
htab->sgotplt->contents);
|
|
|
|
|
bfd_put_32 (output_bfd, (bfd_vma) 0, htab->sgotplt->contents + 4);
|
|
|
|
|
bfd_put_32 (output_bfd, (bfd_vma) 0, htab->sgotplt->contents + 8);
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
2001-06-23 05:54:15 +00:00
|
|
|
|
elf_section_data (htab->sgotplt->output_section)->this_hdr.sh_entsize = 4;
|
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define TARGET_LITTLE_SYM bfd_elf32_i386_vec
|
|
|
|
|
#define TARGET_LITTLE_NAME "elf32-i386"
|
|
|
|
|
#define ELF_ARCH bfd_arch_i386
|
|
|
|
|
#define ELF_MACHINE_CODE EM_386
|
|
|
|
|
#define ELF_MAXPAGESIZE 0x1000
|
|
|
|
|
|
|
|
|
|
#define elf_backend_can_gc_sections 1
|
2001-09-29 06:21:59 +00:00
|
|
|
|
#define elf_backend_can_refcount 1
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#define elf_backend_want_got_plt 1
|
|
|
|
|
#define elf_backend_plt_readonly 1
|
|
|
|
|
#define elf_backend_want_plt_sym 0
|
|
|
|
|
#define elf_backend_got_header_size 12
|
|
|
|
|
#define elf_backend_plt_header_size PLT_ENTRY_SIZE
|
|
|
|
|
|
2000-04-27 00:31:17 +00:00
|
|
|
|
#define elf_info_to_howto elf_i386_info_to_howto
|
|
|
|
|
#define elf_info_to_howto_rel elf_i386_info_to_howto_rel
|
|
|
|
|
|
|
|
|
|
#define bfd_elf32_bfd_is_local_label_name elf_i386_is_local_label_name
|
|
|
|
|
#define bfd_elf32_bfd_link_hash_table_create elf_i386_link_hash_table_create
|
|
|
|
|
#define bfd_elf32_bfd_reloc_type_lookup elf_i386_reloc_type_lookup
|
|
|
|
|
|
|
|
|
|
#define elf_backend_adjust_dynamic_symbol elf_i386_adjust_dynamic_symbol
|
|
|
|
|
#define elf_backend_check_relocs elf_i386_check_relocs
|
2001-09-27 16:18:42 +00:00
|
|
|
|
#define elf_backend_copy_indirect_symbol elf_i386_copy_indirect_symbol
|
2001-06-05 05:51:55 +00:00
|
|
|
|
#define elf_backend_create_dynamic_sections elf_i386_create_dynamic_sections
|
2001-09-27 16:18:42 +00:00
|
|
|
|
#define elf_backend_fake_sections elf_i386_fake_sections
|
2000-04-27 00:31:17 +00:00
|
|
|
|
#define elf_backend_finish_dynamic_sections elf_i386_finish_dynamic_sections
|
|
|
|
|
#define elf_backend_finish_dynamic_symbol elf_i386_finish_dynamic_symbol
|
|
|
|
|
#define elf_backend_gc_mark_hook elf_i386_gc_mark_hook
|
|
|
|
|
#define elf_backend_gc_sweep_hook elf_i386_gc_sweep_hook
|
2001-08-27 17:36:32 +00:00
|
|
|
|
#define elf_backend_grok_prstatus elf_i386_grok_prstatus
|
|
|
|
|
#define elf_backend_grok_psinfo elf_i386_grok_psinfo
|
2001-08-23 15:14:18 +00:00
|
|
|
|
#define elf_backend_reloc_type_class elf_i386_reloc_type_class
|
2001-09-27 16:18:42 +00:00
|
|
|
|
#define elf_backend_relocate_section elf_i386_relocate_section
|
|
|
|
|
#define elf_backend_size_dynamic_sections elf_i386_size_dynamic_sections
|
2000-04-27 00:31:17 +00:00
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
|
#include "elf32-target.h"
|