Coverage Report

Created: 2023-08-28 06:23

/src/binutils-gdb/bfd/elf-eh-frame.c
Line
Count
Source (jump to first uncovered line)
1
/* .eh_frame section optimization.
2
   Copyright (C) 2001-2023 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
0
#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 bool
64
read_byte (bfd_byte **iter, bfd_byte *end, unsigned char *result)
65
0
{
66
0
  if (*iter >= end)
67
0
    return false;
68
0
  *result = *((*iter)++);
69
0
  return true;
70
0
}
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 bool
76
skip_bytes (bfd_byte **iter, bfd_byte *end, bfd_size_type length)
77
0
{
78
0
  if ((bfd_size_type) (end - *iter) < length)
79
0
    {
80
0
      *iter = end;
81
0
      return false;
82
0
    }
83
0
  *iter += length;
84
0
  return true;
85
0
}
86
87
/* Move *ITER over an leb128, stopping at END.  Return true if the end
88
   of the leb128 was found.  */
89
90
static bool
91
skip_leb128 (bfd_byte **iter, bfd_byte *end)
92
0
{
93
0
  unsigned char byte;
94
0
  do
95
0
    if (!read_byte (iter, end, &byte))
96
0
      return false;
97
0
  while (byte & 0x80);
98
0
  return true;
99
0
}
100
101
/* Like skip_leb128, but treat the leb128 as an unsigned value and
102
   store it in *VALUE.  */
103
104
static bool
105
read_uleb128 (bfd_byte **iter, bfd_byte *end, bfd_vma *value)
106
0
{
107
0
  bfd_byte *start, *p;
108
109
0
  start = *iter;
110
0
  if (!skip_leb128 (iter, end))
111
0
    return false;
112
113
0
  p = *iter;
114
0
  *value = *--p;
115
0
  while (p > start)
116
0
    *value = (*value << 7) | (*--p & 0x7f);
117
118
0
  return true;
119
0
}
120
121
/* Like read_uleb128, but for signed values.  */
122
123
static bool
124
read_sleb128 (bfd_byte **iter, bfd_byte *end, bfd_signed_vma *value)
125
0
{
126
0
  bfd_byte *start, *p;
127
128
0
  start = *iter;
129
0
  if (!skip_leb128 (iter, end))
130
0
    return false;
131
132
0
  p = *iter;
133
0
  *value = ((*--p & 0x7f) ^ 0x40) - 0x40;
134
0
  while (p > start)
135
0
    *value = (*value << 7) | (*--p & 0x7f);
136
137
0
  return true;
138
0
}
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
0
{
145
  /* DW_EH_PE_ values of 0x60 and 0x70 weren't defined at the time .eh_frame
146
     was added to bfd.  */
147
0
  if ((encoding & 0x60) == 0x60)
148
0
    return 0;
149
150
0
  switch (encoding & 7)
151
0
    {
152
0
    case DW_EH_PE_udata2: return 2;
153
0
    case DW_EH_PE_udata4: return 4;
154
0
    case DW_EH_PE_udata8: return 8;
155
0
    case DW_EH_PE_absptr: return ptr_size;
156
0
    default:
157
0
      break;
158
0
    }
159
160
0
  return 0;
161
0
}
162
163
0
#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
0
{
170
0
  bfd_vma value;
171
172
0
  switch (width)
173
0
    {
174
0
    case 2:
175
0
      if (is_signed)
176
0
  value = bfd_get_signed_16 (abfd, buf);
177
0
      else
178
0
  value = bfd_get_16 (abfd, buf);
179
0
      break;
180
0
    case 4:
181
0
      if (is_signed)
182
0
  value = bfd_get_signed_32 (abfd, buf);
183
0
      else
184
0
  value = bfd_get_32 (abfd, buf);
185
0
      break;
186
0
    case 8:
187
0
      if (is_signed)
188
0
  value = bfd_get_signed_64 (abfd, buf);
189
0
      else
190
0
  value = bfd_get_64 (abfd, buf);
191
0
      break;
192
0
    default:
193
0
      BFD_FAIL ();
194
0
      return 0;
195
0
    }
196
197
0
  return value;
198
0
}
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
0
{
205
0
  switch (width)
206
0
    {
207
0
    case 2: bfd_put_16 (abfd, value, buf); break;
208
0
    case 4: bfd_put_32 (abfd, value, buf); break;
209
0
    case 8: bfd_put_64 (abfd, value, buf); break;
210
0
    default: BFD_FAIL ();
211
0
    }
212
0
}
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
0
{
219
0
  const struct cie *c1 = (const struct cie *) e1;
220
0
  const struct cie *c2 = (const struct cie *) e2;
221
222
0
  if (c1->hash == c2->hash
223
0
      && c1->length == c2->length
224
0
      && c1->version == c2->version
225
0
      && c1->local_personality == c2->local_personality
226
0
      && strcmp (c1->augmentation, c2->augmentation) == 0
227
0
      && strcmp (c1->augmentation, "eh") != 0
228
0
      && c1->code_align == c2->code_align
229
0
      && c1->data_align == c2->data_align
230
0
      && c1->ra_column == c2->ra_column
231
0
      && c1->augmentation_size == c2->augmentation_size
232
0
      && memcmp (&c1->personality, &c2->personality,
233
0
     sizeof (c1->personality)) == 0
234
0
      && (c1->cie_inf->u.cie.u.sec->output_section
235
0
    == c2->cie_inf->u.cie.u.sec->output_section)
236
0
      && c1->per_encoding == c2->per_encoding
237
0
      && c1->lsda_encoding == c2->lsda_encoding
238
0
      && c1->fde_encoding == c2->fde_encoding
239
0
      && c1->initial_insn_length == c2->initial_insn_length
240
0
      && c1->initial_insn_length <= sizeof (c1->initial_instructions)
241
0
      && memcmp (c1->initial_instructions,
242
0
     c2->initial_instructions,
243
0
     c1->initial_insn_length) == 0)
244
0
    return 1;
245
246
0
  return 0;
247
0
}
248
249
static hashval_t
250
cie_hash (const void *e)
251
0
{
252
0
  const struct cie *c = (const struct cie *) e;
253
0
  return c->hash;
254
0
}
255
256
static hashval_t
257
cie_compute_hash (struct cie *c)
258
0
{
259
0
  hashval_t h = 0;
260
0
  size_t len;
261
0
  h = iterative_hash_object (c->length, h);
262
0
  h = iterative_hash_object (c->version, h);
263
0
  h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h);
264
0
  h = iterative_hash_object (c->code_align, h);
265
0
  h = iterative_hash_object (c->data_align, h);
266
0
  h = iterative_hash_object (c->ra_column, h);
267
0
  h = iterative_hash_object (c->augmentation_size, h);
268
0
  h = iterative_hash_object (c->personality, h);
269
0
  h = iterative_hash_object (c->cie_inf->u.cie.u.sec->output_section, h);
270
0
  h = iterative_hash_object (c->per_encoding, h);
271
0
  h = iterative_hash_object (c->lsda_encoding, h);
272
0
  h = iterative_hash_object (c->fde_encoding, h);
273
0
  h = iterative_hash_object (c->initial_insn_length, h);
274
0
  len = c->initial_insn_length;
275
0
  if (len > sizeof (c->initial_instructions))
276
0
    len = sizeof (c->initial_instructions);
277
0
  h = iterative_hash (c->initial_instructions, len, h);
278
0
  c->hash = h;
279
0
  return h;
280
0
}
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
0
{
288
0
  unsigned int size = 0;
289
0
  if (entry->cie)
290
0
    {
291
0
      if (entry->add_augmentation_size)
292
0
  size++;
293
0
      if (entry->u.cie.add_fde_encoding)
294
0
  size++;
295
0
    }
296
0
  return size;
297
0
}
298
299
/* Likewise ENTRY's augmentation data.  */
300
301
static inline unsigned int
302
extra_augmentation_data_bytes (struct eh_cie_fde *entry)
303
0
{
304
0
  unsigned int size = 0;
305
0
  if (entry->add_augmentation_size)
306
0
    size++;
307
0
  if (entry->cie && entry->u.cie.add_fde_encoding)
308
0
    size++;
309
0
  return size;
310
0
}
311
312
/* Return the size that ENTRY will have in the output.  */
313
314
static unsigned int
315
size_of_output_cie_fde (struct eh_cie_fde *entry)
316
0
{
317
0
  if (entry->removed)
318
0
    return 0;
319
0
  if (entry->size == 4)
320
0
    return 4;
321
0
  return (entry->size
322
0
    + extra_augmentation_string_bytes (entry)
323
0
    + extra_augmentation_data_bytes (entry));
324
0
}
325
326
/* Return the offset of the FDE or CIE after ENT.  */
327
328
static unsigned int
329
next_cie_fde_offset (const struct eh_cie_fde *ent,
330
         const struct eh_cie_fde *last,
331
         const asection *sec)
332
0
{
333
0
  while (++ent < last)
334
0
    {
335
0
      if (!ent->removed)
336
0
  return ent->new_offset;
337
0
    }
338
0
  return sec->size;
339
0
}
340
341
/* Assume that the bytes between *ITER and END are CFA instructions.
342
   Try to move *ITER past the first instruction and return true on
343
   success.  ENCODED_PTR_WIDTH gives the width of pointer entries.  */
344
345
static bool
346
skip_cfa_op (bfd_byte **iter, bfd_byte *end, unsigned int encoded_ptr_width)
347
0
{
348
0
  bfd_byte op;
349
0
  bfd_vma length;
350
351
0
  if (!read_byte (iter, end, &op))
352
0
    return false;
353
354
0
  switch (op & 0xc0 ? op & 0xc0 : op)
355
0
    {
356
0
    case DW_CFA_nop:
357
0
    case DW_CFA_advance_loc:
358
0
    case DW_CFA_restore:
359
0
    case DW_CFA_remember_state:
360
0
    case DW_CFA_restore_state:
361
0
    case DW_CFA_GNU_window_save:
362
      /* No arguments.  */
363
0
      return true;
364
365
0
    case DW_CFA_offset:
366
0
    case DW_CFA_restore_extended:
367
0
    case DW_CFA_undefined:
368
0
    case DW_CFA_same_value:
369
0
    case DW_CFA_def_cfa_register:
370
0
    case DW_CFA_def_cfa_offset:
371
0
    case DW_CFA_def_cfa_offset_sf:
372
0
    case DW_CFA_GNU_args_size:
373
      /* One leb128 argument.  */
374
0
      return skip_leb128 (iter, end);
375
376
0
    case DW_CFA_val_offset:
377
0
    case DW_CFA_val_offset_sf:
378
0
    case DW_CFA_offset_extended:
379
0
    case DW_CFA_register:
380
0
    case DW_CFA_def_cfa:
381
0
    case DW_CFA_offset_extended_sf:
382
0
    case DW_CFA_GNU_negative_offset_extended:
383
0
    case DW_CFA_def_cfa_sf:
384
      /* Two leb128 arguments.  */
385
0
      return (skip_leb128 (iter, end)
386
0
        && skip_leb128 (iter, end));
387
388
0
    case DW_CFA_def_cfa_expression:
389
      /* A variable-length argument.  */
390
0
      return (read_uleb128 (iter, end, &length)
391
0
        && skip_bytes (iter, end, length));
392
393
0
    case DW_CFA_expression:
394
0
    case DW_CFA_val_expression:
395
      /* A leb128 followed by a variable-length argument.  */
396
0
      return (skip_leb128 (iter, end)
397
0
        && read_uleb128 (iter, end, &length)
398
0
        && skip_bytes (iter, end, length));
399
400
0
    case DW_CFA_set_loc:
401
0
      return skip_bytes (iter, end, encoded_ptr_width);
402
403
0
    case DW_CFA_advance_loc1:
404
0
      return skip_bytes (iter, end, 1);
405
406
0
    case DW_CFA_advance_loc2:
407
0
      return skip_bytes (iter, end, 2);
408
409
0
    case DW_CFA_advance_loc4:
410
0
      return skip_bytes (iter, end, 4);
411
412
0
    case DW_CFA_MIPS_advance_loc8:
413
0
      return skip_bytes (iter, end, 8);
414
415
0
    default:
416
0
      return false;
417
0
    }
418
0
}
419
420
/* Try to interpret the bytes between BUF and END as CFA instructions.
421
   If every byte makes sense, return a pointer to the first DW_CFA_nop
422
   padding byte, or END if there is no padding.  Return null otherwise.
423
   ENCODED_PTR_WIDTH is as for skip_cfa_op.  */
424
425
static bfd_byte *
426
skip_non_nops (bfd_byte *buf, bfd_byte *end, unsigned int encoded_ptr_width,
427
         unsigned int *set_loc_count)
428
0
{
429
0
  bfd_byte *last;
430
431
0
  last = buf;
432
0
  while (buf < end)
433
0
    if (*buf == DW_CFA_nop)
434
0
      buf++;
435
0
    else
436
0
      {
437
0
  if (*buf == DW_CFA_set_loc)
438
0
    ++*set_loc_count;
439
0
  if (!skip_cfa_op (&buf, end, encoded_ptr_width))
440
0
    return 0;
441
0
  last = buf;
442
0
      }
443
0
  return last;
444
0
}
445
446
/* Convert absolute encoding ENCODING into PC-relative form.
447
   SIZE is the size of a pointer.  */
