1993-07-19 19:12:59 +00:00
|
|
|
/* ELF executable support for BFD.
|
|
|
|
Copyright 1993 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
1993-12-28 17:45:14 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
SECTION
|
|
|
|
ELF backends
|
|
|
|
|
|
|
|
BFD support for ELF formats is being worked on.
|
|
|
|
Currently, the best supported back ends are for sparc and i386
|
|
|
|
(running svr4 or Solaris 2).
|
|
|
|
|
|
|
|
Documentation of the internals of the support code still needs
|
|
|
|
to be written. The code is changing quickly enough that we
|
|
|
|
haven't bothered yet.
|
|
|
|
*/
|
|
|
|
|
1993-07-19 19:12:59 +00:00
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
#define ARCH_SIZE 0
|
|
|
|
#include "libelf.h"
|
|
|
|
|
|
|
|
/* Standard ELF hash function. Do not change this function; you will
|
|
|
|
cause invalid hash tables to be generated. (Well, you would if this
|
|
|
|
were being used yet.) */
|
|
|
|
unsigned long
|
|
|
|
DEFUN (bfd_elf_hash, (name),
|
|
|
|
CONST unsigned char *name)
|
|
|
|
{
|
|
|
|
unsigned long h = 0;
|
|
|
|
unsigned long g;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
while ((ch = *name++) != '\0')
|
|
|
|
{
|
|
|
|
h = (h << 4) + ch;
|
|
|
|
if ((g = (h & 0xf0000000)) != 0)
|
|
|
|
{
|
|
|
|
h ^= g >> 24;
|
|
|
|
h &= ~g;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a specified number of bytes at a specified offset in an ELF
|
|
|
|
file, into a newly allocated buffer, and return a pointer to the
|
|
|
|
buffer. */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
DEFUN (elf_read, (abfd, offset, size),
|
|
|
|
bfd * abfd AND
|
|
|
|
long offset AND
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
if ((buf = bfd_alloc (abfd, size)) == NULL)
|
|
|
|
{
|
|
|
|
bfd_error = no_memory;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (bfd_seek (abfd, offset, SEEK_SET) == -1)
|
|
|
|
{
|
|
|
|
bfd_error = system_call_error;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (bfd_read ((PTR) buf, size, 1, abfd) != size)
|
|
|
|
{
|
|
|
|
bfd_error = system_call_error;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean
|
|
|
|
DEFUN (elf_mkobject, (abfd), bfd * abfd)
|
|
|
|
{
|
|
|
|
/* this just does initialization */
|
|
|
|
/* coff_mkobject zalloc's space for tdata.coff_obj_data ... */
|
|
|
|
elf_tdata (abfd) = (struct elf_obj_tdata *)
|
|
|
|
bfd_zalloc (abfd, sizeof (struct elf_obj_tdata));
|
|
|
|
if (elf_tdata (abfd) == 0)
|
|
|
|
{
|
|
|
|
bfd_error = no_memory;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/* since everything is done at close time, do we need any
|
|
|
|
initialization? */
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
DEFUN (elf_get_str_section, (abfd, shindex),
|
|
|
|
bfd * abfd AND
|
|
|
|
unsigned int shindex)
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr **i_shdrp;
|
|
|
|
char *shstrtab = NULL;
|
|
|
|
unsigned int offset;
|
|
|
|
unsigned int shstrtabsize;
|
|
|
|
|
|
|
|
i_shdrp = elf_elfsections (abfd);
|
|
|
|
if (i_shdrp == 0 || i_shdrp[shindex] == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
shstrtab = i_shdrp[shindex]->rawdata;
|
|
|
|
if (shstrtab == NULL)
|
|
|
|
{
|
|
|
|
/* No cached one, attempt to read, and cache what we read. */
|
|
|
|
offset = i_shdrp[shindex]->sh_offset;
|
|
|
|
shstrtabsize = i_shdrp[shindex]->sh_size;
|
|
|
|
shstrtab = elf_read (abfd, offset, shstrtabsize);
|
|
|
|
i_shdrp[shindex]->rawdata = (void *) shstrtab;
|
|
|
|
}
|
|
|
|
return shstrtab;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
DEFUN (elf_string_from_elf_section, (abfd, shindex, strindex),
|
|
|
|
bfd * abfd AND
|
|
|
|
unsigned int shindex AND
|
|
|
|
unsigned int strindex)
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr *hdr;
|
|
|
|
|
|
|
|
if (strindex == 0)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
hdr = elf_elfsections (abfd)[shindex];
|
|
|
|
|
|
|
|
if (!hdr->rawdata
|
|
|
|
&& elf_get_str_section (abfd, shindex) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ((char *) hdr->rawdata) + strindex;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
INTERNAL_FUNCTION
|
|
|
|
bfd_elf_find_section
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Helper functions for GDB to locate the string tables.
|
|
|
|
Since BFD hides string tables from callers, GDB needs to use an
|
|
|
|
internal hook to find them. Sun's .stabstr, in particular,
|
|
|
|
isn't even pointed to by the .stab section, so ordinary
|
|
|
|
mechanisms wouldn't work to find it, even if we had some.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct elf_internal_shdr *
|
|
|
|
DEFUN (bfd_elf_find_section, (abfd, name),
|
|
|
|
bfd * abfd AND
|
|
|
|
char *name)
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr **i_shdrp;
|
|
|
|
char *shstrtab;
|
|
|
|
unsigned int max;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
i_shdrp = elf_elfsections (abfd);
|
|
|
|
if (i_shdrp != NULL)
|
|
|
|
{
|
|
|
|
shstrtab = elf_get_str_section (abfd, elf_elfheader (abfd)->e_shstrndx);
|
|
|
|
if (shstrtab != NULL)
|
|
|
|
{
|
|
|
|
max = elf_elfheader (abfd)->e_shnum;
|
|
|
|
for (i = 1; i < max; i++)
|
|
|
|
if (!strcmp (&shstrtab[i_shdrp[i]->sh_name], name))
|
|
|
|
return i_shdrp[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *const bfd_elf_section_type_names[] = {
|
|
|
|
"SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
|
|
|
|
"SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
|
|
|
|
"SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ELF relocs are against symbols. If we are producing relocateable
|
|
|
|
output, and the reloc is against an external symbol, and nothing
|
|
|
|
has given us any additional addend, the resulting reloc will also
|
|
|
|
be against the same symbol. In such a case, we don't want to
|
|
|
|
change anything about the way the reloc is handled, since it will
|
|
|
|
all be done at final link time. Rather than put special case code
|
|
|
|
into bfd_perform_relocation, all the reloc types use this howto
|
|
|
|
function. It just short circuits the reloc if producing
|
|
|
|
relocateable output against an external symbol. */
|
|
|
|
|
|
|
|
bfd_reloc_status_type
|
|
|
|
bfd_elf_generic_reloc (abfd,
|
|
|
|
reloc_entry,
|
|
|
|
symbol,
|
|
|
|
data,
|
|
|
|
input_section,
|
Extensive changes to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files. Only existing efficient backend is a.out.
* seclet.c, seclet.h: Removed.
* hash.c, linker.c, genlink.h: New files.
* bfd-in.h: Removed bfd_error_vector. Declared hash table
structures and functions.
(JUMP_TABLE): Removed bfd_seclet_link, added
bfd_link_hash_table_create, bfd_link_add_symbols and
bfd_final_link.
* All backends: Changed accordingly.
* bfd-in2.h: Rebuilt.
* bfd.c (struct _bfd): Added link_next and archive_pass fields.
Removed ld_symbols field.
(bfd_nonrepresentable_section, bfd_undefined_symbol,
bfd_reloc_value_truncated, bfd_reloc_is_dangerous,
bfd_error_vector): Removed.
(bfd_default_error_trap, bfd_error_trap,
bfd_error_nonrepresentabltrap): Removed.
(bfd_get_relocated_section_contents): Pass link_info. Pass
link_order instead of seclet. Pass symbols.
(bfd_relax_section): Pass link_info.
(bfd_seclet_link): Removed.
(bfd_link_hash_table_create, bfd_link_add_symbols,
bfd_final_link): New macros.
* libbfd-in.h: If __GNUC__ is defined and alloca is not, define
alloca as __builtin_alloca. Declare internal linking functions.
* libbfd.h: Rebuilt.
* libbfd.c (bfd_seek): Comment out fseek assertion. It's worked
for months.
* reloc.c (reloc_howto_type): Added error_message argument to
special_function field. Changed all callers and all definitions.
(bfd_get_reloc_size): Make argument a const pointer.
(bfd_perform_relocation): Add error_message argument to hold
string set if return value if bfd_reloc_dangerous. Changed all
callers.
(_bfd_final_link_relocate, _bfd_relocate_contents): New functions.
* section.c (asection): Renamed seclets_head and seclets_tail to
link_order_head and link_order_tail.
* targets.c (bfd_target): Replaced seclet argument with link_info
and link_order and symbols arguments in
bfd_get_relocated_section_contents. Added symbols argument to
bfd_relax_section. Removed bfd_seclet_link. Added
bfd_link_hash_table_create, bfd_link_add_symbols and
bfd_final_link.
* libaout.h (struct aoutdata): Added external_syms,
external_sym_count, external_strings, sym_hashes fields.
(obj_aout_external_syms, obj_aout_external_sym_count,
obj_aout_external_strings, obj_aout_sym_hashes): New accessor
macros.
(WRITE_HEADERS): Only output symbols if outsymbols is not NULL.
* aoutx.h: Wrote new back end linker routines.
(translate_to_native_sym_flags): Return boolean value. Don't use
bfd_error_vector.
(NAME(aout,write_syms)): Return boolean value. Check return value
of translate_to_native_sym_flags and bfd_write.
* aout-target.h (final_link_callback): New function.
(MY_bfd_final_link): New function.
* aout-adobe.c (aout_adobe_write_object_contents): Check return
value of aout_32_write_syms.
* hp300hpux.c (MY(write_object_contents)): Likewise.
* i386lynx.c (WRITE_HEADERS): Likewise.
* libaout.h (WRITE_HEADERS): Likewise.
* bout.c: Changed functions to use link_info->callbacks rather
than bfd_error_vector, and link_orders rather than seclets.
* coff-alpha.c: Likewise.
* coff-h8300.c: Likewise.
* coff-h8500.c: Likewise.
* coff-sh.c: Likewise.
* coff-z8k.c: Likewise.
* elf32-hppa.c: Likewise.
* reloc16.c: Likewise.
* coff-alpha.c (alpha_ecoff_get_relocated_section_contents): Look
up _gp in the hash table rather than in outsymbols.
* coff-a29k.c (a29k_reloc): Pass errors back in new error_message
argument rather than printing them.
* coffcode.h (bfd_coff_reloc16_extra_cases): Take link_info and
link_order arguments rather than seclet. Changed all uses and
definitions.
(bfd_coff_reloc16_estimate): Pass link_info arguments. Changed
all uses and definitions.
* libcoff.h: Rebuilt.
* ecoff.c (ecoff_get_extr): If symbol is defined by linker, but
not by ECOFF, make it scAbs.
(ecoff_bfd_final_link): Renamed from ecoff_bfd_seclet_link and
rewritten.
* elf32-mips.c (mips_elf_final_link): Renamed from
mips_elf_seclet_link and rewritten.
* elf32-hppa.c (elf32_hppa_stub_description): Added link_info
field.
(new_stub, add_stub_by_name, hppa_elf_build_arg_reloc_stub,
hppa_elf_build_long_branch_stub, hppa_look_for_stubs_in_section):
Added link_info arguments. Changed all callers.
* elfcode.h (elf_slurp_symbol_table): Don't quit if outsymbols is
not NULL.
* oasys.c (oasys_write_sections): Return boolean value rather than
using bfd_error_vector.
(oasys_write_object_contents): Check return value of
oasys_write_sections.
* hosts/std-host.h: Don't declare qsort or strtol.
* Makefile.in: Rebuild dependencies.
(BFD_LIBS): Removed seclet.o. Added hash.o and linker.o.
(CFILES): Removed seclet.c. Added hash.c and linker.c.
(HFILES): Removed seclet.h. Added genlink.h.
1993-12-30 19:56:50 +00:00
|
|
|
output_bfd,
|
|
|
|
error_message)
|
1993-07-19 19:12:59 +00:00
|
|
|
bfd *abfd;
|
|
|
|
arelent *reloc_entry;
|
|
|
|
asymbol *symbol;
|
|
|
|
PTR data;
|
|
|
|
asection *input_section;
|
|
|
|
bfd *output_bfd;
|
Extensive changes to move the bulk of the linker into BFD so that
more efficient backend code can be written for specific object
files. Only existing efficient backend is a.out.
* seclet.c, seclet.h: Removed.
* hash.c, linker.c, genlink.h: New files.
* bfd-in.h: Removed bfd_error_vector. Declared hash table
structures and functions.
(JUMP_TABLE): Removed bfd_seclet_link, added
bfd_link_hash_table_create, bfd_link_add_symbols and
bfd_final_link.
* All backends: Changed accordingly.
* bfd-in2.h: Rebuilt.
* bfd.c (struct _bfd): Added link_next and archive_pass fields.
Removed ld_symbols field.
(bfd_nonrepresentable_section, bfd_undefined_symbol,
bfd_reloc_value_truncated, bfd_reloc_is_dangerous,
bfd_error_vector): Removed.
(bfd_default_error_trap, bfd_error_trap,
bfd_error_nonrepresentabltrap): Removed.
(bfd_get_relocated_section_contents): Pass link_info. Pass
link_order instead of seclet. Pass symbols.
(bfd_relax_section): Pass link_info.
(bfd_seclet_link): Removed.
(bfd_link_hash_table_create, bfd_link_add_symbols,
bfd_final_link): New macros.
* libbfd-in.h: If __GNUC__ is defined and alloca is not, define
alloca as __builtin_alloca. Declare internal linking functions.
* libbfd.h: Rebuilt.
* libbfd.c (bfd_seek): Comment out fseek assertion. It's worked
for months.
* reloc.c (reloc_howto_type): Added error_message argument to
special_function field. Changed all callers and all definitions.
(bfd_get_reloc_size): Make argument a const pointer.
(bfd_perform_relocation): Add error_message argument to hold
string set if return value if bfd_reloc_dangerous. Changed all
callers.
(_bfd_final_link_relocate, _bfd_relocate_contents): New functions.
* section.c (asection): Renamed seclets_head and seclets_tail to
link_order_head and link_order_tail.
* targets.c (bfd_target): Replaced seclet argument with link_info
and link_order and symbols arguments in
bfd_get_relocated_section_contents. Added symbols argument to
bfd_relax_section. Removed bfd_seclet_link. Added
bfd_link_hash_table_create, bfd_link_add_symbols and
bfd_final_link.
* libaout.h (struct aoutdata): Added external_syms,
external_sym_count, external_strings, sym_hashes fields.
(obj_aout_external_syms, obj_aout_external_sym_count,
obj_aout_external_strings, obj_aout_sym_hashes): New accessor
macros.
(WRITE_HEADERS): Only output symbols if outsymbols is not NULL.
* aoutx.h: Wrote new back end linker routines.
(translate_to_native_sym_flags): Return boolean value. Don't use
bfd_error_vector.
(NAME(aout,write_syms)): Return boolean value. Check return value
of translate_to_native_sym_flags and bfd_write.
* aout-target.h (final_link_callback): New function.
(MY_bfd_final_link): New function.
* aout-adobe.c (aout_adobe_write_object_contents): Check return
value of aout_32_write_syms.
* hp300hpux.c (MY(write_object_contents)): Likewise.
* i386lynx.c (WRITE_HEADERS): Likewise.
* libaout.h (WRITE_HEADERS): Likewise.
* bout.c: Changed functions to use link_info->callbacks rather
than bfd_error_vector, and link_orders rather than seclets.
* coff-alpha.c: Likewise.
* coff-h8300.c: Likewise.
* coff-h8500.c: Likewise.
* coff-sh.c: Likewise.
* coff-z8k.c: Likewise.
* elf32-hppa.c: Likewise.
* reloc16.c: Likewise.
* coff-alpha.c (alpha_ecoff_get_relocated_section_contents): Look
up _gp in the hash table rather than in outsymbols.
* coff-a29k.c (a29k_reloc): Pass errors back in new error_message
argument rather than printing them.
* coffcode.h (bfd_coff_reloc16_extra_cases): Take link_info and
link_order arguments rather than seclet. Changed all uses and
definitions.
(bfd_coff_reloc16_estimate): Pass link_info arguments. Changed
all uses and definitions.
* libcoff.h: Rebuilt.
* ecoff.c (ecoff_get_extr): If symbol is defined by linker, but
not by ECOFF, make it scAbs.
(ecoff_bfd_final_link): Renamed from ecoff_bfd_seclet_link and
rewritten.
* elf32-mips.c (mips_elf_final_link): Renamed from
mips_elf_seclet_link and rewritten.
* elf32-hppa.c (elf32_hppa_stub_description): Added link_info
field.
(new_stub, add_stub_by_name, hppa_elf_build_arg_reloc_stub,
hppa_elf_build_long_branch_stub, hppa_look_for_stubs_in_section):
Added link_info arguments. Changed all callers.
* elfcode.h (elf_slurp_symbol_table): Don't quit if outsymbols is
not NULL.
* oasys.c (oasys_write_sections): Return boolean value rather than
using bfd_error_vector.
(oasys_write_object_contents): Check return value of
oasys_write_sections.
* hosts/std-host.h: Don't declare qsort or strtol.
* Makefile.in: Rebuild dependencies.
(BFD_LIBS): Removed seclet.o. Added hash.o and linker.o.
(CFILES): Removed seclet.c. Added hash.c and linker.c.
(HFILES): Removed seclet.h. Added genlink.h.
1993-12-30 19:56:50 +00:00
|
|
|
char **error_message;
|
1993-07-19 19:12:59 +00:00
|
|
|
{
|
|
|
|
if (output_bfd != (bfd *) NULL
|
|
|
|
&& (symbol->flags & BSF_SECTION_SYM) == 0
|
1993-12-28 17:45:14 +00:00
|
|
|
&& (! reloc_entry->howto->partial_inplace
|
|
|
|
|| reloc_entry->addend == 0))
|
1993-07-19 19:12:59 +00:00
|
|
|
{
|
|
|
|
reloc_entry->address += input_section->output_offset;
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bfd_reloc_continue;
|
|
|
|
}
|