]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf-attrs.c
Remove argument optional_p from get_tracepoint_by_number
[thirdparty/binutils-gdb.git] / bfd / elf-attrs.c
CommitLineData
104d59d1 1/* ELF attributes support (based on ARM EABI attributes).
4b95cf5c 2 Copyright (C) 2005-2014 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
57obj_attr_size (int tag, obj_attribute *attr)
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 *
146write_obj_attribute (bfd_byte *p, int tag, obj_attribute *attr)
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
AS
191 {
192 int tag = i;
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 *
230elf_new_obj_attr (bfd *abfd, int vendor, int tag)
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
268bfd_elf_get_obj_attr_int (bfd *abfd, int vendor, int tag)
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
294bfd_elf_add_obj_attr_int (bfd *abfd, int vendor, int tag, unsigned int i)
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
317bfd_elf_add_obj_attr_string (bfd *abfd, int vendor, int tag, const char *s)
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
7b86a9fa
AS
328bfd_elf_add_obj_attr_int_string (bfd *abfd, int vendor, int tag,
329 unsigned int i, const char *s)
104d59d1 330{
7b86a9fa 331 obj_attribute *attr;
104d59d1 332
7b86a9fa 333 attr = elf_new_obj_attr (abfd, vendor, tag);
2d0bb761 334 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
7b86a9fa
AS
335 attr->i = i;
336 attr->s = _bfd_elf_attr_strdup (abfd, s);
104d59d1
JM
337}
338
339/* Copy the object attributes from IBFD to OBFD. */
340void
341_bfd_elf_copy_obj_attributes (bfd *ibfd, bfd *obfd)
342{
343 obj_attribute *in_attr;
344 obj_attribute *out_attr;
345 obj_attribute_list *list;
346 int i;
347 int vendor;
348
dafbc74d
AM
349 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
350 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
351 return;
352
104d59d1
JM
353 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
354 {
3de4a297
JM
355 in_attr
356 = &elf_known_obj_attributes (ibfd)[vendor][LEAST_KNOWN_OBJ_ATTRIBUTE];
357 out_attr
358 = &elf_known_obj_attributes (obfd)[vendor][LEAST_KNOWN_OBJ_ATTRIBUTE];
359 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
104d59d1
JM
360 {
361 out_attr->type = in_attr->type;
362 out_attr->i = in_attr->i;
363 if (in_attr->s && *in_attr->s)
364 out_attr->s = _bfd_elf_attr_strdup (obfd, in_attr->s);
365 in_attr++;
366 out_attr++;
367 }
368
369 for (list = elf_other_obj_attributes (ibfd)[vendor];
370 list;
371 list = list->next)
372 {
373 in_attr = &list->attr;
3483fe2e 374 switch (in_attr->type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
104d59d1 375 {
3483fe2e 376 case ATTR_TYPE_FLAG_INT_VAL:
104d59d1
JM
377 bfd_elf_add_obj_attr_int (obfd, vendor, list->tag, in_attr->i);
378 break;
3483fe2e 379 case ATTR_TYPE_FLAG_STR_VAL:
104d59d1
JM
380 bfd_elf_add_obj_attr_string (obfd, vendor, list->tag,
381 in_attr->s);
382 break;
3483fe2e 383 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
7b86a9fa
AS
384 bfd_elf_add_obj_attr_int_string (obfd, vendor, list->tag,
385 in_attr->i, in_attr->s);
104d59d1
JM
386 break;
387 default:
388 abort ();
389 }
390 }
391 }
392}
393
394/* Determine whether a GNU object attribute tag takes an integer, a
395 string or both. */
396static int
397gnu_obj_attrs_arg_type (int tag)
398{
399 /* Except for Tag_compatibility, for GNU attributes we follow the
400 same rule ARM ones > 32 follow: odd-numbered tags take strings
401 and even-numbered tags take integers. In addition, tag & 2 is
402 nonzero for architecture-independent tags and zero for
403 architecture-dependent ones. */
404 if (tag == Tag_compatibility)
405 return 3;
406 else
407 return (tag & 1) != 0 ? 2 : 1;
408}
409
410/* Determine what arguments an attribute tag takes. */
411int
412_bfd_elf_obj_attrs_arg_type (bfd *abfd, int vendor, int tag)
413{
414 switch (vendor)
415 {
416 case OBJ_ATTR_PROC:
417 return get_elf_backend_data (abfd)->obj_attrs_arg_type (tag);
418 break;
419 case OBJ_ATTR_GNU:
420 return gnu_obj_attrs_arg_type (tag);
421 break;
422 default:
423 abort ();
424 }
425}
426
427/* Parse an object attributes section. */
428void
429_bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr)
430{
431 bfd_byte *contents;
432 bfd_byte *p;
433 bfd_vma len;
45dfa85a 434 const char *std_sec;
104d59d1 435
a50b1753 436 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
104d59d1
JM
437 if (!contents)
438 return;
439 if (!bfd_get_section_contents (abfd, hdr->bfd_section, contents, 0,
440 hdr->sh_size))
441 {
442 free (contents);
443 return;
444 }
445 p = contents;
45dfa85a 446 std_sec = get_elf_backend_data (abfd)->obj_attrs_vendor;
104d59d1
JM
447 if (*(p++) == 'A')
448 {
449 len = hdr->sh_size - 1;
450 while (len > 0)
451 {
452 int namelen;
453 bfd_vma section_len;
454 int vendor;
455
456 section_len = bfd_get_32 (abfd, p);
457 p += 4;
458 if (section_len > len)
459 section_len = len;
460 len -= section_len;
45dfa85a 461 namelen = strlen ((char *) p) + 1;
104d59d1 462 section_len -= namelen + 4;
45dfa85a 463 if (std_sec && strcmp ((char *) p, std_sec) == 0)
104d59d1 464 vendor = OBJ_ATTR_PROC;
45dfa85a 465 else if (strcmp ((char *) p, "gnu") == 0)
104d59d1
JM
466 vendor = OBJ_ATTR_GNU;
467 else
468 {
469 /* Other vendor section. Ignore it. */
470 p += namelen + section_len;
471 continue;
472 }
473
474 p += namelen;
475 while (section_len > 0)
476 {
477 int tag;
478 unsigned int n;
479 unsigned int val;
480 bfd_vma subsection_len;
481 bfd_byte *end;
482
483 tag = read_unsigned_leb128 (abfd, p, &n);
484 p += n;
485 subsection_len = bfd_get_32 (abfd, p);
486 p += 4;
487 if (subsection_len > section_len)
488 subsection_len = section_len;
489 section_len -= subsection_len;
490 subsection_len -= n + 4;
491 end = p + subsection_len;
492 switch (tag)
493 {
494 case Tag_File:
495 while (p < end)
496 {
497 int type;
498
499 tag = read_unsigned_leb128 (abfd, p, &n);
500 p += n;
501 type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
3483fe2e 502 switch (type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
104d59d1 503 {
3483fe2e 504 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
104d59d1
JM
505 val = read_unsigned_leb128 (abfd, p, &n);
506 p += n;
7b86a9fa
AS
507 bfd_elf_add_obj_attr_int_string (abfd, vendor, tag,
508 val, (char *)p);
104d59d1
JM
509 p += strlen ((char *)p) + 1;
510 break;
3483fe2e 511 case ATTR_TYPE_FLAG_STR_VAL:
104d59d1
JM
512 bfd_elf_add_obj_attr_string (abfd, vendor, tag,
513 (char *)p);
514 p += strlen ((char *)p) + 1;
515 break;
3483fe2e 516 case ATTR_TYPE_FLAG_INT_VAL:
104d59d1
JM
517 val = read_unsigned_leb128 (abfd, p, &n);
518 p += n;
519 bfd_elf_add_obj_attr_int (abfd, vendor, tag, val);
520 break;
521 default:
522 abort ();
523 }
524 }
525 break;
526 case Tag_Section:
527 case Tag_Symbol:
528 /* Don't have anywhere convenient to attach these.
529 Fall through for now. */
530 default:
531 /* Ignore things we don't kow about. */
532 p += subsection_len;
533 subsection_len = 0;
534 break;
535 }
536 }
537 }
538 }
539 free (contents);
540}
541
542/* Merge common object attributes from IBFD into OBFD. Raise an error
543 if there are conflicting attributes. Any processor-specific
544 attributes have already been merged. This must be called from the
545 bfd_elfNN_bfd_merge_private_bfd_data hook for each individual
546 target, along with any target-specific merging. Because there are
547 no common attributes other than Tag_compatibility at present, and
548 non-"gnu" Tag_compatibility is not expected in "gnu" sections, this
549 is not presently called for targets without their own
550 attributes. */
551
552bfd_boolean
553_bfd_elf_merge_object_attributes (bfd *ibfd, bfd *obfd)
554{
555 obj_attribute *in_attr;
556 obj_attribute *out_attr;
104d59d1
JM
557 int vendor;
558
559 /* The only common attribute is currently Tag_compatibility,
560 accepted in both processor and "gnu" sections. */
561 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
562 {
7b86a9fa
AS
563 /* Handle Tag_compatibility. The tags are only compatible if the flags
564 are identical and, if the flags are '1', the strings are identical.
565 If the flags are non-zero, then we can only use the string "gnu". */
566 in_attr = &elf_known_obj_attributes (ibfd)[vendor][Tag_compatibility];
567 out_attr = &elf_known_obj_attributes (obfd)[vendor][Tag_compatibility];
568
569 if (in_attr->i > 0 && strcmp (in_attr->s, "gnu") != 0)
104d59d1 570 {
7b86a9fa 571 _bfd_error_handler
d8879994
DG
572 (_("error: %B: Object has vendor-specific contents that "
573 "must be processed by the '%s' toolchain"),
104d59d1 574 ibfd, in_attr->s);
7b86a9fa
AS
575 return FALSE;
576 }
104d59d1 577
7b86a9fa
AS
578 if (in_attr->i != out_attr->i
579 || (in_attr->i != 0 && strcmp (in_attr->s, out_attr->s) != 0))
580 {
3895f852 581 _bfd_error_handler (_("error: %B: Object tag '%d, %s' is "
7b86a9fa
AS
582 "incompatible with tag '%d, %s'"),
583 ibfd,
584 in_attr->i, in_attr->s ? in_attr->s : "",
585 out_attr->i, out_attr->s ? out_attr->s : "");
586 return FALSE;
104d59d1
JM
587 }
588 }
589
590 return TRUE;
591}
e8b36cd1
JM
592
593/* Merge an unknown processor-specific attribute TAG, within the range
594 of known attributes, from IBFD into OBFD; return TRUE if the link
595 is OK, FALSE if it must fail. */
596
597bfd_boolean
598_bfd_elf_merge_unknown_attribute_low (bfd *ibfd, bfd *obfd, int tag)
599{
600 obj_attribute *in_attr;
601 obj_attribute *out_attr;
602 bfd *err_bfd = NULL;
603 bfd_boolean result = TRUE;
604
605 in_attr = elf_known_obj_attributes_proc (ibfd);
606 out_attr = elf_known_obj_attributes_proc (obfd);
607
608 if (out_attr[tag].i != 0 || out_attr[tag].s != NULL)
609 err_bfd = obfd;
610 else if (in_attr[tag].i != 0 || in_attr[tag].s != NULL)
611 err_bfd = ibfd;
612
613 if (err_bfd != NULL)
614 result
615 = get_elf_backend_data (err_bfd)->obj_attrs_handle_unknown (err_bfd, tag);
616
617 /* Only pass on attributes that match in both inputs. */
618 if (in_attr[tag].i != out_attr[tag].i
e1a6b263 619 || (in_attr[tag].s == NULL) != (out_attr[tag].s == NULL)
e8b36cd1
JM
620 || (in_attr[tag].s != NULL && out_attr[tag].s != NULL
621 && strcmp (in_attr[tag].s, out_attr[tag].s) != 0))
622 {
623 out_attr[tag].i = 0;
624 out_attr[tag].s = NULL;
625 }
626
627 return result;
628}
629
630/* Merge the lists of unknown processor-specific attributes, outside
631 the known range, from IBFD into OBFD; return TRUE if the link is
632 OK, FALSE if it must fail. */
633
634bfd_boolean
635_bfd_elf_merge_unknown_attribute_list (bfd *ibfd, bfd *obfd)
636{
637 obj_attribute_list *in_list;
638 obj_attribute_list *out_list;
639 obj_attribute_list **out_listp;
640 bfd_boolean result = TRUE;
641
642 in_list = elf_other_obj_attributes_proc (ibfd);
643 out_listp = &elf_other_obj_attributes_proc (obfd);
644 out_list = *out_listp;
645
646 for (; in_list || out_list; )
647 {
648 bfd *err_bfd = NULL;
649 int err_tag = 0;
650
651 /* The tags for each list are in numerical order. */
652 /* If the tags are equal, then merge. */
653 if (out_list && (!in_list || in_list->tag > out_list->tag))
654 {
655 /* This attribute only exists in obfd. We can't merge, and we don't
656 know what the tag means, so delete it. */
657 err_bfd = obfd;
658 err_tag = out_list->tag;
659 *out_listp = out_list->next;
660 out_list = *out_listp;
661 }
662 else if (in_list && (!out_list || in_list->tag < out_list->tag))
663 {
664 /* This attribute only exists in ibfd. We can't merge, and we don't
665 know what the tag means, so ignore it. */
666 err_bfd = ibfd;
667 err_tag = in_list->tag;
668 in_list = in_list->next;
669 }
670 else /* The tags are equal. */
671 {
672 /* As present, all attributes in the list are unknown, and
673 therefore can't be merged meaningfully. */
674 err_bfd = obfd;
675 err_tag = out_list->tag;
676
677 /* Only pass on attributes that match in both inputs. */
678 if (in_list->attr.i != out_list->attr.i
e1a6b263 679 || (in_list->attr.s == NULL) != (out_list->attr.s == NULL)
e8b36cd1
JM
680 || (in_list->attr.s && out_list->attr.s
681 && strcmp (in_list->attr.s, out_list->attr.s) != 0))
682 {
683 /* No match. Delete the attribute. */
684 *out_listp = out_list->next;
685 out_list = *out_listp;
686 }
687 else
688 {
689 /* Matched. Keep the attribute and move to the next. */
690 out_list = out_list->next;
691 in_list = in_list->next;
692 }
693 }
694
695 if (err_bfd)
696 result = result
697 && get_elf_backend_data (err_bfd)->obj_attrs_handle_unknown (err_bfd,
698 err_tag);
699 }
700
701 return result;
702}