448
449
static unsigned char
450
make_pc_relative (unsigned char encoding, unsigned int ptr_size)
451
0
{
452
0
  if ((encoding & 0x7f) == DW_EH_PE_absptr)
453
0
    switch (ptr_size)
454
0
      {
455
0
      case 2:
456
0
  encoding |= DW_EH_PE_sdata2;
457
0
  break;
458
0
      case 4:
459
0
  encoding |= DW_EH_PE_sdata4;
460
0
  break;
461
0
      case 8:
462
0
  encoding |= DW_EH_PE_sdata8;
463
0
  break;
464
0
      }
465
0
  return encoding | DW_EH_PE_pcrel;
466
0
}
467
468
/*  Examine each .eh_frame_entry section and discard those
469
    those that are marked SEC_EXCLUDE.  */
470
471
static void
472
bfd_elf_discard_eh_frame_entry (struct eh_frame_hdr_info *hdr_info)
473
0
{
474
0
  unsigned int i;
475
0
  for (i = 0; i < hdr_info->array_count; i++)
476
0
    {
477
0
      if (hdr_info->u.compact.entries[i]->flags & SEC_EXCLUDE)
478
0
  {
479
0
    unsigned int j;
480
0
    for (j = i + 1; j < hdr_info->array_count; j++)
481
0
      hdr_info->u.compact.entries[j-1] = hdr_info->u.compact.entries[j];
482
483
0
    hdr_info->array_count--;
484
0
    hdr_info->u.compact.entries[hdr_info->array_count] = NULL;
485
0
    i--;
486
0
  }
487
0
    }
488
0
}
489
490
/* Add a .eh_frame_entry section.  */
491
492
static void
493
bfd_elf_record_eh_frame_entry (struct eh_frame_hdr_info *hdr_info,
494
         asection *sec)
495
0
{
496
0
  if (hdr_info->array_count == hdr_info->u.compact.allocated_entries)
497
0
    {
498
0
      if (hdr_info->u.compact.allocated_entries == 0)
499
0
  {
500
0
    hdr_info->frame_hdr_is_compact = true;
501
0
    hdr_info->u.compact.allocated_entries = 2;
502
0
    hdr_info->u.compact.entries =
503
0
      bfd_malloc (hdr_info->u.compact.allocated_entries
504
0
      * sizeof (hdr_info->u.compact.entries[0]));
505
0
  }
506
0
      else
507
0
  {
508
0
    hdr_info->u.compact.allocated_entries *= 2;
509
0
    hdr_info->u.compact.entries =
510
0
      bfd_realloc (hdr_info->u.compact.entries,
511
0
       hdr_info->u.compact.allocated_entries
512
0
         * sizeof (hdr_info->u.compact.entries[0]));
513
0
  }
514
515
0
      BFD_ASSERT (hdr_info->u.compact.entries);
516
0
    }
517
518
0
  hdr_info->u.compact.entries[hdr_info->array_count++] = sec;
519
0
}
520
521
/* Parse a .eh_frame_entry section.  Figure out which text section it
522
   references.  */
523
524
bool
525
_bfd_elf_parse_eh_frame_entry (struct bfd_link_info *info,
526
             asection *sec, struct elf_reloc_cookie *cookie)
527
0
{
528
0
  struct elf_link_hash_table *htab;
529
0
  struct eh_frame_hdr_info *hdr_info;
530
0
  unsigned long r_symndx;
531
0
  asection *text_sec;
532
533
0
  htab = elf_hash_table (info);
534
0
  hdr_info = &htab->eh_info;
535
536
0
  if (sec->size == 0
537
0
      || sec->sec_info_type != SEC_INFO_TYPE_NONE)
538
0
    {
539
0
      return true;
540
0
    }
541
542
0
  if (sec->output_section && bfd_is_abs_section (sec->output_section))
543
0
    {
544
      /* At least one of the sections is being discarded from the
545
   link, so we should just ignore them.  */
546
0
      return true;
547
0
    }
548
549
0
  if (cookie->rel == cookie->relend)
550
0
    return false;
551
552
  /* The first relocation is the function start.  */
553
0
  r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
554
0
  if (r_symndx == STN_UNDEF)
555
0
    return false;
556
557
0
  text_sec = _bfd_elf_section_for_symbol (cookie, r_symndx, false);
558
559
0
  if (text_sec == NULL)
560
0
    return false;
561
562
0
  elf_section_eh_frame_entry (text_sec) = sec;
563
0
  if (text_sec->output_section
564
0
      && bfd_is_abs_section (text_sec->output_section))
565
0
    sec->flags |= SEC_EXCLUDE;
566
567
0
  sec->sec_info_type = SEC_INFO_TYPE_EH_FRAME_ENTRY;
568
0
  elf_section_data (sec)->sec_info = text_sec;
569
0
  bfd_elf_record_eh_frame_entry (hdr_info, sec);
570
0
  return true;
571
0
}
572
573
/* Try to parse .eh_frame section SEC, which belongs to ABFD.  Store the
574
   information in the section's sec_info field on success.  COOKIE
575
   describes the relocations in SEC.  */
576
577
void
578
_bfd_elf_parse_eh_frame (bfd *abfd, struct bfd_link_info *info,
579
       asection *sec, struct elf_reloc_cookie *cookie)
580
0
{
581
0
#define REQUIRE(COND)         \
582
0
  do              \
583
0
    if (!(COND))          \
584
0
      goto free_no_table;       \
585
0
  while (0)
586
587
0
  bfd_byte *ehbuf = NULL, *buf, *end;
588
0
  bfd_byte *last_fde;
589
0
  struct eh_cie_fde *this_inf;
590
0
  unsigned int hdr_length, hdr_id;
591
0
  unsigned int cie_count;
592
0
  struct cie *cie, *local_cies = NULL;
593
0
  struct elf_link_hash_table *htab;
594
0
  struct eh_frame_hdr_info *hdr_info;
595
0
  struct eh_frame_sec_info *sec_info = NULL;
596
0
  unsigned int ptr_size;
597
0
  unsigned int num_cies;
598
0
  unsigned int num_entries;
599
0
  elf_gc_mark_hook_fn gc_mark_hook;
600
601
0
  htab = elf_hash_table (info);
602
0
  hdr_info = &htab->eh_info;
603
604
0
  if (sec->size == 0
605
0
      || (sec->flags & SEC_HAS_CONTENTS) == 0
606
0
      || sec->sec_info_type != SEC_INFO_TYPE_NONE)
607
0
    {
608
      /* This file does not contain .eh_frame information.  */
609
0
      return;
610
0
    }
611
612
0
  if (bfd_is_abs_section (sec->output_section))
613
0
    {
614
      /* At least one of the sections is being discarded from the
615
   link, so we should just ignore them.  */
616
0
      return;
617
0
    }
618
619
  /* Read the frame unwind information from abfd.  */
620
621
0
  REQUIRE (bfd_malloc_and_get_section (abfd, sec, &ehbuf));
622
623
  /* If .eh_frame section size doesn't fit into int, we cannot handle
624
     it (it would need to use 64-bit .eh_frame format anyway).  */
625
0
  REQUIRE (sec->size == (unsigned int) sec->size);
626
627
0
  ptr_size = (get_elf_backend_data (abfd)
628
0
        ->elf_backend_eh_frame_address_size (abfd, sec));
629
0
  REQUIRE (ptr_size != 0);
630
631
  /* Go through the section contents and work out how many FDEs and
632
     CIEs there are.  */
633
0
  buf = ehbuf;
634
0
  end = ehbuf + sec->size;
635
0
  num_cies = 0;
636
0
  num_entries = 0;
637
0
  while (buf != end)
638
0
    {
639
0
      num_entries++;
640
641
      /* Read the length of the entry.  */
642
0
      REQUIRE (skip_bytes (&buf, end, 4));
643
0
      hdr_length = bfd_get_32 (abfd, buf - 4);
644
645
      /* 64-bit .eh_frame is not supported.  */
646
0
      REQUIRE (hdr_length != 0xffffffff);
647
0
      if (hdr_length == 0)
648
0
  break;
649
650
0
      REQUIRE (skip_bytes (&buf, end, 4));
651
0
      hdr_id = bfd_get_32 (abfd, buf - 4);
652
0
      if (hdr_id == 0)
653
0
  num_cies++;
654
655
0
      REQUIRE (skip_bytes (&buf, end, hdr_length - 4));
656
0
    }
657
658
0
  sec_info = (struct eh_frame_sec_info *)
659
0
      bfd_zmalloc (sizeof (struct eh_frame_sec_info)
660
0
       + (num_entries - 1) * sizeof (struct eh_cie_fde));
661
0
  REQUIRE (sec_info);
662
663
  /* We need to have a "struct cie" for each CIE in this section.  */
664
0
  if (num_cies)
665
0
    {
666
0
      local_cies = (struct cie *) bfd_zmalloc (num_cies * sizeof (*local_cies));
667
0
      REQUIRE (local_cies);
668
0
    }
669
670
  /* FIXME: octets_per_byte.  */
671
0
#define ENSURE_NO_RELOCS(buf)       \
672
0
  while (cookie->rel < cookie->relend      \
673
0
   && (cookie->rel->r_offset      \
674
0
       < (bfd_size_type) ((buf) - ehbuf))) \
675
0
    {             \
676
0
      REQUIRE (cookie->rel->r_info == 0);    \
677
0
      cookie->rel++;          \
678
0
    }
679
680
  /* FIXME: octets_per_byte.  */
681
0
#define SKIP_RELOCS(buf)        \
682
0
  while (cookie->rel < cookie->relend      \
683
0
   && (cookie->rel->r_offset      \
684
0
       < (bfd_size_type) ((buf) - ehbuf))) \
685
0
    cookie->rel++
686
687
  /* FIXME: octets_per_byte.  */
688
0
#define GET_RELOC(buf)          \
689
0
  ((cookie->rel < cookie->relend      \
690
0
    && (cookie->rel->r_offset        \
691
0
  == (bfd_size_type) ((buf) - ehbuf)))   \
692
0
   ? cookie->rel : NULL)
693
694
0
  buf = ehbuf;
695
0
  cie_count = 0;
696
0
  gc_mark_hook = get_elf_backend_data (abfd)->gc_mark_hook;
697
0
  while ((bfd_size_type) (buf - ehbuf) != sec->size)
698
0
    {
699
0
      char *aug;
700
0
      bfd_byte *start, *insns, *insns_end;
701
0
      bfd_size_type length;
702
0
      unsigned int set_loc_count;
703
704
0
      this_inf = sec_info->entry + sec_info->count;
705
0
      last_fde = buf;
706
707
      /* Read the length of the entry.  */
708
0
      REQUIRE (skip_bytes (&buf, ehbuf + sec->size, 4));
709
0
      hdr_length = bfd_get_32 (abfd, buf - 4);
710
711
      /* The CIE/FDE must be fully contained in this input section.  */
712
0
      REQUIRE ((bfd_size_type) (buf - ehbuf) + hdr_length <= sec->size);
713
0
      end = buf + hdr_length;
714
715
0
      this_inf->offset = last_fde - ehbuf;
716
0
      this_inf->size = 4 + hdr_length;
717
0
      this_inf->reloc_index = cookie->rel - cookie->rels;
718
719
0
      if (hdr_length == 0)
720
0
  {
721
    /* A zero-length CIE should only be found at the end of
722
       the section, but allow multiple terminators.  */
723
0
    while (skip_bytes (&buf, ehbuf + sec->size, 4))
724
0
      REQUIRE (bfd_get_32 (abfd, buf - 4) == 0);
725
0
    REQUIRE ((bfd_size_type) (buf - ehbuf) == sec->size);
726
0
    ENSURE_NO_RELOCS (buf);
727
0
    sec_info->count++;
728
0
    break;
729
0
  }
730
731
0
      REQUIRE (skip_bytes (&buf, end, 4));
732
0
      hdr_id = bfd_get_32 (abfd, buf - 4);
733
734
0
      if (hdr_id == 0)
735
0
  {
736
0
    unsigned int initial_insn_length;
737
738
    /* CIE  */
739
0
    this_inf->cie = 1;
740
741
    /* Point CIE to one of the section-local cie structures.  */
742
0
    cie = local_cies + cie_count++;
743
744
0
    cie->cie_inf = this_inf;
745
0
    cie->length = hdr_length;
746
0
    start = buf;
747
0
    REQUIRE (read_byte (&buf, end, &cie->version));
748
749
    /* Cannot handle unknown versions.  */
750
0
    REQUIRE (cie->version == 1
751
0
       || cie->version == 3
752
0
       || cie->version == 4);
753
0
    REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation));
754
755
0
    strcpy (cie->augmentation, (char *) buf);
756
0
    buf = (bfd_byte *) strchr ((char *) buf, '\0') + 1;
757
0
    this_inf->u.cie.aug_str_len = buf - start - 1;
758
0
    ENSURE_NO_RELOCS (buf);
759
0
    if (buf[0] == 'e' && buf[1] == 'h')
760
0
      {
761
        /* GCC < 3.0 .eh_frame CIE */
762
        /* We cannot merge "eh" CIEs because __EXCEPTION_TABLE__
763
     is private to each CIE, so we don't need it for anything.
764
     Just skip it.  */
765
0
        REQUIRE (skip_bytes (&buf, end, ptr_size));
766
0
        SKIP_RELOCS (buf);
767
0
      }
768
0
    if (cie->version >= 4)
769
0
      {
770
0
        REQUIRE (buf + 1 < end);
771
0
        REQUIRE (buf[0] == ptr_size);
772
0
        REQUIRE (buf[1] == 0);
773
0
        buf += 2;
774
0
      }
775
0
    REQUIRE (read_uleb128 (&buf, end, &cie->code_align));
776
0
    REQUIRE (read_sleb128 (&buf, end, &cie->data_align));
777
0
    if (cie->version == 1)
778
0
      {
779
0
        REQUIRE (buf < end);
780
0
        cie->ra_column = *buf++;
781
0
      }
782
0
    else
783
0
      REQUIRE (read_uleb128 (&buf, end, &cie->ra_column));
784
0
    ENSURE_NO_RELOCS (buf);
785
0
    cie->lsda_encoding = DW_EH_PE_omit;
786
0
    cie->fde_encoding = DW_EH_PE_omit;
787
0
    cie->per_encoding = DW_EH_PE_omit;
788
0
    aug = cie->augmentation;
789
0
    if (aug[0] != 'e' || aug[1] != 'h')
790
0
      {
791
0
        if (*aug == 'z')
792
0
    {
793
0
      aug++;
794
0
      REQUIRE (read_uleb128 (&buf, end, &cie->augmentation_size));
795
0
      ENSURE_NO_RELOCS (buf);
796
0
    }
797
798
0
        while (*aug != '\0')
799
0
    switch (*aug++)
800
0
      {
801
0
      case 'B':
802
0
        break;
803
0
      case 'L':
804
0
        REQUIRE (read_byte (&buf, end, &cie->lsda_encoding));
805
0
        ENSURE_NO_RELOCS (buf);
806
0
        REQUIRE (get_DW_EH_PE_width (cie->lsda_encoding, ptr_size));
807
0
        break;
808
0
      case 'R':
809
0
        REQUIRE (read_byte (&buf, end, &cie->fde_encoding));
810
0
        ENSURE_NO_RELOCS (buf);
811
0
        REQUIRE (get_DW_EH_PE_width (cie->fde_encoding, ptr_size));
812
0
        break;
813
0
      case 'S':
814
0
        break;
815
0
      case 'P':
816
0
        {
817
0
          int per_width;
818
819
0
          REQUIRE (read_byte (&buf, end, &cie->per_encoding));
820
0
          per_width = get_DW_EH_PE_width (cie->per_encoding,
821
0
                  ptr_size);
822
0
          REQUIRE (per_width);
823
0
          if ((cie->per_encoding & 0x70) == DW_EH_PE_aligned)
824
0
      {
825
0
        length = -(buf - ehbuf) & (per_width - 1);
826
0
        REQUIRE (skip_bytes (&buf, end, length));
827
0
        if (per_width == 8)
828
0
          this_inf->u.cie.per_encoding_aligned8 = 1;
829
0
      }
830
0
          this_inf->u.cie.personality_offset = buf - start;
831
0
          ENSURE_NO_RELOCS (buf);
832
          /* Ensure we have a reloc here.  */
833
0
          REQUIRE (GET_RELOC (buf));
834
0
          cie->personality.reloc_index
835
0
      = cookie->rel - cookie->rels;
836
          /* Cope with MIPS-style composite relocations.  */
837
0
          do
838
0
      cookie->rel++;
839
0
          while (GET_RELOC (buf) != NULL);
840
0
          REQUIRE (skip_bytes (&buf, end, per_width));
841
0
        }
842
0
        break;
843
0
      default:
844
        /* Unrecognized augmentation. Better bail out.  */
845
0
        goto free_no_table;
846
0
      }
847
0
      }
848
0
    this_inf->u.cie.aug_data_len
849
0
      = buf - start - 1 - this_inf->u.cie.aug_str_len;
850
851
    /* For shared libraries, try to get rid of as many RELATIVE relocs
852
       as possible.  */
853
0
    if (bfd_link_pic (info)
854
0
        && (get_elf_backend_data (abfd)
855
0
      ->elf_backend_can_make_relative_eh_frame
856
0
      (abfd, info, sec)))
857
0
      {
858
0
        if ((cie->fde_encoding & 0x70) == DW_EH_PE_absptr)
859
0
    this_inf->make_relative = 1;
860
        /* If the CIE doesn't already have an 'R' entry, it's fairly
861
     easy to add one, provided that there's no aligned data
862
     after the augmentation string.  */
863
0
        else if (cie->fde_encoding == DW_EH_PE_omit
864
0
           && (cie->per_encoding & 0x70) != DW_EH_PE_aligned)
865
0
    {
866
0
      if (*cie->augmentation == 0)
867
0
        this_inf->add_augmentation_size = 1;
868
0
      this_inf->u.cie.add_fde_encoding = 1;
869
0
      this_inf->make_relative = 1;
870
0
    }
871
872
0
        if ((cie->lsda_encoding & 0x70) == DW_EH_PE_absptr)
873
0
    cie->can_make_lsda_relative = 1;
874
0
      }
875
876
    /* If FDE encoding was not specified, it defaults to
877
       DW_EH_absptr.  */
878
0
    if (cie->fde_encoding == DW_EH_PE_omit)
879
0
      cie->fde_encoding = DW_EH_PE_absptr;
880
881
0
    initial_insn_length = end - buf;
882
0
    cie->initial_insn_length = initial_insn_length;
883
0
    memcpy (cie->initial_instructions, buf,
884
0
      initial_insn_length <= sizeof (cie->initial_instructions)
885
0
      ? initial_insn_length : sizeof (cie->initial_instructions));
886
0
    insns = buf;
887
0
    buf += initial_insn_length;
888
0
    ENSURE_NO_RELOCS (buf);
889
890
0
    if (!bfd_link_relocatable (info))
891
0
      {
892
        /* Keep info for merging cies.  */
893
0
        this_inf->u.cie.u.full_cie = cie;
894
0
        this_inf->u.cie.per_encoding_relative
895
0
    = (cie->per_encoding & 0x70) == DW_EH_PE_pcrel;
896
0
      }
897
0
  }
