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