daily update
[binutils.git] / bfd / elf-eh-frame.c
blobfa152abd9af71e3d8bf29273c359ffacd156446b
1 /* .eh_frame section optimization.
2 Copyright 2001, 2002 Free Software Foundation, Inc.
3 Written by Jakub Jelinek <jakub@redhat.com>.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #include "bfd.h"
22 #include "sysdep.h"
23 #include "libbfd.h"
24 #include "elf-bfd.h"
25 #include "elf/dwarf2.h"
27 #define EH_FRAME_HDR_SIZE 8
29 static bfd_vma read_unsigned_leb128
30 PARAMS ((bfd *, char *, unsigned int *));
31 static bfd_signed_vma read_signed_leb128
32 PARAMS ((bfd *, char *, unsigned int *));
33 static int get_DW_EH_PE_width
34 PARAMS ((int, int));
35 static bfd_vma read_value
36 PARAMS ((bfd *, bfd_byte *, int));
37 static void write_value
38 PARAMS ((bfd *, bfd_byte *, bfd_vma, int));
39 static int cie_compare
40 PARAMS ((struct cie *, struct cie *));
41 static int vma_compare
42 PARAMS ((const PTR a, const PTR b));
44 /* Helper function for reading uleb128 encoded data. */
46 static bfd_vma
47 read_unsigned_leb128 (abfd, buf, bytes_read_ptr)
48 bfd *abfd ATTRIBUTE_UNUSED;
49 char *buf;
50 unsigned int *bytes_read_ptr;
52 bfd_vma result;
53 unsigned int num_read;
54 int shift;
55 unsigned char byte;
57 result = 0;
58 shift = 0;
59 num_read = 0;
62 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
63 buf ++;
64 num_read ++;
65 result |= (((bfd_vma) byte & 0x7f) << shift);
66 shift += 7;
68 while (byte & 0x80);
69 * bytes_read_ptr = num_read;
70 return result;
73 /* Helper function for reading sleb128 encoded data. */
75 static bfd_signed_vma
76 read_signed_leb128 (abfd, buf, bytes_read_ptr)
77 bfd *abfd ATTRIBUTE_UNUSED;
78 char *buf;
79 unsigned int * bytes_read_ptr;
81 bfd_vma result;
82 int shift;
83 int num_read;
84 unsigned char byte;
86 result = 0;
87 shift = 0;
88 num_read = 0;
91 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
92 buf ++;
93 num_read ++;
94 result |= (((bfd_vma) byte & 0x7f) << shift);
95 shift += 7;
97 while (byte & 0x80);
98 if (byte & 0x40)
99 result |= (((bfd_vma) -1) << (shift - 7)) << 7;
100 * bytes_read_ptr = num_read;
101 return result;
104 #define read_uleb128(VAR, BUF) \
105 do \
107 (VAR) = read_unsigned_leb128 (abfd, buf, &leb128_tmp); \
108 (BUF) += leb128_tmp; \
110 while (0)
112 #define read_sleb128(VAR, BUF) \
113 do \
115 (VAR) = read_signed_leb128 (abfd, buf, &leb128_tmp); \
116 (BUF) += leb128_tmp; \
118 while (0)
120 /* Return 0 if either encoding is variable width, or not yet known to bfd. */
122 static
123 int get_DW_EH_PE_width (encoding, ptr_size)
124 int encoding, ptr_size;
126 /* DW_EH_PE_ values of 0x60 and 0x70 weren't defined at the time .eh_frame
127 was added to bfd. */
128 if ((encoding & 0x60) == 0x60)
129 return 0;
131 switch (encoding & 7)
133 case DW_EH_PE_udata2: return 2;
134 case DW_EH_PE_udata4: return 4;
135 case DW_EH_PE_udata8: return 8;
136 case DW_EH_PE_absptr: return ptr_size;
137 default:
138 break;
141 return 0;
144 /* Read a width sized value from memory. */
146 static bfd_vma
147 read_value (abfd, buf, width)
148 bfd *abfd;
149 bfd_byte *buf;
150 int width;
152 bfd_vma value;
154 switch (width)
156 case 2: value = bfd_get_16 (abfd, buf); break;
157 case 4: value = bfd_get_32 (abfd, buf); break;
158 case 8: value = bfd_get_64 (abfd, buf); break;
159 default: BFD_FAIL (); return 0;
162 return value;
165 /* Store a width sized value to memory. */
167 static void
168 write_value (abfd, buf, value, width)
169 bfd *abfd;
170 bfd_byte *buf;
171 bfd_vma value;
172 int width;
174 switch (width)
176 case 2: bfd_put_16 (abfd, value, buf); break;
177 case 4: bfd_put_32 (abfd, value, buf); break;
178 case 8: bfd_put_64 (abfd, value, buf); break;
179 default: BFD_FAIL ();
183 /* Return zero if C1 and C2 CIEs can be merged. */
185 static
186 int cie_compare (c1, c2)
187 struct cie *c1, *c2;
189 if (c1->hdr.length == c2->hdr.length
190 && c1->version == c2->version
191 && strcmp (c1->augmentation, c2->augmentation) == 0
192 && strcmp (c1->augmentation, "eh") != 0
193 && c1->code_align == c2->code_align
194 && c1->data_align == c2->data_align
195 && c1->ra_column == c2->ra_column
196 && c1->augmentation_size == c2->augmentation_size
197 && c1->personality == c2->personality
198 && c1->per_encoding == c2->per_encoding
199 && c1->lsda_encoding == c2->lsda_encoding
200 && c1->fde_encoding == c2->fde_encoding
201 && (c1->initial_insn_length
202 == c2->initial_insn_length)
203 && memcmp (c1->initial_instructions,
204 c2->initial_instructions,
205 c1->initial_insn_length) == 0)
206 return 0;
208 return 1;
211 /* This function is called for each input file before the .eh_frame
212 section is relocated. It discards duplicate CIEs and FDEs for discarded
213 functions. The function returns true iff any entries have been
214 deleted. */
216 boolean
217 _bfd_elf_discard_section_eh_frame (abfd, info, sec,
218 reloc_symbol_deleted_p, cookie)
219 bfd *abfd;
220 struct bfd_link_info *info;
221 asection *sec;
222 boolean (*reloc_symbol_deleted_p) PARAMS ((bfd_vma, PTR));
223 struct elf_reloc_cookie *cookie;
225 bfd_byte *ehbuf = NULL, *buf;
226 bfd_byte *last_cie, *last_fde;
227 struct cie_header hdr;
228 struct cie cie;
229 struct elf_link_hash_table *htab;
230 struct eh_frame_hdr_info *hdr_info;
231 struct eh_frame_sec_info *sec_info = NULL;
232 unsigned int leb128_tmp;
233 unsigned int cie_usage_count, last_cie_ndx, i, offset;
234 unsigned int make_relative, make_lsda_relative;
235 bfd_size_type new_size;
236 unsigned int ptr_size;
238 if (sec->_raw_size == 0)
240 /* This file does not contain .eh_frame information. */
241 return false;
244 if ((sec->output_section != NULL
245 && bfd_is_abs_section (sec->output_section)))
247 /* At least one of the sections is being discarded from the
248 link, so we should just ignore them. */
249 return false;
252 htab = elf_hash_table (info);
253 hdr_info = &htab->eh_info;
255 /* Read the frame unwind information from abfd. */
257 ehbuf = (bfd_byte *) bfd_malloc (sec->_raw_size);
258 if (ehbuf == NULL)
259 goto free_no_table;
261 if (! bfd_get_section_contents (abfd, sec, ehbuf, (bfd_vma) 0,
262 sec->_raw_size))
263 goto free_no_table;
265 if (sec->_raw_size >= 4
266 && bfd_get_32 (abfd, ehbuf) == 0
267 && cookie->rel == cookie->relend)
269 /* Empty .eh_frame section. */
270 free (ehbuf);
271 return false;
274 /* If .eh_frame section size doesn't fit into int, we cannot handle
275 it (it would need to use 64-bit .eh_frame format anyway). */
276 if (sec->_raw_size != (unsigned int) sec->_raw_size)
277 goto free_no_table;
279 ptr_size = (elf_elfheader (abfd)->e_ident[EI_CLASS]
280 == ELFCLASS64) ? 8 : 4;
281 buf = ehbuf;
282 last_cie = NULL;
283 last_cie_ndx = 0;
284 memset (&cie, 0, sizeof (cie));
285 cie_usage_count = 0;
286 new_size = sec->_raw_size;
287 make_relative = hdr_info->last_cie.make_relative;
288 make_lsda_relative = hdr_info->last_cie.make_lsda_relative;
289 sec_info = bfd_zmalloc (sizeof (struct eh_frame_sec_info)
290 + 99 * sizeof (struct eh_cie_fde));
291 if (sec_info == NULL)
292 goto free_no_table;
293 sec_info->alloced = 100;
295 #define ENSURE_NO_RELOCS(buf) \
296 if (cookie->rel < cookie->relend \
297 && (cookie->rel->r_offset \
298 < (bfd_size_type) ((buf) - ehbuf))) \
299 goto free_no_table
301 #define SKIP_RELOCS(buf) \
302 while (cookie->rel < cookie->relend \
303 && (cookie->rel->r_offset \
304 < (bfd_size_type) ((buf) - ehbuf))) \
305 cookie->rel++
307 #define GET_RELOC(buf) \
308 ((cookie->rel < cookie->relend \
309 && (cookie->rel->r_offset \
310 == (bfd_size_type) ((buf) - ehbuf))) \
311 ? cookie->rel : NULL)
313 for (;;)
315 unsigned char *aug;
317 if (sec_info->count == sec_info->alloced)
319 sec_info = bfd_realloc (sec_info,
320 sizeof (struct eh_frame_sec_info)
321 + (sec_info->alloced + 99)
322 * sizeof (struct eh_cie_fde));
323 if (sec_info == NULL)
324 goto free_no_table;
326 memset (&sec_info->entry[sec_info->alloced], 0,
327 100 * sizeof (struct eh_cie_fde));
328 sec_info->alloced += 100;
331 last_fde = buf;
332 /* If we are at the end of the section, we still need to decide
333 on whether to output or discard last encountered CIE (if any). */
334 if ((bfd_size_type) (buf - ehbuf) == sec->_raw_size)
335 hdr.id = (unsigned int) -1;
336 else
338 if ((bfd_size_type) (buf + 4 - ehbuf) > sec->_raw_size)
339 /* No space for CIE/FDE header length. */
340 goto free_no_table;
342 hdr.length = bfd_get_32 (abfd, buf);
343 if (hdr.length == 0xffffffff)
344 /* 64-bit .eh_frame is not supported. */
345 goto free_no_table;
346 buf += 4;
347 if ((bfd_size_type) (buf - ehbuf) + hdr.length > sec->_raw_size)
348 /* CIE/FDE not contained fully in this .eh_frame input section. */
349 goto free_no_table;
351 sec_info->entry[sec_info->count].offset = last_fde - ehbuf;
352 sec_info->entry[sec_info->count].size = 4 + hdr.length;
354 if (hdr.length == 0)
356 /* CIE with length 0 must be only the last in the section. */
357 if ((bfd_size_type) (buf - ehbuf) < sec->_raw_size)
358 goto free_no_table;
359 ENSURE_NO_RELOCS (buf);
360 sec_info->count++;
361 /* Now just finish last encountered CIE processing and break
362 the loop. */
363 hdr.id = (unsigned int) -1;
365 else
367 hdr.id = bfd_get_32 (abfd, buf);
368 buf += 4;
369 if (hdr.id == (unsigned int) -1)
370 goto free_no_table;
374 if (hdr.id == 0 || hdr.id == (unsigned int) -1)
376 unsigned int initial_insn_length;
378 /* CIE */
379 if (last_cie != NULL)
381 /* Now check if this CIE is identical to last CIE, in which case
382 we can remove it, provided we adjust all FDEs.
383 Also, it can be removed if we have removed all FDEs using
384 that. */
385 if (cie_compare (&cie, &hdr_info->last_cie) == 0
386 || cie_usage_count == 0)
388 new_size -= cie.hdr.length + 4;
389 sec_info->entry[last_cie_ndx].removed = 1;
390 sec_info->entry[last_cie_ndx].sec = hdr_info->last_cie_sec;
391 sec_info->entry[last_cie_ndx].new_offset
392 = hdr_info->last_cie_offset;
394 else
396 hdr_info->last_cie = cie;
397 hdr_info->last_cie_sec = sec;
398 hdr_info->last_cie_offset = last_cie - ehbuf;
399 sec_info->entry[last_cie_ndx].make_relative
400 = cie.make_relative;
401 sec_info->entry[last_cie_ndx].make_lsda_relative
402 = cie.make_lsda_relative;
403 sec_info->entry[last_cie_ndx].per_encoding_relative
404 = (cie.per_encoding & 0x70) == DW_EH_PE_pcrel;
408 if (hdr.id == (unsigned int) -1)
409 break;
411 last_cie_ndx = sec_info->count;
412 sec_info->entry[sec_info->count].cie = 1;
414 cie_usage_count = 0;
415 memset (&cie, 0, sizeof (cie));
416 cie.hdr = hdr;
417 cie.version = *buf++;
419 /* Cannot handle unknown versions. */
420 if (cie.version != 1)
421 goto free_no_table;
422 if (strlen (buf) > sizeof (cie.augmentation) - 1)
423 goto free_no_table;
425 strcpy (cie.augmentation, buf);
426 buf = strchr (buf, '\0') + 1;
427 ENSURE_NO_RELOCS (buf);
428 if (buf[0] == 'e' && buf[1] == 'h')
430 /* GCC < 3.0 .eh_frame CIE */
431 /* We cannot merge "eh" CIEs because __EXCEPTION_TABLE__
432 is private to each CIE, so we don't need it for anything.
433 Just skip it. */
434 buf += ptr_size;
435 SKIP_RELOCS (buf);
437 read_uleb128 (cie.code_align, buf);
438 read_sleb128 (cie.data_align, buf);
439 /* Note - in DWARF2 the return address column is an unsigned byte.
440 In DWARF3 it is a ULEB128. We are following DWARF3. For most
441 ports this will not matter as the value will be less than 128.
442 For the others (eg FRV, SH, MMIX, IA64) they need a fixed GCC
443 which conforms to the DWARF3 standard. */
444 read_uleb128 (cie.ra_column, buf);
445 ENSURE_NO_RELOCS (buf);
446 cie.lsda_encoding = DW_EH_PE_omit;
447 cie.fde_encoding = DW_EH_PE_omit;
448 cie.per_encoding = DW_EH_PE_omit;
449 aug = cie.augmentation;
450 if (aug[0] != 'e' || aug[1] != 'h')
452 if (*aug == 'z')
454 aug++;
455 read_uleb128 (cie.augmentation_size, buf);
456 ENSURE_NO_RELOCS (buf);
459 while (*aug != '\0')
460 switch (*aug++)
462 case 'L':
463 cie.lsda_encoding = *buf++;
464 ENSURE_NO_RELOCS (buf);
465 if (get_DW_EH_PE_width (cie.lsda_encoding, ptr_size) == 0)
466 goto free_no_table;
467 break;
468 case 'R':
469 cie.fde_encoding = *buf++;
470 ENSURE_NO_RELOCS (buf);
471 if (get_DW_EH_PE_width (cie.fde_encoding, ptr_size) == 0)
472 goto free_no_table;
473 break;
474 case 'P':
476 int per_width;
478 cie.per_encoding = *buf++;
479 per_width = get_DW_EH_PE_width (cie.per_encoding,
480 ptr_size);
481 if (per_width == 0)
482 goto free_no_table;
483 if ((cie.per_encoding & 0xf0) == DW_EH_PE_aligned)
484 buf = (ehbuf
485 + ((buf - ehbuf + per_width - 1)
486 & ~((bfd_size_type) per_width - 1)));
487 ENSURE_NO_RELOCS (buf);
488 /* Ensure we have a reloc here, against
489 a global symbol. */
490 if (GET_RELOC (buf) != NULL)
492 unsigned long r_symndx;
494 #ifdef BFD64
495 if (ptr_size == 8)
496 r_symndx = ELF64_R_SYM (cookie->rel->r_info);
497 else
498 #endif
499 r_symndx = ELF32_R_SYM (cookie->rel->r_info);
500 if (r_symndx >= cookie->locsymcount)
502 struct elf_link_hash_entry *h;
504 r_symndx -= cookie->extsymoff;
505 h = cookie->sym_hashes[r_symndx];
507 while (h->root.type == bfd_link_hash_indirect
508 || h->root.type == bfd_link_hash_warning)
509 h = (struct elf_link_hash_entry *)
510 h->root.u.i.link;
512 cie.personality = h;
514 cookie->rel++;
516 buf += per_width;
518 break;
519 default:
520 /* Unrecognized augmentation. Better bail out. */
521 goto free_no_table;
525 /* For shared libraries, try to get rid of as many RELATIVE relocs
526 as possible. */
527 if (info->shared
528 && (cie.fde_encoding & 0xf0) == DW_EH_PE_absptr)
529 cie.make_relative = 1;
531 if (info->shared
532 && (cie.lsda_encoding & 0xf0) == DW_EH_PE_absptr)
533 cie.make_lsda_relative = 1;
535 /* If FDE encoding was not specified, it defaults to
536 DW_EH_absptr. */
537 if (cie.fde_encoding == DW_EH_PE_omit)
538 cie.fde_encoding = DW_EH_PE_absptr;
540 initial_insn_length = cie.hdr.length - (buf - last_fde - 4);
541 if (initial_insn_length <= 50)
543 cie.initial_insn_length = initial_insn_length;
544 memcpy (cie.initial_instructions, buf, initial_insn_length);
546 buf += initial_insn_length;
547 ENSURE_NO_RELOCS (buf);
548 last_cie = last_fde;
550 else
552 /* Ensure this FDE uses the last CIE encountered. */
553 if (last_cie == NULL
554 || hdr.id != (unsigned int) (buf - 4 - last_cie))
555 goto free_no_table;
557 ENSURE_NO_RELOCS (buf);
558 if (GET_RELOC (buf) == NULL)
559 /* This should not happen. */
560 goto free_no_table;
561 if ((*reloc_symbol_deleted_p) (buf - ehbuf, cookie))
563 /* This is a FDE against discarded section, it should
564 be deleted. */
565 new_size -= hdr.length + 4;
566 sec_info->entry[sec_info->count].removed = 1;
568 else
570 if (info->shared
571 && (((cie.fde_encoding & 0xf0) == DW_EH_PE_absptr
572 && cie.make_relative == 0)
573 || (cie.fde_encoding & 0xf0) == DW_EH_PE_aligned))
575 /* If shared library uses absolute pointers
576 which we cannot turn into PC relative,
577 don't create the binary search table,
578 since it is affected by runtime relocations. */
579 hdr_info->table = false;
581 cie_usage_count++;
582 hdr_info->fde_count++;
584 if (cie.lsda_encoding != DW_EH_PE_omit)
586 unsigned int dummy;
588 aug = buf;
589 buf += 2 * get_DW_EH_PE_width (cie.fde_encoding, ptr_size);
590 if (cie.augmentation[0] == 'z')
591 read_uleb128 (dummy, buf);
592 /* If some new augmentation data is added before LSDA
593 in FDE augmentation area, this need to be adjusted. */
594 sec_info->entry[sec_info->count].lsda_offset = (buf - aug);
596 buf = last_fde + 4 + hdr.length;
597 SKIP_RELOCS (buf);
600 sec_info->entry[sec_info->count].fde_encoding = cie.fde_encoding;
601 sec_info->entry[sec_info->count].lsda_encoding = cie.lsda_encoding;
602 sec_info->count++;
605 elf_section_data (sec)->sec_info = sec_info;
606 elf_section_data (sec)->sec_info_type = ELF_INFO_TYPE_EH_FRAME;
608 /* Ok, now we can assign new offsets. */
609 offset = 0;
610 last_cie_ndx = 0;
611 for (i = 0; i < sec_info->count; i++)
613 if (! sec_info->entry[i].removed)
615 sec_info->entry[i].new_offset = offset;
616 offset += sec_info->entry[i].size;
617 if (sec_info->entry[i].cie)
619 last_cie_ndx = i;
620 make_relative = sec_info->entry[i].make_relative;
621 make_lsda_relative = sec_info->entry[i].make_lsda_relative;
623 else
625 sec_info->entry[i].make_relative = make_relative;
626 sec_info->entry[i].make_lsda_relative = make_lsda_relative;
627 sec_info->entry[i].per_encoding_relative = 0;
630 else if (sec_info->entry[i].cie && sec_info->entry[i].sec == sec)
632 /* Need to adjust new_offset too. */
633 BFD_ASSERT (sec_info->entry[last_cie_ndx].offset
634 == sec_info->entry[i].new_offset);
635 sec_info->entry[i].new_offset
636 = sec_info->entry[last_cie_ndx].new_offset;
639 if (hdr_info->last_cie_sec == sec)
641 BFD_ASSERT (sec_info->entry[last_cie_ndx].offset
642 == hdr_info->last_cie_offset);
643 hdr_info->last_cie_offset = sec_info->entry[last_cie_ndx].new_offset;
646 /* FIXME: Currently it is not possible to shrink sections to zero size at
647 this point, so build a fake minimal CIE. */
648 if (new_size == 0)
649 new_size = 16;
651 /* Shrink the sec as needed. */
652 sec->_cooked_size = new_size;
653 if (sec->_cooked_size == 0)
654 sec->flags |= SEC_EXCLUDE;
656 free (ehbuf);
657 return new_size != sec->_raw_size;
659 free_no_table:
660 if (ehbuf)
661 free (ehbuf);
662 if (sec_info)
663 free (sec_info);
664 hdr_info->table = false;
665 hdr_info->last_cie.hdr.length = 0;
666 return false;
669 /* This function is called for .eh_frame_hdr section after
670 _bfd_elf_discard_section_eh_frame has been called on all .eh_frame
671 input sections. It finalizes the size of .eh_frame_hdr section. */
673 boolean
674 _bfd_elf_discard_section_eh_frame_hdr (abfd, info)
675 bfd *abfd;
676 struct bfd_link_info *info;
678 struct elf_link_hash_table *htab;
679 struct eh_frame_hdr_info *hdr_info;
680 asection *sec;
682 htab = elf_hash_table (info);
683 hdr_info = &htab->eh_info;
684 sec = hdr_info->hdr_sec;
685 if (sec == NULL)
686 return false;
688 sec->_cooked_size = EH_FRAME_HDR_SIZE;
689 if (hdr_info->table)
690 sec->_cooked_size += 4 + hdr_info->fde_count * 8;
692 /* Request program headers to be recalculated. */
693 elf_tdata (abfd)->program_header_size = 0;
694 elf_tdata (abfd)->eh_frame_hdr = sec;
695 return true;
698 /* This function is called from size_dynamic_sections.
699 It needs to decide whether .eh_frame_hdr should be output or not,
700 because later on it is too late for calling _bfd_strip_section_from_output,
701 since dynamic symbol table has been sized. */
703 boolean
704 _bfd_elf_maybe_strip_eh_frame_hdr (info)
705 struct bfd_link_info *info;
707 asection *o;
708 bfd *abfd;
709 struct elf_link_hash_table *htab;
710 struct eh_frame_hdr_info *hdr_info;
712 htab = elf_hash_table (info);
713 hdr_info = &htab->eh_info;
714 if (hdr_info->hdr_sec == NULL)
715 return true;
717 if (bfd_is_abs_section (hdr_info->hdr_sec->output_section))
719 hdr_info->hdr_sec = NULL;
720 return true;
723 abfd = NULL;
724 if (info->eh_frame_hdr)
725 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
727 /* Count only sections which have at least a single CIE or FDE.
728 There cannot be any CIE or FDE <= 8 bytes. */
729 o = bfd_get_section_by_name (abfd, ".eh_frame");
730 if (o && o->_raw_size > 8 && !bfd_is_abs_section (o->output_section))
731 break;
734 if (abfd == NULL)
736 _bfd_strip_section_from_output (info, hdr_info->hdr_sec);
737 hdr_info->hdr_sec = NULL;
738 return true;
741 hdr_info->table = true;
742 return true;
745 /* Adjust an address in the .eh_frame section. Given OFFSET within
746 SEC, this returns the new offset in the adjusted .eh_frame section,
747 or -1 if the address refers to a CIE/FDE which has been removed
748 or to offset with dynamic relocation which is no longer needed. */
750 bfd_vma
751 _bfd_elf_eh_frame_section_offset (output_bfd, sec, offset)
752 bfd *output_bfd ATTRIBUTE_UNUSED;
753 asection *sec;
754 bfd_vma offset;
756 struct eh_frame_sec_info *sec_info;
757 unsigned int lo, hi, mid;
759 if (elf_section_data (sec)->sec_info_type != ELF_INFO_TYPE_EH_FRAME)
760 return offset;
761 sec_info = (struct eh_frame_sec_info *)
762 elf_section_data (sec)->sec_info;
764 if (offset >= sec->_raw_size)
765 return offset - (sec->_cooked_size - sec->_raw_size);
767 lo = 0;
768 hi = sec_info->count;
769 mid = 0;
770 while (lo < hi)
772 mid = (lo + hi) / 2;
773 if (offset < sec_info->entry[mid].offset)
774 hi = mid;
775 else if (offset
776 >= sec_info->entry[mid].offset + sec_info->entry[mid].size)
777 lo = mid + 1;
778 else
779 break;
782 BFD_ASSERT (lo < hi);
784 /* FDE or CIE was removed. */
785 if (sec_info->entry[mid].removed)
786 return (bfd_vma) -1;
788 /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
789 relocation against FDE's initial_location field. */
790 if (sec_info->entry[mid].make_relative
791 && ! sec_info->entry[mid].cie
792 && offset == sec_info->entry[mid].offset + 8)
793 return (bfd_vma) -2;
795 /* If converting LSDA pointers to DW_EH_PE_pcrel, there will be no need
796 for run-time relocation against LSDA field. */
797 if (sec_info->entry[mid].make_lsda_relative
798 && ! sec_info->entry[mid].cie
799 && (offset == (sec_info->entry[mid].offset + 8
800 + sec_info->entry[mid].lsda_offset)))
801 return (bfd_vma) -2;
803 return (offset + sec_info->entry[mid].new_offset
804 - sec_info->entry[mid].offset);
807 /* Write out .eh_frame section. This is called with the relocated
808 contents. */
810 boolean
811 _bfd_elf_write_section_eh_frame (abfd, info, sec, contents)
812 bfd *abfd;
813 struct bfd_link_info *info;
814 asection *sec;
815 bfd_byte *contents;
817 struct eh_frame_sec_info *sec_info;
818 struct elf_link_hash_table *htab;
819 struct eh_frame_hdr_info *hdr_info;
820 unsigned int i;
821 bfd_byte *p, *buf;
822 unsigned int leb128_tmp;
823 unsigned int cie_offset = 0;
824 unsigned int ptr_size;
826 ptr_size = (elf_elfheader (sec->owner)->e_ident[EI_CLASS]
827 == ELFCLASS64) ? 8 : 4;
829 if (elf_section_data (sec)->sec_info_type != ELF_INFO_TYPE_EH_FRAME)
830 return bfd_set_section_contents (abfd, sec->output_section,
831 contents,
832 (file_ptr) sec->output_offset,
833 sec->_raw_size);
834 sec_info = (struct eh_frame_sec_info *)
835 elf_section_data (sec)->sec_info;
836 htab = elf_hash_table (info);
837 hdr_info = &htab->eh_info;
838 if (hdr_info->table && hdr_info->array == NULL)
839 hdr_info->array
840 = bfd_malloc (hdr_info->fde_count * sizeof(*hdr_info->array));
841 if (hdr_info->array == NULL)
842 hdr_info = NULL;
844 p = contents;
845 for (i = 0; i < sec_info->count; ++i)
847 if (sec_info->entry[i].removed)
849 if (sec_info->entry[i].cie)
851 /* If CIE is removed due to no remaining FDEs referencing it
852 and there were no CIEs kept before it, sec_info->entry[i].sec
853 will be zero. */
854 if (sec_info->entry[i].sec == NULL)
855 cie_offset = 0;
856 else
858 cie_offset = sec_info->entry[i].new_offset;
859 cie_offset += (sec_info->entry[i].sec->output_section->vma
860 + sec_info->entry[i].sec->output_offset
861 - sec->output_section->vma
862 - sec->output_offset);
865 continue;
868 if (sec_info->entry[i].cie)
870 /* CIE */
871 cie_offset = sec_info->entry[i].new_offset;
872 if (sec_info->entry[i].make_relative
873 || sec_info->entry[i].make_lsda_relative
874 || sec_info->entry[i].per_encoding_relative)
876 unsigned char *aug;
877 unsigned int action;
878 unsigned int dummy, per_width, per_encoding;
880 /* Need to find 'R' or 'L' augmentation's argument and modify
881 DW_EH_PE_* value. */
882 action = (sec_info->entry[i].make_relative ? 1 : 0)
883 | (sec_info->entry[i].make_lsda_relative ? 2 : 0)
884 | (sec_info->entry[i].per_encoding_relative ? 4 : 0);
885 buf = contents + sec_info->entry[i].offset;
886 /* Skip length, id and version. */
887 buf += 9;
888 aug = buf;
889 buf = strchr (buf, '\0') + 1;
890 read_uleb128 (dummy, buf);
891 read_sleb128 (dummy, buf);
892 read_uleb128 (dummy, buf);
893 if (*aug == 'z')
895 read_uleb128 (dummy, buf);
896 aug++;
899 while (action)
900 switch (*aug++)
902 case 'L':
903 if (action & 2)
905 BFD_ASSERT (*buf == sec_info->entry[i].lsda_encoding);
906 *buf |= DW_EH_PE_pcrel;
907 action &= ~2;
909 buf++;
910 break;
911 case 'P':
912 per_encoding = *buf++;
913 per_width = get_DW_EH_PE_width (per_encoding,
914 ptr_size);
915 BFD_ASSERT (per_width != 0);
916 BFD_ASSERT (((per_encoding & 0x70) == DW_EH_PE_pcrel)
917 == sec_info->entry[i].per_encoding_relative);
918 if ((per_encoding & 0xf0) == DW_EH_PE_aligned)
919 buf = (contents
920 + ((buf - contents + per_width - 1)
921 & ~((bfd_size_type) per_width - 1)));
922 if (action & 4)
924 bfd_vma value;
926 value = read_value (abfd, buf, per_width);
927 value += (sec_info->entry[i].offset
928 - sec_info->entry[i].new_offset);
929 write_value (abfd, buf, value, per_width);
930 action &= ~4;
932 buf += per_width;
933 break;
934 case 'R':
935 if (action & 1)
937 BFD_ASSERT (*buf == sec_info->entry[i].fde_encoding);
938 *buf |= DW_EH_PE_pcrel;
939 action &= ~1;
941 buf++;
942 break;
943 default:
944 BFD_FAIL ();
948 else if (sec_info->entry[i].size > 4)
950 /* FDE */
951 bfd_vma value = 0, address;
952 unsigned int width;
954 buf = contents + sec_info->entry[i].offset;
955 /* Skip length. */
956 buf += 4;
957 bfd_put_32 (abfd,
958 sec_info->entry[i].new_offset + 4 - cie_offset, buf);
959 buf += 4;
960 width = get_DW_EH_PE_width (sec_info->entry[i].fde_encoding,
961 ptr_size);
962 address = value = read_value (abfd, buf, width);
963 if (value)
965 switch (sec_info->entry[i].fde_encoding & 0xf0)
967 case DW_EH_PE_indirect:
968 case DW_EH_PE_textrel:
969 BFD_ASSERT (hdr_info == NULL);
970 break;
971 case DW_EH_PE_datarel:
973 asection *got = bfd_get_section_by_name (abfd, ".got");
975 BFD_ASSERT (got != NULL);
976 address += got->vma;
978 break;
979 case DW_EH_PE_pcrel:
980 value += (sec_info->entry[i].offset
981 - sec_info->entry[i].new_offset);
982 address += (sec->output_section->vma + sec->output_offset
983 + sec_info->entry[i].offset + 8);
984 break;
986 if (sec_info->entry[i].make_relative)
987 value -= (sec->output_section->vma + sec->output_offset
988 + sec_info->entry[i].new_offset + 8);
989 write_value (abfd, buf, value, width);
992 if (hdr_info)
994 hdr_info->array[hdr_info->array_count].initial_loc = address;
995 hdr_info->array[hdr_info->array_count++].fde
996 = (sec->output_section->vma + sec->output_offset
997 + sec_info->entry[i].new_offset);
1000 if ((sec_info->entry[i].lsda_encoding & 0xf0) == DW_EH_PE_pcrel
1001 || sec_info->entry[i].make_lsda_relative)
1003 buf += sec_info->entry[i].lsda_offset;
1004 width = get_DW_EH_PE_width (sec_info->entry[i].lsda_encoding,
1005 ptr_size);
1006 value = read_value (abfd, buf, width);
1007 if (value)
1009 if ((sec_info->entry[i].lsda_encoding & 0xf0)
1010 == DW_EH_PE_pcrel)
1011 value += (sec_info->entry[i].offset
1012 - sec_info->entry[i].new_offset);
1013 else if (sec_info->entry[i].make_lsda_relative)
1014 value -= (sec->output_section->vma + sec->output_offset
1015 + sec_info->entry[i].new_offset + 8
1016 + sec_info->entry[i].lsda_offset);
1017 write_value (abfd, buf, value, width);
1021 else
1022 /* Terminating FDE must be at the end of .eh_frame section only. */
1023 BFD_ASSERT (i == sec_info->count - 1);
1025 BFD_ASSERT (p == contents + sec_info->entry[i].new_offset);
1026 memmove (p, contents + sec_info->entry[i].offset,
1027 sec_info->entry[i].size);
1028 p += sec_info->entry[i].size;
1031 /* FIXME: Once _bfd_elf_discard_section_eh_frame will be able to
1032 shrink sections to zero size, this won't be needed any more. */
1033 if (p == contents && sec->_cooked_size == 16)
1035 bfd_put_32 (abfd, 12, p); /* Fake CIE length */
1036 bfd_put_32 (abfd, 0, p + 4); /* Fake CIE id */
1037 p[8] = 1; /* Fake CIE version */
1038 memset (p + 9, 0, 7); /* Fake CIE augmentation, 3xleb128
1039 and 3xDW_CFA_nop as pad */
1040 p += 16;
1043 BFD_ASSERT ((bfd_size_type) (p - contents) == sec->_cooked_size);
1045 return bfd_set_section_contents (abfd, sec->output_section,
1046 contents, (file_ptr) sec->output_offset,
1047 sec->_cooked_size);
1050 /* Helper function used to sort .eh_frame_hdr search table by increasing
1051 VMA of FDE initial location. */
1053 static int
1054 vma_compare (a, b)
1055 const PTR a;
1056 const PTR b;
1058 struct eh_frame_array_ent *p = (struct eh_frame_array_ent *) a;
1059 struct eh_frame_array_ent *q = (struct eh_frame_array_ent *) b;
1060 if (p->initial_loc > q->initial_loc)
1061 return 1;
1062 if (p->initial_loc < q->initial_loc)
1063 return -1;
1064 return 0;
1067 /* Write out .eh_frame_hdr section. This must be called after
1068 _bfd_elf_write_section_eh_frame has been called on all input
1069 .eh_frame sections.
1070 .eh_frame_hdr format:
1071 ubyte version (currently 1)
1072 ubyte eh_frame_ptr_enc (DW_EH_PE_* encoding of pointer to start of
1073 .eh_frame section)
1074 ubyte fde_count_enc (DW_EH_PE_* encoding of total FDE count
1075 number (or DW_EH_PE_omit if there is no
1076 binary search table computed))
1077 ubyte table_enc (DW_EH_PE_* encoding of binary search table,
1078 or DW_EH_PE_omit if not present.
1079 DW_EH_PE_datarel is using address of
1080 .eh_frame_hdr section start as base)
1081 [encoded] eh_frame_ptr (pointer to start of .eh_frame section)
1082 optionally followed by:
1083 [encoded] fde_count (total number of FDEs in .eh_frame section)
1084 fde_count x [encoded] initial_loc, fde
1085 (array of encoded pairs containing
1086 FDE initial_location field and FDE address,
1087 sorted by increasing initial_loc) */
1089 boolean
1090 _bfd_elf_write_section_eh_frame_hdr (abfd, info)
1091 bfd *abfd;
1092 struct bfd_link_info *info;
1094 struct elf_link_hash_table *htab;
1095 struct eh_frame_hdr_info *hdr_info;
1096 asection *sec;
1097 bfd_byte *contents;
1098 asection *eh_frame_sec;
1099 bfd_size_type size;
1101 htab = elf_hash_table (info);
1102 hdr_info = &htab->eh_info;
1103 sec = hdr_info->hdr_sec;
1104 if (sec == NULL)
1105 return true;
1107 size = EH_FRAME_HDR_SIZE;
1108 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1109 size += 4 + hdr_info->fde_count * 8;
1110 contents = bfd_malloc (size);
1111 if (contents == NULL)
1112 return false;
1114 eh_frame_sec = bfd_get_section_by_name (abfd, ".eh_frame");
1115 if (eh_frame_sec == NULL)
1116 return false;
1118 memset (contents, 0, EH_FRAME_HDR_SIZE);
1119 contents[0] = 1; /* Version */
1120 contents[1] = DW_EH_PE_pcrel | DW_EH_PE_sdata4; /* .eh_frame offset */
1121 if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1123 contents[2] = DW_EH_PE_udata4; /* FDE count encoding */
1124 contents[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4; /* search table enc */
1126 else
1128 contents[2] = DW_EH_PE_omit;
1129 contents[3] = DW_EH_PE_omit;
1131 bfd_put_32 (abfd, eh_frame_sec->vma - sec->output_section->vma - 4,
1132 contents + 4);
1133 if (contents[2] != DW_EH_PE_omit)
1135 unsigned int i;
1137 bfd_put_32 (abfd, hdr_info->fde_count, contents + EH_FRAME_HDR_SIZE);
1138 qsort (hdr_info->array, hdr_info->fde_count, sizeof (*hdr_info->array),
1139 vma_compare);
1140 for (i = 0; i < hdr_info->fde_count; i++)
1142 bfd_put_32 (abfd,
1143 hdr_info->array[i].initial_loc
1144 - sec->output_section->vma,
1145 contents + EH_FRAME_HDR_SIZE + i * 8 + 4);
1146 bfd_put_32 (abfd,
1147 hdr_info->array[i].fde - sec->output_section->vma,
1148 contents + EH_FRAME_HDR_SIZE + i * 8 + 8);
1152 return bfd_set_section_contents (abfd, sec->output_section,
1153 contents, (file_ptr) sec->output_offset,
1154 sec->_cooked_size);