898
0
      else
899
0
  {
900
    /* Find the corresponding CIE.  */
901
0
    unsigned int cie_offset = this_inf->offset + 4 - hdr_id;
902
0
    for (cie = local_cies; cie < local_cies + cie_count; cie++)
903
0
      if (cie_offset == cie->cie_inf->offset)
904
0
        break;
905
906
    /* Ensure this FDE references one of the CIEs in this input
907
       section.  */
908
0
    REQUIRE (cie != local_cies + cie_count);
909
0
    this_inf->u.fde.cie_inf = cie->cie_inf;
910
0
    this_inf->make_relative = cie->cie_inf->make_relative;
911
0
    this_inf->add_augmentation_size
912
0
      = cie->cie_inf->add_augmentation_size;
913
914
0
    ENSURE_NO_RELOCS (buf);
915
0
    if ((sec->flags & SEC_LINKER_CREATED) == 0 || cookie->rels != NULL)
916
0
      {
917
0
        asection *rsec;
918
919
0
        REQUIRE (GET_RELOC (buf));
920
921
        /* Chain together the FDEs for each section.  */
922
0
        rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook,
923
0
              cookie, NULL);
924
        /* RSEC will be NULL if FDE was cleared out as it was belonging to
925
     a discarded SHT_GROUP.  */
926
0
        if (rsec)
927
0
    {
928
0
      REQUIRE (rsec->owner == abfd);
929
0
      this_inf->u.fde.next_for_section = elf_fde_list (rsec);
930
0
      elf_fde_list (rsec) = this_inf;
931
0
    }
932
0
      }
933
934
    /* Skip the initial location and address range.  */
935
0
    start = buf;
936
0
    length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
937
0
    REQUIRE (skip_bytes (&buf, end, 2 * length));
938
939
0
    SKIP_RELOCS (buf - length);
940
0
    if (!GET_RELOC (buf - length)
941
0
        && read_value (abfd, buf - length, length, false) == 0)
942
0
      {
943
0
        (*info->callbacks->minfo)
944
    /* xgettext:c-format */
945
0
    (_("discarding zero address range FDE in %pB(%pA).\n"),
946
0
     abfd, sec);
947
0
        this_inf->u.fde.cie_inf = NULL;
948
0
      }
949
950
    /* Skip the augmentation size, if present.  */
951
0
    if (cie->augmentation[0] == 'z')
952
0
      REQUIRE (read_uleb128 (&buf, end, &length));
953
0
    else
954
0
      length = 0;
955
956
    /* Of the supported augmentation characters above, only 'L'
957
       adds augmentation data to the FDE.  This code would need to
958
       be adjusted if any future augmentations do the same thing.  */
959
0
    if (cie->lsda_encoding != DW_EH_PE_omit)
960
0
      {
961
0
        SKIP_RELOCS (buf);
962
0
        if (cie->can_make_lsda_relative && GET_RELOC (buf))
963
0
    cie->cie_inf->u.cie.make_lsda_relative = 1;
964
0
        this_inf->lsda_offset = buf - start;
965
        /* If there's no 'z' augmentation, we don't know where the
966
     CFA insns begin.  Assume no padding.  */
967
0
        if (cie->augmentation[0] != 'z')
968
0
    length = end - buf;
969
0
      }
970
971
    /* Skip over the augmentation data.  */
972
0
    REQUIRE (skip_bytes (&buf, end, length));
973
0
    insns = buf;
974
975
0
    buf = last_fde + 4 + hdr_length;
976
977
    /* For NULL RSEC (cleared FDE belonging to a discarded section)
978
       the relocations are commonly cleared.  We do not sanity check if
979
       all these relocations are cleared as (1) relocations to
980
       .gcc_except_table will remain uncleared (they will get dropped
981
       with the drop of this unused FDE) and (2) BFD already safely drops
982
       relocations of any type to .eh_frame by
983
       elf_section_ignore_discarded_relocs.
984
       TODO: The .gcc_except_table entries should be also filtered as
985
       .eh_frame entries; or GCC could rather use COMDAT for them.  */
986
0
    SKIP_RELOCS (buf);
987
0
  }
988
989
      /* Try to interpret the CFA instructions and find the first
990
   padding nop.  Shrink this_inf's size so that it doesn't
991
   include the padding.  */
992
0
      length = get_DW_EH_PE_width (cie->fde_encoding, ptr_size);
993
0
      set_loc_count = 0;
994
0
      insns_end = skip_non_nops (insns, end, length, &set_loc_count);
995
      /* If we don't understand the CFA instructions, we can't know
996
   what needs to be adjusted there.  */
997
0
      if (insns_end == NULL
998
    /* For the time being we don't support DW_CFA_set_loc in
999
       CIE instructions.  */
1000
0
    || (set_loc_count && this_inf->cie))
1001
0
  goto free_no_table;
1002
0
      this_inf->size -= end - insns_end;
1003
0
      if (insns_end != end && this_inf->cie)
1004
0
  {
1005
0
    cie->initial_insn_length -= end - insns_end;
1006
0
    cie->length -= end - insns_end;
1007
0
  }
1008
0
      if (set_loc_count
1009
0
    && ((cie->fde_encoding & 0x70) == DW_EH_PE_pcrel
1010
0
        || this_inf->make_relative))
1011
0
  {
1012
0
    unsigned int cnt;
1013
0
    bfd_byte *p;
1014
1015
0
    this_inf->set_loc = (unsigned int *)
1016
0
        bfd_malloc ((set_loc_count + 1) * sizeof (unsigned int));
1017
0
    REQUIRE (this_inf->set_loc);
1018
0
    this_inf->set_loc[0] = set_loc_count;
1019
0
    p = insns;
1020
0
    cnt = 0;
1021
0
    while (p < end)
1022
0
      {
1023
0
        if (*p == DW_CFA_set_loc)
1024
0
    this_inf->set_loc[++cnt] = p + 1 - start;
1025
0
        REQUIRE (skip_cfa_op (&p, end, length));
1026
0
      }
1027
0
  }
1028
1029
0
      this_inf->removed = 1;
1030
0
      this_inf->fde_encoding = cie->fde_encoding;
1031
0
      this_inf->lsda_encoding = cie->lsda_encoding;
1032
0
      sec_info->count++;
1033
0
    }
1034
0
  BFD_ASSERT (sec_info->count == num_entries);
1035
0
  BFD_ASSERT (cie_count == num_cies);
1036
1037
0
  elf_section_data (sec)->sec_info = sec_info;
1038
0
  sec->sec_info_type = SEC_INFO_TYPE_EH_FRAME;
1039
0
  if (!bfd_link_relocatable (info))
1040
0
    {
1041
      /* Keep info for merging cies.  */
1042
0
      sec_info->cies = local_cies;
1043
0
      local_cies = NULL;
1044
0
    }
1045
0
  goto success;
1046
1047
0
 free_no_table:
1048
0
  _bfd_error_handler
1049
    /* xgettext:c-format */
1050
0
    (_("error in %pB(%pA); no .eh_frame_hdr table will be created"),
1051
0
     abfd, sec);
1052
0
  hdr_info->u.dwarf.table = false;
1053
0
  free (sec_info);
1054
0
 success:
1055
0
  free (ehbuf);
1056
0
  free (local_cies);
