1999-09-12 01:37:28 +02:00
|
|
|
|
/* Support for the generic parts of PE/PEI, for BFD.
|
2005-02-20 15:59:07 +01:00
|
|
|
|
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2008-02-14 16:20:26 +01:00
|
|
|
|
2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
1999-09-12 01:37:28 +02:00
|
|
|
|
Written by Cygnus Solutions.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
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
|
2007-07-03 16:26:43 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-04-03 13:13:27 +02:00
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 16:26:43 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
|
MA 02110-1301, USA. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
/* Most of this hacked by Steve Chamberlain,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sac@cygnus.com
|
1999-09-12 01:37:28 +02:00
|
|
|
|
|
2003-04-03 13:13:27 +02:00
|
|
|
|
PE/PEI rearrangement (and code added): Donn Terry
|
|
|
|
|
Softway Systems, Inc. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Hey look, some documentation [and in a place you expect to find it]!
|
|
|
|
|
|
|
|
|
|
The main reference for the pei format is "Microsoft Portable Executable
|
|
|
|
|
and Common Object File Format Specification 4.1". Get it if you need to
|
|
|
|
|
do some serious hacking on this code.
|
|
|
|
|
|
|
|
|
|
Another reference:
|
|
|
|
|
"Peering Inside the PE: A Tour of the Win32 Portable Executable
|
|
|
|
|
File Format", MSJ 1994, Volume 9.
|
|
|
|
|
|
|
|
|
|
The *sole* difference between the pe format and the pei format is that the
|
|
|
|
|
latter has an MSDOS 2.0 .exe header on the front that prints the message
|
|
|
|
|
"This app must be run under Windows." (or some such).
|
|
|
|
|
(FIXME: Whether that statement is *really* true or not is unknown.
|
|
|
|
|
Are there more subtle differences between pe and pei formats?
|
|
|
|
|
For now assume there aren't. If you find one, then for God sakes
|
|
|
|
|
document it here!)
|
|
|
|
|
|
|
|
|
|
The Microsoft docs use the word "image" instead of "executable" because
|
|
|
|
|
the former can also refer to a DLL (shared library). Confusion can arise
|
|
|
|
|
because the `i' in `pei' also refers to "image". The `pe' format can
|
|
|
|
|
also create images (i.e. executables), it's just that to run on a win32
|
|
|
|
|
system you need to use the pei format.
|
|
|
|
|
|
|
|
|
|
FIXME: Please add more docs here so the next poor fool that has to hack
|
|
|
|
|
on this code has a chance of getting something accomplished without
|
2003-04-03 13:13:27 +02:00
|
|
|
|
wasting too much time. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#include "libpei.h"
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static bfd_boolean (*pe_saved_coff_bfd_print_private_bfd_data) (bfd *, void *) =
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#ifndef coff_bfd_print_private_bfd_data
|
|
|
|
|
NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
1999-09-12 01:37:28 +02:00
|
|
|
|
coff_bfd_print_private_bfd_data;
|
|
|
|
|
#undef coff_bfd_print_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static bfd_boolean pe_print_private_bfd_data (bfd *, void *);
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#define coff_bfd_print_private_bfd_data pe_print_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static bfd_boolean (*pe_saved_coff_bfd_copy_private_bfd_data) (bfd *, bfd *) =
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#ifndef coff_bfd_copy_private_bfd_data
|
|
|
|
|
NULL;
|
|
|
|
|
#else
|
|
|
|
|
coff_bfd_copy_private_bfd_data;
|
|
|
|
|
#undef coff_bfd_copy_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static bfd_boolean pe_bfd_copy_private_bfd_data (bfd *, bfd *);
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#define coff_bfd_copy_private_bfd_data pe_bfd_copy_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#define coff_mkobject pe_mkobject
|
|
|
|
|
#define coff_mkobject_hook pe_mkobject_hook
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
/* This structure contains static variables used by the ILF code. */
|
|
|
|
|
typedef asection * asection_ptr;
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
bfd * abfd;
|
|
|
|
|
bfd_byte * data;
|
|
|
|
|
struct bfd_in_memory * bim;
|
|
|
|
|
unsigned short magic;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
arelent * reltab;
|
|
|
|
|
unsigned int relcount;
|
|
|
|
|
|
|
|
|
|
coff_symbol_type * sym_cache;
|
|
|
|
|
coff_symbol_type * sym_ptr;
|
|
|
|
|
unsigned int sym_index;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
unsigned int * sym_table;
|
|
|
|
|
unsigned int * table_ptr;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
combined_entry_type * native_syms;
|
|
|
|
|
combined_entry_type * native_ptr;
|
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
coff_symbol_type ** sym_ptr_table;
|
|
|
|
|
coff_symbol_type ** sym_ptr_ptr;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
unsigned int sec_index;
|
|
|
|
|
|
|
|
|
|
char * string_table;
|
|
|
|
|
char * string_ptr;
|
|
|
|
|
char * end_string_ptr;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
SYMENT * esym_table;
|
|
|
|
|
SYMENT * esym_ptr;
|
|
|
|
|
|
|
|
|
|
struct internal_reloc * int_reltab;
|
|
|
|
|
}
|
|
|
|
|
pe_ILF_vars;
|
|
|
|
|
#endif /* COFF_IMAGE_WITH_PE */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifndef NO_COFF_RELOCS
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_reloc_in (bfd * abfd, void * src, void * dst)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
RELOC *reloc_src = (RELOC *) src;
|
|
|
|
|
struct internal_reloc *reloc_dst = (struct internal_reloc *) dst;
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
reloc_dst->r_vaddr = H_GET_32 (abfd, reloc_src->r_vaddr);
|
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 11:57:26 +02:00
|
|
|
|
reloc_dst->r_symndx = H_GET_S32 (abfd, reloc_src->r_symndx);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
reloc_dst->r_type = H_GET_16 (abfd, reloc_src->r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef SWAP_IN_RELOC_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 11:57:26 +02:00
|
|
|
|
reloc_dst->r_offset = SWAP_IN_RELOC_OFFSET (abfd, reloc_src->r_offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static unsigned int
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_reloc_out (bfd * abfd, void * src, void * dst)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
struct internal_reloc *reloc_src = (struct internal_reloc *) src;
|
|
|
|
|
struct external_reloc *reloc_dst = (struct external_reloc *) dst;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
H_PUT_32 (abfd, reloc_src->r_vaddr, reloc_dst->r_vaddr);
|
|
|
|
|
H_PUT_32 (abfd, reloc_src->r_symndx, reloc_dst->r_symndx);
|
|
|
|
|
H_PUT_16 (abfd, reloc_src->r_type, reloc_dst->r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
#ifdef SWAP_OUT_RELOC_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 11:57:26 +02:00
|
|
|
|
SWAP_OUT_RELOC_OFFSET (abfd, reloc_src->r_offset, reloc_dst->r_offset);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef SWAP_OUT_RELOC_EXTRA
|
2005-04-21 09:45:39 +02:00
|
|
|
|
SWAP_OUT_RELOC_EXTRA (abfd, reloc_src, reloc_dst);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
return RELSZ;
|
|
|
|
|
}
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif /* not NO_COFF_RELOCS */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_filehdr_in (bfd * abfd, void * src, void * dst)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
FILHDR *filehdr_src = (FILHDR *) src;
|
|
|
|
|
struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
filehdr_dst->f_magic = H_GET_16 (abfd, filehdr_src->f_magic);
|
|
|
|
|
filehdr_dst->f_nscns = H_GET_16 (abfd, filehdr_src->f_nscns);
|
|
|
|
|
filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->f_timdat);
|
|
|
|
|
filehdr_dst->f_nsyms = H_GET_32 (abfd, filehdr_src->f_nsyms);
|
|
|
|
|
filehdr_dst->f_flags = H_GET_16 (abfd, filehdr_src->f_flags);
|
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 11:57:26 +02:00
|
|
|
|
filehdr_dst->f_symptr = H_GET_32 (abfd, filehdr_src->f_symptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Other people's tools sometimes generate headers with an nsyms but
|
|
|
|
|
a zero symptr. */
|
|
|
|
|
if (filehdr_dst->f_nsyms != 0 && filehdr_dst->f_symptr == 0)
|
|
|
|
|
{
|
|
|
|
|
filehdr_dst->f_nsyms = 0;
|
|
|
|
|
filehdr_dst->f_flags |= F_LSYMS;
|
|
|
|
|
}
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
filehdr_dst->f_opthdr = H_GET_16 (abfd, filehdr_src-> f_opthdr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
2001-02-13 20:23:08 +01:00
|
|
|
|
# define coff_swap_filehdr_out _bfd_XXi_only_swap_filehdr_out
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#elif defined COFF_WITH_pex64
|
|
|
|
|
# define coff_swap_filehdr_out _bfd_pex64_only_swap_filehdr_out
|
|
|
|
|
#elif defined COFF_WITH_pep
|
|
|
|
|
# define coff_swap_filehdr_out _bfd_pep_only_swap_filehdr_out
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
2001-02-13 20:23:08 +01:00
|
|
|
|
# define coff_swap_filehdr_out _bfd_pe_only_swap_filehdr_out
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_scnhdr_in (bfd * abfd, void * ext, void * in)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
SCNHDR *scnhdr_ext = (SCNHDR *) ext;
|
|
|
|
|
struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *) in;
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
memcpy (scnhdr_int->s_name, scnhdr_ext->s_name, sizeof (scnhdr_int->s_name));
|
|
|
|
|
|
|
|
|
|
scnhdr_int->s_vaddr = GET_SCNHDR_VADDR (abfd, scnhdr_ext->s_vaddr);
|
|
|
|
|
scnhdr_int->s_paddr = GET_SCNHDR_PADDR (abfd, scnhdr_ext->s_paddr);
|
|
|
|
|
scnhdr_int->s_size = GET_SCNHDR_SIZE (abfd, scnhdr_ext->s_size);
|
|
|
|
|
scnhdr_int->s_scnptr = GET_SCNHDR_SCNPTR (abfd, scnhdr_ext->s_scnptr);
|
|
|
|
|
scnhdr_int->s_relptr = GET_SCNHDR_RELPTR (abfd, scnhdr_ext->s_relptr);
|
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 11:57:26 +02:00
|
|
|
|
scnhdr_int->s_lnnoptr = GET_SCNHDR_LNNOPTR (abfd, scnhdr_ext->s_lnnoptr);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
scnhdr_int->s_flags = H_GET_32 (abfd, scnhdr_ext->s_flags);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-12 02:30:27 +02:00
|
|
|
|
/* MS handles overflow of line numbers by carrying into the reloc
|
|
|
|
|
field (it appears). Since it's supposed to be zero for PE
|
|
|
|
|
*IMAGE* format, that's safe. This is still a bit iffy. */
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
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 11:57:26 +02:00
|
|
|
|
scnhdr_int->s_nlnno = (H_GET_16 (abfd, scnhdr_ext->s_nlnno)
|
|
|
|
|
+ (H_GET_16 (abfd, scnhdr_ext->s_nreloc) << 16));
|
1999-09-12 02:30:27 +02:00
|
|
|
|
scnhdr_int->s_nreloc = 0;
|
|
|
|
|
#else
|
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 11:57:26 +02:00
|
|
|
|
scnhdr_int->s_nreloc = H_GET_16 (abfd, scnhdr_ext->s_nreloc);
|
|
|
|
|
scnhdr_int->s_nlnno = H_GET_16 (abfd, scnhdr_ext->s_nlnno);
|
1999-09-12 02:30:27 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-01-02 20:22:56 +01:00
|
|
|
|
if (scnhdr_int->s_vaddr != 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
scnhdr_int->s_vaddr += pe_data (abfd)->pe_opthdr.ImageBase;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
/* Do not cut upper 32-bits for 64-bit vma. */
|
|
|
|
|
#ifndef COFF_WITH_pex64
|
1999-05-03 09:29:11 +02:00
|
|
|
|
scnhdr_int->s_vaddr &= 0xffffffff;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
1999-09-12 00:52:20 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifndef COFF_NO_HACK_SCNHDR_SIZE
|
2003-04-15 16:26:06 +02:00
|
|
|
|
/* If this section holds uninitialized data and is from an object file
|
|
|
|
|
or from an executable image that has not initialized the field,
|
2003-10-22 17:12:58 +02:00
|
|
|
|
or if the image is an executable file and the physical size is padded,
|
|
|
|
|
use the virtual size (stored in s_paddr) instead. */
|
2003-04-15 16:26:06 +02:00
|
|
|
|
if (scnhdr_int->s_paddr > 0
|
|
|
|
|
&& (((scnhdr_int->s_flags & IMAGE_SCN_CNT_UNINITIALIZED_DATA) != 0
|
2003-10-22 17:12:58 +02:00
|
|
|
|
&& (! bfd_pe_executable_p (abfd) || scnhdr_int->s_size == 0))
|
2008-02-14 16:20:26 +01:00
|
|
|
|
|| (bfd_pe_executable_p (abfd) && (scnhdr_int->s_size > scnhdr_int->s_paddr))))
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* This code used to set scnhdr_int->s_paddr to 0. However,
|
|
|
|
|
coff_set_alignment_hook stores s_paddr in virt_size, which
|
|
|
|
|
only works if it correctly holds the virtual size of the
|
|
|
|
|
section. */
|
|
|
|
|
scnhdr_int->s_size = scnhdr_int->s_paddr;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
pe_mkobject (bfd * abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
pe_data_type *pe;
|
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 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = sizeof (pe_data_type);
|
|
|
|
|
|
|
|
|
|
abfd->tdata.pe_obj_data = (struct pe_tdata *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (abfd->tdata.pe_obj_data == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
pe = pe_data (abfd);
|
|
|
|
|
|
|
|
|
|
pe->coff.pe = 1;
|
1999-09-12 01:37:28 +02:00
|
|
|
|
|
|
|
|
|
/* in_reloc_p is architecture dependent. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
pe->in_reloc_p = in_reloc_p;
|
2001-02-13 20:23:08 +01:00
|
|
|
|
|
|
|
|
|
#ifdef PEI_FORCE_MINIMUM_ALIGNMENT
|
|
|
|
|
pe->force_minimum_alignment = 1;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef PEI_TARGET_SUBSYSTEM
|
|
|
|
|
pe->target_subsystem = PEI_TARGET_SUBSYSTEM;
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the COFF backend specific information. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
|
|
|
|
static void *
|
|
|
|
|
pe_mkobject_hook (bfd * abfd,
|
|
|
|
|
void * filehdr,
|
|
|
|
|
void * aouthdr ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
pe_data_type *pe;
|
|
|
|
|
|
2002-06-25 08:21:54 +02:00
|
|
|
|
if (! pe_mkobject (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
pe = pe_data (abfd);
|
|
|
|
|
pe->coff.sym_filepos = internal_f->f_symptr;
|
|
|
|
|
/* These members communicate important constants about the symbol
|
|
|
|
|
table to GDB's symbol-reading code. These `constants'
|
|
|
|
|
unfortunately vary among coff implementations... */
|
|
|
|
|
pe->coff.local_n_btmask = N_BTMASK;
|
|
|
|
|
pe->coff.local_n_btshft = N_BTSHFT;
|
|
|
|
|
pe->coff.local_n_tmask = N_TMASK;
|
|
|
|
|
pe->coff.local_n_tshift = N_TSHIFT;
|
|
|
|
|
pe->coff.local_symesz = SYMESZ;
|
|
|
|
|
pe->coff.local_auxesz = AUXESZ;
|
|
|
|
|
pe->coff.local_linesz = LINESZ;
|
|
|
|
|
|
1999-09-12 00:46:37 +02:00
|
|
|
|
pe->coff.timestamp = internal_f->f_timdat;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
obj_raw_syment_count (abfd) =
|
|
|
|
|
obj_conv_table_size (abfd) =
|
|
|
|
|
internal_f->f_nsyms;
|
|
|
|
|
|
|
|
|
|
pe->real_flags = internal_f->f_flags;
|
|
|
|
|
|
|
|
|
|
if ((internal_f->f_flags & F_DLL) != 0)
|
|
|
|
|
pe->dll = 1;
|
|
|
|
|
|
1999-09-12 00:33:45 +02:00
|
|
|
|
if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
|
|
|
|
|
abfd->flags |= HAS_DEBUG;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
2001-01-02 20:22:56 +01:00
|
|
|
|
if (aouthdr)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
pe->pe_opthdr = ((struct internal_aouthdr *) aouthdr)->pe;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2001-01-02 20:22:56 +01:00
|
|
|
|
#ifdef ARM
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
|
|
|
|
|
coff_data (abfd) ->flags = 0;
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
return (void *) pe;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
pe_print_private_bfd_data (bfd *abfd, void * vfile)
|
1999-09-12 01:37:28 +02:00
|
|
|
|
{
|
|
|
|
|
FILE *file = (FILE *) vfile;
|
|
|
|
|
|
2001-02-13 20:23:08 +01:00
|
|
|
|
if (!_bfd_XX_print_private_bfd_data_common (abfd, vfile))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (pe_saved_coff_bfd_print_private_bfd_data == NULL)
|
|
|
|
|
return TRUE;
|
1999-09-12 01:37:28 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
fputc ('\n', file);
|
1999-09-12 01:37:28 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
return pe_saved_coff_bfd_print_private_bfd_data (abfd, vfile);
|
1999-09-12 01:37:28 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Copy any private info we understand from the input bfd
|
|
|
|
|
to the output bfd. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
pe_bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-02-14 12:20:37 +01:00
|
|
|
|
/* PR binutils/716: Copy the large address aware flag.
|
|
|
|
|
XXX: Should we be copying other flags or other fields in the pe_data()
|
|
|
|
|
structure ? */
|
|
|
|
|
if (pe_data (obfd) != NULL
|
|
|
|
|
&& pe_data (ibfd) != NULL
|
|
|
|
|
&& pe_data (ibfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE)
|
|
|
|
|
pe_data (obfd)->real_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
|
|
|
|
|
|
2001-02-13 20:23:08 +01:00
|
|
|
|
if (!_bfd_XX_bfd_copy_private_bfd_data_common (ibfd, obfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (pe_saved_coff_bfd_copy_private_bfd_data)
|
|
|
|
|
return pe_saved_coff_bfd_copy_private_bfd_data (ibfd, obfd);
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-12 01:37:28 +02:00
|
|
|
|
#define coff_bfd_copy_private_section_data \
|
2001-02-13 20:23:08 +01:00
|
|
|
|
_bfd_XX_bfd_copy_private_section_data
|
1999-09-12 02:02:11 +02:00
|
|
|
|
|
2001-02-13 20:23:08 +01:00
|
|
|
|
#define coff_get_symbol_info _bfd_XX_get_symbol_info
|
1999-12-17 20:03:09 +01:00
|
|
|
|
|
1999-12-28 01:25:18 +01:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* Code to handle Microsoft's Image Library Format.
|
|
|
|
|
Also known as LINK6 format.
|
2001-01-02 20:22:56 +01:00
|
|
|
|
Documentation about this format can be found at:
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
http://msdn.microsoft.com/library/specs/pecoff_section8.htm */
|
|
|
|
|
|
|
|
|
|
/* The following constants specify the sizes of the various data
|
|
|
|
|
structures that we have to create in order to build a bfd describing
|
|
|
|
|
an ILF object file. The final "+ 1" in the definitions of SIZEOF_IDATA6
|
|
|
|
|
and SIZEOF_IDATA7 below is to allow for the possibility that we might
|
|
|
|
|
need a padding byte in order to ensure 16 bit alignment for the section's
|
|
|
|
|
contents.
|
|
|
|
|
|
|
|
|
|
The value for SIZEOF_ILF_STRINGS is computed as follows:
|
|
|
|
|
|
|
|
|
|
There will be NUM_ILF_SECTIONS section symbols. Allow 9 characters
|
2000-03-06 20:49:58 +01:00
|
|
|
|
per symbol for their names (longest section name is .idata$x).
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
There will be two symbols for the imported value, one the symbol name
|
|
|
|
|
and one with _imp__ prefixed. Allowing for the terminating nul's this
|
2000-03-06 20:49:58 +01:00
|
|
|
|
is strlen (symbol_name) * 2 + 8 + 21 + strlen (source_dll).
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
The strings in the string table must start STRING__SIZE_SIZE bytes into
|
|
|
|
|
the table in order to for the string lookup code in coffgen/coffcode to
|
|
|
|
|
work. */
|
|
|
|
|
#define NUM_ILF_RELOCS 8
|
|
|
|
|
#define NUM_ILF_SECTIONS 6
|
|
|
|
|
#define NUM_ILF_SYMS (2 + NUM_ILF_SECTIONS)
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
#define SIZEOF_ILF_SYMS (NUM_ILF_SYMS * sizeof (* vars.sym_cache))
|
|
|
|
|
#define SIZEOF_ILF_SYM_TABLE (NUM_ILF_SYMS * sizeof (* vars.sym_table))
|
|
|
|
|
#define SIZEOF_ILF_NATIVE_SYMS (NUM_ILF_SYMS * sizeof (* vars.native_syms))
|
2000-03-06 20:49:58 +01:00
|
|
|
|
#define SIZEOF_ILF_SYM_PTR_TABLE (NUM_ILF_SYMS * sizeof (* vars.sym_ptr_table))
|
2005-04-21 09:45:39 +02:00
|
|
|
|
#define SIZEOF_ILF_EXT_SYMS (NUM_ILF_SYMS * sizeof (* vars.esym_table))
|
|
|
|
|
#define SIZEOF_ILF_RELOCS (NUM_ILF_RELOCS * sizeof (* vars.reltab))
|
|
|
|
|
#define SIZEOF_ILF_INT_RELOCS (NUM_ILF_RELOCS * sizeof (* vars.int_reltab))
|
|
|
|
|
#define SIZEOF_ILF_STRINGS (strlen (symbol_name) * 2 + 8 \
|
2000-03-06 20:49:58 +01:00
|
|
|
|
+ 21 + strlen (source_dll) \
|
|
|
|
|
+ NUM_ILF_SECTIONS * 9 \
|
|
|
|
|
+ STRING_SIZE_SIZE)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#define SIZEOF_IDATA2 (5 * 4)
|
2006-09-20 13:35:11 +02:00
|
|
|
|
|
|
|
|
|
/* For PEx64 idata4 & 5 have thumb size of 8 bytes. */
|
|
|
|
|
#ifdef COFF_WITH_pex64
|
|
|
|
|
#define SIZEOF_IDATA4 (2 * 4)
|
|
|
|
|
#define SIZEOF_IDATA5 (2 * 4)
|
|
|
|
|
#else
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#define SIZEOF_IDATA4 (1 * 4)
|
|
|
|
|
#define SIZEOF_IDATA5 (1 * 4)
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#define SIZEOF_IDATA6 (2 + strlen (symbol_name) + 1 + 1)
|
|
|
|
|
#define SIZEOF_IDATA7 (strlen (source_dll) + 1 + 1)
|
|
|
|
|
#define SIZEOF_ILF_SECTIONS (NUM_ILF_SECTIONS * sizeof (struct coff_section_tdata))
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#define ILF_DATA_SIZE \
|
|
|
|
|
sizeof (* vars.bim) \
|
|
|
|
|
+ SIZEOF_ILF_SYMS \
|
|
|
|
|
+ SIZEOF_ILF_SYM_TABLE \
|
|
|
|
|
+ SIZEOF_ILF_NATIVE_SYMS \
|
2000-03-06 20:49:58 +01:00
|
|
|
|
+ SIZEOF_ILF_SYM_PTR_TABLE \
|
2000-02-28 19:56:11 +01:00
|
|
|
|
+ SIZEOF_ILF_EXT_SYMS \
|
|
|
|
|
+ SIZEOF_ILF_RELOCS \
|
|
|
|
|
+ SIZEOF_ILF_INT_RELOCS \
|
|
|
|
|
+ SIZEOF_ILF_STRINGS \
|
|
|
|
|
+ SIZEOF_IDATA2 \
|
|
|
|
|
+ SIZEOF_IDATA4 \
|
|
|
|
|
+ SIZEOF_IDATA5 \
|
|
|
|
|
+ SIZEOF_IDATA6 \
|
|
|
|
|
+ SIZEOF_IDATA7 \
|
|
|
|
|
+ SIZEOF_ILF_SECTIONS \
|
|
|
|
|
+ MAX_TEXT_SECTION_SIZE
|
|
|
|
|
|
|
|
|
|
/* Create an empty relocation against the given symbol. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
pe_ILF_make_a_symbol_reloc (pe_ILF_vars * vars,
|
|
|
|
|
bfd_vma address,
|
|
|
|
|
bfd_reloc_code_real_type reloc,
|
|
|
|
|
struct bfd_symbol ** sym,
|
|
|
|
|
unsigned int sym_index)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
{
|
|
|
|
|
arelent * entry;
|
|
|
|
|
struct internal_reloc * internal;
|
|
|
|
|
|
|
|
|
|
entry = vars->reltab + vars->relcount;
|
|
|
|
|
internal = vars->int_reltab + vars->relcount;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
entry->address = address;
|
|
|
|
|
entry->addend = 0;
|
|
|
|
|
entry->howto = bfd_reloc_type_lookup (vars->abfd, reloc);
|
2000-03-06 20:49:58 +01:00
|
|
|
|
entry->sym_ptr_ptr = sym;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
internal->r_vaddr = address;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
internal->r_symndx = sym_index;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
internal->r_type = entry->howto->type;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
vars->relcount ++;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
BFD_ASSERT (vars->relcount <= NUM_ILF_RELOCS);
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
/* Create an empty relocation against the given section. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
static void
|
|
|
|
|
pe_ILF_make_a_reloc (pe_ILF_vars * vars,
|
|
|
|
|
bfd_vma address,
|
|
|
|
|
bfd_reloc_code_real_type reloc,
|
|
|
|
|
asection_ptr sec)
|
|
|
|
|
{
|
|
|
|
|
pe_ILF_make_a_symbol_reloc (vars, address, reloc, sec->symbol_ptr_ptr,
|
|
|
|
|
coff_section_data (vars->abfd, sec)->i);
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Move the queued relocs into the given section. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
static void
|
|
|
|
|
pe_ILF_save_relocs (pe_ILF_vars * vars,
|
|
|
|
|
asection_ptr sec)
|
|
|
|
|
{
|
|
|
|
|
/* Make sure that there is somewhere to store the internal relocs. */
|
|
|
|
|
if (coff_section_data (vars->abfd, sec) == NULL)
|
|
|
|
|
/* We should probably return an error indication here. */
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
coff_section_data (vars->abfd, sec)->relocs = vars->int_reltab;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
coff_section_data (vars->abfd, sec)->keep_relocs = TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
sec->relocation = vars->reltab;
|
|
|
|
|
sec->reloc_count = vars->relcount;
|
|
|
|
|
sec->flags |= SEC_RELOC;
|
|
|
|
|
|
|
|
|
|
vars->reltab += vars->relcount;
|
|
|
|
|
vars->int_reltab += vars->relcount;
|
|
|
|
|
vars->relcount = 0;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
BFD_ASSERT ((bfd_byte *) vars->int_reltab < (bfd_byte *) vars->string_table);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a global symbol and add it to the relevant tables. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
static void
|
|
|
|
|
pe_ILF_make_a_symbol (pe_ILF_vars * vars,
|
|
|
|
|
const char * prefix,
|
|
|
|
|
const char * symbol_name,
|
|
|
|
|
asection_ptr section,
|
|
|
|
|
flagword extra_flags)
|
|
|
|
|
{
|
|
|
|
|
coff_symbol_type * sym;
|
|
|
|
|
combined_entry_type * ent;
|
|
|
|
|
SYMENT * esym;
|
|
|
|
|
unsigned short sclass;
|
|
|
|
|
|
|
|
|
|
if (extra_flags & BSF_LOCAL)
|
2000-03-06 20:49:58 +01:00
|
|
|
|
sclass = C_STAT;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
else
|
|
|
|
|
sclass = C_EXT;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
|
|
|
|
#ifdef THUMBPEMAGIC
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (vars->magic == THUMBPEMAGIC)
|
|
|
|
|
{
|
|
|
|
|
if (extra_flags & BSF_FUNCTION)
|
|
|
|
|
sclass = C_THUMBEXTFUNC;
|
|
|
|
|
else if (extra_flags & BSF_LOCAL)
|
2000-03-06 20:49:58 +01:00
|
|
|
|
sclass = C_THUMBSTAT;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
else
|
|
|
|
|
sclass = C_THUMBEXT;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
BFD_ASSERT (vars->sym_index < NUM_ILF_SYMS);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
sym = vars->sym_ptr;
|
|
|
|
|
ent = vars->native_ptr;
|
|
|
|
|
esym = vars->esym_ptr;
|
|
|
|
|
|
|
|
|
|
/* Copy the symbol's name into the string table. */
|
|
|
|
|
sprintf (vars->string_ptr, "%s%s", prefix, symbol_name);
|
|
|
|
|
|
2000-03-06 23:38:43 +01:00
|
|
|
|
if (section == NULL)
|
|
|
|
|
section = (asection_ptr) & bfd_und_section;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Initialise the external symbol. */
|
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 11:57:26 +02:00
|
|
|
|
H_PUT_32 (vars->abfd, vars->string_ptr - vars->string_table,
|
|
|
|
|
esym->e.e.e_offset);
|
|
|
|
|
H_PUT_16 (vars->abfd, section->target_index, esym->e_scnum);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
esym->e_sclass[0] = sclass;
|
|
|
|
|
|
|
|
|
|
/* The following initialisations are unnecessary - the memory is
|
|
|
|
|
zero initialised. They are just kept here as reminders. */
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Initialise the internal symbol structure. */
|
|
|
|
|
ent->u.syment.n_sclass = sclass;
|
2000-03-06 23:38:43 +01:00
|
|
|
|
ent->u.syment.n_scnum = section->target_index;
|
2007-07-12 09:16:41 +02:00
|
|
|
|
ent->u.syment._n._n_n._n_offset = (bfd_hostptr_t) sym;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
sym->symbol.the_bfd = vars->abfd;
|
|
|
|
|
sym->symbol.name = vars->string_ptr;
|
|
|
|
|
sym->symbol.flags = BSF_EXPORT | BSF_GLOBAL | extra_flags;
|
|
|
|
|
sym->symbol.section = section;
|
|
|
|
|
sym->native = ent;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
* vars->table_ptr = vars->sym_index;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
* vars->sym_ptr_ptr = sym;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Adjust pointers for the next symbol. */
|
|
|
|
|
vars->sym_index ++;
|
|
|
|
|
vars->sym_ptr ++;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
vars->sym_ptr_ptr ++;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
vars->table_ptr ++;
|
|
|
|
|
vars->native_ptr ++;
|
|
|
|
|
vars->esym_ptr ++;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
vars->string_ptr += strlen (symbol_name) + strlen (prefix) + 1;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
BFD_ASSERT (vars->string_ptr < vars->end_string_ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a section. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
static asection_ptr
|
|
|
|
|
pe_ILF_make_a_section (pe_ILF_vars * vars,
|
|
|
|
|
const char * name,
|
|
|
|
|
unsigned int size,
|
|
|
|
|
flagword extra_flags)
|
|
|
|
|
{
|
|
|
|
|
asection_ptr sec;
|
|
|
|
|
flagword flags;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
sec = bfd_make_section_old_way (vars->abfd, name);
|
|
|
|
|
if (sec == NULL)
|
|
|
|
|
return NULL;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_KEEP | SEC_IN_MEMORY;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_section_flags (vars->abfd, sec, flags | extra_flags);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_section_alignment (vars->abfd, sec, 2);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Check that we will not run out of space. */
|
|
|
|
|
BFD_ASSERT (vars->data + size < vars->bim->buffer + vars->bim->size);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Set the section size and contents. The actual
|
|
|
|
|
contents are filled in by our parent. */
|
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 11:57:26 +02:00
|
|
|
|
bfd_set_section_size (vars->abfd, sec, (bfd_size_type) size);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
sec->contents = vars->data;
|
|
|
|
|
sec->target_index = vars->sec_index ++;
|
|
|
|
|
|
|
|
|
|
/* Advance data pointer in the vars structure. */
|
|
|
|
|
vars->data += size;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Skip the padding byte if it was not needed.
|
|
|
|
|
The logic here is that if the string length is odd,
|
|
|
|
|
then the entire string length, including the null byte,
|
|
|
|
|
is even and so the extra, padding byte, is not needed. */
|
|
|
|
|
if (size & 1)
|
|
|
|
|
vars->data --;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Create a coff_section_tdata structure for our use. */
|
|
|
|
|
sec->used_by_bfd = (struct coff_section_tdata *) vars->data;
|
|
|
|
|
vars->data += sizeof (struct coff_section_tdata);
|
|
|
|
|
|
|
|
|
|
BFD_ASSERT (vars->data <= vars->bim->buffer + vars->bim->size);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Create a symbol to refer to this section. */
|
|
|
|
|
pe_ILF_make_a_symbol (vars, "", name, sec, BSF_LOCAL);
|
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
/* Cache the index to the symbol in the coff_section_data structure. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
coff_section_data (vars->abfd, sec)->i = vars->sym_index - 1;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return sec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This structure contains the code that goes into the .text section
|
|
|
|
|
in order to perform a jump into the DLL lookup table. The entries
|
|
|
|
|
in the table are index by the magic number used to represent the
|
|
|
|
|
machine type in the PE file. The contents of the data[] arrays in
|
|
|
|
|
these entries are stolen from the jtab[] arrays in ld/pe-dll.c.
|
|
|
|
|
The SIZE field says how many bytes in the DATA array are actually
|
|
|
|
|
used. The OFFSET field says where in the data array the address
|
|
|
|
|
of the .idata$5 section should be placed. */
|
|
|
|
|
#define MAX_TEXT_SECTION_SIZE 32
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
unsigned short magic;
|
|
|
|
|
unsigned char data[MAX_TEXT_SECTION_SIZE];
|
|
|
|
|
unsigned int size;
|
|
|
|
|
unsigned int offset;
|
|
|
|
|
}
|
|
|
|
|
jump_table;
|
|
|
|
|
|
2000-03-01 21:39:07 +01:00
|
|
|
|
static jump_table jtab[] =
|
2000-02-28 19:56:11 +01:00
|
|
|
|
{
|
|
|
|
|
#ifdef I386MAGIC
|
|
|
|
|
{ I386MAGIC,
|
|
|
|
|
{ 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90 },
|
|
|
|
|
8, 2
|
|
|
|
|
},
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#ifdef AMD64MAGIC
|
|
|
|
|
{ AMD64MAGIC,
|
|
|
|
|
{ 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90 },
|
|
|
|
|
8, 2
|
|
|
|
|
},
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef MC68MAGIC
|
2006-09-20 13:35:11 +02:00
|
|
|
|
{ MC68MAGIC,
|
|
|
|
|
{ /* XXX fill me in */ },
|
|
|
|
|
0, 0
|
|
|
|
|
},
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif
|
2006-09-20 13:35:11 +02:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef MIPS_ARCH_MAGIC_WINCE
|
|
|
|
|
{ MIPS_ARCH_MAGIC_WINCE,
|
|
|
|
|
{ 0x00, 0x00, 0x08, 0x3c, 0x00, 0x00, 0x08, 0x8d,
|
|
|
|
|
0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 },
|
|
|
|
|
16, 0
|
|
|
|
|
},
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef SH_ARCH_MAGIC_WINCE
|
|
|
|
|
{ SH_ARCH_MAGIC_WINCE,
|
|
|
|
|
{ 0x01, 0xd0, 0x02, 0x60, 0x2b, 0x40,
|
|
|
|
|
0x09, 0x00, 0x00, 0x00, 0x00, 0x00 },
|
|
|
|
|
12, 8
|
|
|
|
|
},
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef ARMPEMAGIC
|
|
|
|
|
{ ARMPEMAGIC,
|
|
|
|
|
{ 0x00, 0xc0, 0x9f, 0xe5, 0x00, 0xf0,
|
|
|
|
|
0x9c, 0xe5, 0x00, 0x00, 0x00, 0x00},
|
|
|
|
|
12, 8
|
|
|
|
|
},
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef THUMBPEMAGIC
|
|
|
|
|
{ THUMBPEMAGIC,
|
|
|
|
|
{ 0x40, 0xb4, 0x02, 0x4e, 0x36, 0x68, 0xb4, 0x46,
|
|
|
|
|
0x40, 0xbc, 0x60, 0x47, 0x00, 0x00, 0x00, 0x00 },
|
|
|
|
|
16, 12
|
|
|
|
|
},
|
|
|
|
|
#endif
|
|
|
|
|
{ 0, { 0 }, 0, 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifndef NUM_ENTRIES
|
|
|
|
|
#define NUM_ENTRIES(a) (sizeof (a) / sizeof (a)[0])
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Build a full BFD from the information supplied in a ILF object. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-02-28 19:56:11 +01:00
|
|
|
|
pe_ILF_build_a_bfd (bfd * abfd,
|
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 11:57:26 +02:00
|
|
|
|
unsigned int magic,
|
2005-02-20 15:59:07 +01:00
|
|
|
|
char * symbol_name,
|
|
|
|
|
char * source_dll,
|
2000-02-28 19:56:11 +01:00
|
|
|
|
unsigned int ordinal,
|
|
|
|
|
unsigned int types)
|
2001-01-02 20:22:56 +01:00
|
|
|
|
{
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_byte * ptr;
|
|
|
|
|
pe_ILF_vars vars;
|
|
|
|
|
struct internal_filehdr internal_f;
|
|
|
|
|
unsigned int import_type;
|
|
|
|
|
unsigned int import_name_type;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
asection_ptr id4, id5, id6 = NULL, text = NULL;
|
|
|
|
|
coff_symbol_type ** imp_sym;
|
|
|
|
|
unsigned int imp_index;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* Decode and verify the types field of the ILF structure. */
|
|
|
|
|
import_type = types & 0x3;
|
|
|
|
|
import_name_type = (types & 0x1c) >> 2;
|
|
|
|
|
|
|
|
|
|
switch (import_type)
|
|
|
|
|
{
|
|
|
|
|
case IMPORT_CODE:
|
|
|
|
|
case IMPORT_DATA:
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMPORT_CONST:
|
|
|
|
|
/* XXX code yet to be written. */
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
_bfd_error_handler (_("%B: Unhandled import type; %x"),
|
|
|
|
|
abfd, import_type);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
default:
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
_bfd_error_handler (_("%B: Unrecognised import type; %x"),
|
|
|
|
|
abfd, import_type);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (import_name_type)
|
|
|
|
|
{
|
|
|
|
|
case IMPORT_ORDINAL:
|
|
|
|
|
case IMPORT_NAME:
|
|
|
|
|
case IMPORT_NAME_NOPREFIX:
|
|
|
|
|
case IMPORT_NAME_UNDECORATE:
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
default:
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
_bfd_error_handler (_("%B: Unrecognised import name type; %x"),
|
|
|
|
|
abfd, import_name_type);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialise local variables.
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
Note these are kept in a structure rather than being
|
|
|
|
|
declared as statics since bfd frowns on global variables.
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
We are going to construct the contents of the BFD in memory,
|
|
|
|
|
so allocate all the space that we will need right now. */
|
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 11:57:26 +02:00
|
|
|
|
ptr = bfd_zalloc (abfd, (bfd_size_type) ILF_DATA_SIZE);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (ptr == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* Create a bfd_in_memory structure. */
|
|
|
|
|
vars.bim = (struct bfd_in_memory *) ptr;
|
|
|
|
|
vars.bim->buffer = ptr;
|
|
|
|
|
vars.bim->size = ILF_DATA_SIZE;
|
|
|
|
|
ptr += sizeof (* vars.bim);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Initialise the pointers to regions of the memory and the
|
|
|
|
|
other contents of the pe_ILF_vars structure as well. */
|
|
|
|
|
vars.sym_cache = (coff_symbol_type *) ptr;
|
|
|
|
|
vars.sym_ptr = (coff_symbol_type *) ptr;
|
|
|
|
|
vars.sym_index = 0;
|
|
|
|
|
ptr += SIZEOF_ILF_SYMS;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
vars.sym_table = (unsigned int *) ptr;
|
|
|
|
|
vars.table_ptr = (unsigned int *) ptr;
|
|
|
|
|
ptr += SIZEOF_ILF_SYM_TABLE;
|
|
|
|
|
|
|
|
|
|
vars.native_syms = (combined_entry_type *) ptr;
|
|
|
|
|
vars.native_ptr = (combined_entry_type *) ptr;
|
|
|
|
|
ptr += SIZEOF_ILF_NATIVE_SYMS;
|
2000-03-06 20:49:58 +01:00
|
|
|
|
|
|
|
|
|
vars.sym_ptr_table = (coff_symbol_type **) ptr;
|
|
|
|
|
vars.sym_ptr_ptr = (coff_symbol_type **) ptr;
|
|
|
|
|
ptr += SIZEOF_ILF_SYM_PTR_TABLE;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
vars.esym_table = (SYMENT *) ptr;
|
|
|
|
|
vars.esym_ptr = (SYMENT *) ptr;
|
|
|
|
|
ptr += SIZEOF_ILF_EXT_SYMS;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
vars.reltab = (arelent *) ptr;
|
|
|
|
|
vars.relcount = 0;
|
|
|
|
|
ptr += SIZEOF_ILF_RELOCS;
|
|
|
|
|
|
|
|
|
|
vars.int_reltab = (struct internal_reloc *) ptr;
|
|
|
|
|
ptr += SIZEOF_ILF_INT_RELOCS;
|
|
|
|
|
|
2005-02-20 15:59:07 +01:00
|
|
|
|
vars.string_table = (char *) ptr;
|
|
|
|
|
vars.string_ptr = (char *) ptr + STRING_SIZE_SIZE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += SIZEOF_ILF_STRINGS;
|
2005-02-20 15:59:07 +01:00
|
|
|
|
vars.end_string_ptr = (char *) ptr;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* The remaining space in bim->buffer is used
|
|
|
|
|
by the pe_ILF_make_a_section() function. */
|
|
|
|
|
vars.data = ptr;
|
|
|
|
|
vars.abfd = abfd;
|
|
|
|
|
vars.sec_index = 0;
|
|
|
|
|
vars.magic = magic;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Create the initial .idata$<n> sections:
|
2000-03-06 20:49:58 +01:00
|
|
|
|
[.idata$2: Import Directory Table -- not needed]
|
2000-02-28 19:56:11 +01:00
|
|
|
|
.idata$4: Import Lookup Table
|
|
|
|
|
.idata$5: Import Address Table
|
|
|
|
|
|
|
|
|
|
Note we do not create a .idata$3 section as this is
|
|
|
|
|
created for us by the linker script. */
|
|
|
|
|
id4 = pe_ILF_make_a_section (& vars, ".idata$4", SIZEOF_IDATA4, 0);
|
|
|
|
|
id5 = pe_ILF_make_a_section (& vars, ".idata$5", SIZEOF_IDATA5, 0);
|
2000-03-06 20:49:58 +01:00
|
|
|
|
if (id4 == NULL || id5 == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Fill in the contents of these sections. */
|
|
|
|
|
if (import_name_type == IMPORT_ORDINAL)
|
|
|
|
|
{
|
|
|
|
|
if (ordinal == 0)
|
|
|
|
|
/* XXX - treat as IMPORT_NAME ??? */
|
|
|
|
|
abort ();
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#ifdef COFF_WITH_pex64
|
|
|
|
|
((unsigned int *) id4->contents)[0] = ordinal;
|
|
|
|
|
((unsigned int *) id4->contents)[1] = 0x80000000;
|
|
|
|
|
((unsigned int *) id5->contents)[0] = ordinal;
|
|
|
|
|
((unsigned int *) id5->contents)[1] = 0x80000000;
|
|
|
|
|
#else
|
2000-04-13 03:08:05 +02:00
|
|
|
|
* (unsigned int *) id4->contents = ordinal | 0x80000000;
|
|
|
|
|
* (unsigned int *) id5->contents = ordinal | 0x80000000;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
char * symbol;
|
2005-02-28 17:07:33 +01:00
|
|
|
|
unsigned int len;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Create .idata$6 - the Hint Name Table. */
|
|
|
|
|
id6 = pe_ILF_make_a_section (& vars, ".idata$6", SIZEOF_IDATA6, 0);
|
|
|
|
|
if (id6 == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* If necessary, trim the import symbol name. */
|
|
|
|
|
symbol = symbol_name;
|
|
|
|
|
|
2005-03-19 07:48:31 +01:00
|
|
|
|
/* As used by MS compiler, '_', '@', and '?' are alternative
|
|
|
|
|
forms of USER_LABEL_PREFIX, with '?' for c++ mangled names,
|
|
|
|
|
'@' used for fastcall (in C), '_' everywhere else. Only one
|
|
|
|
|
of these is used for a symbol. We strip this leading char for
|
|
|
|
|
IMPORT_NAME_NOPREFIX and IMPORT_NAME_UNDECORATE as per the
|
|
|
|
|
PE COFF 6.0 spec (section 8.3, Import Name Type). */
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (import_name_type != IMPORT_NAME)
|
2003-12-16 12:10:42 +01:00
|
|
|
|
{
|
2005-03-19 07:48:31 +01:00
|
|
|
|
char c = symbol[0];
|
|
|
|
|
if (c == '_' || c == '@' || c == '?')
|
|
|
|
|
symbol++;
|
2003-12-16 12:10:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-02-28 17:07:33 +01:00
|
|
|
|
len = strlen (symbol);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (import_name_type == IMPORT_NAME_UNDECORATE)
|
|
|
|
|
{
|
2005-02-28 17:07:33 +01:00
|
|
|
|
/* Truncate at the first '@'. */
|
|
|
|
|
char *at = strchr (symbol, '@');
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
2005-02-28 17:07:33 +01:00
|
|
|
|
if (at != NULL)
|
|
|
|
|
len = at - symbol;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
id6->contents[0] = ordinal & 0xff;
|
|
|
|
|
id6->contents[1] = ordinal >> 8;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2005-02-28 17:07:33 +01:00
|
|
|
|
memcpy ((char *) id6->contents + 2, symbol, len);
|
|
|
|
|
id6->contents[len + 2] = '\0';
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (import_name_type != IMPORT_ORDINAL)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
pe_ILF_make_a_reloc (&vars, (bfd_vma) 0, BFD_RELOC_RVA, id6);
|
|
|
|
|
pe_ILF_save_relocs (&vars, id4);
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
pe_ILF_make_a_reloc (&vars, (bfd_vma) 0, BFD_RELOC_RVA, id6);
|
|
|
|
|
pe_ILF_save_relocs (&vars, id5);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create extra sections depending upon the type of import we are dealing with. */
|
|
|
|
|
switch (import_type)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMPORT_CODE:
|
|
|
|
|
/* Create a .text section.
|
|
|
|
|
First we need to look up its contents in the jump table. */
|
|
|
|
|
for (i = NUM_ENTRIES (jtab); i--;)
|
|
|
|
|
{
|
|
|
|
|
if (jtab[i].size == 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (jtab[i].magic == magic)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/* If we did not find a matching entry something is wrong. */
|
|
|
|
|
if (i < 0)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
/* Create the .text section. */
|
|
|
|
|
text = pe_ILF_make_a_section (& vars, ".text", jtab[i].size, SEC_CODE);
|
|
|
|
|
if (text == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* Copy in the jump code. */
|
|
|
|
|
memcpy (text->contents, jtab[i].data, jtab[i].size);
|
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
/* Create an import symbol. */
|
|
|
|
|
pe_ILF_make_a_symbol (& vars, "__imp_", symbol_name, id5, 0);
|
|
|
|
|
imp_sym = vars.sym_ptr_ptr - 1;
|
|
|
|
|
imp_index = vars.sym_index - 1;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Create a reloc for the data in the text section. */
|
2001-01-02 20:22:56 +01:00
|
|
|
|
#ifdef MIPS_ARCH_MAGIC_WINCE
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (magic == MIPS_ARCH_MAGIC_WINCE)
|
|
|
|
|
{
|
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 11:57:26 +02:00
|
|
|
|
pe_ILF_make_a_symbol_reloc (&vars, (bfd_vma) 0, BFD_RELOC_HI16_S,
|
Index: sim/frv/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* traps.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
Index: sim/d10v/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* simops.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
Index: sim/common/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry"
with "struct bfd_symbol".
Index: ld/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* emultempl/pe.em, pe-dll.c: Replace "struct symbol_cache_entry"
with "struct bfd_symbol".
Index: bfd/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* syms.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
* vms.h, targets.c, section.c, reloc.c, peicode.h: Ditto.
* mipsbsd.c, elf.c, linker.c, elf-bfd.h, ecoff.c: Ditto.
* cpu-z8k.c, cpu-ns32k.c, cpu-h8500.c, bfd.c, bfd-in.h: Ditto.
* bfd-in2.h: Re-generate.
2003-10-31 06:32:46 +01:00
|
|
|
|
(struct bfd_symbol **) imp_sym,
|
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 11:57:26 +02:00
|
|
|
|
imp_index);
|
|
|
|
|
pe_ILF_make_a_reloc (&vars, (bfd_vma) 0, BFD_RELOC_LO16, text);
|
|
|
|
|
pe_ILF_make_a_symbol_reloc (&vars, (bfd_vma) 4, BFD_RELOC_LO16,
|
Index: sim/frv/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* traps.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
Index: sim/d10v/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* simops.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
Index: sim/common/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry"
with "struct bfd_symbol".
Index: ld/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* emultempl/pe.em, pe-dll.c: Replace "struct symbol_cache_entry"
with "struct bfd_symbol".
Index: bfd/ChangeLog
2003-10-30 Andrew Cagney <cagney@redhat.com>
* syms.c: Replace "struct symbol_cache_entry" with "struct
bfd_symbol".
* vms.h, targets.c, section.c, reloc.c, peicode.h: Ditto.
* mipsbsd.c, elf.c, linker.c, elf-bfd.h, ecoff.c: Ditto.
* cpu-z8k.c, cpu-ns32k.c, cpu-h8500.c, bfd.c, bfd-in.h: Ditto.
* bfd-in2.h: Re-generate.
2003-10-31 06:32:46 +01:00
|
|
|
|
(struct bfd_symbol **) imp_sym,
|
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 11:57:26 +02:00
|
|
|
|
imp_index);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
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 11:57:26 +02:00
|
|
|
|
pe_ILF_make_a_symbol_reloc (&vars, (bfd_vma) jtab[i].offset,
|
|
|
|
|
BFD_RELOC_32, (asymbol **) imp_sym,
|
|
|
|
|
imp_index);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
pe_ILF_save_relocs (& vars, text);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IMPORT_DATA:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
/* XXX code not yet written. */
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Initialise the bfd. */
|
|
|
|
|
memset (& internal_f, 0, sizeof (internal_f));
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
internal_f.f_magic = magic;
|
|
|
|
|
internal_f.f_symptr = 0;
|
|
|
|
|
internal_f.f_nsyms = 0;
|
|
|
|
|
internal_f.f_flags = F_AR32WR | F_LNNO; /* XXX is this correct ? */
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
if ( ! bfd_set_start_address (abfd, (bfd_vma) 0)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|| ! bfd_coff_set_arch_mach_hook (abfd, & internal_f))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (bfd_coff_mkobject_hook (abfd, (void *) & internal_f, NULL) == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
coff_data (abfd)->pe = 1;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
#ifdef THUMBPEMAGIC
|
2000-02-28 19:56:11 +01:00
|
|
|
|
if (vars.magic == THUMBPEMAGIC)
|
|
|
|
|
/* Stop some linker warnings about thumb code not supporting interworking. */
|
|
|
|
|
coff_data (abfd)->flags |= F_INTERWORK | F_INTERWORK_SET;
|
|
|
|
|
#endif
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Switch from file contents to memory contents. */
|
|
|
|
|
bfd_cache_close (abfd);
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
abfd->iostream = (void *) vars.bim;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
abfd->flags |= BFD_IN_MEMORY /* | HAS_LOCALS */;
|
|
|
|
|
abfd->where = 0;
|
|
|
|
|
obj_sym_filepos (abfd) = 0;
|
|
|
|
|
|
|
|
|
|
/* Now create a symbol describing the imported value. */
|
|
|
|
|
switch (import_type)
|
|
|
|
|
{
|
|
|
|
|
case IMPORT_CODE:
|
|
|
|
|
pe_ILF_make_a_symbol (& vars, "", symbol_name, text,
|
|
|
|
|
BSF_NOT_AT_END | BSF_FUNCTION);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-03-06 20:49:58 +01:00
|
|
|
|
/* Create an import symbol for the DLL, without the
|
|
|
|
|
.dll suffix. */
|
2005-02-20 15:59:07 +01:00
|
|
|
|
ptr = (bfd_byte *) strrchr (source_dll, '.');
|
2000-03-06 20:49:58 +01:00
|
|
|
|
if (ptr)
|
|
|
|
|
* ptr = 0;
|
|
|
|
|
pe_ILF_make_a_symbol (& vars, "__IMPORT_DESCRIPTOR_", source_dll, NULL, 0);
|
|
|
|
|
if (ptr)
|
|
|
|
|
* ptr = '.';
|
2000-02-28 19:56:11 +01:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IMPORT_DATA:
|
2000-03-06 20:49:58 +01:00
|
|
|
|
/* Nothing to do here. */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
default:
|
|
|
|
|
/* XXX code not yet written. */
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Point the bfd at the symbol table. */
|
|
|
|
|
obj_symbols (abfd) = vars.sym_cache;
|
|
|
|
|
bfd_get_symcount (abfd) = vars.sym_index;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
obj_raw_syments (abfd) = vars.native_syms;
|
|
|
|
|
obj_raw_syment_count (abfd) = vars.sym_index;
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
obj_coff_external_syms (abfd) = (void *) vars.esym_table;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
obj_coff_keep_syms (abfd) = TRUE;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
obj_convert (abfd) = vars.sym_table;
|
|
|
|
|
obj_conv_table_size (abfd) = vars.sym_index;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
obj_coff_strings (abfd) = vars.string_table;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
obj_coff_keep_strings (abfd) = TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
abfd->flags |= HAS_SYMS;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We have detected a Image Library Format archive element.
|
|
|
|
|
Decode the element and return the appropriate target. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-12-17 20:03:09 +01:00
|
|
|
|
static const bfd_target *
|
2000-02-28 19:56:11 +01:00
|
|
|
|
pe_ILF_object_p (bfd * abfd)
|
|
|
|
|
{
|
|
|
|
|
bfd_byte buffer[16];
|
|
|
|
|
bfd_byte * ptr;
|
2005-02-20 15:59:07 +01:00
|
|
|
|
char * symbol_name;
|
|
|
|
|
char * source_dll;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
unsigned int machine;
|
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 11:57:26 +02:00
|
|
|
|
bfd_size_type size;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
unsigned int ordinal;
|
|
|
|
|
unsigned int types;
|
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 11:57:26 +02:00
|
|
|
|
unsigned int magic;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Upon entry the first four buyes of the ILF header have
|
|
|
|
|
already been read. Now read the rest of the header. */
|
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 11:57:26 +02:00
|
|
|
|
if (bfd_bread (buffer, (bfd_size_type) 16, abfd) != 16)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
ptr = buffer;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* We do not bother to check the version number.
|
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 11:57:26 +02:00
|
|
|
|
version = H_GET_16 (abfd, ptr); */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += 2;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
machine = H_GET_16 (abfd, ptr);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += 2;
|
|
|
|
|
|
|
|
|
|
/* Check that the machine type is recognised. */
|
|
|
|
|
magic = 0;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
switch (machine)
|
|
|
|
|
{
|
|
|
|
|
case IMAGE_FILE_MACHINE_UNKNOWN:
|
|
|
|
|
case IMAGE_FILE_MACHINE_ALPHA:
|
|
|
|
|
case IMAGE_FILE_MACHINE_ALPHA64:
|
|
|
|
|
case IMAGE_FILE_MACHINE_IA64:
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_I386:
|
|
|
|
|
#ifdef I386MAGIC
|
|
|
|
|
magic = I386MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
|
case IMAGE_FILE_MACHINE_AMD64:
|
|
|
|
|
#ifdef AMD64MAGIC
|
|
|
|
|
magic = AMD64MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_M68K:
|
|
|
|
|
#ifdef MC68AGIC
|
|
|
|
|
magic = MC68MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_R3000:
|
|
|
|
|
case IMAGE_FILE_MACHINE_R4000:
|
|
|
|
|
case IMAGE_FILE_MACHINE_R10000:
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_MIPS16:
|
|
|
|
|
case IMAGE_FILE_MACHINE_MIPSFPU:
|
|
|
|
|
case IMAGE_FILE_MACHINE_MIPSFPU16:
|
|
|
|
|
#ifdef MIPS_ARCH_MAGIC_WINCE
|
|
|
|
|
magic = MIPS_ARCH_MAGIC_WINCE;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_SH3:
|
|
|
|
|
case IMAGE_FILE_MACHINE_SH4:
|
|
|
|
|
#ifdef SH_ARCH_MAGIC_WINCE
|
|
|
|
|
magic = SH_ARCH_MAGIC_WINCE;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_ARM:
|
|
|
|
|
#ifdef ARMPEMAGIC
|
|
|
|
|
magic = ARMPEMAGIC;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
#endif
|
2000-02-28 19:56:11 +01:00
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_THUMB:
|
|
|
|
|
#ifdef THUMBPEMAGIC
|
|
|
|
|
{
|
2000-12-21 19:40:21 +01:00
|
|
|
|
extern const bfd_target TARGET_LITTLE_SYM;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-06-13 02:30:46 +02:00
|
|
|
|
if (abfd->xvec == & TARGET_LITTLE_SYM)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
magic = THUMBPEMAGIC;
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
#endif
|
2000-02-28 19:56:11 +01:00
|
|
|
|
break;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case IMAGE_FILE_MACHINE_POWERPC:
|
|
|
|
|
/* We no longer support PowerPC. */
|
|
|
|
|
default:
|
|
|
|
|
_bfd_error_handler
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Unrecognised machine type (0x%x)"
|
|
|
|
|
" in Import Library Format archive"),
|
|
|
|
|
abfd, machine);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_error (bfd_error_malformed_archive);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (magic == 0)
|
|
|
|
|
{
|
|
|
|
|
_bfd_error_handler
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Recognised but unhandled machine type (0x%x)"
|
|
|
|
|
" in Import Library Format archive"),
|
|
|
|
|
abfd, machine);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return NULL;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
}
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
|
|
|
|
/* We do not bother to check the date.
|
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 11:57:26 +02:00
|
|
|
|
date = H_GET_32 (abfd, ptr); */
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += 4;
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
size = H_GET_32 (abfd, ptr);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += 4;
|
|
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
|
{
|
|
|
|
|
_bfd_error_handler
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: size field is zero in Import Library Format header"), abfd);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_error (bfd_error_malformed_archive);
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
ordinal = H_GET_16 (abfd, ptr);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
ptr += 2;
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
types = H_GET_16 (abfd, ptr);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* ptr += 2; */
|
|
|
|
|
|
|
|
|
|
/* Now read in the two strings that follow. */
|
|
|
|
|
ptr = bfd_alloc (abfd, size);
|
|
|
|
|
if (ptr == NULL)
|
|
|
|
|
return NULL;
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
if (bfd_bread (ptr, size, abfd) != size)
|
2002-07-30 07:49:24 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_release (abfd, ptr);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2000-02-28 19:56:11 +01:00
|
|
|
|
|
2005-02-20 15:59:07 +01:00
|
|
|
|
symbol_name = (char *) ptr;
|
|
|
|
|
source_dll = symbol_name + strlen (symbol_name) + 1;
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Verify that the strings are null terminated. */
|
2005-02-20 15:59:07 +01:00
|
|
|
|
if (ptr[size - 1] != 0
|
|
|
|
|
|| (bfd_size_type) ((bfd_byte *) source_dll - ptr) >= size)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
{
|
|
|
|
|
_bfd_error_handler
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: string not null terminated in ILF object file."), abfd);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
bfd_set_error (bfd_error_malformed_archive);
|
2002-07-30 07:49:24 +02:00
|
|
|
|
bfd_release (abfd, ptr);
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
/* Now construct the bfd. */
|
|
|
|
|
if (! pe_ILF_build_a_bfd (abfd, magic, symbol_name,
|
|
|
|
|
source_dll, ordinal, types))
|
2002-07-30 07:49:24 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_release (abfd, ptr);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return abfd->xvec;
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-18 18:26:28 +02:00
|
|
|
|
enum arch_type
|
|
|
|
|
{
|
|
|
|
|
arch_type_unknown,
|
|
|
|
|
arch_type_i386,
|
|
|
|
|
arch_type_x86_64
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static enum arch_type
|
|
|
|
|
pe_arch (const char *arch)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (arch, "i386") == 0 || strcmp (arch, "ia32") == 0)
|
|
|
|
|
return arch_type_i386;
|
|
|
|
|
|
|
|
|
|
if (strcmp (arch, "x86_64") == 0 || strcmp (arch, "x86-64") == 0)
|
|
|
|
|
return arch_type_x86_64;
|
|
|
|
|
|
|
|
|
|
return arch_type_unknown;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
static const bfd_target *
|
|
|
|
|
pe_bfd_object_p (bfd * abfd)
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_byte buffer[4];
|
2001-02-06 20:43:19 +01:00
|
|
|
|
struct external_PEI_DOS_hdr dos_hdr;
|
|
|
|
|
struct external_PEI_IMAGE_hdr image_hdr;
|
1999-12-17 20:03:09 +01:00
|
|
|
|
file_ptr offset;
|
2007-06-18 18:26:28 +02:00
|
|
|
|
const bfd_target *target;
|
2007-11-12 22:55:50 +01:00
|
|
|
|
struct bfd_preserve preserve;
|
1999-12-17 20:03:09 +01:00
|
|
|
|
|
|
|
|
|
/* Detect if this a Microsoft Import Library Format element. */
|
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 11:57:26 +02:00
|
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
|
|
|
|
|
|| bfd_bread (buffer, (bfd_size_type) 4, abfd) != 4)
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
if (H_GET_32 (abfd, buffer) == 0xffff0000)
|
2000-02-28 19:56:11 +01:00
|
|
|
|
return pe_ILF_object_p (abfd);
|
2001-01-02 20:22:56 +01: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 11:57:26 +02:00
|
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
|
|
|
|
|
|| bfd_bread (&dos_hdr, (bfd_size_type) sizeof (dos_hdr), abfd)
|
2001-02-06 20:43:19 +01:00
|
|
|
|
!= sizeof (dos_hdr))
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-06 20:43:19 +01:00
|
|
|
|
/* There are really two magic numbers involved; the magic number
|
|
|
|
|
that says this is a NT executable (PEI) and the magic number that
|
|
|
|
|
determines the architecture. The former is DOSMAGIC, stored in
|
|
|
|
|
the e_magic field. The latter is stored in the f_magic field.
|
|
|
|
|
If the NT magic number isn't valid, the architecture magic number
|
|
|
|
|
could be mimicked by some other field (specifically, the number
|
|
|
|
|
of relocs in section 3). Since this routine can only be called
|
|
|
|
|
correctly for a PEI file, check the e_magic number here, and, if
|
|
|
|
|
it doesn't match, clobber the f_magic number so that we don't get
|
|
|
|
|
a false match. */
|
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 11:57:26 +02:00
|
|
|
|
if (H_GET_16 (abfd, dos_hdr.e_magic) != DOSMAGIC)
|
2001-02-06 20:43:19 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-12-17 20:03:09 +01: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 11:57:26 +02:00
|
|
|
|
offset = H_GET_32 (abfd, dos_hdr.e_lfanew);
|
|
|
|
|
if (bfd_seek (abfd, offset, SEEK_SET) != 0
|
|
|
|
|
|| (bfd_bread (&image_hdr, (bfd_size_type) sizeof (image_hdr), abfd)
|
|
|
|
|
!= sizeof (image_hdr)))
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
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 11:57:26 +02:00
|
|
|
|
if (H_GET_32 (abfd, image_hdr.nt_signature) != 0x4550)
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2001-01-02 20:22:56 +01:00
|
|
|
|
|
1999-12-17 20:03:09 +01:00
|
|
|
|
/* Here is the hack. coff_object_p wants to read filhsz bytes to
|
2001-02-06 20:43:19 +01:00
|
|
|
|
pick up the COFF header for PE, see "struct external_PEI_filehdr"
|
|
|
|
|
in include/coff/pe.h. We adjust so that that will work. */
|
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 11:57:26 +02:00
|
|
|
|
if (bfd_seek (abfd, (file_ptr) (offset - sizeof (dos_hdr)), SEEK_SET) != 0)
|
1999-12-17 20:03:09 +01:00
|
|
|
|
{
|
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-12 22:55:50 +01:00
|
|
|
|
preserve.marker = NULL;
|
|
|
|
|
if (! bfd_preserve_save (abfd, &preserve))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2007-06-18 18:26:28 +02:00
|
|
|
|
target = coff_object_p (abfd);
|
|
|
|
|
if (target)
|
|
|
|
|
{
|
|
|
|
|
pe_data_type *pe = pe_data (abfd);
|
|
|
|
|
struct internal_extra_pe_aouthdr *i = &pe->pe_opthdr;
|
2008-02-14 16:20:26 +01:00
|
|
|
|
bfd_boolean efi = i->Subsystem == IMAGE_SUBSYSTEM_EFI_APPLICATION
|
|
|
|
|
|| i->Subsystem == IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
|
|
|
|
|
|| i->Subsystem == IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER;
|
2007-06-18 18:26:28 +02:00
|
|
|
|
enum arch_type arch;
|
|
|
|
|
const bfd_target * const *target_ptr;
|
|
|
|
|
|
|
|
|
|
/* Get the machine. */
|
2008-02-14 16:20:26 +01:00
|
|
|
|
if (bfd_target_efi_app_p (abfd->xvec))
|
|
|
|
|
arch = pe_arch (bfd_target_efi_app_arch (abfd->xvec));
|
|
|
|
|
else if (bfd_target_efi_bsdrv_p (abfd->xvec))
|
|
|
|
|
arch = pe_arch (bfd_target_efi_bsdrv_arch (abfd->xvec));
|
|
|
|
|
else if (bfd_target_efi_rtdrv_p (abfd->xvec))
|
|
|
|
|
arch = pe_arch (bfd_target_efi_rtdrv_arch (abfd->xvec));
|
2007-06-18 18:26:28 +02:00
|
|
|
|
else
|
|
|
|
|
arch = pe_arch (bfd_target_pei_arch (abfd->xvec));
|
|
|
|
|
|
2007-07-05 04:50:02 +02:00
|
|
|
|
/* Don't check PE vs. EFI if arch is unknown. */
|
|
|
|
|
if (arch == arch_type_unknown)
|
2007-11-12 22:55:50 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_preserve_finish (abfd, &preserve);
|
|
|
|
|
return target;
|
|
|
|
|
}
|
2007-07-05 04:50:02 +02:00
|
|
|
|
|
2007-06-18 18:26:28 +02:00
|
|
|
|
for (target_ptr = bfd_target_vector; *target_ptr != NULL;
|
|
|
|
|
target_ptr++)
|
|
|
|
|
{
|
|
|
|
|
if (*target_ptr == target
|
|
|
|
|
|| (*target_ptr)->flavour != bfd_target_coff_flavour)
|
|
|
|
|
continue;
|
|
|
|
|
|
2008-02-14 16:20:26 +01:00
|
|
|
|
if (bfd_target_efi_app_p (*target_ptr))
|
2007-06-18 18:26:28 +02:00
|
|
|
|
{
|
|
|
|
|
/* Skip incompatible arch. */
|
2008-02-14 16:20:26 +01:00
|
|
|
|
if (pe_arch (bfd_target_efi_app_arch (*target_ptr)) != arch)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (efi)
|
|
|
|
|
{
|
|
|
|
|
/* TARGET_PTR is an EFI backend. Don't match
|
|
|
|
|
TARGET with a EFI file. */
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_target_efi_bsdrv_p (*target_ptr))
|
|
|
|
|
{
|
|
|
|
|
/* Skip incompatible arch. */
|
|
|
|
|
if (pe_arch (bfd_target_efi_bsdrv_arch (*target_ptr)) != arch)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (efi)
|
|
|
|
|
{
|
|
|
|
|
/* TARGET_PTR is an EFI backend. Don't match
|
|
|
|
|
TARGET with a EFI file. */
|
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_target_efi_rtdrv_p (*target_ptr))
|
|
|
|
|
{
|
|
|
|
|
/* Skip incompatible arch. */
|
|
|
|
|
if (pe_arch (bfd_target_efi_rtdrv_arch (*target_ptr)) != arch)
|
2007-06-18 18:26:28 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2007-07-05 04:50:02 +02:00
|
|
|
|
if (efi)
|
|
|
|
|
{
|
2007-11-12 22:55:50 +01:00
|
|
|
|
no_match:
|
2007-07-05 04:50:02 +02:00
|
|
|
|
/* TARGET_PTR is an EFI backend. Don't match
|
|
|
|
|
TARGET with a EFI file. */
|
2007-11-12 22:55:50 +01:00
|
|
|
|
bfd_preserve_restore (abfd, &preserve);
|
2007-07-05 04:50:02 +02:00
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2007-06-18 18:26:28 +02:00
|
|
|
|
}
|
|
|
|
|
else if (bfd_target_pei_p (*target_ptr))
|
|
|
|
|
{
|
|
|
|
|
/* Skip incompatible arch. */
|
|
|
|
|
if (pe_arch (bfd_target_pei_arch (*target_ptr)) != arch)
|
|
|
|
|
continue;
|
|
|
|
|
|
2007-07-05 04:50:02 +02:00
|
|
|
|
if (!efi)
|
|
|
|
|
{
|
|
|
|
|
/* TARGET_PTR is a PE backend. Don't match
|
|
|
|
|
TARGET with a PE file. */
|
2007-11-12 22:55:50 +01:00
|
|
|
|
goto no_match;
|
2007-07-05 04:50:02 +02:00
|
|
|
|
}
|
2007-06-18 18:26:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-11-12 22:55:50 +01:00
|
|
|
|
|
|
|
|
|
bfd_preserve_finish (abfd, &preserve);
|
2007-06-18 18:26:28 +02:00
|
|
|
|
}
|
2007-11-12 22:55:50 +01:00
|
|
|
|
else
|
|
|
|
|
bfd_preserve_restore (abfd, &preserve);
|
2007-06-18 18:26:28 +02:00
|
|
|
|
|
|
|
|
|
return target;
|
1999-12-17 20:03:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define coff_object_p pe_bfd_object_p
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif /* COFF_IMAGE_WITH_PE */
|