1 /* BFD back-end for HP/UX core files.
2 Copyright 1993, 1994, 1996, 1998, 1999, 2001, 2002
3 Free Software Foundation, Inc.
4 Written by Stu Grossman, Cygnus Support.
5 Converted to back-end form by Ian Lance Taylor, Cygnus SUpport
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* This file can only be compiled on systems which use HP/UX style
30 #if defined (HOST_HPPAHPUX) || defined (HOST_HP300HPUX) || defined (HOST_HPPAMPEIX)
32 /* FIXME: sys/core.h doesn't exist for HPUX version 7. HPUX version
33 5, 6, and 7 core files seem to be standard trad-core.c type core
34 files; can we just use trad-core.c in addition to this file? */
37 #include <sys/utsname.h>
39 #endif /* HOST_HPPAHPUX */
43 /* Not a very swift place to put it, but that's where the BSD port
45 #include "/hpux/usr/include/sys/core.h"
47 #endif /* HOST_HPPABSD */
49 #include <sys/param.h>
53 # ifdef HAVE_SYS_NDIR_H
54 # include <sys/ndir.h>
56 # ifdef HAVE_SYS_DIR_H
64 #include <machine/reg.h>
65 #include <sys/user.h> /* After a.out.h */
68 /* Kludge: There's no explicit mechanism provided by sys/core.h to
69 conditionally know whether a proc_info has thread id fields.
70 However, CORE_ANON_SHMEM shows up first at 10.30, which is
71 happily also when meaningful thread id's show up in proc_info. */
72 #if defined(CORE_ANON_SHMEM)
73 #define PROC_INFO_HAS_THREAD_ID (1)
76 /* This type appears at HP-UX 10.30. Defining it if not defined
77 by sys/core.h allows us to build for older HP-UX's, and (since
78 it won't be encountered in core-dumps from older HP-UX's) is
80 #if !defined(CORE_ANON_SHMEM)
81 #define CORE_ANON_SHMEM 0x00000200 /* anonymous shared memory */
84 /* These are stored in the bfd's tdata */
86 /* .lwpid and .user_tid are only valid if PROC_INFO_HAS_THREAD_ID, else they
87 are set to 0. Also, until HP-UX implements MxN threads, .user_tid and
88 .lwpid are synonymous. */
89 struct hpux_core_struct
92 int lwpid
; /* Kernel thread ID. */
93 unsigned long user_tid
; /* User thread ID. */
94 char cmd
[MAXCOMLEN
+ 1];
97 #define core_hdr(bfd) ((bfd)->tdata.hpux_core_data)
98 #define core_signal(bfd) (core_hdr(bfd)->sig)
99 #define core_command(bfd) (core_hdr(bfd)->cmd)
100 #define core_kernel_thread_id(bfd) (core_hdr(bfd)->lwpid)
101 #define core_user_thread_id(bfd) (core_hdr(bfd)->user_tid)
103 static asection
*make_bfd_asection
104 PARAMS ((bfd
*, const char *, flagword
, bfd_size_type
, bfd_vma
,
106 static const bfd_target
*hpux_core_core_file_p
108 static char *hpux_core_core_file_failing_command
110 static int hpux_core_core_file_failing_signal
112 static bfd_boolean hpux_core_core_file_matches_executable_p
113 PARAMS ((bfd
*, bfd
*));
114 static void swap_abort
118 make_bfd_asection (abfd
, name
, flags
, _raw_size
, vma
, alignment_power
)
122 bfd_size_type _raw_size
;
124 unsigned int alignment_power
;
129 newname
= bfd_alloc (abfd
, (bfd_size_type
) strlen (name
) + 1);
133 strcpy (newname
, name
);
135 asect
= bfd_make_section_anyway (abfd
, newname
);
139 asect
->flags
= flags
;
140 asect
->_raw_size
= _raw_size
;
142 asect
->filepos
= bfd_tell (abfd
);
143 asect
->alignment_power
= alignment_power
;
148 /* this function builds a bfd target if the file is a corefile.
149 It returns null or 0 if it finds out thaat it is not a core file.
150 The way it checks this is by looking for allowed 'type' field values.
151 These are declared in sys/core.h
152 There are some values which are 'reserved for future use'. In particular
153 CORE_NONE is actually defined as 0. This may be a catch-all for cases
154 in which the core file is generated by some non-hpux application.
155 (I am just guessing here!)
157 static const bfd_target
*
158 hpux_core_core_file_p (abfd
)
161 int good_sections
= 0;
162 int unknown_sections
= 0;
164 core_hdr (abfd
) = (struct hpux_core_struct
*)
165 bfd_zalloc (abfd
, (bfd_size_type
) sizeof (struct hpux_core_struct
));
166 if (!core_hdr (abfd
))
172 struct corehead core_header
;
174 val
= bfd_bread ((void *) &core_header
,
175 (bfd_size_type
) sizeof core_header
, abfd
);
178 switch (core_header
.type
)
182 /* Just skip this. */
183 bfd_seek (abfd
, (file_ptr
) core_header
.len
, SEEK_CUR
);
188 struct proc_exec proc_exec
;
189 if (bfd_bread ((void *) &proc_exec
, (bfd_size_type
) core_header
.len
,
190 abfd
) != core_header
.len
)
192 strncpy (core_command (abfd
), proc_exec
.cmd
, MAXCOMLEN
+ 1);
198 struct proc_info proc_info
;
199 char secname
[100]; /* Of arbitrary size, but plenty large. */
201 /* We need to read this section, 'cause we need to determine
202 whether the core-dumped app was threaded before we create
203 any .reg sections. */
204 if (bfd_bread (&proc_info
, (bfd_size_type
) core_header
.len
, abfd
)
208 /* However, we also want to create those sections with the
209 file positioned at the start of the record, it seems. */
210 if (bfd_seek (abfd
, (file_ptr
) -core_header
.len
, SEEK_CUR
) != 0)
213 #if defined(PROC_INFO_HAS_THREAD_ID)
214 core_kernel_thread_id (abfd
) = proc_info
.lwpid
;
215 core_user_thread_id (abfd
) = proc_info
.user_tid
;
217 core_kernel_thread_id (abfd
) = 0;
218 core_user_thread_id (abfd
) = 0;
220 /* If the program was unthreaded, then we'll just create a
223 If the program was threaded, then we'll create .reg/XXXXX
224 section for each thread, where XXXXX is a printable
225 representation of the kernel thread id. We'll also
226 create a .reg section for the thread that was running
227 and signalled at the time of the core-dump (i.e., this
228 is effectively an alias, needed to keep GDB happy.)
230 Note that we use `.reg/XXXXX' as opposed to '.regXXXXX'
231 because GDB expects that .reg2 will be the floating-
233 if (core_kernel_thread_id (abfd
) == 0)
235 if (!make_bfd_asection (abfd
, ".reg",
238 (int) &proc_info
- (int) & proc_info
.hw_regs
,
244 /* There are threads. Is this the one that caused the
245 core-dump? We'll claim it was the running thread. */
246 if (proc_info
.sig
!= -1)
248 if (!make_bfd_asection (abfd
, ".reg",
251 (int) &proc_info
- (int) & proc_info
.hw_regs
,
255 /* We always make one of these sections, for every thread. */
256 sprintf (secname
, ".reg/%d", core_kernel_thread_id (abfd
));
257 if (!make_bfd_asection (abfd
, secname
,
260 (int) &proc_info
- (int) & proc_info
.hw_regs
,
264 core_signal (abfd
) = proc_info
.sig
;
265 if (bfd_seek (abfd
, (file_ptr
) core_header
.len
, SEEK_CUR
) != 0)
276 case CORE_ANON_SHMEM
:
277 if (!make_bfd_asection (abfd
, ".data",
278 SEC_ALLOC
+ SEC_LOAD
+ SEC_HAS_CONTENTS
,
279 core_header
.len
, core_header
.addr
, 2))
282 bfd_seek (abfd
, (file_ptr
) core_header
.len
, SEEK_CUR
);
287 /* Let's not punt if we encounter a section of unknown
288 type. Rather, let's make a note of it. If we later
289 see that there were also "good" sections, then we'll
290 declare that this a core file, but we'll also warn that
291 it may be incompatible with this gdb.
297 goto fail
; /*unrecognized core file type */
301 /* OK, we believe you. You're a core file (sure, sure). */
303 /* Were there sections of unknown type? If so, yet there were
304 at least some complete sections of known type, then, issue
305 a warning. Possibly the core file was generated on a version
306 of HP-UX that is incompatible with that for which this gdb was
309 if ((unknown_sections
> 0) && (good_sections
> 0))
310 (*_bfd_error_handler
)
311 ("%s appears to be a core file,\nbut contains unknown sections. It may have been created on an incompatible\nversion of HP-UX. As a result, some information may be unavailable.\n",
317 bfd_release (abfd
, core_hdr (abfd
));
318 core_hdr (abfd
) = NULL
;
319 bfd_section_list_clear (abfd
);
324 hpux_core_core_file_failing_command (abfd
)
327 return core_command (abfd
);
332 hpux_core_core_file_failing_signal (abfd
)
335 return core_signal (abfd
);
340 hpux_core_core_file_matches_executable_p (core_bfd
, exec_bfd
)
341 bfd
*core_bfd ATTRIBUTE_UNUSED
;
342 bfd
*exec_bfd ATTRIBUTE_UNUSED
;
344 return TRUE
; /* FIXME, We have no way of telling at this point */
347 /* If somebody calls any byte-swapping routines, shoot them. */
351 abort(); /* This way doesn't require any declaration for ANSI to fuck up */
353 #define NO_GET ((bfd_vma (*) PARAMS (( const bfd_byte *))) swap_abort )
354 #define NO_PUT ((void (*) PARAMS ((bfd_vma, bfd_byte *))) swap_abort )
355 #define NO_SIGNED_GET \
356 ((bfd_signed_vma (*) PARAMS ((const bfd_byte *))) swap_abort )
358 const bfd_target hpux_core_vec
=
361 bfd_target_unknown_flavour
,
362 BFD_ENDIAN_BIG
, /* target byte order */
363 BFD_ENDIAN_BIG
, /* target headers byte order */
364 (HAS_RELOC
| EXEC_P
| /* object flags */
365 HAS_LINENO
| HAS_DEBUG
|
366 HAS_SYMS
| HAS_LOCALS
| WP_TEXT
| D_PAGED
),
367 (SEC_HAS_CONTENTS
| SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
), /* section flags */
368 0, /* symbol prefix */
369 ' ', /* ar_pad_char */
370 16, /* ar_max_namelen */
371 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 64 bit data */
372 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 32 bit data */
373 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 16 bit data */
374 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 64 bit hdrs */
375 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 32 bit hdrs */
376 NO_GET
, NO_SIGNED_GET
, NO_PUT
, /* 16 bit hdrs */
378 { /* bfd_check_format */
379 _bfd_dummy_target
, /* unknown format */
380 _bfd_dummy_target
, /* object file */
381 _bfd_dummy_target
, /* archive */
382 hpux_core_core_file_p
/* a core file */
384 { /* bfd_set_format */
385 bfd_false
, bfd_false
,
388 { /* bfd_write_contents */
389 bfd_false
, bfd_false
,
393 BFD_JUMP_TABLE_GENERIC (_bfd_generic
),
394 BFD_JUMP_TABLE_COPY (_bfd_generic
),
395 BFD_JUMP_TABLE_CORE (hpux_core
),
396 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive
),
397 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols
),
398 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs
),
399 BFD_JUMP_TABLE_WRITE (_bfd_generic
),
400 BFD_JUMP_TABLE_LINK (_bfd_nolink
),
401 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),
405 (PTR
) 0 /* backend_data */