Made sure that every call to bfd_read, bfd_write, and bfd_seek
[external/binutils.git] / bfd / hpux-core.c
1 /* BFD back-end for HP/UX core files.
2    Copyright 1993 Free Software Foundation, Inc.
3    Written by Stu Grossman, Cygnus Support.
4    Converted to back-end form by Ian Lance Taylor, Cygnus SUpport
5
6 This file is part of BFD, the Binary File Descriptor library.
7
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 2 of the License, or
11 (at your option) any later version.
12
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.
17
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., 675 Mass Ave, Cambridge, MA 02139, USA.  */
21
22 /* This file can only be compiled on systems which use HP/UX style
23    core files.  In the config/XXXXXX.mh file for such a system add
24       HDEFINES=-DHPUX_CORE
25       HDEPFILES=hpux-core.o
26    */
27
28 #include "bfd.h"
29 #include "sysdep.h"
30 #include "libbfd.h"
31
32 #if defined (HOST_HPPAHPUX) || defined (HOST_HP300HPUX)
33
34 /* FIXME: sys/core.h doesn't exist for HPUX version 7.  HPUX version
35    5, 6, and 7 core files seem to be standard trad-core.c type core
36    files; can we just use trad-core.c in addition to this file?  */
37
38 #include <sys/core.h>
39 #include <sys/utsname.h>
40
41 #endif /* HOST_HPPAHPUX */
42
43 #ifdef HOST_HPPABSD
44
45 /* Not a very swift place to put it, but that's where the BSD port
46    puts them.  */
47 #include "/hpux/usr/include/sys/core.h"
48
49 #endif /* HOST_HPPABSD */
50
51 #include <stdio.h>
52 #include <sys/types.h>
53 #include <sys/param.h>
54 #include <sys/dir.h>
55 #include <signal.h>
56 #include <machine/reg.h>
57 #include <sys/user.h>           /* After a.out.h  */
58 #include <sys/file.h>
59 #include <errno.h>
60
61 /* These are stored in the bfd's tdata */
62
63 struct hpux_core_struct 
64 {
65   int sig;
66   char cmd[MAXCOMLEN + 1];
67   asection *data_section;
68   asection *stack_section;
69   asection *reg_section;
70 };
71
72 #define core_hdr(bfd) ((bfd)->tdata.hpux_core_data)
73 #define core_signal(bfd) (core_hdr(bfd)->sig)
74 #define core_command(bfd) (core_hdr(bfd)->cmd)
75 #define core_datasec(bfd) (core_hdr(bfd)->data_section)
76 #define core_stacksec(bfd) (core_hdr(bfd)->stack_section)
77 #define core_regsec(bfd) (core_hdr(bfd)->reg_section)
78
79 static asection *
80 make_bfd_asection (abfd, name, flags, _raw_size, vma, alignment_power)
81      bfd *abfd;
82      CONST char *name;
83      flagword flags;
84      bfd_size_type _raw_size;
85      bfd_vma vma;
86      unsigned int alignment_power;
87 {
88   asection *asect;
89
90   asect = bfd_make_section (abfd, name);
91   if (!asect)
92     return NULL;
93
94   asect->flags = flags;
95   asect->_raw_size = _raw_size;
96   asect->vma = vma;
97   asect->filepos = bfd_tell (abfd);
98   asect->alignment_power = alignment_power;
99
100   return asect;
101 }
102
103 static asymbol *
104 hpux_core_make_empty_symbol (abfd)
105      bfd *abfd;
106 {
107   asymbol *new = (asymbol *) bfd_zalloc (abfd, sizeof (asymbol));
108   if (new)
109     new->the_bfd = abfd;
110   return new;
111 }
112
113 static bfd_target *
114 hpux_core_core_file_p (abfd)
115      bfd *abfd;
116 {
117   core_hdr (abfd) = (struct hpux_core_struct *)
118     bfd_zalloc (abfd, sizeof (struct hpux_core_struct));
119   if (!core_hdr (abfd))
120     return NULL;
121
122   while (1)
123     {
124       int val;
125       struct corehead core_header;
126
127       val = bfd_read ((void *) &core_header, 1, sizeof core_header, abfd);
128       if (val <= 0)
129         break;
130       switch (core_header.type)
131         {
132         case CORE_KERNEL:
133         case CORE_FORMAT:
134           bfd_seek (abfd, core_header.len, SEEK_CUR);   /* Just skip this */
135           break;
136         case CORE_EXEC:
137           {
138             struct proc_exec proc_exec;
139             if (bfd_read ((void *) &proc_exec, 1, core_header.len, abfd)
140                 != core_header.len)
141               break;
142             strncpy (core_command (abfd), proc_exec.cmd, MAXCOMLEN + 1);
143           }
144           break;
145         case CORE_PROC:
146           {
147             struct proc_info proc_info;
148             core_regsec (abfd) = make_bfd_asection (abfd, ".reg",
149                                                SEC_ALLOC + SEC_HAS_CONTENTS,
150                                                     core_header.len,
151                                 (int) &proc_info - (int) &proc_info.hw_regs,
152                                                     2);
153             if (bfd_read (&proc_info, 1, core_header.len, abfd)
154                 != core_header.len)
155               break;
156             core_signal (abfd) = proc_info.sig;
157           }
158           if (!core_regsec (abfd))
159             return NULL;
160           break;
161         case CORE_DATA:
162           core_datasec (abfd) = make_bfd_asection (abfd, ".data",
163                                     SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
164                                                    core_header.len,
165                                                    core_header.addr,
166                                                    2);
167           if (!core_datasec (abfd))
168             return NULL;
169           bfd_seek (abfd, core_header.len, SEEK_CUR);
170           break;
171         case CORE_STACK:
172           core_stacksec (abfd) = make_bfd_asection (abfd, ".stack",
173                                     SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
174                                                     core_header.len,
175                                                     core_header.addr,
176                                                     2);
177           if (!core_stacksec (abfd))
178             return NULL;
179           bfd_seek (abfd, core_header.len, SEEK_CUR);
180           break;
181         default:
182           /* Falling into here is an error and should prevent this
183              target from matching.  That way systems which use hpux
184              cores along with other formats can still work.  */
185           return 0;
186         }
187     }
188
189   /* OK, we believe you.  You're a core file (sure, sure).  */
190
191   return abfd->xvec;
192 }
193
194 static char *
195 hpux_core_core_file_failing_command (abfd)
196      bfd *abfd;
197 {
198   return core_command (abfd);
199 }
200
201 /* ARGSUSED */
202 static int
203 hpux_core_core_file_failing_signal (abfd)
204      bfd *abfd;
205 {
206   return core_signal (abfd);
207 }
208
209 /* ARGSUSED */
210 static boolean
211 hpux_core_core_file_matches_executable_p (core_bfd, exec_bfd)
212      bfd *core_bfd, *exec_bfd;
213 {
214   return true;                  /* FIXME, We have no way of telling at this point */
215 }
216 \f
217 /* No archive file support via this BFD */
218 #define hpux_core_openr_next_archived_file      bfd_generic_openr_next_archived_file
219 #define hpux_core_generic_stat_arch_elt         bfd_generic_stat_arch_elt
220 #define hpux_core_slurp_armap                   bfd_false
221 #define hpux_core_slurp_extended_name_table     bfd_true
222 #define hpux_core_write_armap                   (boolean (*) PARAMS     \
223     ((bfd *arch, unsigned int elength, struct orl *map, \
224       unsigned int orl_count, int stridx))) bfd_false
225 #define hpux_core_truncate_arname               bfd_dont_truncate_arname
226
227 #define hpux_core_close_and_cleanup             bfd_generic_close_and_cleanup
228 #define hpux_core_set_section_contents          (boolean (*) PARAMS     \
229         ((bfd *abfd, asection *section, PTR data, file_ptr offset,      \
230         bfd_size_type count))) bfd_generic_set_section_contents
231 #define hpux_core_get_section_contents          bfd_generic_get_section_contents
232 #define hpux_core_new_section_hook              (boolean (*) PARAMS     \
233         ((bfd *, sec_ptr))) bfd_true
234 #define hpux_core_get_symtab_upper_bound        bfd_0l
235 #define hpux_core_get_symtab                    (long (*) PARAMS \
236         ((bfd *, struct symbol_cache_entry **))) bfd_0l
237 #define hpux_core_get_reloc_upper_bound         (long (*) PARAMS \
238         ((bfd *, sec_ptr))) bfd_0l
239 #define hpux_core_canonicalize_reloc            (long (*) PARAMS \
240         ((bfd *, sec_ptr, arelent **, struct symbol_cache_entry**))) bfd_0l
241 #define hpux_core_print_symbol                  (void (*) PARAMS        \
242         ((bfd *, PTR, struct symbol_cache_entry  *,                     \
243         bfd_print_symbol_type))) bfd_false
244 #define hpux_core_get_symbol_info               (void (*) PARAMS        \
245         ((bfd *, struct symbol_cache_entry  *,                  \
246         symbol_info *))) bfd_false
247 #define hpux_core_get_lineno                    (alent * (*) PARAMS     \
248         ((bfd *, struct symbol_cache_entry *))) bfd_nullvoidptr
249 #define hpux_core_set_arch_mach                 (boolean (*) PARAMS     \
250         ((bfd *, enum bfd_architecture, unsigned long))) bfd_false
251 #define hpux_core_find_nearest_line             (boolean (*) PARAMS     \
252         ((bfd *abfd, struct sec  *section,                              \
253          struct symbol_cache_entry  **symbols,bfd_vma offset,           \
254          CONST char **file, CONST char **func, unsigned int *line))) bfd_false
255 #define hpux_core_sizeof_headers                (int (*) PARAMS \
256         ((bfd *, boolean))) bfd_0
257
258 #define hpux_core_bfd_debug_info_start          bfd_void
259 #define hpux_core_bfd_debug_info_end            bfd_void
260 #define hpux_core_bfd_debug_info_accumulate     (void (*) PARAMS        \
261         ((bfd *, struct sec *))) bfd_void
262 #define hpux_core_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
263 #define hpux_core_bfd_relax_section             bfd_generic_relax_section
264 #define hpux_core_bfd_reloc_type_lookup \
265   ((CONST struct reloc_howto_struct *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) bfd_nullvoidptr)
266 #define hpux_core_bfd_make_debug_symbol \
267   ((asymbol *(*) PARAMS ((bfd *, void *, unsigned long))) bfd_nullvoidptr)
268 #define hpux_core_bfd_link_hash_table_create \
269   ((struct bfd_link_hash_table *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
270 #define hpux_core_bfd_link_add_symbols \
271   ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
272 #define hpux_core_bfd_final_link \
273   ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
274 #define hpux_core_bfd_copy_private_section_data \
275   ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_false)
276 #define hpux_core_bfd_copy_private_bfd_data \
277   ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false)
278 #define hpux_core_bfd_is_local_label \
279   ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false)
280 #define hpux_core_bfd_free_cached_info bfd_true
281
282 /* If somebody calls any byte-swapping routines, shoot them.  */
283 void
284 swap_abort()
285 {
286   abort(); /* This way doesn't require any declaration for ANSI to fuck up */
287 }
288 #define NO_GET  ((bfd_vma (*) PARAMS ((   const bfd_byte *))) swap_abort )
289 #define NO_PUT  ((void    (*) PARAMS ((bfd_vma, bfd_byte *))) swap_abort )
290 #define NO_SIGNED_GET \
291   ((bfd_signed_vma (*) PARAMS ((const bfd_byte *))) swap_abort )
292
293 bfd_target hpux_core_vec =
294   {
295     "hpux-core",
296     bfd_target_unknown_flavour,
297     true,                       /* target byte order */
298     true,                       /* target headers byte order */
299     (HAS_RELOC | EXEC_P |       /* object flags */
300      HAS_LINENO | HAS_DEBUG |
301      HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
302     (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
303     0,                                                     /* symbol prefix */
304     ' ',                                                   /* ar_pad_char */
305     16,                                                    /* ar_max_namelen */
306     3,                                                     /* minimum alignment power */
307     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 64 bit data */
308     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 32 bit data */
309     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 16 bit data */
310     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 64 bit hdrs */
311     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 32 bit hdrs */
312     NO_GET, NO_SIGNED_GET, NO_PUT,      /* 16 bit hdrs */
313
314     {                           /* bfd_check_format */
315      _bfd_dummy_target,         /* unknown format */
316      _bfd_dummy_target,         /* object file */
317      _bfd_dummy_target,         /* archive */
318      hpux_core_core_file_p      /* a core file */
319     },
320     {                           /* bfd_set_format */
321      bfd_false, bfd_false,
322      bfd_false, bfd_false
323     },
324     {                           /* bfd_write_contents */
325      bfd_false, bfd_false,
326      bfd_false, bfd_false
327     },
328     
329     JUMP_TABLE(hpux_core),
330     (PTR) 0                     /* backend_data */
331 };