1 /* BFD back-end for OSF/1 core files.
2 Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This file can only be compiled on systems which use OSF/1 style
31 /* forward declarations */
33 static asection
*make_bfd_asection
34 PARAMS ((bfd
*, const char *, flagword
, bfd_size_type
, bfd_vma
, file_ptr
));
35 static const bfd_target
*osf_core_core_file_p
PARAMS ((bfd
*));
36 static char *osf_core_core_file_failing_command
PARAMS ((bfd
*));
37 static int osf_core_core_file_failing_signal
PARAMS ((bfd
*));
38 static boolean osf_core_core_file_matches_executable_p
PARAMS ((bfd
*, bfd
*));
39 static void swap_abort
PARAMS ((void));
41 /* These are stored in the bfd's tdata */
43 struct osf_core_struct
46 char cmd
[MAXCOMLEN
+ 1];
49 #define core_hdr(bfd) ((bfd)->tdata.osf_core_data)
50 #define core_signal(bfd) (core_hdr(bfd)->sig)
51 #define core_command(bfd) (core_hdr(bfd)->cmd)
54 make_bfd_asection (abfd
, name
, flags
, _raw_size
, vma
, filepos
)
58 bfd_size_type _raw_size
;
64 asect
= bfd_make_section_anyway (abfd
, name
);
69 asect
->_raw_size
= _raw_size
;
71 asect
->filepos
= filepos
;
72 asect
->alignment_power
= 8;
77 static const bfd_target
*
78 osf_core_core_file_p (abfd
)
84 struct core_filehdr core_header
;
87 amt
= sizeof core_header
;
88 val
= bfd_bread ((PTR
) &core_header
, amt
, abfd
);
89 if (val
!= sizeof core_header
)
92 if (strncmp (core_header
.magic
, "Core", 4) != 0)
95 core_hdr (abfd
) = (struct osf_core_struct
*)
96 bfd_zalloc (abfd
, (bfd_size_type
) sizeof (struct osf_core_struct
));
100 strncpy (core_command (abfd
), core_header
.name
, MAXCOMLEN
+ 1);
101 core_signal (abfd
) = core_header
.signo
;
103 for (i
= 0; i
< core_header
.nscns
; i
++)
105 struct core_scnhdr core_scnhdr
;
108 amt
= sizeof core_scnhdr
;
109 val
= bfd_bread ((PTR
) &core_scnhdr
, amt
, abfd
);
110 if (val
!= sizeof core_scnhdr
)
113 /* Skip empty sections. */
114 if (core_scnhdr
.size
== 0 || core_scnhdr
.scnptr
== 0)
117 switch (core_scnhdr
.scntype
)
121 flags
= SEC_ALLOC
+ SEC_LOAD
+ SEC_HAS_CONTENTS
;
125 flags
= SEC_ALLOC
+ SEC_LOAD
+ SEC_HAS_CONTENTS
;
129 flags
= SEC_HAS_CONTENTS
;
132 (*_bfd_error_handler
) (_("Unhandled OSF/1 core file section type %d\n"),
133 core_scnhdr
.scntype
);
137 if (!make_bfd_asection (abfd
, secname
, flags
,
138 (bfd_size_type
) core_scnhdr
.size
,
139 (bfd_vma
) core_scnhdr
.vaddr
,
140 (file_ptr
) core_scnhdr
.scnptr
))
144 /* OK, we believe you. You're a core file (sure, sure). */
149 bfd_release (abfd
, core_hdr (abfd
));
150 core_hdr (abfd
) = NULL
;
151 bfd_section_list_clear (abfd
);
156 osf_core_core_file_failing_command (abfd
)
159 return core_command (abfd
);
164 osf_core_core_file_failing_signal (abfd
)
167 return core_signal (abfd
);
172 osf_core_core_file_matches_executable_p (core_bfd
, exec_bfd
)
173 bfd
*core_bfd ATTRIBUTE_UNUSED
;
174 bfd
*exec_bfd ATTRIBUTE_UNUSED
;
176 return true; /* FIXME, We have no way of telling at this point */
179 /* If somebody calls any byte-swapping routines, shoot them. */
183 abort(); /* This way doesn't require any declaration for ANSI to fuck up */
185 #define NO_GET ((bfd_vma (*) PARAMS (( const bfd_byte *))) swap_abort )
186 #define NO_PUT ((void (*) PARAMS ((bfd_vma, bfd_byte *))) swap_abort )
187 #define NO_SIGNED_GET \
188 ((bfd_signed_vma (*) PARAMS ((const bfd_byte *))) swap_abort )
190 const bfd_target osf_core_vec
=
193 bfd_target_unknown_flavour
,
194 BFD_ENDIAN_LITTLE
, /* target byte order */
195 BFD_ENDIAN_LITTLE
, /* target headers byte order */
196 (HAS_RELOC
| EXEC_P
| /* object flags */
197 HAS_LINENO
| HAS_DEBUG
|
198 HAS_SYMS
| HAS_LOCALS
| WP_TEXT
| D_PAGED
),
199 (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
), /* section flags */
200 0, /* symbol prefix */
201 ' ', /* ar_pad_char */
202 16, /* ar_max_namelen */
203 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 64 bit data */
204 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 32 bit data */
205 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 16 bit data */
206 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 64 bit hdrs */
207 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 32 bit hdrs */
208 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 16 bit hdrs */
210 { /* bfd_check_format */
211 _bfd_dummy_target
, /* unknown format */
212 _bfd_dummy_target
, /* object file */
213 _bfd_dummy_target
, /* archive */
214 osf_core_core_file_p
/* a core file */
216 { /* bfd_set_format */
217 bfd_false
, bfd_false
,
220 { /* bfd_write_contents */
221 bfd_false
, bfd_false
,
225 BFD_JUMP_TABLE_GENERIC (_bfd_generic
),
226 BFD_JUMP_TABLE_COPY (_bfd_generic
),
227 BFD_JUMP_TABLE_CORE (osf_core
),
228 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive
),
229 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols
),
230 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs
),
231 BFD_JUMP_TABLE_WRITE (_bfd_generic
),
232 BFD_JUMP_TABLE_LINK (_bfd_nolink
),
233 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),
237 (PTR
) 0 /* backend_data */