]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* IBM RS/6000 "XCOFF" back-end for BFD. |
7898deda NC |
2 | Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, |
3 | 2001 | |
252b5132 RH |
4 | Free Software Foundation, Inc. |
5 | FIXME: Can someone provide a transliteration of this name into ASCII? | |
6 | Using the following chars caused a compiler warning on HIUX (so I replaced | |
7 | them with octal escapes), and isn't useful without an understanding of what | |
8 | character set it is. | |
59d9f049 | 9 | Written by Metin G. Ozisik, Mimi Ph\373\364ng-Th\345o V\365, |
252b5132 RH |
10 | and John Gilmore. |
11 | Archive support from Damon A. Permezel. | |
12 | Contributed by IBM Corporation and Cygnus Support. | |
13 | ||
14 | This file is part of BFD, the Binary File Descriptor library. | |
15 | ||
16 | This program is free software; you can redistribute it and/or modify | |
17 | it under the terms of the GNU General Public License as published by | |
18 | the Free Software Foundation; either version 2 of the License, or | |
19 | (at your option) any later version. | |
20 | ||
21 | This program is distributed in the hope that it will be useful, | |
22 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 | GNU General Public License for more details. | |
25 | ||
26 | You should have received a copy of the GNU General Public License | |
27 | along with this program; if not, write to the Free Software | |
28 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
29 | ||
30 | /* This port currently only handles reading object files, except when | |
31 | compiled on an RS/6000 host. -- no archive support, no core files. | |
32 | In all cases, it does not support writing. | |
33 | ||
252b5132 | 34 | This is in a separate file from coff-rs6000.c, because it includes |
6a125b16 | 35 | system include files that conflict with coff/rs6000.h. */ |
252b5132 RH |
36 | |
37 | /* Internalcoff.h and coffcode.h modify themselves based on this flag. */ | |
38 | #define RS6000COFF_C 1 | |
39 | ||
40 | /* The AIX 4.1 kernel is obviously compiled with -D_LONG_LONG, so | |
41 | we have to define _LONG_LONG for older versions of gcc to get the | |
42 | proper alignments in the user structure. */ | |
43 | #if defined(_AIX41) && !defined(_LONG_LONG) | |
44 | #define _LONG_LONG | |
45 | #endif | |
46 | ||
47 | #include "bfd.h" | |
48 | #include "sysdep.h" | |
49 | #include "libbfd.h" | |
50 | ||
51 | #ifdef AIX_CORE | |
52 | ||
53 | /* AOUTHDR is defined by the above. We need another defn of it, from the | |
54 | system include files. Punt the old one and get us a new name for the | |
55 | typedef in the system include files. */ | |
56 | #ifdef AOUTHDR | |
57 | #undef AOUTHDR | |
58 | #endif | |
59 | #define AOUTHDR second_AOUTHDR | |
60 | ||
61 | #undef SCNHDR | |
62 | ||
252b5132 | 63 | /* ------------------------------------------------------------------------ */ |
59d9f049 | 64 | /* Support for core file stuff.. */ |
252b5132 RH |
65 | /* ------------------------------------------------------------------------ */ |
66 | ||
67 | #include <sys/user.h> | |
59d9f049 ND |
68 | #define __LDINFO_PTRACE32__ /* for __ld_info32 */ |
69 | #define __LDINFO_PTRACE64__ /* for __ld_info64 */ | |
252b5132 RH |
70 | #include <sys/ldr.h> |
71 | #include <sys/core.h> | |
59d9f049 ND |
72 | #include <sys/systemcfg.h> |
73 | ||
74 | #define core_hdr(bfd) ((CoreHdr *) bfd->tdata.any) | |
75 | ||
76 | /* AIX 4.1 changed the names and locations of a few items in the core file. | |
77 | AIX 4.3 defined an entirely new structure, core_dumpx, but kept support for | |
78 | the previous 4.1 structure, core_dump. | |
79 | ||
80 | AIX_CORE_DUMPX_CORE is defined (by configure) on AIX 4.3+, and | |
81 | CORE_VERSION_1 is defined (by AIX core.h) as 2 on AIX 4.3+ and as 1 on AIX | |
82 | 4.1 and 4.2. AIX pre-4.1 (aka 3.x) either doesn't define CORE_VERSION_1 | |
3d855632 | 83 | or else defines it as 0. */ |
59d9f049 ND |
84 | |
85 | #if defined(CORE_VERSION_1) && !CORE_VERSION_1 | |
86 | # undef CORE_VERSION_1 | |
87 | #endif | |
88 | ||
89 | /* The following union and macros allow this module to compile on all AIX | |
90 | versions and to handle both core_dumpx and core_dump on 4.3+. CNEW_*() | |
91 | and COLD_*() macros respectively retrieve core_dumpx and core_dump | |
3d855632 | 92 | values. */ |
59d9f049 | 93 | |
3d855632 | 94 | /* Union of 32-bit and 64-bit versions of ld_info. */ |
59d9f049 ND |
95 | |
96 | typedef union { | |
97 | #ifdef __ld_info32 | |
98 | struct __ld_info32 l32; | |
99 | struct __ld_info64 l64; | |
100 | #else | |
101 | struct ld_info l32; | |
102 | struct ld_info l64; | |
103 | #endif | |
104 | } LdInfo; | |
105 | ||
3d855632 | 106 | /* Union of old and new core dump structures. */ |
59d9f049 ND |
107 | |
108 | typedef union { | |
109 | #ifdef AIX_CORE_DUMPX_CORE | |
6a125b16 | 110 | struct core_dumpx new; /* new AIX 4.3+ core dump */ |
59d9f049 | 111 | #else |
6a125b16 | 112 | struct core_dump new; /* for simpler coding */ |
59d9f049 | 113 | #endif |
6a125b16 | 114 | struct core_dump old; /* old AIX 4.2- core dump, still used on |
59d9f049 ND |
115 | 4.3+ with appropriate SMIT config */ |
116 | } CoreHdr; | |
117 | ||
3d855632 | 118 | /* Union of old and new vm_info structures. */ |
59d9f049 | 119 | |
1605fc4f | 120 | #ifdef CORE_VERSION_1 |
59d9f049 ND |
121 | typedef union { |
122 | #ifdef AIX_CORE_DUMPX_CORE | |
6a125b16 | 123 | struct vm_infox new; |
59d9f049 | 124 | #else |
6a125b16 | 125 | struct vm_info new; |
59d9f049 | 126 | #endif |
6a125b16 | 127 | struct vm_info old; |
59d9f049 | 128 | } VmInfo; |
1605fc4f | 129 | #endif |
59d9f049 | 130 | |
3d855632 | 131 | /* Return whether CoreHdr C is in new or old format. */ |
59d9f049 ND |
132 | |
133 | #ifdef AIX_CORE_DUMPX_CORE | |
134 | # define CORE_NEW(c) (!(c).old.c_entries) | |
135 | #else | |
136 | # define CORE_NEW(c) 0 | |
137 | #endif | |
138 | ||
3d855632 | 139 | /* Return the c_stackorg field from struct core_dumpx C. */ |
59d9f049 ND |
140 | |
141 | #ifdef AIX_CORE_DUMPX_CORE | |
142 | # define CNEW_STACKORG(c) (c).c_stackorg | |
143 | #else | |
144 | # define CNEW_STACKORG(c) 0 | |
145 | #endif | |
146 | ||
3d855632 | 147 | /* Return the offset to the loader region from struct core_dump C. */ |
59d9f049 ND |
148 | |
149 | #ifdef AIX_CORE_DUMPX_CORE | |
150 | # define CNEW_LOADER(c) (c).c_loader | |
151 | #else | |
152 | # define CNEW_LOADER(c) 0 | |
153 | #endif | |
154 | ||
3d855632 | 155 | /* Return the offset to the loader region from struct core_dump C. */ |
59d9f049 ND |
156 | |
157 | #define COLD_LOADER(c) (c).c_tab | |
158 | ||
3d855632 | 159 | /* Return the c_lsize field from struct core_dumpx C. */ |
59d9f049 ND |
160 | |
161 | #ifdef AIX_CORE_DUMPX_CORE | |
162 | # define CNEW_LSIZE(c) (c).c_lsize | |
163 | #else | |
164 | # define CNEW_LSIZE(c) 0 | |
165 | #endif | |
166 | ||
3d855632 | 167 | /* Return the c_dataorg field from struct core_dumpx C. */ |
252b5132 | 168 | |
59d9f049 ND |
169 | #ifdef AIX_CORE_DUMPX_CORE |
170 | # define CNEW_DATAORG(c) (c).c_dataorg | |
171 | #else | |
172 | # define CNEW_DATAORG(c) 0 | |
173 | #endif | |
252b5132 | 174 | |
3d855632 | 175 | /* Return the c_datasize field from struct core_dumpx C. */ |
252b5132 | 176 | |
59d9f049 ND |
177 | #ifdef AIX_CORE_DUMPX_CORE |
178 | # define CNEW_DATASIZE(c) (c).c_datasize | |
179 | #else | |
180 | # define CNEW_DATASIZE(c) 0 | |
181 | #endif | |
182 | ||
3d855632 | 183 | /* Return the c_impl field from struct core_dumpx C. */ |
59d9f049 ND |
184 | |
185 | #ifdef AIX_CORE_DUMPX_CORE | |
186 | # define CNEW_IMPL(c) (c).c_impl | |
187 | #else | |
188 | # define CNEW_IMPL(c) 0 | |
189 | #endif | |
190 | ||
3d855632 | 191 | /* Return the command string from struct core_dumpx C. */ |
59d9f049 ND |
192 | |
193 | #ifdef AIX_CORE_DUMPX_CORE | |
194 | # define CNEW_COMM(c) (c).c_u.U_proc.pi_comm | |
195 | #else | |
196 | # define CNEW_COMM(c) 0 | |
197 | #endif | |
198 | ||
3d855632 | 199 | /* Return the command string from struct core_dump C. */ |
59d9f049 ND |
200 | |
201 | #ifdef CORE_VERSION_1 | |
202 | # define COLD_COMM(c) (c).c_u.U_comm | |
203 | #else | |
204 | # define COLD_COMM(c) (c).c_u.u_comm | |
205 | #endif | |
252b5132 | 206 | |
3d855632 | 207 | /* Return the struct __context64 pointer from struct core_dumpx C. */ |
252b5132 | 208 | |
59d9f049 ND |
209 | #ifdef AIX_CORE_DUMPX_CORE |
210 | # define CNEW_CONTEXT64(c) (c).c_flt.hctx.r64 | |
211 | #else | |
212 | # define CNEW_CONTEXT64(c) c | |
213 | #endif | |
252b5132 | 214 | |
3d855632 | 215 | /* Return the struct mstsave pointer from struct core_dumpx C. */ |
6ad49cca KB |
216 | |
217 | #ifdef AIX_CORE_DUMPX_CORE | |
59d9f049 | 218 | # define CNEW_MSTSAVE(c) (c).c_flt.hctx.r32 |
6ad49cca | 219 | #else |
59d9f049 ND |
220 | # define CNEW_MSTSAVE(c) c |
221 | #endif | |
222 | ||
3d855632 | 223 | /* Return the struct mstsave pointer from struct core_dump C. */ |
59d9f049 | 224 | |
252b5132 | 225 | #ifdef CORE_VERSION_1 |
59d9f049 | 226 | # define COLD_MSTSAVE(c) (c).c_mst |
252b5132 | 227 | #else |
59d9f049 | 228 | # define COLD_MSTSAVE(c) (c).c_u.u_save |
6ad49cca | 229 | #endif |
59d9f049 | 230 | |
3d855632 | 231 | /* Return whether struct core_dumpx is from a 64-bit process. */ |
59d9f049 ND |
232 | |
233 | #ifdef AIX_CORE_DUMPX_CORE | |
234 | # define CNEW_PROC64(c) IS_PROC64(&(c).c_u.U_proc) | |
235 | #else | |
236 | # define CNEW_PROC64(c) 0 | |
237 | #endif | |
238 | ||
239 | /* Magic end-of-stack addresses for old core dumps. This is _very_ fragile, | |
3d855632 | 240 | but I don't see any easy way to get that info right now. */ |
59d9f049 ND |
241 | |
242 | #ifdef CORE_VERSION_1 | |
243 | # define COLD_STACKEND 0x2ff23000 | |
244 | #else | |
245 | # define COLD_STACKEND 0x2ff80000 | |
252b5132 RH |
246 | #endif |
247 | ||
59d9f049 | 248 | /* Size of the leading portion that old and new core dump structures have in |
3d855632 | 249 | common. */ |
6a125b16 KH |
250 | #define CORE_COMMONSZ ((int) &((struct core_dump *) 0)->c_entries \ |
251 | + sizeof (((struct core_dump *) 0)->c_entries)) | |
252b5132 | 252 | |
3d855632 KH |
253 | /* Try to read into CORE the header from the core file associated with ABFD. |
254 | Return success. */ | |
59d9f049 ND |
255 | |
256 | static boolean | |
257 | read_hdr (bfd *abfd, CoreHdr *core) | |
258 | { | |
259 | bfd_size_type size; | |
260 | ||
dc810e39 | 261 | if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0) |
59d9f049 ND |
262 | return false; |
263 | ||
264 | /* Read the leading portion that old and new core dump structures have in | |
3d855632 | 265 | common. */ |
dc810e39 AM |
266 | size = CORE_COMMONSZ; |
267 | if (bfd_bread (core, size, abfd) != size) | |
59d9f049 ND |
268 | return false; |
269 | ||
3d855632 | 270 | /* Read the trailing portion of the structure. */ |
dc810e39 AM |
271 | if (CORE_NEW (*core)) |
272 | size = sizeof (core->new); | |
273 | else | |
274 | size = sizeof (core->old); | |
275 | size -= CORE_COMMONSZ; | |
276 | return bfd_bread ((char *) core + CORE_COMMONSZ, size, abfd) == size; | |
59d9f049 | 277 | } |
252b5132 RH |
278 | |
279 | static asection * | |
280 | make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos) | |
281 | bfd *abfd; | |
dc810e39 | 282 | const char *name; |
252b5132 RH |
283 | flagword flags; |
284 | bfd_size_type _raw_size; | |
285 | bfd_vma vma; | |
286 | file_ptr filepos; | |
287 | { | |
288 | asection *asect; | |
289 | ||
290 | asect = bfd_make_section_anyway (abfd, name); | |
291 | if (!asect) | |
292 | return NULL; | |
293 | ||
294 | asect->flags = flags; | |
295 | asect->_raw_size = _raw_size; | |
296 | asect->vma = vma; | |
297 | asect->filepos = filepos; | |
298 | asect->alignment_power = 8; | |
299 | ||
300 | return asect; | |
301 | } | |
302 | ||
303 | /* Decide if a given bfd represents a `core' file or not. There really is no | |
3d855632 | 304 | magic number or anything like, in rs6000coff. */ |
252b5132 RH |
305 | |
306 | const bfd_target * | |
307 | rs6000coff_core_p (abfd) | |
308 | bfd *abfd; | |
309 | { | |
59d9f049 | 310 | CoreHdr core; |
252b5132 | 311 | struct stat statbuf; |
59d9f049 | 312 | bfd_size_type size; |
252b5132 RH |
313 | char *tmpptr; |
314 | ||
3d855632 | 315 | /* Values from new and old core structures. */ |
59d9f049 ND |
316 | int c_flag; |
317 | file_ptr c_stack, c_regoff, c_loader; | |
318 | bfd_size_type c_size, c_regsize, c_lsize; | |
319 | bfd_vma c_stackend; | |
320 | void *c_regptr; | |
321 | int proc64; | |
252b5132 | 322 | |
59d9f049 | 323 | if (!read_hdr (abfd, &core)) |
252b5132 RH |
324 | { |
325 | if (bfd_get_error () != bfd_error_system_call) | |
326 | bfd_set_error (bfd_error_wrong_format); | |
327 | return NULL; | |
328 | } | |
329 | ||
3d855632 | 330 | /* Copy fields from new or old core structure. */ |
59d9f049 ND |
331 | if (CORE_NEW (core)) |
332 | { | |
333 | c_flag = core.new.c_flag; | |
334 | c_stack = (file_ptr) core.new.c_stack; | |
335 | c_size = core.new.c_size; | |
336 | c_stackend = CNEW_STACKORG (core.new) + c_size; | |
337 | c_lsize = CNEW_LSIZE (core.new); | |
338 | c_loader = CNEW_LOADER (core.new); | |
339 | proc64 = CNEW_PROC64 (core.new); | |
340 | } | |
341 | else | |
342 | { | |
343 | c_flag = core.old.c_flag; | |
344 | c_stack = (file_ptr) core.old.c_stack; | |
345 | c_size = core.old.c_size; | |
346 | c_stackend = COLD_STACKEND; | |
347 | c_lsize = 0x7ffffff; | |
348 | c_loader = (file_ptr) COLD_LOADER (core.old); | |
349 | proc64 = 0; | |
350 | } | |
351 | ||
352 | if (proc64) | |
353 | { | |
354 | c_regsize = sizeof (CNEW_CONTEXT64 (core.new)); | |
355 | c_regptr = &CNEW_CONTEXT64 (core.new); | |
356 | } | |
357 | else if (CORE_NEW (core)) | |
358 | { | |
359 | c_regsize = sizeof (CNEW_MSTSAVE (core.new)); | |
360 | c_regptr = &CNEW_MSTSAVE (core.new); | |
361 | } | |
362 | else | |
363 | { | |
364 | c_regsize = sizeof (COLD_MSTSAVE (core.old)); | |
365 | c_regptr = &COLD_MSTSAVE (core.old); | |
366 | } | |
6a125b16 | 367 | c_regoff = (char *) c_regptr - (char *) &core; |
59d9f049 | 368 | |
252b5132 RH |
369 | if (bfd_stat (abfd, &statbuf) < 0) |
370 | { | |
371 | bfd_set_error (bfd_error_system_call); | |
372 | return NULL; | |
373 | } | |
374 | ||
375 | /* If the core file ulimit is too small, the system will first | |
376 | omit the data segment, then omit the stack, then decline to | |
377 | dump core altogether (as far as I know UBLOCK_VALID and LE_VALID | |
378 | are always set) (this is based on experimentation on AIX 3.2). | |
379 | Now, the thing is that GDB users will be surprised | |
380 | if segments just silently don't appear (well, maybe they would | |
381 | think to check "info files", I don't know). | |
382 | ||
383 | For the data segment, we have no choice but to keep going if it's | |
384 | not there, since the default behavior is not to dump it (regardless | |
6a125b16 | 385 | of the ulimit, it's based on SA_FULLDUMP). But for the stack segment, |
252b5132 RH |
386 | if it's not there, we refuse to have anything to do with this core |
387 | file. The usefulness of a core dump without a stack segment is pretty | |
388 | limited anyway. */ | |
59d9f049 ND |
389 | |
390 | if (!(c_flag & UBLOCK_VALID) | |
391 | || !(c_flag & LE_VALID)) | |
252b5132 RH |
392 | { |
393 | bfd_set_error (bfd_error_wrong_format); | |
394 | return NULL; | |
395 | } | |
396 | ||
59d9f049 | 397 | if (!(c_flag & USTACK_VALID)) |
252b5132 RH |
398 | { |
399 | bfd_set_error (bfd_error_file_truncated); | |
400 | return NULL; | |
401 | } | |
402 | ||
403 | /* Don't check the core file size for a full core, AIX 4.1 includes | |
6a125b16 | 404 | additional shared library sections in a full core. */ |
59d9f049 | 405 | if (!(c_flag & (FULL_CORE | CORE_TRUNC))) |
252b5132 | 406 | { |
3d855632 | 407 | /* If the size is wrong, it means we're misinterpreting something. */ |
59d9f049 ND |
408 | if (c_stack + (file_ptr) c_size != statbuf.st_size) |
409 | { | |
410 | bfd_set_error (bfd_error_wrong_format); | |
411 | return NULL; | |
412 | } | |
252b5132 RH |
413 | } |
414 | ||
415 | /* Sanity check on the c_tab field. */ | |
59d9f049 ND |
416 | if (!CORE_NEW (core) && (c_loader < (file_ptr) sizeof core.old || |
417 | c_loader >= statbuf.st_size || | |
418 | c_loader >= c_stack)) | |
252b5132 RH |
419 | { |
420 | bfd_set_error (bfd_error_wrong_format); | |
421 | return NULL; | |
422 | } | |
423 | ||
424 | /* Issue warning if the core file was truncated during writing. */ | |
59d9f049 | 425 | if (c_flag & CORE_TRUNC) |
252b5132 RH |
426 | (*_bfd_error_handler) (_("%s: warning core file truncated"), |
427 | bfd_get_filename (abfd)); | |
428 | ||
6a125b16 | 429 | /* Allocate core file header. */ |
59d9f049 | 430 | size = CORE_NEW (core) ? sizeof (core.new) : sizeof (core.old); |
dc810e39 | 431 | tmpptr = (char *) bfd_zalloc (abfd, (bfd_size_type) size); |
252b5132 RH |
432 | if (!tmpptr) |
433 | return NULL; | |
252b5132 RH |
434 | |
435 | /* Copy core file header. */ | |
59d9f049 ND |
436 | memcpy (tmpptr, &core, size); |
437 | set_tdata (abfd, tmpptr); | |
438 | ||
3d855632 | 439 | /* Set architecture. */ |
59d9f049 ND |
440 | if (CORE_NEW (core)) |
441 | { | |
442 | enum bfd_architecture arch; | |
443 | unsigned long mach; | |
444 | ||
445 | switch (CNEW_IMPL (core.new)) | |
446 | { | |
447 | case POWER_RS1: | |
448 | case POWER_RSC: | |
449 | case POWER_RS2: | |
450 | arch = bfd_arch_rs6000; | |
451 | mach = bfd_mach_rs6k; | |
452 | break; | |
453 | default: | |
454 | arch = bfd_arch_powerpc; | |
455 | mach = bfd_mach_ppc; | |
456 | break; | |
6a125b16 | 457 | } |
59d9f049 ND |
458 | bfd_default_set_arch_mach (abfd, arch, mach); |
459 | } | |
252b5132 | 460 | |
3d855632 | 461 | /* .stack section. */ |
252b5132 | 462 | if (!make_bfd_asection (abfd, ".stack", |
59d9f049 ND |
463 | SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, |
464 | c_size, c_stackend - c_size, c_stack)) | |
252b5132 RH |
465 | return NULL; |
466 | ||
3d855632 | 467 | /* .reg section for all registers. */ |
252b5132 | 468 | if (!make_bfd_asection (abfd, ".reg", |
59d9f049 ND |
469 | SEC_HAS_CONTENTS, |
470 | c_regsize, (bfd_vma) 0, c_regoff)) | |
252b5132 RH |
471 | return NULL; |
472 | ||
473 | /* .ldinfo section. | |
474 | To actually find out how long this section is in this particular | |
475 | core dump would require going down the whole list of struct ld_info's. | |
476 | See if we can just fake it. */ | |
477 | if (!make_bfd_asection (abfd, ".ldinfo", | |
59d9f049 ND |
478 | SEC_HAS_CONTENTS, |
479 | c_lsize, (bfd_vma) 0, c_loader)) | |
252b5132 RH |
480 | return NULL; |
481 | ||
482 | #ifndef CORE_VERSION_1 | |
483 | /* .data section if present. | |
484 | AIX 3 dumps the complete data section and sets FULL_CORE if the | |
485 | ulimit is large enough, otherwise the data section is omitted. | |
486 | AIX 4 sets FULL_CORE even if the core file is truncated, we have | |
59d9f049 | 487 | to examine core.c_datasize below to find out the actual size of |
6a125b16 | 488 | the .data section. */ |
59d9f049 | 489 | if (c_flag & FULL_CORE) |
252b5132 RH |
490 | { |
491 | if (!make_bfd_asection (abfd, ".data", | |
492 | SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, | |
59d9f049 | 493 | (bfd_size_type) core.old.c_u.u_dsize, |
252b5132 | 494 | (bfd_vma) |
59d9f049 ND |
495 | CDATA_ADDR (core.old.c_u.u_dsize), |
496 | c_stack + c_size)) | |
252b5132 RH |
497 | return NULL; |
498 | } | |
499 | #endif | |
500 | ||
501 | #ifdef CORE_VERSION_1 | |
502 | /* AIX 4 adds data sections from loaded objects to the core file, | |
503 | which can be found by examining ldinfo, and anonymously mmapped | |
504 | regions. */ | |
505 | { | |
59d9f049 ND |
506 | LdInfo ldinfo; |
507 | bfd_size_type ldi_datasize; | |
508 | file_ptr ldi_core; | |
509 | uint ldi_next; | |
510 | bfd_vma ldi_dataorg; | |
511 | ||
3d855632 | 512 | /* Fields from new and old core structures. */ |
59d9f049 ND |
513 | bfd_size_type c_datasize, c_vmregions; |
514 | file_ptr c_data, c_vmm; | |
515 | ||
516 | if (CORE_NEW (core)) | |
517 | { | |
518 | c_datasize = CNEW_DATASIZE (core.new); | |
519 | c_data = (file_ptr) core.new.c_data; | |
520 | c_vmregions = core.new.c_vmregions; | |
521 | c_vmm = (file_ptr) core.new.c_vmm; | |
522 | } | |
523 | else | |
524 | { | |
525 | c_datasize = core.old.c_datasize; | |
526 | c_data = (file_ptr) core.old.c_data; | |
527 | c_vmregions = core.old.c_vmregions; | |
528 | c_vmm = (file_ptr) core.old.c_vmm; | |
529 | } | |
252b5132 RH |
530 | |
531 | /* .data section from executable. */ | |
59d9f049 | 532 | if (c_datasize) |
252b5132 RH |
533 | { |
534 | if (!make_bfd_asection (abfd, ".data", | |
535 | SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, | |
59d9f049 ND |
536 | c_datasize, |
537 | (bfd_vma) CDATA_ADDR (c_datasize), | |
538 | c_data)) | |
252b5132 RH |
539 | return NULL; |
540 | } | |
541 | ||
542 | /* .data sections from loaded objects. */ | |
59d9f049 | 543 | if (proc64) |
6a125b16 | 544 | size = (int) ((LdInfo *) 0)->l64.ldinfo_filename; |
59d9f049 | 545 | else |
6a125b16 | 546 | size = (int) ((LdInfo *) 0)->l32.ldinfo_filename; |
59d9f049 | 547 | |
252b5132 RH |
548 | while (1) |
549 | { | |
59d9f049 | 550 | if (bfd_seek (abfd, c_loader, SEEK_SET) != 0) |
252b5132 | 551 | return NULL; |
dc810e39 | 552 | if (bfd_bread (&ldinfo, size, abfd) != size) |
252b5132 | 553 | return NULL; |
59d9f049 ND |
554 | |
555 | if (proc64) | |
252b5132 | 556 | { |
59d9f049 ND |
557 | ldi_core = ldinfo.l64.ldinfo_core; |
558 | ldi_datasize = ldinfo.l64.ldinfo_datasize; | |
559 | ldi_dataorg = (bfd_vma) ldinfo.l64.ldinfo_dataorg; | |
560 | ldi_next = ldinfo.l64.ldinfo_next; | |
561 | } | |
562 | else | |
563 | { | |
564 | ldi_core = ldinfo.l32.ldinfo_core; | |
565 | ldi_datasize = ldinfo.l32.ldinfo_datasize; | |
3d855632 | 566 | ldi_dataorg = (bfd_vma) (long) ldinfo.l32.ldinfo_dataorg; |
59d9f049 | 567 | ldi_next = ldinfo.l32.ldinfo_next; |
252b5132 | 568 | } |
59d9f049 ND |
569 | |
570 | if (ldi_core) | |
571 | if (!make_bfd_asection (abfd, ".data", | |
572 | SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, | |
573 | ldi_datasize, ldi_dataorg, ldi_core)) | |
6a125b16 | 574 | return NULL; |
59d9f049 ND |
575 | |
576 | if (ldi_next == 0) | |
252b5132 | 577 | break; |
59d9f049 | 578 | c_loader += ldi_next; |
252b5132 RH |
579 | } |
580 | ||
581 | /* .vmdata sections from anonymously mmapped regions. */ | |
59d9f049 | 582 | if (c_vmregions) |
252b5132 | 583 | { |
59d9f049 | 584 | bfd_size_type i; |
252b5132 | 585 | |
59d9f049 | 586 | if (bfd_seek (abfd, c_vmm, SEEK_SET) != 0) |
252b5132 RH |
587 | return NULL; |
588 | ||
59d9f049 | 589 | for (i = 0; i < c_vmregions; i++) |
252b5132 | 590 | { |
59d9f049 ND |
591 | VmInfo vminfo; |
592 | bfd_size_type vminfo_size; | |
593 | file_ptr vminfo_offset; | |
594 | bfd_vma vminfo_addr; | |
252b5132 | 595 | |
59d9f049 | 596 | size = CORE_NEW (core) ? sizeof (vminfo.new) : sizeof (vminfo.old); |
dc810e39 | 597 | if (bfd_bread (&vminfo, size, abfd) != size) |
252b5132 | 598 | return NULL; |
59d9f049 ND |
599 | |
600 | if (CORE_NEW (core)) | |
252b5132 | 601 | { |
59d9f049 ND |
602 | vminfo_addr = (bfd_vma) vminfo.new.vminfo_addr; |
603 | vminfo_size = vminfo.new.vminfo_size; | |
604 | vminfo_offset = vminfo.new.vminfo_offset; | |
252b5132 | 605 | } |
59d9f049 ND |
606 | else |
607 | { | |
3d855632 | 608 | vminfo_addr = (bfd_vma) (long) vminfo.old.vminfo_addr; |
59d9f049 ND |
609 | vminfo_size = vminfo.old.vminfo_size; |
610 | vminfo_offset = vminfo.old.vminfo_offset; | |
611 | } | |
612 | ||
613 | if (vminfo_offset) | |
614 | if (!make_bfd_asection (abfd, ".vmdata", | |
615 | SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS, | |
616 | vminfo_size, vminfo_addr, | |
617 | vminfo_offset)) | |
618 | return NULL; | |
252b5132 RH |
619 | } |
620 | } | |
621 | } | |
622 | #endif | |
623 | ||
6a125b16 | 624 | return abfd->xvec; /* This is garbage for now. */ |
252b5132 RH |
625 | } |
626 | ||
6a125b16 KH |
627 | /* Return `true' if given core is from the given executable. */ |
628 | ||
252b5132 RH |
629 | boolean |
630 | rs6000coff_core_file_matches_executable_p (core_bfd, exec_bfd) | |
631 | bfd *core_bfd; | |
632 | bfd *exec_bfd; | |
633 | { | |
59d9f049 | 634 | CoreHdr core; |
252b5132 RH |
635 | bfd_size_type size; |
636 | char *path, *s; | |
637 | size_t alloc; | |
638 | const char *str1, *str2; | |
639 | boolean ret; | |
59d9f049 | 640 | file_ptr c_loader; |
252b5132 | 641 | |
59d9f049 | 642 | if (!read_hdr (core_bfd, &core)) |
252b5132 RH |
643 | return false; |
644 | ||
59d9f049 ND |
645 | if (CORE_NEW (core)) |
646 | c_loader = CNEW_LOADER (core.new); | |
647 | else | |
648 | c_loader = (file_ptr) COLD_LOADER (core.old); | |
252b5132 | 649 | |
59d9f049 | 650 | if (CORE_NEW (core) && CNEW_PROC64 (core.new)) |
6a125b16 | 651 | size = (int) ((LdInfo *) 0)->l64.ldinfo_filename; |
59d9f049 | 652 | else |
6a125b16 | 653 | size = (int) ((LdInfo *) 0)->l32.ldinfo_filename; |
59d9f049 ND |
654 | |
655 | if (bfd_seek (core_bfd, c_loader + size, SEEK_SET) != 0) | |
252b5132 RH |
656 | return false; |
657 | ||
658 | alloc = 100; | |
dc810e39 | 659 | path = bfd_malloc ((bfd_size_type) alloc); |
252b5132 RH |
660 | if (path == NULL) |
661 | return false; | |
662 | s = path; | |
663 | ||
664 | while (1) | |
665 | { | |
dc810e39 | 666 | if (bfd_bread (s, (bfd_size_type) 1, core_bfd) != 1) |
252b5132 RH |
667 | { |
668 | free (path); | |
669 | return false; | |
670 | } | |
671 | if (*s == '\0') | |
672 | break; | |
673 | ++s; | |
674 | if (s == path + alloc) | |
675 | { | |
676 | char *n; | |
677 | ||
678 | alloc *= 2; | |
dc810e39 | 679 | n = bfd_realloc (path, (bfd_size_type) alloc); |
252b5132 RH |
680 | if (n == NULL) |
681 | { | |
682 | free (path); | |
683 | return false; | |
684 | } | |
685 | s = n + (path - s); | |
686 | path = n; | |
687 | } | |
688 | } | |
59d9f049 | 689 | |
252b5132 RH |
690 | str1 = strrchr (path, '/'); |
691 | str2 = strrchr (exec_bfd->filename, '/'); | |
692 | ||
693 | /* step over character '/' */ | |
694 | str1 = str1 != NULL ? str1 + 1 : path; | |
695 | str2 = str2 != NULL ? str2 + 1 : exec_bfd->filename; | |
696 | ||
697 | if (strcmp (str1, str2) == 0) | |
698 | ret = true; | |
699 | else | |
700 | ret = false; | |
701 | ||
702 | free (path); | |
703 | ||
704 | return ret; | |
705 | } | |
706 | ||
707 | char * | |
708 | rs6000coff_core_file_failing_command (abfd) | |
709 | bfd *abfd; | |
710 | { | |
59d9f049 ND |
711 | CoreHdr *core = core_hdr (abfd); |
712 | char *com = CORE_NEW (*core) ? | |
713 | CNEW_COMM (core->new) : COLD_COMM (core->old); | |
714 | ||
252b5132 RH |
715 | if (*com) |
716 | return com; | |
717 | else | |
718 | return 0; | |
719 | } | |
720 | ||
721 | int | |
722 | rs6000coff_core_file_failing_signal (abfd) | |
723 | bfd *abfd; | |
724 | { | |
59d9f049 ND |
725 | CoreHdr *core = core_hdr (abfd); |
726 | return CORE_NEW (*core) ? core->new.c_signo : core->old.c_signo; | |
252b5132 RH |
727 | } |
728 | ||
729 | #endif /* AIX_CORE */ |