1057
0
#undef REQUIRE
1058
0
}
1059
1060
/* Order eh_frame_hdr entries by the VMA of their text section.  */
1061
1062
static int
1063
cmp_eh_frame_hdr (const void *a, const void *b)
1064
0
{
1065
0
  bfd_vma text_a;
1066
0
  bfd_vma text_b;
1067
0
  asection *sec;
1068
1069
0
  sec = *(asection *const *)a;
1070
0
  sec = (asection *) elf_section_data (sec)->sec_info;
1071
0
  text_a = sec->output_section->vma + sec->output_offset;
1072
0
  sec = *(asection *const *)b;
1073
0
  sec = (asection *) elf_section_data (sec)->sec_info;
1074
0
  text_b = sec->output_section->vma + sec->output_offset;
1075
1076
0
  if (text_a < text_b)
1077
0
    return -1;
1078
0
  return text_a > text_b;
1079
1080
0
}
1081
1082
/* Add space for a CANTUNWIND terminator to SEC if the text sections
1083
   referenced by it and NEXT are not contiguous, or NEXT is NULL.  */
1084
1085
static void
1086
add_eh_frame_hdr_terminator (asection *sec,
1087
           asection *next)
1088
0
{
1089
0
  bfd_vma end;
1090
0
  bfd_vma next_start;
1091
0
  asection *text_sec;
1092
1093
0
  if (next)
1094
0
    {
1095
      /* See if there is a gap (presumably a text section without unwind info)
1096
   between these two entries.  */
1097
0
      text_sec = (asection *) elf_section_data (sec)->sec_info;
1098
0
      end = text_sec->output_section->vma + text_sec->output_offset
1099
0
      + text_sec->size;
1100
0
      text_sec = (asection *) elf_section_data (next)->sec_info;
1101
0
      next_start = text_sec->output_section->vma + text_sec->output_offset;
1102
0
      if (end == next_start)
1103
0
  return;
1104
0
    }
1105
1106
  /* Add space for a CANTUNWIND terminator.  */
1107
0
  if (!sec->rawsize)
1108
0
    sec->rawsize = sec->size;
1109
1110
0
  bfd_set_section_size (sec, sec->size + 8);
1111
0
}
1112
1113
/* Finish a pass over all .eh_frame_entry sections.  */
1114
1115
bool
1116
_bfd_elf_end_eh_frame_parsing (struct bfd_link_info *info)
1117
0
{
1118
0
  struct eh_frame_hdr_info *hdr_info;
1119
0
  unsigned int i;
1120
1121
0
  hdr_info = &elf_hash_table (info)->eh_info;
1122
1123
0
  if (info->eh_frame_hdr_type != COMPACT_EH_HDR
1124
0
      || hdr_info->array_count == 0)
1125
0
    return false;
1126
1127
0
  bfd_elf_discard_eh_frame_entry (hdr_info);
1128
1129
0
  qsort (hdr_info->u.compact.entries, hdr_info->array_count,
1130
0
   sizeof (asection *), cmp_eh_frame_hdr);
1131
1132
0
  for (i = 0; i < hdr_info->array_count - 1; i++)
1133
0
    {
1134
0
      add_eh_frame_hdr_terminator (hdr_info->u.compact.entries[i],
1135
0
           hdr_info->u.compact.entries[i + 1]);
1136
0
    }
1137
1138
  /* Add a CANTUNWIND terminator after the last entry.  */
1139
0
  add_eh_frame_hdr_terminator (hdr_info->u.compact.entries[i], NULL);
1140
0
  return true;
1141
0
}
1142
1143
/* Mark all relocations against CIE or FDE ENT, which occurs in
1144
   .eh_frame section SEC.  COOKIE describes the relocations in SEC;
1145
   its "rel" field can be changed freely.  */
1146
1147
static bool
1148
mark_entry (struct bfd_link_info *info, asection *sec,
1149
      struct eh_cie_fde *ent, elf_gc_mark_hook_fn gc_mark_hook,
1150
      struct elf_reloc_cookie *cookie)
1151
0
{
1152
  /* FIXME: octets_per_byte.  */
1153
0
  for (cookie->rel = cookie->rels + ent->reloc_index;
1154
0
       cookie->rel < cookie->relend
1155
0
   && cookie->rel->r_offset < ent->offset + ent->size;
1156
0
       cookie->rel++)
1157
0
    if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, cookie))
1158
0
      return false;
1159
1160
0
  return true;
1161
0
}
1162
1163
/* Mark all the relocations against FDEs that relate to code in input
1164
   section SEC.  The FDEs belong to .eh_frame section EH_FRAME, whose
1165
   relocations are described by COOKIE.  */
1166
1167
bool
1168
_bfd_elf_gc_mark_fdes (struct bfd_link_info *info, asection *sec,
1169
           asection *eh_frame, elf_gc_mark_hook_fn gc_mark_hook,
1170
           struct elf_reloc_cookie *cookie)
1171
0
{
1172
0
  struct eh_cie_fde *fde, *cie;
1173
1174
0
  for (fde = elf_fde_list (sec); fde; fde = fde->u.fde.next_for_section)
1175
0
    {
1176
0
      if (!mark_entry (info, eh_frame, fde, gc_mark_hook, cookie))
1177
0
  return false;
1178
1179
      /* At this stage, all cie_inf fields point to local CIEs, so we
1180
   can use the same cookie to refer to them.  */
1181
0
      cie = fde->u.fde.cie_inf;
1182
0
      if (cie != NULL && !cie->u.cie.gc_mark)
1183
0
  {
1184
0
    cie->u.cie.gc_mark = 1;
1185
0
    if (!mark_entry (info, eh_frame, cie, gc_mark_hook, cookie))
1186
0
      return false;
1187
0
  }
1188
0
    }
1189
0
  return true;
1190
0
}
1191
1192
/* Input section SEC of ABFD is an .eh_frame section that contains the
1193
   CIE described by CIE_INF.  Return a version of CIE_INF that is going
1194
   to be kept in the output, adding CIE_INF to the output if necessary.
1195
1196
   HDR_INFO is the .eh_frame_hdr information and COOKIE describes the
1197
   relocations in REL.  */
1198
1199
static struct eh_cie_fde *
1200
find_merged_cie (bfd *abfd, struct bfd_link_info *info, asection *sec,
1201
     struct eh_frame_hdr_info *hdr_info,
1202
     struct elf_reloc_cookie *cookie,
1203
     struct eh_cie_fde *cie_inf)
