1999-05-03 09:29:11 +02:00
|
|
|
/* ELF core file support for BFD.
|
2001-03-08 22:04:02 +01:00
|
|
|
Copyright 1995, 1996, 1997, 1998, 2000, 2001
|
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
char*
|
|
|
|
elf_core_file_failing_command (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return elf_tdata (abfd)->core_command;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
elf_core_file_failing_signal (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return elf_tdata (abfd)->core_signal;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean
|
|
|
|
elf_core_file_matches_executable_p (core_bfd, exec_bfd)
|
|
|
|
bfd *core_bfd;
|
|
|
|
bfd *exec_bfd;
|
|
|
|
{
|
|
|
|
char* corename;
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* xvecs must match if both are ELF files for the same target. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (core_bfd->xvec != exec_bfd->xvec)
|
|
|
|
{
|
|
|
|
bfd_set_error (bfd_error_system_call);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* See if the name in the corefile matches the executable name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
corename = elf_tdata (core_bfd)->core_program;
|
|
|
|
if (corename != NULL)
|
|
|
|
{
|
|
|
|
const char* execname = strrchr (exec_bfd->filename, '/');
|
|
|
|
execname = execname ? execname + 1 : exec_bfd->filename;
|
|
|
|
|
|
|
|
if (strcmp(execname, corename) != 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Core files are simply standard ELF formatted files that partition
|
|
|
|
the file using the execution view of the file (program header table)
|
|
|
|
rather than the linking view. In fact, there is no section header
|
|
|
|
table in a core file.
|
|
|
|
|
|
|
|
The process status information (including the contents of the general
|
|
|
|
register set) and the floating point register set are stored in a
|
|
|
|
segment of type PT_NOTE. We handcraft a couple of extra bfd sections
|
|
|
|
that allow standard bfd access to the general registers (.reg) and the
|
|
|
|
floating point registers (.reg2).
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
const bfd_target *
|
|
|
|
elf_core_file_p (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
Elf_External_Ehdr x_ehdr; /* Elf file header, external form */
|
|
|
|
Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
|
2001-12-18 08:12:19 +01:00
|
|
|
Elf_Internal_Phdr *i_phdrp; /* Elf program header, internal form */
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned int phindex;
|
|
|
|
struct elf_backend_data *ebd;
|
2001-12-18 08:12:19 +01:00
|
|
|
struct bfd_preserve preserve;
|
2000-04-07 22:27:29 +02:00
|
|
|
struct elf_obj_tdata *new_tdata = 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
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-12-18 08:12:19 +01:00
|
|
|
preserve.arch_info = abfd->arch_info;
|
2001-11-02 14:12:56 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Read in the ELF header in external format. */
|
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) &x_ehdr, (bfd_size_type) sizeof (x_ehdr), abfd)
|
|
|
|
!= sizeof (x_ehdr))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Check the magic number. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (elf_file_p (&x_ehdr) == false)
|
2000-06-19 03:22:44 +02:00
|
|
|
goto wrong;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* FIXME: Check EI_VERSION here ! */
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Check the address size ("class"). */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (x_ehdr.e_ident[EI_CLASS] != ELFCLASS)
|
|
|
|
goto wrong;
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Check the byteorder. */
|
1999-05-03 09:29:11 +02:00
|
|
|
switch (x_ehdr.e_ident[EI_DATA])
|
|
|
|
{
|
|
|
|
case ELFDATA2MSB: /* Big-endian */
|
|
|
|
if (! bfd_big_endian (abfd))
|
|
|
|
goto wrong;
|
|
|
|
break;
|
|
|
|
case ELFDATA2LSB: /* Little-endian */
|
|
|
|
if (! bfd_little_endian (abfd))
|
|
|
|
goto wrong;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto wrong;
|
|
|
|
}
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Give abfd an elf_obj_tdata. */
|
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
|
|
|
amt = sizeof (struct elf_obj_tdata);
|
|
|
|
new_tdata = (struct elf_obj_tdata *) bfd_zalloc (abfd, amt);
|
2000-04-07 22:27:29 +02:00
|
|
|
if (new_tdata == NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
return NULL;
|
2001-12-18 08:12:19 +01:00
|
|
|
preserve.tdata = elf_tdata (abfd);
|
2001-01-03 23:53:39 +01:00
|
|
|
elf_tdata (abfd) = new_tdata;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-12-18 08:12:19 +01:00
|
|
|
/* Clear section information, since there might be a recognized bfd that
|
|
|
|
we now check if we can replace, and we don't want to append to it. */
|
|
|
|
preserve.sections = abfd->sections;
|
|
|
|
preserve.section_tail = abfd->section_tail;
|
|
|
|
preserve.section_count = abfd->section_count;
|
|
|
|
preserve.section_htab = abfd->section_htab;
|
|
|
|
abfd->sections = NULL;
|
|
|
|
abfd->section_tail = &abfd->sections;
|
|
|
|
abfd->section_count = 0;
|
|
|
|
if (!bfd_hash_table_init (&abfd->section_htab, bfd_section_hash_newfunc))
|
|
|
|
goto fail;
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Swap in the rest of the header, now that we have the byte order. */
|
1999-05-03 09:29:11 +02:00
|
|
|
i_ehdrp = elf_elfheader (abfd);
|
|
|
|
elf_swap_ehdr_in (abfd, &x_ehdr, i_ehdrp);
|
|
|
|
|
|
|
|
#if DEBUG & 1
|
|
|
|
elf_debug_file (i_ehdrp);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ebd = get_elf_backend_data (abfd);
|
|
|
|
|
|
|
|
/* Check that the ELF e_machine field matches what this particular
|
|
|
|
BFD format expects. */
|
|
|
|
|
|
|
|
if (ebd->elf_machine_code != i_ehdrp->e_machine
|
|
|
|
&& (ebd->elf_machine_alt1 == 0
|
|
|
|
|| i_ehdrp->e_machine != ebd->elf_machine_alt1)
|
|
|
|
&& (ebd->elf_machine_alt2 == 0
|
|
|
|
|| i_ehdrp->e_machine != ebd->elf_machine_alt2))
|
|
|
|
{
|
|
|
|
const bfd_target * const *target_ptr;
|
|
|
|
|
|
|
|
if (ebd->elf_machine_code != EM_NONE)
|
|
|
|
goto wrong;
|
|
|
|
|
|
|
|
/* This is the generic ELF target. Let it match any ELF target
|
|
|
|
for which we do not have a specific backend. */
|
|
|
|
|
|
|
|
for (target_ptr = bfd_target_vector; *target_ptr != NULL; target_ptr++)
|
|
|
|
{
|
|
|
|
struct elf_backend_data *back;
|
|
|
|
|
|
|
|
if ((*target_ptr)->flavour != bfd_target_elf_flavour)
|
|
|
|
continue;
|
|
|
|
back = (struct elf_backend_data *) (*target_ptr)->backend_data;
|
|
|
|
if (back->elf_machine_code == i_ehdrp->e_machine)
|
|
|
|
{
|
|
|
|
/* target_ptr is an ELF backend which matches this
|
|
|
|
object file, so reject the generic ELF target. */
|
|
|
|
goto wrong;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is no program header, or the type is not a core file, then
|
2001-01-03 23:53:39 +01:00
|
|
|
we are hosed. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (i_ehdrp->e_phoff == 0 || i_ehdrp->e_type != ET_CORE)
|
|
|
|
goto wrong;
|
|
|
|
|
|
|
|
/* Does BFD's idea of the phdr size match the size
|
|
|
|
recorded in the file? */
|
|
|
|
if (i_ehdrp->e_phentsize != sizeof (Elf_External_Phdr))
|
|
|
|
goto wrong;
|
|
|
|
|
2000-12-15 19:53:04 +01:00
|
|
|
/* Move to the start of the program headers. */
|
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) i_ehdrp->e_phoff, SEEK_SET) != 0)
|
2000-12-15 19:53:04 +01:00
|
|
|
goto wrong;
|
2001-01-03 23:53:39 +01:00
|
|
|
|
|
|
|
/* Allocate space for the program headers. */
|
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
|
|
|
amt = sizeof (*i_phdrp) * i_ehdrp->e_phnum;
|
|
|
|
i_phdrp = (Elf_Internal_Phdr *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (!i_phdrp)
|
2000-04-07 22:27:29 +02:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
elf_tdata (abfd)->phdr = i_phdrp;
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Read and convert to internal form. */
|
1999-05-03 09:29:11 +02:00
|
|
|
for (phindex = 0; phindex < i_ehdrp->e_phnum; ++phindex)
|
|
|
|
{
|
|
|
|
Elf_External_Phdr x_phdr;
|
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) &x_phdr, (bfd_size_type) sizeof (x_phdr), abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
!= sizeof (x_phdr))
|
2000-04-07 22:27:29 +02:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
elf_swap_phdr_in (abfd, &x_phdr, i_phdrp + phindex);
|
|
|
|
}
|
|
|
|
|
2002-01-28 17:48:52 +01:00
|
|
|
/* Set the machine architecture. Do this before processing the
|
|
|
|
program headers since we need to know the architecture type
|
|
|
|
when processing the notes of some systems' core files. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! bfd_default_set_arch_mach (abfd, ebd->arch, 0))
|
|
|
|
{
|
|
|
|
/* It's OK if this fails for the generic target. */
|
|
|
|
if (ebd->elf_machine_code != EM_NONE)
|
2000-04-07 22:27:29 +02:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2002-01-28 00:27:23 +01:00
|
|
|
/* Process each program header. */
|
|
|
|
for (phindex = 0; phindex < i_ehdrp->e_phnum; ++phindex)
|
|
|
|
{
|
|
|
|
if (! bfd_section_from_phdr (abfd, i_phdrp + phindex, (int) phindex))
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2001-01-03 23:53:39 +01:00
|
|
|
/* Save the entry point from the ELF header. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_get_start_address (abfd) = i_ehdrp->e_entry;
|
|
|
|
|
2000-04-07 05:59:23 +02:00
|
|
|
/* Let the backend double check the format and override global
|
|
|
|
information. */
|
|
|
|
if (ebd->elf_backend_object_p)
|
|
|
|
{
|
|
|
|
if ((*ebd->elf_backend_object_p) (abfd) == false)
|
|
|
|
goto wrong;
|
|
|
|
}
|
|
|
|
|
2001-12-18 08:12:19 +01:00
|
|
|
bfd_hash_table_free (&preserve.section_htab);
|
1999-05-03 09:29:11 +02:00
|
|
|
return abfd->xvec;
|
2000-04-07 22:27:29 +02:00
|
|
|
|
|
|
|
wrong:
|
2001-11-02 14:12:56 +01:00
|
|
|
/* There is way too much undoing of half-known state here. The caller,
|
|
|
|
bfd_check_format_matches, really shouldn't iterate on live bfd's to
|
|
|
|
check match/no-match like it does. We have to rely on that a call to
|
|
|
|
bfd_default_set_arch_mach with the previously known mach, undoes what
|
|
|
|
was done by the first bfd_default_set_arch_mach (with mach 0) here.
|
|
|
|
For this to work, only elf-data and the mach may be changed by the
|
|
|
|
target-specific elf_backend_object_p function. Note that saving the
|
|
|
|
whole bfd here and restoring it would be even worse; the first thing
|
|
|
|
you notice is that the cached bfd file position gets out of sync. */
|
2000-04-07 22:27:29 +02:00
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
2001-12-18 08:12:19 +01:00
|
|
|
|
2000-04-07 22:27:29 +02:00
|
|
|
fail:
|
2001-12-18 08:12:19 +01:00
|
|
|
abfd->arch_info = preserve.arch_info;
|
2000-04-07 22:27:29 +02:00
|
|
|
if (new_tdata != NULL)
|
2001-12-18 08:12:19 +01:00
|
|
|
{
|
|
|
|
/* bfd_release frees all memory more recently bfd_alloc'd than
|
|
|
|
its arg, as well as its arg. */
|
|
|
|
bfd_release (abfd, new_tdata);
|
|
|
|
elf_tdata (abfd) = preserve.tdata;
|
|
|
|
abfd->section_htab = preserve.section_htab;
|
|
|
|
abfd->sections = preserve.sections;
|
|
|
|
abfd->section_tail = preserve.section_tail;
|
|
|
|
abfd->section_count = preserve.section_count;
|
|
|
|
}
|
2000-04-07 22:27:29 +02:00
|
|
|
return NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|