1 /* IBM RS/6000 "XCOFF" back-end for BFD.
2 Copyright (C) 2001-2024 Free Software Foundation, Inc.
4 Contributed by Red Hat Inc.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
26 bfd_cleanup
xcoff64_core_p (bfd
*);
27 bool xcoff64_core_file_matches_executable_p (bfd
*, bfd
*);
28 char *xcoff64_core_file_failing_command (bfd
*);
29 int xcoff64_core_file_failing_signal (bfd
*);
35 /* Aix 5.1 system include file. */
37 /* Need to define this macro so struct ld_info64 get included. */
38 #define __LDINFO_PTRACE64__
42 /* The default architecture and machine for matching core files. */
43 #define DEFAULT_ARCHITECTURE bfd_arch_powerpc
44 #define DEFAULT_MACHINE bfd_mach_ppc_620
46 #define core_hdr(abfd) ((struct core_dumpxx *) abfd->tdata.any)
48 #define CHECK_FILE_OFFSET(s, v) \
49 ((bfd_signed_vma)(v) < 0 || (bfd_signed_vma)(v) > (bfd_signed_vma)(s).st_size)
52 xcoff64_core_p (bfd
*abfd
)
54 enum bfd_architecture arch
;
56 struct core_dumpxx core
, *new_core_hdr
;
59 struct __ld_info64 ldinfo
;
62 struct vm_infox vminfo
;
66 if (bfd_seek (abfd
, 0, SEEK_SET
) != 0)
67 goto xcoff64_core_p_error
;
69 if (sizeof (struct core_dumpxx
)
70 != bfd_read (&core
, sizeof (struct core_dumpxx
), abfd
))
71 goto xcoff64_core_p_error
;
73 if (bfd_stat (abfd
, &statbuf
) < 0)
74 goto xcoff64_core_p_error
;
77 c_flag has CORE_VERSION_1, Aix 4+
78 c_entries = 0 for Aix 4.3+
79 IS_PROC64 is a macro defined in procinfo.h, test for 64 bit process.
81 We will still be confused if a Aix 4.3 64 bit core file is
82 copied over to a Aix 5 machine.
84 Check file header offsets
86 See rs6000-core.c for comment on size of core
87 If there isn't enough of a real core file, bail. */
89 if ((CORE_VERSION_1
!= (core
.c_flag
& CORE_VERSION_1
))
90 || (0 != core
.c_entries
)
91 || (! (IS_PROC64 (&core
.c_u
.U_proc
)))
92 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_fdsinfox
)))
93 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_loader
)))
94 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_loader
+ core
.c_lsize
)))
95 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_thr
)))
96 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_segregion
)))
97 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_stack
)))
98 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_stack
+ core
.c_size
)))
99 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_data
)))
100 || ((CHECK_FILE_OFFSET (statbuf
, core
.c_data
+ core
.c_datasize
)))
101 || (! (core
.c_flag
& UBLOCK_VALID
))
102 || (! (core
.c_flag
& LE_VALID
)))
103 goto xcoff64_core_p_error
;
105 /* Check for truncated stack or general truncating. */
106 if ((! (core
.c_flag
& USTACK_VALID
))
107 || (core
.c_flag
& CORE_TRUNC
))
109 bfd_set_error (bfd_error_file_truncated
);
114 new_core_hdr
= bfd_zalloc (abfd
, sizeof (struct core_dumpxx
));
115 if (NULL
== new_core_hdr
)
118 memcpy (new_core_hdr
, &core
, sizeof (struct core_dumpxx
));
119 /* The core_hdr() macro is no longer used here because it would
120 expand to code relying on gcc's cast-as-lvalue extension,
121 which was removed in gcc 4.0. */
122 abfd
->tdata
.any
= new_core_hdr
;
124 /* .stack section. */
125 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
;
126 sec
= bfd_make_section_anyway_with_flags (abfd
, ".stack", flags
);
130 sec
->size
= core
.c_size
;
131 sec
->vma
= core
.c_stackorg
;
132 sec
->filepos
= core
.c_stack
;
134 /* .reg section for all registers. */
135 flags
= SEC_HAS_CONTENTS
| SEC_IN_MEMORY
;
136 sec
= bfd_make_section_anyway_with_flags (abfd
, ".reg", flags
);
140 sec
->size
= sizeof (struct __context64
);
143 sec
->contents
= (bfd_byte
*)&new_core_hdr
->c_flt
.r64
;
148 flags
= SEC_HAS_CONTENTS
;
149 sec
= bfd_make_section_anyway_with_flags (abfd
, ".aix-vmx", flags
);
154 sec
->filepos
= core
.c_extctx
;
157 flags
= SEC_HAS_CONTENTS
;
158 sec
= bfd_make_section_anyway_with_flags (abfd
, ".aix-vsx", flags
);
163 sec
->filepos
= core
.c_extctx
+ 584;
167 To actually find out how long this section is in this particular
168 core dump would require going down the whole list of struct
169 ld_info's. See if we can just fake it. */
170 flags
= SEC_HAS_CONTENTS
;
171 sec
= bfd_make_section_anyway_with_flags (abfd
, ".ldinfo", flags
);
175 sec
->size
= core
.c_lsize
;
177 sec
->filepos
= core
.c_loader
;
179 /* AIX 4 adds data sections from loaded objects to the core file,
180 which can be found by examining ldinfo, and anonymously mmapped
183 /* .data section from executable. */
184 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
;
185 sec
= bfd_make_section_anyway_with_flags (abfd
, ".data", flags
);
189 sec
->size
= core
.c_datasize
;
190 sec
->vma
= core
.c_dataorg
;
191 sec
->filepos
= core
.c_data
;
193 /* .data sections from loaded objects. */
194 ld_offset
= core
.c_loader
;
198 if (bfd_seek (abfd
, ld_offset
, SEEK_SET
) != 0)
201 if (sizeof (struct __ld_info64
) !=
202 bfd_read (&ldinfo
, sizeof (struct __ld_info64
), abfd
))
205 if (ldinfo
.ldinfo_core
)
207 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
;
208 sec
= bfd_make_section_anyway_with_flags (abfd
, ".data", flags
);
212 sec
->size
= ldinfo
.ldinfo_datasize
;
213 sec
->vma
= ldinfo
.ldinfo_dataorg
;
214 sec
->filepos
= ldinfo
.ldinfo_core
;
217 if (0 == ldinfo
.ldinfo_next
)
219 ld_offset
+= ldinfo
.ldinfo_next
;
222 /* .vmdata sections from anonymously mmapped regions. */
223 if (core
.c_vmregions
)
225 if (bfd_seek (abfd
, core
.c_vmm
, SEEK_SET
) != 0)
228 for (i
= 0; i
< core
.c_vmregions
; i
++)
229 if (sizeof (struct vm_infox
) !=
230 bfd_read (&vminfo
, sizeof (struct vm_infox
), abfd
))
233 if (vminfo
.vminfo_offset
)
235 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
;
236 sec
= bfd_make_section_anyway_with_flags (abfd
, ".vmdata", flags
);
240 sec
->size
= vminfo
.vminfo_size
;
241 sec
->vma
= vminfo
.vminfo_addr
;
242 sec
->filepos
= vminfo
.vminfo_offset
;
246 /* Set the architecture and machine. */
247 arch
= DEFAULT_ARCHITECTURE
;
248 mach
= DEFAULT_MACHINE
;
249 bfd_default_set_arch_mach (abfd
, arch
, mach
);
251 return _bfd_no_cleanup
;
253 xcoff64_core_p_error
:
254 if (bfd_get_error () != bfd_error_system_call
)
255 bfd_set_error (bfd_error_wrong_format
);
260 /* Return `TRUE' if given core is from the given executable. */
263 xcoff64_core_file_matches_executable_p (bfd
*core_bfd
, bfd
*exec_bfd
)
265 struct core_dumpxx core
;
268 const char *str1
, *str2
;
269 bool return_value
= false;
271 /* Get the header. */
272 if (bfd_seek (core_bfd
, 0, SEEK_SET
) != 0)
275 if (sizeof (struct core_dumpxx
) !=
276 bfd_read (&core
, sizeof (struct core_dumpxx
), core_bfd
))
279 if (bfd_seek (core_bfd
, core
.c_loader
, SEEK_SET
) != 0)
283 path
= bfd_malloc (alloc
);
291 if (bfd_read (s
, 1, core_bfd
) != 1)
292 goto xcoff64_core_file_matches_executable_p_end_1
;
297 if (s
== path
+ alloc
)
302 n
= bfd_realloc (path
, alloc
);
304 goto xcoff64_core_file_matches_executable_p_end_1
;
311 str1
= strrchr (path
, '/');
312 str2
= strrchr (bfd_get_filename (exec_bfd
), '/');
314 /* Step over character '/'. */
315 str1
= str1
!= NULL
? str1
+ 1 : path
;
316 str2
= str2
!= NULL
? str2
+ 1 : bfd_get_filename (exec_bfd
);
318 if (strcmp (str1
, str2
) == 0)
321 xcoff64_core_file_matches_executable_p_end_1
:
327 xcoff64_core_file_failing_command (bfd
*abfd
)
329 struct core_dumpxx
*c
= core_hdr (abfd
);
330 char *return_value
= 0;
333 return_value
= c
->c_u
.U_proc
.pi_comm
;
339 xcoff64_core_file_failing_signal (bfd
*abfd
)
341 struct core_dumpxx
*c
= core_hdr (abfd
);
342 int return_value
= 0;
345 return_value
= c
->c_signo
;
350 #else /* AIX_5_CORE */
353 xcoff64_core_p (bfd
*abfd ATTRIBUTE_UNUSED
)
355 bfd_set_error (bfd_error_wrong_format
);
360 xcoff64_core_file_matches_executable_p (bfd
*core_bfd
, bfd
*exec_bfd
)
362 return generic_core_file_matches_executable_p (core_bfd
, exec_bfd
);
366 xcoff64_core_file_failing_command (bfd
*abfd ATTRIBUTE_UNUSED
)
372 xcoff64_core_file_failing_signal (bfd
*abfd ATTRIBUTE_UNUSED
)
377 #endif /* AIX_5_CORE */