1204
0
{
1205
0
  unsigned long r_symndx;
1206
0
  struct cie *cie, *new_cie;
1207
0
  Elf_Internal_Rela *rel;
1208
0
  void **loc;
1209
1210
  /* Use CIE_INF if we have already decided to keep it.  */
1211
0
  if (!cie_inf->removed)
1212
0
    return cie_inf;
1213
1214
  /* If we have merged CIE_INF with another CIE, use that CIE instead.  */
1215
0
  if (cie_inf->u.cie.merged)
1216
0
    return cie_inf->u.cie.u.merged_with;
1217
1218
0
  cie = cie_inf->u.cie.u.full_cie;
1219
1220
  /* Assume we will need to keep CIE_INF.  */
1221
0
  cie_inf->removed = 0;
1222
0
  cie_inf->u.cie.u.sec = sec;
1223
1224
  /* If we are not merging CIEs, use CIE_INF.  */
1225
0
  if (cie == NULL)
1226
0
    return cie_inf;
1227
1228
0
  if (cie->per_encoding != DW_EH_PE_omit)
1229
0
    {
1230
0
      bool per_binds_local;
1231
1232
      /* Work out the address of personality routine, or at least
1233
   enough info that we could calculate the address had we made a
1234
   final section layout.  The symbol on the reloc is enough,
1235
   either the hash for a global, or (bfd id, index) pair for a
1236
   local.  The assumption here is that no one uses addends on
1237
   the reloc.  */
1238
0
      rel = cookie->rels + cie->personality.reloc_index;
1239
0
      memset (&cie->personality, 0, sizeof (cie->personality));
1240
0
#ifdef BFD64
1241
0
      if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
1242
0
  r_symndx = ELF64_R_SYM (rel->r_info);
1243
0
      else
1244
0
#endif
1245
0
  r_symndx = ELF32_R_SYM (rel->r_info);
1246
0
      if (r_symndx >= cookie->locsymcount
1247
0
    || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
1248
0
  {
1249
0
    struct elf_link_hash_entry *h;
1250
1251
0
    r_symndx -= cookie->extsymoff;
1252
0
    h = cookie->sym_hashes[r_symndx];
1253
1254
0
    while (h->root.type == bfd_link_hash_indirect
1255
0
     || h->root.type == bfd_link_hash_warning)
1256
0
      h = (struct elf_link_hash_entry *) h->root.u.i.link;
1257
1258
0
    cie->personality.h = h;
1259
0
    per_binds_local = SYMBOL_REFERENCES_LOCAL (info, h);
1260
0
  }
1261
0
      else
1262
0
  {
1263
0
    Elf_Internal_Sym *sym;
1264
0
    asection *sym_sec;
1265
1266
0
    sym = &cookie->locsyms[r_symndx];
1267
0
    sym_sec = bfd_section_from_elf_index (abfd, sym->st_shndx);
1268
0
    if (sym_sec == NULL)
1269
0
      return cie_inf;
1270
1271
0
    if (sym_sec->kept_section != NULL)
1272
0
      sym_sec = sym_sec->kept_section;
1273
0
    if (sym_sec->output_section == NULL)
1274
0
      return cie_inf;
1275
1276
0
    cie->local_personality = 1;
1277
0
    cie->personality.sym.bfd_id = abfd->id;
1278
0
    cie->personality.sym.index = r_symndx;
1279
0
    per_binds_local = true;
1280
0
  }
1281
1282
0
      if (per_binds_local
1283
0
    && bfd_link_pic (info)
1284
0
    && (cie->per_encoding & 0x70) == DW_EH_PE_absptr
1285
0
    && (get_elf_backend_data (abfd)
1286
0
        ->elf_backend_can_make_relative_eh_frame (abfd, info, sec)))
1287
0
  {
1288
0
    cie_inf->u.cie.make_per_encoding_relative = 1;
1289
0
    cie_inf->u.cie.per_encoding_relative = 1;
1290
0
  }
1291
0
    }
1292
1293
  /* See if we can merge this CIE with an earlier one.  */
1294
0
  cie_compute_hash (cie);
1295
0
  if (hdr_info->u.dwarf.cies == NULL)
1296
0
    {
1297
0
      hdr_info->u.dwarf.cies = htab_try_create (1, cie_hash, cie_eq, free);
1298
0
      if (hdr_info->u.dwarf.cies == NULL)
1299
0
  return cie_inf;
1300
0
    }
1301
0
  loc = htab_find_slot_with_hash (hdr_info->u.dwarf.cies, cie,
1302
0
          cie->hash, INSERT);
1303
0
  if (loc == NULL)
1304
0
    return cie_inf;
1305
1306
0
  new_cie = (struct cie *) *loc;
1307
0
  if (new_cie == NULL)
1308
0
    {
1309
      /* Keep CIE_INF and record it in the hash table.  */
1310
0
      new_cie = (struct cie *) malloc (sizeof (struct cie));
1311
0
      if (new_cie == NULL)
1312
0
  return cie_inf;
1313
1314
0
      memcpy (new_cie, cie, sizeof (struct cie));
1315
0
      *loc = new_cie;
1316
0
    }
1317
0
  else
1318
0
    {
1319
      /* Merge CIE_INF with NEW_CIE->CIE_INF.  */
1320
0
      cie_inf->removed = 1;
1321
0
      cie_inf->u.cie.merged = 1;
1322
0
      cie_inf->u.cie.u.merged_with = new_cie->cie_inf;
1323
0
      if (cie_inf->u.cie.make_lsda_relative)
1324
0
  new_cie->cie_inf->u.cie.make_lsda_relative = 1;
1325
0
    }
1326
0
  return new_cie->cie_inf;
1327
0
}
1328
1329
/* For a given OFFSET in SEC, return the delta to the new location
1330
   after .eh_frame editing.  */
1331
1332
static bfd_signed_vma
1333
offset_adjust (bfd_vma offset, const asection *sec)
1334
0
{
1335
0
  struct eh_frame_sec_info *sec_info
1336
0
    = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1337
0
  unsigned int lo, hi, mid;
1338
0
  struct eh_cie_fde *ent = NULL;
1339
0
  bfd_signed_vma delta;
1340
1341
0
  lo = 0;
1342
0
  hi = sec_info->count;
1343
0
  if (hi == 0)
1344
0
    return 0;
1345
1346
0
  while (lo < hi)
1347
0
    {
1348
0
      mid = (lo + hi) / 2;
1349
0
      ent = &sec_info->entry[mid];
1350
0
      if (offset < ent->offset)
1351
0
  hi = mid;
1352
0
      else if (mid + 1 >= hi)
1353
0
  break;
1354
0
      else if (offset >= ent[1].offset)
1355
0
  lo = mid + 1;
1356
0
      else
1357
0
  break;
1358
0
    }
1359
1360
0
  if (!ent->removed)
1361
0
    delta = (bfd_vma) ent->new_offset - (bfd_vma) ent->offset;
1362
0
  else if (ent->cie && ent->u.cie.merged)
1363
0
    {
1364
0
      struct eh_cie_fde *cie = ent->u.cie.u.merged_with;
1365
0
      delta = ((bfd_vma) cie->new_offset + cie->u.cie.u.sec->output_offset
1366
0
         - (bfd_vma) ent->offset - sec->output_offset);
1367
0
    }
1368
0
  else
1369
0
    {
1370
      /* Is putting the symbol on the next entry best for a deleted
1371
   CIE/FDE?  */
1372
0
      struct eh_cie_fde *last = sec_info->entry + sec_info->count;
1373
0
      delta = ((bfd_vma) next_cie_fde_offset (ent, last, sec)
1374
0
         - (bfd_vma) ent->offset);
1375
0
      return delta;
1376
0
    }
1377
1378
  /* Account for editing within this CIE/FDE.  */
1379
0
  offset -= ent->offset;
1380
0
  if (ent->cie)
1381
0
    {
1382
0
      unsigned int extra
1383
0
  = ent->add_augmentation_size + ent->u.cie.add_fde_encoding;
1384
0
      if (extra == 0
1385
0
    || offset <= 9u + ent->u.cie.aug_str_len)
1386
0
  return delta;
1387
0
      delta += extra;
1388
0
      if (offset <= 9u + ent->u.cie.aug_str_len + ent->u.cie.aug_data_len)
1389
0
  return delta;
1390
0
      delta += extra;
1391
0
    }
1392
0
  else
1393
0
    {
1394
0
      unsigned int ptr_size, width, extra = ent->add_augmentation_size;
1395
0
      if (offset <= 12 || extra == 0)
1396
0
  return delta;
1397
0
      ptr_size = (get_elf_backend_data (sec->owner)
1398
0
      ->elf_backend_eh_frame_address_size (sec->owner, sec));
1399
0
      width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1400
0
      if (offset <= 8 + 2 * width)
1401
0
  return delta;
1402
0
      delta += extra;
1403
0
    }
1404
1405
0
  return delta;
1406
0
}
1407
1408
/* Adjust a global symbol defined in .eh_frame, so that it stays
1409
   relative to its original CIE/FDE.  It is assumed that a symbol
1410
   defined at the beginning of a CIE/FDE belongs to that CIE/FDE
1411
   rather than marking the end of the previous CIE/FDE.  This matters
1412
   when a CIE is merged with a previous CIE, since the symbol is
1413
   moved to the merged CIE.  */
1414
1415
bool
1416
_bfd_elf_adjust_eh_frame_global_symbol (struct elf_link_hash_entry *h,
1417
          void *arg ATTRIBUTE_UNUSED)
1418
0
{
1419
0
  asection *sym_sec;
1420
0
  bfd_signed_vma delta;
1421
1422
0
  if (h->root.type != bfd_link_hash_defined
1423
0
      && h->root.type != bfd_link_hash_defweak)
1424
0
    return true;
1425
1426
0
  sym_sec = h->root.u.def.section;
1427
0
  if (sym_sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME
1428
0
      || elf_section_data (sym_sec)->sec_info == NULL)
1429
0
    return true;
1430
1431
0
  delta = offset_adjust (h->root.u.def.value, sym_sec);
1432
0
  h->root.u.def.value += delta;
1433
1434
0
  return true;
1435
0
}
1436
1437
/* The same for all local symbols defined in .eh_frame.  Returns true
1438
   if any symbol was changed.  */
1439
1440
static int
1441
adjust_eh_frame_local_symbols (const asection *sec,
1442
             struct elf_reloc_cookie *cookie)
1443
0
{
1444
0
  int adjusted = 0;
1445
1446
0
  if (cookie->locsymcount > 1)
1447
0
    {
1448
0
      unsigned int shndx = elf_section_data (sec)->this_idx;
1449
0
      Elf_Internal_Sym *end_sym = cookie->locsyms + cookie->locsymcount;
1450
0
      Elf_Internal_Sym *sym;
1451
1452
0
      for (sym = cookie->locsyms + 1; sym < end_sym; ++sym)
1453
0
  if (sym->st_info <= ELF_ST_INFO (STB_LOCAL, STT_OBJECT)
1454
0
      && sym->st_shndx == shndx)
1455
0
    {
1456
0
      bfd_signed_vma delta = offset_adjust (sym->st_value, sec);
1457
1458
0
      if (delta != 0)
1459
0
        {
1460
0
    adjusted = 1;
1461
0
    sym->st_value += delta;
1462
0
        }
1463
0
    }
1464
0
    }
1465
0
  return adjusted;
1466
0
}
1467
1468
/* This function is called for each input file before the .eh_frame
1469
   section is relocated.  It discards duplicate CIEs and FDEs for discarded
1470
   functions.  The function returns TRUE iff any entries have been
1471
   deleted.  */
1472
1473
bool
1474
_bfd_elf_discard_section_eh_frame
1475
   (bfd *abfd, struct bfd_link_info *info, asection *sec,
1476
    bool (*reloc_symbol_deleted_p) (bfd_vma, void *),
1477
    struct elf_reloc_cookie *cookie)
1478
0
{
1479
0
  struct eh_cie_fde *ent;
1480
0
  struct eh_frame_sec_info *sec_info;
1481
0
  struct eh_frame_hdr_info *hdr_info;
1482
0
  unsigned int ptr_size, offset, eh_alignment;
1483
0
  int changed;
1484
1485
0
  if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1486
0
    return false;
1487
1488
0
  sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1489
0
  if (sec_info == NULL)
1490
0
    return false;
1491
1492
0
  ptr_size = (get_elf_backend_data (sec->owner)
1493
0
        ->elf_backend_eh_frame_address_size (sec->owner, sec));
1494
1495
0
  hdr_info = &elf_hash_table (info)->eh_info;
1496
0
  for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1497
0
    if (ent->size == 4)
1498
      /* There should only be one zero terminator, on the last input
1499
   file supplying .eh_frame (crtend.o).  Remove any others.  */
1500
0
      ent->removed = sec->map_head.s != NULL;
1501
0
    else if (!ent->cie && ent->u.fde.cie_inf != NULL)
1502
0
      {
1503
0
  bool keep;
1504
0
  if ((sec->flags & SEC_LINKER_CREATED) != 0 && cookie->rels == NULL)
1505
0
    {
1506
0
      unsigned int width
1507
0
        = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1508
0
      bfd_vma value
1509
0
        = read_value (abfd, sec->contents + ent->offset + 8 + width,
1510
0
          width, get_DW_EH_PE_signed (ent->fde_encoding));
1511
0
      keep = value != 0;
1512
0
    }
1513
0
  else
1514
0
    {
1515
0
      cookie->rel = cookie->rels + ent->reloc_index;
1516
      /* FIXME: octets_per_byte.  */
1517
0
      BFD_ASSERT (cookie->rel < cookie->relend
1518
0
      && cookie->rel->r_offset == ent->offset + 8);
1519
0
      keep = !(*reloc_symbol_deleted_p) (ent->offset + 8, cookie);
1520
0
    }
1521
0
  if (keep)
1522
0
    {
1523
0
      if (bfd_link_pic (info)
1524
0
    && (((ent->fde_encoding & 0x70) == DW_EH_PE_absptr
1525
0
         && ent->make_relative == 0)
1526
0
        || (ent->fde_encoding & 0x70) == DW_EH_PE_aligned))
1527
0
        {
1528
0
    static int num_warnings_issued = 0;
1529
1530
    /* If a shared library uses absolute pointers
1531
       which we cannot turn into PC relative,
1532
       don't create the binary search table,
1533
       since it is affected by runtime relocations.  */
1534
0
    hdr_info->u.dwarf.table = false;
1535
    /* Only warn if --eh-frame-hdr was specified.  */
1536
0
    if (info->eh_frame_hdr_type != 0)
1537
0
      {
1538
0
        if (num_warnings_issued < 10)
1539
0
          {
1540
0
      _bfd_error_handler
1541
        /* xgettext:c-format */
1542
0
        (_("FDE encoding in %pB(%pA) prevents .eh_frame_hdr"
1543
0
           " table being created"), abfd, sec);
1544
0
      num_warnings_issued ++;
1545
0
          }
1546
0
        else if (num_warnings_issued == 10)
1547
0
          {
1548
0
      _bfd_error_handler
1549
0
        (_("further warnings about FDE encoding preventing .eh_frame_hdr generation dropped"));
1550
0
      num_warnings_issued ++;
1551
0
          }
1552
0
      }
1553
0
        }
1554
0
      ent->removed = 0;
1555
0
      hdr_info->u.dwarf.fde_count++;
1556
0
      ent->u.fde.cie_inf = find_merged_cie (abfd, info, sec, hdr_info,
1557
0
              cookie, ent->u.fde.cie_inf);
1558
0
    }
1559
0
      }
1560
1561
0
  free (sec_info->cies);
1562
0
  sec_info->cies = NULL;
1563
1564
  /* It may be that some .eh_frame input section has greater alignment
1565
     than other .eh_frame sections.  In that case we run the risk of
1566
     padding with zeros before that section, which would be seen as a
1567
     zero terminator.  Alignment padding must be added *inside* the
1568
     last FDE instead.  For other FDEs we align according to their
1569
     encoding, in order to align FDE address range entries naturally.  */
1570
0
  offset = 0;
1571
0
  changed = 0;
1572
0
  for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1573
0
    if (!ent->removed)
1574
0
      {
1575
0
  eh_alignment = 4;
1576
0
  if (ent->size == 4)
1577
0
    ;
1578
0
  else if (ent->cie)
1579
0
    {
1580
0
      if (ent->u.cie.per_encoding_aligned8)
1581
0
        eh_alignment = 8;
1582
0
    }
1583
0
  else
1584
0
    {
1585
0
      eh_alignment = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
1586
0
      if (eh_alignment < 4)
1587
0
        eh_alignment = 4;
1588
0
    }
1589
0
  offset = (offset + eh_alignment - 1) & -eh_alignment;
1590
0
  ent->new_offset = offset;
1591
0
  if (ent->new_offset != ent->offset)
1592
0
    changed = 1;
1593
0
  offset += size_of_output_cie_fde (ent);
1594
0
      }
1595
1596
0
  eh_alignment = 4;
1597
0
  offset = (offset + eh_alignment - 1) & -eh_alignment;
1598
0
  sec->rawsize = sec->size;
1599
0
  sec->size = offset;
1600
0
  if (sec->size != sec->rawsize)
1601
0
    changed = 1;
1602
1603
0
  if (changed && adjust_eh_frame_local_symbols (sec, cookie))
1604
0
    {
1605
0
      Elf_Internal_Shdr *symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1606
0
      symtab_hdr->contents = (unsigned char *) cookie->locsyms;
1607
0
    }
1608
0
  return changed;
1609
0
}
1610
1611
/* This function is called for .eh_frame_hdr section after
1612
   _bfd_elf_discard_section_eh_frame has been called on all .eh_frame
1613
   input sections.  It finalizes the size of .eh_frame_hdr section.  */
1614
1615
bool
1616
_bfd_elf_discard_section_eh_frame_hdr (struct bfd_link_info *info)
1617
0
{
1618
0
  struct elf_link_hash_table *htab;
1619
0
  struct eh_frame_hdr_info *hdr_info;
1620
0
  asection *sec;
1621
1622
0
  htab = elf_hash_table (info);
1623
0
  hdr_info = &htab->eh_info;
1624
1625
0
  if (!hdr_info->frame_hdr_is_compact && hdr_info->u.dwarf.cies != NULL)
1626
0
    {
1627
0
      htab_delete (hdr_info->u.dwarf.cies);
1628
0
      hdr_info->u.dwarf.cies = NULL;
1629
0
    }
1630
1631
0
  sec = hdr_info->hdr_sec;
1632
0
  if (sec == NULL)
1633
0
    return false;
1634
1635
0
  if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
1636
0
    {
1637
      /* For compact frames we only add the header.  The actual table comes
1638
   from the .eh_frame_entry sections.  */
1639
0
      sec->size = 8;
1640
0
    }
1641
0
  else
1642
0
    {
1643
0
      sec->size = EH_FRAME_HDR_SIZE;
1644
0
      if (hdr_info->u.dwarf.table)
1645
0
  sec->size += 4 + hdr_info->u.dwarf.fde_count * 8;
1646
0
    }
1647
1648
0
  return true;
1649
0
}
1650
1651
/* Return true if there is at least one non-empty .eh_frame section in
1652
   input files.  Can only be called after ld has mapped input to
1653
   output sections, and before sections are stripped.  */
1654
1655
bool
1656
_bfd_elf_eh_frame_present (struct bfd_link_info *info)
1657
0
{
1658
0
  asection *eh = bfd_get_section_by_name (info->output_bfd, ".eh_frame");
1659
1660
0
  if (eh == NULL)
1661
0
    return false;
1662
1663
  /* Count only sections which have at least a single CIE or FDE.
1664
     There cannot be any CIE or FDE <= 8 bytes.  */
1665
0
  for (eh = eh->map_head.s; eh != NULL; eh = eh->map_head.s)
1666
0
    if (eh->size > 8)
1667
0
      return true;
1668
1669
0
  return false;
1670
0
}
1671
1672
/* Return true if there is at least one .eh_frame_entry section in
1673
   input files.  */
1674
1675
bool
1676
_bfd_elf_eh_frame_entry_present (struct bfd_link_info *info)
1677
0
{
1678
0
  asection *o;
1679
0
  bfd *abfd;
1680
1681
0
  for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
1682
0
    {
1683
0
      for (o = abfd->sections; o; o = o->next)
1684
0
  {
1685
0
    const char *name = bfd_section_name (o);
1686
1687
0
    if (strcmp (name, ".eh_frame_entry")
1688
0
        && !bfd_is_abs_section (o->output_section))
1689
0
      return true;
1690
0
  }
1691
0
    }
1692
0
  return false;
1693
0
}
1694
1695
/* This function is called from size_dynamic_sections.
1696
   It needs to decide whether .eh_frame_hdr should be output or not,
1697
   because when the dynamic symbol table has been sized it is too late
1698
   to strip sections.  */
1699
1700
bool
1701
_bfd_elf_maybe_strip_eh_frame_hdr (struct bfd_link_info *info)
1702
0
{
1703
0
  struct elf_link_hash_table *htab;
1704
0
  struct eh_frame_hdr_info *hdr_info;
1705
0
  struct bfd_link_hash_entry *bh = NULL;
1706
0
  struct elf_link_hash_entry *h;
1707
1708
0
  htab = elf_hash_table (info);
1709
0
  hdr_info = &htab->eh_info;
1710
0
  if (hdr_info->hdr_sec == NULL)
1711
0
    return true;
1712
1713
0
  if (bfd_is_abs_section (hdr_info->hdr_sec->output_section)
1714
0
      || info->eh_frame_hdr_type == 0
1715
0
      || (info->eh_frame_hdr_type == DWARF2_EH_HDR
1716
0
    && !_bfd_elf_eh_frame_present (info))
1717
0
      || (info->eh_frame_hdr_type == COMPACT_EH_HDR
1718
0
    && !_bfd_elf_eh_frame_entry_present (info)))
1719
0
    {
1720
0
      hdr_info->hdr_sec->flags |= SEC_EXCLUDE;
1721
0
      hdr_info->hdr_sec = NULL;
1722
0
      return true;
1723
0
    }
1724
1725
  /* Add a hidden symbol so that systems without access to PHDRs can
1726
     find the table.  */
1727
0
  if (! (_bfd_generic_link_add_one_symbol
1728
0
   (info, info->output_bfd, "__GNU_EH_FRAME_HDR", BSF_LOCAL,
1729
0
    hdr_info->hdr_sec, 0, NULL, false, false, &bh)))
1730
0
    return false;
1731
1732
0
  h = (struct elf_link_hash_entry *) bh;
1733
0
  h->def_regular = 1;
1734
0
  h->other = STV_HIDDEN;
1735
0
  get_elf_backend_data
1736
0
    (info->output_bfd)->elf_backend_hide_symbol (info, h, true);
1737
1738
0
  if (!hdr_info->frame_hdr_is_compact)
1739
0
    hdr_info->u.dwarf.table = true;
1740
0
  return true;
1741
0
}
1742
1743
/* Adjust an address in the .eh_frame section.  Given OFFSET within
1744
   SEC, this returns the new offset in the adjusted .eh_frame section,
1745
   or -1 if the address refers to a CIE/FDE which has been removed
1746
   or to offset with dynamic relocation which is no longer needed.  */
1747
1748
bfd_vma
1749
_bfd_elf_eh_frame_section_offset (bfd *output_bfd ATTRIBUTE_UNUSED,
1750
          struct bfd_link_info *info ATTRIBUTE_UNUSED,
1751
          asection *sec,
1752
          bfd_vma offset)
1753
0
{
1754
0
  struct eh_frame_sec_info *sec_info;
1755
0
  unsigned int lo, hi, mid;
1756
1757
0
  if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1758
0
    return offset;
1759
0
  sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1760
1761
0
  if (offset >= sec->rawsize)
1762
0
    return offset - sec->rawsize + sec->size;
1763
1764
0
  lo = 0;
1765
0
  hi = sec_info->count;
1766
0
  mid = 0;
1767
0
  while (lo < hi)
1768
0
    {
1769
0
      mid = (lo + hi) / 2;
1770
0
      if (offset < sec_info->entry[mid].offset)
1771
0
  hi = mid;
1772
0
      else if (offset
1773
0
         >= sec_info->entry[mid].offset + sec_info->entry[mid].size)
1774
0
  lo = mid + 1;
1775
0
      else
1776
0
  break;
1777
0
    }
1778
1779
0
  BFD_ASSERT (lo < hi);
1780
1781
  /* FDE or CIE was removed.  */
1782
0
  if (sec_info->entry[mid].removed)
1783
0
    return (bfd_vma) -1;
1784
1785
  /* If converting personality pointers to DW_EH_PE_pcrel, there will be
1786
     no need for run-time relocation against the personality field.  */
1787
0
  if (sec_info->entry[mid].cie
1788
0
      && sec_info->entry[mid].u.cie.make_per_encoding_relative
1789
0
      && offset == (sec_info->entry[mid].offset + 8
1790
0
        + sec_info->entry[mid].u.cie.personality_offset))
1791
0
    return (bfd_vma) -2;
1792
1793
  /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1794
     relocation against FDE's initial_location field.  */
1795
0
  if (!sec_info->entry[mid].cie
1796
0
      && sec_info->entry[mid].make_relative
1797
0
      && offset == sec_info->entry[mid].offset + 8)
1798
0
    return (bfd_vma) -2;
1799
1800
  /* If converting LSDA pointers to DW_EH_PE_pcrel, there will be no need
1801
     for run-time relocation against LSDA field.  */
1802
0
  if (!sec_info->entry[mid].cie
1803
0
      && sec_info->entry[mid].u.fde.cie_inf->u.cie.make_lsda_relative
1804
0
      && offset == (sec_info->entry[mid].offset + 8
1805
0
        + sec_info->entry[mid].lsda_offset))
1806
0
    return (bfd_vma) -2;
1807
1808
  /* If converting to DW_EH_PE_pcrel, there will be no need for run-time
1809
     relocation against DW_CFA_set_loc's arguments.  */
1810
0
  if (sec_info->entry[mid].set_loc
1811
0
      && sec_info->entry[mid].make_relative
1812
0
      && (offset >= sec_info->entry[mid].offset + 8
1813
0
        + sec_info->entry[mid].set_loc[1]))
1814
0
    {
1815
0
      unsigned int cnt;
1816
1817
0
      for (cnt = 1; cnt <= sec_info->entry[mid].set_loc[0]; cnt++)
1818
0
  if (offset == sec_info->entry[mid].offset + 8
1819
0
          + sec_info->entry[mid].set_loc[cnt])
1820
0
    return (bfd_vma) -2;
1821
0
    }
1822
1823
  /* Any new augmentation bytes go before the first relocation.  */
1824
0
  return (offset + sec_info->entry[mid].new_offset
1825
0
    - sec_info->entry[mid].offset
1826
0
    + extra_augmentation_string_bytes (sec_info->entry + mid)
1827
0
    + extra_augmentation_data_bytes (sec_info->entry + mid));
1828
0
}
1829
1830
/* Write out .eh_frame_entry section.  Add CANTUNWIND terminator if needed.
1831
   Also check that the contents look sane.  */
1832
1833
bool
1834
_bfd_elf_write_section_eh_frame_entry (bfd *abfd, struct bfd_link_info *info,
1835
               asection *sec, bfd_byte *contents)
1836
0
{
1837
0
  const struct elf_backend_data *bed;
1838
0
  bfd_byte cantunwind[8];
1839
0
  bfd_vma addr;
1840
0
  bfd_vma last_addr;
1841
0
  bfd_vma offset;
1842
0
  asection *text_sec = (asection *) elf_section_data (sec)->sec_info;
1843
1844
0
  if (!sec->rawsize)
1845
0
    sec->rawsize = sec->size;
1846
1847
0
  BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_EH_FRAME_ENTRY);
1848
1849
  /* Check to make sure that the text section corresponding to this eh_frame_entry
1850
     section has not been excluded.  In particular, mips16 stub entries will be
1851
     excluded outside of the normal process.  */
1852
0
  if (sec->flags & SEC_EXCLUDE
1853
0
      || text_sec->flags & SEC_EXCLUDE)
1854
0
    return true;
1855
1856
0
  if (!bfd_set_section_contents (abfd, sec->output_section, contents,
1857
0
         sec->output_offset, sec->rawsize))
1858
0
      return false;
1859
1860
0
  last_addr = bfd_get_signed_32 (abfd, contents);
1861
  /* Check that all the entries are in order.  */
1862
0
  for (offset = 8; offset < sec->rawsize; offset += 8)
1863
0
    {
1864
0
      addr = bfd_get_signed_32 (abfd, contents + offset) + offset;
1865
0
      if (addr <= last_addr)
1866
0
  {
1867
    /* xgettext:c-format */
1868
0
    _bfd_error_handler (_("%pB: %pA not in order"), sec->owner, sec);
1869
0
    return false;
1870
0
  }
1871
1872
0
      last_addr = addr;
1873
0
    }
1874
1875
0
  addr = text_sec->output_section->vma + text_sec->output_offset
1876
0
   + text_sec->size;
1877
0
  addr &= ~1;
1878
0
  addr -= (sec->output_section->vma + sec->output_offset + sec->rawsize);
1879
0
  if (addr & 1)
1880
0
    {
1881
      /* xgettext:c-format */
1882
0
      _bfd_error_handler (_("%pB: %pA invalid input section size"),
1883
0
        sec->owner, sec);
1884
0
      bfd_set_error (bfd_error_bad_value);
1885
0
      return false;
1886
0
    }
1887
0
  if (last_addr >= addr + sec->rawsize)
1888
0
    {
1889
      /* xgettext:c-format */
1890
0
      _bfd_error_handler (_("%pB: %pA points past end of text section"),
1891
0
        sec->owner, sec);
1892
0
      bfd_set_error (bfd_error_bad_value);
1893
0
      return false;
1894
0
    }
1895
1896
0
  if (sec->size == sec->rawsize)
1897
0
    return true;
1898
1899
0
  bed = get_elf_backend_data (abfd);
1900
0
  BFD_ASSERT (sec->size == sec->rawsize + 8);
1901
0
  BFD_ASSERT ((addr & 1) == 0);
1902
0
  BFD_ASSERT (bed->cant_unwind_opcode);
1903
1904
0
  bfd_put_32 (abfd, addr, cantunwind);
1905
0
  bfd_put_32 (abfd, (*bed->cant_unwind_opcode) (info), cantunwind + 4);
1906
0
  return bfd_set_section_contents (abfd, sec->output_section, cantunwind,
1907
0
           sec->output_offset + sec->rawsize, 8);
1908
0
}
1909
1910
/* Write out .eh_frame section.  This is called with the relocated
1911
   contents.  */
