Don't use %ll
[deliverable/binutils-gdb.git] / bfd / elf-attrs.c
CommitLineData
104d59d1 1/* ELF attributes support (based on ARM EABI attributes).
219d1afa 2 Copyright (C) 2005-2018 Free Software Foundation, Inc.
104d59d1
JM
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
104d59d1
JM
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
104d59d1
JM
20
21#include "sysdep.h"
22#include "bfd.h"
23#include "libiberty.h"
24#include "libbfd.h"
25#include "elf-bfd.h"
26
27/* Return the number of bytes needed by I in uleb128 format. */
28static int
29uleb128_size (unsigned int i)
30{
31 int size;
32 size = 1;
33 while (i >= 0x80)
34 {
35 i >>= 7;
36 size++;
37 }
38 return size;
39}
40
41/* Return TRUE if the attribute has the default value (0/""). */
42static bfd_boolean
43is_default_attr (obj_attribute *attr)
44{
3483fe2e 45 if (ATTR_TYPE_HAS_INT_VAL (attr->type) && attr->i != 0)
104d59d1 46 return FALSE;
3483fe2e 47 if (ATTR_TYPE_HAS_STR_VAL (attr->type) && attr->s && *attr->s)
104d59d1 48 return FALSE;
3483fe2e 49 if (ATTR_TYPE_HAS_NO_DEFAULT (attr->type))
2d0bb761 50 return FALSE;
104d59d1
JM
51
52 return TRUE;
53}
54
55/* Return the size of a single attribute. */
56static bfd_vma
5ee4a1ca 57obj_attr_size (unsigned int tag, obj_attribute *attr)
104d59d1
JM
58{
59 bfd_vma size;
60
61 if (is_default_attr (attr))
62 return 0;
63
64 size = uleb128_size (tag);
3483fe2e 65 if (ATTR_TYPE_HAS_INT_VAL (attr->type))
104d59d1 66 size += uleb128_size (attr->i);
3483fe2e 67 if (ATTR_TYPE_HAS_STR_VAL (attr->type))
104d59d1
JM
68 size += strlen ((char *)attr->s) + 1;
69 return size;
70}
71
72/* Return the vendor name for a given object attributes section. */
73static const char *
74vendor_obj_attr_name (bfd *abfd, int vendor)
75{
76 return (vendor == OBJ_ATTR_PROC
77 ? get_elf_backend_data (abfd)->obj_attrs_vendor
78 : "gnu");
79}
80
81/* Return the size of the object attributes section for VENDOR
82 (OBJ_ATTR_PROC or OBJ_ATTR_GNU), or 0 if there are no attributes
83 for that vendor to record and the vendor is OBJ_ATTR_GNU. */
84static bfd_vma
85vendor_obj_attr_size (bfd *abfd, int vendor)
86{
87 bfd_vma size;
88 obj_attribute *attr;
89 obj_attribute_list *list;
90 int i;
91 const char *vendor_name = vendor_obj_attr_name (abfd, vendor);
92
93 if (!vendor_name)
94 return 0;
95
96 attr = elf_known_obj_attributes (abfd)[vendor];
97 size = 0;
3de4a297 98 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
104d59d1
JM
99 size += obj_attr_size (i, &attr[i]);
100
101 for (list = elf_other_obj_attributes (abfd)[vendor];
102 list;
103 list = list->next)
104 size += obj_attr_size (list->tag, &list->attr);
105
106 /* <size> <vendor_name> NUL 0x1 <size> */
107 return ((size || vendor == OBJ_ATTR_PROC)
108 ? size + 10 + strlen (vendor_name)
109 : 0);
110}
111
112/* Return the size of the object attributes section. */
113bfd_vma
114bfd_elf_obj_attr_size (bfd *abfd)
115{
116 bfd_vma size;
117
118 size = vendor_obj_attr_size (abfd, OBJ_ATTR_PROC);
119 size += vendor_obj_attr_size (abfd, OBJ_ATTR_GNU);
120
121 /* 'A' <sections for each vendor> */
122 return (size ? size + 1 : 0);
123}
124
125/* Write VAL in uleb128 format to P, returning a pointer to the
126 following byte. */
127static bfd_byte *
128write_uleb128 (bfd_byte *p, unsigned int val)
129{
130 bfd_byte c;
131 do
132 {
133 c = val & 0x7f;
134 val >>= 7;
135 if (val)
136 c |= 0x80;
137 *(p++) = c;
138 }
139 while (val);
140 return p;
141}
142
143/* Write attribute ATTR to butter P, and return a pointer to the following
144 byte. */
145static bfd_byte *
5ee4a1ca 146write_obj_attribute (bfd_byte *p, unsigned int tag, obj_attribute *attr)
104d59d1
JM
147{
148 /* Suppress default entries. */
149 if (is_default_attr (attr))
150 return p;
151
152 p = write_uleb128 (p, tag);
3483fe2e 153 if (ATTR_TYPE_HAS_INT_VAL (attr->type))
104d59d1 154 p = write_uleb128 (p, attr->i);
3483fe2e 155 if (ATTR_TYPE_HAS_STR_VAL (attr->type))
104d59d1
JM
156 {
157 int len;
158
159 len = strlen (attr->s) + 1;
160 memcpy (p, attr->s, len);
161 p += len;
162 }
163
164 return p;
165}
166
167/* Write the contents of the object attributes section (length SIZE)
168 for VENDOR to CONTENTS. */
169static void
170vendor_set_obj_attr_contents (bfd *abfd, bfd_byte *contents, bfd_vma size,
171 int vendor)
172{
173 bfd_byte *p;
174 obj_attribute *attr;
175 obj_attribute_list *list;
176 int i;
177 const char *vendor_name = vendor_obj_attr_name (abfd, vendor);
178 size_t vendor_length = strlen (vendor_name) + 1;
179
180 p = contents;
181 bfd_put_32 (abfd, size, p);
182 p += 4;
183 memcpy (p, vendor_name, vendor_length);
184 p += vendor_length;
185 *(p++) = Tag_File;
186 bfd_put_32 (abfd, size - 4 - vendor_length, p);
187 p += 4;
188
189 attr = elf_known_obj_attributes (abfd)[vendor];
3de4a297 190 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
5aa6ff7c 191 {
5ee4a1ca 192 unsigned int tag = i;
5aa6ff7c
AS
193 if (get_elf_backend_data (abfd)->obj_attrs_order)
194 tag = get_elf_backend_data (abfd)->obj_attrs_order (i);
195 p = write_obj_attribute (p, tag, &attr[tag]);
196 }
104d59d1
JM
197
198 for (list = elf_other_obj_attributes (abfd)[vendor];
199 list;
200 list = list->next)
201 p = write_obj_attribute (p, list->tag, &list->attr);
202}
203
204/* Write the contents of the object attributes section to CONTENTS. */
205void
206bfd_elf_set_obj_attr_contents (bfd *abfd, bfd_byte *contents, bfd_vma size)
207{
208 bfd_byte *p;
209 int vendor;
210 bfd_vma my_size;
211
212 p = contents;
213 *(p++) = 'A';
214 my_size = 1;
215 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
216 {
217 bfd_vma vendor_size = vendor_obj_attr_size (abfd, vendor);
218 if (vendor_size)
219 vendor_set_obj_attr_contents (abfd, p, vendor_size, vendor);
220 p += vendor_size;
221 my_size += vendor_size;
222 }
223
224 if (size != my_size)
225 abort ();
226}
227
228/* Allocate/find an object attribute. */
229static obj_attribute *
5ee4a1ca 230elf_new_obj_attr (bfd *abfd, int vendor, unsigned int tag)
104d59d1
JM
231{
232 obj_attribute *attr;
233 obj_attribute_list *list;
234 obj_attribute_list *p;
235 obj_attribute_list **lastp;
236
237
238 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
239 {
d334575b 240 /* Known tags are preallocated. */
104d59d1
JM
241 attr = &elf_known_obj_attributes (abfd)[vendor][tag];
242 }
243 else
244 {
245 /* Create a new tag. */
246 list = (obj_attribute_list *)
247 bfd_alloc (abfd, sizeof (obj_attribute_list));
248 memset (list, 0, sizeof (obj_attribute_list));
249 list->tag = tag;
250 /* Keep the tag list in order. */
251 lastp = &elf_other_obj_attributes (abfd)[vendor];
252 for (p = *lastp; p; p = p->next)
253 {
254 if (tag < p->tag)
255 break;
256 lastp = &p->next;
257 }
258 list->next = *lastp;
259 *lastp = list;
260 attr = &list->attr;
261 }
262
263 return attr;
264}
265
266/* Return the value of an integer object attribute. */
267int
5ee4a1ca 268bfd_elf_get_obj_attr_int (bfd *abfd, int vendor, unsigned int tag)
104d59d1
JM
269{
270 obj_attribute_list *p;
271
272 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
273 {
d334575b 274 /* Known tags are preallocated. */
104d59d1
JM
275 return elf_known_obj_attributes (abfd)[vendor][tag].i;
276 }
277 else
278 {
279 for (p = elf_other_obj_attributes (abfd)[vendor];
280 p;
281 p = p->next)
282 {
283 if (tag == p->tag)
284 return p->attr.i;
285 if (tag < p->tag)
286 break;
287 }
288 return 0;
289 }
290}
291
292/* Add an integer object attribute. */
293void
5ee4a1ca 294bfd_elf_add_obj_attr_int (bfd *abfd, int vendor, unsigned int tag, unsigned int i)
104d59d1
JM
295{
296 obj_attribute *attr;
297
298 attr = elf_new_obj_attr (abfd, vendor, tag);
2d0bb761 299 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
104d59d1
JM
300 attr->i = i;
301}
302
303/* Duplicate an object attribute string value. */
304char *
305_bfd_elf_attr_strdup (bfd *abfd, const char * s)
306{
307 char * p;
308 int len;
a50b1753 309
104d59d1
JM
310 len = strlen (s) + 1;
311 p = (char *) bfd_alloc (abfd, len);
a50b1753 312 return (char *) memcpy (p, s, len);
104d59d1
JM
313}
314
315/* Add a string object attribute. */
316void
5ee4a1ca 317bfd_elf_add_obj_attr_string (bfd *abfd, int vendor, unsigned int tag, const char *s)
104d59d1
JM
318{
319 obj_attribute *attr;
320
321 attr = elf_new_obj_attr (abfd, vendor, tag);
2d0bb761 322 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
104d59d1
JM
323 attr->s = _bfd_elf_attr_strdup (abfd, s);
324}
325
7b86a9fa 326/* Add a int+string object attribute. */
104d59d1 327void
5ee4a1ca
NC
328bfd_elf_add_obj_attr_int_string (bfd *abfd, int vendor,
329 unsigned int tag,
7b86a9fa 330 unsigned int i, const char *s)
104d59d1 331{
7b86a9fa 332 obj_attribute *attr;
104d59d1 333
7b86a9fa 334 attr = elf_new_obj_attr (abfd, vendor, tag);
2d0bb761 335 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
7b86a9fa
AS
336 attr->i = i;
337 attr->s = _bfd_elf_attr_strdup (abfd, s);
104d59d1
JM
338}
339
340/* Copy the object attributes from IBFD to OBFD. */
341void
342_bfd_elf_copy_obj_attributes (bfd *ibfd, bfd *obfd)
343{
344 obj_attribute *in_attr;
345 obj_attribute *out_attr;
346 obj_attribute_list *list;
347 int i;
348 int vendor;
349
dafbc74d
AM
350 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
351 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
352 return;
353
104d59d1
JM
354 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
355 {
3de4a297
JM
356 in_attr
357 = &elf_known_obj_attributes (ibfd)[vendor][LEAST_KNOWN_OBJ_ATTRIBUTE];
358 out_attr
359 = &elf_known_obj_attributes (obfd)[vendor][LEAST_KNOWN_OBJ_ATTRIBUTE];
360 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
104d59d1
JM
361 {
362 out_attr->type = in_attr->type;
363 out_attr->i = in_attr->i;
364 if (in_attr->s && *in_attr->s)
365 out_attr->s = _bfd_elf_attr_strdup (obfd, in_attr->s);
366 in_attr++;
367 out_attr++;
368 }
369
370 for (list = elf_other_obj_attributes (ibfd)[vendor];
371 list;
372 list = list->next)
373 {
374 in_attr = &list->attr;
3483fe2e 375 switch (in_attr->type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
104d59d1 376 {
3483fe2e 377 case ATTR_TYPE_FLAG_INT_VAL:
104d59d1
JM
378 bfd_elf_add_obj_attr_int (obfd, vendor, list->tag, in_attr->i);
379 break;
3483fe2e 380 case ATTR_TYPE_FLAG_STR_VAL:
104d59d1
JM
381 bfd_elf_add_obj_attr_string (obfd, vendor, list->tag,
382 in_attr->s);
383 break;
3483fe2e 384 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
7b86a9fa
AS
385 bfd_elf_add_obj_attr_int_string (obfd, vendor, list->tag,
386 in_attr->i, in_attr->s);
104d59d1
JM
387 break;
388 default:
389 abort ();
390 }
391 }
392 }
393}
394
395/* Determine whether a GNU object attribute tag takes an integer, a
396 string or both. */
397static int
5ee4a1ca 398gnu_obj_attrs_arg_type (unsigned int tag)
104d59d1
JM
399{
400 /* Except for Tag_compatibility, for GNU attributes we follow the
401 same rule ARM ones > 32 follow: odd-numbered tags take strings
402 and even-numbered tags take integers. In addition, tag & 2 is
403 nonzero for architecture-independent tags and zero for
404 architecture-dependent ones. */
405 if (tag == Tag_compatibility)
406 return 3;
407 else
408 return (tag & 1) != 0 ? 2 : 1;
409}
410
411/* Determine what arguments an attribute tag takes. */
412int
5ee4a1ca 413_bfd_elf_obj_attrs_arg_type (bfd *abfd, int vendor, unsigned int tag)
104d59d1
JM
414{
415 switch (vendor)
416 {
417 case OBJ_ATTR_PROC:
418 return get_elf_backend_data (abfd)->obj_attrs_arg_type (tag);
419 break;
420 case OBJ_ATTR_GNU:
421 return gnu_obj_attrs_arg_type (tag);
422 break;
423 default:
424 abort ();
425 }
426}
427
428/* Parse an object attributes section. */
429void
430_bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr)
431{
432 bfd_byte *contents;
433 bfd_byte *p;
06614111 434 bfd_byte *p_end;
104d59d1 435 bfd_vma len;
45dfa85a 436 const char *std_sec;
104d59d1 437
06614111
NC
438 /* PR 17512: file: 2844a11d. */
439 if (hdr->sh_size == 0)
440 return;
2a143b99 441 contents = (bfd_byte *) bfd_malloc (hdr->sh_size + 1);
104d59d1
JM
442 if (!contents)
443 return;
444 if (!bfd_get_section_contents (abfd, hdr->bfd_section, contents, 0,
445 hdr->sh_size))
446 {
447 free (contents);
448 return;
449 }
2a143b99
NC
450 /* Ensure that the buffer is NUL terminated. */
451 contents[hdr->sh_size] = 0;
104d59d1 452 p = contents;
06614111 453 p_end = p + hdr->sh_size;
45dfa85a 454 std_sec = get_elf_backend_data (abfd)->obj_attrs_vendor;
1b786873 455
104d59d1
JM
456 if (*(p++) == 'A')
457 {
458 len = hdr->sh_size - 1;
06614111
NC
459
460 while (len > 0 && p < p_end - 4)
104d59d1 461 {
e9847026 462 unsigned namelen;
104d59d1
JM
463 bfd_vma section_len;
464 int vendor;
465
466 section_len = bfd_get_32 (abfd, p);
467 p += 4;
1fe9dc45
WN
468 if (section_len == 0)
469 break;
104d59d1
JM
470 if (section_len > len)
471 section_len = len;
472 len -= section_len;
24d3e51b
NC
473 if (section_len <= 4)
474 {
871b3ab2 475 _bfd_error_handler (_("%pB: error: attribute section length too small: %ld"),
24d3e51b
NC
476 abfd, section_len);
477 break;
478 }
e9847026
NC
479 section_len -= 4;
480 namelen = strnlen ((char *) p, section_len) + 1;
481 if (namelen == 0 || namelen >= section_len)
482 break;
483 section_len -= namelen;
45dfa85a 484 if (std_sec && strcmp ((char *) p, std_sec) == 0)
104d59d1 485 vendor = OBJ_ATTR_PROC;
45dfa85a 486 else if (strcmp ((char *) p, "gnu") == 0)
104d59d1
JM
487 vendor = OBJ_ATTR_GNU;
488 else
489 {
490 /* Other vendor section. Ignore it. */
491 p += namelen + section_len;
492 continue;
493 }
494
495 p += namelen;
06614111 496 while (section_len > 0 && p < p_end)
104d59d1 497 {
5ee4a1ca 498 unsigned int tag;
104d59d1
JM
499 unsigned int n;
500 unsigned int val;
501 bfd_vma subsection_len;
502 bfd_byte *end;
503
4265548c 504 tag = _bfd_safe_read_leb128 (abfd, p, &n, FALSE, p_end);
104d59d1 505 p += n;
06614111
NC
506 if (p < p_end - 4)
507 subsection_len = bfd_get_32 (abfd, p);
508 else
509 subsection_len = 0;
104d59d1 510 p += 4;
1fe9dc45
WN
511 if (subsection_len == 0)
512 break;
104d59d1
JM
513 if (subsection_len > section_len)
514 subsection_len = section_len;
515 section_len -= subsection_len;
516 subsection_len -= n + 4;
517 end = p + subsection_len;
f64e188b
NC
518 /* PR 17512: file: 0e8c0c90. */
519 if (end > p_end)
520 end = p_end;
104d59d1
JM
521 switch (tag)
522 {
523 case Tag_File:
524 while (p < end)
525 {
526 int type;
527
4265548c 528 tag = _bfd_safe_read_leb128 (abfd, p, &n, FALSE, end);
104d59d1
JM
529 p += n;
530 type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
3483fe2e 531 switch (type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
104d59d1 532 {
3483fe2e 533 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
4265548c 534 val = _bfd_safe_read_leb128 (abfd, p, &n, FALSE, end);
104d59d1 535 p += n;
7b86a9fa 536 bfd_elf_add_obj_attr_int_string (abfd, vendor, tag,
f64e188b 537 val, (char *) p);
104d59d1
JM
538 p += strlen ((char *)p) + 1;
539 break;
3483fe2e 540 case ATTR_TYPE_FLAG_STR_VAL:
104d59d1 541 bfd_elf_add_obj_attr_string (abfd, vendor, tag,
f64e188b 542 (char *) p);
104d59d1
JM
543 p += strlen ((char *)p) + 1;
544 break;
3483fe2e 545 case ATTR_TYPE_FLAG_INT_VAL:
4265548c 546 val = _bfd_safe_read_leb128 (abfd, p, &n, FALSE, end);
104d59d1
JM
547 p += n;
548 bfd_elf_add_obj_attr_int (abfd, vendor, tag, val);
549 break;
550 default:
551 abort ();
552 }
553 }
554 break;
555 case Tag_Section:
556 case Tag_Symbol:
557 /* Don't have anywhere convenient to attach these.
558 Fall through for now. */
559 default:
560 /* Ignore things we don't kow about. */
561 p += subsection_len;
562 subsection_len = 0;
563 break;
564 }
565 }
566 }
567 }
568 free (contents);
569}
570
571/* Merge common object attributes from IBFD into OBFD. Raise an error
572 if there are conflicting attributes. Any processor-specific
573 attributes have already been merged. This must be called from the
574 bfd_elfNN_bfd_merge_private_bfd_data hook for each individual
575 target, along with any target-specific merging. Because there are
576 no common attributes other than Tag_compatibility at present, and
577 non-"gnu" Tag_compatibility is not expected in "gnu" sections, this
578 is not presently called for targets without their own
579 attributes. */
580
581bfd_boolean
50e03d47 582_bfd_elf_merge_object_attributes (bfd *ibfd, struct bfd_link_info *info)
104d59d1 583{
50e03d47 584 bfd *obfd = info->output_bfd;
104d59d1
JM
585 obj_attribute *in_attr;
586 obj_attribute *out_attr;
104d59d1
JM
587 int vendor;
588
589 /* The only common attribute is currently Tag_compatibility,
590 accepted in both processor and "gnu" sections. */
591 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
592 {
7b86a9fa
AS
593 /* Handle Tag_compatibility. The tags are only compatible if the flags
594 are identical and, if the flags are '1', the strings are identical.
595 If the flags are non-zero, then we can only use the string "gnu". */
596 in_attr = &elf_known_obj_attributes (ibfd)[vendor][Tag_compatibility];
597 out_attr = &elf_known_obj_attributes (obfd)[vendor][Tag_compatibility];
598
599 if (in_attr->i > 0 && strcmp (in_attr->s, "gnu") != 0)
104d59d1 600 {
7b86a9fa 601 _bfd_error_handler
695344c0 602 /* xgettext:c-format */
871b3ab2 603 (_("error: %pB: Object has vendor-specific contents that "
d8879994 604 "must be processed by the '%s' toolchain"),
104d59d1 605 ibfd, in_attr->s);
7b86a9fa
AS
606 return FALSE;
607 }
104d59d1 608
7b86a9fa
AS
609 if (in_attr->i != out_attr->i
610 || (in_attr->i != 0 && strcmp (in_attr->s, out_attr->s) != 0))
611 {
695344c0 612 /* xgettext:c-format */
871b3ab2 613 _bfd_error_handler (_("error: %pB: Object tag '%d, %s' is "
7b86a9fa
AS
614 "incompatible with tag '%d, %s'"),
615 ibfd,
616 in_attr->i, in_attr->s ? in_attr->s : "",
617 out_attr->i, out_attr->s ? out_attr->s : "");
618 return FALSE;
104d59d1
JM
619 }
620 }
621
622 return TRUE;
623}
e8b36cd1
JM
624
625/* Merge an unknown processor-specific attribute TAG, within the range
626 of known attributes, from IBFD into OBFD; return TRUE if the link
627 is OK, FALSE if it must fail. */
628
629bfd_boolean
630_bfd_elf_merge_unknown_attribute_low (bfd *ibfd, bfd *obfd, int tag)
631{
632 obj_attribute *in_attr;
633 obj_attribute *out_attr;
634 bfd *err_bfd = NULL;
635 bfd_boolean result = TRUE;
636
637 in_attr = elf_known_obj_attributes_proc (ibfd);
638 out_attr = elf_known_obj_attributes_proc (obfd);
639
640 if (out_attr[tag].i != 0 || out_attr[tag].s != NULL)
641 err_bfd = obfd;
642 else if (in_attr[tag].i != 0 || in_attr[tag].s != NULL)
643 err_bfd = ibfd;
644
645 if (err_bfd != NULL)
646 result
647 = get_elf_backend_data (err_bfd)->obj_attrs_handle_unknown (err_bfd, tag);
648
649 /* Only pass on attributes that match in both inputs. */
650 if (in_attr[tag].i != out_attr[tag].i
e1a6b263 651 || (in_attr[tag].s == NULL) != (out_attr[tag].s == NULL)
e8b36cd1
JM
652 || (in_attr[tag].s != NULL && out_attr[tag].s != NULL
653 && strcmp (in_attr[tag].s, out_attr[tag].s) != 0))
654 {
655 out_attr[tag].i = 0;
656 out_attr[tag].s = NULL;
657 }
658
659 return result;
660}
661
662/* Merge the lists of unknown processor-specific attributes, outside
663 the known range, from IBFD into OBFD; return TRUE if the link is
664 OK, FALSE if it must fail. */
665
666bfd_boolean
667_bfd_elf_merge_unknown_attribute_list (bfd *ibfd, bfd *obfd)
668{
669 obj_attribute_list *in_list;
670 obj_attribute_list *out_list;
671 obj_attribute_list **out_listp;
672 bfd_boolean result = TRUE;
673
674 in_list = elf_other_obj_attributes_proc (ibfd);
675 out_listp = &elf_other_obj_attributes_proc (obfd);
676 out_list = *out_listp;
677
678 for (; in_list || out_list; )
679 {
680 bfd *err_bfd = NULL;
5ee4a1ca 681 unsigned int err_tag = 0;
e8b36cd1
JM
682
683 /* The tags for each list are in numerical order. */
684 /* If the tags are equal, then merge. */
685 if (out_list && (!in_list || in_list->tag > out_list->tag))
686 {
687 /* This attribute only exists in obfd. We can't merge, and we don't
688 know what the tag means, so delete it. */
689 err_bfd = obfd;
690 err_tag = out_list->tag;
691 *out_listp = out_list->next;
692 out_list = *out_listp;
693 }
694 else if (in_list && (!out_list || in_list->tag < out_list->tag))
695 {
696 /* This attribute only exists in ibfd. We can't merge, and we don't
697 know what the tag means, so ignore it. */
698 err_bfd = ibfd;
699 err_tag = in_list->tag;
700 in_list = in_list->next;
701 }
702 else /* The tags are equal. */
703 {
704 /* As present, all attributes in the list are unknown, and
705 therefore can't be merged meaningfully. */
706 err_bfd = obfd;
707 err_tag = out_list->tag;
708
709 /* Only pass on attributes that match in both inputs. */
710 if (in_list->attr.i != out_list->attr.i
e1a6b263 711 || (in_list->attr.s == NULL) != (out_list->attr.s == NULL)
e8b36cd1
JM
712 || (in_list->attr.s && out_list->attr.s
713 && strcmp (in_list->attr.s, out_list->attr.s) != 0))
714 {
715 /* No match. Delete the attribute. */
716 *out_listp = out_list->next;
717 out_list = *out_listp;
718 }
719 else
720 {
721 /* Matched. Keep the attribute and move to the next. */
722 out_list = out_list->next;
723 in_list = in_list->next;
724 }
725 }
726
727 if (err_bfd)
728 result = result
729 && get_elf_backend_data (err_bfd)->obj_attrs_handle_unknown (err_bfd,
730 err_tag);
731 }
732
733 return result;
734}
This page took 0.649059 seconds and 4 git commands to generate.