Add COFF_SWAP_TABLE to it (oops)
[deliverable/binutils-gdb.git] / bfd / elf.c
1 /* ELF support for BFD.
2 Copyright (C) 1991 Free Software Foundation, Inc.
3
4 Written by Fred Fish @ Cygnus Support, from information published
5 in "UNIX System V Release 4, Programmers Guide: ANSI C and
6 Programming Support Tools".
7
8 This file is part of BFD, the Binary File Descriptor library.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23
24
25 /****************************************
26
27 WARNING
28
29 This is only a partial ELF implementation,
30 incorporating only those parts that are
31 required to get gdb up and running. It is
32 expected that it will be expanded to a full
33 ELF implementation at some future date.
34
35 Unimplemented stubs call abort() to ensure
36 that they get proper attention if they are
37 ever called. The stubs are here since
38 this version was hacked from the COFF
39 version, and thus they will probably
40 go away or get expanded appropriately in a
41 future version.
42
43 fnf@cygnus.com
44
45 *****************************************/
46
47
48 /* Problems and other issues to resolve.
49
50 (1) BFD expects there to be some fixed number of "sections" in
51 the object file. I.E. there is a "section_count" variable in the
52 bfd structure which contains the number of sections. However, ELF
53 supports multiple "views" of a file. In particular, with current
54 implementations, executable files typically have two tables, a
55 program header table and a section header table, both of which
56 partition the executable.
57
58 In ELF-speak, the "linking view" of the file uses the section header
59 table to access "sections" within the file, and the "execution view"
60 uses the program header table to access "segments" within the file.
61 "Segments" typically may contain all the data from one or more
62 "sections".
63
64 Note that the section header table is optional in ELF executables,
65 but it is this information that is most useful to gdb. If the
66 section header table is missing, then gdb should probably try
67 to make do with the program header table. (FIXME)
68
69 */
70
71 #include "bfd.h"
72 #include "sysdep.h"
73 #include "libbfd.h"
74 #include "obstack.h"
75 #include "elf-common.h"
76 #include "elf-internal.h"
77 #include "elf-external.h"
78
79 #ifdef HAVE_PROCFS /* Some core file support requires host /proc files */
80 #include <sys/procfs.h>
81 #else
82 #define bfd_prstatus(abfd, descdata, descsz, filepos) /* Define away */
83 #define bfd_fpregset(abfd, descdata, descsz, filepos) /* Define away */
84 #define bfd_prpsinfo(abfd, descdata, descsz, filepos) /* Define away */
85 #endif
86
87 /* Forward data declarations */
88
89 extern bfd_target elf_little_vec, elf_big_vec;
90
91 /* Currently the elf_symbol_type struct just contains the generic bfd
92 symbol structure. */
93
94 typedef struct
95 {
96 asymbol symbol;
97 } elf_symbol_type;
98
99 /* Some private data is stashed away for future use using the tdata pointer
100 in the bfd structure. This information is different for ELF core files
101 and other ELF files. */
102
103 typedef struct
104 {
105 void *prstatus; /* The raw /proc prstatus structure */
106 void *prpsinfo; /* The raw /proc prpsinfo structure */
107 } elf_core_tdata;
108
109 #define core_prpsinfo(bfd) (((elf_core_tdata *)((bfd)->tdata))->prpsinfo)
110 #define core_prstatus(bfd) (((elf_core_tdata *)((bfd)->tdata))->prstatus)
111
112 typedef struct
113 {
114 file_ptr symtab_filepos; /* Offset to start of ELF symtab section */
115 long symtab_filesz; /* Size of ELF symtab section */
116 file_ptr strtab_filepos; /* Offset to start of ELF string tbl section */
117 long strtab_filesz; /* Size of ELF string tbl section */
118 } elf_obj_tdata;
119
120 #define elf_tdata(bfd) ((elf_obj_tdata *) ((bfd) -> tdata))
121 #define elf_symtab_filepos(bfd) (elf_tdata(bfd) -> symtab_filepos)
122 #define elf_symtab_filesz(bfd) (elf_tdata(bfd) -> symtab_filesz)
123 #define elf_strtab_filepos(bfd) (elf_tdata(bfd) -> strtab_filepos)
124 #define elf_strtab_filesz(bfd) (elf_tdata(bfd) -> strtab_filesz)
125
126 /* Translate an ELF symbol in external format into an ELF symbol in internal
127 format. */
128
129 static void
130 DEFUN(elf_swap_symbol_in,(abfd, src, dst),
131 bfd *abfd AND
132 Elf_External_Sym *src AND
133 Elf_Internal_Sym *dst)
134 {
135 dst -> st_name = bfd_h_get_32 (abfd, (bfd_byte *) src -> st_name);
136 dst -> st_value = bfd_h_get_32 (abfd, (bfd_byte *) src -> st_value);
137 dst -> st_size = bfd_h_get_32 (abfd, (bfd_byte *) src -> st_size);
138 dst -> st_info = bfd_h_get_8 (abfd, (bfd_byte *) src -> st_info);
139 dst -> st_other = bfd_h_get_8 (abfd, (bfd_byte *) src -> st_other);
140 dst -> st_shndx = bfd_h_get_16 (abfd, (bfd_byte *) src -> st_shndx);
141 }
142
143
144 /* Translate an ELF header in external format into an ELF header in internal
145 format. */
146
147 static void
148 DEFUN(elf_swap_ehdr_in,(abfd, src, dst),
149 bfd *abfd AND
150 Elf_External_Ehdr *src AND
151 Elf_Internal_Ehdr *dst)
152 {
153 bcopy (src -> e_ident, dst -> e_ident, EI_NIDENT);
154 dst -> e_type = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_type);
155 dst -> e_machine = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_machine);
156 dst -> e_version = bfd_h_get_32 (abfd, (bfd_byte *) src -> e_version);
157 dst -> e_entry = bfd_h_get_32 (abfd, (bfd_byte *) src -> e_entry);
158 dst -> e_phoff = bfd_h_get_32 (abfd, (bfd_byte *) src -> e_phoff);
159 dst -> e_shoff = bfd_h_get_32 (abfd, (bfd_byte *) src -> e_shoff);
160 dst -> e_flags = bfd_h_get_32 (abfd, (bfd_byte *) src -> e_flags);
161 dst -> e_ehsize = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_ehsize);
162 dst -> e_phentsize = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_phentsize);
163 dst -> e_phnum = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_phnum);
164 dst -> e_shentsize = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_shentsize);
165 dst -> e_shnum = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_shnum);
166 dst -> e_shstrndx = bfd_h_get_16 (abfd, (bfd_byte *) src -> e_shstrndx);
167 }
168
169
170 /* Translate an ELF section header table entry in external format into an
171 ELF section header table entry in internal format. */
172
173 static void
174 DEFUN(elf_swap_shdr_in,(abfd, src, dst),
175 bfd *abfd AND
176 Elf_External_Shdr *src AND
177 Elf_Internal_Shdr *dst)
178 {
179 dst -> sh_name = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_name);
180 dst -> sh_type = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_type);
181 dst -> sh_flags = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_flags);
182 dst -> sh_addr = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_addr);
183 dst -> sh_offset = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_offset);
184 dst -> sh_size = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_size);
185 dst -> sh_link = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_link);
186 dst -> sh_info = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_info);
187 dst -> sh_addralign = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_addralign);
188 dst -> sh_entsize = bfd_h_get_32 (abfd, (bfd_byte *) src -> sh_entsize);
189 }
190
191
192 /* Translate an ELF program header table entry in external format into an
193 ELF program header table entry in internal format. */
194
195 static void
196 DEFUN(elf_swap_phdr_in,(abfd, src, dst),
197 bfd *abfd AND
198 Elf_External_Phdr *src AND
199 Elf_Internal_Phdr *dst)
200 {
201 dst -> p_type = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_type);
202 dst -> p_offset = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_offset);
203 dst -> p_vaddr = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_vaddr);
204 dst -> p_paddr = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_paddr);
205 dst -> p_filesz = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_filesz);
206 dst -> p_memsz = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_memsz);
207 dst -> p_flags = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_flags);
208 dst -> p_align = bfd_h_get_32 (abfd, (bfd_byte *) src -> p_align);
209 }
210
211
212 /* Create a new bfd section from an ELF section header. */
213
214 static boolean
215 DEFUN(bfd_section_from_shdr, (abfd, hdr, shstrtab),
216 bfd *abfd AND
217 Elf_Internal_Shdr *hdr AND
218 char *shstrtab)
219 {
220 asection *newsect;
221 char *name;
222
223 name = hdr -> sh_name ? shstrtab + hdr -> sh_name : "unnamed";
224 newsect = bfd_make_section (abfd, name);
225 newsect -> vma = hdr -> sh_addr;
226 newsect -> size = hdr -> sh_size;
227 if (!(hdr -> sh_type == SHT_NOBITS))
228 {
229 newsect -> filepos = hdr -> sh_offset;
230 newsect -> flags |= SEC_HAS_CONTENTS;
231 }
232 if (hdr -> sh_flags & SHF_ALLOC)
233 {
234 newsect -> flags |= SEC_ALLOC;
235 if (hdr -> sh_type != SHT_NOBITS)
236 {
237 newsect -> flags |= SEC_LOAD;
238 }
239 }
240 if (!(hdr -> sh_flags & SHF_WRITE))
241 {
242 newsect -> flags |= SEC_READONLY;
243 }
244 if (hdr -> sh_flags & SHF_EXECINSTR)
245 {
246 newsect -> flags |= SEC_CODE; /* FIXME: may only contain SOME code */
247 }
248 if (hdr -> sh_type == SHT_SYMTAB)
249 {
250 abfd -> flags |= HAS_SYMS;
251 }
252
253 return (true);
254 }
255
256 /* Create a new bfd section from an ELF program header.
257
258 Since program segments have no names, we generate a synthetic name
259 of the form segment<NUM>, where NUM is generally the index in the
260 program header table. For segments that are split (see below) we
261 generate the names segment<NUM>a and segment<NUM>b.
262
263 Note that some program segments may have a file size that is different than
264 (less than) the memory size. All this means is that at execution the
265 system must allocate the amount of memory specified by the memory size,
266 but only initialize it with the first "file size" bytes read from the
267 file. This would occur for example, with program segments consisting
268 of combined data+bss.
269
270 To handle the above situation, this routine generates TWO bfd sections
271 for the single program segment. The first has the length specified by
272 the file size of the segment, and the second has the length specified
273 by the difference between the two sizes. In effect, the segment is split
274 into it's initialized and uninitialized parts.
275
276 */
277
278 static boolean
279 DEFUN(bfd_section_from_phdr, (abfd, hdr, index),
280 bfd *abfd AND
281 Elf_Internal_Phdr *hdr AND
282 int index)
283 {
284 asection *newsect;
285 char *name;
286 char namebuf[64];
287 int split;
288
289 split = ((hdr -> p_memsz > 0) &&
290 (hdr -> p_filesz > 0) &&
291 (hdr -> p_memsz > hdr -> p_filesz));
292 sprintf (namebuf, split ? "segment%da" : "segment%d", index);
293 name = bfd_alloc (abfd, strlen (namebuf) + 1);
294 (void) strcpy (name, namebuf);
295 newsect = bfd_make_section (abfd, name);
296 newsect -> vma = hdr -> p_vaddr;
297 newsect -> size = hdr -> p_filesz;
298 newsect -> filepos = hdr -> p_offset;
299 newsect -> flags |= SEC_HAS_CONTENTS;
300 if (hdr -> p_type == PT_LOAD)
301 {
302 newsect -> flags |= SEC_ALLOC;
303 newsect -> flags |= SEC_LOAD;
304 if (hdr -> p_flags & PF_X)
305 {
306 /* FIXME: all we known is that it has execute PERMISSION,
307 may be data. */
308 newsect -> flags |= SEC_CODE;
309 }
310 }
311 if (!(hdr -> p_flags & PF_W))
312 {
313 newsect -> flags |= SEC_READONLY;
314 }
315
316 if (split)
317 {
318 sprintf (namebuf, "segment%db", index);
319 name = bfd_alloc (abfd, strlen (namebuf) + 1);
320 (void) strcpy (name, namebuf);
321 newsect = bfd_make_section (abfd, name);
322 newsect -> vma = hdr -> p_vaddr + hdr -> p_filesz;
323 newsect -> size = hdr -> p_memsz - hdr -> p_filesz;
324 if (hdr -> p_type == PT_LOAD)
325 {
326 newsect -> flags |= SEC_ALLOC;
327 if (hdr -> p_flags & PF_X)
328 {
329 newsect -> flags |= SEC_CODE;
330 }
331 }
332 if (!(hdr -> p_flags & PF_W))
333 {
334 newsect -> flags |= SEC_READONLY;
335 }
336 }
337
338 return (true);
339 }
340
341 #ifdef HAVE_PROCFS
342
343 static void
344 DEFUN(bfd_prstatus,(abfd, descdata, descsz, filepos),
345 bfd *abfd AND
346 char *descdata AND
347 int descsz AND
348 long filepos)
349 {
350 asection *newsect;
351
352 if (descsz == sizeof (prstatus_t))
353 {
354 newsect = bfd_make_section (abfd, ".reg");
355 newsect -> size = sizeof (gregset_t);
356 newsect -> filepos = filepos + (long) (((prstatus_t *)0) -> pr_reg);
357 newsect -> flags = SEC_ALLOC | SEC_HAS_CONTENTS;
358 newsect -> alignment_power = 2;
359 if ((core_prstatus (abfd) = bfd_alloc (abfd, descsz)) != NULL)
360 {
361 bcopy (descdata, core_prstatus (abfd), descsz);
362 }
363 }
364 }
365
366 /* Stash a copy of the prpsinfo structure away for future use. */
367
368 static void
369 DEFUN(bfd_prpsinfo,(abfd, descdata, descsz, filepos),
370 bfd *abfd AND
371 char *descdata AND
372 int descsz AND
373 long filepos)
374 {
375 asection *newsect;
376
377 if (descsz == sizeof (prpsinfo_t))
378 {
379 if ((core_prpsinfo (abfd) = bfd_alloc (abfd, descsz)) != NULL)
380 {
381 bcopy (descdata, core_prpsinfo (abfd), descsz);
382 }
383 }
384 }
385
386 static void
387 DEFUN(bfd_fpregset,(abfd, descdata, descsz, filepos),
388 bfd *abfd AND
389 char *descdata AND
390 int descsz AND
391 long filepos)
392 {
393 asection *newsect;
394
395 if (descsz == sizeof (fpregset_t))
396 {
397 newsect = bfd_make_section (abfd, ".reg2");
398 newsect -> size = sizeof (fpregset_t);
399 newsect -> filepos = filepos;
400 newsect -> flags = SEC_ALLOC | SEC_HAS_CONTENTS;
401 newsect -> alignment_power = 2;
402 }
403 }
404
405 #endif /* HAVE_PROCFS */
406
407 /* Return a pointer to the args (including the command name) that were
408 seen by the program that generated the core dump. Note that for
409 some reason, a spurious space is tacked onto the end of the args
410 in some (at least one anyway) implementations, so strip it off if
411 it exists. */
412
413 char *
414 DEFUN(elf_core_file_failing_command, (abfd),
415 bfd *abfd)
416 {
417 #if HAVE_PROCFS
418 if (core_prpsinfo (abfd))
419 {
420 prpsinfo_t *p = core_prpsinfo (abfd);
421 char *scan = p -> pr_psargs;
422 while (*scan++) {;}
423 scan -= 2;
424 if ((scan > p -> pr_psargs) && (*scan == ' '))
425 {
426 *scan = '\000';
427 }
428 return (p -> pr_psargs);
429 }
430 #endif
431 return (NULL);
432 }
433
434 /* Return the number of the signal that caused the core dump. Presumably,
435 since we have a core file, we got a signal of some kind, so don't bother
436 checking the other process status fields, just return the signal number.
437 */
438
439 static int
440 DEFUN(elf_core_file_failing_signal, (abfd),
441 bfd *abfd)
442 {
443 #if HAVE_PROCFS
444 if (core_prstatus (abfd))
445 {
446 return (((prstatus_t *)(core_prstatus (abfd))) -> pr_cursig);
447 }
448 #endif
449 return (-1);
450 }
451
452 /* Check to see if the core file could reasonably be expected to have
453 come for the current executable file. Note that by default we return
454 true unless we find something that indicates that there might be a
455 problem.
456 */
457
458 static boolean
459 DEFUN(elf_core_file_matches_executable_p, (core_bfd, exec_bfd),
460 bfd *core_bfd AND
461 bfd *exec_bfd)
462 {
463 char *corename;
464 char *execname;
465
466 /* First, xvecs must match since both are ELF files for the same target. */
467
468 if (core_bfd->xvec != exec_bfd->xvec)
469 {
470 bfd_error = system_call_error;
471 return (false);
472 }
473
474 #if HAVE_PROCFS
475
476 /* If no prpsinfo, just return true. Otherwise, grab the last component
477 of the exec'd pathname from the prpsinfo. */
478
479 if (core_prpsinfo (core_bfd))
480 {
481 corename = (((struct prpsinfo *) core_prpsinfo (core_bfd)) -> pr_fname);
482 }
483 else
484 {
485 return (true);
486 }
487
488 /* Find the last component of the executable pathname. */
489
490 if ((execname = strrchr (exec_bfd -> filename, '/')) != NULL)
491 {
492 execname++;
493 }
494 else
495 {
496 execname = (char *) exec_bfd -> filename;
497 }
498
499 /* See if they match */
500
501 return (strcmp (execname, corename) ? false : true);
502
503 #else
504
505 return (true);
506
507 #endif /* HAVE_PROCFS */
508 }
509
510 /* ELF core files contain a segment of type PT_NOTE, that holds much of
511 the information that would normally be available from the /proc interface
512 for the process, at the time the process dumped core. Currently this
513 includes copies of the prstatus, prpsinfo, and fpregset structures.
514
515 Since these structures are potentially machine dependent in size and
516 ordering, bfd provides two levels of support for them. The first level,
517 available on all machines since it does not require that the host
518 have /proc support or the relevant include files, is to create a bfd
519 section for each of the prstatus, prpsinfo, and fpregset structures,
520 without any interpretation of their contents. With just this support,
521 the bfd client will have to interpret the structures itself. Even with
522 /proc support, it might want these full structures for it's own reasons.
523
524 In the second level of support, where HAVE_PROCFS is defined, bfd will
525 pick apart the structures to gather some additional information that
526 clients may want, such as the general register set, the name of the
527 exec'ed file and its arguments, the signal (if any) that caused the
528 core dump, etc.
529
530 */
531
532 static boolean
533 DEFUN(elf_corefile_note, (abfd, hdr),
534 bfd *abfd AND
535 Elf_Internal_Phdr *hdr)
536 {
537 Elf_External_Note *x_note_p; /* Elf note, external form */
538 Elf_Internal_Note i_note; /* Elf note, internal form */
539 char *buf = NULL; /* Entire note segment contents */
540 char *namedata; /* Name portion of the note */
541 char *descdata; /* Descriptor portion of the note */
542 char *sectname; /* Name to use for new section */
543 long filepos; /* File offset to descriptor data */
544 asection *newsect;
545
546 if (hdr -> p_filesz > 0
547 && (buf = malloc (hdr -> p_filesz)) != NULL
548 && bfd_seek (abfd, hdr -> p_offset, SEEK_SET) != -1L
549 && bfd_read ((PTR) buf, hdr -> p_filesz, 1, abfd) == hdr -> p_filesz)
550 {
551 x_note_p = (Elf_External_Note *) buf;
552 while ((char *) x_note_p < (buf + hdr -> p_filesz))
553 {
554 i_note.namesz = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p -> namesz);
555 i_note.descsz = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p -> descsz);
556 i_note.type = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p -> type);
557 namedata = x_note_p -> name;
558 descdata = namedata + BFD_ALIGN (i_note.namesz, 4);
559 filepos = hdr -> p_offset + (descdata - buf);
560 switch (i_note.type) {
561 case NT_PRSTATUS:
562 /* process descdata as prstatus info */
563 bfd_prstatus (abfd, descdata, i_note.descsz, filepos);
564 sectname = ".prstatus";
565 break;
566 case NT_FPREGSET:
567 /* process descdata as fpregset info */
568 bfd_fpregset (abfd, descdata, i_note.descsz, filepos);
569 sectname = ".fpregset";
570 break;
571 case NT_PRPSINFO:
572 /* process descdata as prpsinfo */
573 bfd_prpsinfo (abfd, descdata, i_note.descsz, filepos);
574 sectname = ".prpsinfo";
575 break;
576 default:
577 /* Unknown descriptor, just ignore it. */
578 sectname = NULL;
579 break;
580 }
581 if (sectname != NULL)
582 {
583 newsect = bfd_make_section (abfd, sectname);
584 newsect -> size = i_note.descsz;
585 newsect -> filepos = filepos;
586 newsect -> flags = SEC_ALLOC | SEC_HAS_CONTENTS;
587 newsect -> alignment_power = 2;
588 }
589 x_note_p = (Elf_External_Note *)
590 (descdata + BFD_ALIGN (i_note.descsz, 4));
591 }
592 }
593 if (buf != NULL)
594 {
595 free (buf);
596 }
597 }
598
599
600 /* Begin processing a given object.
601
602 First we validate the file by reading in the ELF header and checking
603 the magic number.
604
605 */
606
607 static bfd_target *
608 DEFUN (elf_object_p, (abfd), bfd *abfd)
609 {
610 Elf_External_Ehdr x_ehdr; /* Elf file header, external form */
611 Elf_Internal_Ehdr i_ehdr; /* Elf file header, internal form */
612 Elf_External_Shdr *x_shdr; /* Section header table, external form */
613 Elf_Internal_Shdr *i_shdr; /* Section header table, internal form */
614 int shindex;
615 char *shstrtab; /* Internal copy of section header stringtab */
616 int shstrtabsize; /* Size of section header string table */
617
618 /* Read in the ELF header in external format. */
619
620 if (bfd_read ((PTR) &x_ehdr, sizeof (x_ehdr), 1, abfd) != sizeof (x_ehdr))
621 {
622 bfd_error = system_call_error;
623 return (NULL);
624 }
625
626 /* Now check to see if we have a valid ELF file, and one that BFD can
627 make use of. The magic number must match, the address size ('class')
628 and byte-swapping must match our XVEC entry, and it must have a
629 section header table (FIXME: See comments re sections at top of this
630 file). */
631
632 if (x_ehdr.e_ident[EI_MAG0] != ELFMAG0 ||
633 x_ehdr.e_ident[EI_MAG1] != ELFMAG1 ||
634 x_ehdr.e_ident[EI_MAG2] != ELFMAG2 ||
635 x_ehdr.e_ident[EI_MAG3] != ELFMAG3)
636 {
637 wrong:
638 bfd_error = wrong_format;
639 return (NULL);
640 }
641
642 /* FIXME, Check EI_VERSION here ! */
643
644 switch (x_ehdr.e_ident[EI_CLASS]) {
645 case ELFCLASSNONE: /* address size not specified */
646 goto wrong; /* No support if can't tell address size */
647 case ELFCLASS32: /* 32-bit addresses */
648 break;
649 case ELFCLASS64: /* 64-bit addresses */
650 goto wrong; /* FIXME: 64 bits not yet supported */
651 default:
652 goto wrong; /* No support if unknown address class */
653 }
654
655 /* Switch xvec to match the specified byte order. */
656 switch (x_ehdr.e_ident[EI_DATA]) {
657 case ELFDATA2MSB: /* Big-endian */
658 abfd->xvec = &elf_big_vec;
659 break;
660 case ELFDATA2LSB: /* Little-endian */
661 abfd->xvec = &elf_little_vec;
662 case ELFDATANONE: /* No data encoding specified */
663 default: /* Unknown data encoding specified */
664 goto wrong;
665 }
666
667 /* Allocate an instance of the elf_obj_tdata structure and hook it up to
668 the tdata pointer in the bfd. */
669
670 if ((abfd -> tdata = bfd_zalloc (abfd, sizeof (elf_obj_tdata))) == NULL)
671 {
672 bfd_error = no_memory;
673 return (NULL);
674 }
675
676 /* Now that we know the byte order, swap in the rest of the header */
677 elf_swap_ehdr_in (abfd, &x_ehdr, &i_ehdr);
678
679 /* If there is no section header table, we're hosed. */
680 if (i_ehdr.e_shoff == 0)
681 goto wrong;
682
683 if (i_ehdr.e_type == ET_EXEC || i_ehdr.e_type == ET_DYN)
684 {
685 abfd -> flags |= EXEC_P;
686 }
687
688 /* Allocate space for copies of the section header table in external
689 and internal form, seek to the section header table in the file,
690 read it in, and convert it to internal form. As a simple sanity
691 check, verify that the what BFD thinks is the size of each section
692 header table entry actually matches the size recorded in the file. */
693
694 if (i_ehdr.e_shentsize != sizeof (*x_shdr))
695 goto wrong;
696 if ((x_shdr = (Elf_External_Shdr *)
697 bfd_alloc (abfd, sizeof (*x_shdr) * i_ehdr.e_shnum)) == NULL)
698 {
699 bfd_error = no_memory;
700 return (NULL);
701 }
702 if ((i_shdr = (Elf_Internal_Shdr *)
703 bfd_alloc (abfd, sizeof (*i_shdr) * i_ehdr.e_shnum)) == NULL)
704 {
705 bfd_error = no_memory;
706 return (NULL);
707 }
708 if (bfd_seek (abfd, i_ehdr.e_shoff, SEEK_SET) == -1)
709 {
710 bfd_error = system_call_error;
711 return (NULL);
712 }
713 for (shindex = 0; shindex < i_ehdr.e_shnum; shindex++)
714 {
715 if (bfd_read ((PTR) (x_shdr + shindex), sizeof (*x_shdr), 1, abfd)
716 != sizeof (*x_shdr))
717 {
718 bfd_error = system_call_error;
719 return (NULL);
720 }
721 elf_swap_shdr_in (abfd, x_shdr + shindex, i_shdr + shindex);
722 }
723
724 /* Read in the string table containing the names of the sections. We
725 will need the base pointer to this table later. */
726
727 shstrtabsize = i_shdr[i_ehdr.e_shstrndx].sh_size;
728 if ((shstrtab = bfd_alloc (abfd, shstrtabsize)) == NULL)
729 {
730 bfd_error = no_memory;
731 return (NULL);
732 }
733 if (bfd_seek (abfd, i_shdr[i_ehdr.e_shstrndx].sh_offset, SEEK_SET) == -1)
734 {
735 bfd_error = system_call_error;
736 return (NULL);
737 }
738 if (bfd_read ((PTR) shstrtab, shstrtabsize, 1, abfd) != shstrtabsize)
739 {
740 bfd_error = system_call_error;
741 return (NULL);
742 }
743
744 /* Once all of the section headers have been read and converted, we
745 can start processing them. Note that the first section header is
746 a dummy placeholder entry, so we ignore it.
747
748 We also watch for the symbol table section and remember the file
749 offset and section size for both the symbol table section and the
750 associated string table section. */
751
752 for (shindex = 1; shindex < i_ehdr.e_shnum; shindex++)
753 {
754 Elf_Internal_Shdr *hdr = i_shdr + shindex;
755 bfd_section_from_shdr (abfd, hdr, shstrtab);
756 if (hdr -> sh_type == SHT_SYMTAB)
757 {
758 elf_symtab_filepos(abfd) = hdr -> sh_offset;
759 elf_symtab_filesz(abfd) = hdr -> sh_size;
760 elf_strtab_filepos(abfd) = (i_shdr + hdr -> sh_link) -> sh_offset;
761 elf_strtab_filesz(abfd) = (i_shdr + hdr -> sh_link) -> sh_size;
762 }
763 }
764
765 return (abfd->xvec);
766 }
767
768 /* Core files are simply standard ELF formatted files that partition
769 the file using the execution view of the file (program header table)
770 rather than the linking view. In fact, there is no section header
771 table in a core file.
772
773 The process status information (including the contents of the general
774 register set) and the floating point register set are stored in a
775 segment of type PT_NOTE. We handcraft a couple of extra bfd sections
776 that allow standard bfd access to the general registers (.reg) and the
777 floating point registers (.reg2).
778
779 */
780
781 static bfd_target *
782 DEFUN (elf_core_file_p, (abfd), bfd *abfd)
783 {
784 Elf_External_Ehdr x_ehdr; /* Elf file header, external form */
785 Elf_Internal_Ehdr i_ehdr; /* Elf file header, internal form */
786 Elf_External_Phdr *x_phdr; /* Program header table, external form */
787 Elf_Internal_Phdr *i_phdr; /* Program header table, internal form */
788 int phindex;
789
790 /* Read in the ELF header in external format. */
791
792 if (bfd_read ((PTR) &x_ehdr, sizeof (x_ehdr), 1, abfd) != sizeof (x_ehdr))
793 {
794 bfd_error = system_call_error;
795 return (NULL);
796 }
797
798 /* Now check to see if we have a valid ELF file, and one that BFD can
799 make use of. The magic number must match, the address size ('class')
800 and byte-swapping must match our XVEC entry, and it must have a
801 program header table (FIXME: See comments re segments at top of this
802 file). */
803
804 if (x_ehdr.e_ident[EI_MAG0] != ELFMAG0 ||
805 x_ehdr.e_ident[EI_MAG1] != ELFMAG1 ||
806 x_ehdr.e_ident[EI_MAG2] != ELFMAG2 ||
807 x_ehdr.e_ident[EI_MAG3] != ELFMAG3)
808 {
809 wrong:
810 bfd_error = wrong_format;
811 return (NULL);
812 }
813
814 /* FIXME, Check EI_VERSION here ! */
815
816 switch (x_ehdr.e_ident[EI_CLASS]) {
817 case ELFCLASSNONE: /* address size not specified */
818 goto wrong; /* No support if can't tell address size */
819 case ELFCLASS32: /* 32-bit addresses */
820 break;
821 case ELFCLASS64: /* 64-bit addresses */
822 goto wrong; /* FIXME: 64 bits not yet supported */
823 default:
824 goto wrong; /* No support if unknown address class */
825 }
826
827 /* Switch xvec to match the specified byte order. */
828 switch (x_ehdr.e_ident[EI_DATA]) {
829 case ELFDATA2MSB: /* Big-endian */
830 abfd->xvec = &elf_big_vec;
831 break;
832 case ELFDATA2LSB: /* Little-endian */
833 abfd->xvec = &elf_little_vec;
834 case ELFDATANONE: /* No data encoding specified */
835 default: /* Unknown data encoding specified */
836 goto wrong;
837 }
838
839 /* Now that we know the byte order, swap in the rest of the header */
840 elf_swap_ehdr_in (abfd, &x_ehdr, &i_ehdr);
841
842 /* If there is no program header, or the type is not a core file, then
843 we are hosed. */
844 if (i_ehdr.e_phoff == 0 || i_ehdr.e_type != ET_CORE)
845 goto wrong;
846
847 /* Allocate an instance of the elf_core_tdata structure and hook it up to
848 the tdata pointer in the bfd. */
849
850 if ((abfd -> tdata = bfd_zalloc (abfd, sizeof (elf_core_tdata))) == NULL)
851 {
852 bfd_error = no_memory;
853 return (NULL);
854 }
855
856 /* Allocate space for copies of the program header table in external
857 and internal form, seek to the program header table in the file,
858 read it in, and convert it to internal form. As a simple sanity
859 check, verify that the what BFD thinks is the size of each program
860 header table entry actually matches the size recorded in the file. */
861
862 if (i_ehdr.e_phentsize != sizeof (*x_phdr))
863 goto wrong;
864 if ((x_phdr = (Elf_External_Phdr *)
865 bfd_alloc (abfd, sizeof (*x_phdr) * i_ehdr.e_phnum)) == NULL)
866 {
867 bfd_error = no_memory;
868 return (NULL);
869 }
870 if ((i_phdr = (Elf_Internal_Phdr *)
871 bfd_alloc (abfd, sizeof (*i_phdr) * i_ehdr.e_phnum)) == NULL)
872 {
873 bfd_error = no_memory;
874 return (NULL);
875 }
876 if (bfd_seek (abfd, i_ehdr.e_phoff, SEEK_SET) == -1)
877 {
878 bfd_error = system_call_error;
879 return (NULL);
880 }
881 for (phindex = 0; phindex < i_ehdr.e_phnum; phindex++)
882 {
883 if (bfd_read ((PTR) (x_phdr + phindex), sizeof (*x_phdr), 1, abfd)
884 != sizeof (*x_phdr))
885 {
886 bfd_error = system_call_error;
887 return (NULL);
888 }
889 elf_swap_phdr_in (abfd, x_phdr + phindex, i_phdr + phindex);
890 }
891
892 /* Once all of the program headers have been read and converted, we
893 can start processing them. */
894
895 for (phindex = 0; phindex < i_ehdr.e_phnum; phindex++)
896 {
897 bfd_section_from_phdr (abfd, i_phdr + phindex, phindex);
898 if ((i_phdr + phindex) -> p_type == PT_NOTE)
899 {
900 elf_corefile_note (abfd, i_phdr + phindex);
901 }
902 }
903
904 return (abfd->xvec);
905 }
906
907 static boolean
908 DEFUN (elf_mkobject, (abfd), bfd *abfd)
909 {
910 fprintf (stderr, "elf_mkobject unimplemented\n");
911 fflush (stderr);
912 abort ();
913 return (false);
914 }
915
916 static boolean
917 DEFUN (elf_write_object_contents, (abfd), bfd *abfd)
918 {
919 fprintf (stderr, "elf_write_object_contents unimplemented\n");
920 fflush (stderr);
921 abort ();
922 return (false);
923 }
924
925 /* Given an index of a section, retrieve a pointer to it. Note
926 that for our purposes, sections are indexed by {1, 2, ...} with
927 0 being an illegal index. */
928
929 static struct sec *
930 DEFUN (section_from_bfd_index, (abfd, index),
931 bfd *abfd AND
932 int index)
933 {
934 if (index > 0)
935 {
936 struct sec *answer = abfd -> sections;
937 while (--index > 0)
938 {
939 answer = answer -> next;
940 }
941 return (answer);
942 }
943 return (NULL);
944 }
945
946 static boolean
947 DEFUN (elf_slurp_symbol_table, (abfd), bfd *abfd)
948 {
949 int symcount; /* Number of external ELF symbols */
950 char *strtab; /* Buffer for raw ELF string table section */
951 asymbol *sym; /* Pointer to current bfd symbol */
952 asymbol *symbase; /* Buffer for generated bfd symbols */
953 asymbol **vec; /* Pointer to current bfd symbol pointer */
954 Elf_Internal_Sym i_sym;
955 Elf_External_Sym x_sym;
956
957 if (bfd_get_outsymbols (abfd) != NULL)
958 {
959 return (true);
960 }
961
962 /* Slurp in the string table. We will keep it around permanently, as
963 long as the bfd is in use, since we will end up setting up pointers
964 into it for the names of all the symbols. */
965
966 if (bfd_seek (abfd, elf_strtab_filepos (abfd), SEEK_SET) == -1)
967 {
968 bfd_error = system_call_error;
969 return (false);
970 }
971 if ((strtab = bfd_alloc (abfd, elf_strtab_filesz (abfd))) == NULL)
972 {
973 bfd_error = system_call_error;
974 return (false);
975 }
976 if (bfd_read ((PTR) strtab, elf_strtab_filesz (abfd), 1, abfd) !=
977 elf_strtab_filesz (abfd))
978 {
979 bfd_error = system_call_error;
980 return (false);
981 }
982
983 /* Read each raw ELF symbol, converting from external ELF form to
984 internal ELF form, and then using the information to create a
985 canonical bfd symbol table entry.
986
987 Note that be allocate the initial bfd canonical symbol buffer
988 based on a one-to-one mapping of the ELF symbols to canonical
989 symbols. However, it is likely that not all the ELF symbols will
990 be used, so there will be some space leftover at the end. Once
991 we know how many symbols we actual generate, we realloc the buffer
992 to the correct size and then build the pointer vector. */
993
994 if (bfd_seek (abfd, elf_symtab_filepos (abfd), SEEK_SET) == -1)
995 {
996 bfd_error = system_call_error;
997 return (false);
998 }
999
1000 symcount = elf_symtab_filesz(abfd) / sizeof (Elf_External_Sym);
1001 sym = symbase = (asymbol *) bfd_zalloc (abfd, symcount * sizeof (asymbol));
1002
1003 while (symcount-- > 0)
1004 {
1005 if (bfd_read ((PTR) &x_sym, sizeof (x_sym), 1, abfd) != sizeof (x_sym))
1006 {
1007 bfd_error = system_call_error;
1008 return (false);
1009 }
1010 elf_swap_symbol_in (abfd, &x_sym, &i_sym);
1011 if (i_sym.st_name > 0)
1012 {
1013 sym -> the_bfd = abfd;
1014 sym -> name = strtab + i_sym.st_name;
1015 sym -> value = i_sym.st_value;
1016 if (i_sym.st_shndx > 0 && i_sym.st_shndx < SHN_LORESERV)
1017 {
1018 /* Note: This code depends upon there being an ordered
1019 one-for-one mapping of ELF sections to bfd sections. */
1020 sym -> section = section_from_bfd_index (abfd, i_sym.st_shndx);
1021 }
1022 else if (i_sym.st_shndx == SHN_ABS)
1023 {
1024 sym -> flags |= BSF_ABSOLUTE;
1025 }
1026 else if (i_sym.st_shndx == SHN_COMMON)
1027 {
1028 sym -> flags |= BSF_FORT_COMM;
1029 }
1030 switch (ELF_ST_BIND (i_sym.st_info))
1031 {
1032 case STB_LOCAL:
1033 sym -> flags |= BSF_LOCAL;
1034 break;
1035 case STB_GLOBAL:
1036 sym -> flags |= (BSF_GLOBAL | BSF_EXPORT);
1037 break;
1038 case STB_WEAK:
1039 sym -> flags |= BSF_WEAK;
1040 break;
1041 }
1042 sym++;
1043 }
1044 }
1045
1046 bfd_get_symcount(abfd) = symcount = sym - symbase;
1047 sym = symbase = (asymbol *)
1048 bfd_realloc (abfd, symbase, symcount * sizeof (asymbol));
1049 bfd_get_outsymbols(abfd) = vec = (asymbol **)
1050 bfd_alloc (abfd, symcount * sizeof (asymbol *));
1051
1052 while (symcount-- > 0)
1053 {
1054 *vec++ = sym++;
1055 }
1056
1057 return (true);
1058 }
1059
1060 /* Return the number of bytes required to hold the symtab vector.
1061
1062 Note that we base it on the count plus 1, since we will null terminate
1063 the vector allocated based on this size. */
1064
1065 static unsigned int
1066 DEFUN (elf_get_symtab_upper_bound, (abfd), bfd *abfd)
1067 {
1068 unsigned int symtab_size = 0;
1069
1070 if (elf_slurp_symbol_table (abfd))
1071 {
1072 symtab_size = (bfd_get_symcount (abfd) + 1) * (sizeof (asymbol));
1073 }
1074 return (symtab_size);
1075 }
1076
1077 static unsigned int
1078 elf_get_reloc_upper_bound (abfd, asect)
1079 bfd *abfd;
1080 sec_ptr asect;
1081 {
1082 fprintf (stderr, "elf_get_reloc_upper_bound unimplemented\n");
1083 fflush (stderr);
1084 abort ();
1085 return (0);
1086 }
1087
1088 static unsigned int
1089 elf_canonicalize_reloc (abfd, section, relptr, symbols)
1090 bfd *abfd;
1091 sec_ptr section;
1092 arelent **relptr;
1093 asymbol **symbols;
1094 {
1095 fprintf (stderr, "elf_canonicalize_reloc unimplemented\n");
1096 fflush (stderr);
1097 abort ();
1098 return (0);
1099 }
1100
1101 static unsigned int
1102 DEFUN (elf_get_symtab, (abfd, alocation),
1103 bfd *abfd AND
1104 asymbol **alocation)
1105 {
1106 unsigned int symcount;
1107 asymbol **vec;
1108
1109 if (!elf_slurp_symbol_table (abfd))
1110 {
1111 return (0);
1112 }
1113 else
1114 {
1115 symcount = bfd_get_symcount (abfd);
1116 vec = bfd_get_outsymbols (abfd);
1117 while (symcount-- > 0)
1118 {
1119 *alocation++ = *vec++;
1120 }
1121 *alocation++ = NULL;
1122 return (bfd_get_symcount (abfd));
1123 }
1124 }
1125
1126 static asymbol *
1127 elf_make_empty_symbol(abfd)
1128 bfd *abfd;
1129 {
1130 fprintf (stderr, "elf_make_empty_symbol unimplemented\n");
1131 fflush (stderr);
1132 abort ();
1133 return (NULL);
1134 }
1135
1136 static void
1137 DEFUN (elf_print_symbol,(ignore_abfd, filep, symbol, how),
1138 bfd *ignore_abfd AND
1139 PTR filep AND
1140 asymbol *symbol AND
1141 bfd_print_symbol_type how)
1142 {
1143 fprintf (stderr, "elf_print_symbol unimplemented\n");
1144 fflush (stderr);
1145 abort ();
1146 }
1147
1148 static alent *
1149 DEFUN (elf_get_lineno,(ignore_abfd, symbol),
1150 bfd *ignore_abfd AND
1151 asymbol *symbol)
1152 {
1153 fprintf (stderr, "elf_get_lineno unimplemented\n");
1154 fflush (stderr);
1155 abort ();
1156 return (NULL);
1157 }
1158
1159 static boolean
1160 DEFUN (elf_set_arch_mach,(abfd, arch, machine),
1161 bfd *abfd AND
1162 enum bfd_architecture arch AND
1163 unsigned long machine)
1164 {
1165 fprintf (stderr, "elf_set_arch_mach unimplemented\n");
1166 fflush (stderr);
1167 /* Allow any architecture to be supported by the elf backend */
1168 return bfd_default_set_arch_mach(abfd, arch, machine);
1169 }
1170
1171 static boolean
1172 DEFUN (elf_find_nearest_line,(abfd,
1173 section,
1174 symbols,
1175 offset,
1176 filename_ptr,
1177 functionname_ptr,
1178 line_ptr),
1179 bfd *abfd AND
1180 asection *section AND
1181 asymbol **symbols AND
1182 bfd_vma offset AND
1183 CONST char **filename_ptr AND
1184 CONST char **functionname_ptr AND
1185 unsigned int *line_ptr)
1186 {
1187 fprintf (stderr, "elf_find_nearest_line unimplemented\n");
1188 fflush (stderr);
1189 abort ();
1190 return (false);
1191 }
1192
1193 static int
1194 DEFUN (elf_sizeof_headers, (abfd, reloc),
1195 bfd *abfd AND
1196 boolean reloc)
1197 {
1198 fprintf (stderr, "elf_sizeof_headers unimplemented\n");
1199 fflush (stderr);
1200 abort ();
1201 return (0);
1202 }
1203 \f
1204 /* This structure contains everything that BFD knows about a target.
1205 It includes things like its byte order, name, what routines to call
1206 to do various operations, etc. Every BFD points to a target structure
1207 with its "xvec" member.
1208
1209 There are two such structures here: one for big-endian machines and
1210 one for little-endian machines. */
1211
1212 /* Archives are generic or unimplemented. */
1213 #define elf_slurp_armap bfd_false
1214 #define elf_slurp_extended_name_table _bfd_slurp_extended_name_table
1215 #define elf_truncate_arname bfd_dont_truncate_arname
1216 #define elf_openr_next_archived_file bfd_generic_openr_next_archived_file
1217 #define elf_generic_stat_arch_elt bfd_generic_stat_arch_elt
1218 #define elf_write_armap (PROTO (boolean, (*), \
1219 (bfd *arch, unsigned int elength, struct orl *map, unsigned int orl_count, \
1220 int stridx))) bfd_false
1221
1222 /* Ordinary section reading and writing */
1223 #define elf_new_section_hook _bfd_dummy_new_section_hook
1224 #define elf_get_section_contents bfd_generic_get_section_contents
1225 #define elf_set_section_contents bfd_generic_set_section_contents
1226 #define elf_close_and_cleanup bfd_generic_close_and_cleanup
1227
1228 #define elf_bfd_debug_info_start bfd_void
1229 #define elf_bfd_debug_info_end bfd_void
1230 #define elf_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
1231
1232 bfd_target elf_big_vec =
1233 {
1234 /* name: identify kind of target */
1235 "elf-big",
1236
1237 /* flavour: general indication about file */
1238 bfd_target_elf_flavour,
1239
1240 /* byteorder_big_p: data is big endian */
1241 true,
1242
1243 /* header_byteorder_big_p: header is also big endian */
1244 true,
1245
1246 /* object_flags: mask of all file flags */
1247 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS |
1248 DYNAMIC | WP_TEXT),
1249
1250 /* section_flags: mask of all section flags */
1251 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
1252 SEC_DATA),
1253
1254 /* ar_pad_char: pad character for filenames within an archive header
1255 FIXME: this really has nothing to do with ELF, this is a characteristic
1256 of the archiver and/or os and should be independently tunable */
1257 '/',
1258
1259 /* ar_max_namelen: maximum number of characters in an archive header
1260 FIXME: this really has nothing to do with ELF, this is a characteristic
1261 of the archiver and should be independently tunable. This value is
1262 a WAG (wild a** guess) */
1263 15,
1264
1265 /* align_power_min: minimum alignment restriction for any section
1266 FIXME: this value may be target machine dependent */
1267 3,
1268
1269 /* Routines to byte-swap various sized integers from the data sections */
1270 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16,
1271
1272 /* Routines to byte-swap various sized integers from the file headers */
1273 _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16,
1274
1275 /* bfd_check_format: check the format of a file being read */
1276 { _bfd_dummy_target, /* unknown format */
1277 elf_object_p, /* assembler/linker output (object file) */
1278 bfd_generic_archive_p, /* an archive */
1279 elf_core_file_p /* a core file */
1280 },
1281
1282 /* bfd_set_format: set the format of a file being written */
1283 { bfd_false,
1284 elf_mkobject,
1285 _bfd_generic_mkarchive,
1286 bfd_false
1287 },
1288
1289 /* bfd_write_contents: write cached information into a file being written */
1290 { bfd_false,
1291 elf_write_object_contents,
1292 _bfd_write_archive_contents,
1293 bfd_false
1294 },
1295
1296 /* Initialize a jump table with the standard macro. All names start
1297 with "elf" */
1298 JUMP_TABLE(elf),
1299
1300 /* SWAP_TABLE */
1301 NULL, NULL, NULL
1302 };
1303
1304 bfd_target elf_little_vec =
1305 {
1306 /* name: identify kind of target */
1307 "elf-little",
1308
1309 /* flavour: general indication about file */
1310 bfd_target_elf_flavour,
1311
1312 /* byteorder_big_p: data is big endian */
1313 false, /* Nope -- this one's little endian */
1314
1315 /* header_byteorder_big_p: header is also big endian */
1316 false, /* Nope -- this one's little endian */
1317
1318 /* object_flags: mask of all file flags */
1319 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS |
1320 DYNAMIC | WP_TEXT),
1321
1322 /* section_flags: mask of all section flags */
1323 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
1324 SEC_DATA),
1325
1326 /* ar_pad_char: pad character for filenames within an archive header
1327 FIXME: this really has nothing to do with ELF, this is a characteristic
1328 of the archiver and/or os and should be independently tunable */
1329 '/',
1330
1331 /* ar_max_namelen: maximum number of characters in an archive header
1332 FIXME: this really has nothing to do with ELF, this is a characteristic
1333 of the archiver and should be independently tunable. This value is
1334 a WAG (wild a** guess) */
1335 15,
1336
1337 /* align_power_min: minimum alignment restriction for any section
1338 FIXME: this value may be target machine dependent */
1339 3,
1340
1341 /* Routines to byte-swap various sized integers from the data sections */
1342 _do_getl64, _do_putl64, _do_getl32, _do_putl32, _do_getl16, _do_putl16,
1343
1344 /* Routines to byte-swap various sized integers from the file headers */
1345 _do_getl64, _do_putl64, _do_getl32, _do_putl32, _do_getl16, _do_putl16,
1346
1347 /* bfd_check_format: check the format of a file being read */
1348 { _bfd_dummy_target, /* unknown format */
1349 elf_object_p, /* assembler/linker output (object file) */
1350 bfd_generic_archive_p, /* an archive */
1351 elf_core_file_p /* a core file */
1352 },
1353
1354 /* bfd_set_format: set the format of a file being written */
1355 { bfd_false,
1356 elf_mkobject,
1357 _bfd_generic_mkarchive,
1358 bfd_false
1359 },
1360
1361 /* bfd_write_contents: write cached information into a file being written */
1362 { bfd_false,
1363 elf_write_object_contents,
1364 _bfd_write_archive_contents,
1365 bfd_false
1366 },
1367
1368 /* Initialize a jump table with the standard macro. All names start
1369 with "elf" */
1370 JUMP_TABLE(elf),
1371
1372 /* SWAP_TABLE */
1373 NULL, NULL, NULL
1374 };
This page took 0.058938 seconds and 4 git commands to generate.