1912
1913
bool
1914
_bfd_elf_write_section_eh_frame (bfd *abfd,
1915
         struct bfd_link_info *info,
1916
         asection *sec,
1917
         bfd_byte *contents)
1918
0
{
1919
0
  struct eh_frame_sec_info *sec_info;
1920
0
  struct elf_link_hash_table *htab;
1921
0
  struct eh_frame_hdr_info *hdr_info;
1922
0
  unsigned int ptr_size;
1923
0
  struct eh_cie_fde *ent, *last_ent;
1924
1925
0
  if (sec->sec_info_type != SEC_INFO_TYPE_EH_FRAME)
1926
    /* FIXME: octets_per_byte.  */
1927
0
    return bfd_set_section_contents (abfd, sec->output_section, contents,
1928
0
             sec->output_offset, sec->size);
1929
1930
0
  ptr_size = (get_elf_backend_data (abfd)
1931
0
        ->elf_backend_eh_frame_address_size (abfd, sec));
1932
0
  BFD_ASSERT (ptr_size != 0);
1933
1934
0
  sec_info = (struct eh_frame_sec_info *) elf_section_data (sec)->sec_info;
1935
0
  htab = elf_hash_table (info);
1936
0
  hdr_info = &htab->eh_info;
1937
1938
0
  if (hdr_info->u.dwarf.table && hdr_info->u.dwarf.array == NULL)
1939
0
    {
1940
0
      hdr_info->frame_hdr_is_compact = false;
1941
0
      hdr_info->u.dwarf.array = (struct eh_frame_array_ent *)
1942
0
  bfd_malloc (hdr_info->u.dwarf.fde_count
1943
0
        * sizeof (*hdr_info->u.dwarf.array));
1944
0
    }
1945
0
  if (hdr_info->u.dwarf.array == NULL)
1946
0
    hdr_info = NULL;
1947
1948
  /* The new offsets can be bigger or smaller than the original offsets.
1949
     We therefore need to make two passes over the section: one backward
1950
     pass to move entries up and one forward pass to move entries down.
1951
     The two passes won't interfere with each other because entries are
1952
     not reordered  */
1953
0
  for (ent = sec_info->entry + sec_info->count; ent-- != sec_info->entry;)
1954
0
    if (!ent->removed && ent->new_offset > ent->offset)
1955
0
      memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
1956
1957
0
  for (ent = sec_info->entry; ent < sec_info->entry + sec_info->count; ++ent)
1958
0
    if (!ent->removed && ent->new_offset < ent->offset)
1959
0
      memmove (contents + ent->new_offset, contents + ent->offset, ent->size);
1960
1961
0
  last_ent = sec_info->entry + sec_info->count;
1962
0
  for (ent = sec_info->entry; ent < last_ent; ++ent)
1963
0
    {
1964
0
      unsigned char *buf, *end;
1965
0
      unsigned int new_size;
1966
1967
0
      if (ent->removed)
1968
0
  continue;
1969
1970
0
      if (ent->size == 4)
1971
0
  {
1972
    /* Any terminating FDE must be at the end of the section.  */
1973
0
    BFD_ASSERT (ent == last_ent - 1);
1974
0
    continue;
1975
0
  }
1976
1977
0
      buf = contents + ent->new_offset;
1978
0
      end = buf + ent->size;
1979
0
      new_size = next_cie_fde_offset (ent, last_ent, sec) - ent->new_offset;
1980
1981
      /* Update the size.  It may be shrinked.  */
1982
0
      bfd_put_32 (abfd, new_size - 4, buf);
1983
1984
      /* Filling the extra bytes with DW_CFA_nops.  */
1985
0
      if (new_size != ent->size)
1986
0
  memset (end, 0, new_size - ent->size);
1987
1988
0
      if (ent->cie)
1989
0
  {
1990
    /* CIE */
1991
0
    if (ent->make_relative
1992
0
        || ent->u.cie.make_lsda_relative
1993
0
        || ent->u.cie.per_encoding_relative)
1994
0
      {
1995
0
        char *aug;
1996
0
        unsigned int version, action, extra_string, extra_data;
1997
0
        unsigned int per_width, per_encoding;
1998
1999
        /* Need to find 'R' or 'L' augmentation's argument and modify
2000
     DW_EH_PE_* value.  */
2001
0
        action = ((ent->make_relative ? 1 : 0)
2002
0
      | (ent->u.cie.make_lsda_relative ? 2 : 0)
2003
0
      | (ent->u.cie.per_encoding_relative ? 4 : 0));
2004
0
        extra_string = extra_augmentation_string_bytes (ent);
2005
0
        extra_data = extra_augmentation_data_bytes (ent);
2006
2007
        /* Skip length, id.  */
2008
0
        buf += 8;
2009
0
        version = *buf++;
2010
0
        aug = (char *) buf;
2011
0
        buf += strlen (aug) + 1;
2012
0
        skip_leb128 (&buf, end);
2013
0
        skip_leb128 (&buf, end);
2014
0
        if (version == 1)
2015
0
    skip_bytes (&buf, end, 1);
2016
0
        else
2017
0
    skip_leb128 (&buf, end);
2018
0
        if (*aug == 'z')
2019
0
    {
2020
      /* The uleb128 will always be a single byte for the kind
2021
         of augmentation strings that we're prepared to handle.  */
2022
0
      *buf++ += extra_data;
2023
0
      aug++;
2024
0
    }
2025
2026
        /* Make room for the new augmentation string and data bytes.  */
2027
0
        memmove (buf + extra_string + extra_data, buf, end - buf);
2028
0
        memmove (aug + extra_string, aug, buf - (bfd_byte *) aug);
2029
0
        buf += extra_string;
2030
0
        end += extra_string + extra_data;
2031
2032
0
        if (ent->add_augmentation_size)
2033
0
    {
2034
0
      *aug++ = 'z';
2035
0
      *buf++ = extra_data - 1;
2036
0
    }
2037
0
        if (ent->u.cie.add_fde_encoding)
2038
0
    {
2039
0
      BFD_ASSERT (action & 1);
2040
0
      *aug++ = 'R';
2041
0
      *buf++ = make_pc_relative (DW_EH_PE_absptr, ptr_size);
2042
0
      action &= ~1;
2043
0
    }
2044
2045
0
        while (action)
2046
0
    switch (*aug++)
2047
0
      {
2048
0
      case 'L':
2049
0
        if (action & 2)
2050
0
          {
2051
0
      BFD_ASSERT (*buf == ent->lsda_encoding);
2052
0
      *buf = make_pc_relative (*buf, ptr_size);
2053
0
      action &= ~2;
2054
0
          }
2055
0
        buf++;
2056
0
        break;
2057
0
      case 'P':
2058
0
        if (ent->u.cie.make_per_encoding_relative)
2059
0
          *buf = make_pc_relative (*buf, ptr_size);
2060
0
        per_encoding = *buf++;
2061
0
        per_width = get_DW_EH_PE_width (per_encoding, ptr_size);
2062
0
        BFD_ASSERT (per_width != 0);
2063
0
        BFD_ASSERT (((per_encoding & 0x70) == DW_EH_PE_pcrel)
2064
0
        == ent->u.cie.per_encoding_relative);
2065
0
        if ((per_encoding & 0x70) == DW_EH_PE_aligned)
2066
0
          buf = (contents
2067
0
           + ((buf - contents + per_width - 1)
2068
0
        & ~((bfd_size_type) per_width - 1)));
2069
0
        if (action & 4)
2070
0
          {
2071
0
      bfd_vma val;
2072
2073
0
      val = read_value (abfd, buf, per_width,
2074
0
            get_DW_EH_PE_signed (per_encoding));
2075
0
      if (ent->u.cie.make_per_encoding_relative)
2076
0
        val -= (sec->output_section->vma
2077
0
          + sec->output_offset
2078
0
          + (buf - contents));
2079
0
      else
2080
0
        {
2081
0
          val += (bfd_vma) ent->offset - ent->new_offset;
2082
0
          val -= extra_string + extra_data;
2083
0
        }
2084
0
      write_value (abfd, buf, val, per_width);
2085
0
      action &= ~4;
2086
0
          }
2087
0
        buf += per_width;
2088
0
        break;
2089
0
      case 'R':
2090
0
        if (action & 1)
2091
0
          {
2092
0
      BFD_ASSERT (*buf == ent->fde_encoding);
2093
0
      *buf = make_pc_relative (*buf, ptr_size);
2094
0
      action &= ~1;
2095
0
          }
2096
0
        buf++;
2097
0
        break;
2098
0
      case 'S':
2099
0
        break;
2100
0
      default:
2101
0
        BFD_FAIL ();
2102
0
      }
2103
0
      }
2104
0
  }
2105
0
      else
2106
0
  {
2107
    /* FDE */
2108
0
    bfd_vma value, address;
2109
0
    unsigned int width;
2110
0
    bfd_byte *start;
2111
0
    struct eh_cie_fde *cie;
2112
2113
    /* Skip length.  */
2114
0
    cie = ent->u.fde.cie_inf;
2115
0
    buf += 4;
2116
0
    value = ((ent->new_offset + sec->output_offset + 4)
2117
0
       - (cie->new_offset + cie->u.cie.u.sec->output_offset));
2118
0
    bfd_put_32 (abfd, value, buf);
2119
0
    if (bfd_link_relocatable (info))
2120
0
      continue;
2121
0
    buf += 4;
2122
0
    width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
2123
0
    value = read_value (abfd, buf, width,
2124
0
            get_DW_EH_PE_signed (ent->fde_encoding));
2125
0
    address = value;
2126
0
    if (value)
2127
0
      {
2128
0
        switch (ent->fde_encoding & 0x70)
2129
0
    {
2130
0
    case DW_EH_PE_textrel:
2131
0
      BFD_ASSERT (hdr_info == NULL);
2132
0
      break;
2133
0
    case DW_EH_PE_datarel:
2134
0
      {
2135
0
        switch (abfd->arch_info->arch)
2136
0
          {
2137
0
          case bfd_arch_ia64:
2138
0
      BFD_ASSERT (elf_gp (abfd) != 0);
2139
0
      address += elf_gp (abfd);
2140
0
      break;
2141
0
          default:
2142
0
      _bfd_error_handler
2143
0
        (_("DW_EH_PE_datarel unspecified"
2144
0
           " for this architecture"));
2145
      /* Fall thru */
2146
0
          case bfd_arch_frv:
2147
0
          case bfd_arch_i386:
2148
0
          case bfd_arch_nios2:
2149
0
      BFD_ASSERT (htab->hgot != NULL
2150
0
            && ((htab->hgot->root.type
2151
0
           == bfd_link_hash_defined)
2152
0
          || (htab->hgot->root.type
2153
0
              == bfd_link_hash_defweak)));
2154
0
      address
2155
0
        += (htab->hgot->root.u.def.value
2156
0
            + htab->hgot->root.u.def.section->output_offset
2157
0
            + (htab->hgot->root.u.def.section->output_section
2158
0
         ->vma));
2159
0
      break;
2160
0
          }
2161
0
      }
2162
0
      break;
2163
0
    case DW_EH_PE_pcrel:
2164
0
      value += (bfd_vma) ent->offset - ent->new_offset;
2165
0
      address += (sec->output_section->vma
2166
0
            + sec->output_offset
2167
0
            + ent->offset + 8);
2168
0
      break;
2169
0
    }
2170
0
        if (ent->make_relative)
2171
0
    value -= (sec->output_section->vma
2172
0
        + sec->output_offset
2173
0
        + ent->new_offset + 8);
2174
0
        write_value (abfd, buf, value, width);
2175
0
      }
2176
2177
0
    start = buf;
2178
2179
0
    if (hdr_info)
2180
0
      {
2181
        /* The address calculation may overflow, giving us a
2182
     value greater than 4G on a 32-bit target when
2183
     dwarf_vma is 64-bit.  */
2184
0
        if (sizeof (address) > 4 && ptr_size == 4)
2185
0
    address &= 0xffffffff;
2186
0
        hdr_info->u.dwarf.array[hdr_info->array_count].initial_loc
2187
0
    = address;
2188
0
        hdr_info->u.dwarf.array[hdr_info->array_count].range
2189
0
    = read_value (abfd, buf + width, width, false);
2190
0
        hdr_info->u.dwarf.array[hdr_info->array_count++].fde
2191
0
    = (sec->output_section->vma
2192
0
       + sec->output_offset
2193
0
       + ent->new_offset);
2194
0
      }
2195
2196
0
    if ((ent->lsda_encoding & 0x70) == DW_EH_PE_pcrel
2197
0
        || cie->u.cie.make_lsda_relative)
2198
0
      {
2199
0
        buf += ent->lsda_offset;
2200
0
        width = get_DW_EH_PE_width (ent->lsda_encoding, ptr_size);
2201
0
        value = read_value (abfd, buf, width,
2202
0
          get_DW_EH_PE_signed (ent->lsda_encoding));
2203
0
        if (value)
2204
0
    {
2205
0
      if ((ent->lsda_encoding & 0x70) == DW_EH_PE_pcrel)
2206
0
        value += (bfd_vma) ent->offset - ent->new_offset;
2207
0
      else if (cie->u.cie.make_lsda_relative)
2208
0
        value -= (sec->output_section->vma
2209
0
            + sec->output_offset
2210
0
            + ent->new_offset + 8 + ent->lsda_offset);
2211
0
      write_value (abfd, buf, value, width);
2212
0
    }
2213
0
      }
2214
0
    else if (ent->add_augmentation_size)
2215
0
      {
2216
        /* Skip the PC and length and insert a zero byte for the
2217
     augmentation size.  */
2218
0
        buf += width * 2;
2219
0
        memmove (buf + 1, buf, end - buf);
2220
0
        *buf = 0;
2221
0
      }
2222
2223
0
    if (ent->set_loc)
2224
0
      {
2225
        /* Adjust DW_CFA_set_loc.  */
2226
0
        unsigned int cnt;
2227
0
        bfd_vma new_offset;
2228
2229
0
        width = get_DW_EH_PE_width (ent->fde_encoding, ptr_size);
2230
0
        new_offset = ent->new_offset + 8
2231
0
         + extra_augmentation_string_bytes (ent)
2232
0
         + extra_augmentation_data_bytes (ent);
2233
2234
0
        for (cnt = 1; cnt <= ent->set_loc[0]; cnt++)
2235
0
    {
2236
0
      buf = start + ent->set_loc[cnt];
2237
2238
0
      value = read_value (abfd, buf, width,
2239
0
              get_DW_EH_PE_signed (ent->fde_encoding));
2240
0
      if (!value)
2241
0
        continue;
2242
2243
0
      if ((ent->fde_encoding & 0x70) == DW_EH_PE_pcrel)
2244
0
        value += (bfd_vma) ent->offset + 8 - new_offset;
2245
0
      if (ent->make_relative)
2246
0
        value -= (sec->output_section->vma
2247
0
            + sec->output_offset
2248
0
            + new_offset + ent->set_loc[cnt]);
2249
0
      write_value (abfd, buf, value, width);
2250
0
    }
2251
0
      }
2252
0
  }
2253
0
    }
2254
2255
  /* FIXME: octets_per_byte.  */
2256
0
  return bfd_set_section_contents (abfd, sec->output_section,
2257
0
           contents, (file_ptr) sec->output_offset,
2258
0
           sec->size);
2259
0
}
2260
2261
/* Helper function used to sort .eh_frame_hdr search table by increasing
2262
   VMA of FDE initial location.  */
