]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf.c
19990502 sourceware import
[thirdparty/binutils-gdb.git] / bfd / elf.c
CommitLineData
252b5132
RH
1/* ELF executable support for BFD.
2 Copyright 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
3
4This file is part of BFD, the Binary File Descriptor library.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20/*
21
22SECTION
23 ELF backends
24
25 BFD support for ELF formats is being worked on.
26 Currently, the best supported back ends are for sparc and i386
27 (running svr4 or Solaris 2).
28
29 Documentation of the internals of the support code still needs
30 to be written. The code is changing quickly enough that we
31 haven't bothered yet.
32 */
33
34#include "bfd.h"
35#include "sysdep.h"
36#include "bfdlink.h"
37#include "libbfd.h"
38#define ARCH_SIZE 0
39#include "elf-bfd.h"
40
41static INLINE struct elf_segment_map *make_mapping
42 PARAMS ((bfd *, asection **, unsigned int, unsigned int, boolean));
43static boolean map_sections_to_segments PARAMS ((bfd *));
44static int elf_sort_sections PARAMS ((const PTR, const PTR));
45static boolean assign_file_positions_for_segments PARAMS ((bfd *));
46static boolean assign_file_positions_except_relocs PARAMS ((bfd *));
47static boolean prep_headers PARAMS ((bfd *));
48static boolean swap_out_syms PARAMS ((bfd *, struct bfd_strtab_hash **, int));
49static boolean copy_private_bfd_data PARAMS ((bfd *, bfd *));
50static char *elf_read PARAMS ((bfd *, long, unsigned int));
51static void elf_fake_sections PARAMS ((bfd *, asection *, PTR));
52static boolean assign_section_numbers PARAMS ((bfd *));
53static INLINE int sym_is_global PARAMS ((bfd *, asymbol *));
54static boolean elf_map_symbols PARAMS ((bfd *));
55static bfd_size_type get_program_header_size PARAMS ((bfd *));
56
57/* Swap version information in and out. The version information is
58 currently size independent. If that ever changes, this code will
59 need to move into elfcode.h. */
60
61/* Swap in a Verdef structure. */
62
63void
64_bfd_elf_swap_verdef_in (abfd, src, dst)
65 bfd *abfd;
66 const Elf_External_Verdef *src;
67 Elf_Internal_Verdef *dst;
68{
69 dst->vd_version = bfd_h_get_16 (abfd, src->vd_version);
70 dst->vd_flags = bfd_h_get_16 (abfd, src->vd_flags);
71 dst->vd_ndx = bfd_h_get_16 (abfd, src->vd_ndx);
72 dst->vd_cnt = bfd_h_get_16 (abfd, src->vd_cnt);
73 dst->vd_hash = bfd_h_get_32 (abfd, src->vd_hash);
74 dst->vd_aux = bfd_h_get_32 (abfd, src->vd_aux);
75 dst->vd_next = bfd_h_get_32 (abfd, src->vd_next);
76}
77
78/* Swap out a Verdef structure. */
79
80void
81_bfd_elf_swap_verdef_out (abfd, src, dst)
82 bfd *abfd;
83 const Elf_Internal_Verdef *src;
84 Elf_External_Verdef *dst;
85{
86 bfd_h_put_16 (abfd, src->vd_version, dst->vd_version);
87 bfd_h_put_16 (abfd, src->vd_flags, dst->vd_flags);
88 bfd_h_put_16 (abfd, src->vd_ndx, dst->vd_ndx);
89 bfd_h_put_16 (abfd, src->vd_cnt, dst->vd_cnt);
90 bfd_h_put_32 (abfd, src->vd_hash, dst->vd_hash);
91 bfd_h_put_32 (abfd, src->vd_aux, dst->vd_aux);
92 bfd_h_put_32 (abfd, src->vd_next, dst->vd_next);
93}
94
95/* Swap in a Verdaux structure. */
96
97void
98_bfd_elf_swap_verdaux_in (abfd, src, dst)
99 bfd *abfd;
100 const Elf_External_Verdaux *src;
101 Elf_Internal_Verdaux *dst;
102{
103 dst->vda_name = bfd_h_get_32 (abfd, src->vda_name);
104 dst->vda_next = bfd_h_get_32 (abfd, src->vda_next);
105}
106
107/* Swap out a Verdaux structure. */
108
109void
110_bfd_elf_swap_verdaux_out (abfd, src, dst)
111 bfd *abfd;
112 const Elf_Internal_Verdaux *src;
113 Elf_External_Verdaux *dst;
114{
115 bfd_h_put_32 (abfd, src->vda_name, dst->vda_name);
116 bfd_h_put_32 (abfd, src->vda_next, dst->vda_next);
117}
118
119/* Swap in a Verneed structure. */
120
121void
122_bfd_elf_swap_verneed_in (abfd, src, dst)
123 bfd *abfd;
124 const Elf_External_Verneed *src;
125 Elf_Internal_Verneed *dst;
126{
127 dst->vn_version = bfd_h_get_16 (abfd, src->vn_version);
128 dst->vn_cnt = bfd_h_get_16 (abfd, src->vn_cnt);
129 dst->vn_file = bfd_h_get_32 (abfd, src->vn_file);
130 dst->vn_aux = bfd_h_get_32 (abfd, src->vn_aux);
131 dst->vn_next = bfd_h_get_32 (abfd, src->vn_next);
132}
133
134/* Swap out a Verneed structure. */
135
136void
137_bfd_elf_swap_verneed_out (abfd, src, dst)
138 bfd *abfd;
139 const Elf_Internal_Verneed *src;
140 Elf_External_Verneed *dst;
141{
142 bfd_h_put_16 (abfd, src->vn_version, dst->vn_version);
143 bfd_h_put_16 (abfd, src->vn_cnt, dst->vn_cnt);
144 bfd_h_put_32 (abfd, src->vn_file, dst->vn_file);
145 bfd_h_put_32 (abfd, src->vn_aux, dst->vn_aux);
146 bfd_h_put_32 (abfd, src->vn_next, dst->vn_next);
147}
148
149/* Swap in a Vernaux structure. */
150
151void
152_bfd_elf_swap_vernaux_in (abfd, src, dst)
153 bfd *abfd;
154 const Elf_External_Vernaux *src;
155 Elf_Internal_Vernaux *dst;
156{
157 dst->vna_hash = bfd_h_get_32 (abfd, src->vna_hash);
158 dst->vna_flags = bfd_h_get_16 (abfd, src->vna_flags);
159 dst->vna_other = bfd_h_get_16 (abfd, src->vna_other);
160 dst->vna_name = bfd_h_get_32 (abfd, src->vna_name);
161 dst->vna_next = bfd_h_get_32 (abfd, src->vna_next);
162}
163
164/* Swap out a Vernaux structure. */
165
166void
167_bfd_elf_swap_vernaux_out (abfd, src, dst)
168 bfd *abfd;
169 const Elf_Internal_Vernaux *src;
170 Elf_External_Vernaux *dst;
171{
172 bfd_h_put_32 (abfd, src->vna_hash, dst->vna_hash);
173 bfd_h_put_16 (abfd, src->vna_flags, dst->vna_flags);
174 bfd_h_put_16 (abfd, src->vna_other, dst->vna_other);
175 bfd_h_put_32 (abfd, src->vna_name, dst->vna_name);
176 bfd_h_put_32 (abfd, src->vna_next, dst->vna_next);
177}
178
179/* Swap in a Versym structure. */
180
181void
182_bfd_elf_swap_versym_in (abfd, src, dst)
183 bfd *abfd;
184 const Elf_External_Versym *src;
185 Elf_Internal_Versym *dst;
186{
187 dst->vs_vers = bfd_h_get_16 (abfd, src->vs_vers);
188}
189
190/* Swap out a Versym structure. */
191
192void
193_bfd_elf_swap_versym_out (abfd, src, dst)
194 bfd *abfd;
195 const Elf_Internal_Versym *src;
196 Elf_External_Versym *dst;
197{
198 bfd_h_put_16 (abfd, src->vs_vers, dst->vs_vers);
199}
200
201/* Standard ELF hash function. Do not change this function; you will
202 cause invalid hash tables to be generated. */
203unsigned long
204bfd_elf_hash (name)
205 CONST unsigned char *name;
206{
207 unsigned long h = 0;
208 unsigned long g;
209 int ch;
210
211 while ((ch = *name++) != '\0')
212 {
213 h = (h << 4) + ch;
214 if ((g = (h & 0xf0000000)) != 0)
215 {
216 h ^= g >> 24;
217 /* The ELF ABI says `h &= ~g', but this is equivalent in
218 this case and on some machines one insn instead of two. */
219 h ^= g;
220 }
221 }
222 return h;
223}
224
225/* Read a specified number of bytes at a specified offset in an ELF
226 file, into a newly allocated buffer, and return a pointer to the
227 buffer. */
228
229static char *
230elf_read (abfd, offset, size)
231 bfd * abfd;
232 long offset;
233 unsigned int size;
234{
235 char *buf;
236
237 if ((buf = bfd_alloc (abfd, size)) == NULL)
238 return NULL;
239 if (bfd_seek (abfd, offset, SEEK_SET) == -1)
240 return NULL;
241 if (bfd_read ((PTR) buf, size, 1, abfd) != size)
242 {
243 if (bfd_get_error () != bfd_error_system_call)
244 bfd_set_error (bfd_error_file_truncated);
245 return NULL;
246 }
247 return buf;
248}
249
250boolean
251bfd_elf_mkobject (abfd)
252 bfd * abfd;
253{
254 /* this just does initialization */
255 /* coff_mkobject zalloc's space for tdata.coff_obj_data ... */
256 elf_tdata (abfd) = (struct elf_obj_tdata *)
257 bfd_zalloc (abfd, sizeof (struct elf_obj_tdata));
258 if (elf_tdata (abfd) == 0)
259 return false;
260 /* since everything is done at close time, do we need any
261 initialization? */
262
263 return true;
264}
265
266boolean
267bfd_elf_mkcorefile (abfd)
268 bfd * abfd;
269{
270 /* I think this can be done just like an object file. */
271 return bfd_elf_mkobject (abfd);
272}
273
274char *
275bfd_elf_get_str_section (abfd, shindex)
276 bfd * abfd;
277 unsigned int shindex;
278{
279 Elf_Internal_Shdr **i_shdrp;
280 char *shstrtab = NULL;
281 unsigned int offset;
282 unsigned int shstrtabsize;
283
284 i_shdrp = elf_elfsections (abfd);
285 if (i_shdrp == 0 || i_shdrp[shindex] == 0)
286 return 0;
287
288 shstrtab = (char *) i_shdrp[shindex]->contents;
289 if (shstrtab == NULL)
290 {
291 /* No cached one, attempt to read, and cache what we read. */
292 offset = i_shdrp[shindex]->sh_offset;
293 shstrtabsize = i_shdrp[shindex]->sh_size;
294 shstrtab = elf_read (abfd, offset, shstrtabsize);
295 i_shdrp[shindex]->contents = (PTR) shstrtab;
296 }
297 return shstrtab;
298}
299
300char *
301bfd_elf_string_from_elf_section (abfd, shindex, strindex)
302 bfd * abfd;
303 unsigned int shindex;
304 unsigned int strindex;
305{
306 Elf_Internal_Shdr *hdr;
307
308 if (strindex == 0)
309 return "";
310
311 hdr = elf_elfsections (abfd)[shindex];
312
313 if (hdr->contents == NULL
314 && bfd_elf_get_str_section (abfd, shindex) == NULL)
315 return NULL;
316
317 if (strindex >= hdr->sh_size)
318 {
319 (*_bfd_error_handler)
320 (_("%s: invalid string offset %u >= %lu for section `%s'"),
321 bfd_get_filename (abfd), strindex, (unsigned long) hdr->sh_size,
322 ((shindex == elf_elfheader(abfd)->e_shstrndx
323 && strindex == hdr->sh_name)
324 ? ".shstrtab"
325 : elf_string_from_elf_strtab (abfd, hdr->sh_name)));
326 return "";
327 }
328
329 return ((char *) hdr->contents) + strindex;
330}
331
332/* Make a BFD section from an ELF section. We store a pointer to the
333 BFD section in the bfd_section field of the header. */
334
335boolean
336_bfd_elf_make_section_from_shdr (abfd, hdr, name)
337 bfd *abfd;
338 Elf_Internal_Shdr *hdr;
339 const char *name;
340{
341 asection *newsect;
342 flagword flags;
343
344 if (hdr->bfd_section != NULL)
345 {
346 BFD_ASSERT (strcmp (name,
347 bfd_get_section_name (abfd, hdr->bfd_section)) == 0);
348 return true;
349 }
350
351 newsect = bfd_make_section_anyway (abfd, name);
352 if (newsect == NULL)
353 return false;
354
355 newsect->filepos = hdr->sh_offset;
356
357 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
358 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
359 || ! bfd_set_section_alignment (abfd, newsect,
360 bfd_log2 (hdr->sh_addralign)))
361 return false;
362
363 flags = SEC_NO_FLAGS;
364 if (hdr->sh_type != SHT_NOBITS)
365 flags |= SEC_HAS_CONTENTS;
366 if ((hdr->sh_flags & SHF_ALLOC) != 0)
367 {
368 flags |= SEC_ALLOC;
369 if (hdr->sh_type != SHT_NOBITS)
370 flags |= SEC_LOAD;
371 }
372 if ((hdr->sh_flags & SHF_WRITE) == 0)
373 flags |= SEC_READONLY;
374 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
375 flags |= SEC_CODE;
376 else if ((flags & SEC_LOAD) != 0)
377 flags |= SEC_DATA;
378
379 /* The debugging sections appear to be recognized only by name, not
380 any sort of flag. */
381 if (strncmp (name, ".debug", sizeof ".debug" - 1) == 0
382 || strncmp (name, ".line", sizeof ".line" - 1) == 0
383 || strncmp (name, ".stab", sizeof ".stab" - 1) == 0)
384 flags |= SEC_DEBUGGING;
385
386 /* As a GNU extension, if the name begins with .gnu.linkonce, we
387 only link a single copy of the section. This is used to support
388 g++. g++ will emit each template expansion in its own section.
389 The symbols will be defined as weak, so that multiple definitions
390 are permitted. The GNU linker extension is to actually discard
391 all but one of the sections. */
392 if (strncmp (name, ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) == 0)
393 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
394
395 if (! bfd_set_section_flags (abfd, newsect, flags))
396 return false;
397
398 if ((flags & SEC_ALLOC) != 0)
399 {
400 Elf_Internal_Phdr *phdr;
401 unsigned int i;
402
403 /* Look through the phdrs to see if we need to adjust the lma.
404 If all the p_paddr fields are zero, we ignore them, since
405 some ELF linkers produce such output. */
406 phdr = elf_tdata (abfd)->phdr;
407 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
408 {
409 if (phdr->p_paddr != 0)
410 break;
411 }
412 if (i < elf_elfheader (abfd)->e_phnum)
413 {
414 phdr = elf_tdata (abfd)->phdr;
415 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
416 {
417 if (phdr->p_type == PT_LOAD
418 && phdr->p_vaddr != phdr->p_paddr
419 && phdr->p_vaddr <= hdr->sh_addr
420 && (phdr->p_vaddr + phdr->p_memsz
421 >= hdr->sh_addr + hdr->sh_size)
422 && ((flags & SEC_LOAD) == 0
423 || (phdr->p_offset <= (bfd_vma) hdr->sh_offset
424 && (phdr->p_offset + phdr->p_filesz
425 >= hdr->sh_offset + hdr->sh_size))))
426 {
427 newsect->lma += phdr->p_paddr - phdr->p_vaddr;
428 break;
429 }
430 }
431 }
432 }
433
434 hdr->bfd_section = newsect;
435 elf_section_data (newsect)->this_hdr = *hdr;
436
437 return true;
438}
439
440/*
441INTERNAL_FUNCTION
442 bfd_elf_find_section
443
444SYNOPSIS
445 struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
446
447DESCRIPTION
448 Helper functions for GDB to locate the string tables.
449 Since BFD hides string tables from callers, GDB needs to use an
450 internal hook to find them. Sun's .stabstr, in particular,
451 isn't even pointed to by the .stab section, so ordinary
452 mechanisms wouldn't work to find it, even if we had some.
453*/
454
455struct elf_internal_shdr *
456bfd_elf_find_section (abfd, name)
457 bfd * abfd;
458 char *name;
459{
460 Elf_Internal_Shdr **i_shdrp;
461 char *shstrtab;
462 unsigned int max;
463 unsigned int i;
464
465 i_shdrp = elf_elfsections (abfd);
466 if (i_shdrp != NULL)
467 {
468 shstrtab = bfd_elf_get_str_section
469 (abfd, elf_elfheader (abfd)->e_shstrndx);
470 if (shstrtab != NULL)
471 {
472 max = elf_elfheader (abfd)->e_shnum;
473 for (i = 1; i < max; i++)
474 if (!strcmp (&shstrtab[i_shdrp[i]->sh_name], name))
475 return i_shdrp[i];
476 }
477 }
478 return 0;
479}
480
481const char *const bfd_elf_section_type_names[] = {
482 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
483 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
484 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
485};
486
487/* ELF relocs are against symbols. If we are producing relocateable
488 output, and the reloc is against an external symbol, and nothing
489 has given us any additional addend, the resulting reloc will also
490 be against the same symbol. In such a case, we don't want to
491 change anything about the way the reloc is handled, since it will
492 all be done at final link time. Rather than put special case code
493 into bfd_perform_relocation, all the reloc types use this howto
494 function. It just short circuits the reloc if producing
495 relocateable output against an external symbol. */
496
497/*ARGSUSED*/
498bfd_reloc_status_type
499bfd_elf_generic_reloc (abfd,
500 reloc_entry,
501 symbol,
502 data,
503 input_section,
504 output_bfd,
505 error_message)
506 bfd *abfd;
507 arelent *reloc_entry;
508 asymbol *symbol;
509 PTR data;
510 asection *input_section;
511 bfd *output_bfd;
512 char **error_message;
513{
514 if (output_bfd != (bfd *) NULL
515 && (symbol->flags & BSF_SECTION_SYM) == 0
516 && (! reloc_entry->howto->partial_inplace
517 || reloc_entry->addend == 0))
518 {
519 reloc_entry->address += input_section->output_offset;
520 return bfd_reloc_ok;
521 }
522
523 return bfd_reloc_continue;
524}
525\f
526/* Print out the program headers. */
527
528boolean
529_bfd_elf_print_private_bfd_data (abfd, farg)
530 bfd *abfd;
531 PTR farg;
532{
533 FILE *f = (FILE *) farg;
534 Elf_Internal_Phdr *p;
535 asection *s;
536 bfd_byte *dynbuf = NULL;
537
538 p = elf_tdata (abfd)->phdr;
539 if (p != NULL)
540 {
541 unsigned int i, c;
542
543 fprintf (f, _("\nProgram Header:\n"));
544 c = elf_elfheader (abfd)->e_phnum;
545 for (i = 0; i < c; i++, p++)
546 {
547 const char *s;
548 char buf[20];
549
550 switch (p->p_type)
551 {
552 case PT_NULL: s = "NULL"; break;
553 case PT_LOAD: s = "LOAD"; break;
554 case PT_DYNAMIC: s = "DYNAMIC"; break;
555 case PT_INTERP: s = "INTERP"; break;
556 case PT_NOTE: s = "NOTE"; break;
557 case PT_SHLIB: s = "SHLIB"; break;
558 case PT_PHDR: s = "PHDR"; break;
559 default: sprintf (buf, "0x%lx", p->p_type); s = buf; break;
560 }
561 fprintf (f, "%8s off 0x", s);
562 fprintf_vma (f, p->p_offset);
563 fprintf (f, " vaddr 0x");
564 fprintf_vma (f, p->p_vaddr);
565 fprintf (f, " paddr 0x");
566 fprintf_vma (f, p->p_paddr);
567 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
568 fprintf (f, " filesz 0x");
569 fprintf_vma (f, p->p_filesz);
570 fprintf (f, " memsz 0x");
571 fprintf_vma (f, p->p_memsz);
572 fprintf (f, " flags %c%c%c",
573 (p->p_flags & PF_R) != 0 ? 'r' : '-',
574 (p->p_flags & PF_W) != 0 ? 'w' : '-',
575 (p->p_flags & PF_X) != 0 ? 'x' : '-');
576 if ((p->p_flags &~ (PF_R | PF_W | PF_X)) != 0)
577 fprintf (f, " %lx", p->p_flags &~ (PF_R | PF_W | PF_X));
578 fprintf (f, "\n");
579 }
580 }
581
582 s = bfd_get_section_by_name (abfd, ".dynamic");
583 if (s != NULL)
584 {
585 int elfsec;
586 unsigned long link;
587 bfd_byte *extdyn, *extdynend;
588 size_t extdynsize;
589 void (*swap_dyn_in) PARAMS ((bfd *, const PTR, Elf_Internal_Dyn *));
590
591 fprintf (f, _("\nDynamic Section:\n"));
592
593 dynbuf = (bfd_byte *) bfd_malloc (s->_raw_size);
594 if (dynbuf == NULL)
595 goto error_return;
596 if (! bfd_get_section_contents (abfd, s, (PTR) dynbuf, (file_ptr) 0,
597 s->_raw_size))
598 goto error_return;
599
600 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
601 if (elfsec == -1)
602 goto error_return;
603 link = elf_elfsections (abfd)[elfsec]->sh_link;
604
605 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
606 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
607
608 extdyn = dynbuf;
609 extdynend = extdyn + s->_raw_size;
610 for (; extdyn < extdynend; extdyn += extdynsize)
611 {
612 Elf_Internal_Dyn dyn;
613 const char *name;
614 char ab[20];
615 boolean stringp;
616
617 (*swap_dyn_in) (abfd, (PTR) extdyn, &dyn);
618
619 if (dyn.d_tag == DT_NULL)
620 break;
621
622 stringp = false;
623 switch (dyn.d_tag)
624 {
625 default:
626 sprintf (ab, "0x%lx", (unsigned long) dyn.d_tag);
627 name = ab;
628 break;
629
630 case DT_NEEDED: name = "NEEDED"; stringp = true; break;
631 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
632 case DT_PLTGOT: name = "PLTGOT"; break;
633 case DT_HASH: name = "HASH"; break;
634 case DT_STRTAB: name = "STRTAB"; break;
635 case DT_SYMTAB: name = "SYMTAB"; break;
636 case DT_RELA: name = "RELA"; break;
637 case DT_RELASZ: name = "RELASZ"; break;
638 case DT_RELAENT: name = "RELAENT"; break;
639 case DT_STRSZ: name = "STRSZ"; break;
640 case DT_SYMENT: name = "SYMENT"; break;
641 case DT_INIT: name = "INIT"; break;
642 case DT_FINI: name = "FINI"; break;
643 case DT_SONAME: name = "SONAME"; stringp = true; break;
644 case DT_RPATH: name = "RPATH"; stringp = true; break;
645 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
646 case DT_REL: name = "REL"; break;
647 case DT_RELSZ: name = "RELSZ"; break;
648 case DT_RELENT: name = "RELENT"; break;
649 case DT_PLTREL: name = "PLTREL"; break;
650 case DT_DEBUG: name = "DEBUG"; break;
651 case DT_TEXTREL: name = "TEXTREL"; break;
652 case DT_JMPREL: name = "JMPREL"; break;
653 case DT_AUXILIARY: name = "AUXILIARY"; stringp = true; break;
654 case DT_FILTER: name = "FILTER"; stringp = true; break;
655 case DT_VERSYM: name = "VERSYM"; break;
656 case DT_VERDEF: name = "VERDEF"; break;
657 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
658 case DT_VERNEED: name = "VERNEED"; break;
659 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
660 }
661
662 fprintf (f, " %-11s ", name);
663 if (! stringp)
664 fprintf (f, "0x%lx", (unsigned long) dyn.d_un.d_val);
665 else
666 {
667 const char *string;
668
669 string = bfd_elf_string_from_elf_section (abfd, link,
670 dyn.d_un.d_val);
671 if (string == NULL)
672 goto error_return;
673 fprintf (f, "%s", string);
674 }
675 fprintf (f, "\n");
676 }
677
678 free (dynbuf);
679 dynbuf = NULL;
680 }
681
682 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
683 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
684 {
685 if (! _bfd_elf_slurp_version_tables (abfd))
686 return false;
687 }
688
689 if (elf_dynverdef (abfd) != 0)
690 {
691 Elf_Internal_Verdef *t;
692
693 fprintf (f, _("\nVersion definitions:\n"));
694 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
695 {
696 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
697 t->vd_flags, t->vd_hash, t->vd_nodename);
698 if (t->vd_auxptr->vda_nextptr != NULL)
699 {
700 Elf_Internal_Verdaux *a;
701
702 fprintf (f, "\t");
703 for (a = t->vd_auxptr->vda_nextptr;
704 a != NULL;
705 a = a->vda_nextptr)
706 fprintf (f, "%s ", a->vda_nodename);
707 fprintf (f, "\n");
708 }
709 }
710 }
711
712 if (elf_dynverref (abfd) != 0)
713 {
714 Elf_Internal_Verneed *t;
715
716 fprintf (f, _("\nVersion References:\n"));
717 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
718 {
719 Elf_Internal_Vernaux *a;
720
721 fprintf (f, _(" required from %s:\n"), t->vn_filename);
722 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
723 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
724 a->vna_flags, a->vna_other, a->vna_nodename);
725 }
726 }
727
728 return true;
729
730 error_return:
731 if (dynbuf != NULL)
732 free (dynbuf);
733 return false;
734}
735
736/* Display ELF-specific fields of a symbol. */
737
738void
739bfd_elf_print_symbol (abfd, filep, symbol, how)
740 bfd *abfd;
741 PTR filep;
742 asymbol *symbol;
743 bfd_print_symbol_type how;
744{
745 FILE *file = (FILE *) filep;
746 switch (how)
747 {
748 case bfd_print_symbol_name:
749 fprintf (file, "%s", symbol->name);
750 break;
751 case bfd_print_symbol_more:
752 fprintf (file, "elf ");
753 fprintf_vma (file, symbol->value);
754 fprintf (file, " %lx", (long) symbol->flags);
755 break;
756 case bfd_print_symbol_all:
757 {
758 CONST char *section_name;
759 section_name = symbol->section ? symbol->section->name : "(*none*)";
760 bfd_print_symbol_vandf ((PTR) file, symbol);
761 fprintf (file, " %s\t", section_name);
762 /* Print the "other" value for a symbol. For common symbols,
763 we've already printed the size; now print the alignment.
764 For other symbols, we have no specified alignment, and
765 we've printed the address; now print the size. */
766 fprintf_vma (file,
767 (bfd_is_com_section (symbol->section)
768 ? ((elf_symbol_type *) symbol)->internal_elf_sym.st_value
769 : ((elf_symbol_type *) symbol)->internal_elf_sym.st_size));
770
771 /* If we have version information, print it. */
772 if (elf_tdata (abfd)->dynversym_section != 0
773 && (elf_tdata (abfd)->dynverdef_section != 0
774 || elf_tdata (abfd)->dynverref_section != 0))
775 {
776 unsigned int vernum;
777 const char *version_string;
778
779 vernum = ((elf_symbol_type *) symbol)->version & VERSYM_VERSION;
780
781 if (vernum == 0)
782 version_string = "";
783 else if (vernum == 1)
784 version_string = "Base";
785 else if (vernum <= elf_tdata (abfd)->cverdefs)
786 version_string =
787 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
788 else
789 {
790 Elf_Internal_Verneed *t;
791
792 version_string = "";
793 for (t = elf_tdata (abfd)->verref;
794 t != NULL;
795 t = t->vn_nextref)
796 {
797 Elf_Internal_Vernaux *a;
798
799 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
800 {
801 if (a->vna_other == vernum)
802 {
803 version_string = a->vna_nodename;
804 break;
805 }
806 }
807 }
808 }
809
810 if ((((elf_symbol_type *) symbol)->version & VERSYM_HIDDEN) == 0)
811 fprintf (file, " %-11s", version_string);
812 else
813 {
814 int i;
815
816 fprintf (file, " (%s)", version_string);
817 for (i = 10 - strlen (version_string); i > 0; --i)
818 putc (' ', file);
819 }
820 }
821
822 /* If the st_other field is not zero, print it. */
823 if (((elf_symbol_type *) symbol)->internal_elf_sym.st_other != 0)
824 fprintf (file, " 0x%02x",
825 ((unsigned int)
826 ((elf_symbol_type *) symbol)->internal_elf_sym.st_other));
827
828 fprintf (file, " %s", symbol->name);
829 }
830 break;
831 }
832}
833\f
834/* Create an entry in an ELF linker hash table. */
835
836struct bfd_hash_entry *
837_bfd_elf_link_hash_newfunc (entry, table, string)
838 struct bfd_hash_entry *entry;
839 struct bfd_hash_table *table;
840 const char *string;
841{
842 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
843
844 /* Allocate the structure if it has not already been allocated by a
845 subclass. */
846 if (ret == (struct elf_link_hash_entry *) NULL)
847 ret = ((struct elf_link_hash_entry *)
848 bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry)));
849 if (ret == (struct elf_link_hash_entry *) NULL)
850 return (struct bfd_hash_entry *) ret;
851
852 /* Call the allocation method of the superclass. */
853 ret = ((struct elf_link_hash_entry *)
854 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
855 table, string));
856 if (ret != (struct elf_link_hash_entry *) NULL)
857 {
858 /* Set local fields. */
859 ret->indx = -1;
860 ret->size = 0;
861 ret->dynindx = -1;
862 ret->dynstr_index = 0;
863 ret->weakdef = NULL;
864 ret->got.offset = (bfd_vma) -1;
865 ret->plt.offset = (bfd_vma) -1;
866 ret->linker_section_pointer = (elf_linker_section_pointers_t *)0;
867 ret->verinfo.verdef = NULL;
868 ret->vtable_entries_used = NULL;
869 ret->vtable_entries_size = 0;
870 ret->vtable_parent = NULL;
871 ret->type = STT_NOTYPE;
872 ret->other = 0;
873 /* Assume that we have been called by a non-ELF symbol reader.
874 This flag is then reset by the code which reads an ELF input
875 file. This ensures that a symbol created by a non-ELF symbol
876 reader will have the flag set correctly. */
877 ret->elf_link_hash_flags = ELF_LINK_NON_ELF;
878 }
879
880 return (struct bfd_hash_entry *) ret;
881}
882
883/* Initialize an ELF linker hash table. */
884
885boolean
886_bfd_elf_link_hash_table_init (table, abfd, newfunc)
887 struct elf_link_hash_table *table;
888 bfd *abfd;
889 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
890 struct bfd_hash_table *,
891 const char *));
892{
893 table->dynamic_sections_created = false;
894 table->dynobj = NULL;
895 /* The first dynamic symbol is a dummy. */
896 table->dynsymcount = 1;
897 table->dynstr = NULL;
898 table->bucketcount = 0;
899 table->needed = NULL;
900 table->hgot = NULL;
901 table->stab_info = NULL;
902 return _bfd_link_hash_table_init (&table->root, abfd, newfunc);
903}
904
905/* Create an ELF linker hash table. */
906
907struct bfd_link_hash_table *
908_bfd_elf_link_hash_table_create (abfd)
909 bfd *abfd;
910{
911 struct elf_link_hash_table *ret;
912
913 ret = ((struct elf_link_hash_table *)
914 bfd_alloc (abfd, sizeof (struct elf_link_hash_table)));
915 if (ret == (struct elf_link_hash_table *) NULL)
916 return NULL;
917
918 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc))
919 {
920 bfd_release (abfd, ret);
921 return NULL;
922 }
923
924 return &ret->root;
925}
926
927/* This is a hook for the ELF emulation code in the generic linker to
928 tell the backend linker what file name to use for the DT_NEEDED
929 entry for a dynamic object. The generic linker passes name as an
930 empty string to indicate that no DT_NEEDED entry should be made. */
931
932void
933bfd_elf_set_dt_needed_name (abfd, name)
934 bfd *abfd;
935 const char *name;
936{
937 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
938 && bfd_get_format (abfd) == bfd_object)
939 elf_dt_name (abfd) = name;
940}
941
942/* Get the list of DT_NEEDED entries for a link. This is a hook for
943 the linker ELF emulation code. */
944
945struct bfd_link_needed_list *
946bfd_elf_get_needed_list (abfd, info)
947 bfd *abfd;
948 struct bfd_link_info *info;
949{
950 if (info->hash->creator->flavour != bfd_target_elf_flavour)
951 return NULL;
952 return elf_hash_table (info)->needed;
953}
954
955/* Get the name actually used for a dynamic object for a link. This
956 is the SONAME entry if there is one. Otherwise, it is the string
957 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
958
959const char *
960bfd_elf_get_dt_soname (abfd)
961 bfd *abfd;
962{
963 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
964 && bfd_get_format (abfd) == bfd_object)
965 return elf_dt_name (abfd);
966 return NULL;
967}
968
969/* Get the list of DT_NEEDED entries from a BFD. This is a hook for
970 the ELF linker emulation code. */
971
972boolean
973bfd_elf_get_bfd_needed_list (abfd, pneeded)
974 bfd *abfd;
975 struct bfd_link_needed_list **pneeded;
976{
977 asection *s;
978 bfd_byte *dynbuf = NULL;
979 int elfsec;
980 unsigned long link;
981 bfd_byte *extdyn, *extdynend;
982 size_t extdynsize;
983 void (*swap_dyn_in) PARAMS ((bfd *, const PTR, Elf_Internal_Dyn *));
984
985 *pneeded = NULL;
986
987 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
988 || bfd_get_format (abfd) != bfd_object)
989 return true;
990
991 s = bfd_get_section_by_name (abfd, ".dynamic");
992 if (s == NULL || s->_raw_size == 0)
993 return true;
994
995 dynbuf = (bfd_byte *) bfd_malloc (s->_raw_size);
996 if (dynbuf == NULL)
997 goto error_return;
998
999 if (! bfd_get_section_contents (abfd, s, (PTR) dynbuf, (file_ptr) 0,
1000 s->_raw_size))
1001 goto error_return;
1002
1003 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1004 if (elfsec == -1)
1005 goto error_return;
1006
1007 link = elf_elfsections (abfd)[elfsec]->sh_link;
1008
1009 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1010 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1011
1012 extdyn = dynbuf;
1013 extdynend = extdyn + s->_raw_size;
1014 for (; extdyn < extdynend; extdyn += extdynsize)
1015 {
1016 Elf_Internal_Dyn dyn;
1017
1018 (*swap_dyn_in) (abfd, (PTR) extdyn, &dyn);
1019
1020 if (dyn.d_tag == DT_NULL)
1021 break;
1022
1023 if (dyn.d_tag == DT_NEEDED)
1024 {
1025 const char *string;
1026 struct bfd_link_needed_list *l;
1027
1028 string = bfd_elf_string_from_elf_section (abfd, link,
1029 dyn.d_un.d_val);
1030 if (string == NULL)
1031 goto error_return;
1032
1033 l = (struct bfd_link_needed_list *) bfd_alloc (abfd, sizeof *l);
1034 if (l == NULL)
1035 goto error_return;
1036
1037 l->by = abfd;
1038 l->name = string;
1039 l->next = *pneeded;
1040 *pneeded = l;
1041 }
1042 }
1043
1044 free (dynbuf);
1045
1046 return true;
1047
1048 error_return:
1049 if (dynbuf != NULL)
1050 free (dynbuf);
1051 return false;
1052}
1053\f
1054/* Allocate an ELF string table--force the first byte to be zero. */
1055
1056struct bfd_strtab_hash *
1057_bfd_elf_stringtab_init ()
1058{
1059 struct bfd_strtab_hash *ret;
1060
1061 ret = _bfd_stringtab_init ();
1062 if (ret != NULL)
1063 {
1064 bfd_size_type loc;
1065
1066 loc = _bfd_stringtab_add (ret, "", true, false);
1067 BFD_ASSERT (loc == 0 || loc == (bfd_size_type) -1);
1068 if (loc == (bfd_size_type) -1)
1069 {
1070 _bfd_stringtab_free (ret);
1071 ret = NULL;
1072 }
1073 }
1074 return ret;
1075}
1076\f
1077/* ELF .o/exec file reading */
1078
1079/* Create a new bfd section from an ELF section header. */
1080
1081boolean
1082bfd_section_from_shdr (abfd, shindex)
1083 bfd *abfd;
1084 unsigned int shindex;
1085{
1086 Elf_Internal_Shdr *hdr = elf_elfsections (abfd)[shindex];
1087 Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
1088 struct elf_backend_data *bed = get_elf_backend_data (abfd);
1089 char *name;
1090
1091 name = elf_string_from_elf_strtab (abfd, hdr->sh_name);
1092
1093 switch (hdr->sh_type)
1094 {
1095 case SHT_NULL:
1096 /* Inactive section. Throw it away. */
1097 return true;
1098
1099 case SHT_PROGBITS: /* Normal section with contents. */
1100 case SHT_DYNAMIC: /* Dynamic linking information. */
1101 case SHT_NOBITS: /* .bss section. */
1102 case SHT_HASH: /* .hash section. */
1103 case SHT_NOTE: /* .note section. */
1104 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1105
1106 case SHT_SYMTAB: /* A symbol table */
1107 if (elf_onesymtab (abfd) == shindex)
1108 return true;
1109
1110 BFD_ASSERT (hdr->sh_entsize == bed->s->sizeof_sym);
1111 BFD_ASSERT (elf_onesymtab (abfd) == 0);
1112 elf_onesymtab (abfd) = shindex;
1113 elf_tdata (abfd)->symtab_hdr = *hdr;
1114 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->symtab_hdr;
1115 abfd->flags |= HAS_SYMS;
1116
1117 /* Sometimes a shared object will map in the symbol table. If
1118 SHF_ALLOC is set, and this is a shared object, then we also
1119 treat this section as a BFD section. We can not base the
1120 decision purely on SHF_ALLOC, because that flag is sometimes
1121 set in a relocateable object file, which would confuse the
1122 linker. */
1123 if ((hdr->sh_flags & SHF_ALLOC) != 0
1124 && (abfd->flags & DYNAMIC) != 0
1125 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
1126 return false;
1127
1128 return true;
1129
1130 case SHT_DYNSYM: /* A dynamic symbol table */
1131 if (elf_dynsymtab (abfd) == shindex)
1132 return true;
1133
1134 BFD_ASSERT (hdr->sh_entsize == bed->s->sizeof_sym);
1135 BFD_ASSERT (elf_dynsymtab (abfd) == 0);
1136 elf_dynsymtab (abfd) = shindex;
1137 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
1138 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
1139 abfd->flags |= HAS_SYMS;
1140
1141 /* Besides being a symbol table, we also treat this as a regular
1142 section, so that objcopy can handle it. */
1143 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1144
1145 case SHT_STRTAB: /* A string table */
1146 if (hdr->bfd_section != NULL)
1147 return true;
1148 if (ehdr->e_shstrndx == shindex)
1149 {
1150 elf_tdata (abfd)->shstrtab_hdr = *hdr;
1151 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
1152 return true;
1153 }
1154 {
1155 unsigned int i;
1156
1157 for (i = 1; i < ehdr->e_shnum; i++)
1158 {
1159 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1160 if (hdr2->sh_link == shindex)
1161 {
1162 if (! bfd_section_from_shdr (abfd, i))
1163 return false;
1164 if (elf_onesymtab (abfd) == i)
1165 {
1166 elf_tdata (abfd)->strtab_hdr = *hdr;
1167 elf_elfsections (abfd)[shindex] =
1168 &elf_tdata (abfd)->strtab_hdr;
1169 return true;
1170 }
1171 if (elf_dynsymtab (abfd) == i)
1172 {
1173 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
1174 elf_elfsections (abfd)[shindex] = hdr =
1175 &elf_tdata (abfd)->dynstrtab_hdr;
1176 /* We also treat this as a regular section, so
1177 that objcopy can handle it. */
1178 break;
1179 }
1180#if 0 /* Not handling other string tables specially right now. */
1181 hdr2 = elf_elfsections (abfd)[i]; /* in case it moved */
1182 /* We have a strtab for some random other section. */
1183 newsect = (asection *) hdr2->bfd_section;
1184 if (!newsect)
1185 break;
1186 hdr->bfd_section = newsect;
1187 hdr2 = &elf_section_data (newsect)->str_hdr;
1188 *hdr2 = *hdr;
1189 elf_elfsections (abfd)[shindex] = hdr2;
1190#endif
1191 }
1192 }
1193 }
1194
1195 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1196
1197 case SHT_REL:
1198 case SHT_RELA:
1199 /* *These* do a lot of work -- but build no sections! */
1200 {
1201 asection *target_sect;
1202 Elf_Internal_Shdr *hdr2;
1203
1204 /* For some incomprehensible reason Oracle distributes
1205 libraries for Solaris in which some of the objects have
1206 bogus sh_link fields. It would be nice if we could just
1207 reject them, but, unfortunately, some people need to use
1208 them. We scan through the section headers; if we find only
1209 one suitable symbol table, we clobber the sh_link to point
1210 to it. I hope this doesn't break anything. */
1211 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
1212 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
1213 {
1214 int scan;
1215 int found;
1216
1217 found = 0;
1218 for (scan = 1; scan < ehdr->e_shnum; scan++)
1219 {
1220 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
1221 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
1222 {
1223 if (found != 0)
1224 {
1225 found = 0;
1226 break;
1227 }
1228 found = scan;
1229 }
1230 }
1231 if (found != 0)
1232 hdr->sh_link = found;
1233 }
1234
1235 /* Get the symbol table. */
1236 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
1237 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
1238 return false;
1239
1240 /* If this reloc section does not use the main symbol table we
1241 don't treat it as a reloc section. BFD can't adequately
1242 represent such a section, so at least for now, we don't
1243 try. We just present it as a normal section. */
1244 if (hdr->sh_link != elf_onesymtab (abfd))
1245 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1246
1247 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
1248 return false;
1249 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
1250 if (target_sect == NULL)
1251 return false;
1252
1253 if ((target_sect->flags & SEC_RELOC) == 0
1254 || target_sect->reloc_count == 0)
1255 hdr2 = &elf_section_data (target_sect)->rel_hdr;
1256 else
1257 {
1258 BFD_ASSERT (elf_section_data (target_sect)->rel_hdr2 == NULL);
1259 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
1260 elf_section_data (target_sect)->rel_hdr2 = hdr2;
1261 }
1262 *hdr2 = *hdr;
1263 elf_elfsections (abfd)[shindex] = hdr2;
1264 target_sect->reloc_count += hdr->sh_size / hdr->sh_entsize;
1265 target_sect->flags |= SEC_RELOC;
1266 target_sect->relocation = NULL;
1267 target_sect->rel_filepos = hdr->sh_offset;
1268 abfd->flags |= HAS_RELOC;
1269 return true;
1270 }
1271 break;
1272
1273 case SHT_GNU_verdef:
1274 elf_dynverdef (abfd) = shindex;
1275 elf_tdata (abfd)->dynverdef_hdr = *hdr;
1276 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1277 break;
1278
1279 case SHT_GNU_versym:
1280 elf_dynversym (abfd) = shindex;
1281 elf_tdata (abfd)->dynversym_hdr = *hdr;
1282 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1283 break;
1284
1285 case SHT_GNU_verneed:
1286 elf_dynverref (abfd) = shindex;
1287 elf_tdata (abfd)->dynverref_hdr = *hdr;
1288 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1289 break;
1290
1291 case SHT_SHLIB:
1292 return true;
1293
1294 default:
1295 /* Check for any processor-specific section types. */
1296 {
1297 if (bed->elf_backend_section_from_shdr)
1298 (*bed->elf_backend_section_from_shdr) (abfd, hdr, name);
1299 }
1300 break;
1301 }
1302
1303 return true;
1304}
1305
1306/* Given an ELF section number, retrieve the corresponding BFD
1307 section. */
1308
1309asection *
1310bfd_section_from_elf_index (abfd, index)
1311 bfd *abfd;
1312 unsigned int index;
1313{
1314 BFD_ASSERT (index > 0 && index < SHN_LORESERVE);
1315 if (index >= elf_elfheader (abfd)->e_shnum)
1316 return NULL;
1317 return elf_elfsections (abfd)[index]->bfd_section;
1318}
1319
1320boolean
1321_bfd_elf_new_section_hook (abfd, sec)
1322 bfd *abfd;
1323 asection *sec;
1324{
1325 struct bfd_elf_section_data *sdata;
1326
1327 sdata = (struct bfd_elf_section_data *) bfd_alloc (abfd, sizeof (*sdata));
1328 if (!sdata)
1329 return false;
1330 sec->used_by_bfd = (PTR) sdata;
1331 memset (sdata, 0, sizeof (*sdata));
1332 return true;
1333}
1334
1335/* Create a new bfd section from an ELF program header.
1336
1337 Since program segments have no names, we generate a synthetic name
1338 of the form segment<NUM>, where NUM is generally the index in the
1339 program header table. For segments that are split (see below) we
1340 generate the names segment<NUM>a and segment<NUM>b.
1341
1342 Note that some program segments may have a file size that is different than
1343 (less than) the memory size. All this means is that at execution the
1344 system must allocate the amount of memory specified by the memory size,
1345 but only initialize it with the first "file size" bytes read from the
1346 file. This would occur for example, with program segments consisting
1347 of combined data+bss.
1348
1349 To handle the above situation, this routine generates TWO bfd sections
1350 for the single program segment. The first has the length specified by
1351 the file size of the segment, and the second has the length specified
1352 by the difference between the two sizes. In effect, the segment is split
1353 into it's initialized and uninitialized parts.
1354
1355 */
1356
1357boolean
1358bfd_section_from_phdr (abfd, hdr, index)
1359 bfd *abfd;
1360 Elf_Internal_Phdr *hdr;
1361 int index;
1362{
1363 asection *newsect;
1364 char *name;
1365 char namebuf[64];
1366 int split;
1367
1368 split = ((hdr->p_memsz > 0)
1369 && (hdr->p_filesz > 0)
1370 && (hdr->p_memsz > hdr->p_filesz));
1371 sprintf (namebuf, split ? "segment%da" : "segment%d", index);
1372 name = bfd_alloc (abfd, strlen (namebuf) + 1);
1373 if (!name)
1374 return false;
1375 strcpy (name, namebuf);
1376 newsect = bfd_make_section (abfd, name);
1377 if (newsect == NULL)
1378 return false;
1379 newsect->vma = hdr->p_vaddr;
1380 newsect->lma = hdr->p_paddr;
1381 newsect->_raw_size = hdr->p_filesz;
1382 newsect->filepos = hdr->p_offset;
1383 newsect->flags |= SEC_HAS_CONTENTS;
1384 if (hdr->p_type == PT_LOAD)
1385 {
1386 newsect->flags |= SEC_ALLOC;
1387 newsect->flags |= SEC_LOAD;
1388 if (hdr->p_flags & PF_X)
1389 {
1390 /* FIXME: all we known is that it has execute PERMISSION,
1391 may be data. */
1392 newsect->flags |= SEC_CODE;
1393 }
1394 }
1395 if (!(hdr->p_flags & PF_W))
1396 {
1397 newsect->flags |= SEC_READONLY;
1398 }
1399
1400 if (split)
1401 {
1402 sprintf (namebuf, "segment%db", index);
1403 name = bfd_alloc (abfd, strlen (namebuf) + 1);
1404 if (!name)
1405 return false;
1406 strcpy (name, namebuf);
1407 newsect = bfd_make_section (abfd, name);
1408 if (newsect == NULL)
1409 return false;
1410 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
1411 newsect->lma = hdr->p_paddr + hdr->p_filesz;
1412 newsect->_raw_size = hdr->p_memsz - hdr->p_filesz;
1413 if (hdr->p_type == PT_LOAD)
1414 {
1415 newsect->flags |= SEC_ALLOC;
1416 if (hdr->p_flags & PF_X)
1417 newsect->flags |= SEC_CODE;
1418 }
1419 if (!(hdr->p_flags & PF_W))
1420 newsect->flags |= SEC_READONLY;
1421 }
1422
1423 return true;
1424}
1425
1426/* Set up an ELF internal section header for a section. */
1427
1428/*ARGSUSED*/
1429static void
1430elf_fake_sections (abfd, asect, failedptrarg)
1431 bfd *abfd;
1432 asection *asect;
1433 PTR failedptrarg;
1434{
1435 struct elf_backend_data *bed = get_elf_backend_data (abfd);
1436 boolean *failedptr = (boolean *) failedptrarg;
1437 Elf_Internal_Shdr *this_hdr;
1438
1439 if (*failedptr)
1440 {
1441 /* We already failed; just get out of the bfd_map_over_sections
1442 loop. */
1443 return;
1444 }
1445
1446 this_hdr = &elf_section_data (asect)->this_hdr;
1447
1448 this_hdr->sh_name = (unsigned long) _bfd_stringtab_add (elf_shstrtab (abfd),
1449 asect->name,
1450 true, false);
1451 if (this_hdr->sh_name == (unsigned long) -1)
1452 {
1453 *failedptr = true;
1454 return;
1455 }
1456
1457 this_hdr->sh_flags = 0;
1458
1459 if ((asect->flags & SEC_ALLOC) != 0
1460 || asect->user_set_vma)
1461 this_hdr->sh_addr = asect->vma;
1462 else
1463 this_hdr->sh_addr = 0;
1464
1465 this_hdr->sh_offset = 0;
1466 this_hdr->sh_size = asect->_raw_size;
1467 this_hdr->sh_link = 0;
1468 this_hdr->sh_addralign = 1 << asect->alignment_power;
1469 /* The sh_entsize and sh_info fields may have been set already by
1470 copy_private_section_data. */
1471
1472 this_hdr->bfd_section = asect;
1473 this_hdr->contents = NULL;
1474
1475 /* FIXME: This should not be based on section names. */
1476 if (strcmp (asect->name, ".dynstr") == 0)
1477 this_hdr->sh_type = SHT_STRTAB;
1478 else if (strcmp (asect->name, ".hash") == 0)
1479 {
1480 this_hdr->sh_type = SHT_HASH;
1481 this_hdr->sh_entsize = bed->s->arch_size / 8;
1482 }
1483 else if (strcmp (asect->name, ".dynsym") == 0)
1484 {
1485 this_hdr->sh_type = SHT_DYNSYM;
1486 this_hdr->sh_entsize = bed->s->sizeof_sym;
1487 }
1488 else if (strcmp (asect->name, ".dynamic") == 0)
1489 {
1490 this_hdr->sh_type = SHT_DYNAMIC;
1491 this_hdr->sh_entsize = bed->s->sizeof_dyn;
1492 }
1493 else if (strncmp (asect->name, ".rela", 5) == 0
1494 && get_elf_backend_data (abfd)->use_rela_p)
1495 {
1496 this_hdr->sh_type = SHT_RELA;
1497 this_hdr->sh_entsize = bed->s->sizeof_rela;
1498 }
1499 else if (strncmp (asect->name, ".rel", 4) == 0
1500 && ! get_elf_backend_data (abfd)->use_rela_p)
1501 {
1502 this_hdr->sh_type = SHT_REL;
1503 this_hdr->sh_entsize = bed->s->sizeof_rel;
1504 }
1505 else if (strncmp (asect->name, ".note", 5) == 0)
1506 this_hdr->sh_type = SHT_NOTE;
1507 else if (strncmp (asect->name, ".stab", 5) == 0
1508 && strcmp (asect->name + strlen (asect->name) - 3, "str") == 0)
1509 this_hdr->sh_type = SHT_STRTAB;
1510 else if (strcmp (asect->name, ".gnu.version") == 0)
1511 {
1512 this_hdr->sh_type = SHT_GNU_versym;
1513 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
1514 }
1515 else if (strcmp (asect->name, ".gnu.version_d") == 0)
1516 {
1517 this_hdr->sh_type = SHT_GNU_verdef;
1518 this_hdr->sh_entsize = 0;
1519 /* objcopy or strip will copy over sh_info, but may not set
1520 cverdefs. The linker will set cverdefs, but sh_info will be
1521 zero. */
1522 if (this_hdr->sh_info == 0)
1523 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
1524 else
1525 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
1526 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
1527 }
1528 else if (strcmp (asect->name, ".gnu.version_r") == 0)
1529 {
1530 this_hdr->sh_type = SHT_GNU_verneed;
1531 this_hdr->sh_entsize = 0;
1532 /* objcopy or strip will copy over sh_info, but may not set
1533 cverrefs. The linker will set cverrefs, but sh_info will be
1534 zero. */
1535 if (this_hdr->sh_info == 0)
1536 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
1537 else
1538 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
1539 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
1540 }
1541 else if ((asect->flags & SEC_ALLOC) != 0
1542 && (asect->flags & SEC_LOAD) != 0)
1543 this_hdr->sh_type = SHT_PROGBITS;
1544 else if ((asect->flags & SEC_ALLOC) != 0
1545 && ((asect->flags & SEC_LOAD) == 0))
1546 this_hdr->sh_type = SHT_NOBITS;
1547 else
1548 {
1549 /* Who knows? */
1550 this_hdr->sh_type = SHT_PROGBITS;
1551 }
1552
1553 if ((asect->flags & SEC_ALLOC) != 0)
1554 this_hdr->sh_flags |= SHF_ALLOC;
1555 if ((asect->flags & SEC_READONLY) == 0)
1556 this_hdr->sh_flags |= SHF_WRITE;
1557 if ((asect->flags & SEC_CODE) != 0)
1558 this_hdr->sh_flags |= SHF_EXECINSTR;
1559
1560 /* Check for processor-specific section types. */
1561 {
1562 struct elf_backend_data *bed = get_elf_backend_data (abfd);
1563
1564 if (bed->elf_backend_fake_sections)
1565 (*bed->elf_backend_fake_sections) (abfd, this_hdr, asect);
1566 }
1567
1568 /* If the section has relocs, set up a section header for the
1569 SHT_REL[A] section. */
1570 if ((asect->flags & SEC_RELOC) != 0)
1571 {
1572 Elf_Internal_Shdr *rela_hdr;
1573 int use_rela_p = get_elf_backend_data (abfd)->use_rela_p;
1574 char *name;
1575
1576 rela_hdr = &elf_section_data (asect)->rel_hdr;
1577 name = bfd_alloc (abfd, sizeof ".rela" + strlen (asect->name));
1578 if (name == NULL)
1579 {
1580 *failedptr = true;
1581 return;
1582 }
1583 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", asect->name);
1584 rela_hdr->sh_name =
1585 (unsigned int) _bfd_stringtab_add (elf_shstrtab (abfd), name,
1586 true, false);
1587 if (rela_hdr->sh_name == (unsigned int) -1)
1588 {
1589 *failedptr = true;
1590 return;
1591 }
1592 rela_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
1593 rela_hdr->sh_entsize = (use_rela_p
1594 ? bed->s->sizeof_rela
1595 : bed->s->sizeof_rel);
1596 rela_hdr->sh_addralign = bed->s->file_align;
1597 rela_hdr->sh_flags = 0;
1598 rela_hdr->sh_addr = 0;
1599 rela_hdr->sh_size = 0;
1600 rela_hdr->sh_offset = 0;
1601 }
1602}
1603
1604/* Assign all ELF section numbers. The dummy first section is handled here
1605 too. The link/info pointers for the standard section types are filled
1606 in here too, while we're at it. */
1607
1608static boolean
1609assign_section_numbers (abfd)
1610 bfd *abfd;
1611{
1612 struct elf_obj_tdata *t = elf_tdata (abfd);
1613 asection *sec;
1614 unsigned int section_number;
1615 Elf_Internal_Shdr **i_shdrp;
1616 struct elf_backend_data *bed = get_elf_backend_data (abfd);
1617
1618 section_number = 1;
1619
1620 for (sec = abfd->sections; sec; sec = sec->next)
1621 {
1622 struct bfd_elf_section_data *d = elf_section_data (sec);
1623
1624 d->this_idx = section_number++;
1625 if ((sec->flags & SEC_RELOC) == 0)
1626 d->rel_idx = 0;
1627 else
1628 d->rel_idx = section_number++;
1629 }
1630
1631 t->shstrtab_section = section_number++;
1632 elf_elfheader (abfd)->e_shstrndx = t->shstrtab_section;
1633 t->shstrtab_hdr.sh_size = _bfd_stringtab_size (elf_shstrtab (abfd));
1634
1635 if (bfd_get_symcount (abfd) > 0)
1636 {
1637 t->symtab_section = section_number++;
1638 t->strtab_section = section_number++;
1639 }
1640
1641 elf_elfheader (abfd)->e_shnum = section_number;
1642
1643 /* Set up the list of section header pointers, in agreement with the
1644 indices. */
1645 i_shdrp = ((Elf_Internal_Shdr **)
1646 bfd_alloc (abfd, section_number * sizeof (Elf_Internal_Shdr *)));
1647 if (i_shdrp == NULL)
1648 return false;
1649
1650 i_shdrp[0] = ((Elf_Internal_Shdr *)
1651 bfd_alloc (abfd, sizeof (Elf_Internal_Shdr)));
1652 if (i_shdrp[0] == NULL)
1653 {
1654 bfd_release (abfd, i_shdrp);
1655 return false;
1656 }
1657 memset (i_shdrp[0], 0, sizeof (Elf_Internal_Shdr));
1658
1659 elf_elfsections (abfd) = i_shdrp;
1660
1661 i_shdrp[t->shstrtab_section] = &t->shstrtab_hdr;
1662 if (bfd_get_symcount (abfd) > 0)
1663 {
1664 i_shdrp[t->symtab_section] = &t->symtab_hdr;
1665 i_shdrp[t->strtab_section] = &t->strtab_hdr;
1666 t->symtab_hdr.sh_link = t->strtab_section;
1667 }
1668 for (sec = abfd->sections; sec; sec = sec->next)
1669 {
1670 struct bfd_elf_section_data *d = elf_section_data (sec);
1671 asection *s;
1672 const char *name;
1673
1674 i_shdrp[d->this_idx] = &d->this_hdr;
1675 if (d->rel_idx != 0)
1676 i_shdrp[d->rel_idx] = &d->rel_hdr;
1677
1678 /* Fill in the sh_link and sh_info fields while we're at it. */
1679
1680 /* sh_link of a reloc section is the section index of the symbol
1681 table. sh_info is the section index of the section to which
1682 the relocation entries apply. */
1683 if (d->rel_idx != 0)
1684 {
1685 d->rel_hdr.sh_link = t->symtab_section;
1686 d->rel_hdr.sh_info = d->this_idx;
1687 }
1688
1689 switch (d->this_hdr.sh_type)
1690 {
1691 case SHT_REL:
1692 case SHT_RELA:
1693 /* A reloc section which we are treating as a normal BFD
1694 section. sh_link is the section index of the symbol
1695 table. sh_info is the section index of the section to
1696 which the relocation entries apply. We assume that an
1697 allocated reloc section uses the dynamic symbol table.
1698 FIXME: How can we be sure? */
1699 s = bfd_get_section_by_name (abfd, ".dynsym");
1700 if (s != NULL)
1701 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
1702
1703 /* We look up the section the relocs apply to by name. */
1704 name = sec->name;
1705 if (d->this_hdr.sh_type == SHT_REL)
1706 name += 4;
1707 else
1708 name += 5;
1709 s = bfd_get_section_by_name (abfd, name);
1710 if (s != NULL)
1711 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
1712 break;
1713
1714 case SHT_STRTAB:
1715 /* We assume that a section named .stab*str is a stabs
1716 string section. We look for a section with the same name
1717 but without the trailing ``str'', and set its sh_link
1718 field to point to this section. */
1719 if (strncmp (sec->name, ".stab", sizeof ".stab" - 1) == 0
1720 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
1721 {
1722 size_t len;
1723 char *alc;
1724
1725 len = strlen (sec->name);
1726 alc = (char *) bfd_malloc (len - 2);
1727 if (alc == NULL)
1728 return false;
1729 strncpy (alc, sec->name, len - 3);
1730 alc[len - 3] = '\0';
1731 s = bfd_get_section_by_name (abfd, alc);
1732 free (alc);
1733 if (s != NULL)
1734 {
1735 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
1736
1737 /* This is a .stab section. */
1738 elf_section_data (s)->this_hdr.sh_entsize =
1739 4 + 2 * (bed->s->arch_size / 8);
1740 }
1741 }
1742 break;
1743
1744 case SHT_DYNAMIC:
1745 case SHT_DYNSYM:
1746 case SHT_GNU_verneed:
1747 case SHT_GNU_verdef:
1748 /* sh_link is the section header index of the string table
1749 used for the dynamic entries, or the symbol table, or the
1750 version strings. */
1751 s = bfd_get_section_by_name (abfd, ".dynstr");
1752 if (s != NULL)
1753 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
1754 break;
1755
1756 case SHT_HASH:
1757 case SHT_GNU_versym:
1758 /* sh_link is the section header index of the symbol table
1759 this hash table or version table is for. */
1760 s = bfd_get_section_by_name (abfd, ".dynsym");
1761 if (s != NULL)
1762 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
1763 break;
1764 }
1765 }
1766
1767 return true;
1768}
1769
1770/* Map symbol from it's internal number to the external number, moving
1771 all local symbols to be at the head of the list. */
1772
1773static INLINE int
1774sym_is_global (abfd, sym)
1775 bfd *abfd;
1776 asymbol *sym;
1777{
1778 /* If the backend has a special mapping, use it. */
1779 if (get_elf_backend_data (abfd)->elf_backend_sym_is_global)
1780 return ((*get_elf_backend_data (abfd)->elf_backend_sym_is_global)
1781 (abfd, sym));
1782
1783 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
1784 || bfd_is_und_section (bfd_get_section (sym))
1785 || bfd_is_com_section (bfd_get_section (sym)));
1786}
1787
1788static boolean
1789elf_map_symbols (abfd)
1790 bfd *abfd;
1791{
1792 int symcount = bfd_get_symcount (abfd);
1793 asymbol **syms = bfd_get_outsymbols (abfd);
1794 asymbol **sect_syms;
1795 int num_locals = 0;
1796 int num_globals = 0;
1797 int num_locals2 = 0;
1798 int num_globals2 = 0;
1799 int max_index = 0;
1800 int num_sections = 0;
1801 int idx;
1802 asection *asect;
1803 asymbol **new_syms;
1804 asymbol *sym;
1805
1806#ifdef DEBUG
1807 fprintf (stderr, "elf_map_symbols\n");
1808 fflush (stderr);
1809#endif
1810
1811 /* Add a section symbol for each BFD section. FIXME: Is this really
1812 necessary? */
1813 for (asect = abfd->sections; asect; asect = asect->next)
1814 {
1815 if (max_index < asect->index)
1816 max_index = asect->index;
1817 }
1818
1819 max_index++;
1820 sect_syms = (asymbol **) bfd_zalloc (abfd, max_index * sizeof (asymbol *));
1821 if (sect_syms == NULL)
1822 return false;
1823 elf_section_syms (abfd) = sect_syms;
1824
1825 for (idx = 0; idx < symcount; idx++)
1826 {
1827 sym = syms[idx];
1828
1829 if ((sym->flags & BSF_SECTION_SYM) != 0
1830 && sym->value == 0)
1831 {
1832 asection *sec;
1833
1834 sec = sym->section;
1835
1836 if (sec->owner != NULL)
1837 {
1838 if (sec->owner != abfd)
1839 {
1840 if (sec->output_offset != 0)
1841 continue;
1842
1843 sec = sec->output_section;
1844
1845 /* Empty sections in the input files may have had a section
1846 symbol created for them. (See the comment near the end of
1847 _bfd_generic_link_output_symbols in linker.c). If the linker
1848 script discards such sections then we will reach this point.
1849 Since we know that we cannot avoid this case, we detect it
1850 and skip the abort and the assignment to the sect_syms array.
1851 To reproduce this particular case try running the linker
1852 testsuite test ld-scripts/weak.exp for an ELF port that uses
1853 the generic linker. */
1854 if (sec->owner == NULL)
1855 continue;
1856
1857 BFD_ASSERT (sec->owner == abfd);
1858 }
1859 sect_syms[sec->index] = syms[idx];
1860 }
1861 }
1862 }
1863
1864 for (asect = abfd->sections; asect; asect = asect->next)
1865 {
1866 if (sect_syms[asect->index] != NULL)
1867 continue;
1868
1869 sym = bfd_make_empty_symbol (abfd);
1870 if (sym == NULL)
1871 return false;
1872 sym->the_bfd = abfd;
1873 sym->name = asect->name;
1874 sym->value = 0;
1875 /* Set the flags to 0 to indicate that this one was newly added. */
1876 sym->flags = 0;
1877 sym->section = asect;
1878 sect_syms[asect->index] = sym;
1879 num_sections++;
1880#ifdef DEBUG
1881 fprintf (stderr,
1882 _("creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n"),
1883 asect->name, (long) asect->vma, asect->index, (long) asect);
1884#endif
1885 }
1886
1887 /* Classify all of the symbols. */
1888 for (idx = 0; idx < symcount; idx++)
1889 {
1890 if (!sym_is_global (abfd, syms[idx]))
1891 num_locals++;
1892 else
1893 num_globals++;
1894 }
1895 for (asect = abfd->sections; asect; asect = asect->next)
1896 {
1897 if (sect_syms[asect->index] != NULL
1898 && sect_syms[asect->index]->flags == 0)
1899 {
1900 sect_syms[asect->index]->flags = BSF_SECTION_SYM;
1901 if (!sym_is_global (abfd, sect_syms[asect->index]))
1902 num_locals++;
1903 else
1904 num_globals++;
1905 sect_syms[asect->index]->flags = 0;
1906 }
1907 }
1908
1909 /* Now sort the symbols so the local symbols are first. */
1910 new_syms = ((asymbol **)
1911 bfd_alloc (abfd,
1912 (num_locals + num_globals) * sizeof (asymbol *)));
1913 if (new_syms == NULL)
1914 return false;
1915
1916 for (idx = 0; idx < symcount; idx++)
1917 {
1918 asymbol *sym = syms[idx];
1919 int i;
1920
1921 if (!sym_is_global (abfd, sym))
1922 i = num_locals2++;
1923 else
1924 i = num_locals + num_globals2++;
1925 new_syms[i] = sym;
1926 sym->udata.i = i + 1;
1927 }
1928 for (asect = abfd->sections; asect; asect = asect->next)
1929 {
1930 if (sect_syms[asect->index] != NULL
1931 && sect_syms[asect->index]->flags == 0)
1932 {
1933 asymbol *sym = sect_syms[asect->index];
1934 int i;
1935
1936 sym->flags = BSF_SECTION_SYM;
1937 if (!sym_is_global (abfd, sym))
1938 i = num_locals2++;
1939 else
1940 i = num_locals + num_globals2++;
1941 new_syms[i] = sym;
1942 sym->udata.i = i + 1;
1943 }
1944 }
1945
1946 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
1947
1948 elf_num_locals (abfd) = num_locals;
1949 elf_num_globals (abfd) = num_globals;
1950 return true;
1951}
1952
1953/* Align to the maximum file alignment that could be required for any
1954 ELF data structure. */
1955
1956static INLINE file_ptr align_file_position PARAMS ((file_ptr, int));
1957static INLINE file_ptr
1958align_file_position (off, align)
1959 file_ptr off;
1960 int align;
1961{
1962 return (off + align - 1) & ~(align - 1);
1963}
1964
1965/* Assign a file position to a section, optionally aligning to the
1966 required section alignment. */
1967
1968INLINE file_ptr
1969_bfd_elf_assign_file_position_for_section (i_shdrp, offset, align)
1970 Elf_Internal_Shdr *i_shdrp;
1971 file_ptr offset;
1972 boolean align;
1973{
1974 if (align)
1975 {
1976 unsigned int al;
1977
1978 al = i_shdrp->sh_addralign;
1979 if (al > 1)
1980 offset = BFD_ALIGN (offset, al);
1981 }
1982 i_shdrp->sh_offset = offset;
1983 if (i_shdrp->bfd_section != NULL)
1984 i_shdrp->bfd_section->filepos = offset;
1985 if (i_shdrp->sh_type != SHT_NOBITS)
1986 offset += i_shdrp->sh_size;
1987 return offset;
1988}
1989
1990/* Compute the file positions we are going to put the sections at, and
1991 otherwise prepare to begin writing out the ELF file. If LINK_INFO
1992 is not NULL, this is being called by the ELF backend linker. */
1993
1994boolean
1995_bfd_elf_compute_section_file_positions (abfd, link_info)
1996 bfd *abfd;
1997 struct bfd_link_info *link_info;
1998{
1999 struct elf_backend_data *bed = get_elf_backend_data (abfd);
2000 boolean failed;
2001 struct bfd_strtab_hash *strtab;
2002 Elf_Internal_Shdr *shstrtab_hdr;
2003
2004 if (abfd->output_has_begun)
2005 return true;
2006
2007 /* Do any elf backend specific processing first. */
2008 if (bed->elf_backend_begin_write_processing)
2009 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
2010
2011 if (! prep_headers (abfd))
2012 return false;
2013
2014 failed = false;
2015 bfd_map_over_sections (abfd, elf_fake_sections, &failed);
2016 if (failed)
2017 return false;
2018
2019 if (!assign_section_numbers (abfd))
2020 return false;
2021
2022 /* The backend linker builds symbol table information itself. */
2023 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
2024 {
2025 /* Non-zero if doing a relocatable link. */
2026 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
2027
2028 if (! swap_out_syms (abfd, &strtab, relocatable_p))
2029 return false;
2030 }
2031
2032 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
2033 /* sh_name was set in prep_headers. */
2034 shstrtab_hdr->sh_type = SHT_STRTAB;
2035 shstrtab_hdr->sh_flags = 0;
2036 shstrtab_hdr->sh_addr = 0;
2037 shstrtab_hdr->sh_size = _bfd_stringtab_size (elf_shstrtab (abfd));
2038 shstrtab_hdr->sh_entsize = 0;
2039 shstrtab_hdr->sh_link = 0;
2040 shstrtab_hdr->sh_info = 0;
2041 /* sh_offset is set in assign_file_positions_except_relocs. */
2042 shstrtab_hdr->sh_addralign = 1;
2043
2044 if (!assign_file_positions_except_relocs (abfd))
2045 return false;
2046
2047 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
2048 {
2049 file_ptr off;
2050 Elf_Internal_Shdr *hdr;
2051
2052 off = elf_tdata (abfd)->next_file_pos;
2053
2054 hdr = &elf_tdata (abfd)->symtab_hdr;
2055 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
2056
2057 hdr = &elf_tdata (abfd)->strtab_hdr;
2058 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
2059
2060 elf_tdata (abfd)->next_file_pos = off;
2061
2062 /* Now that we know where the .strtab section goes, write it
2063 out. */
2064 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
2065 || ! _bfd_stringtab_emit (abfd, strtab))
2066 return false;
2067 _bfd_stringtab_free (strtab);
2068 }
2069
2070 abfd->output_has_begun = true;
2071
2072 return true;
2073}
2074
2075/* Create a mapping from a set of sections to a program segment. */
2076
2077static INLINE struct elf_segment_map *
2078make_mapping (abfd, sections, from, to, phdr)
2079 bfd *abfd;
2080 asection **sections;
2081 unsigned int from;
2082 unsigned int to;
2083 boolean phdr;
2084{
2085 struct elf_segment_map *m;
2086 unsigned int i;
2087 asection **hdrpp;
2088
2089 m = ((struct elf_segment_map *)
2090 bfd_zalloc (abfd,
2091 (sizeof (struct elf_segment_map)
2092 + (to - from - 1) * sizeof (asection *))));
2093 if (m == NULL)
2094 return NULL;
2095 m->next = NULL;
2096 m->p_type = PT_LOAD;
2097 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
2098 m->sections[i - from] = *hdrpp;
2099 m->count = to - from;
2100
2101 if (from == 0 && phdr)
2102 {
2103 /* Include the headers in the first PT_LOAD segment. */
2104 m->includes_filehdr = 1;
2105 m->includes_phdrs = 1;
2106 }
2107
2108 return m;
2109}
2110
2111/* Set up a mapping from BFD sections to program segments. */
2112
2113static boolean
2114map_sections_to_segments (abfd)
2115 bfd *abfd;
2116{
2117 asection **sections = NULL;
2118 asection *s;
2119 unsigned int i;
2120 unsigned int count;
2121 struct elf_segment_map *mfirst;
2122 struct elf_segment_map **pm;
2123 struct elf_segment_map *m;
2124 asection *last_hdr;
2125 unsigned int phdr_index;
2126 bfd_vma maxpagesize;
2127 asection **hdrpp;
2128 boolean phdr_in_segment = true;
2129 boolean writable;
2130 asection *dynsec;
2131
2132 if (elf_tdata (abfd)->segment_map != NULL)
2133 return true;
2134
2135 if (bfd_count_sections (abfd) == 0)
2136 return true;
2137
2138 /* Select the allocated sections, and sort them. */
2139
2140 sections = (asection **) bfd_malloc (bfd_count_sections (abfd)
2141 * sizeof (asection *));
2142 if (sections == NULL)
2143 goto error_return;
2144
2145 i = 0;
2146 for (s = abfd->sections; s != NULL; s = s->next)
2147 {
2148 if ((s->flags & SEC_ALLOC) != 0)
2149 {
2150 sections[i] = s;
2151 ++i;
2152 }
2153 }
2154 BFD_ASSERT (i <= bfd_count_sections (abfd));
2155 count = i;
2156
2157 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
2158
2159 /* Build the mapping. */
2160
2161 mfirst = NULL;
2162 pm = &mfirst;
2163
2164 /* If we have a .interp section, then create a PT_PHDR segment for
2165 the program headers and a PT_INTERP segment for the .interp
2166 section. */
2167 s = bfd_get_section_by_name (abfd, ".interp");
2168 if (s != NULL && (s->flags & SEC_LOAD) != 0)
2169 {
2170 m = ((struct elf_segment_map *)
2171 bfd_zalloc (abfd, sizeof (struct elf_segment_map)));
2172 if (m == NULL)
2173 goto error_return;
2174 m->next = NULL;
2175 m->p_type = PT_PHDR;
2176 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
2177 m->p_flags = PF_R | PF_X;
2178 m->p_flags_valid = 1;
2179 m->includes_phdrs = 1;
2180
2181 *pm = m;
2182 pm = &m->next;
2183
2184 m = ((struct elf_segment_map *)
2185 bfd_zalloc (abfd, sizeof (struct elf_segment_map)));
2186 if (m == NULL)
2187 goto error_return;
2188 m->next = NULL;
2189 m->p_type = PT_INTERP;
2190 m->count = 1;
2191 m->sections[0] = s;
2192
2193 *pm = m;
2194 pm = &m->next;
2195 }
2196
2197 /* Look through the sections. We put sections in the same program
2198 segment when the start of the second section can be placed within
2199 a few bytes of the end of the first section. */
2200 last_hdr = NULL;
2201 phdr_index = 0;
2202 maxpagesize = get_elf_backend_data (abfd)->maxpagesize;
2203 writable = false;
2204 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
2205 if (dynsec != NULL
2206 && (dynsec->flags & SEC_LOAD) == 0)
2207 dynsec = NULL;
2208
2209 /* Deal with -Ttext or something similar such that the first section
2210 is not adjacent to the program headers. This is an
2211 approximation, since at this point we don't know exactly how many
2212 program headers we will need. */
2213 if (count > 0)
2214 {
2215 bfd_size_type phdr_size;
2216
2217 phdr_size = elf_tdata (abfd)->program_header_size;
2218 if (phdr_size == 0)
2219 phdr_size = get_elf_backend_data (abfd)->s->sizeof_phdr;
2220 if ((abfd->flags & D_PAGED) == 0
2221 || sections[0]->lma < phdr_size
2222 || sections[0]->lma % maxpagesize < phdr_size % maxpagesize)
2223 phdr_in_segment = false;
2224 }
2225
2226 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
2227 {
2228 asection *hdr;
2229 boolean new_segment;
2230
2231 hdr = *hdrpp;
2232
2233 /* See if this section and the last one will fit in the same
2234 segment. */
2235
2236 if (last_hdr == NULL)
2237 {
2238 /* If we don't have a segment yet, then we don't need a new
2239 one (we build the last one after this loop). */
2240 new_segment = false;
2241 }
2242 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
2243 {
2244 /* If this section has a different relation between the
2245 virtual address and the load address, then we need a new
2246 segment. */
2247 new_segment = true;
2248 }
2249 else if (BFD_ALIGN (last_hdr->lma + last_hdr->_raw_size, maxpagesize)
2250 < BFD_ALIGN (hdr->lma, maxpagesize))
2251 {
2252 /* If putting this section in this segment would force us to
2253 skip a page in the segment, then we need a new segment. */
2254 new_segment = true;
2255 }
2256 else if ((last_hdr->flags & SEC_LOAD) == 0
2257 && (hdr->flags & SEC_LOAD) != 0)
2258 {
2259 /* We don't want to put a loadable section after a
2260 nonloadable section in the same segment. */
2261 new_segment = true;
2262 }
2263 else if ((abfd->flags & D_PAGED) == 0)
2264 {
2265 /* If the file is not demand paged, which means that we
2266 don't require the sections to be correctly aligned in the
2267 file, then there is no other reason for a new segment. */
2268 new_segment = false;
2269 }
2270 else if (! writable
2271 && (hdr->flags & SEC_READONLY) == 0
2272 && (BFD_ALIGN (last_hdr->lma + last_hdr->_raw_size, maxpagesize)
2273 == hdr->lma))
2274 {
2275 /* We don't want to put a writable section in a read only
2276 segment, unless they are on the same page in memory
2277 anyhow. We already know that the last section does not
2278 bring us past the current section on the page, so the
2279 only case in which the new section is not on the same
2280 page as the previous section is when the previous section
2281 ends precisely on a page boundary. */
2282 new_segment = true;
2283 }
2284 else
2285 {
2286 /* Otherwise, we can use the same segment. */
2287 new_segment = false;
2288 }
2289
2290 if (! new_segment)
2291 {
2292 if ((hdr->flags & SEC_READONLY) == 0)
2293 writable = true;
2294 last_hdr = hdr;
2295 continue;
2296 }
2297
2298 /* We need a new program segment. We must create a new program
2299 header holding all the sections from phdr_index until hdr. */
2300
2301 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
2302 if (m == NULL)
2303 goto error_return;
2304
2305 *pm = m;
2306 pm = &m->next;
2307
2308 if ((hdr->flags & SEC_READONLY) == 0)
2309 writable = true;
2310 else
2311 writable = false;
2312
2313 last_hdr = hdr;
2314 phdr_index = i;
2315 phdr_in_segment = false;
2316 }
2317
2318 /* Create a final PT_LOAD program segment. */
2319 if (last_hdr != NULL)
2320 {
2321 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
2322 if (m == NULL)
2323 goto error_return;
2324
2325 *pm = m;
2326 pm = &m->next;
2327 }
2328
2329 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
2330 if (dynsec != NULL)
2331 {
2332 m = ((struct elf_segment_map *)
2333 bfd_zalloc (abfd, sizeof (struct elf_segment_map)));
2334 if (m == NULL)
2335 goto error_return;
2336 m->next = NULL;
2337 m->p_type = PT_DYNAMIC;
2338 m->count = 1;
2339 m->sections[0] = dynsec;
2340
2341 *pm = m;
2342 pm = &m->next;
2343 }
2344
2345 /* For each loadable .note section, add a PT_NOTE segment. We don't
2346 use bfd_get_section_by_name, because if we link together
2347 nonloadable .note sections and loadable .note sections, we will
2348 generate two .note sections in the output file. FIXME: Using
2349 names for section types is bogus anyhow. */
2350 for (s = abfd->sections; s != NULL; s = s->next)
2351 {
2352 if ((s->flags & SEC_LOAD) != 0
2353 && strncmp (s->name, ".note", 5) == 0)
2354 {
2355 m = ((struct elf_segment_map *)
2356 bfd_zalloc (abfd, sizeof (struct elf_segment_map)));
2357 if (m == NULL)
2358 goto error_return;
2359 m->next = NULL;
2360 m->p_type = PT_NOTE;
2361 m->count = 1;
2362 m->sections[0] = s;
2363
2364 *pm = m;
2365 pm = &m->next;
2366 }
2367 }
2368
2369 free (sections);
2370 sections = NULL;
2371
2372 elf_tdata (abfd)->segment_map = mfirst;
2373 return true;
2374
2375 error_return:
2376 if (sections != NULL)
2377 free (sections);
2378 return false;
2379}
2380
2381/* Sort sections by address. */
2382
2383static int
2384elf_sort_sections (arg1, arg2)
2385 const PTR arg1;
2386 const PTR arg2;
2387{
2388 const asection *sec1 = *(const asection **) arg1;
2389 const asection *sec2 = *(const asection **) arg2;
2390
2391 /* Sort by LMA first, since this is the address used to
2392 place the section into a segment. */
2393 if (sec1->lma < sec2->lma)
2394 return -1;
2395 else if (sec1->lma > sec2->lma)
2396 return 1;
2397
2398 /* Then sort by VMA. Normally the LMA and the VMA will be
2399 the same, and this will do nothing. */
2400 if (sec1->vma < sec2->vma)
2401 return -1;
2402 else if (sec1->vma > sec2->vma)
2403 return 1;
2404
2405 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
2406
2407#define TOEND(x) (((x)->flags & SEC_LOAD) == 0)
2408
2409 if (TOEND (sec1))
2410 {
2411 if (TOEND (sec2))
2412 return sec1->target_index - sec2->target_index;
2413 else
2414 return 1;
2415 }
2416
2417 if (TOEND (sec2))
2418 return -1;
2419
2420#undef TOEND
2421
2422 /* Sort by size, to put zero sized sections before others at the
2423 same address. */
2424
2425 if (sec1->_raw_size < sec2->_raw_size)
2426 return -1;
2427 if (sec1->_raw_size > sec2->_raw_size)
2428 return 1;
2429
2430 return sec1->target_index - sec2->target_index;
2431}
2432
2433/* Assign file positions to the sections based on the mapping from
2434 sections to segments. This function also sets up some fields in
2435 the file header, and writes out the program headers. */
2436
2437static boolean
2438assign_file_positions_for_segments (abfd)
2439 bfd *abfd;
2440{
2441 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2442 unsigned int count;
2443 struct elf_segment_map *m;
2444 unsigned int alloc;
2445 Elf_Internal_Phdr *phdrs;
2446 file_ptr off, voff;
2447 bfd_vma filehdr_vaddr, filehdr_paddr;
2448 bfd_vma phdrs_vaddr, phdrs_paddr;
2449 Elf_Internal_Phdr *p;
2450
2451 if (elf_tdata (abfd)->segment_map == NULL)
2452 {
2453 if (! map_sections_to_segments (abfd))
2454 return false;
2455 }
2456
2457 if (bed->elf_backend_modify_segment_map)
2458 {
2459 if (! (*bed->elf_backend_modify_segment_map) (abfd))
2460 return false;
2461 }
2462
2463 count = 0;
2464 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
2465 ++count;
2466
2467 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
2468 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
2469 elf_elfheader (abfd)->e_phnum = count;
2470
2471 if (count == 0)
2472 return true;
2473
2474 /* If we already counted the number of program segments, make sure
2475 that we allocated enough space. This happens when SIZEOF_HEADERS
2476 is used in a linker script. */
2477 alloc = elf_tdata (abfd)->program_header_size / bed->s->sizeof_phdr;
2478 if (alloc != 0 && count > alloc)
2479 {
2480 ((*_bfd_error_handler)
2481 (_("%s: Not enough room for program headers (allocated %u, need %u)"),
2482 bfd_get_filename (abfd), alloc, count));
2483 bfd_set_error (bfd_error_bad_value);
2484 return false;
2485 }
2486
2487 if (alloc == 0)
2488 alloc = count;
2489
2490 phdrs = ((Elf_Internal_Phdr *)
2491 bfd_alloc (abfd, alloc * sizeof (Elf_Internal_Phdr)));
2492 if (phdrs == NULL)
2493 return false;
2494
2495 off = bed->s->sizeof_ehdr;
2496 off += alloc * bed->s->sizeof_phdr;
2497
2498 filehdr_vaddr = 0;
2499 filehdr_paddr = 0;
2500 phdrs_vaddr = 0;
2501 phdrs_paddr = 0;
2502
2503 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
2504 m != NULL;
2505 m = m->next, p++)
2506 {
2507 unsigned int i;
2508 asection **secpp;
2509
2510 /* If elf_segment_map is not from map_sections_to_segments, the
2511 sections may not be correctly ordered. */
2512 if (m->count > 0)
2513 qsort (m->sections, (size_t) m->count, sizeof (asection *),
2514 elf_sort_sections);
2515
2516 p->p_type = m->p_type;
2517
2518 if (m->p_flags_valid)
2519 p->p_flags = m->p_flags;
2520 else
2521 p->p_flags = 0;
2522
2523 if (p->p_type == PT_LOAD
2524 && m->count > 0
2525 && (m->sections[0]->flags & SEC_ALLOC) != 0)
2526 {
2527 if ((abfd->flags & D_PAGED) != 0)
2528 off += (m->sections[0]->vma - off) % bed->maxpagesize;
2529 else
2530 {
2531 bfd_size_type align;
2532
2533 align = 0;
2534 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
2535 {
2536 bfd_size_type secalign;
2537
2538 secalign = bfd_get_section_alignment (abfd, *secpp);
2539 if (secalign > align)
2540 align = secalign;
2541 }
2542
2543 off += (m->sections[0]->vma - off) % (1 << align);
2544 }
2545 }
2546
2547 if (m->count == 0)
2548 p->p_vaddr = 0;
2549 else
2550 p->p_vaddr = m->sections[0]->vma;
2551
2552 if (m->p_paddr_valid)
2553 p->p_paddr = m->p_paddr;
2554 else if (m->count == 0)
2555 p->p_paddr = 0;
2556 else
2557 p->p_paddr = m->sections[0]->lma;
2558
2559 if (p->p_type == PT_LOAD
2560 && (abfd->flags & D_PAGED) != 0)
2561 p->p_align = bed->maxpagesize;
2562 else if (m->count == 0)
2563 p->p_align = bed->s->file_align;
2564 else
2565 p->p_align = 0;
2566
2567 p->p_offset = 0;
2568 p->p_filesz = 0;
2569 p->p_memsz = 0;
2570
2571 if (m->includes_filehdr)
2572 {
2573 if (! m->p_flags_valid)
2574 p->p_flags |= PF_R;
2575 p->p_offset = 0;
2576 p->p_filesz = bed->s->sizeof_ehdr;
2577 p->p_memsz = bed->s->sizeof_ehdr;
2578 if (m->count > 0)
2579 {
2580 BFD_ASSERT (p->p_type == PT_LOAD);
2581
2582 if (p->p_vaddr < (bfd_vma) off)
2583 {
2584 _bfd_error_handler (_("%s: Not enough room for program headers, try linking with -N"),
2585 bfd_get_filename (abfd));
2586 bfd_set_error (bfd_error_bad_value);
2587 return false;
2588 }
2589
2590 p->p_vaddr -= off;
2591 if (! m->p_paddr_valid)
2592 p->p_paddr -= off;
2593 }
2594 if (p->p_type == PT_LOAD)
2595 {
2596 filehdr_vaddr = p->p_vaddr;
2597 filehdr_paddr = p->p_paddr;
2598 }
2599 }
2600
2601 if (m->includes_phdrs)
2602 {
2603 if (! m->p_flags_valid)
2604 p->p_flags |= PF_R;
2605
2606 if (m->includes_filehdr)
2607 {
2608 if (p->p_type == PT_LOAD)
2609 {
2610 phdrs_vaddr = p->p_vaddr + bed->s->sizeof_ehdr;
2611 phdrs_paddr = p->p_paddr + bed->s->sizeof_ehdr;
2612 }
2613 }
2614 else
2615 {
2616 p->p_offset = bed->s->sizeof_ehdr;
2617
2618 if (m->count > 0)
2619 {
2620 BFD_ASSERT (p->p_type == PT_LOAD);
2621 p->p_vaddr -= off - p->p_offset;
2622 if (! m->p_paddr_valid)
2623 p->p_paddr -= off - p->p_offset;
2624 }
2625
2626 if (p->p_type == PT_LOAD)
2627 {
2628 phdrs_vaddr = p->p_vaddr;
2629 phdrs_paddr = p->p_paddr;
2630 }
2631 else
2632 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
2633 }
2634
2635 p->p_filesz += alloc * bed->s->sizeof_phdr;
2636 p->p_memsz += alloc * bed->s->sizeof_phdr;
2637 }
2638
2639 if (p->p_type == PT_LOAD
2640 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
2641 {
2642 if (! m->includes_filehdr && ! m->includes_phdrs)
2643 p->p_offset = off;
2644 else
2645 {
2646 file_ptr adjust;
2647
2648 adjust = off - (p->p_offset + p->p_filesz);
2649 p->p_filesz += adjust;
2650 p->p_memsz += adjust;
2651 }
2652 }
2653
2654 voff = off;
2655
2656 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
2657 {
2658 asection *sec;
2659 flagword flags;
2660 bfd_size_type align;
2661
2662 sec = *secpp;
2663 flags = sec->flags;
2664 align = 1 << bfd_get_section_alignment (abfd, sec);
2665
2666 /* The section may have artificial alignment forced by a
2667 link script. Notice this case by the gap between the
2668 cumulative phdr vma and the section's vma. */
2669 if (p->p_vaddr + p->p_memsz < sec->vma)
2670 {
2671 bfd_vma adjust = sec->vma - (p->p_vaddr + p->p_memsz);
2672
2673 p->p_memsz += adjust;
2674 off += adjust;
2675 voff += adjust;
2676 if ((flags & SEC_LOAD) != 0)
2677 p->p_filesz += adjust;
2678 }
2679
2680 if (p->p_type == PT_LOAD)
2681 {
2682 bfd_signed_vma adjust;
2683
2684 if ((flags & SEC_LOAD) != 0)
2685 {
2686 adjust = sec->lma - (p->p_paddr + p->p_memsz);
2687 if (adjust < 0)
2688 adjust = 0;
2689 }
2690 else if ((flags & SEC_ALLOC) != 0)
2691 {
2692 /* The section VMA must equal the file position
2693 modulo the page size. FIXME: I'm not sure if
2694 this adjustment is really necessary. We used to
2695 not have the SEC_LOAD case just above, and then
2696 this was necessary, but now I'm not sure. */
2697 if ((abfd->flags & D_PAGED) != 0)
2698 adjust = (sec->vma - voff) % bed->maxpagesize;
2699 else
2700 adjust = (sec->vma - voff) % align;
2701 }
2702 else
2703 adjust = 0;
2704
2705 if (adjust != 0)
2706 {
2707 if (i == 0)
2708 {
2709 (* _bfd_error_handler)
2710 (_("Error: First section in segment (%s) starts at 0x%x"),
2711 bfd_section_name (abfd, sec), sec->lma);
2712 (* _bfd_error_handler)
2713 (_(" whereas segment starts at 0x%x"),
2714 p->p_paddr);
2715
2716 return false;
2717 }
2718 p->p_memsz += adjust;
2719 off += adjust;
2720 voff += adjust;
2721 if ((flags & SEC_LOAD) != 0)
2722 p->p_filesz += adjust;
2723 }
2724
2725 sec->filepos = off;
2726
2727 /* We check SEC_HAS_CONTENTS here because if NOLOAD is
2728 used in a linker script we may have a section with
2729 SEC_LOAD clear but which is supposed to have
2730 contents. */
2731 if ((flags & SEC_LOAD) != 0
2732 || (flags & SEC_HAS_CONTENTS) != 0)
2733 off += sec->_raw_size;
2734
2735 if ((flags & SEC_ALLOC) != 0)
2736 voff += sec->_raw_size;
2737 }
2738
2739 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
2740 {
2741 if (i == 0) /* the actual "note" segment */
2742 { /* this one actually contains everything. */
2743 sec->filepos = off;
2744 p->p_filesz = sec->_raw_size;
2745 off += sec->_raw_size;
2746 voff = off;
2747 }
2748 else /* fake sections -- don't need to be written */
2749 {
2750 sec->filepos = 0;
2751 sec->_raw_size = 0;
2752 flags = sec->flags = 0; /* no contents */
2753 }
2754 p->p_memsz = 0;
2755 p->p_align = 1;
2756 }
2757 else
2758 {
2759 p->p_memsz += sec->_raw_size;
2760
2761 if ((flags & SEC_LOAD) != 0)
2762 p->p_filesz += sec->_raw_size;
2763
2764 if (align > p->p_align
2765 && (p->p_type != PT_LOAD || (abfd->flags & D_PAGED) == 0))
2766 p->p_align = align;
2767 }
2768
2769 if (! m->p_flags_valid)
2770 {
2771 p->p_flags |= PF_R;
2772 if ((flags & SEC_CODE) != 0)
2773 p->p_flags |= PF_X;
2774 if ((flags & SEC_READONLY) == 0)
2775 p->p_flags |= PF_W;
2776 }
2777 }
2778 }
2779
2780 /* Now that we have set the section file positions, we can set up
2781 the file positions for the non PT_LOAD segments. */
2782 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
2783 m != NULL;
2784 m = m->next, p++)
2785 {
2786 if (p->p_type != PT_LOAD && m->count > 0)
2787 {
2788 BFD_ASSERT (! m->includes_filehdr && ! m->includes_phdrs);
2789 p->p_offset = m->sections[0]->filepos;
2790 }
2791 if (m->count == 0)
2792 {
2793 if (m->includes_filehdr)
2794 {
2795 p->p_vaddr = filehdr_vaddr;
2796 if (! m->p_paddr_valid)
2797 p->p_paddr = filehdr_paddr;
2798 }
2799 else if (m->includes_phdrs)
2800 {
2801 p->p_vaddr = phdrs_vaddr;
2802 if (! m->p_paddr_valid)
2803 p->p_paddr = phdrs_paddr;
2804 }
2805 }
2806 }
2807
2808 /* Clear out any program headers we allocated but did not use. */
2809 for (; count < alloc; count++, p++)
2810 {
2811 memset (p, 0, sizeof *p);
2812 p->p_type = PT_NULL;
2813 }
2814
2815 elf_tdata (abfd)->phdr = phdrs;
2816
2817 elf_tdata (abfd)->next_file_pos = off;
2818
2819 /* Write out the program headers. */
2820 if (bfd_seek (abfd, bed->s->sizeof_ehdr, SEEK_SET) != 0
2821 || bed->s->write_out_phdrs (abfd, phdrs, alloc) != 0)
2822 return false;
2823
2824 return true;
2825}
2826
2827/* Get the size of the program header.
2828
2829 If this is called by the linker before any of the section VMA's are set, it
2830 can't calculate the correct value for a strange memory layout. This only
2831 happens when SIZEOF_HEADERS is used in a linker script. In this case,
2832 SORTED_HDRS is NULL and we assume the normal scenario of one text and one
2833 data segment (exclusive of .interp and .dynamic).
2834
2835 ??? User written scripts must either not use SIZEOF_HEADERS, or assume there
2836 will be two segments. */
2837
2838static bfd_size_type
2839get_program_header_size (abfd)
2840 bfd *abfd;
2841{
2842 size_t segs;
2843 asection *s;
2844 struct elf_backend_data *bed = get_elf_backend_data (abfd);
2845
2846 /* We can't return a different result each time we're called. */
2847 if (elf_tdata (abfd)->program_header_size != 0)
2848 return elf_tdata (abfd)->program_header_size;
2849
2850 if (elf_tdata (abfd)->segment_map != NULL)
2851 {
2852 struct elf_segment_map *m;
2853
2854 segs = 0;
2855 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
2856 ++segs;
2857 elf_tdata (abfd)->program_header_size = segs * bed->s->sizeof_phdr;
2858 return elf_tdata (abfd)->program_header_size;
2859 }
2860
2861 /* Assume we will need exactly two PT_LOAD segments: one for text
2862 and one for data. */
2863 segs = 2;
2864
2865 s = bfd_get_section_by_name (abfd, ".interp");
2866 if (s != NULL && (s->flags & SEC_LOAD) != 0)
2867 {
2868 /* If we have a loadable interpreter section, we need a
2869 PT_INTERP segment. In this case, assume we also need a
2870 PT_PHDR segment, although that may not be true for all
2871 targets. */
2872 segs += 2;
2873 }
2874
2875 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
2876 {
2877 /* We need a PT_DYNAMIC segment. */
2878 ++segs;
2879 }
2880
2881 for (s = abfd->sections; s != NULL; s = s->next)
2882 {
2883 if ((s->flags & SEC_LOAD) != 0
2884 && strncmp (s->name, ".note", 5) == 0)
2885 {
2886 /* We need a PT_NOTE segment. */
2887 ++segs;
2888 }
2889 }
2890
2891 /* Let the backend count up any program headers it might need. */
2892 if (bed->elf_backend_additional_program_headers)
2893 {
2894 int a;
2895
2896 a = (*bed->elf_backend_additional_program_headers) (abfd);
2897 if (a == -1)
2898 abort ();
2899 segs += a;
2900 }
2901
2902 elf_tdata (abfd)->program_header_size = segs * bed->s->sizeof_phdr;
2903 return elf_tdata (abfd)->program_header_size;
2904}
2905
2906/* Work out the file positions of all the sections. This is called by
2907 _bfd_elf_compute_section_file_positions. All the section sizes and
2908 VMAs must be known before this is called.
2909
2910 We do not consider reloc sections at this point, unless they form
2911 part of the loadable image. Reloc sections are assigned file
2912 positions in assign_file_positions_for_relocs, which is called by
2913 write_object_contents and final_link.
2914
2915 We also don't set the positions of the .symtab and .strtab here. */
2916
2917static boolean
2918assign_file_positions_except_relocs (abfd)
2919 bfd *abfd;
2920{
2921 struct elf_obj_tdata * const tdata = elf_tdata (abfd);
2922 Elf_Internal_Ehdr * const i_ehdrp = elf_elfheader (abfd);
2923 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
2924 file_ptr off;
2925 struct elf_backend_data *bed = get_elf_backend_data (abfd);
2926
2927 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
2928 && bfd_get_format (abfd) != bfd_core)
2929 {
2930 Elf_Internal_Shdr **hdrpp;
2931 unsigned int i;
2932
2933 /* Start after the ELF header. */
2934 off = i_ehdrp->e_ehsize;
2935
2936 /* We are not creating an executable, which means that we are
2937 not creating a program header, and that the actual order of
2938 the sections in the file is unimportant. */
2939 for (i = 1, hdrpp = i_shdrpp + 1; i < i_ehdrp->e_shnum; i++, hdrpp++)
2940 {
2941 Elf_Internal_Shdr *hdr;
2942
2943 hdr = *hdrpp;
2944 if (hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
2945 {
2946 hdr->sh_offset = -1;
2947 continue;
2948 }
2949 if (i == tdata->symtab_section
2950 || i == tdata->strtab_section)
2951 {
2952 hdr->sh_offset = -1;
2953 continue;
2954 }
2955
2956 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
2957 }
2958 }
2959 else
2960 {
2961 unsigned int i;
2962 Elf_Internal_Shdr **hdrpp;
2963
2964 /* Assign file positions for the loaded sections based on the
2965 assignment of sections to segments. */
2966 if (! assign_file_positions_for_segments (abfd))
2967 return false;
2968
2969 /* Assign file positions for the other sections. */
2970
2971 off = elf_tdata (abfd)->next_file_pos;
2972 for (i = 1, hdrpp = i_shdrpp + 1; i < i_ehdrp->e_shnum; i++, hdrpp++)
2973 {
2974 Elf_Internal_Shdr *hdr;
2975
2976 hdr = *hdrpp;
2977 if (hdr->bfd_section != NULL
2978 && hdr->bfd_section->filepos != 0)
2979 hdr->sh_offset = hdr->bfd_section->filepos;
2980 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
2981 {
2982 ((*_bfd_error_handler)
2983 (_("%s: warning: allocated section `%s' not in segment"),
2984 bfd_get_filename (abfd),
2985 (hdr->bfd_section == NULL
2986 ? "*unknown*"
2987 : hdr->bfd_section->name)));
2988 if ((abfd->flags & D_PAGED) != 0)
2989 off += (hdr->sh_addr - off) % bed->maxpagesize;
2990 else
2991 off += (hdr->sh_addr - off) % hdr->sh_addralign;
2992 off = _bfd_elf_assign_file_position_for_section (hdr, off,
2993 false);
2994 }
2995 else if (hdr->sh_type == SHT_REL
2996 || hdr->sh_type == SHT_RELA
2997 || hdr == i_shdrpp[tdata->symtab_section]
2998 || hdr == i_shdrpp[tdata->strtab_section])
2999 hdr->sh_offset = -1;
3000 else
3001 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
3002 }
3003 }
3004
3005 /* Place the section headers. */
3006 off = align_file_position (off, bed->s->file_align);
3007 i_ehdrp->e_shoff = off;
3008 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
3009
3010 elf_tdata (abfd)->next_file_pos = off;
3011
3012 return true;
3013}
3014
3015static boolean
3016prep_headers (abfd)
3017 bfd *abfd;
3018{
3019 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
3020 Elf_Internal_Phdr *i_phdrp = 0; /* Program header table, internal form */
3021 Elf_Internal_Shdr **i_shdrp; /* Section header table, internal form */
3022 int count;
3023 struct bfd_strtab_hash *shstrtab;
3024 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3025
3026 i_ehdrp = elf_elfheader (abfd);
3027 i_shdrp = elf_elfsections (abfd);
3028
3029 shstrtab = _bfd_elf_stringtab_init ();
3030 if (shstrtab == NULL)
3031 return false;
3032
3033 elf_shstrtab (abfd) = shstrtab;
3034
3035 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
3036 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
3037 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
3038 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
3039
3040 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
3041 i_ehdrp->e_ident[EI_DATA] =
3042 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
3043 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
3044
3045 for (count = EI_PAD; count < EI_NIDENT; count++)
3046 i_ehdrp->e_ident[count] = 0;
3047
3048 if ((abfd->flags & DYNAMIC) != 0)
3049 i_ehdrp->e_type = ET_DYN;
3050 else if ((abfd->flags & EXEC_P) != 0)
3051 i_ehdrp->e_type = ET_EXEC;
3052 else if (bfd_get_format (abfd) == bfd_core)
3053 i_ehdrp->e_type = ET_CORE;
3054 else
3055 i_ehdrp->e_type = ET_REL;
3056
3057 switch (bfd_get_arch (abfd))
3058 {
3059 case bfd_arch_unknown:
3060 i_ehdrp->e_machine = EM_NONE;
3061 break;
3062 case bfd_arch_sparc:
3063 if (bed->s->arch_size == 64)
3064 i_ehdrp->e_machine = EM_SPARCV9;
3065 else
3066 i_ehdrp->e_machine = EM_SPARC;
3067 break;
3068 case bfd_arch_i386:
3069 i_ehdrp->e_machine = EM_386;
3070 break;
3071 case bfd_arch_m68k:
3072 i_ehdrp->e_machine = EM_68K;
3073 break;
3074 case bfd_arch_m88k:
3075 i_ehdrp->e_machine = EM_88K;
3076 break;
3077 case bfd_arch_i860:
3078 i_ehdrp->e_machine = EM_860;
3079 break;
3080 case bfd_arch_mips: /* MIPS Rxxxx */
3081 i_ehdrp->e_machine = EM_MIPS; /* only MIPS R3000 */
3082 break;
3083 case bfd_arch_hppa:
3084 i_ehdrp->e_machine = EM_PARISC;
3085 break;
3086 case bfd_arch_powerpc:
3087 i_ehdrp->e_machine = EM_PPC;
3088 break;
3089 case bfd_arch_alpha:
3090 i_ehdrp->e_machine = EM_ALPHA;
3091 break;
3092 case bfd_arch_sh:
3093 i_ehdrp->e_machine = EM_SH;
3094 break;
3095 case bfd_arch_d10v:
3096 i_ehdrp->e_machine = EM_CYGNUS_D10V;
3097 break;
3098 case bfd_arch_d30v:
3099 i_ehdrp->e_machine = EM_CYGNUS_D30V;
3100 break;
3101 case bfd_arch_fr30:
3102 i_ehdrp->e_machine = EM_CYGNUS_FR30;
3103 break;
3104 case bfd_arch_mcore:
3105 i_ehdrp->e_machine = EM_MCORE;
3106 break;
3107 case bfd_arch_v850:
3108 switch (bfd_get_mach (abfd))
3109 {
3110 default:
3111 case 0: i_ehdrp->e_machine = EM_CYGNUS_V850; break;
3112 }
3113 break;
3114 case bfd_arch_arc:
3115 i_ehdrp->e_machine = EM_CYGNUS_ARC;
3116 break;
3117 case bfd_arch_arm:
3118 i_ehdrp->e_machine = EM_ARM;
3119 break;
3120 case bfd_arch_m32r:
3121 i_ehdrp->e_machine = EM_CYGNUS_M32R;
3122 break;
3123 case bfd_arch_mn10200:
3124 i_ehdrp->e_machine = EM_CYGNUS_MN10200;
3125 break;
3126 case bfd_arch_mn10300:
3127 i_ehdrp->e_machine = EM_CYGNUS_MN10300;
3128 break;
3129 /* also note that EM_M32, AT&T WE32100 is unknown to bfd */
3130 default:
3131 i_ehdrp->e_machine = EM_NONE;
3132 }
3133 i_ehdrp->e_version = bed->s->ev_current;
3134 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
3135
3136 /* no program header, for now. */
3137 i_ehdrp->e_phoff = 0;
3138 i_ehdrp->e_phentsize = 0;
3139 i_ehdrp->e_phnum = 0;
3140
3141 /* each bfd section is section header entry */
3142 i_ehdrp->e_entry = bfd_get_start_address (abfd);
3143 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
3144
3145 /* if we're building an executable, we'll need a program header table */
3146 if (abfd->flags & EXEC_P)
3147 {
3148 /* it all happens later */
3149#if 0
3150 i_ehdrp->e_phentsize = sizeof (Elf_External_Phdr);
3151
3152 /* elf_build_phdrs() returns a (NULL-terminated) array of
3153 Elf_Internal_Phdrs */
3154 i_phdrp = elf_build_phdrs (abfd, i_ehdrp, i_shdrp, &i_ehdrp->e_phnum);
3155 i_ehdrp->e_phoff = outbase;
3156 outbase += i_ehdrp->e_phentsize * i_ehdrp->e_phnum;
3157#endif
3158 }
3159 else
3160 {
3161 i_ehdrp->e_phentsize = 0;
3162 i_phdrp = 0;
3163 i_ehdrp->e_phoff = 0;
3164 }
3165
3166 elf_tdata (abfd)->symtab_hdr.sh_name =
3167 (unsigned int) _bfd_stringtab_add (shstrtab, ".symtab", true, false);
3168 elf_tdata (abfd)->strtab_hdr.sh_name =
3169 (unsigned int) _bfd_stringtab_add (shstrtab, ".strtab", true, false);
3170 elf_tdata (abfd)->shstrtab_hdr.sh_name =
3171 (unsigned int) _bfd_stringtab_add (shstrtab, ".shstrtab", true, false);
3172 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
3173 || elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
3174 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
3175 return false;
3176
3177 return true;
3178}
3179
3180/* Assign file positions for all the reloc sections which are not part
3181 of the loadable file image. */
3182
3183void
3184_bfd_elf_assign_file_positions_for_relocs (abfd)
3185 bfd *abfd;
3186{
3187 file_ptr off;
3188 unsigned int i;
3189 Elf_Internal_Shdr **shdrpp;
3190
3191 off = elf_tdata (abfd)->next_file_pos;
3192
3193 for (i = 1, shdrpp = elf_elfsections (abfd) + 1;
3194 i < elf_elfheader (abfd)->e_shnum;
3195 i++, shdrpp++)
3196 {
3197 Elf_Internal_Shdr *shdrp;
3198
3199 shdrp = *shdrpp;
3200 if ((shdrp->sh_type == SHT_REL || shdrp->sh_type == SHT_RELA)
3201 && shdrp->sh_offset == -1)
3202 off = _bfd_elf_assign_file_position_for_section (shdrp, off, true);
3203 }
3204
3205 elf_tdata (abfd)->next_file_pos = off;
3206}
3207
3208boolean
3209_bfd_elf_write_object_contents (abfd)
3210 bfd *abfd;
3211{
3212 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3213 Elf_Internal_Ehdr *i_ehdrp;
3214 Elf_Internal_Shdr **i_shdrp;
3215 boolean failed;
3216 unsigned int count;
3217
3218 if (! abfd->output_has_begun
3219 && ! _bfd_elf_compute_section_file_positions
3220 (abfd, (struct bfd_link_info *) NULL))
3221 return false;
3222
3223 i_shdrp = elf_elfsections (abfd);
3224 i_ehdrp = elf_elfheader (abfd);
3225
3226 failed = false;
3227 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
3228 if (failed)
3229 return false;
3230
3231 _bfd_elf_assign_file_positions_for_relocs (abfd);
3232
3233 /* After writing the headers, we need to write the sections too... */
3234 for (count = 1; count < i_ehdrp->e_shnum; count++)
3235 {
3236 if (bed->elf_backend_section_processing)
3237 (*bed->elf_backend_section_processing) (abfd, i_shdrp[count]);
3238 if (i_shdrp[count]->contents)
3239 {
3240 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
3241 || (bfd_write (i_shdrp[count]->contents, i_shdrp[count]->sh_size,
3242 1, abfd)
3243 != i_shdrp[count]->sh_size))
3244 return false;
3245 }
3246 }
3247
3248 /* Write out the section header names. */
3249 if (bfd_seek (abfd, elf_tdata (abfd)->shstrtab_hdr.sh_offset, SEEK_SET) != 0
3250 || ! _bfd_stringtab_emit (abfd, elf_shstrtab (abfd)))
3251 return false;
3252
3253 if (bed->elf_backend_final_write_processing)
3254 (*bed->elf_backend_final_write_processing) (abfd,
3255 elf_tdata (abfd)->linker);
3256
3257 return bed->s->write_shdrs_and_ehdr (abfd);
3258}
3259
3260boolean
3261_bfd_elf_write_corefile_contents (abfd)
3262 bfd *abfd;
3263{
3264 /* Hopefully this can be done just like an object file. */
3265 return _bfd_elf_write_object_contents (abfd);
3266}
3267/* given a section, search the header to find them... */
3268int
3269_bfd_elf_section_from_bfd_section (abfd, asect)
3270 bfd *abfd;
3271 struct sec *asect;
3272{
3273 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3274 Elf_Internal_Shdr **i_shdrp = elf_elfsections (abfd);
3275 int index;
3276 Elf_Internal_Shdr *hdr;
3277 int maxindex = elf_elfheader (abfd)->e_shnum;
3278
3279 for (index = 0; index < maxindex; index++)
3280 {
3281 hdr = i_shdrp[index];
3282 if (hdr->bfd_section == asect)
3283 return index;
3284 }
3285
3286 if (bed->elf_backend_section_from_bfd_section)
3287 {
3288 for (index = 0; index < maxindex; index++)
3289 {
3290 int retval;
3291
3292 hdr = i_shdrp[index];
3293 retval = index;
3294 if ((*bed->elf_backend_section_from_bfd_section)
3295 (abfd, hdr, asect, &retval))
3296 return retval;
3297 }
3298 }
3299
3300 if (bfd_is_abs_section (asect))
3301 return SHN_ABS;
3302 if (bfd_is_com_section (asect))
3303 return SHN_COMMON;
3304 if (bfd_is_und_section (asect))
3305 return SHN_UNDEF;
3306
3307 bfd_set_error (bfd_error_nonrepresentable_section);
3308
3309 return -1;
3310}
3311
3312/* Given a BFD symbol, return the index in the ELF symbol table, or -1
3313 on error. */
3314
3315int
3316_bfd_elf_symbol_from_bfd_symbol (abfd, asym_ptr_ptr)
3317 bfd *abfd;
3318 asymbol **asym_ptr_ptr;
3319{
3320 asymbol *asym_ptr = *asym_ptr_ptr;
3321 int idx;
3322 flagword flags = asym_ptr->flags;
3323
3324 /* When gas creates relocations against local labels, it creates its
3325 own symbol for the section, but does put the symbol into the
3326 symbol chain, so udata is 0. When the linker is generating
3327 relocatable output, this section symbol may be for one of the
3328 input sections rather than the output section. */
3329 if (asym_ptr->udata.i == 0
3330 && (flags & BSF_SECTION_SYM)
3331 && asym_ptr->section)
3332 {
3333 int indx;
3334
3335 if (asym_ptr->section->output_section != NULL)
3336 indx = asym_ptr->section->output_section->index;
3337 else
3338 indx = asym_ptr->section->index;
3339 if (elf_section_syms (abfd)[indx])
3340 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
3341 }
3342
3343 idx = asym_ptr->udata.i;
3344
3345 if (idx == 0)
3346 {
3347 /* This case can occur when using --strip-symbol on a symbol
3348 which is used in a relocation entry. */
3349 (*_bfd_error_handler)
3350 (_("%s: symbol `%s' required but not present"),
3351 bfd_get_filename (abfd), bfd_asymbol_name (asym_ptr));
3352 bfd_set_error (bfd_error_no_symbols);
3353 return -1;
3354 }
3355
3356#if DEBUG & 4
3357 {
3358 fprintf (stderr,
3359 _("elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n"),
3360 (long) asym_ptr, asym_ptr->name, idx, flags,
3361 elf_symbol_flags (flags));
3362 fflush (stderr);
3363 }
3364#endif
3365
3366 return idx;
3367}
3368
3369/* Copy private BFD data. This copies any program header information. */
3370
3371static boolean
3372copy_private_bfd_data (ibfd, obfd)
3373 bfd *ibfd;
3374 bfd *obfd;
3375{
3376 Elf_Internal_Ehdr *iehdr;
3377 struct elf_segment_map *mfirst;
3378 struct elf_segment_map **pm;
3379 struct elf_segment_map *m;
3380 Elf_Internal_Phdr *p;
3381 unsigned int i;
3382 unsigned int num_segments;
3383 boolean phdr_included = false;
3384
3385 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
3386 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
3387 return true;
3388
3389 if (elf_tdata (ibfd)->phdr == NULL)
3390 return true;
3391
3392 iehdr = elf_elfheader (ibfd);
3393
3394 mfirst = NULL;
3395 pm = &mfirst;
3396
3397 num_segments = elf_elfheader (ibfd)->e_phnum;
3398
3399#define IS_CONTAINED_BY(addr, len, bottom, phdr) \
3400 ((addr) >= (bottom) \
3401 && ( ((addr) + (len)) <= ((bottom) + (phdr)->p_memsz) \
3402 || ((addr) + (len)) <= ((bottom) + (phdr)->p_filesz)))
3403
3404 /* Special case: corefile "NOTE" section containing regs, prpsinfo etc. */
3405
3406#define IS_COREFILE_NOTE(p, s) \
3407 (p->p_type == PT_NOTE \
3408 && bfd_get_format (ibfd) == bfd_core \
3409 && s->vma == 0 && s->lma == 0 \
3410 && (bfd_vma) s->filepos >= p->p_offset \
3411 && (bfd_vma) s->filepos + s->_raw_size \
3412 <= p->p_offset + p->p_filesz)
3413
3414 /* The complicated case when p_vaddr is 0 is to handle the Solaris
3415 linker, which generates a PT_INTERP section with p_vaddr and
3416 p_memsz set to 0. */
3417
3418#define IS_SOLARIS_PT_INTERP(p, s) \
3419 (p->p_vaddr == 0 \
3420 && p->p_filesz > 0 \
3421 && (s->flags & SEC_HAS_CONTENTS) != 0 \
3422 && s->_raw_size > 0 \
3423 && (bfd_vma) s->filepos >= p->p_offset \
3424 && ((bfd_vma) s->filepos + s->_raw_size \
3425 <= p->p_offset + p->p_filesz))
3426
3427 /* Scan through the segments specified in the program header
3428 of the input BFD. */
3429 for (i = 0, p = elf_tdata (ibfd)->phdr; i < num_segments; i++, p++)
3430 {
3431 unsigned int csecs;
3432 asection *s;
3433 asection **sections;
3434 asection *os;
3435 unsigned int isec;
3436 bfd_vma matching_lma;
3437 bfd_vma suggested_lma;
3438 unsigned int j;
3439
3440 /* For each section in the input BFD, decide if it should be
3441 included in the current segment. A section will be included
3442 if it is within the address space of the segment, and it is
3443 an allocated segment, and there is an output section
3444 associated with it. */
3445 csecs = 0;
3446 for (s = ibfd->sections; s != NULL; s = s->next)
3447 if (s->output_section != NULL)
3448 {
3449 if ((IS_CONTAINED_BY (s->vma, s->_raw_size, p->p_vaddr, p)
3450 || IS_SOLARIS_PT_INTERP (p, s))
3451 && (s->flags & SEC_ALLOC) != 0)
3452 ++csecs;
3453 else if (IS_COREFILE_NOTE (p, s))
3454 ++csecs;
3455 }
3456
3457 /* Allocate a segment map big enough to contain all of the
3458 sections we have selected. */
3459 m = ((struct elf_segment_map *)
3460 bfd_alloc (obfd,
3461 (sizeof (struct elf_segment_map)
3462 + ((size_t) csecs - 1) * sizeof (asection *))));
3463 if (m == NULL)
3464 return false;
3465
3466 /* Initialise the fields of the segment map. Default to
3467 using the physical address of the segment in the input BFD. */
3468 m->next = NULL;
3469 m->p_type = p->p_type;
3470 m->p_flags = p->p_flags;
3471 m->p_flags_valid = 1;
3472 m->p_paddr = p->p_paddr;
3473 m->p_paddr_valid = 1;
3474
3475 /* Determine if this segment contains the ELF file header
3476 and if it contains the program headers themselves. */
3477 m->includes_filehdr = (p->p_offset == 0
3478 && p->p_filesz >= iehdr->e_ehsize);
3479
3480 m->includes_phdrs = 0;
3481
3482 if (! phdr_included || p->p_type != PT_LOAD)
3483 {
3484 m->includes_phdrs =
3485 (p->p_offset <= (bfd_vma) iehdr->e_phoff
3486 && (p->p_offset + p->p_filesz
3487 >= ((bfd_vma) iehdr->e_phoff
3488 + iehdr->e_phnum * iehdr->e_phentsize)));
3489 if (p->p_type == PT_LOAD && m->includes_phdrs)
3490 phdr_included = true;
3491 }
3492
3493 if (csecs == 0)
3494 {
3495 /* Special segments, such as the PT_PHDR segment, may contain
3496 no sections, but ordinary, loadable segments should contain
3497 something. */
3498
3499 if (p->p_type == PT_LOAD)
3500 _bfd_error_handler
3501 (_("%s: warning: Empty loadable segment detected\n"),
3502 bfd_get_filename (ibfd));
3503
3504 m->count = 0;
3505 *pm = m;
3506 pm = &m->next;
3507
3508 continue;
3509 }
3510
3511 /* Now scan the sections in the input BFD again and attempt
3512 to add their corresponding output sections to the segment map.
3513 The problem here is how to handle an output section which has
3514 been moved (ie had its LMA changed). There are four possibilities:
3515
3516 1. None of the sections have been moved.
3517 In this case we can continue to use the segment LMA from the
3518 input BFD.
3519
3520 2. All of the sections have been moved by the same amount.
3521 In this case we can change the segment's LMA to match the LMA
3522 of the first section.
3523
3524 3. Some of the sections have been moved, others have not.
3525 In this case those sections which have not been moved can be
3526 placed in the current segment which will have to have its size,
3527 and possibly its LMA changed, and a new segment or segments will
3528 have to be created to contain the other sections.
3529
3530 4. The sections have been moved, but not be the same amount.
3531 In this case we can change the segment's LMA to match the LMA
3532 of the first section and we will have to create a new segment
3533 or segments to contain the other sections.
3534
3535 In order to save time, we allocate an array to hold the section
3536 pointers that we are interested in. As these sections get assigned
3537 to a segment, they are removed from this array. */
3538
3539 sections = (asection **) bfd_malloc (sizeof (asection *) * csecs);
3540 if (sections == NULL)
3541 return false;
3542
3543 /* Step One: Scan for segment vs section LMA conflicts.
3544 Also add the sections to the section array allocated above.
3545 Also add the sections to the current segment. In the common
3546 case, where the sections have not been moved, this means that
3547 we have completely filled the segment, and there is nothing
3548 more to do. */
3549
3550 isec = 0;
3551 matching_lma = false;
3552 suggested_lma = 0;
3553
3554 for (j = 0, s = ibfd->sections; s != NULL; s = s->next)
3555 {
3556 os = s->output_section;
3557
3558 if ((((IS_CONTAINED_BY (s->vma, s->_raw_size, p->p_vaddr, p)
3559 || IS_SOLARIS_PT_INTERP (p, s))
3560 && (s->flags & SEC_ALLOC) != 0)
3561 || IS_COREFILE_NOTE (p, s))
3562 && os != NULL)
3563 {
3564 sections[j++] = s;
3565
3566 /* The Solaris native linker always sets p_paddr to 0.
3567 We try to catch that case here, and set it to the
3568 correct value. */
3569 if (p->p_paddr == 0
3570 && p->p_vaddr != 0
3571 && isec == 0
3572 && os->lma != 0
3573 && (os->vma == (p->p_vaddr
3574 + (m->includes_filehdr
3575 ? iehdr->e_ehsize
3576 : 0)
3577 + (m->includes_phdrs
3578 ? iehdr->e_phnum * iehdr->e_phentsize
3579 : 0))))
3580 m->p_paddr = p->p_vaddr;
3581
3582 /* Match up the physical address of the segment with the
3583 LMA address of the output section. */
3584 if (IS_CONTAINED_BY (os->lma, os->_raw_size, m->p_paddr, p)
3585 || IS_COREFILE_NOTE (p, s))
3586 {
3587 if (matching_lma == 0)
3588 matching_lma = os->lma;
3589
3590 /* We assume that if the section fits within the segment
3591 that it does not overlap any other section within that
3592 segment. */
3593 m->sections[isec++] = os;
3594 }
3595 else if (suggested_lma == 0)
3596 suggested_lma = os->lma;
3597 }
3598 }
3599
3600 BFD_ASSERT (j == csecs);
3601
3602 /* Step Two: Adjust the physical address of the current segment,
3603 if necessary. */
3604 if (isec == csecs)
3605 {
3606 /* All of the sections fitted within the segment as currently
3607 specified. This is the default case. Add the segment to
3608 the list of built segments and carry on to process the next
3609 program header in the input BFD. */
3610 m->count = csecs;
3611 *pm = m;
3612 pm = &m->next;
3613
3614 free (sections);
3615 continue;
3616 }
3617 else if (matching_lma != 0)
3618 {
3619 /* At least one section fits inside the current segment.
3620 Keep it, but modify its physical address to match the
3621 LMA of the first section that fitted. */
3622
3623 m->p_paddr = matching_lma;
3624 }
3625 else
3626 {
3627 /* None of the sections fitted inside the current segment.
3628 Change the current segment's physical address to match
3629 the LMA of the first section. */
3630
3631 m->p_paddr = suggested_lma;
3632 }
3633
3634 /* Step Three: Loop over the sections again, this time assigning
3635 those that fit to the current segment and remvoing them from the
3636 sections array; but making sure not to leave large gaps. Once all
3637 possible sections have been assigned to the current segment it is
3638 added to the list of built segments and if sections still remain
3639 to be assigned, a new segment is constructed before repeating
3640 the loop. */
3641 isec = 0;
3642 do
3643 {
3644 m->count = 0;
3645 suggested_lma = 0;
3646
3647 /* Fill the current segment with sections that fit. */
3648 for (j = 0; j < csecs; j++)
3649 {
3650 s = sections[j];
3651
3652 if (s == NULL)
3653 continue;
3654
3655 os = s->output_section;
3656
3657 if (IS_CONTAINED_BY (os->lma, os->_raw_size, m->p_paddr, p)
3658 || IS_COREFILE_NOTE (p, s))
3659 {
3660 if (m->count == 0)
3661 {
3662 /* If the first section in a segment does not start at
3663 the beginning of the segment, then something is wrong. */
3664 if (os->lma != m->p_paddr)
3665 abort ();
3666 }
3667 else
3668 {
3669 asection * prev_sec;
3670 bfd_vma maxpagesize;
3671
3672 prev_sec = m->sections[m->count - 1];
3673 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
3674
3675 /* If the gap between the end of the previous section
3676 and the start of this section is more than maxpagesize
3677 then we need to start a new segment. */
3678 if (BFD_ALIGN (prev_sec->lma + prev_sec->_raw_size, maxpagesize)
3679 < BFD_ALIGN (os->lma, maxpagesize))
3680 {
3681 if (suggested_lma == 0)
3682 suggested_lma = os->lma;
3683
3684 continue;
3685 }
3686 }
3687
3688 m->sections[m->count++] = os;
3689 ++isec;
3690 sections[j] = NULL;
3691 }
3692 else if (suggested_lma == 0)
3693 suggested_lma = os->lma;
3694 }
3695
3696 BFD_ASSERT (m->count > 0);
3697
3698 /* Add the current segment to the list of built segments. */
3699 *pm = m;
3700 pm = &m->next;
3701
3702 if (isec < csecs)
3703 {
3704 /* We still have not allocated all of the sections to
3705 segments. Create a new segment here, initialise it
3706 and carry on looping. */
3707
3708 m = ((struct elf_segment_map *)
3709 bfd_alloc (obfd,
3710 (sizeof (struct elf_segment_map)
3711 + ((size_t) csecs - 1) * sizeof (asection *))));
3712 if (m == NULL)
3713 return false;
3714
3715 /* Initialise the fields of the segment map. Set the physical
3716 physical address to the LMA of the first section that has
3717 not yet been assigned. */
3718
3719 m->next = NULL;
3720 m->p_type = p->p_type;
3721 m->p_flags = p->p_flags;
3722 m->p_flags_valid = 1;
3723 m->p_paddr = suggested_lma;
3724 m->p_paddr_valid = 1;
3725 m->includes_filehdr = 0;
3726 m->includes_phdrs = 0;
3727 }
3728 }
3729 while (isec < csecs);
3730
3731 free (sections);
3732 }
3733
3734 /* The Solaris linker creates program headers in which all the
3735 p_paddr fields are zero. When we try to objcopy or strip such a
3736 file, we get confused. Check for this case, and if we find it
3737 reset the p_paddr_valid fields. */
3738 for (m = mfirst; m != NULL; m = m->next)
3739 if (m->p_paddr != 0)
3740 break;
3741 if (m == NULL)
3742 {
3743 for (m = mfirst; m != NULL; m = m->next)
3744 m->p_paddr_valid = 0;
3745 }
3746
3747 elf_tdata (obfd)->segment_map = mfirst;
3748
3749#if 0
3750 /* Final Step: Sort the segments into ascending order of physical address. */
3751 if (mfirst != NULL)
3752 {
3753 struct elf_segment_map* prev;
3754
3755 prev = mfirst;
3756 for (m = mfirst->next; m != NULL; prev = m, m = m->next)
3757 {
3758 /* Yes I know - its a bubble sort....*/
3759 if (m->next != NULL && (m->next->p_paddr < m->p_paddr))
3760 {
3761 /* swap m and m->next */
3762 prev->next = m->next;
3763 m->next = m->next->next;
3764 prev->next->next = m;
3765
3766 /* restart loop. */
3767 m = mfirst;
3768 }
3769 }
3770 }
3771#endif
3772
3773#undef IS_CONTAINED_BY
3774#undef IS_SOLARIS_PT_INTERP
3775#undef IS_COREFILE_NOTE
3776 return true;
3777}
3778
3779/* Copy private section information. This copies over the entsize
3780 field, and sometimes the info field. */
3781
3782boolean
3783_bfd_elf_copy_private_section_data (ibfd, isec, obfd, osec)
3784 bfd *ibfd;
3785 asection *isec;
3786 bfd *obfd;
3787 asection *osec;
3788{
3789 Elf_Internal_Shdr *ihdr, *ohdr;
3790
3791 if (ibfd->xvec->flavour != bfd_target_elf_flavour
3792 || obfd->xvec->flavour != bfd_target_elf_flavour)
3793 return true;
3794
3795 /* Copy over private BFD data if it has not already been copied.
3796 This must be done here, rather than in the copy_private_bfd_data
3797 entry point, because the latter is called after the section
3798 contents have been set, which means that the program headers have
3799 already been worked out. */
3800 if (elf_tdata (obfd)->segment_map == NULL
3801 && elf_tdata (ibfd)->phdr != NULL)
3802 {
3803 asection *s;
3804
3805 /* Only set up the segments if there are no more SEC_ALLOC
3806 sections. FIXME: This won't do the right thing if objcopy is
3807 used to remove the last SEC_ALLOC section, since objcopy
3808 won't call this routine in that case. */
3809 for (s = isec->next; s != NULL; s = s->next)
3810 if ((s->flags & SEC_ALLOC) != 0)
3811 break;
3812 if (s == NULL)
3813 {
3814 if (! copy_private_bfd_data (ibfd, obfd))
3815 return false;
3816 }
3817 }
3818
3819 ihdr = &elf_section_data (isec)->this_hdr;
3820 ohdr = &elf_section_data (osec)->this_hdr;
3821
3822 ohdr->sh_entsize = ihdr->sh_entsize;
3823
3824 if (ihdr->sh_type == SHT_SYMTAB
3825 || ihdr->sh_type == SHT_DYNSYM
3826 || ihdr->sh_type == SHT_GNU_verneed
3827 || ihdr->sh_type == SHT_GNU_verdef)
3828 ohdr->sh_info = ihdr->sh_info;
3829
3830 return true;
3831}
3832
3833/* Copy private symbol information. If this symbol is in a section
3834 which we did not map into a BFD section, try to map the section
3835 index correctly. We use special macro definitions for the mapped
3836 section indices; these definitions are interpreted by the
3837 swap_out_syms function. */
3838
3839#define MAP_ONESYMTAB (SHN_LORESERVE - 1)
3840#define MAP_DYNSYMTAB (SHN_LORESERVE - 2)
3841#define MAP_STRTAB (SHN_LORESERVE - 3)
3842#define MAP_SHSTRTAB (SHN_LORESERVE - 4)
3843
3844boolean
3845_bfd_elf_copy_private_symbol_data (ibfd, isymarg, obfd, osymarg)
3846 bfd *ibfd;
3847 asymbol *isymarg;
3848 bfd *obfd;
3849 asymbol *osymarg;
3850{
3851 elf_symbol_type *isym, *osym;
3852
3853 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
3854 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
3855 return true;
3856
3857 isym = elf_symbol_from (ibfd, isymarg);
3858 osym = elf_symbol_from (obfd, osymarg);
3859
3860 if (isym != NULL
3861 && osym != NULL
3862 && bfd_is_abs_section (isym->symbol.section))
3863 {
3864 unsigned int shndx;
3865
3866 shndx = isym->internal_elf_sym.st_shndx;
3867 if (shndx == elf_onesymtab (ibfd))
3868 shndx = MAP_ONESYMTAB;
3869 else if (shndx == elf_dynsymtab (ibfd))
3870 shndx = MAP_DYNSYMTAB;
3871 else if (shndx == elf_tdata (ibfd)->strtab_section)
3872 shndx = MAP_STRTAB;
3873 else if (shndx == elf_tdata (ibfd)->shstrtab_section)
3874 shndx = MAP_SHSTRTAB;
3875 osym->internal_elf_sym.st_shndx = shndx;
3876 }
3877
3878 return true;
3879}
3880
3881/* Swap out the symbols. */
3882
3883static boolean
3884swap_out_syms (abfd, sttp, relocatable_p)
3885 bfd *abfd;
3886 struct bfd_strtab_hash **sttp;
3887 int relocatable_p;
3888{
3889 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3890
3891 if (!elf_map_symbols (abfd))
3892 return false;
3893
3894 /* Dump out the symtabs. */
3895 {
3896 int symcount = bfd_get_symcount (abfd);
3897 asymbol **syms = bfd_get_outsymbols (abfd);
3898 struct bfd_strtab_hash *stt;
3899 Elf_Internal_Shdr *symtab_hdr;
3900 Elf_Internal_Shdr *symstrtab_hdr;
3901 char *outbound_syms;
3902 int idx;
3903
3904 stt = _bfd_elf_stringtab_init ();
3905 if (stt == NULL)
3906 return false;
3907
3908 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3909 symtab_hdr->sh_type = SHT_SYMTAB;
3910 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
3911 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
3912 symtab_hdr->sh_info = elf_num_locals (abfd) + 1;
3913 symtab_hdr->sh_addralign = bed->s->file_align;
3914
3915 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
3916 symstrtab_hdr->sh_type = SHT_STRTAB;
3917
3918 outbound_syms = bfd_alloc (abfd,
3919 (1 + symcount) * bed->s->sizeof_sym);
3920 if (outbound_syms == NULL)
3921 return false;
3922 symtab_hdr->contents = (PTR) outbound_syms;
3923
3924 /* now generate the data (for "contents") */
3925 {
3926 /* Fill in zeroth symbol and swap it out. */
3927 Elf_Internal_Sym sym;
3928 sym.st_name = 0;
3929 sym.st_value = 0;
3930 sym.st_size = 0;
3931 sym.st_info = 0;
3932 sym.st_other = 0;
3933 sym.st_shndx = SHN_UNDEF;
3934 bed->s->swap_symbol_out (abfd, &sym, (PTR) outbound_syms);
3935 outbound_syms += bed->s->sizeof_sym;
3936 }
3937 for (idx = 0; idx < symcount; idx++)
3938 {
3939 Elf_Internal_Sym sym;
3940 bfd_vma value = syms[idx]->value;
3941 elf_symbol_type *type_ptr;
3942 flagword flags = syms[idx]->flags;
3943 int type;
3944
3945 if (flags & BSF_SECTION_SYM)
3946 /* Section symbols have no names. */
3947 sym.st_name = 0;
3948 else
3949 {
3950 sym.st_name = (unsigned long) _bfd_stringtab_add (stt,
3951 syms[idx]->name,
3952 true, false);
3953 if (sym.st_name == (unsigned long) -1)
3954 return false;
3955 }
3956
3957 type_ptr = elf_symbol_from (abfd, syms[idx]);
3958
3959 if ((flags & BSF_SECTION_SYM) == 0
3960 && bfd_is_com_section (syms[idx]->section))
3961 {
3962 /* ELF common symbols put the alignment into the `value' field,
3963 and the size into the `size' field. This is backwards from
3964 how BFD handles it, so reverse it here. */
3965 sym.st_size = value;
3966 if (type_ptr == NULL
3967 || type_ptr->internal_elf_sym.st_value == 0)
3968 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
3969 else
3970 sym.st_value = type_ptr->internal_elf_sym.st_value;
3971 sym.st_shndx = _bfd_elf_section_from_bfd_section
3972 (abfd, syms[idx]->section);
3973 }
3974 else
3975 {
3976 asection *sec = syms[idx]->section;
3977 int shndx;
3978
3979 if (sec->output_section)
3980 {
3981 value += sec->output_offset;
3982 sec = sec->output_section;
3983 }
3984 /* Don't add in the section vma for relocatable output. */
3985 if (! relocatable_p)
3986 value += sec->vma;
3987 sym.st_value = value;
3988 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
3989
3990 if (bfd_is_abs_section (sec)
3991 && type_ptr != NULL
3992 && type_ptr->internal_elf_sym.st_shndx != 0)
3993 {
3994 /* This symbol is in a real ELF section which we did
3995 not create as a BFD section. Undo the mapping done
3996 by copy_private_symbol_data. */
3997 shndx = type_ptr->internal_elf_sym.st_shndx;
3998 switch (shndx)
3999 {
4000 case MAP_ONESYMTAB:
4001 shndx = elf_onesymtab (abfd);
4002 break;
4003 case MAP_DYNSYMTAB:
4004 shndx = elf_dynsymtab (abfd);
4005 break;
4006 case MAP_STRTAB:
4007 shndx = elf_tdata (abfd)->strtab_section;
4008 break;
4009 case MAP_SHSTRTAB:
4010 shndx = elf_tdata (abfd)->shstrtab_section;
4011 break;
4012 default:
4013 break;
4014 }
4015 }
4016 else
4017 {
4018 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
4019
4020 if (shndx == -1)
4021 {
4022 asection *sec2;
4023
4024 /* Writing this would be a hell of a lot easier if
4025 we had some decent documentation on bfd, and
4026 knew what to expect of the library, and what to
4027 demand of applications. For example, it
4028 appears that `objcopy' might not set the
4029 section of a symbol to be a section that is
4030 actually in the output file. */
4031 sec2 = bfd_get_section_by_name (abfd, sec->name);
4032 BFD_ASSERT (sec2 != 0);
4033 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
4034 BFD_ASSERT (shndx != -1);
4035 }
4036 }
4037
4038 sym.st_shndx = shndx;
4039 }
4040
4041 if ((flags & BSF_FUNCTION) != 0)
4042 type = STT_FUNC;
4043 else if ((flags & BSF_OBJECT) != 0)
4044 type = STT_OBJECT;
4045 else
4046 type = STT_NOTYPE;
4047
4048 /* Processor-specific types */
4049 if (bed->elf_backend_get_symbol_type)
4050 type = (*bed->elf_backend_get_symbol_type) (&type_ptr->internal_elf_sym, type);
4051
4052 if (flags & BSF_SECTION_SYM)
4053 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
4054 else if (bfd_is_com_section (syms[idx]->section))
4055 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
4056 else if (bfd_is_und_section (syms[idx]->section))
4057 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
4058 ? STB_WEAK
4059 : STB_GLOBAL),
4060 type);
4061 else if (flags & BSF_FILE)
4062 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
4063 else
4064 {
4065 int bind = STB_LOCAL;
4066
4067 if (flags & BSF_LOCAL)
4068 bind = STB_LOCAL;
4069 else if (flags & BSF_WEAK)
4070 bind = STB_WEAK;
4071 else if (flags & BSF_GLOBAL)
4072 bind = STB_GLOBAL;
4073
4074 sym.st_info = ELF_ST_INFO (bind, type);
4075 }
4076
4077 if (type_ptr != NULL)
4078 sym.st_other = type_ptr->internal_elf_sym.st_other;
4079 else
4080 sym.st_other = 0;
4081
4082 bed->s->swap_symbol_out (abfd, &sym, (PTR) outbound_syms);
4083 outbound_syms += bed->s->sizeof_sym;
4084 }
4085
4086 *sttp = stt;
4087 symstrtab_hdr->sh_size = _bfd_stringtab_size (stt);
4088 symstrtab_hdr->sh_type = SHT_STRTAB;
4089
4090 symstrtab_hdr->sh_flags = 0;
4091 symstrtab_hdr->sh_addr = 0;
4092 symstrtab_hdr->sh_entsize = 0;
4093 symstrtab_hdr->sh_link = 0;
4094 symstrtab_hdr->sh_info = 0;
4095 symstrtab_hdr->sh_addralign = 1;
4096 }
4097
4098 return true;
4099}
4100
4101/* Return the number of bytes required to hold the symtab vector.
4102
4103 Note that we base it on the count plus 1, since we will null terminate
4104 the vector allocated based on this size. However, the ELF symbol table
4105 always has a dummy entry as symbol #0, so it ends up even. */
4106
4107long
4108_bfd_elf_get_symtab_upper_bound (abfd)
4109 bfd *abfd;
4110{
4111 long symcount;
4112 long symtab_size;
4113 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
4114
4115 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
4116 symtab_size = (symcount - 1 + 1) * (sizeof (asymbol *));
4117
4118 return symtab_size;
4119}
4120
4121long
4122_bfd_elf_get_dynamic_symtab_upper_bound (abfd)
4123 bfd *abfd;
4124{
4125 long symcount;
4126 long symtab_size;
4127 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
4128
4129 if (elf_dynsymtab (abfd) == 0)
4130 {
4131 bfd_set_error (bfd_error_invalid_operation);
4132 return -1;
4133 }
4134
4135 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
4136 symtab_size = (symcount - 1 + 1) * (sizeof (asymbol *));
4137
4138 return symtab_size;
4139}
4140
4141long
4142_bfd_elf_get_reloc_upper_bound (abfd, asect)
4143 bfd *abfd;
4144 sec_ptr asect;
4145{
4146 return (asect->reloc_count + 1) * sizeof (arelent *);
4147}
4148
4149/* Canonicalize the relocs. */
4150
4151long
4152_bfd_elf_canonicalize_reloc (abfd, section, relptr, symbols)
4153 bfd *abfd;
4154 sec_ptr section;
4155 arelent **relptr;
4156 asymbol **symbols;
4157{
4158 arelent *tblptr;
4159 unsigned int i;
4160
4161 if (! get_elf_backend_data (abfd)->s->slurp_reloc_table (abfd,
4162 section,
4163 symbols,
4164 false))
4165 return -1;
4166
4167 tblptr = section->relocation;
4168 for (i = 0; i < section->reloc_count; i++)
4169 *relptr++ = tblptr++;
4170
4171 *relptr = NULL;
4172
4173 return section->reloc_count;
4174}
4175
4176long
4177_bfd_elf_get_symtab (abfd, alocation)
4178 bfd *abfd;
4179 asymbol **alocation;
4180{
4181 long symcount = get_elf_backend_data (abfd)->s->slurp_symbol_table
4182 (abfd, alocation, false);
4183
4184 if (symcount >= 0)
4185 bfd_get_symcount (abfd) = symcount;
4186 return symcount;
4187}
4188
4189long
4190_bfd_elf_canonicalize_dynamic_symtab (abfd, alocation)
4191 bfd *abfd;
4192 asymbol **alocation;
4193{
4194 return get_elf_backend_data (abfd)->s->slurp_symbol_table
4195 (abfd, alocation, true);
4196}
4197
4198/* Return the size required for the dynamic reloc entries. Any
4199 section that was actually installed in the BFD, and has type
4200 SHT_REL or SHT_RELA, and uses the dynamic symbol table, is
4201 considered to be a dynamic reloc section. */
4202
4203long
4204_bfd_elf_get_dynamic_reloc_upper_bound (abfd)
4205 bfd *abfd;
4206{
4207 long ret;
4208 asection *s;
4209
4210 if (elf_dynsymtab (abfd) == 0)
4211 {
4212 bfd_set_error (bfd_error_invalid_operation);
4213 return -1;
4214 }
4215
4216 ret = sizeof (arelent *);
4217 for (s = abfd->sections; s != NULL; s = s->next)
4218 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
4219 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
4220 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
4221 ret += ((s->_raw_size / elf_section_data (s)->this_hdr.sh_entsize)
4222 * sizeof (arelent *));
4223
4224 return ret;
4225}
4226
4227/* Canonicalize the dynamic relocation entries. Note that we return
4228 the dynamic relocations as a single block, although they are
4229 actually associated with particular sections; the interface, which
4230 was designed for SunOS style shared libraries, expects that there
4231 is only one set of dynamic relocs. Any section that was actually
4232 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses
4233 the dynamic symbol table, is considered to be a dynamic reloc
4234 section. */
4235
4236long
4237_bfd_elf_canonicalize_dynamic_reloc (abfd, storage, syms)
4238 bfd *abfd;
4239 arelent **storage;
4240 asymbol **syms;
4241{
4242 boolean (*slurp_relocs) PARAMS ((bfd *, asection *, asymbol **, boolean));
4243 asection *s;
4244 long ret;
4245
4246 if (elf_dynsymtab (abfd) == 0)
4247 {
4248 bfd_set_error (bfd_error_invalid_operation);
4249 return -1;
4250 }
4251
4252 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
4253 ret = 0;
4254 for (s = abfd->sections; s != NULL; s = s->next)
4255 {
4256 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
4257 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
4258 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
4259 {
4260 arelent *p;
4261 long count, i;
4262
4263 if (! (*slurp_relocs) (abfd, s, syms, true))
4264 return -1;
4265 count = s->_raw_size / elf_section_data (s)->this_hdr.sh_entsize;
4266 p = s->relocation;
4267 for (i = 0; i < count; i++)
4268 *storage++ = p++;
4269 ret += count;
4270 }
4271 }
4272
4273 *storage = NULL;
4274
4275 return ret;
4276}
4277\f
4278/* Read in the version information. */
4279
4280boolean
4281_bfd_elf_slurp_version_tables (abfd)
4282 bfd *abfd;
4283{
4284 bfd_byte *contents = NULL;
4285
4286 if (elf_dynverdef (abfd) != 0)
4287 {
4288 Elf_Internal_Shdr *hdr;
4289 Elf_External_Verdef *everdef;
4290 Elf_Internal_Verdef *iverdef;
4291 unsigned int i;
4292
4293 hdr = &elf_tdata (abfd)->dynverdef_hdr;
4294
4295 elf_tdata (abfd)->verdef =
4296 ((Elf_Internal_Verdef *)
4297 bfd_zalloc (abfd, hdr->sh_info * sizeof (Elf_Internal_Verdef)));
4298 if (elf_tdata (abfd)->verdef == NULL)
4299 goto error_return;
4300
4301 elf_tdata (abfd)->cverdefs = hdr->sh_info;
4302
4303 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
4304 if (contents == NULL)
4305 goto error_return;
4306 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4307 || bfd_read ((PTR) contents, 1, hdr->sh_size, abfd) != hdr->sh_size)
4308 goto error_return;
4309
4310 everdef = (Elf_External_Verdef *) contents;
4311 iverdef = elf_tdata (abfd)->verdef;
4312 for (i = 0; i < hdr->sh_info; i++, iverdef++)
4313 {
4314 Elf_External_Verdaux *everdaux;
4315 Elf_Internal_Verdaux *iverdaux;
4316 unsigned int j;
4317
4318 _bfd_elf_swap_verdef_in (abfd, everdef, iverdef);
4319
4320 iverdef->vd_bfd = abfd;
4321
4322 iverdef->vd_auxptr = ((Elf_Internal_Verdaux *)
4323 bfd_alloc (abfd,
4324 (iverdef->vd_cnt
4325 * sizeof (Elf_Internal_Verdaux))));
4326 if (iverdef->vd_auxptr == NULL)
4327 goto error_return;
4328
4329 everdaux = ((Elf_External_Verdaux *)
4330 ((bfd_byte *) everdef + iverdef->vd_aux));
4331 iverdaux = iverdef->vd_auxptr;
4332 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
4333 {
4334 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
4335
4336 iverdaux->vda_nodename =
4337 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4338 iverdaux->vda_name);
4339 if (iverdaux->vda_nodename == NULL)
4340 goto error_return;
4341
4342 if (j + 1 < iverdef->vd_cnt)
4343 iverdaux->vda_nextptr = iverdaux + 1;
4344 else
4345 iverdaux->vda_nextptr = NULL;
4346
4347 everdaux = ((Elf_External_Verdaux *)
4348 ((bfd_byte *) everdaux + iverdaux->vda_next));
4349 }
4350
4351 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
4352
4353 if (i + 1 < hdr->sh_info)
4354 iverdef->vd_nextdef = iverdef + 1;
4355 else
4356 iverdef->vd_nextdef = NULL;
4357
4358 everdef = ((Elf_External_Verdef *)
4359 ((bfd_byte *) everdef + iverdef->vd_next));
4360 }
4361
4362 free (contents);
4363 contents = NULL;
4364 }
4365
4366 if (elf_dynverref (abfd) != 0)
4367 {
4368 Elf_Internal_Shdr *hdr;
4369 Elf_External_Verneed *everneed;
4370 Elf_Internal_Verneed *iverneed;
4371 unsigned int i;
4372
4373 hdr = &elf_tdata (abfd)->dynverref_hdr;
4374
4375 elf_tdata (abfd)->verref =
4376 ((Elf_Internal_Verneed *)
4377 bfd_zalloc (abfd, hdr->sh_info * sizeof (Elf_Internal_Verneed)));
4378 if (elf_tdata (abfd)->verref == NULL)
4379 goto error_return;
4380
4381 elf_tdata (abfd)->cverrefs = hdr->sh_info;
4382
4383 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
4384 if (contents == NULL)
4385 goto error_return;
4386 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4387 || bfd_read ((PTR) contents, 1, hdr->sh_size, abfd) != hdr->sh_size)
4388 goto error_return;
4389
4390 everneed = (Elf_External_Verneed *) contents;
4391 iverneed = elf_tdata (abfd)->verref;
4392 for (i = 0; i < hdr->sh_info; i++, iverneed++)
4393 {
4394 Elf_External_Vernaux *evernaux;
4395 Elf_Internal_Vernaux *ivernaux;
4396 unsigned int j;
4397
4398 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
4399
4400 iverneed->vn_bfd = abfd;
4401
4402 iverneed->vn_filename =
4403 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4404 iverneed->vn_file);
4405 if (iverneed->vn_filename == NULL)
4406 goto error_return;
4407
4408 iverneed->vn_auxptr =
4409 ((Elf_Internal_Vernaux *)
4410 bfd_alloc (abfd,
4411 iverneed->vn_cnt * sizeof (Elf_Internal_Vernaux)));
4412
4413 evernaux = ((Elf_External_Vernaux *)
4414 ((bfd_byte *) everneed + iverneed->vn_aux));
4415 ivernaux = iverneed->vn_auxptr;
4416 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
4417 {
4418 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
4419
4420 ivernaux->vna_nodename =
4421 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4422 ivernaux->vna_name);
4423 if (ivernaux->vna_nodename == NULL)
4424 goto error_return;
4425
4426 if (j + 1 < iverneed->vn_cnt)
4427 ivernaux->vna_nextptr = ivernaux + 1;
4428 else
4429 ivernaux->vna_nextptr = NULL;
4430
4431 evernaux = ((Elf_External_Vernaux *)
4432 ((bfd_byte *) evernaux + ivernaux->vna_next));
4433 }
4434
4435 if (i + 1 < hdr->sh_info)
4436 iverneed->vn_nextref = iverneed + 1;
4437 else
4438 iverneed->vn_nextref = NULL;
4439
4440 everneed = ((Elf_External_Verneed *)
4441 ((bfd_byte *) everneed + iverneed->vn_next));
4442 }
4443
4444 free (contents);
4445 contents = NULL;
4446 }
4447
4448 return true;
4449
4450 error_return:
4451 if (contents == NULL)
4452 free (contents);
4453 return false;
4454}
4455\f
4456asymbol *
4457_bfd_elf_make_empty_symbol (abfd)
4458 bfd *abfd;
4459{
4460 elf_symbol_type *newsym;
4461
4462 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (elf_symbol_type));
4463 if (!newsym)
4464 return NULL;
4465 else
4466 {
4467 newsym->symbol.the_bfd = abfd;
4468 return &newsym->symbol;
4469 }
4470}
4471
4472void
4473_bfd_elf_get_symbol_info (ignore_abfd, symbol, ret)
4474 bfd *ignore_abfd;
4475 asymbol *symbol;
4476 symbol_info *ret;
4477{
4478 bfd_symbol_info (symbol, ret);
4479}
4480
4481/* Return whether a symbol name implies a local symbol. Most targets
4482 use this function for the is_local_label_name entry point, but some
4483 override it. */
4484
4485boolean
4486_bfd_elf_is_local_label_name (abfd, name)
4487 bfd *abfd;
4488 const char *name;
4489{
4490 /* Normal local symbols start with ``.L''. */
4491 if (name[0] == '.' && name[1] == 'L')
4492 return true;
4493
4494 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
4495 DWARF debugging symbols starting with ``..''. */
4496 if (name[0] == '.' && name[1] == '.')
4497 return true;
4498
4499 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
4500 emitting DWARF debugging output. I suspect this is actually a
4501 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
4502 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
4503 underscore to be emitted on some ELF targets). For ease of use,
4504 we treat such symbols as local. */
4505 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
4506 return true;
4507
4508 return false;
4509}
4510
4511alent *
4512_bfd_elf_get_lineno (ignore_abfd, symbol)
4513 bfd *ignore_abfd;
4514 asymbol *symbol;
4515{
4516 abort ();
4517 return NULL;
4518}
4519
4520boolean
4521_bfd_elf_set_arch_mach (abfd, arch, machine)
4522 bfd *abfd;
4523 enum bfd_architecture arch;
4524 unsigned long machine;
4525{
4526 /* If this isn't the right architecture for this backend, and this
4527 isn't the generic backend, fail. */
4528 if (arch != get_elf_backend_data (abfd)->arch
4529 && arch != bfd_arch_unknown
4530 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
4531 return false;
4532
4533 return bfd_default_set_arch_mach (abfd, arch, machine);
4534}
4535
4536/* Find the nearest line to a particular section and offset, for error
4537 reporting. */
4538
4539boolean
4540_bfd_elf_find_nearest_line (abfd,
4541 section,
4542 symbols,
4543 offset,
4544 filename_ptr,
4545 functionname_ptr,
4546 line_ptr)
4547 bfd *abfd;
4548 asection *section;
4549 asymbol **symbols;
4550 bfd_vma offset;
4551 CONST char **filename_ptr;
4552 CONST char **functionname_ptr;
4553 unsigned int *line_ptr;
4554{
4555 boolean found;
4556 const char *filename;
4557 asymbol *func;
4558 bfd_vma low_func;
4559 asymbol **p;
4560
4561 if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
4562 filename_ptr, functionname_ptr,
4563 line_ptr))
4564 return true;
4565
4566 if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
4567 filename_ptr, functionname_ptr,
4568 line_ptr))
4569 return true;
4570
4571 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
4572 &found, filename_ptr,
4573 functionname_ptr, line_ptr,
4574 &elf_tdata (abfd)->line_info))
4575 return false;
4576 if (found)
4577 return true;
4578
4579 if (symbols == NULL)
4580 return false;
4581
4582 filename = NULL;
4583 func = NULL;
4584 low_func = 0;
4585
4586 for (p = symbols; *p != NULL; p++)
4587 {
4588 elf_symbol_type *q;
4589
4590 q = (elf_symbol_type *) *p;
4591
4592 if (bfd_get_section (&q->symbol) != section)
4593 continue;
4594
4595 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
4596 {
4597 default:
4598 break;
4599 case STT_FILE:
4600 filename = bfd_asymbol_name (&q->symbol);
4601 break;
4602 case STT_NOTYPE:
4603 case STT_FUNC:
4604 if (q->symbol.section == section
4605 && q->symbol.value >= low_func
4606 && q->symbol.value <= offset)
4607 {
4608 func = (asymbol *) q;
4609 low_func = q->symbol.value;
4610 }
4611 break;
4612 }
4613 }
4614
4615 if (func == NULL)
4616 return false;
4617
4618 *filename_ptr = filename;
4619 *functionname_ptr = bfd_asymbol_name (func);
4620 *line_ptr = 0;
4621 return true;
4622}
4623
4624int
4625_bfd_elf_sizeof_headers (abfd, reloc)
4626 bfd *abfd;
4627 boolean reloc;
4628{
4629 int ret;
4630
4631 ret = get_elf_backend_data (abfd)->s->sizeof_ehdr;
4632 if (! reloc)
4633 ret += get_program_header_size (abfd);
4634 return ret;
4635}
4636
4637boolean
4638_bfd_elf_set_section_contents (abfd, section, location, offset, count)
4639 bfd *abfd;
4640 sec_ptr section;
4641 PTR location;
4642 file_ptr offset;
4643 bfd_size_type count;
4644{
4645 Elf_Internal_Shdr *hdr;
4646
4647 if (! abfd->output_has_begun
4648 && ! _bfd_elf_compute_section_file_positions
4649 (abfd, (struct bfd_link_info *) NULL))
4650 return false;
4651
4652 hdr = &elf_section_data (section)->this_hdr;
4653
4654 if (bfd_seek (abfd, hdr->sh_offset + offset, SEEK_SET) == -1)
4655 return false;
4656 if (bfd_write (location, 1, count, abfd) != count)
4657 return false;
4658
4659 return true;
4660}
4661
4662void
4663_bfd_elf_no_info_to_howto (abfd, cache_ptr, dst)
4664 bfd *abfd;
4665 arelent *cache_ptr;
4666 Elf_Internal_Rela *dst;
4667{
4668 abort ();
4669}
4670
4671#if 0
4672void
4673_bfd_elf_no_info_to_howto_rel (abfd, cache_ptr, dst)
4674 bfd *abfd;
4675 arelent *cache_ptr;
4676 Elf_Internal_Rel *dst;
4677{
4678 abort ();
4679}
4680#endif
4681
4682/* Try to convert a non-ELF reloc into an ELF one. */
4683
4684boolean
4685_bfd_elf_validate_reloc (abfd, areloc)
4686 bfd *abfd;
4687 arelent *areloc;
4688{
4689 /* Check whether we really have an ELF howto. */
4690
4691 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
4692 {
4693 bfd_reloc_code_real_type code;
4694 reloc_howto_type *howto;
4695
4696 /* Alien reloc: Try to determine its type to replace it with an
4697 equivalent ELF reloc. */
4698
4699 if (areloc->howto->pc_relative)
4700 {
4701 switch (areloc->howto->bitsize)
4702 {
4703 case 8:
4704 code = BFD_RELOC_8_PCREL;
4705 break;
4706 case 12:
4707 code = BFD_RELOC_12_PCREL;
4708 break;
4709 case 16:
4710 code = BFD_RELOC_16_PCREL;
4711 break;
4712 case 24:
4713 code = BFD_RELOC_24_PCREL;
4714 break;
4715 case 32:
4716 code = BFD_RELOC_32_PCREL;
4717 break;
4718 case 64:
4719 code = BFD_RELOC_64_PCREL;
4720 break;
4721 default:
4722 goto fail;
4723 }
4724
4725 howto = bfd_reloc_type_lookup (abfd, code);
4726
4727 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
4728 {
4729 if (howto->pcrel_offset)
4730 areloc->addend += areloc->address;
4731 else
4732 areloc->addend -= areloc->address; /* addend is unsigned!! */
4733 }
4734 }
4735 else
4736 {
4737 switch (areloc->howto->bitsize)
4738 {
4739 case 8:
4740 code = BFD_RELOC_8;
4741 break;
4742 case 14:
4743 code = BFD_RELOC_14;
4744 break;
4745 case 16:
4746 code = BFD_RELOC_16;
4747 break;
4748 case 26:
4749 code = BFD_RELOC_26;
4750 break;
4751 case 32:
4752 code = BFD_RELOC_32;
4753 break;
4754 case 64:
4755 code = BFD_RELOC_64;
4756 break;
4757 default:
4758 goto fail;
4759 }
4760
4761 howto = bfd_reloc_type_lookup (abfd, code);
4762 }
4763
4764 if (howto)
4765 areloc->howto = howto;
4766 else
4767 goto fail;
4768 }
4769
4770 return true;
4771
4772 fail:
4773 (*_bfd_error_handler)
4774 (_("%s: unsupported relocation type %s"),
4775 bfd_get_filename (abfd), areloc->howto->name);
4776 bfd_set_error (bfd_error_bad_value);
4777 return false;
4778}
4779
4780boolean
4781_bfd_elf_close_and_cleanup (abfd)
4782 bfd *abfd;
4783{
4784 if (bfd_get_format (abfd) == bfd_object)
4785 {
4786 if (elf_shstrtab (abfd) != NULL)
4787 _bfd_stringtab_free (elf_shstrtab (abfd));
4788 }
4789
4790 return _bfd_generic_close_and_cleanup (abfd);
4791}
4792
4793/* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
4794 in the relocation's offset. Thus we cannot allow any sort of sanity
4795 range-checking to interfere. There is nothing else to do in processing
4796 this reloc. */
4797
4798bfd_reloc_status_type
4799_bfd_elf_rel_vtable_reloc_fn (abfd, re, symbol, data, is, obfd, errmsg)
4800 bfd *abfd;
4801 arelent *re;
4802 struct symbol_cache_entry *symbol;
4803 PTR data;
4804 asection *is;
4805 bfd *obfd;
4806 char **errmsg;
4807{
4808 return bfd_reloc_ok;
4809}
4810
4811\f
4812/* Elf core file support. Much of this only works on native
4813 toolchains, since we rely on knowing the
4814 machine-dependent procfs structure in order to pick
4815 out details about the corefile. */
4816
4817#ifdef HAVE_SYS_PROCFS_H
4818# include <sys/procfs.h>
4819#endif
4820
4821
4822/* Define offsetof for those systems which lack it. */
4823
4824#ifndef offsetof
4825# define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
4826#endif
4827
4828
4829/* FIXME: this is kinda wrong, but it's what gdb wants. */
4830
4831static int
4832elfcore_make_pid (abfd)
4833 bfd* abfd;
4834{
4835 return ((elf_tdata (abfd)->core_lwpid << 16)
4836 + (elf_tdata (abfd)->core_pid));
4837}
4838
4839
4840/* If there isn't a section called NAME, make one, using
4841 data from SECT. Note, this function will generate a
4842 reference to NAME, so you shouldn't deallocate or
4843 overwrite it. */
4844
4845static boolean
4846elfcore_maybe_make_sect (abfd, name, sect)
4847 bfd* abfd;
4848 char* name;
4849 asection* sect;
4850{
4851 asection* sect2;
4852
4853 if (bfd_get_section_by_name (abfd, name) != NULL)
4854 return true;
4855
4856 sect2 = bfd_make_section (abfd, name);
4857 if (sect2 == NULL)
4858 return false;
4859
4860 sect2->_raw_size = sect->_raw_size;
4861 sect2->filepos = sect->filepos;
4862 sect2->flags = sect->flags;
4863 sect2->alignment_power = sect->alignment_power;
4864 return true;
4865}
4866
4867
4868/* prstatus_t exists on:
4869 solaris 2.[567]
4870 linux 2.[01] + glibc
4871 unixware 4.2
4872*/
4873
4874#if defined (HAVE_PRSTATUS_T)
4875static boolean
4876elfcore_grok_prstatus (abfd, note)
4877 bfd* abfd;
4878 Elf_Internal_Note* note;
4879{
4880 prstatus_t prstat;
4881 char buf[100];
4882 char* name;
4883 asection* sect;
4884
4885 if (note->descsz != sizeof (prstat))
4886 return true;
4887
4888 memcpy (&prstat, note->descdata, sizeof (prstat));
4889
4890 elf_tdata (abfd)->core_signal = prstat.pr_cursig;
4891 elf_tdata (abfd)->core_pid = prstat.pr_pid;
4892
4893 /* pr_who exists on:
4894 solaris 2.[567]
4895 unixware 4.2
4896 pr_who doesn't exist on:
4897 linux 2.[01]
4898 */
4899#if defined (HAVE_PRSTATUS_T_PR_WHO)
4900 elf_tdata (abfd)->core_lwpid = prstat.pr_who;
4901#endif
4902
4903 /* Make a ".reg/999" section. */
4904
4905 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
4906 name = bfd_alloc (abfd, strlen (buf) + 1);
4907 if (name == NULL)
4908 return false;
4909 strcpy (name, buf);
4910
4911 sect = bfd_make_section (abfd, name);
4912 if (sect == NULL)
4913 return false;
4914 sect->_raw_size = sizeof (prstat.pr_reg);
4915 sect->filepos = note->descpos + offsetof (prstatus_t, pr_reg);
4916 sect->flags = SEC_HAS_CONTENTS;
4917 sect->alignment_power = 2;
4918
4919 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
4920 return false;
4921
4922 return true;
4923}
4924#endif /* defined (HAVE_PRSTATUS_T) */
4925
4926
4927/* There isn't a consistent prfpregset_t across platforms,
4928 but it doesn't matter, because we don't have to pick this
4929 data structure apart. */
4930
4931static boolean
4932elfcore_grok_prfpreg (abfd, note)
4933 bfd* abfd;
4934 Elf_Internal_Note* note;
4935{
4936 char buf[100];
4937 char* name;
4938 asection* sect;
4939
4940 /* Make a ".reg2/999" section. */
4941
4942 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
4943 name = bfd_alloc (abfd, strlen (buf) + 1);
4944 if (name == NULL)
4945 return false;
4946 strcpy (name, buf);
4947
4948 sect = bfd_make_section (abfd, name);
4949 if (sect == NULL)
4950 return false;
4951 sect->_raw_size = note->descsz;
4952 sect->filepos = note->descpos;
4953 sect->flags = SEC_HAS_CONTENTS;
4954 sect->alignment_power = 2;
4955
4956 if (! elfcore_maybe_make_sect (abfd, ".reg2", sect))
4957 return false;
4958
4959 return true;
4960}
4961
4962#if defined (HAVE_PRPSINFO_T)
4963# define elfcore_psinfo_t prpsinfo_t
4964#endif
4965
4966#if defined (HAVE_PSINFO_T)
4967# define elfcore_psinfo_t psinfo_t
4968#endif
4969
4970
4971#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
4972
4973/* return a malloc'ed copy of a string at START which is at
4974 most MAX bytes long, possibly without a terminating '\0'.
4975 the copy will always have a terminating '\0'. */
4976
4977static char*
4978elfcore_strndup (abfd, start, max)
4979 bfd* abfd;
4980 char* start;
4981 int max;
4982{
4983 char* dup;
4984 char* end = memchr (start, '\0', max);
4985 int len;
4986
4987 if (end == NULL)
4988 len = max;
4989 else
4990 len = end - start;
4991
4992 dup = bfd_alloc (abfd, len + 1);
4993 if (dup == NULL)
4994 return NULL;
4995
4996 memcpy (dup, start, len);
4997 dup[len] = '\0';
4998
4999 return dup;
5000}
5001
5002static boolean
5003elfcore_grok_psinfo (abfd, note)
5004 bfd* abfd;
5005 Elf_Internal_Note* note;
5006{
5007 elfcore_psinfo_t psinfo;
5008
5009 if (note->descsz != sizeof (elfcore_psinfo_t))
5010 return true;
5011
5012 memcpy (&psinfo, note->descdata, note->descsz);
5013
5014 elf_tdata (abfd)->core_program
5015 = elfcore_strndup (abfd, psinfo.pr_fname, sizeof (psinfo.pr_fname));
5016
5017 elf_tdata (abfd)->core_command
5018 = elfcore_strndup (abfd, psinfo.pr_psargs, sizeof (psinfo.pr_psargs));
5019
5020 /* Note that for some reason, a spurious space is tacked
5021 onto the end of the args in some (at least one anyway)
5022 implementations, so strip it off if it exists. */
5023
5024 {
5025 char* command = elf_tdata (abfd)->core_command;
5026 int n = strlen (command);
5027
5028 if (0 < n && command[n - 1] == ' ')
5029 command[n - 1] = '\0';
5030 }
5031
5032 return true;
5033}
5034#endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
5035
5036
5037#if defined (HAVE_PSTATUS_T)
5038static boolean
5039elfcore_grok_pstatus (abfd, note)
5040 bfd* abfd;
5041 Elf_Internal_Note* note;
5042{
5043 pstatus_t pstat;
5044
5045 if (note->descsz != sizeof (pstat))
5046 return true;
5047
5048 memcpy (&pstat, note->descdata, sizeof (pstat));
5049
5050 elf_tdata (abfd)->core_pid = pstat.pr_pid;
5051
5052 /* Could grab some more details from the "representative"
5053 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
5054 NT_LWPSTATUS note, presumably. */
5055
5056 return true;
5057}
5058#endif /* defined (HAVE_PSTATUS_T) */
5059
5060
5061#if defined (HAVE_LWPSTATUS_T)
5062static boolean
5063elfcore_grok_lwpstatus (abfd, note)
5064 bfd* abfd;
5065 Elf_Internal_Note* note;
5066{
5067 lwpstatus_t lwpstat;
5068 char buf[100];
5069 char* name;
5070 asection* sect;
5071
5072 if (note->descsz != sizeof (lwpstat))
5073 return true;
5074
5075 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
5076
5077 elf_tdata (abfd)->core_lwpid = lwpstat.pr_lwpid;
5078 elf_tdata (abfd)->core_signal = lwpstat.pr_cursig;
5079
5080 /* Make a ".reg/999" section. */
5081
5082 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
5083 name = bfd_alloc (abfd, strlen (buf) + 1);
5084 if (name == NULL)
5085 return false;
5086 strcpy (name, buf);
5087
5088 sect = bfd_make_section (abfd, name);
5089 if (sect == NULL)
5090 return false;
5091
5092#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
5093 sect->_raw_size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
5094 sect->filepos = note->descpos
5095 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
5096#endif
5097
5098#if defined (HAVE_LWPSTATUS_T_PR_REG)
5099 sect->_raw_size = sizeof (lwpstat.pr_reg);
5100 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
5101#endif
5102
5103 sect->flags = SEC_HAS_CONTENTS;
5104 sect->alignment_power = 2;
5105
5106 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
5107 return false;
5108
5109 /* Make a ".reg2/999" section */
5110
5111 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
5112 name = bfd_alloc (abfd, strlen (buf) + 1);
5113 if (name == NULL)
5114 return false;
5115 strcpy (name, buf);
5116
5117 sect = bfd_make_section (abfd, name);
5118 if (sect == NULL)
5119 return false;
5120
5121#if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
5122 sect->_raw_size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
5123 sect->filepos = note->descpos
5124 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
5125#endif
5126
5127#if defined (HAVE_LWPSTATUS_T_PR_FPREG)
5128 sect->_raw_size = sizeof (lwpstat.pr_fpreg);
5129 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
5130#endif
5131
5132 sect->flags = SEC_HAS_CONTENTS;
5133 sect->alignment_power = 2;
5134
5135 if (!elfcore_maybe_make_sect (abfd, ".reg2", sect))
5136 return false;
5137
5138 return true;
5139}
5140#endif /* defined (HAVE_LWPSTATUS_T) */
5141
5142
5143
5144static boolean
5145elfcore_grok_note (abfd, note)
5146 bfd* abfd;
5147 Elf_Internal_Note* note;
5148{
5149 switch (note->type)
5150 {
5151 default:
5152 return true;
5153
5154#if defined (HAVE_PRSTATUS_T)
5155 case NT_PRSTATUS:
5156 return elfcore_grok_prstatus (abfd, note);
5157#endif
5158
5159#if defined (HAVE_PSTATUS_T)
5160 case NT_PSTATUS:
5161 return elfcore_grok_pstatus (abfd, note);
5162#endif
5163
5164#if defined (HAVE_LWPSTATUS_T)
5165 case NT_LWPSTATUS:
5166 return elfcore_grok_lwpstatus (abfd, note);
5167#endif
5168
5169 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
5170 return elfcore_grok_prfpreg (abfd, note);
5171
5172#if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
5173 case NT_PRPSINFO:
5174 case NT_PSINFO:
5175 return elfcore_grok_psinfo (abfd, note);
5176#endif
5177 }
5178}
5179
5180
5181static boolean
5182elfcore_read_notes (abfd, offset, size)
5183 bfd* abfd;
5184 bfd_vma offset;
5185 bfd_vma size;
5186{
5187 char* buf;
5188 char* p;
5189
5190 if (size <= 0)
5191 return true;
5192
5193 if (bfd_seek (abfd, offset, SEEK_SET) == -1)
5194 return false;
5195
5196 buf = bfd_malloc ((size_t) size);
5197 if (buf == NULL)
5198 return false;
5199
5200 if (bfd_read (buf, size, 1, abfd) != size)
5201 {
5202 error:
5203 free (buf);
5204 return false;
5205 }
5206
5207 p = buf;
5208 while (p < buf + size)
5209 {
5210 /* FIXME: bad alignment assumption. */
5211 Elf_External_Note* xnp = (Elf_External_Note*) p;
5212 Elf_Internal_Note in;
5213
5214 in.type = bfd_h_get_32 (abfd, (bfd_byte *) xnp->type);
5215
5216 in.namesz = bfd_h_get_32 (abfd, (bfd_byte *) xnp->namesz);
5217 in.namedata = xnp->name;
5218
5219 in.descsz = bfd_h_get_32 (abfd, (bfd_byte *) xnp->descsz);
5220 in.descdata = in.namedata + BFD_ALIGN (in.namesz, 4);
5221 in.descpos = offset + (in.descdata - buf);
5222
5223 if (! elfcore_grok_note (abfd, &in))
5224 goto error;
5225
5226 p = in.descdata + BFD_ALIGN (in.descsz, 4);
5227 }
5228
5229 free (buf);
5230 return true;
5231}
5232
5233
5234
5235boolean
5236_bfd_elfcore_section_from_phdr (abfd, phdr, sec_num)
5237 bfd* abfd;
5238 Elf_Internal_Phdr* phdr;
5239 int sec_num;
5240{
5241 if (! bfd_section_from_phdr (abfd, phdr, sec_num))
5242 return false;
5243
5244 if (phdr->p_type == PT_NOTE
5245 && ! elfcore_read_notes (abfd, phdr->p_offset, phdr->p_filesz))
5246 return false;
5247
5248 return true;
5249}
5250