1999-05-03 09:29:11 +02:00
|
|
|
/* BFD back end for Lynx core files
|
2002-01-05 14:11:33 +01:00
|
|
|
Copyright 1993, 1994, 1995, 2001, 2002 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
Written by Stu Grossman of Cygnus Support.
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
#ifdef LYNX_CORE
|
|
|
|
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/kernel.h>
|
2001-01-03 20:26:07 +01:00
|
|
|
/* sys/kernel.h should define this, but doesn't always, sigh. */
|
1999-05-03 09:29:11 +02:00
|
|
|
#ifndef __LYNXOS
|
|
|
|
#define __LYNXOS
|
|
|
|
#endif
|
|
|
|
#include <sys/mem.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/itimer.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
|
|
|
|
/* These are stored in the bfd's tdata */
|
|
|
|
|
2001-01-03 20:26:07 +01:00
|
|
|
struct lynx_core_struct
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
int sig;
|
|
|
|
char cmd[PNMLEN + 1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define core_hdr(bfd) ((bfd)->tdata.lynx_core_data)
|
|
|
|
#define core_signal(bfd) (core_hdr(bfd)->sig)
|
|
|
|
#define core_command(bfd) (core_hdr(bfd)->cmd)
|
|
|
|
|
|
|
|
/* Handle Lynx core dump file. */
|
|
|
|
|
|
|
|
static asection *
|
|
|
|
make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
|
|
|
|
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
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
flagword flags;
|
|
|
|
bfd_size_type _raw_size;
|
|
|
|
bfd_vma vma;
|
|
|
|
file_ptr filepos;
|
|
|
|
{
|
|
|
|
asection *asect;
|
|
|
|
char *newname;
|
|
|
|
|
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
|
|
|
newname = bfd_alloc (abfd, (bfd_size_type) strlen (name) + 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (!newname)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strcpy (newname, name);
|
|
|
|
|
|
|
|
asect = bfd_make_section (abfd, newname);
|
|
|
|
if (!asect)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
asect->flags = flags;
|
|
|
|
asect->_raw_size = _raw_size;
|
|
|
|
asect->vma = vma;
|
|
|
|
asect->filepos = filepos;
|
|
|
|
asect->alignment_power = 2;
|
|
|
|
|
|
|
|
return asect;
|
|
|
|
}
|
|
|
|
|
|
|
|
const bfd_target *
|
|
|
|
lynx_core_file_p (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
int secnum;
|
|
|
|
struct pssentry pss;
|
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 tcontext_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
core_st_t *threadp;
|
|
|
|
int pagesize;
|
|
|
|
asection *newsect;
|
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
|
|
|
|
|
|
|
pagesize = getpagesize (); /* Serious cross-target issue here... This
|
|
|
|
really needs to come from a system-specific
|
|
|
|
header file. */
|
|
|
|
|
|
|
|
/* Get the pss entry from the core file */
|
|
|
|
|
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)
|
1999-05-03 09:29:11 +02: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
|
|
|
amt = sizeof pss;
|
|
|
|
if (bfd_bread ((void *) &pss, amt, abfd) != amt)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Too small to be a core file */
|
|
|
|
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
|
|
|
amt = sizeof (struct lynx_core_struct);
|
|
|
|
core_hdr (abfd) = (struct lynx_core_struct *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (!core_hdr (abfd))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strncpy (core_command (abfd), pss.pname, PNMLEN + 1);
|
|
|
|
|
|
|
|
/* Compute the size of the thread contexts */
|
|
|
|
|
|
|
|
tcontext_size = pss.threadcnt * sizeof (core_st_t);
|
|
|
|
|
|
|
|
/* Allocate space for the thread contexts */
|
|
|
|
|
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
|
|
|
threadp = (core_st_t *) bfd_alloc (abfd, tcontext_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (!threadp)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Save thread contexts */
|
|
|
|
|
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) pagesize, SEEK_SET) != 0)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02: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 ((void *) threadp, tcontext_size, abfd) != tcontext_size)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Probably too small to be a core file */
|
|
|
|
if (bfd_get_error () != bfd_error_system_call)
|
|
|
|
bfd_set_error (bfd_error_wrong_format);
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2001-01-03 20:26:07 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
core_signal (abfd) = threadp->currsig;
|
|
|
|
|
|
|
|
newsect = make_bfd_asection (abfd, ".stack",
|
|
|
|
SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
|
|
|
|
pss.ssize,
|
|
|
|
pss.slimit,
|
|
|
|
pagesize + tcontext_size);
|
|
|
|
if (!newsect)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
newsect = make_bfd_asection (abfd, ".data",
|
|
|
|
SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
|
|
|
|
pss.data_len + pss.bss_len,
|
|
|
|
pss.data_start,
|
|
|
|
pagesize + tcontext_size + pss.ssize
|
|
|
|
#if defined (SPARC) || defined (__SPARC__)
|
|
|
|
/* SPARC Lynx seems to start dumping
|
|
|
|
the .data section at a page
|
|
|
|
boundary. It's OK to check a
|
|
|
|
#define like SPARC here because this
|
|
|
|
file can only be compiled on a Lynx
|
|
|
|
host. */
|
|
|
|
+ pss.data_start % pagesize
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
if (!newsect)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* And, now for the .reg/XXX pseudo sections. Each thread has it's own
|
|
|
|
.reg/XXX section, where XXX is the thread id (without leading zeros). The
|
|
|
|
currently running thread (at the time of the core dump) also has an alias
|
|
|
|
called `.reg' (just to keep GDB happy). Note that we use `.reg/XXX' as
|
|
|
|
opposed to `.regXXX' because GDB expects that .reg2 will be the floating-
|
|
|
|
point registers. */
|
|
|
|
|
|
|
|
newsect = make_bfd_asection (abfd, ".reg",
|
|
|
|
SEC_HAS_CONTENTS,
|
|
|
|
sizeof (core_st_t),
|
|
|
|
0,
|
|
|
|
pagesize);
|
|
|
|
if (!newsect)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
for (secnum = 0; secnum < pss.threadcnt; secnum++)
|
|
|
|
{
|
|
|
|
char secname[100];
|
|
|
|
|
|
|
|
sprintf (secname, ".reg/%d", BUILDPID (0, threadp[secnum].tid));
|
|
|
|
newsect = make_bfd_asection (abfd, secname,
|
|
|
|
SEC_HAS_CONTENTS,
|
|
|
|
sizeof (core_st_t),
|
|
|
|
0,
|
|
|
|
pagesize + secnum * sizeof (core_st_t));
|
|
|
|
if (!newsect)
|
2002-01-05 14:11:33 +01:00
|
|
|
goto fail;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return abfd->xvec;
|
2002-01-05 14:11:33 +01:00
|
|
|
|
|
|
|
fail:
|
|
|
|
bfd_release (abfd, core_hdr (abfd));
|
|
|
|
core_hdr (abfd) = NULL;
|
|
|
|
bfd_section_list_clear (abfd);
|
|
|
|
return NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
lynx_core_file_failing_command (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return core_command (abfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
lynx_core_file_failing_signal (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
return core_signal (abfd);
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
lynx_core_file_matches_executable_p (core_bfd, exec_bfd)
|
|
|
|
bfd *core_bfd, *exec_bfd;
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE; /* FIXME, We have no way of telling at this point */
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LYNX_CORE */
|