2263
2264
static int
2265
vma_compare (const void *a, const void *b)
2266
0
{
2267
0
  const struct eh_frame_array_ent *p = (const struct eh_frame_array_ent *) a;
2268
0
  const struct eh_frame_array_ent *q = (const struct eh_frame_array_ent *) b;
2269
0
  if (p->initial_loc > q->initial_loc)
2270
0
    return 1;
2271
0
  if (p->initial_loc < q->initial_loc)
2272
0
    return -1;
2273
0
  if (p->range > q->range)
2274
0
    return 1;
2275
0
  if (p->range < q->range)
2276
0
    return -1;
2277
0
  return 0;
2278
0
}
2279
2280
/* Reorder .eh_frame_entry sections to match the associated text sections.
2281
   This routine is called during the final linking step, just before writing
2282
   the contents.  At this stage, sections in the eh_frame_hdr_info are already
2283
   sorted in order of increasing text section address and so we simply need
2284
   to make the .eh_frame_entrys follow that same order.  Note that it is
2285
   invalid for a linker script to try to force a particular order of
2286
   .eh_frame_entry sections.  */
2287
2288
bool
2289
_bfd_elf_fixup_eh_frame_hdr (struct bfd_link_info *info)
2290
0
{
2291
0
  asection *sec = NULL;
2292
0
  asection *osec;
2293
0
  struct eh_frame_hdr_info *hdr_info;
2294
0
  unsigned int i;
2295
0
  bfd_vma offset;
2296
0
  struct bfd_link_order *p;
2297
2298
0
  hdr_info = &elf_hash_table (info)->eh_info;
2299
2300
0
  if (hdr_info->hdr_sec == NULL
2301
0
      || info->eh_frame_hdr_type != COMPACT_EH_HDR
2302
0
      || hdr_info->array_count == 0)
2303
0
    return true;
2304
2305
  /* Change section output offsets to be in text section order.  */
2306
0
  offset = 8;
2307
0
  osec = hdr_info->u.compact.entries[0]->output_section;
2308
0
  for (i = 0; i < hdr_info->array_count; i++)
2309
0
    {
2310
0
      sec = hdr_info->u.compact.entries[i];
2311
0
      if (sec->output_section != osec)
2312
0
  {
2313
0
    _bfd_error_handler
2314
0
      (_("invalid output section for .eh_frame_entry: %pA"),
2315
0
       sec->output_section);
2316
0
    return false;
2317
0
  }
2318
0
      sec->output_offset = offset;
2319
0
      offset += sec->size;
2320
0
    }
2321
2322
2323
  /* Fix the link_order to match.  */
2324
0
  for (p = sec->output_section->map_head.link_order; p != NULL; p = p->next)
2325
0
    {
2326
0
      if (p->type != bfd_indirect_link_order)
2327
0
  abort();
2328
2329
0
      p->offset = p->u.indirect.section->output_offset;
2330
0
      if (p->next != NULL)
2331
0
  i--;
2332
0
    }
2333
2334
0
  if (i != 0)
2335
0
    {
2336
0
      _bfd_error_handler
2337
0
  (_("invalid contents in %pA section"), osec);
2338
0
      return false;
2339
0
    }
2340
2341
0
  return true;
2342
0
}
2343
2344
/* The .eh_frame_hdr format for Compact EH frames:
2345
   ubyte version    (2)
2346
   ubyte eh_ref_enc   (DW_EH_PE_* encoding of typinfo references)
2347
   uint32_t count   (Number of entries in table)
2348
   [array from .eh_frame_entry sections]  */
