1 /* ELF attributes support (based on ARM EABI attributes).
2 Copyright 2005, 2006, 2007, 2009
3 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
24 #include "libiberty.h"
28 /* Return the number of bytes needed by I in uleb128 format. */
30 uleb128_size (unsigned int i)
42 /* Return TRUE if the attribute has the default value (0/""). */
44 is_default_attr (obj_attribute *attr)
46 if (ATTR_TYPE_HAS_INT_VAL (attr->type) && attr->i != 0)
48 if (ATTR_TYPE_HAS_STR_VAL (attr->type) && attr->s && *attr->s)
50 if (ATTR_TYPE_HAS_NO_DEFAULT (attr->type))
56 /* Return the size of a single attribute. */
58 obj_attr_size (int tag, obj_attribute *attr)
62 if (is_default_attr (attr))
65 size = uleb128_size (tag);
66 if (ATTR_TYPE_HAS_INT_VAL (attr->type))
67 size += uleb128_size (attr->i);
68 if (ATTR_TYPE_HAS_STR_VAL (attr->type))
69 size += strlen ((char *)attr->s) + 1;
73 /* Return the vendor name for a given object attributes section. */
75 vendor_obj_attr_name (bfd *abfd, int vendor)
77 return (vendor == OBJ_ATTR_PROC
78 ? get_elf_backend_data (abfd)->obj_attrs_vendor
82 /* Return the size of the object attributes section for VENDOR
83 (OBJ_ATTR_PROC or OBJ_ATTR_GNU), or 0 if there are no attributes
84 for that vendor to record and the vendor is OBJ_ATTR_GNU. */
86 vendor_obj_attr_size (bfd *abfd, int vendor)
90 obj_attribute_list *list;
92 const char *vendor_name = vendor_obj_attr_name (abfd, vendor);
97 attr = elf_known_obj_attributes (abfd)[vendor];
99 for (i = 4; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
100 size += obj_attr_size (i, &attr[i]);
102 for (list = elf_other_obj_attributes (abfd)[vendor];
105 size += obj_attr_size (list->tag, &list->attr);
107 /* <size> <vendor_name> NUL 0x1 <size> */
108 return ((size || vendor == OBJ_ATTR_PROC)
109 ? size + 10 + strlen (vendor_name)
113 /* Return the size of the object attributes section. */
115 bfd_elf_obj_attr_size (bfd *abfd)
119 size = vendor_obj_attr_size (abfd, OBJ_ATTR_PROC);
120 size += vendor_obj_attr_size (abfd, OBJ_ATTR_GNU);
122 /* 'A' <sections for each vendor> */
123 return (size ? size + 1 : 0);
126 /* Write VAL in uleb128 format to P, returning a pointer to the
129 write_uleb128 (bfd_byte *p, unsigned int val)
144 /* Write attribute ATTR to butter P, and return a pointer to the following
147 write_obj_attribute (bfd_byte *p, int tag, obj_attribute *attr)
149 /* Suppress default entries. */
150 if (is_default_attr (attr))
153 p = write_uleb128 (p, tag);
154 if (ATTR_TYPE_HAS_INT_VAL (attr->type))
155 p = write_uleb128 (p, attr->i);
156 if (ATTR_TYPE_HAS_STR_VAL (attr->type))
160 len = strlen (attr->s) + 1;
161 memcpy (p, attr->s, len);
168 /* Write the contents of the object attributes section (length SIZE)
169 for VENDOR to CONTENTS. */
171 vendor_set_obj_attr_contents (bfd *abfd, bfd_byte *contents, bfd_vma size,
176 obj_attribute_list *list;
178 const char *vendor_name = vendor_obj_attr_name (abfd, vendor);
179 size_t vendor_length = strlen (vendor_name) + 1;
182 bfd_put_32 (abfd, size, p);
184 memcpy (p, vendor_name, vendor_length);
187 bfd_put_32 (abfd, size - 4 - vendor_length, p);
190 attr = elf_known_obj_attributes (abfd)[vendor];
191 for (i = 4; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
194 if (get_elf_backend_data (abfd)->obj_attrs_order)
195 tag = get_elf_backend_data (abfd)->obj_attrs_order (i);
196 p = write_obj_attribute (p, tag, &attr[tag]);
199 for (list = elf_other_obj_attributes (abfd)[vendor];
202 p = write_obj_attribute (p, list->tag, &list->attr);
205 /* Write the contents of the object attributes section to CONTENTS. */
207 bfd_elf_set_obj_attr_contents (bfd *abfd, bfd_byte *contents, bfd_vma size)
216 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
218 bfd_vma vendor_size = vendor_obj_attr_size (abfd, vendor);
220 vendor_set_obj_attr_contents (abfd, p, vendor_size, vendor);
222 my_size += vendor_size;
229 /* Allocate/find an object attribute. */
230 static obj_attribute *
231 elf_new_obj_attr (bfd *abfd, int vendor, int tag)
234 obj_attribute_list *list;
235 obj_attribute_list *p;
236 obj_attribute_list **lastp;
239 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
241 /* Known tags are preallocated. */
242 attr = &elf_known_obj_attributes (abfd)[vendor][tag];
246 /* Create a new tag. */
247 list = (obj_attribute_list *)
248 bfd_alloc (abfd, sizeof (obj_attribute_list));
249 memset (list, 0, sizeof (obj_attribute_list));
251 /* Keep the tag list in order. */
252 lastp = &elf_other_obj_attributes (abfd)[vendor];
253 for (p = *lastp; p; p = p->next)
267 /* Return the value of an integer object attribute. */
269 bfd_elf_get_obj_attr_int (bfd *abfd, int vendor, int tag)
271 obj_attribute_list *p;
273 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES)
275 /* Known tags are preallocated. */
276 return elf_known_obj_attributes (abfd)[vendor][tag].i;
280 for (p = elf_other_obj_attributes (abfd)[vendor];
293 /* Add an integer object attribute. */
295 bfd_elf_add_obj_attr_int (bfd *abfd, int vendor, int tag, unsigned int i)
299 attr = elf_new_obj_attr (abfd, vendor, tag);
300 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
304 /* Duplicate an object attribute string value. */
306 _bfd_elf_attr_strdup (bfd *abfd, const char * s)
311 len = strlen (s) + 1;
312 p = (char *) bfd_alloc (abfd, len);
313 return (char *) memcpy (p, s, len);
316 /* Add a string object attribute. */
318 bfd_elf_add_obj_attr_string (bfd *abfd, int vendor, int tag, const char *s)
322 attr = elf_new_obj_attr (abfd, vendor, tag);
323 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
324 attr->s = _bfd_elf_attr_strdup (abfd, s);
327 /* Add a int+string object attribute. */
329 bfd_elf_add_obj_attr_int_string (bfd *abfd, int vendor, int tag,
330 unsigned int i, const char *s)
334 attr = elf_new_obj_attr (abfd, vendor, tag);
335 attr->type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
337 attr->s = _bfd_elf_attr_strdup (abfd, s);
340 /* Copy the object attributes from IBFD to OBFD. */
342 _bfd_elf_copy_obj_attributes (bfd *ibfd, bfd *obfd)
344 obj_attribute *in_attr;
345 obj_attribute *out_attr;
346 obj_attribute_list *list;
350 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
352 in_attr = &elf_known_obj_attributes (ibfd)[vendor][4];
353 out_attr = &elf_known_obj_attributes (obfd)[vendor][4];
354 for (i = 4; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
356 out_attr->type = in_attr->type;
357 out_attr->i = in_attr->i;
358 if (in_attr->s && *in_attr->s)
359 out_attr->s = _bfd_elf_attr_strdup (obfd, in_attr->s);
364 for (list = elf_other_obj_attributes (ibfd)[vendor];
368 in_attr = &list->attr;
369 switch (in_attr->type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
371 case ATTR_TYPE_FLAG_INT_VAL:
372 bfd_elf_add_obj_attr_int (obfd, vendor, list->tag, in_attr->i);
374 case ATTR_TYPE_FLAG_STR_VAL:
375 bfd_elf_add_obj_attr_string (obfd, vendor, list->tag,
378 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
379 bfd_elf_add_obj_attr_int_string (obfd, vendor, list->tag,
380 in_attr->i, in_attr->s);
389 /* Determine whether a GNU object attribute tag takes an integer, a
392 gnu_obj_attrs_arg_type (int tag)
394 /* Except for Tag_compatibility, for GNU attributes we follow the
395 same rule ARM ones > 32 follow: odd-numbered tags take strings
396 and even-numbered tags take integers. In addition, tag & 2 is
397 nonzero for architecture-independent tags and zero for
398 architecture-dependent ones. */
399 if (tag == Tag_compatibility)
402 return (tag & 1) != 0 ? 2 : 1;
405 /* Determine what arguments an attribute tag takes. */
407 _bfd_elf_obj_attrs_arg_type (bfd *abfd, int vendor, int tag)
412 return get_elf_backend_data (abfd)->obj_attrs_arg_type (tag);
415 return gnu_obj_attrs_arg_type (tag);
422 /* Parse an object attributes section. */
424 _bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr)
429 const char *std_section;
431 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
434 if (!bfd_get_section_contents (abfd, hdr->bfd_section, contents, 0,
441 std_section = get_elf_backend_data (abfd)->obj_attrs_vendor;
444 len = hdr->sh_size - 1;
451 section_len = bfd_get_32 (abfd, p);
453 if (section_len > len)
456 namelen = strlen ((char *)p) + 1;
457 section_len -= namelen + 4;
458 if (std_section && strcmp ((char *)p, std_section) == 0)
459 vendor = OBJ_ATTR_PROC;
460 else if (strcmp ((char *)p, "gnu") == 0)
461 vendor = OBJ_ATTR_GNU;
464 /* Other vendor section. Ignore it. */
465 p += namelen + section_len;
470 while (section_len > 0)
475 bfd_vma subsection_len;
478 tag = read_unsigned_leb128 (abfd, p, &n);
480 subsection_len = bfd_get_32 (abfd, p);
482 if (subsection_len > section_len)
483 subsection_len = section_len;
484 section_len -= subsection_len;
485 subsection_len -= n + 4;
486 end = p + subsection_len;
494 tag = read_unsigned_leb128 (abfd, p, &n);
496 type = _bfd_elf_obj_attrs_arg_type (abfd, vendor, tag);
497 switch (type & (ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL))
499 case ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL:
500 val = read_unsigned_leb128 (abfd, p, &n);
502 bfd_elf_add_obj_attr_int_string (abfd, vendor, tag,
504 p += strlen ((char *)p) + 1;
506 case ATTR_TYPE_FLAG_STR_VAL:
507 bfd_elf_add_obj_attr_string (abfd, vendor, tag,
509 p += strlen ((char *)p) + 1;
511 case ATTR_TYPE_FLAG_INT_VAL:
512 val = read_unsigned_leb128 (abfd, p, &n);
514 bfd_elf_add_obj_attr_int (abfd, vendor, tag, val);
523 /* Don't have anywhere convenient to attach these.
524 Fall through for now. */
526 /* Ignore things we don't kow about. */
537 /* Merge common object attributes from IBFD into OBFD. Raise an error
538 if there are conflicting attributes. Any processor-specific
539 attributes have already been merged. This must be called from the
540 bfd_elfNN_bfd_merge_private_bfd_data hook for each individual
541 target, along with any target-specific merging. Because there are
542 no common attributes other than Tag_compatibility at present, and
543 non-"gnu" Tag_compatibility is not expected in "gnu" sections, this
544 is not presently called for targets without their own
548 _bfd_elf_merge_object_attributes (bfd *ibfd, bfd *obfd)
550 obj_attribute *in_attr;
551 obj_attribute *out_attr;
554 /* The only common attribute is currently Tag_compatibility,
555 accepted in both processor and "gnu" sections. */
556 for (vendor = OBJ_ATTR_FIRST; vendor <= OBJ_ATTR_LAST; vendor++)
558 /* Handle Tag_compatibility. The tags are only compatible if the flags
559 are identical and, if the flags are '1', the strings are identical.
560 If the flags are non-zero, then we can only use the string "gnu". */
561 in_attr = &elf_known_obj_attributes (ibfd)[vendor][Tag_compatibility];
562 out_attr = &elf_known_obj_attributes (obfd)[vendor][Tag_compatibility];
564 if (in_attr->i > 0 && strcmp (in_attr->s, "gnu") != 0)
567 (_("error: %B: Must be processed by '%s' toolchain"),
572 if (in_attr->i != out_attr->i
573 || (in_attr->i != 0 && strcmp (in_attr->s, out_attr->s) != 0))
575 _bfd_error_handler (_("error: %B: Object tag '%d, %s' is "
576 "incompatible with tag '%d, %s'"),
578 in_attr->i, in_attr->s ? in_attr->s : "",
579 out_attr->i, out_attr->s ? out_attr->s : "");