Discard zero address range eh_frame FDEs
[external/binutils.git] / bfd / elf-eh-frame.c
1 /* .eh_frame section optimization.
2    Copyright (C) 2001-2014 Free Software Foundation, Inc.
3    Written by Jakub Jelinek <jakub@redhat.com>.
4
5    This file is part of BFD, the Binary File Descriptor library.
6
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 3 of the License, or
10    (at your option) any later version.
11
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.
16
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., 51 Franklin Street - Fifth Floor, Boston,
20    MA 02110-1301, USA.  */
21
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "libbfd.h"
25 #include "elf-bfd.h"
26 #include "dwarf2.h"
27
28 #define EH_FRAME_HDR_SIZE 8
29
30 struct cie
31 {
32   unsigned int length;
33   unsigned int hash;
34   unsigned char version;
35   unsigned char local_personality;
36   char augmentation[20];
37   bfd_vma code_align;
38   bfd_signed_vma data_align;
39   bfd_vma ra_column;
40   bfd_vma augmentation_size;
41   union {
42     struct elf_link_hash_entry *h;
43     struct {
44       unsigned int bfd_id;
45       unsigned int index;
46     } sym;
47     unsigned int reloc_index;
48   } personality;
49   struct eh_cie_fde *cie_inf;
50   unsigned char per_encoding;
51   unsigned char lsda_encoding;
52   unsigned char fde_encoding;
53   unsigned char initial_insn_length;
54   unsigned char can_make_lsda_relative;
55   unsigned char initial_instructions[50];
56 };
57
58
59
60 /* If *ITER hasn't reached END yet, read the next byte into *RESULT and
61    move onto the next byte.  Return true on success.  */
62
63 static inline bfd_boolean
64 read_byte (bfd_byte **iter, bfd_byte *end, unsigned char *result)
65 {
66   if (*iter >= end)
67     return FALSE;
68   *result = *((*iter)++);
69   return TRUE;
70 }
71
72 /* Move *ITER over LENGTH bytes, or up to END, whichever is closer.
73    Return true it was possible to move LENGTH bytes.  */
74
75 static inline bfd_boolean
76 skip_bytes (bfd_byte **iter, bfd_byte *end, bfd_size_type length)
77 {
78   if ((bfd_size_type) (end - *iter) < length)
79     {
80       *iter = end;
81       return FALSE;
82     }
83   *iter += length;
84   return TRUE;
85 }
86
87 /* Move *ITER over an leb128, stopping at END.  Return true if the end
88    of the leb128 was found.  */
89
90 static bfd_boolean
91 skip_leb128 (bfd_byte **iter, bfd_byte *end)
92 {
93   unsigned char byte;
94   do
95     if (!read_byte (iter, end, &byte))
96       return FALSE;
97   while (byte & 0x80);
98   return TRUE;
99 }
100
101 /* Like skip_leb128, but treat the leb128 as an unsigned value and
102    store it in *VALUE.  */
103
104 static bfd_boolean
105 read_uleb128 (bfd_byte **iter, bfd_byte *end, bfd_vma *value)
106 {
107   bfd_byte *start, *p;
108
109   start = *iter;
110   if (!skip_leb128 (iter, end))
111     return FALSE;
112
113   p = *iter;
114   *value = *--p;
115   while (p > start)
116     *value = (*value << 7) | (*--p & 0x7f);
117
118   return TRUE;
119 }
120
121 /* Like read_uleb128, but for signed values.  */
122
123 static bfd_boolean
124 read_sleb128 (bfd_byte **iter, bfd_byte *end, bfd_signed_vma *value)
125 {
126   bfd_byte *start, *p;
127
128   start = *iter;
129   if (!skip_leb128 (iter, end))
130     return FALSE;
131
132   p = *iter;
133   *value = ((*--p & 0x7f) ^ 0x40) - 0x40;
134   while (p > start)
135     *value = (*value << 7) | (*--p & 0x7f);
136
137   return TRUE;
138 }
139
140 /* Return 0 if either encoding is variable width, or not yet known to bfd.  */
141
142 static
143 int get_DW_EH_PE_width (int encoding, int ptr_size)
144 {
145   /* DW_EH_PE_ values of 0x60 and 0x70 weren't defined at the time .eh_frame
146      was added to bfd.  */
147   if ((encoding & 0x60) == 0x60)
148     return 0;
149
150   switch (encoding & 7)
151     {
152     case DW_EH_PE_udata2: return 2;
153     case DW_EH_PE_udata4: return 4;
154     case DW_EH_PE_udata8: return 8;
155     case DW_EH_PE_absptr: return ptr_size;
156     default:
157       break;
158     }
159
160   return 0;
161 }
162
163 #define get_DW_EH_PE_signed(encoding) (((encoding) & DW_EH_PE_signed) != 0)
164
165 /* Read a width sized value from memory.  */
166
167 static bfd_vma
168 read_value (bfd *abfd, bfd_byte *buf, int width, int is_signed)
169 {
170   bfd_vma value;
171
172   switch (width)
173     {
174     case 2:
175       if (is_signed)
176         value = bfd_get_signed_16 (abfd, buf);
177       else
178         value = bfd_get_16 (abfd, buf);
179       break;
180     case 4:
181       if (is_signed)
182         value = bfd_get_signed_32 (abfd, buf);
183       else
184         value = bfd_get_32 (abfd, buf);
185       break;
186     case 8:
187       if (is_signed)
188         value = bfd_get_signed_64 (abfd, buf);
189       else
190         value = bfd_get_64 (abfd, buf);
191       break;
192     default:
193       BFD_FAIL ();
194       return 0;
195     }
196
197   return value;
198 }
199
200 /* Store a width sized value to memory.  */
201
202 static void
203 write_value (bfd *abfd, bfd_byte *buf, bfd_vma value, int width)
204 {
205   switch (width)
206     {
207     case 2: bfd_put_16 (abfd, value, buf); break;
208     case 4: bfd_put_32 (abfd, value, buf); break;
209     case 8: bfd_put_64 (abfd, value, buf); break;
210     default: BFD_FAIL ();
211     }
212 }
213
214 /* Return one if C1 and C2 CIEs can be merged.  */
215
216 static int
217 cie_eq (const void *e1, const void *e2)
218 {
219   const struct cie *c1 = (const struct cie *) e1;
220   const struct cie *c2 = (const struct cie *) e2;
221
222   if (c1->hash == c2->hash
223       && c1->length == c2->length
224       && c1->version == c2->version
225       && c1->local_personality == c2->local_personality
226       && strcmp (c1->augmentation, c2->augmentation) == 0
227       && strcmp (c1->augmentation, "eh") != 0
228       && c1->code_align == c2->code_align
229       && c1->data_align == c2->data_align
230       && c1->ra_column == c2->ra_column
231       && c1->augmentation_size == c2->augmentation_size
232       && memcmp (&c1->personality, &c2->personality,
233                  sizeof (c1->personality)) == 0
234       && (c1->cie_inf->u.cie.u.sec->output_section
235           == c2->cie_inf->u.cie.u.sec->output_section)
236       && c1->per_encoding == c2->per_encoding
237       && c1->lsda_encoding == c2->lsda_encoding
238       && c1->fde_encoding == c2->fde_encoding
239       && c1->initial_insn_length == c2->initial_insn_length
240       && c1->initial_insn_length <= sizeof (c1->initial_instructions)
241       && memcmp (c1->initial_instructions,
242                  c2->initial_instructions,
243                  c1->initial_insn_length) == 0)
244     return 1;
245
246   return 0;
247 }
248
249 static hashval_t
250 cie_hash (const void *e)
251 {
252   const struct cie *c = (const struct cie *) e;
253   return c->hash;
254 }
255
256 static hashval_t
257 cie_compute_hash (struct cie *c)
258 {
259   hashval_t h = 0;
260   size_t len;
261   h = iterative_hash_object (c->length, h);
262   h = iterative_hash_object (c->version, h);
263   h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h);
264   h = iterative_hash_object (c->code_align, h);
265   h = iterative_hash_object (c->data_align, h);
266   h = iterative_hash_object (c->ra_column, h);
267   h = iterative_hash_object (c->augmentation_size, h);
268   h = iterative_hash_object (c->personality, h);
269   h = iterative_hash_object (c->cie_inf->u.cie.u.sec->output_section, h);
270   h = iterative_hash_object (c->per_encoding, h);
271   h = iterative_hash_object (c->lsda_encoding, h);
272   h = iterative_hash_object (c->fde_encoding, h);
273   h = iterative_hash_object (c->initial_insn_length, h);
274   len = c->initial_insn_length;
275   if (len > sizeof (c->initial_instructions))
276     len = sizeof (c->initial_instructions);
277   h = iterative_hash (c->initial_instructions, len, h);
278   c->hash = h;
279   return h;
280 }
281
282 /* Return the number of extra bytes that we'll be inserting into
283    ENTRY's augmentation string.  */
284
285 static INLINE unsigned int
286 extra_augmentation_string_bytes (struct eh_cie_fde *entry)
287 {
288   unsigned int size = 0;
289   if (entry->cie)
290     {
291       if (entry->add_augmentation_size)
292         size++;
293       if (entry->u.cie.add_fde_encoding)
294         size++;
295     }
296   return size;
297 }
298
299 /* Likewise ENTRY's augmentation data.  */
300
301 static INLINE unsigned int
302 extra_augmentation_data_bytes (struct eh_cie_fde *entry)
303 {
304   unsigned int size = 0;
305   if (entry->add_augmentation_size)
306     size++;
307   if (entry->cie && entry->u.cie.add_fde_encoding)
308     size++;
309   return size;
310 }
311
312 /* Return the size that ENTRY will have in the output.  ALIGNMENT is the
313    required alignment of ENTRY in bytes.  */
314
315 static unsigned int
316 size_of_output_cie_fde (struct eh_cie_fde *entry, unsigned int alignment)
317 {
318   if (entry->removed)
319     return 0;
320   if (entry->size == 4)
321     return 4;
322   return (entry->size
323           + extra_augmentation_string_bytes (entry)
324           + extra_augmentation_data_bytes (entry)
325           + alignment - 1) & -alignment;
326 }
327
328 /* Assume that the bytes between *ITER and END are CFA instructions.
329    Try to move *ITER past the first instruction and return true on
330    success.  ENCODED_PTR_WIDTH gives the width of pointer entries.  */
331
332 static bfd_boolean
333 skip_cfa_op (bfd_byte **iter, bfd_byte *end, unsigned int encoded_ptr_width)
334 {
335   bfd_byte op;
336   bfd_vma length;
337
338   if (!read_byte (iter, end, &op))
339     return FALSE;
340
341   switch (op & 0xc0 ? op & 0xc0 : op)
342     {
343     case DW_CFA_nop:
344     case DW_CFA_advance_loc:
345     case DW_CFA_restore:
346     case DW_CFA_remember_state:
347     case DW_CFA_restore_state:
348     case DW_CFA_GNU_window_save:
349       /* No arguments.  */
350       return TRUE;
351
352     case DW_CFA_offset:
353     case DW_CFA_restore_extended:
354     case DW_CFA_undefined:
355     case DW_CFA_same_value:
356     case DW_CFA_def_cfa_register:
357     case DW_CFA_def_cfa_offset:
358     case DW_CFA_def_cfa_offset_sf:
359     case DW_CFA_GNU_args_size:
360       /* One leb128 argument.  */
361       return skip_leb128 (iter, end);
362
363     case DW_CFA_val_offset:
364     case DW_CFA_val_offset_sf:
365     case DW_CFA_offset_extended:
366     case DW_CFA_register:
367     case DW_CFA_def_cfa:
368     case DW_CFA_offset_extended_sf:
369     case DW_CFA_GNU_negative_offset_extended:
370     case DW_CFA_def_cfa_sf:
371       /* Two leb128 arguments.  */
372       return (skip_leb128 (iter, end)
373               && skip_leb128 (iter, end));
374
375     case DW_CFA_def_cfa_expression:
376       /* A variable-length argument.  */
377       return (read_uleb128 (iter, end, &length)
378               && skip_bytes (iter, end, length));
379
380     case DW_CFA_expression:
381     case DW_CFA_val_expression:
382       /* A leb128 followed by a variable-length argument.  */
383       return (skip_leb128 (iter, end)
384               && read_uleb128 (iter, end, &length)
385               && skip_bytes (iter, end, length));
386
387     case DW_CFA_set_loc:
388       return skip_bytes (iter, end, encoded_ptr_width);
389
390     case DW_CFA_advance_loc1:
391       return skip_bytes (iter, end, 1);
392
393     case DW_CFA_advance_loc2:
394       return skip_bytes (iter, end, 2);
395
396     case DW_CFA_advance_loc4:
397       return skip_bytes (iter, end, 4);
398
399     case DW_CFA_MIPS_advance_loc8:
400       return skip_bytes (iter, end, 8);
401
402     default:
403       return FALSE;
404     }
405 }
406
407 /* Try to interpret the bytes between BUF and END as CFA instructions.
408    If every byte makes sense, return a pointer to the first DW_CFA_nop
409    padding byte, or END if there is no padding.  Return null otherwise.
410    ENCODED_PTR_WIDTH is as for skip_cfa_op.  */
411
412 static bfd_byte *
413 skip_non_nops (bfd_byte *buf, bfd_byte *end, unsigned int encoded_ptr_width,
414                unsigned int *set_loc_count)
415 {
416   bfd_byte *last;
417
418   last = buf;
419   while (buf < end)
420     if (*buf == DW_CFA_nop)
421       buf++;
422     else
423       {
424         if (*buf == DW_CFA_set_loc)
425           ++*set_loc_count;
426         if (!skip_cfa_op (&buf, end, encoded_ptr_width))
427           return 0;
428         last = buf;
429       }
430   return last;
431 }
432
433 /* Convert absolute encoding ENCODING into PC-relative form.
434    SIZE is the size of a pointer.  */
435
436 static unsigned char
437 make_pc_relative (unsigned char encoding, unsigned int ptr_size)
438 {
439   if ((encoding & 0x7f) == DW_EH_PE_absptr)
440     switch (ptr_size)
441       {
442       case 2:
443         encoding |= DW_EH_PE_sdata2;
444         break;
445       case 4:
446         encoding |= DW_EH_PE_sdata4;
447         break;
448       case 8:
449         encoding |= DW_EH_PE_sdata8;
450         break;
451       }
452   return encoding | DW_EH_PE_pcrel;
453 }
454
455 /* Try to parse .eh_frame section SEC, which belongs to ABFD.  Store the
456    information in the section's sec_info field on success.  COOKIE
457    describes the relocations in SEC.  */
458
459 void
460 _bfd_elf_parse_eh_frame (bfd *abfd, struct bfd_link_info *info,
461                          asection *sec, struct elf_reloc_cookie *cookie)
462 {
463 #define REQUIRE(COND)                                   \
464   do                                                    \
465     if (!(COND))                                        \
466       goto free_no_table;                               \
467   while (0)
468
469   bfd_byte *ehbuf = NULL, *buf, *end;
470   bfd_byte *last_fde;
471   struct eh_cie_fde *this_inf;
472   unsigned int hdr_length, hdr_id;
473   unsigned int cie_count;
474   struct cie *cie, *local_cies = NULL;
475   struct elf_link_hash_table *htab;
476   struct eh_frame_hdr_info *hdr_info;
477   struct eh_frame_sec_info *sec_info = NULL;
478   unsigned int ptr_size;
479   unsigned int num_cies;
480   unsigned int num_entries;
481   elf_gc_mark_hook_fn gc_mark_hook;
482
483   htab = elf_hash_table (info);
484   hdr_info = &htab->eh_info;
485
486   if (sec->size == 0
487       || sec->sec_info_type != SEC_INFO_TYPE_NONE)
488     {
489       /* This file does not contain .eh_frame information.  */
490       return;
491     }
492
493   if (bfd_is_abs_section (sec->output_section))
494     {
495       /* At least one of the sections is being discarded from the
496          link, so we should just ignore them.  */
497       return;
498     }
499
500   /* Read the frame unwind information from abfd.  */
501
502   REQUIRE (bfd_malloc_and_get_section (abfd, sec, &ehbuf));
503
504   if (sec->size >= 4
505       && bfd_get_32 (abfd, ehbuf) == 0
506       && cookie->rel == cookie->relend)
507     {
508       /* Empty .eh_frame section.  */
509       free (ehbuf);
510       return;
511     }
512
513   /* If .eh_frame section size doesn't fit into int, we cannot handle
514      it (it would need to use 64-bit .eh_frame format anyway).  */
515   REQUIRE (sec->size == (unsigned int) sec->size);
516
517   ptr_size = (get_elf_backend_data (abfd)
518               ->elf_backend_eh_frame_address_size (abfd, sec));
519   REQUIRE (ptr_size != 0);
520
521   /* Go through the section contents and work out how many FDEs and
522      CIEs there are.  */
523   buf = ehbuf;
524   end = ehbuf + sec->size;
525   num_cies = 0;
526   num_entries = 0;
527   while (buf != end)
528     {
529       num_entries++;
530
531       /* Read the length of the entry.  */
532       REQUIRE (skip_bytes (&buf, end, 4));
533       hdr_length = bfd_get_32 (abfd, buf - 4);
534
535       /* 64-bit .eh_frame is not supported.  */
536       REQUIRE (hdr_length != 0xffffffff);
537       if (hdr_length == 0)
538         break;
539
540       REQUIRE (skip_bytes (&buf, end, 4));
541       hdr_id = bfd_get_32 (abfd, buf - 4);
542       if (hdr_id == 0)
543         num_cies++;
544
545       REQUIRE (skip_bytes (&buf, end, hdr_length - 4));
546     }
547
548   sec_info = (struct eh_frame_sec_info *)
549       bfd_zmalloc (sizeof (struct eh_frame_sec_info)
550                    + (num_entries - 1) * sizeof (struct eh_cie_fde));
551   REQUIRE (sec_info);
552
553   /* We need to have a "struct cie" for each CIE in this section.  */
554   local_cies = (struct cie *) bfd_zmalloc (num_cies * sizeof (*local_cies));
555   REQUIRE (local_cies);
556
557   /* FIXME: octets_per_byte.  */
558 #define ENSURE_NO_RELOCS(buf)                           \
559   REQUIRE (!(cookie->rel < cookie->relend               \
560              && (cookie->rel->r_offset                  \
561                  < (bfd_size_type) ((buf) - ehbuf))     \
562              && cookie->rel->r_info != 0))
563
564   /* FIXME: octets_per_byte.  */
565 #define SKIP_RELOCS(buf)                                \
566   while (cookie->rel < cookie->relend                   \
567          && (cookie->rel->r_offset                      \
568              < (bfd_size_type) ((buf) - ehbuf)))        \
569     cookie->rel++
570
571   /* FIXME: octets_per_byte.  */
572 #define GET_RELOC(buf)                                  \
573   ((cookie->rel < cookie->relend                        \
574     && (cookie->rel->r_offset                           \
575         == (bfd_size_type) ((buf) - ehbuf)))            \
576    ? cookie->rel : NULL)
577
578   buf = ehbuf;
579   cie_count = 0;
580   gc_mark_hook = get_elf_backend_data (abfd)->gc_mark_hook;
581   while ((bfd_size_type) (buf - ehbuf) != sec->size)
582     {
583       char *aug;
584       bfd_byte *start, *insns, *insns_end;
585       bfd_size_type length;
586       unsigned int set_loc_count;
587
588       this_inf = sec_info->entry + sec_info->count;
589       last_fde = buf;
590
591       /* Read the length of the entry.  */
592       REQUIRE (skip_bytes (&buf, ehbuf + sec->size, 4));
593       hdr_length = bfd_get_32 (abfd, buf - 4);
594
595       /* The CIE/FDE must be fully contained in this input section.  */
596       REQUIRE ((bfd_size_type) (buf - ehbuf) + hdr_length <= sec->size);
597       end = buf + hdr_length;
598
599       this_inf->offset = last_fde - ehbuf;
600       this_inf->size = 4 + hdr_length;
601       this_inf->reloc_index = cookie->rel - cookie->rels;
602
603       if (hdr_length == 0)
604         {
605           /* A zero-length CIE should only be found at the end of
606              the section.  */
607           REQUIRE ((bfd_size_type) (buf - ehbuf) == sec->size);
608           ENSURE_NO_RELOCS (buf);
609           sec_info->count++;
610           break;
611         }
612
613       REQUIRE (skip_bytes (&buf, end, 4));
614       hdr_id = bfd_get_32 (abfd, buf - 4);
615
616       if (hdr_id == 0)
617         {
618           unsigned int initial_insn_length;
619
620           /* CIE  */
621           this_inf->cie = 1;
622
623           /* Point CIE to one of the section-local cie structures.  */
624           cie = local_cies + cie_count++;
625
626           cie->cie_inf = this_inf;
627           cie->length = hdr_length;
628           start = buf;
629           REQUIRE (read_byte (&buf, end, &cie->version));
630
631           /* Cannot handle unknown versions.  */
632           REQUIRE (cie->version == 1
633                    || cie->version == 3
634                    || cie->version == 4);
635           REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation));
636
637           strcpy (cie->augmentation, (char *) buf);
638           buf = (bfd_byte *) strchr ((char *) buf, '\0') + 1;
639           ENSURE_NO_RELOCS (buf);
640           if (buf[0] == 'e' && buf[1] == 'h')
641             {
642               /* GCC < 3.0 .eh_frame CIE */
643               /* We cannot merge "eh" CIEs because __EXCEPTION_TABLE__
644                  is private to each CIE, so we don't need it for anything.
645                  Just skip it.  */
646               REQUIRE (skip_bytes (&buf, end, ptr_size));
647               SKIP_RELOCS (buf);
648             }
649           if (cie->version >= 4)
650             {
651               REQUIRE (buf + 1 < end);
652               REQUIRE (buf[0] == ptr_size);
653               REQUIRE (buf[1] == 0);
654               buf += 2;
655             }
656           REQUIRE (read_uleb128 (&buf, end, &cie->code_align));
657           REQUIRE (read_sleb128 (&buf, end, &cie->data_align));
658           if (cie->version == 1)
659             {
660               REQUIRE (buf < end);
661               cie->ra_column = *buf++;
662             }
663           else
664             REQUIRE (read_uleb128 (&buf, end, &cie->ra_column));
665           ENSURE_NO_RELOCS (buf);
666           cie->lsda_encoding = DW_EH_PE_omit;
667           cie->fde_encoding = DW_EH_PE_omit;
668           cie->per_encoding = DW_EH_PE_omit;
669           aug = cie->augmentation;
670           if (aug[0] != 'e' || aug[1] != 'h')
671             {
672               if (*aug == 'z')
673                 {
674                   aug++;
675                   REQUIRE (read_uleb128 (&buf, end, &cie->augmentation_size));
676                   ENSURE_NO_RELOCS (buf);
677                 }
678
679               while (*aug != '\0')
680                 switch (*aug++)
681                   {
682                   case 'L':
683                     REQUIRE (read_byte (&buf, end, &cie->lsda_encoding));
684                     ENSURE_NO_RELOCS (buf);
685                     REQUIRE (get_DW_EH_PE_width (cie->lsda_encoding, ptr_size));
686                     break;
687                   case 'R':
688                     REQUIRE (read_byte (&buf, end, &cie->fde_encoding));
689                     ENSURE_NO_RELOCS (buf);
690                     REQUIRE (get_DW_EH_PE_width (cie->fde_encoding, ptr_size));
691                     break;
692                   case 'S':
693                     break;
694                   case 'P':
695                     {
696                       int per_width;
697
698                       REQUIRE (read_byte (&buf, end, &cie->per_encoding));
699                       per_width = get_DW_EH_PE_width (cie->per_encoding,
700                                                       ptr_size);
701                       REQUIRE (per_width);
702                       if ((cie->per_encoding & 0x70) == DW_EH_PE_aligned)
703                         {
704                           length = -(buf - ehbuf) & (per_width - 1);
705                           REQUIRE (skip_bytes (&buf, end, length));
706                         }
707                       this_inf->u.cie.personality_offset = buf - start;
708                       ENSURE_NO_RELOCS (buf);
709                       /* Ensure we have a reloc here.  */
710                       REQUIRE (GET_RELOC (buf));
711                       cie->personality.reloc_index
712                         = cookie->rel - cookie->rels;
713                       /* Cope with MIPS-style composite relocations.  */
714                       do
715                         cookie->rel++;
716                       while (GET_RELOC (buf) != NULL);
717                       REQUIRE (skip_bytes (&buf, end, per_width));
718                     }
719                     break;
720                   default:
721                     /* Unrecognized augmentation. Better bail out.  */
722                     goto free_no_table;
723                   }
724             }
725
726           /* For shared libraries, try to get rid of as many RELATIVE relocs
727              as possible.  */
728           if (info->shared
729               && (get_elf_backend_data (abfd)
730                   ->elf_backend_can_make_relative_eh_frame
731                   (abfd, info, sec)))
732             {
733               if ((cie->fde_encoding & 0x70) == DW_EH_PE_absptr)
734                 this_inf->make_relative = 1;
735               /* If the CIE doesn't already have an 'R' entry, it's fairly
736                  easy to add one, provided that there's no aligned data
737                  after the augmentation string.  */
738               else if (cie->fde_encoding == DW_EH_PE_omit
739                        && (cie->per_encoding & 0x70) != DW_EH_PE_aligned)
740                 {
741                   if (*cie->augmentation == 0)
742                     this_inf->add_augmentation_size = 1;
743                   this_inf->u.cie.add_fde_encoding = 1;
744                   this_inf->make_relative = 1;
745                 }
746
747               if ((cie->lsda_encoding & 0x70) == DW_EH_PE_absptr)
748                 cie->can_make_lsda_relative = 1;
749             }
750
751           /* If FDE encoding was not specified, it defaults to
752              DW_EH_absptr.  */
753           if (cie->fde_encoding == DW_EH_PE_omit)
754             cie->fde_encoding = DW_EH_PE_absptr;
755
756           initial_insn_length = end - buf;
757           cie->initial_insn_length = initial_insn_length;
758           memcpy (cie->initial_instructions, buf,
759                   initial_insn_length <= sizeof (cie->initial_instructions)
760                   ? initial_insn_length : sizeof (cie->initial_instructions));
761           insns = buf;
762           buf += initial_insn_length;
763           ENSURE_NO_RELOCS (buf);
764
765           if (!info->relocatable)
766             /* Keep info for merging cies.  */
767             this_inf->u.cie.u.full_cie = cie;
768           this_inf->u.cie.per_encoding_relative
769             = (cie->per_encoding & 0x70) == DW_EH_PE_pcrel;
770         }
771       else
772         {
773           /* Find the corresponding CIE.  */
774           unsigned int cie_offset = this_inf->offset + 4 - hdr_id;
775           for (cie = local_cies; cie < local_cies + cie_count; cie++)
776             if (cie_offset == cie->cie_inf->offset)
777               break;
778
779           /* Ensure this FDE references one of the CIEs in this input
780              section.  */
781           REQUIRE (cie != local_cies + cie_count);
782           this_inf->u.fde.cie_inf = cie->cie_inf;
783           this_inf->make_relative = cie->cie_inf->make_relative;
784           this_inf->add_augmentation_size
785             = cie->cie_inf->add_augmentation_size;
786
787           ENSURE_NO_RELOCS (buf);
788           if ((sec->flags & SEC_LINKER_CREATED) == 0 || cookie->rels != NULL)
789             {
790               asection *rsec;
791
792               REQUIRE (GET_RELOC (buf));
793
794               /* Chain together the FDEs for each section.  */
795               rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
796               /* RSEC will be NULL if FDE was cleared out as it was belonging to
797                  a discarded SHT_GROUP.  */
798               if (rsec)
799                 {
800                   REQUIRE (rsec->owner == abfd);
801                   this_inf->u.fde.next_for_section = elf_fde_list (rsec);
802                   elf_fde_list (rsec) = this_inf;
803                 }
804             }
805
806           /* Skip the initial location and address range.  */
807           start = buf;
808           length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
809           REQUIRE (skip_bytes (&buf, end, 2 * length));
810
811           SKIP_RELOCS (buf - length);
812           if (!GET_RELOC (buf - length)
813               && read_value (abfd, buf - length, length, FALSE) == 0)
814             {
815               (*info->callbacks->minfo)
816                 (_("discarding zero address range FDE in %B(%A).\n"),
817                  abfd, sec);
818               this_inf->u.fde.cie_inf = NULL;
819             }
820
821           /* Skip the augmentation size, if present.  */
822           if (cie->augmentation[0] == 'z')
823             REQUIRE (read_uleb128 (&buf, end, &length));
824           else
825             length = 0;
826
827           /* Of the supported augmentation characters above, only 'L'
828              adds augmentation data to the FDE.  This code would need to
829              be adjusted if any future augmentations do the same thing.  */
830           if (cie->lsda_encoding != DW_EH_PE_omit)
831             {
832               SKIP_RELOCS (buf);
833               if (cie->can_make_lsda_relative && GET_RELOC (buf))
834                 cie->cie_inf->u.cie.make_lsda_relative = 1;
835               this_inf->lsda_offset = buf - start;
836               /* If there's no 'z' augmentation, we don't know where the
837                  CFA insns begin.  Assume no padding.  */
838               if (cie->augmentation[0] != 'z')
839                 length = end - buf;
840             }
841
842           /* Skip over the augmentation data.  */
843           REQUIRE (skip_bytes (&buf, end, length));
844           insns = buf;
845
846           buf = last_fde + 4 + hdr_length;
847
848           /* For NULL RSEC (cleared FDE belonging to a discarded section)
849              the relocations are commonly cleared.  We do not sanity check if
850              all these relocations are cleared as (1) relocations to
851              .gcc_except_table will remain uncleared (they will get dropped
852              with the drop of this unused FDE) and (2) BFD already safely drops
853              relocations of any type to .eh_frame by
854              elf_section_ignore_discarded_relocs.
855              TODO: The .gcc_except_table entries should be also filtered as
856              .eh_frame entries; or GCC could rather use COMDAT for them.  */
857           SKIP_RELOCS (buf);
858         }
859
860       /* Try to interpret the CFA instructions and find the first
861          padding nop.  Shrink this_inf's size so that it doesn't
862          include the padding.  */
863       length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
864       set_loc_count = 0;
865       insns_end = skip_non_nops (insns, end, length, &set_loc_count);
866       /* If we don't understand the CFA instructions, we can't know
867          what needs to be adjusted there.  */
868       if (insns_end == NULL
869           /* For the time being we don't support DW_CFA_set_loc in
870              CIE instructions.  */
871           || (set_loc_count && this_inf->cie))
872         goto free_no_table;
873       this_inf->size -= end - insns_end;
874       if (insns_end != end && this_inf->cie)
875         {
876           cie->initial_insn_length -= end - insns_end;
877           cie->length -= end - insns_end;
878         }
879       if (set_loc_count
880           && ((cie->fde_encoding & 0x70) == DW_EH_PE_pcrel
881               || this_inf->make_relative))
882         {
883           unsigned int cnt;
884           bfd_byte *p;
885
886           this_inf->set_loc = (unsigned int *)
887               bfd_malloc ((set_loc_count + 1) * sizeof (unsigned int));
888           REQUIRE (this_inf->set_loc);
889           this_inf->set_loc[0] = set_loc_count;
890           p = insns;
891           cnt = 0;
892           while (p < end)
893             {
894               if (*p == DW_CFA_set_loc)
895                 this_inf->set_loc[++cnt] = p + 1 - start;
896               REQUIRE (skip_cfa_op (&p, end, length));
897             }
898         }
899
900       this_inf->removed = 1;
901       this_inf->fde_encoding = cie->fde_encoding;
902       this_inf->lsda_encoding = cie->lsda_encoding;
903       sec_info->count++;
904     }
905   BFD_ASSERT (sec_info->count == num_entries);
906   BFD_ASSERT (cie_count == num_cies);
907
908   elf_section_data (sec)->sec_info = sec_info;
909   sec->sec_info_type = SEC_INFO_TYPE_EH_FRAME;
910   if (!info->relocatable)
911     {
912       /* Keep info for merging cies.  */
913       sec_info->cies = local_cies;
914       local_cies = NULL;
915     }
916   goto success;
917
918  free_no_table:
919   (*info->callbacks->einfo)
920     (_("%P: error in %B(%A); no .eh_frame_hdr table will be created.\n"),
921      abfd, sec);
922   hdr_info->table = FALSE;
923   if (sec_info)
924     free (sec_info);
925  success:
926   if (ehbuf)
927     free (ehbuf);
928   if (local_cies)
929     free (local_cies);
930 #undef REQUIRE
931 }
932
933 /* Mark all relocations against CIE or FDE ENT, which occurs in
934    .eh_frame section SEC.  COOKIE describes the relocations in SEC;
935    its "rel" field can be changed freely.  */
936
937 static bfd_boolean
938 mark_entry (struct bfd_link_info *info, asection *sec,
939             struct eh_cie_fde *ent, elf_gc_mark_hook_fn gc_mark_hook,
940             struct elf_reloc_cookie *cookie)
941 {
942   /* FIXME: octets_per_byte.  */
943   for (cookie->rel = cookie->rels + ent->reloc_index;
944        cookie->rel < cookie->relend
945          && cookie->rel->r_offset < ent->offset + ent->size;
946        cookie->rel++)
947     if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, cookie))
948       return FALSE;
949
950   return TRUE;
951 }
952
953 /* Mark all the relocations against FDEs that relate to code in input
954    section SEC.  The FDEs belong to .eh_frame section EH_FRAME, whose
955    relocations are described by COOKIE.  */
956
957 bfd_boolean
958 _bfd_elf_gc_mark_fdes (struct bfd_link_info *info, asection *sec,
959                        asection *eh_frame, elf_gc_mark_hook_fn gc_mark_hook,
960                        struct elf_reloc_cookie *cookie)
961 {
962   struct eh_cie_fde *fde, *cie;
963
964   for (fde = elf_fde_list (sec); fde; fde = fde->u.fde.next_for_section)
965     {
966       if (!mark_entry (info, eh_frame, fde, gc_mark_hook, cookie))
967         return FALSE;
968
969       /* At this stage, all cie_inf fields point to local CIEs, so we
970          can use the same cookie to refer to them.  */
971       cie = fde->u.fde.cie_inf;
972       if (cie != NULL && !cie->u.cie.gc_mark)
973         {
974           cie->u.cie.gc_mark = 1;
975           if (!mark_entry (info, eh_frame, cie, gc_mark_hook, cookie))
976             return FALSE;
977         }
978     }
979   return TRUE;
980 }
981
982 /* Input section SEC of ABFD is an .eh_frame section that contains the
983    CIE described by CIE_INF.  Return a version of CIE_INF that is going
984    to be kept in the output, adding CIE_INF to the output if necessary.
985
986    HDR_INFO is the .eh_frame_hdr information and COOKIE describes the
987    relocations in REL.  */
988
989 static struct eh_cie_fde *
990 find_merged_cie (bfd *abfd, struct bfd_link_info *info, asection *sec,
991                  struct eh_frame_hdr_info *hdr_info,
992                  struct elf_reloc_cookie *cookie,
993                  struct eh_cie_fde *cie_inf)
994 {
995   unsigned long r_symndx;
996   struct cie *cie, *new_cie;
997   Elf_Internal_Rela *rel;
998   void **loc;
999
1000   /* Use CIE_INF if we have already decided to keep it.  */
1001   if (!cie_inf->removed)
1002     return cie_inf;
1003
1004   /* If we have merged CIE_INF with another CIE, use that CIE instead.  */
1005   if (cie_inf->u.cie.merged)
1006     return cie_inf->u.cie.u.merged_with;
1007
1008   cie = cie_inf->u.cie.u.full_cie;
1009
1010   /* Assume we will need to keep CIE_INF.  */
1011   cie_inf->removed = 0;
1012   cie_inf->u.cie.u.sec = sec;
1013
1014   /* If we are not merging CIEs, use CIE_INF.  */
1015   if (cie == NULL)
1016     return cie_inf;
1017
1018   if (cie->per_encoding != DW_EH_PE_omit)
1019     {
1020       bfd_boolean per_binds_local;
1021
1022       /* Work out the address of personality routine, or at least
1023          enough info that we could calculate the address had we made a
1024          final section layout.  The symbol on the reloc is enough,
1025          either the hash for a global, or (bfd id, index) pair for a
1026          local.  The assumption here is that no one uses addends on
1027          the reloc.  */
1028       rel = cookie->rels + cie->personality.reloc_index;
1029       memset (&cie->personality, 0, sizeof (cie->personality));
1030 #ifdef BFD64
1031       if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
1032         r_symndx = ELF64_R_SYM (rel->r_info);
1033       else
1034 #endif
1035         r_symndx = ELF32_R_SYM (rel->r_info);
1036       if (r_symndx >= cookie->locsymcount
1037           || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
1038         {
1039           struct elf_link_hash_entry *h;
1040
1041           r_symndx -= cookie->extsymoff;
1042           h = cookie->sym_hashes[r_symndx];
1043
1044           while (h->root.type == bfd_link_hash_indirect
1045                  || h->root.type == bfd_link_hash_warning)
1046             h = (struct elf_link_hash_entry *) h->root.u.i.link;
1047
1048           cie->personality.h = h;
1049           per_binds_local = SYMBOL_REFERENCES_LOCAL (info, h);
1050         }
1051       else
1052         {
1053           Elf_Internal_Sym *sym;
1054           asection *sym_sec;
1055
1056           sym = &cookie->locsyms[r_symndx];
1057           sym_sec = bfd_section_from_elf_index (abfd, sym->st_shndx);
1058           if (sym_sec == NULL)
1059             return cie_inf;
1060
1061           if (sym_sec->kept_section != NULL)
1062             sym_sec = sym_sec->kept_section;
1063           if (sym_sec->output_section == NULL)
1064             return cie_inf;
1065
1066           cie->local_personality = 1;
1067           cie->personality.sym.bfd_id = abfd->id;
1068           cie->personality.sym.index = r_symndx;
1069           per_binds_local = TRUE;
1070         }
1071
1072       if (per_binds_local
1073           && info->shared
1074           && (cie->per_encoding & 0x70) == DW_EH_PE_absptr
1075           && (get_elf_backend_data (abfd)
1076               ->elf_backend_can_make_relative_eh_frame (abfd, info, sec)))
1077         {
1078           cie_inf->u.cie.make_per_encoding_relative = 1;
1079           cie_inf->u.cie.per_encoding_relative = 1;
1080         }
1081     }
1082
1083   /* See if we can merge this CIE with an earlier one.  */
1084   cie_compute_hash (cie);
1085   if (hdr_info->cies == NULL)
1086     {
1087       hdr_info->cies = htab_try_create (1, cie_hash, cie_eq, free);
1088       if (hdr_info->cies == NULL)
1089         return cie_inf;
1090     }
1091   loc = htab_find_slot_with_hash (hdr_info->cies, cie, cie->hash, INSERT);
1092   if (loc == NULL)
1093     return cie_inf;
1094
1095   new_cie = (struct cie *) *loc;
1096   if (new_cie == NULL)
1097     {
1098       /* Keep CIE_INF and record it in the hash table.  */
1099       new_cie = (struct cie *) malloc (sizeof (struct cie));
1100       if (new_cie == NULL)
1101         return cie_inf;
1102
1103       memcpy (new_cie, cie, sizeof (struct cie));
1104       *loc = new_cie;
1105     }
1106   else
1107     {
1108       /* Merge CIE_INF with NEW_CIE->CIE_INF.  */
1109       cie_inf->removed = 1;
1110       cie_inf->u.cie.merged = 1;
1111       cie_inf->u.cie.u.merged_with = new_cie->cie_inf;
1112       if (cie_inf->u.cie.make_lsda_relative)
1113         new_cie->cie_inf->u.cie.make_lsda_relative = 1;
1114     }
1115   return new_cie->cie_inf;
1116 }
1117
1118 /* This function is called for each input file before the .eh_frame
1119    section is relocated.  It discards duplicate CIEs and FDEs for discarded
1120    functions.  The function returns TRUE iff any entries have been
1121    deleted.  */
1122
1123 bfd_boolean
1124 _bfd_elf_discard_section_eh_frame
1125    (bfd *abfd, struct bfd_link_info *info, asection *sec,
1126     bfd_boolean (*reloc_symbol_deleted_p) (bfd_vma, void *),
1127     struct elf_reloc_cookie *cookie)
1128 {
1129   struct eh_cie_fde *ent;
1130   struct eh_frame_sec_info *sec_info;
1131   struct eh_frame_hdr_info *hdr_info;
1132   unsigned int ptr_size, offset;
1133
1134   if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1135     return FALSE;
1136
1137   sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1138   if (sec_info == NULL)
1139     return FALSE;
1140
1141   ptr_size = (get_elf_backend_data (sec->owner)
1142               ->elf_backend_eh_frame_address_size (sec->owner, sec));
1143
1144   hdr_info = &elf_hash_table (info)->eh_info;
1145   for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1146     if (ent->size == 4)
1147       /* There should only be one zero terminator, on the last input
1148          file supplying .eh_frame (crtend.o).  Remove any others.  */
1149       ent->removed = sec->map_head.s != NULL;
1150     else if (!ent->cie && ent->u.fde.cie_inf != NULL)
1151       {
1152         bfd_boolean keep;
1153         if ((sec->flags & SEC_LINKER_CREATED) != 0 && cookie->rels == NULL)
1154           {
1155             unsigned int width
1156               = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1157             bfd_vma value
1158               = read_value (abfd, sec->contents + ent->offset + 8 + width,
1159                             width, get_DW_EH_PE_signed (ent->fde_encoding));
1160             keep = value != 0;
1161           }
1162         else
1163           {
1164             cookie->rel = cookie->rels + ent->reloc_index;
1165             /* FIXME: octets_per_byte.  */
1166             BFD_ASSERT (cookie->rel < cookie->relend
1167                         && cookie->rel->r_offset == ent->offset + 8);
1168             keep = !(*reloc_symbol_deleted_p) (ent->offset + 8, cookie);
1169           }
1170         if (keep)
1171           {
1172             if (info->shared
1173                 && (((ent->fde_encoding & 0x70) == DW_EH_PE_absptr
1174                      && ent->make_relative == 0)
1175                     || (ent->fde_encoding & 0x70) == DW_EH_PE_aligned))
1176               {
1177                 /* If a shared library uses absolute pointers
1178                    which we cannot turn into PC relative,
1179                    don't create the binary search table,
1180                    since it is affected by runtime relocations.  */
1181                 hdr_info->table = FALSE;
1182                 (*info->callbacks->einfo)
1183                   (_("%P: FDE encoding in %B(%A) prevents .eh_frame_hdr"
1184                      " table being created.\n"), abfd, sec);
1185               }
1186             ent->removed = 0;
1187             hdr_info->fde_count++;
1188             ent->u.fde.cie_inf = find_merged_cie (abfd, info, sec, hdr_info,
1189                                                   cookie, ent->u.fde.cie_inf);
1190           }
1191       }
1192
1193   if (sec_info->cies)
1194     {
1195       free (sec_info->cies);
1196       sec_info->cies = NULL;
1197     }
1198
1199   offset = 0;
1200   for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1201     if (!ent->removed)
1202       {
1203         ent->new_offset = offset;
1204         offset += size_of_output_cie_fde (ent, ptr_size);
1205       }
1206
1207   sec->rawsize = sec->size;
1208   sec->size = offset;
1209   return offset != sec->rawsize;
1210 }
1211
1212 /* This function is called for .eh_frame_hdr section after
1213    _bfd_elf_discard_section_eh_frame has been called on all .eh_frame
1214    input sections.  It finalizes the size of .eh_frame_hdr section.  */
1215
1216 bfd_boolean
1217 _bfd_elf_discard_section_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
1218 {
1219   struct elf_link_hash_table *htab;
1220   struct eh_frame_hdr_info *hdr_info;
1221   asection *sec;
1222
1223   htab = elf_hash_table (info);
1224   hdr_info = &htab->eh_info;
1225
1226   if (hdr_info->cies != NULL)
1227     {
1228       htab_delete (hdr_info->cies);
1229       hdr_info->cies = NULL;
1230     }
1231
1232   sec = hdr_info->hdr_sec;
1233   if (sec == NULL)
1234     return FALSE;
1235
1236   sec->size = EH_FRAME_HDR_SIZE;
1237   if (hdr_info->table)
1238     sec->size += 4 + hdr_info->fde_count * 8;
1239
1240   elf_eh_frame_hdr (abfd) = sec;
1241   return TRUE;
1242 }
1243
1244 /* Return true if there is at least one non-empty .eh_frame section in
1245    input files.  Can only be called after ld has mapped input to
1246    output sections, and before sections are stripped.  */
1247 bfd_boolean
1248 _bfd_elf_eh_frame_present (struct bfd_link_info *info)
1249 {
1250   asection *eh = bfd_get_section_by_name (info->output_bfd, ".eh_frame");
1251
1252   if (eh == NULL)
1253     return FALSE;
1254
1255   /* Count only sections which have at least a single CIE or FDE.
1256      There cannot be any CIE or FDE <= 8 bytes.  */
1257   for (eh = eh->map_head.s; eh != NULL; eh = eh->map_head.s)
1258     if (eh->size > 8)
1259       return TRUE;
1260
1261   return FALSE;
1262 }
1263
1264 /* This function is called from size_dynamic_sections.
1265    It needs to decide whether .eh_frame_hdr should be output or not,
1266    because when the dynamic symbol table has been sized it is too late
1267    to strip sections.  */
1268
1269 bfd_boolean
1270 _bfd_elf_maybe_strip_eh_frame_hdr (struct bfd_link_info *info)
1271 {
1272   struct elf_link_hash_table *htab;
1273   struct eh_frame_hdr_info *hdr_info;
1274
1275   htab = elf_hash_table (info);
1276   hdr_info = &htab->eh_info;
1277   if (hdr_info->hdr_sec == NULL)
1278     return TRUE;
1279
1280   if (bfd_is_abs_section (hdr_info->hdr_sec->output_section)
1281       || !info->eh_frame_hdr
1282       || !_bfd_elf_eh_frame_present (info))
1283     {
1284       hdr_info->hdr_sec->flags |= SEC_EXCLUDE;
1285       hdr_info->hdr_sec = NULL;
1286       return TRUE;
1287     }
1288
1289   hdr_info->table = TRUE;
1290   return TRUE;
1291 }
1292
1293 /* Adjust an address in the .eh_frame section.  Given OFFSET within
1294    SEC, this returns the new offset in the adjusted .eh_frame section,
1295    or -1 if the address refers to a CIE/FDE which has been removed
1296    or to offset with dynamic relocation which is no longer needed.  */
1297
1298 bfd_vma
1299 _bfd_elf_eh_frame_section_offset (bfd *output_bfd ATTRIBUTE_UNUSED,
1300                                   struct bfd_link_info *info ATTRIBUTE_UNUSED,
1301                                   asection *sec,
1302                                   bfd_vma offset)
1303 {
1304   struct eh_frame_sec_info *sec_info;
1305   unsigned int lo, hi, mid;
1306
1307   if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1308     return offset;
1309   sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1310
1311   if (offset >= sec->rawsize)
1312     return offset - sec->rawsize + sec->size;
1313
1314   lo = 0;
1315   hi = sec_info->count;
1316   mid = 0;
1317   while (lo < hi)
1318     {
1319       mid = (lo + hi) / 2;
1320       if (offset < sec_info->entry[mid].offset)
1321         hi = mid;
1322       else if (offset
1323                >= sec_info->entry[mid].offset + sec_info->entry[mid].size)
1324         lo = mid + 1;
1325       else
1326         break;
1327     }
1328
1329   BFD_ASSERT (lo < hi);
1330
1331   /* FDE or CIE was removed.  */
1332   if (sec_info->entry[mid].removed)
1333     return (bfd_vma) -1;
1334
1335   /* If converting personality pointers to DW_EH_PE_pcrel, there will be
1336      no need for run-time relocation against the personality field.  */
1337   if (sec_info->entry[mid].cie
1338       && sec_info->entry[mid].u.cie.make_per_encoding_relative
1339       && offset == (sec_info->entry[mid].offset + 8
1340                     + sec_info->entry[mid].u.cie.personality_offset))
1341     return (bfd_vma) -2;
1342
1343   /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1344      relocation against FDE's initial_location field.  */
1345   if (!sec_info->entry[mid].cie
1346       && sec_info->entry[mid].make_relative
1347       && offset == sec_info->entry[mid].offset + 8)
1348     return (bfd_vma) -2;
1349
1350   /* If converting LSDA pointers to DW_EH_PE_pcrel, there will be no need
1351      for run-time relocation against LSDA field.  */
1352   if (!sec_info->entry[mid].cie
1353       && sec_info->entry[mid].u.fde.cie_inf->u.cie.make_lsda_relative
1354       && offset == (sec_info->entry[mid].offset + 8
1355                     + sec_info->entry[mid].lsda_offset))
1356     return (bfd_vma) -2;
1357
1358   /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1359      relocation against DW_CFA_set_loc's arguments.  */
1360   if (sec_info->entry[mid].set_loc
1361       && sec_info->entry[mid].make_relative
1362       && (offset >= sec_info->entry[mid].offset + 8
1363                     + sec_info->entry[mid].set_loc[1]))
1364     {
1365       unsigned int cnt;
1366
1367       for (cnt = 1; cnt <= sec_info->entry[mid].set_loc[0]; cnt++)
1368         if (offset == sec_info->entry[mid].offset + 8
1369                       + sec_info->entry[mid].set_loc[cnt])
1370           return (bfd_vma) -2;
1371     }
1372
1373   /* Any new augmentation bytes go before the first relocation.  */
1374   return (offset + sec_info->entry[mid].new_offset
1375           - sec_info->entry[mid].offset
1376           + extra_augmentation_string_bytes (sec_info->entry + mid)
1377           + extra_augmentation_data_bytes (sec_info->entry + mid));
1378 }
1379
1380 /* Write out .eh_frame section.  This is called with the relocated
1381    contents.  */
1382
1383 bfd_boolean
1384 _bfd_elf_write_section_eh_frame (bfd *abfd,
1385                                  struct bfd_link_info *info,
1386                                  asection *sec,
1387                                  bfd_byte *contents)
1388 {
1389   struct eh_frame_sec_info *sec_info;
1390   struct elf_link_hash_table *htab;
1391   struct eh_frame_hdr_info *hdr_info;
1392   unsigned int ptr_size;
1393   struct eh_cie_fde *ent;
1394
1395   if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1396     /* FIXME: octets_per_byte.  */
1397     return bfd_set_section_contents (abfd, sec->output_section, contents,
1398                                      sec->output_offset, sec->size);
1399
1400   ptr_size = (get_elf_backend_data (abfd)
1401               ->elf_backend_eh_frame_address_size (abfd, sec));
1402   BFD_ASSERT (ptr_size != 0);
1403
1404   sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1405   htab = elf_hash_table (info);
1406   hdr_info = &htab->eh_info;
1407
1408   if (hdr_info->table && hdr_info->array == NULL)
1409     hdr_info->array = (struct eh_frame_array_ent *)
1410         bfd_malloc (hdr_info->fde_count * sizeof(*hdr_info->array));
1411   if (hdr_info->array == NULL)
1412     hdr_info = NULL;
1413
1414   /* The new offsets can be bigger or smaller than the original offsets.
1415      We therefore need to make two passes over the section: one backward
1416      pass to move entries up and one forward pass to move entries down.
1417      The two passes won't interfere with each other because entries are
1418      not reordered  */
1419   for (ent = sec_info->entry + sec_info->count; ent-- != sec_info->entry;)
1420     if (!ent->removed && ent->new_offset > ent->offset)
1421       memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
1422
1423   for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1424     if (!ent->removed && ent->new_offset < ent->offset)
1425       memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
1426
1427   for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1428     {
1429       unsigned char *buf, *end;
1430       unsigned int new_size;
1431
1432       if (ent->removed)
1433         continue;
1434
1435       if (ent->size == 4)
1436         {
1437           /* Any terminating FDE must be at the end of the section.  */
1438           BFD_ASSERT (ent == sec_info->entry + sec_info->count - 1);
1439           continue;
1440         }
1441
1442       buf = contents + ent->new_offset;
1443       end = buf + ent->size;
1444       new_size = size_of_output_cie_fde (ent, ptr_size);
1445
1446       /* Update the size.  It may be shrinked.  */
1447       bfd_put_32 (abfd, new_size - 4, buf);
1448
1449       /* Filling the extra bytes with DW_CFA_nops.  */
1450       if (new_size != ent->size)
1451         memset (end, 0, new_size - ent->size);
1452
1453       if (ent->cie)
1454         {
1455           /* CIE */
1456           if (ent->make_relative
1457               || ent->u.cie.make_lsda_relative
1458               || ent->u.cie.per_encoding_relative)
1459             {
1460               char *aug;
1461               unsigned int action, extra_string, extra_data;
1462               unsigned int per_width, per_encoding;
1463
1464               /* Need to find 'R' or 'L' augmentation's argument and modify
1465                  DW_EH_PE_* value.  */
1466               action = ((ent->make_relative ? 1 : 0)
1467                         | (ent->u.cie.make_lsda_relative ? 2 : 0)
1468                         | (ent->u.cie.per_encoding_relative ? 4 : 0));
1469               extra_string = extra_augmentation_string_bytes (ent);
1470               extra_data = extra_augmentation_data_bytes (ent);
1471
1472               /* Skip length, id and version.  */
1473               buf += 9;
1474               aug = (char *) buf;
1475               buf += strlen (aug) + 1;
1476               skip_leb128 (&buf, end);
1477               skip_leb128 (&buf, end);
1478               skip_leb128 (&buf, end);
1479               if (*aug == 'z')
1480                 {
1481                   /* The uleb128 will always be a single byte for the kind
1482                      of augmentation strings that we're prepared to handle.  */
1483                   *buf++ += extra_data;
1484                   aug++;
1485                 }
1486
1487               /* Make room for the new augmentation string and data bytes.  */
1488               memmove (buf + extra_string + extra_data, buf, end - buf);
1489               memmove (aug + extra_string, aug, buf - (bfd_byte *) aug);
1490               buf += extra_string;
1491               end += extra_string + extra_data;
1492
1493               if (ent->add_augmentation_size)
1494                 {
1495                   *aug++ = 'z';
1496                   *buf++ = extra_data - 1;
1497                 }
1498               if (ent->u.cie.add_fde_encoding)
1499                 {
1500                   BFD_ASSERT (action & 1);
1501                   *aug++ = 'R';
1502                   *buf++ = make_pc_relative (DW_EH_PE_absptr, ptr_size);
1503                   action &= ~1;
1504                 }
1505
1506               while (action)
1507                 switch (*aug++)
1508                   {
1509                   case 'L':
1510                     if (action & 2)
1511                       {
1512                         BFD_ASSERT (*buf == ent->lsda_encoding);
1513                         *buf = make_pc_relative (*buf, ptr_size);
1514                         action &= ~2;
1515                       }
1516                     buf++;
1517                     break;
1518                   case 'P':
1519                     if (ent->u.cie.make_per_encoding_relative)
1520                       *buf = make_pc_relative (*buf, ptr_size);
1521                     per_encoding = *buf++;
1522                     per_width = get_DW_EH_PE_width (per_encoding, ptr_size);
1523                     BFD_ASSERT (per_width != 0);
1524                     BFD_ASSERT (((per_encoding & 0x70) == DW_EH_PE_pcrel)
1525                                 == ent->u.cie.per_encoding_relative);
1526                     if ((per_encoding & 0x70) == DW_EH_PE_aligned)
1527                       buf = (contents
1528                              + ((buf - contents + per_width - 1)
1529                                 & ~((bfd_size_type) per_width - 1)));
1530                     if (action & 4)
1531                       {
1532                         bfd_vma val;
1533
1534                         val = read_value (abfd, buf, per_width,
1535                                           get_DW_EH_PE_signed (per_encoding));
1536                         if (ent->u.cie.make_per_encoding_relative)
1537                           val -= (sec->output_section->vma
1538                                   + sec->output_offset
1539                                   + (buf - contents));
1540                         else
1541                           {
1542                             val += (bfd_vma) ent->offset - ent->new_offset;
1543                             val -= extra_string + extra_data;
1544                           }
1545                         write_value (abfd, buf, val, per_width);
1546                         action &= ~4;
1547                       }
1548                     buf += per_width;
1549                     break;
1550                   case 'R':
1551                     if (action & 1)
1552                       {
1553                         BFD_ASSERT (*buf == ent->fde_encoding);
1554                         *buf = make_pc_relative (*buf, ptr_size);
1555                         action &= ~1;
1556                       }
1557                     buf++;
1558                     break;
1559                   case 'S':
1560                     break;
1561                   default:
1562                     BFD_FAIL ();
1563                   }
1564             }
1565         }
1566       else
1567         {
1568           /* FDE */
1569           bfd_vma value, address;
1570           unsigned int width;
1571           bfd_byte *start;
1572           struct eh_cie_fde *cie;
1573
1574           /* Skip length.  */
1575           cie = ent->u.fde.cie_inf;
1576           buf += 4;
1577           value = ((ent->new_offset + sec->output_offset + 4)
1578                    - (cie->new_offset + cie->u.cie.u.sec->output_offset));
1579           bfd_put_32 (abfd, value, buf);
1580           buf += 4;
1581           width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1582           value = read_value (abfd, buf, width,
1583                               get_DW_EH_PE_signed (ent->fde_encoding));
1584           address = value;
1585           if (value)
1586             {
1587               switch (ent->fde_encoding & 0x70)
1588                 {
1589                 case DW_EH_PE_textrel:
1590                   BFD_ASSERT (hdr_info == NULL);
1591                   break;
1592                 case DW_EH_PE_datarel:
1593                   {
1594                     switch (abfd->arch_info->arch)
1595                       {
1596                       case bfd_arch_ia64:
1597                         BFD_ASSERT (elf_gp (abfd) != 0);
1598                         address += elf_gp (abfd);
1599                         break;
1600                       default:
1601                         (*info->callbacks->einfo)
1602                           (_("%P: DW_EH_PE_datarel unspecified"
1603                              " for this architecture.\n"));
1604                         /* Fall thru */
1605                       case bfd_arch_frv:
1606                       case bfd_arch_i386:
1607                         BFD_ASSERT (htab->hgot != NULL
1608                                     && ((htab->hgot->root.type
1609                                          == bfd_link_hash_defined)
1610                                         || (htab->hgot->root.type
1611                                             == bfd_link_hash_defweak)));
1612                         address
1613                           += (htab->hgot->root.u.def.value
1614                               + htab->hgot->root.u.def.section->output_offset
1615                               + (htab->hgot->root.u.def.section->output_section
1616                                  ->vma));
1617                         break;
1618                       }
1619                   }
1620                   break;
1621                 case DW_EH_PE_pcrel:
1622                   value += (bfd_vma) ent->offset - ent->new_offset;
1623                   address += (sec->output_section->vma
1624                               + sec->output_offset
1625                               + ent->offset + 8);
1626                   break;
1627                 }
1628               if (ent->make_relative)
1629                 value -= (sec->output_section->vma
1630                           + sec->output_offset
1631                           + ent->new_offset + 8);
1632               write_value (abfd, buf, value, width);
1633             }
1634
1635           start = buf;
1636
1637           if (hdr_info)
1638             {
1639               /* The address calculation may overflow, giving us a
1640                  value greater than 4G on a 32-bit target when
1641                  dwarf_vma is 64-bit.  */
1642               if (sizeof (address) > 4 && ptr_size == 4)
1643                 address &= 0xffffffff;
1644               hdr_info->array[hdr_info->array_count].initial_loc = address;
1645               hdr_info->array[hdr_info->array_count].range
1646                 = read_value (abfd, buf + width, width, FALSE);
1647               hdr_info->array[hdr_info->array_count++].fde
1648                 = (sec->output_section->vma
1649                    + sec->output_offset
1650                    + ent->new_offset);
1651             }
1652
1653           if ((ent->lsda_encoding & 0x70) == DW_EH_PE_pcrel
1654               || cie->u.cie.make_lsda_relative)
1655             {
1656               buf += ent->lsda_offset;
1657               width = get_DW_EH_PE_width (ent->lsda_encoding, ptr_size);
1658               value = read_value (abfd, buf, width,
1659                                   get_DW_EH_PE_signed (ent->lsda_encoding));
1660               if (value)
1661                 {
1662                   if ((ent->lsda_encoding & 0x70) == DW_EH_PE_pcrel)
1663                     value += (bfd_vma) ent->offset - ent->new_offset;
1664                   else if (cie->u.cie.make_lsda_relative)
1665                     value -= (sec->output_section->vma
1666                               + sec->output_offset
1667                               + ent->new_offset + 8 + ent->lsda_offset);
1668                   write_value (abfd, buf, value, width);
1669                 }
1670             }
1671           else if (ent->add_augmentation_size)
1672             {
1673               /* Skip the PC and length and insert a zero byte for the
1674                  augmentation size.  */
1675               buf += width * 2;
1676               memmove (buf + 1, buf, end - buf);
1677               *buf = 0;
1678             }
1679
1680           if (ent->set_loc)
1681             {
1682               /* Adjust DW_CFA_set_loc.  */
1683               unsigned int cnt;
1684               bfd_vma new_offset;
1685
1686               width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1687               new_offset = ent->new_offset + 8
1688                            + extra_augmentation_string_bytes (ent)
1689                            + extra_augmentation_data_bytes (ent);
1690
1691               for (cnt = 1; cnt <= ent->set_loc[0]; cnt++)
1692                 {
1693                   buf = start + ent->set_loc[cnt];
1694
1695                   value = read_value (abfd, buf, width,
1696                                       get_DW_EH_PE_signed (ent->fde_encoding));
1697                   if (!value)
1698                     continue;
1699
1700                   if ((ent->fde_encoding & 0x70) == DW_EH_PE_pcrel)
1701                     value += (bfd_vma) ent->offset + 8 - new_offset;
1702                   if (ent->make_relative)
1703                     value -= (sec->output_section->vma
1704                               + sec->output_offset
1705                               + new_offset + ent->set_loc[cnt]);
1706                   write_value (abfd, buf, value, width);
1707                 }
1708             }
1709         }
1710     }
1711
1712   /* We don't align the section to its section alignment since the
1713      runtime library only expects all CIE/FDE records aligned at
1714      the pointer size. _bfd_elf_discard_section_eh_frame should
1715      have padded CIE/FDE records to multiple of pointer size with
1716      size_of_output_cie_fde.  */
1717   if ((sec->size % ptr_size) != 0)
1718     abort ();
1719
1720   /* FIXME: octets_per_byte.  */
1721   return bfd_set_section_contents (abfd, sec->output_section,
1722                                    contents, (file_ptr) sec->output_offset,
1723                                    sec->size);
1724 }
1725
1726 /* Helper function used to sort .eh_frame_hdr search table by increasing
1727    VMA of FDE initial location.  */
1728
1729 static int
1730 vma_compare (const void *a, const void *b)
1731 {
1732   const struct eh_frame_array_ent *p = (const struct eh_frame_array_ent *) a;
1733   const struct eh_frame_array_ent *q = (const struct eh_frame_array_ent *) b;
1734   if (p->initial_loc > q->initial_loc)
1735     return 1;
1736   if (p->initial_loc < q->initial_loc)
1737     return -1;
1738   if (p->range > q->range)
1739     return 1;
1740   if (p->range < q->range)
1741     return -1;
1742   return 0;
1743 }
1744
1745 /* Write out .eh_frame_hdr section.  This must be called after
1746    _bfd_elf_write_section_eh_frame has been called on all input
1747    .eh_frame sections.
1748    .eh_frame_hdr format:
1749    ubyte version                (currently 1)
1750    ubyte eh_frame_ptr_enc       (DW_EH_PE_* encoding of pointer to start of
1751                                  .eh_frame section)
1752    ubyte fde_count_enc          (DW_EH_PE_* encoding of total FDE count
1753                                  number (or DW_EH_PE_omit if there is no
1754                                  binary search table computed))
1755    ubyte table_enc              (DW_EH_PE_* encoding of binary search table,
1756                                  or DW_EH_PE_omit if not present.
1757                                  DW_EH_PE_datarel is using address of
1758                                  .eh_frame_hdr section start as base)
1759    [encoded] eh_frame_ptr       (pointer to start of .eh_frame section)
1760    optionally followed by:
1761    [encoded] fde_count          (total number of FDEs in .eh_frame section)
1762    fde_count x [encoded] initial_loc, fde
1763                                 (array of encoded pairs containing
1764                                  FDE initial_location field and FDE address,
1765                                  sorted by increasing initial_loc).  */
1766
1767 bfd_boolean
1768 _bfd_elf_write_section_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
1769 {
1770   struct elf_link_hash_table *htab;
1771   struct eh_frame_hdr_info *hdr_info;
1772   asection *sec;
1773   bfd_boolean retval = TRUE;
1774
1775   htab = elf_hash_table (info);
1776   hdr_info = &htab->eh_info;
1777   sec = hdr_info->hdr_sec;
1778
1779   if (info->eh_frame_hdr && sec != NULL)
1780     {
1781       bfd_byte *contents;
1782       asection *eh_frame_sec;
1783       bfd_size_type size;
1784       bfd_vma encoded_eh_frame;
1785
1786       size = EH_FRAME_HDR_SIZE;
1787       if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1788         size += 4 + hdr_info->fde_count * 8;
1789       contents = (bfd_byte *) bfd_malloc (size);
1790       if (contents == NULL)
1791         return FALSE;
1792
1793       eh_frame_sec = bfd_get_section_by_name (abfd, ".eh_frame");
1794       if (eh_frame_sec == NULL)
1795         {
1796           free (contents);
1797           return FALSE;
1798         }
1799
1800       memset (contents, 0, EH_FRAME_HDR_SIZE);
1801       /* Version.  */
1802       contents[0] = 1;
1803       /* .eh_frame offset.  */
1804       contents[1] = get_elf_backend_data (abfd)->elf_backend_encode_eh_address
1805         (abfd, info, eh_frame_sec, 0, sec, 4, &encoded_eh_frame);
1806
1807       if (hdr_info->array && hdr_info->array_count == hdr_info->fde_count)
1808         {
1809           /* FDE count encoding.  */
1810           contents[2] = DW_EH_PE_udata4;
1811           /* Search table encoding.  */
1812           contents[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4;
1813         }
1814       else
1815         {
1816           contents[2] = DW_EH_PE_omit;
1817           contents[3] = DW_EH_PE_omit;
1818         }
1819       bfd_put_32 (abfd, encoded_eh_frame, contents + 4);
1820
1821       if (contents[2] != DW_EH_PE_omit)
1822         {
1823           unsigned int i;
1824
1825           bfd_put_32 (abfd, hdr_info->fde_count, contents + EH_FRAME_HDR_SIZE);
1826           qsort (hdr_info->array, hdr_info->fde_count,
1827                  sizeof (*hdr_info->array), vma_compare);
1828           for (i = 0; i < hdr_info->fde_count; i++)
1829             {
1830               bfd_vma val;
1831
1832               val = hdr_info->array[i].initial_loc - sec->output_section->vma;
1833               val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1834               if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64
1835                   && (hdr_info->array[i].initial_loc
1836                       != sec->output_section->vma + val))
1837                 (*info->callbacks->einfo)
1838                   (_("%X%P: .eh_frame_hdr table[%u] PC overflow.\n"), i);
1839               bfd_put_32 (abfd, val, contents + EH_FRAME_HDR_SIZE + i * 8 + 4);
1840
1841               val = hdr_info->array[i].fde - sec->output_section->vma;
1842               val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
1843               if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64
1844                   && (hdr_info->array[i].fde
1845                       != sec->output_section->vma + val))
1846                 (*info->callbacks->einfo)
1847                   (_("%X%P: .eh_frame_hdr table[%u] FDE overflow.\n"), i);
1848               bfd_put_32 (abfd, val, contents + EH_FRAME_HDR_SIZE + i * 8 + 8);
1849
1850               if (i != 0
1851                   && (hdr_info->array[i].initial_loc
1852                       < (hdr_info->array[i - 1].initial_loc
1853                          + hdr_info->array[i - 1].range)))
1854                 (*info->callbacks->einfo)
1855                   (_("%X%P: .eh_frame_hdr table[%u] FDE at %V overlaps "
1856                      "table[%u] FDE at %V.\n"),
1857                    i - 1, hdr_info->array[i - 1].fde,
1858                    i, hdr_info->array[i].fde);
1859             }
1860         }
1861
1862       /* FIXME: octets_per_byte.  */
1863       if (!bfd_set_section_contents (abfd, sec->output_section, contents,
1864                                      (file_ptr) sec->output_offset,
1865                                      sec->size))
1866         retval = FALSE;
1867       free (contents);
1868     }
1869   if (hdr_info->array != NULL)
1870     free (hdr_info->array);
1871   return retval;
1872 }
1873
1874 /* Return the width of FDE addresses.  This is the default implementation.  */
1875
1876 unsigned int
1877 _bfd_elf_eh_frame_address_size (bfd *abfd, asection *sec ATTRIBUTE_UNUSED)
1878 {
1879   return elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64 ? 8 : 4;
1880 }
1881
1882 /* Decide whether we can use a PC-relative encoding within the given
1883    EH frame section.  This is the default implementation.  */
1884
1885 bfd_boolean
1886 _bfd_elf_can_make_relative (bfd *input_bfd ATTRIBUTE_UNUSED,
1887                             struct bfd_link_info *info ATTRIBUTE_UNUSED,
1888                             asection *eh_frame_section ATTRIBUTE_UNUSED)
1889 {
1890   return TRUE;
1891 }
1892
1893 /* Select an encoding for the given address.  Preference is given to
1894    PC-relative addressing modes.  */
1895
1896 bfd_byte
1897 _bfd_elf_encode_eh_address (bfd *abfd ATTRIBUTE_UNUSED,
1898                             struct bfd_link_info *info ATTRIBUTE_UNUSED,
1899                             asection *osec, bfd_vma offset,
1900                             asection *loc_sec, bfd_vma loc_offset,
1901                             bfd_vma *encoded)
1902 {
1903   *encoded = osec->vma + offset -
1904     (loc_sec->output_section->vma + loc_sec->output_offset + loc_offset);
1905   return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
1906 }