2349
2350
static bool
2351
write_compact_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
2352
0
{
2353
0
  struct elf_link_hash_table *htab;
2354
0
  struct eh_frame_hdr_info *hdr_info;
2355
0
  asection *sec;
2356
0
  const struct elf_backend_data *bed;
2357
0
  bfd_vma count;
2358
0
  bfd_byte contents[8];
2359
0
  unsigned int i;
2360
2361
0
  htab = elf_hash_table (info);
2362
0
  hdr_info = &htab->eh_info;
2363
0
  sec = hdr_info->hdr_sec;
2364
2365
0
  if (sec->size != 8)
2366
0
    abort();
2367
2368
0
  for (i = 0; i < sizeof (contents); i++)
2369
0
    contents[i] = 0;
2370
2371
0
  contents[0] = COMPACT_EH_HDR;
2372
0
  bed = get_elf_backend_data (abfd);
2373
2374
0
  BFD_ASSERT (bed->compact_eh_encoding);
2375
0
  contents[1] = (*bed->compact_eh_encoding) (info);
2376
2377
0
  count = (sec->output_section->size - 8) / 8;
2378
0
  bfd_put_32 (abfd, count, contents + 4);
2379
0
  return bfd_set_section_contents (abfd, sec->output_section, contents,
2380
0
           (file_ptr) sec->output_offset, sec->size);
2381
0
}
2382
2383
/* The .eh_frame_hdr format for DWARF frames:
2384
2385
   ubyte version    (currently 1)
2386
   ubyte eh_frame_ptr_enc (DW_EH_PE_* encoding of pointer to start of
2387
         .eh_frame section)
2388
   ubyte fde_count_enc    (DW_EH_PE_* encoding of total FDE count
2389
         number (or DW_EH_PE_omit if there is no
2390
         binary search table computed))
2391
   ubyte table_enc    (DW_EH_PE_* encoding of binary search table,
2392
         or DW_EH_PE_omit if not present.
2393
         DW_EH_PE_datarel is using address of
2394
         .eh_frame_hdr section start as base)
2395
   [encoded] eh_frame_ptr (pointer to start of .eh_frame section)
2396
   optionally followed by:
2397
   [encoded] fde_count    (total number of FDEs in .eh_frame section)
2398
   fde_count x [encoded] initial_loc, fde
2399
        (array of encoded pairs containing
2400
         FDE initial_location field and FDE address,
2401
         sorted by increasing initial_loc).  */
2402
2403
static bool
2404
write_dwarf_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
2405
0
{
2406
0
  struct elf_link_hash_table *htab;
2407
0
  struct eh_frame_hdr_info *hdr_info;
2408
0
  asection *sec;
2409
0
  bool retval = true;
2410
2411
0
  htab = elf_hash_table (info);
2412
0
  hdr_info = &htab->eh_info;
2413
0
  sec = hdr_info->hdr_sec;
2414
0
  bfd_byte *contents;
2415
0
  asection *eh_frame_sec;
2416
0
  bfd_size_type size;
2417
0
  bfd_vma encoded_eh_frame;
2418
2419
0
  size = EH_FRAME_HDR_SIZE;
2420
0
  if (hdr_info->u.dwarf.array
2421
0
      && hdr_info->array_count == hdr_info->u.dwarf.fde_count)
2422
0
    size += 4 + hdr_info->u.dwarf.fde_count * 8;
2423
0
  contents = (bfd_byte *) bfd_malloc (size);
2424
0
  if (contents == NULL)
2425
0
    return false;
2426
2427
0
  eh_frame_sec = bfd_get_section_by_name (abfd, ".eh_frame");
2428
0
  if (eh_frame_sec == NULL)
2429
0
    {
2430
0
      free (contents);
2431
0
      return false;
2432
0
    }
2433
2434
0
  memset (contents, 0, EH_FRAME_HDR_SIZE);
2435
  /* Version.  */
2436
0
  contents[0] = 1;
2437
  /* .eh_frame offset.  */
2438
0
  contents[1] = get_elf_backend_data (abfd)->elf_backend_encode_eh_address
2439
0
    (abfd, info, eh_frame_sec, 0, sec, 4, &encoded_eh_frame);
2440
2441
0
  if (hdr_info->u.dwarf.array
2442
0
      && hdr_info->array_count == hdr_info->u.dwarf.fde_count)
2443
0
    {
2444
      /* FDE count encoding.  */
2445
0
      contents[2] = DW_EH_PE_udata4;
2446
      /* Search table encoding.  */
2447
0
      contents[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4;
2448
0
    }
2449
0
  else
2450
0
    {
2451
0
      contents[2] = DW_EH_PE_omit;
2452
0
      contents[3] = DW_EH_PE_omit;
2453
0
    }
2454
0
  bfd_put_32 (abfd, encoded_eh_frame, contents + 4);
2455
2456
0
  if (contents[2] != DW_EH_PE_omit)
2457
0
    {
2458
0
      unsigned int i;
2459
0
      bool overlap, overflow;
2460
2461
0
      bfd_put_32 (abfd, hdr_info->u.dwarf.fde_count,
2462
0
      contents + EH_FRAME_HDR_SIZE);
2463
0
      qsort (hdr_info->u.dwarf.array, hdr_info->u.dwarf.fde_count,
2464
0
       sizeof (*hdr_info->u.dwarf.array), vma_compare);
2465
0
      overlap = false;
2466
0
      overflow = false;
2467
0
      for (i = 0; i < hdr_info->u.dwarf.fde_count; i++)
2468
0
  {
2469
0
    bfd_vma val;
2470
2471
0
    val = hdr_info->u.dwarf.array[i].initial_loc
2472
0
      - sec->output_section->vma;
2473
0
    val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
2474
0
    if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64
2475
0
        && (hdr_info->u.dwarf.array[i].initial_loc
2476
0
      != sec->output_section->vma + val))
2477
0
      overflow = true;
2478
0
    bfd_put_32 (abfd, val, contents + EH_FRAME_HDR_SIZE + i * 8 + 4);
2479
0
    val = hdr_info->u.dwarf.array[i].fde - sec->output_section->vma;
2480
0
    val = ((val & 0xffffffff) ^ 0x80000000) - 0x80000000;
2481
0
    if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64
2482
0
        && (hdr_info->u.dwarf.array[i].fde
2483
0
      != sec->output_section->vma + val))
2484
0
      overflow = true;
2485
0
    bfd_put_32 (abfd, val, contents + EH_FRAME_HDR_SIZE + i * 8 + 8);
2486
0
    if (i != 0
2487
0
        && (hdr_info->u.dwarf.array[i].initial_loc
2488
0
      < (hdr_info->u.dwarf.array[i - 1].initial_loc
2489
0
         + hdr_info->u.dwarf.array[i - 1].range)))
2490
0
      overlap = true;
2491
0
  }
2492
0
      if (overflow)
2493
0
  _bfd_error_handler (_(".eh_frame_hdr entry overflow"));
2494
0
      if (overlap)
2495
0
  _bfd_error_handler (_(".eh_frame_hdr refers to overlapping FDEs"));
2496
0
      if (overflow || overlap)
2497
0
  {
2498
0
    bfd_set_error (bfd_error_bad_value);
2499
0
    retval = false;
2500
0
  }
2501
0
    }
2502
2503
  /* FIXME: octets_per_byte.  */
2504
0
  if (!bfd_set_section_contents (abfd, sec->output_section, contents,
2505
0
         (file_ptr) sec->output_offset,
2506
0
         sec->size))
2507
0
    retval = false;
2508
0
  free (contents);
2509
2510
0
  free (hdr_info->u.dwarf.array);
2511
0
  return retval;
2512
0
}
2513
2514
/* Write out .eh_frame_hdr section.  This must be called after
2515
   _bfd_elf_write_section_eh_frame has been called on all input
2516
   .eh_frame sections.  */
2517
2518
bool
2519
_bfd_elf_write_section_eh_frame_hdr (bfd *abfd, struct bfd_link_info *info)
2520
0
{
2521
0
  struct elf_link_hash_table *htab;
2522
0
  struct eh_frame_hdr_info *hdr_info;
2523
0
  asection *sec;
2524
2525
0
  htab = elf_hash_table (info);
2526
0
  hdr_info = &htab->eh_info;
2527
0
  sec = hdr_info->hdr_sec;
2528
2529
0
  if (info->eh_frame_hdr_type == 0 || sec == NULL)
2530
0
    return true;
2531
2532
0
  if (info->eh_frame_hdr_type == COMPACT_EH_HDR)
2533
0
    return write_compact_eh_frame_hdr (abfd, info);
2534
0
  else
2535
0
    return write_dwarf_eh_frame_hdr (abfd, info);
2536
0
}
2537
2538
/* Return the width of FDE addresses.  This is the default implementation.  */
2539
2540
unsigned int
2541
_bfd_elf_eh_frame_address_size (bfd *abfd, const asection *sec ATTRIBUTE_UNUSED)
2542
0
{
2543
0
  return elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64 ? 8 : 4;
2544
0
}
2545
2546
/* Decide whether we can use a PC-relative encoding within the given
2547
   EH frame section.  This is the default implementation.  */
2548
2549
bool
2550
_bfd_elf_can_make_relative (bfd *input_bfd ATTRIBUTE_UNUSED,
2551
          struct bfd_link_info *info ATTRIBUTE_UNUSED,
2552
          asection *eh_frame_section ATTRIBUTE_UNUSED)
2553
0
{
2554
0
  return true;
2555
0
}
2556
2557
/* Select an encoding for the given address.  Preference is given to
2558
   PC-relative addressing modes.  */
2559
2560
bfd_byte
2561
_bfd_elf_encode_eh_address (bfd *abfd ATTRIBUTE_UNUSED,
2562
          struct bfd_link_info *info ATTRIBUTE_UNUSED,
2563
          asection *osec, bfd_vma offset,
2564
          asection *loc_sec, bfd_vma loc_offset,
2565
          bfd_vma *encoded)
2566
0
{
2567
0
  *encoded = osec->vma + offset -
2568
0
    (loc_sec->output_section->vma + loc_sec->output_offset + loc_offset);
2569
0
  return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
2570
0
}