1999-05-03 15:29:11 +08:00
|
|
|
/* BFD back-end for AIX on PS/2 core files.
|
|
|
|
This was based on trad-core.c, which was written by John Gilmore of
|
|
|
|
Cygnus Support.
|
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 17:57:26 +08:00
|
|
|
Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1996, 1998, 1999, 2000,
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
2001, 2002, 2004
|
1999-05-03 15:29:11 +08:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
Written by Minh Tran-Le <TRANLE@INTELLICORP.COM>.
|
|
|
|
Converted to back end form by Ian Lance Taylor <ian@cygnus.com>.
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
#include "coff/i386.h"
|
|
|
|
#include "coff/internal.h"
|
|
|
|
#include "libcoff.h"
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#if defined (_AIX) && defined (_I386)
|
2000-11-23 15:33:24 +08:00
|
|
|
#define NOCHECKS /* This is for coredump.h. */
|
|
|
|
#define _h_USER /* Avoid including user.h from coredump.h. */
|
1999-05-03 15:29:11 +08:00
|
|
|
#include <uinfo.h>
|
|
|
|
#include <sys/i386/coredump.h>
|
|
|
|
#endif /* _AIX && _I386 */
|
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
/* Maybe this could work on some other i386 but I have not tried it
|
1999-05-03 15:29:11 +08:00
|
|
|
* mtranle@paris - Tue Sep 24 12:49:35 1991
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COR_MAGIC
|
|
|
|
# define COR_MAGIC "core"
|
|
|
|
#endif
|
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
/* Need this cast because ptr is really void *. */
|
1999-05-03 15:29:11 +08:00
|
|
|
#define core_hdr(bfd) \
|
|
|
|
(((bfd->tdata.trad_core_data))->hdr)
|
|
|
|
#define core_section(bfd,n) \
|
|
|
|
(((bfd)->tdata.trad_core_data)->sections[n])
|
|
|
|
#define core_regsec(bfd) \
|
|
|
|
(((bfd)->tdata.trad_core_data)->reg_section)
|
|
|
|
#define core_reg2sec(bfd) \
|
|
|
|
(((bfd)->tdata.trad_core_data)->reg2_section)
|
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
/* These are stored in the bfd's tdata. */
|
1999-05-03 15:29:11 +08:00
|
|
|
struct trad_core_struct {
|
|
|
|
struct corehdr *hdr; /* core file header */
|
|
|
|
asection *reg_section;
|
|
|
|
asection *reg2_section;
|
|
|
|
asection *sections[MAX_CORE_SEGS];
|
|
|
|
};
|
|
|
|
|
|
|
|
static void swap_abort PARAMS ((void));
|
|
|
|
|
|
|
|
static const bfd_target *
|
|
|
|
aix386_core_file_p (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
2000-11-23 15:33:24 +08:00
|
|
|
int i, n;
|
1999-05-03 15:29:11 +08:00
|
|
|
unsigned char longbuf[4]; /* Raw bytes of various header fields */
|
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 17:57:26 +08:00
|
|
|
bfd_size_type core_size = sizeof (struct corehdr);
|
|
|
|
bfd_size_type amt;
|
1999-05-03 15:29:11 +08:00
|
|
|
struct corehdr *core;
|
|
|
|
struct mergem {
|
|
|
|
struct trad_core_struct coredata;
|
|
|
|
struct corehdr internal_core;
|
|
|
|
} *mergem;
|
|
|
|
|
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 17:57:26 +08:00
|
|
|
amt = sizeof (longbuf);
|
|
|
|
if (bfd_bread ((PTR) longbuf, amt, abfd) != amt)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
if (strncmp (longbuf, COR_MAGIC, 4))
|
|
|
|
return 0;
|
1999-05-03 15:29:11 +08: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 17:57:26 +08:00
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, 0) != 0)
|
2000-11-23 15:33:24 +08:00
|
|
|
return 0;
|
1999-05-03 15:29:11 +08: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 17:57:26 +08:00
|
|
|
amt = sizeof (struct mergem);
|
|
|
|
mergem = (struct mergem *) bfd_zalloc (abfd, amt);
|
1999-05-03 15:29:11 +08:00
|
|
|
if (mergem == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
core = &mergem->internal_core;
|
|
|
|
|
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 17:57:26 +08:00
|
|
|
if ((bfd_bread ((PTR) core, core_size, abfd)) != core_size)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_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 17:57:26 +08:00
|
|
|
loser:
|
2000-11-23 15:33:24 +08:00
|
|
|
bfd_release (abfd, (char *) mergem);
|
2002-01-05 21:11:33 +08:00
|
|
|
abfd->tdata.any = NULL;
|
|
|
|
bfd_section_list_clear (abfd);
|
1999-05-03 15:29:11 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_tdata (abfd, &mergem->coredata);
|
|
|
|
core_hdr (abfd) = core;
|
|
|
|
|
2002-01-05 21:11:33 +08:00
|
|
|
/* Create the sections. */
|
|
|
|
core_regsec (abfd) = bfd_make_section_anyway (abfd, ".reg");
|
1999-05-03 15:29:11 +08:00
|
|
|
if (core_regsec (abfd) == 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 17:57:26 +08:00
|
|
|
goto loser;
|
|
|
|
|
2002-01-05 21:11:33 +08:00
|
|
|
core_regsec (abfd)->flags = SEC_HAS_CONTENTS;
|
|
|
|
core_regsec (abfd)->_raw_size = sizeof (core->cd_regs);
|
|
|
|
core_regsec (abfd)->vma = (bfd_vma) -1;
|
|
|
|
|
|
|
|
/* We'll access the regs afresh in the core file, like any section. */
|
|
|
|
core_regsec (abfd)->filepos =
|
|
|
|
(file_ptr) offsetof (struct corehdr, cd_regs[0]);
|
|
|
|
|
|
|
|
core_reg2sec (abfd) = bfd_make_section_anyway (abfd, ".reg2");
|
1999-05-03 15:29:11 +08:00
|
|
|
if (core_reg2sec (abfd) == 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 17:57:26 +08:00
|
|
|
/* bfd_release frees everything allocated after it's arg. */
|
|
|
|
goto loser;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2002-01-05 21:11:33 +08:00
|
|
|
core_reg2sec (abfd)->flags = SEC_HAS_CONTENTS;
|
|
|
|
core_reg2sec (abfd)->_raw_size = sizeof (core->cd_fpregs);
|
|
|
|
core_reg2sec (abfd)->vma = (bfd_vma) -1;
|
|
|
|
core_reg2sec (abfd)->filepos =
|
|
|
|
(file_ptr) offsetof (struct corehdr, cd_fpregs);
|
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
for (i = 0, n = 0; (i < MAX_CORE_SEGS) && (core->cd_segs[i].cs_type); i++)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
2002-01-05 21:11:33 +08:00
|
|
|
const char *sname;
|
|
|
|
flagword flags;
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
if (core->cd_segs[i].cs_offset == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (core->cd_segs[i].cs_type)
|
|
|
|
{
|
|
|
|
case COR_TYPE_DATA:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".data";
|
|
|
|
flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
case COR_TYPE_STACK:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".stack";
|
|
|
|
flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
case COR_TYPE_LIBDATA:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".libdata";
|
|
|
|
flags = SEC_ALLOC + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
case COR_TYPE_WRITE:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".writeable";
|
|
|
|
flags = SEC_ALLOC + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
case COR_TYPE_MSC:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".misc";
|
|
|
|
flags = SEC_ALLOC + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
default:
|
2002-01-05 21:11:33 +08:00
|
|
|
sname = ".unknown";
|
|
|
|
flags = SEC_ALLOC + SEC_HAS_CONTENTS;
|
1999-05-03 15:29:11 +08:00
|
|
|
break;
|
|
|
|
}
|
2002-01-05 21:11:33 +08:00
|
|
|
core_section (abfd, n) = bfd_make_section_anyway (abfd, sname);
|
|
|
|
if (core_section (abfd, n) == NULL)
|
|
|
|
goto loser;
|
|
|
|
|
|
|
|
core_section (abfd, n)->flags = flags;
|
1999-05-03 15:29:11 +08:00
|
|
|
core_section (abfd, n)->_raw_size = core->cd_segs[i].cs_len;
|
|
|
|
core_section (abfd, n)->vma = core->cd_segs[i].cs_address;
|
|
|
|
core_section (abfd, n)->filepos = core->cd_segs[i].cs_offset;
|
|
|
|
core_section (abfd, n)->alignment_power = 2;
|
2002-01-05 21:11:33 +08:00
|
|
|
n++;
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return abfd->xvec;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
aix386_core_file_failing_command (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return core_hdr (abfd)->cd_comm;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
aix386_core_file_failing_signal (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return core_hdr (abfd)->cd_cursig;
|
|
|
|
}
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
static bfd_boolean
|
1999-05-03 15:29:11 +08:00
|
|
|
aix386_core_file_matches_executable_p (core_bfd, exec_bfd)
|
|
|
|
bfd *core_bfd;
|
|
|
|
bfd *exec_bfd;
|
|
|
|
{
|
2000-11-23 15:33:24 +08:00
|
|
|
/* FIXME: We have no way of telling at this point. */
|
2002-11-30 16:39:46 +08:00
|
|
|
return TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If somebody calls any byte-swapping routines, shoot them. */
|
2000-11-23 15:33:24 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
static void
|
2000-11-21 03:05:12 +08:00
|
|
|
swap_abort ()
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
2000-11-23 15:33:24 +08:00
|
|
|
/* This way doesn't require any declaration for ANSI to fuck up. */
|
|
|
|
abort ();
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|
2000-11-23 15:33:24 +08:00
|
|
|
|
* bfd-in.h (bfd_getb64, bfd_getl64): Replace bfd_byte* with void*.
(bfd_getb32, bfd_getl32, bfd_getb16, bfd_getl16): Likewise.
(bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_getb_signed_32, bfd_getl_signed_32): Likewise.
(bfd_getb_signed_16, bfd_getl_signed_16): Likewise.
(bfd_putb64, bfd_putl64, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb16, bfd_putl16, bfd_get_bits, bfd_put_bits): Likewise.
* libbfd.c: Likewise in function definitions.
(bfd_put_8): Mask with 0xff rather than casting to char.
(bfd_putb16, bfd_putl16, bfd_putb32, bfd_putl32): Likewise.
(bfd_putb64, bfd_putl64, bfd_put_bits): Likewise.
(H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8): Likewise.
(H_GET_64, H_GET_32, H_GET_16, H_GET_8): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Likewise.
* libaout.h (H_PUT_64 H_PUT_32, H_PUT_16): Remove casts, simplify.
(H_PUT_S64, H_PUT_S32, H_PUT_S16): Likewise.
(H_GET_64, H_GET_32, H_GET_16): Likewise.
(H_GET_S64, H_GET_S32, H_GET_S16): Likewise.
* archive.c (do_slurp_coff_armap): Update swap prototype.
* coff-tic54x.c (tic54x_getl32): Replace bfd_byte* with void*.
(tic54x_getl_signed_32): Likewise.
(tic54x_putl32): Likewise. Mask with 0xff rather than casting to char.
* mach-o.c (bfd_mach_o_read_header): Update get32 prototype.
* pdp11.c (bfd_getp32): Make static, replace bfd_byte* with void*.
(bfd_getp_signed_32, bfd_putp32): Likewise.
* targets.c (struct bfd_target): Use void* in place of bfd_byte* for
bfd_getx64, bfd_getx_signed_64, bfd_putx64, bfd_getx32,
bfd_getx_signed_32, bfd_putx32, bfd_getx16, bfd_getx_signed_16,
bfd_putx16, bfd_h_getx64, bfd_h_getx_signed_64, bfd_h_putx64,
bfd_h_getx32, bfd_h_getx_signed_32, bfd_h_putx32, bfd_h_getx16,
bfd_h_getx_signed_16, bfd_h_putx16.
* aix386-core.c (NO_GET, NO_GETS, NO_PUT): Update prototypes.
* hppabsd-core.c: Similarly. Rename NO_SIGNED_GET to NO_GETS.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* bfd-in2.h: Regenerate.
2004-03-15 20:23:11 +08:00
|
|
|
#define NO_GET ((bfd_vma (*) (const void *)) swap_abort)
|
|
|
|
#define NO_PUT ((void (*) (bfd_vma, void *)) swap_abort)
|
|
|
|
#define NO_GETS ((bfd_signed_vma (*) (const void *)) swap_abort)
|
* bfd-in.h (bfd_int64_t, bfd_uint64_t): New types.
(BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Don't define here.
(bfd_getb64, bfd_getl64, bfd_get_bits): Return bfd_uint64_t.
(bfd_getb_signed_64, bfd_getl_signed_64): Return bfd_int64_t.
(bfd_putb64, bfd_putl64, bfd_put_bits): Accept bfd_uint64_t.
* configure.in (HOST_U_64BIT_TYPE): Set when sizeof long is 8.
(BFD_HOST_64_BIT_DEFINED, BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Set
when using long.
* libbfd.c (EIGHT_GAZILLION, COERCE64): Use bfd_int64_t.
(bfd_getb64): Return bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_getl64, bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_putb64): Accept bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_putl64, bfd_put_bits, bfd_get_bits): Likewise.
* dwarf2.c (struct attribute): Use bfd_int64_t and bfd_uint64_t.
(read_8_bytes, read_indirect_string, read_address): Likewise.
(read_abbrevs, parse_comp_unit): Likewise.
* targets.c (struct bfd_target): Likewise.
* aix386-core.c (NO_GET64, NO_PUT64, NO_GETS64): Define and use.
* hppabsd-core.c: Likewise. Formatting.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2004-03-15 22:21:43 +08:00
|
|
|
#define NO_GET64 ((bfd_uint64_t (*) (const void *)) swap_abort)
|
|
|
|
#define NO_PUT64 ((void (*) (bfd_uint64_t, void *)) swap_abort)
|
|
|
|
#define NO_GETS64 ((bfd_int64_t (*) (const void *)) swap_abort)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2000-11-23 15:33:24 +08:00
|
|
|
const bfd_target aix386_core_vec = {
|
|
|
|
"aix386-core",
|
|
|
|
bfd_target_unknown_flavour,
|
|
|
|
BFD_ENDIAN_BIG, /* target byte order */
|
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 17:57:26 +08:00
|
|
|
BFD_ENDIAN_BIG, /* target headers byte order */
|
1999-05-03 15:29:11 +08:00
|
|
|
(HAS_RELOC | EXEC_P | /* object flags */
|
|
|
|
HAS_LINENO | HAS_DEBUG |
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT),
|
|
|
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
|
2000-11-23 15:33:24 +08:00
|
|
|
0, /* leading underscore */
|
|
|
|
' ', /* ar_pad_char */
|
|
|
|
16, /* ar_max_namelen */
|
* bfd-in.h (bfd_int64_t, bfd_uint64_t): New types.
(BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Don't define here.
(bfd_getb64, bfd_getl64, bfd_get_bits): Return bfd_uint64_t.
(bfd_getb_signed_64, bfd_getl_signed_64): Return bfd_int64_t.
(bfd_putb64, bfd_putl64, bfd_put_bits): Accept bfd_uint64_t.
* configure.in (HOST_U_64BIT_TYPE): Set when sizeof long is 8.
(BFD_HOST_64_BIT_DEFINED, BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Set
when using long.
* libbfd.c (EIGHT_GAZILLION, COERCE64): Use bfd_int64_t.
(bfd_getb64): Return bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_getl64, bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_putb64): Accept bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_putl64, bfd_put_bits, bfd_get_bits): Likewise.
* dwarf2.c (struct attribute): Use bfd_int64_t and bfd_uint64_t.
(read_8_bytes, read_indirect_string, read_address): Likewise.
(read_abbrevs, parse_comp_unit): Likewise.
* targets.c (struct bfd_target): Likewise.
* aix386-core.c (NO_GET64, NO_PUT64, NO_GETS64): Define and use.
* hppabsd-core.c: Likewise. Formatting.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2004-03-15 22:21:43 +08:00
|
|
|
NO_GET64, NO_GETS64, NO_PUT64,
|
2000-11-23 15:33:24 +08:00
|
|
|
NO_GET, NO_GETS, NO_PUT,
|
|
|
|
NO_GET, NO_GETS, NO_PUT, /* data */
|
* bfd-in.h (bfd_int64_t, bfd_uint64_t): New types.
(BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Don't define here.
(bfd_getb64, bfd_getl64, bfd_get_bits): Return bfd_uint64_t.
(bfd_getb_signed_64, bfd_getl_signed_64): Return bfd_int64_t.
(bfd_putb64, bfd_putl64, bfd_put_bits): Accept bfd_uint64_t.
* configure.in (HOST_U_64BIT_TYPE): Set when sizeof long is 8.
(BFD_HOST_64_BIT_DEFINED, BFD_HOST_64_BIT, BFD_HOST_U_64_BIT): Set
when using long.
* libbfd.c (EIGHT_GAZILLION, COERCE64): Use bfd_int64_t.
(bfd_getb64): Return bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_getl64, bfd_getb_signed_64, bfd_getl_signed_64): Likewise.
(bfd_putb64): Accept bfd_uint64_t. Enable when BFD_HOST_64_BIT.
(bfd_putl64, bfd_put_bits, bfd_get_bits): Likewise.
* dwarf2.c (struct attribute): Use bfd_int64_t and bfd_uint64_t.
(read_8_bytes, read_indirect_string, read_address): Likewise.
(read_abbrevs, parse_comp_unit): Likewise.
* targets.c (struct bfd_target): Likewise.
* aix386-core.c (NO_GET64, NO_PUT64, NO_GETS64): Define and use.
* hppabsd-core.c: Likewise. Formatting.
* hpux-core.c: Likewise.
* irix-core.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
* configure: Regenerate.
* bfd-in2.h: Regenerate.
2004-03-15 22:21:43 +08:00
|
|
|
NO_GET64, NO_GETS64, NO_PUT64,
|
2000-11-23 15:33:24 +08:00
|
|
|
NO_GET, NO_GETS, NO_PUT,
|
|
|
|
NO_GET, NO_GETS, NO_PUT, /* hdrs */
|
|
|
|
|
|
|
|
{_bfd_dummy_target, _bfd_dummy_target,
|
|
|
|
_bfd_dummy_target, aix386_core_file_p},
|
|
|
|
{bfd_false, bfd_false, /* bfd_create_object */
|
|
|
|
bfd_false, bfd_false},
|
|
|
|
{bfd_false, bfd_false, /* bfd_write_contents */
|
|
|
|
bfd_false, bfd_false},
|
|
|
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (_bfd_generic),
|
|
|
|
BFD_JUMP_TABLE_COPY (_bfd_generic),
|
|
|
|
BFD_JUMP_TABLE_CORE (aix386),
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
|
|
|
|
BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
|
|
|
|
BFD_JUMP_TABLE_WRITE (_bfd_generic),
|
|
|
|
BFD_JUMP_TABLE_LINK (_bfd_nolink),
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
(PTR) 0
|
1999-05-03 15:29:11 +08:00
|
|
|
};
|