]> git.ipfire.org Git - thirdparty/gcc.git/blob - libiberty/simple-object-elf.c
re PR lto/81968 (early lto debug objects make Solaris ld SEGV)
[thirdparty/gcc.git] / libiberty / simple-object-elf.c
1 /* simple-object-elf.c -- routines to manipulate ELF object files.
2 Copyright (C) 2010-2017 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Google.
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
8 later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 51 Franklin Street - Fifth Floor,
18 Boston, MA 02110-1301, USA. */
19
20 #include "config.h"
21 #include "libiberty.h"
22 #include "simple-object.h"
23
24 #include <errno.h>
25 #include <stddef.h>
26
27 #ifdef HAVE_STDLIB_H
28 #include <stdlib.h>
29 #endif
30
31 #ifdef HAVE_STDINT_H
32 #include <stdint.h>
33 #endif
34
35 #ifdef HAVE_STRING_H
36 #include <string.h>
37 #endif
38
39 #ifdef HAVE_INTTYPES_H
40 #include <inttypes.h>
41 #endif
42
43 #include "simple-object-common.h"
44
45 /* ELF structures and constants. */
46
47 /* 32-bit ELF file header. */
48
49 typedef struct {
50 unsigned char e_ident[16]; /* ELF "magic number" */
51 unsigned char e_type[2]; /* Identifies object file type */
52 unsigned char e_machine[2]; /* Specifies required architecture */
53 unsigned char e_version[4]; /* Identifies object file version */
54 unsigned char e_entry[4]; /* Entry point virtual address */
55 unsigned char e_phoff[4]; /* Program header table file offset */
56 unsigned char e_shoff[4]; /* Section header table file offset */
57 unsigned char e_flags[4]; /* Processor-specific flags */
58 unsigned char e_ehsize[2]; /* ELF header size in bytes */
59 unsigned char e_phentsize[2]; /* Program header table entry size */
60 unsigned char e_phnum[2]; /* Program header table entry count */
61 unsigned char e_shentsize[2]; /* Section header table entry size */
62 unsigned char e_shnum[2]; /* Section header table entry count */
63 unsigned char e_shstrndx[2]; /* Section header string table index */
64 } Elf32_External_Ehdr;
65
66 /* 64-bit ELF file header. */
67
68 typedef struct {
69 unsigned char e_ident[16]; /* ELF "magic number" */
70 unsigned char e_type[2]; /* Identifies object file type */
71 unsigned char e_machine[2]; /* Specifies required architecture */
72 unsigned char e_version[4]; /* Identifies object file version */
73 unsigned char e_entry[8]; /* Entry point virtual address */
74 unsigned char e_phoff[8]; /* Program header table file offset */
75 unsigned char e_shoff[8]; /* Section header table file offset */
76 unsigned char e_flags[4]; /* Processor-specific flags */
77 unsigned char e_ehsize[2]; /* ELF header size in bytes */
78 unsigned char e_phentsize[2]; /* Program header table entry size */
79 unsigned char e_phnum[2]; /* Program header table entry count */
80 unsigned char e_shentsize[2]; /* Section header table entry size */
81 unsigned char e_shnum[2]; /* Section header table entry count */
82 unsigned char e_shstrndx[2]; /* Section header string table index */
83 } Elf64_External_Ehdr;
84
85 /* Indexes and values in e_ident field of Ehdr. */
86
87 #define EI_MAG0 0 /* File identification byte 0 index */
88 #define ELFMAG0 0x7F /* Magic number byte 0 */
89
90 #define EI_MAG1 1 /* File identification byte 1 index */
91 #define ELFMAG1 'E' /* Magic number byte 1 */
92
93 #define EI_MAG2 2 /* File identification byte 2 index */
94 #define ELFMAG2 'L' /* Magic number byte 2 */
95
96 #define EI_MAG3 3 /* File identification byte 3 index */
97 #define ELFMAG3 'F' /* Magic number byte 3 */
98
99 #define EI_CLASS 4 /* File class */
100 #define ELFCLASSNONE 0 /* Invalid class */
101 #define ELFCLASS32 1 /* 32-bit objects */
102 #define ELFCLASS64 2 /* 64-bit objects */
103
104 #define EI_DATA 5 /* Data encoding */
105 #define ELFDATANONE 0 /* Invalid data encoding */
106 #define ELFDATA2LSB 1 /* 2's complement, little endian */
107 #define ELFDATA2MSB 2 /* 2's complement, big endian */
108
109 #define EI_VERSION 6 /* File version */
110 #define EV_CURRENT 1 /* Current version */
111
112 #define EI_OSABI 7 /* Operating System/ABI indication */
113
114 /* Values for e_type field of Ehdr. */
115
116 #define ET_REL 1 /* Relocatable file */
117
118 /* Values for e_machine field of Ehdr. */
119
120 #define EM_SPARC 2 /* SUN SPARC */
121 #define EM_SPARC32PLUS 18 /* Sun's "v8plus" */
122
123 /* Special section index values. */
124
125 #define SHN_UNDEF 0 /* Undefined section */
126 #define SHN_LORESERVE 0xFF00 /* Begin range of reserved indices */
127 #define SHN_COMMON 0xFFF2 /* Associated symbol is in common */
128 #define SHN_XINDEX 0xFFFF /* Section index is held elsewhere */
129
130
131 /* 32-bit ELF program header. */
132
133 typedef struct {
134 unsigned char p_type[4]; /* Identifies program segment type */
135 unsigned char p_offset[4]; /* Segment file offset */
136 unsigned char p_vaddr[4]; /* Segment virtual address */
137 unsigned char p_paddr[4]; /* Segment physical address */
138 unsigned char p_filesz[4]; /* Segment size in file */
139 unsigned char p_memsz[4]; /* Segment size in memory */
140 unsigned char p_flags[4]; /* Segment flags */
141 unsigned char p_align[4]; /* Segment alignment, file & memory */
142 } Elf32_External_Phdr;
143
144 /* 64-bit ELF program header. */
145
146 typedef struct {
147 unsigned char p_type[4]; /* Identifies program segment type */
148 unsigned char p_flags[4]; /* Segment flags */
149 unsigned char p_offset[8]; /* Segment file offset */
150 unsigned char p_vaddr[8]; /* Segment virtual address */
151 unsigned char p_paddr[8]; /* Segment physical address */
152 unsigned char p_filesz[8]; /* Segment size in file */
153 unsigned char p_memsz[8]; /* Segment size in memory */
154 unsigned char p_align[8]; /* Segment alignment, file & memory */
155 } Elf64_External_Phdr;
156
157 /* 32-bit ELF section header */
158
159 typedef struct {
160 unsigned char sh_name[4]; /* Section name, index in string tbl */
161 unsigned char sh_type[4]; /* Type of section */
162 unsigned char sh_flags[4]; /* Miscellaneous section attributes */
163 unsigned char sh_addr[4]; /* Section virtual addr at execution */
164 unsigned char sh_offset[4]; /* Section file offset */
165 unsigned char sh_size[4]; /* Size of section in bytes */
166 unsigned char sh_link[4]; /* Index of another section */
167 unsigned char sh_info[4]; /* Additional section information */
168 unsigned char sh_addralign[4]; /* Section alignment */
169 unsigned char sh_entsize[4]; /* Entry size if section holds table */
170 } Elf32_External_Shdr;
171
172 /* 64-bit ELF section header. */
173
174 typedef struct {
175 unsigned char sh_name[4]; /* Section name, index in string tbl */
176 unsigned char sh_type[4]; /* Type of section */
177 unsigned char sh_flags[8]; /* Miscellaneous section attributes */
178 unsigned char sh_addr[8]; /* Section virtual addr at execution */
179 unsigned char sh_offset[8]; /* Section file offset */
180 unsigned char sh_size[8]; /* Size of section in bytes */
181 unsigned char sh_link[4]; /* Index of another section */
182 unsigned char sh_info[4]; /* Additional section information */
183 unsigned char sh_addralign[8]; /* Section alignment */
184 unsigned char sh_entsize[8]; /* Entry size if section holds table */
185 } Elf64_External_Shdr;
186
187 /* Values for sh_type field. */
188
189 #define SHT_NULL 0 /* Section header table entry unused */
190 #define SHT_PROGBITS 1 /* Program data */
191 #define SHT_SYMTAB 2 /* Link editing symbol table */
192 #define SHT_STRTAB 3 /* A string table */
193 #define SHT_RELA 4 /* Relocation entries with addends */
194 #define SHT_REL 9 /* Relocation entries, no addends */
195 #define SHT_GROUP 17 /* Section contains a section group */
196
197 /* Values for sh_flags field. */
198
199 #define SHF_EXCLUDE 0x80000000 /* Link editor is to exclude this
200 section from executable and
201 shared library that it builds
202 when those objects are not to be
203 further relocated. */
204 /* Symbol table entry. */
205
206 typedef struct
207 {
208 unsigned char st_name[4]; /* Symbol name (string tbl index) */
209 unsigned char st_value[4]; /* Symbol value */
210 unsigned char st_size[4]; /* Symbol size */
211 unsigned char st_info; /* Symbol type and binding */
212 unsigned char st_other; /* Symbol visibility */
213 unsigned char st_shndx[2]; /* Section index */
214 } Elf32_External_Sym;
215
216 typedef struct
217 {
218 unsigned char st_name[4]; /* Symbol name (string tbl index) */
219 unsigned char st_info; /* Symbol type and binding */
220 unsigned char st_other; /* Symbol visibility */
221 unsigned char st_shndx[2]; /* Section index */
222 unsigned char st_value[8]; /* Symbol value */
223 unsigned char st_size[8]; /* Symbol size */
224 } Elf64_External_Sym;
225
226 #define ELF_ST_BIND(val) (((unsigned char) (val)) >> 4)
227 #define ELF_ST_TYPE(val) ((val) & 0xf)
228 #define ELF_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
229
230 #define STT_NOTYPE 0 /* Symbol type is unspecified */
231 #define STT_OBJECT 1 /* Symbol is a data object */
232 #define STT_FUNC 2 /* Symbol is a code object */
233 #define STT_TLS 6 /* Thread local data object */
234 #define STT_GNU_IFUNC 10 /* Symbol is an indirect code object */
235
236 #define STB_LOCAL 0 /* Local symbol */
237 #define STB_GLOBAL 1 /* Global symbol */
238
239 #define STV_DEFAULT 0 /* Visibility is specified by binding type */
240
241 /* Functions to fetch and store different ELF types, depending on the
242 endianness and size. */
243
244 struct elf_type_functions
245 {
246 unsigned short (*fetch_Elf_Half) (const unsigned char *);
247 unsigned int (*fetch_Elf_Word) (const unsigned char *);
248 ulong_type (*fetch_Elf_Addr) (const unsigned char *);
249 void (*set_Elf_Half) (unsigned char *, unsigned short);
250 void (*set_Elf_Word) (unsigned char *, unsigned int);
251 void (*set_Elf_Addr) (unsigned char *, ulong_type);
252 };
253
254 static const struct elf_type_functions elf_big_32_functions =
255 {
256 simple_object_fetch_big_16,
257 simple_object_fetch_big_32,
258 simple_object_fetch_big_32_ulong,
259 simple_object_set_big_16,
260 simple_object_set_big_32,
261 simple_object_set_big_32_ulong
262 };
263
264 static const struct elf_type_functions elf_little_32_functions =
265 {
266 simple_object_fetch_little_16,
267 simple_object_fetch_little_32,
268 simple_object_fetch_little_32_ulong,
269 simple_object_set_little_16,
270 simple_object_set_little_32,
271 simple_object_set_little_32_ulong
272 };
273
274 #ifdef UNSIGNED_64BIT_TYPE
275
276 static const struct elf_type_functions elf_big_64_functions =
277 {
278 simple_object_fetch_big_16,
279 simple_object_fetch_big_32,
280 simple_object_fetch_big_64,
281 simple_object_set_big_16,
282 simple_object_set_big_32,
283 simple_object_set_big_64
284 };
285
286 static const struct elf_type_functions elf_little_64_functions =
287 {
288 simple_object_fetch_little_16,
289 simple_object_fetch_little_32,
290 simple_object_fetch_little_64,
291 simple_object_set_little_16,
292 simple_object_set_little_32,
293 simple_object_set_little_64
294 };
295
296 #endif
297
298 /* Hideous macro to fetch the value of a field from an external ELF
299 struct of some sort. TYPEFUNCS is the set of type functions.
300 BUFFER points to the external data. STRUCTTYPE is the appropriate
301 struct type. FIELD is a field within the struct. TYPE is the type
302 of the field in the struct: Elf_Half, Elf_Word, or Elf_Addr. */
303
304 #define ELF_FETCH_STRUCT_FIELD(TYPEFUNCS, STRUCTTYPE, FIELD, BUFFER, TYPE) \
305 ((TYPEFUNCS)->fetch_ ## TYPE ((BUFFER) + offsetof (STRUCTTYPE, FIELD)))
306
307 /* Even more hideous macro to fetch the value of FIELD from BUFFER.
308 SIZE is 32 or 64. STRUCTTYPE is the name of the struct from
309 elf/external.h: Ehdr, Shdr, etc. FIELD is the name of a field in
310 the struct. TYPE is the type of the field in the struct: Elf_Half,
311 Elf_Word, or Elf_Addr. */
312
313 #define ELF_FETCH_SIZED_FIELD(TYPEFUNCS, SIZE, STRUCTTYPE, BUFFER, \
314 FIELD, TYPE) \
315 ELF_FETCH_STRUCT_FIELD (TYPEFUNCS, \
316 Elf ## SIZE ## _External_ ## STRUCTTYPE, \
317 FIELD, BUFFER, TYPE)
318
319 /* Like ELF_FETCH_SIZED_FIELD but taking an ELFCLASS value. */
320
321 #define ELF_FETCH_FIELD(TYPEFUNCS, CLASS, STRUCTTYPE, BUFFER, \
322 FIELD, TYPE) \
323 ((CLASS) == ELFCLASS32 \
324 ? ELF_FETCH_SIZED_FIELD (TYPEFUNCS, 32, STRUCTTYPE, BUFFER, FIELD, \
325 TYPE) \
326 : ELF_FETCH_SIZED_FIELD (TYPEFUNCS, 64, STRUCTTYPE, BUFFER, FIELD, \
327 TYPE))
328
329 /* Hideous macro to set the value of a field in an external ELF
330 structure to VAL. TYPEFUNCS is the set of type functions. BUFFER
331 points to the external data. STRUCTTYPE is the appropriate
332 structure type. FIELD is a field within the struct. TYPE is the
333 type of the field in the struct: Elf_Half, Elf_Word, or
334 Elf_Addr. */
335
336 #define ELF_SET_STRUCT_FIELD(TYPEFUNCS, STRUCTTYPE, FIELD, BUFFER, TYPE, VAL) \
337 (TYPEFUNCS)->set_ ## TYPE ((BUFFER) + offsetof (STRUCTTYPE, FIELD), (VAL))
338
339 /* Even more hideous macro to set the value of FIELD in BUFFER to VAL.
340 SIZE is 32 or 64. STRUCTTYPE is the name of the struct from
341 elf/external.h: Ehdr, Shdr, etc. FIELD is the name of a field in
342 the struct. TYPE is the type of the field in the struct: Elf_Half,
343 Elf_Word, or Elf_Addr. */
344
345 #define ELF_SET_SIZED_FIELD(TYPEFUNCS, SIZE, STRUCTTYPE, BUFFER, FIELD, \
346 TYPE, VAL) \
347 ELF_SET_STRUCT_FIELD (TYPEFUNCS, \
348 Elf ## SIZE ## _External_ ## STRUCTTYPE, \
349 FIELD, BUFFER, TYPE, VAL)
350
351 /* Like ELF_SET_SIZED_FIELD but taking an ELFCLASS value. */
352
353 #define ELF_SET_FIELD(TYPEFUNCS, CLASS, STRUCTTYPE, BUFFER, FIELD, \
354 TYPE, VAL) \
355 ((CLASS) == ELFCLASS32 \
356 ? ELF_SET_SIZED_FIELD (TYPEFUNCS, 32, STRUCTTYPE, BUFFER, FIELD, \
357 TYPE, VAL) \
358 : ELF_SET_SIZED_FIELD (TYPEFUNCS, 64, STRUCTTYPE, BUFFER, FIELD, \
359 TYPE, VAL))
360
361 /* Private data for an simple_object_read. */
362
363 struct simple_object_elf_read
364 {
365 /* Type functions. */
366 const struct elf_type_functions* type_functions;
367 /* Elf data. */
368 unsigned char ei_data;
369 /* Elf class. */
370 unsigned char ei_class;
371 /* ELF OS ABI. */
372 unsigned char ei_osabi;
373 /* Elf machine number. */
374 unsigned short machine;
375 /* Processor specific flags. */
376 unsigned int flags;
377 /* File offset of section headers. */
378 ulong_type shoff;
379 /* Number of sections. */
380 unsigned int shnum;
381 /* Index of string table section header. */
382 unsigned int shstrndx;
383 };
384
385 /* Private data for an simple_object_attributes. */
386
387 struct simple_object_elf_attributes
388 {
389 /* Type functions. */
390 const struct elf_type_functions* type_functions;
391 /* Elf data. */
392 unsigned char ei_data;
393 /* Elf class. */
394 unsigned char ei_class;
395 /* ELF OS ABI. */
396 unsigned char ei_osabi;
397 /* Elf machine number. */
398 unsigned short machine;
399 /* Processor specific flags. */
400 unsigned int flags;
401 };
402
403 /* Private data for an simple_object_write. */
404
405 struct simple_object_elf_write
406 {
407 struct simple_object_elf_attributes attrs;
408 unsigned char *shdrs;
409 };
410
411 /* See if we have an ELF file. */
412
413 static void *
414 simple_object_elf_match (unsigned char header[SIMPLE_OBJECT_MATCH_HEADER_LEN],
415 int descriptor, off_t offset,
416 const char *segment_name ATTRIBUTE_UNUSED,
417 const char **errmsg, int *err)
418 {
419 unsigned char ei_data;
420 unsigned char ei_class;
421 const struct elf_type_functions *type_functions;
422 unsigned char ehdr[sizeof (Elf64_External_Ehdr)];
423 struct simple_object_elf_read *eor;
424
425 if (header[EI_MAG0] != ELFMAG0
426 || header[EI_MAG1] != ELFMAG1
427 || header[EI_MAG2] != ELFMAG2
428 || header[EI_MAG3] != ELFMAG3
429 || header[EI_VERSION] != EV_CURRENT)
430 {
431 *errmsg = NULL;
432 *err = 0;
433 return NULL;
434 }
435
436 ei_data = header[EI_DATA];
437 if (ei_data != ELFDATA2LSB && ei_data != ELFDATA2MSB)
438 {
439 *errmsg = "unknown ELF endianness";
440 *err = 0;
441 return NULL;
442 }
443
444 ei_class = header[EI_CLASS];
445 switch (ei_class)
446 {
447 case ELFCLASS32:
448 type_functions = (ei_data == ELFDATA2LSB
449 ? &elf_little_32_functions
450 : &elf_big_32_functions);
451 break;
452
453 case ELFCLASS64:
454 #ifndef UNSIGNED_64BIT_TYPE
455 *errmsg = "64-bit ELF objects not supported";
456 *err = 0;
457 return NULL;
458 #else
459 type_functions = (ei_data == ELFDATA2LSB
460 ? &elf_little_64_functions
461 : &elf_big_64_functions);
462 break;
463 #endif
464
465 default:
466 *errmsg = "unrecognized ELF size";
467 *err = 0;
468 return NULL;
469 }
470
471 if (!simple_object_internal_read (descriptor, offset, ehdr, sizeof ehdr,
472 errmsg, err))
473 return NULL;
474
475 eor = XNEW (struct simple_object_elf_read);
476 eor->type_functions = type_functions;
477 eor->ei_data = ei_data;
478 eor->ei_class = ei_class;
479 eor->ei_osabi = header[EI_OSABI];
480 eor->machine = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
481 e_machine, Elf_Half);
482 eor->flags = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
483 e_flags, Elf_Word);
484 eor->shoff = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
485 e_shoff, Elf_Addr);
486 eor->shnum = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
487 e_shnum, Elf_Half);
488 eor->shstrndx = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
489 e_shstrndx, Elf_Half);
490
491 if ((eor->shnum == 0 || eor->shstrndx == SHN_XINDEX)
492 && eor->shoff != 0)
493 {
494 unsigned char shdr[sizeof (Elf64_External_Shdr)];
495
496 /* Object file has more than 0xffff sections. */
497
498 if (!simple_object_internal_read (descriptor, offset + eor->shoff, shdr,
499 (ei_class == ELFCLASS32
500 ? sizeof (Elf32_External_Shdr)
501 : sizeof (Elf64_External_Shdr)),
502 errmsg, err))
503 {
504 XDELETE (eor);
505 return NULL;
506 }
507
508 if (eor->shnum == 0)
509 eor->shnum = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
510 shdr, sh_size, Elf_Addr);
511
512 if (eor->shstrndx == SHN_XINDEX)
513 {
514 eor->shstrndx = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
515 shdr, sh_link, Elf_Word);
516
517 /* Versions of the GNU binutils between 2.12 and 2.18 did
518 not handle objects with more than SHN_LORESERVE sections
519 correctly. All large section indexes were offset by
520 0x100. There is more information at
521 http://sourceware.org/bugzilla/show_bug.cgi?id-5900 .
522 Fortunately these object files are easy to detect, as the
523 GNU binutils always put the section header string table
524 near the end of the list of sections. Thus if the
525 section header string table index is larger than the
526 number of sections, then we know we have to subtract
527 0x100 to get the real section index. */
528 if (eor->shstrndx >= eor->shnum
529 && eor->shstrndx >= SHN_LORESERVE + 0x100)
530 eor->shstrndx -= 0x100;
531 }
532 }
533
534 if (eor->shstrndx >= eor->shnum)
535 {
536 *errmsg = "invalid ELF shstrndx >= shnum";
537 *err = 0;
538 XDELETE (eor);
539 return NULL;
540 }
541
542 return (void *) eor;
543 }
544
545 /* Find all sections in an ELF file. */
546
547 static const char *
548 simple_object_elf_find_sections (simple_object_read *sobj,
549 int (*pfn) (void *, const char *,
550 off_t offset, off_t length),
551 void *data,
552 int *err)
553 {
554 struct simple_object_elf_read *eor =
555 (struct simple_object_elf_read *) sobj->data;
556 const struct elf_type_functions *type_functions = eor->type_functions;
557 unsigned char ei_class = eor->ei_class;
558 size_t shdr_size;
559 unsigned int shnum;
560 unsigned char *shdrs;
561 const char *errmsg;
562 unsigned char *shstrhdr;
563 size_t name_size;
564 off_t shstroff;
565 unsigned char *names;
566 unsigned int i;
567
568 shdr_size = (ei_class == ELFCLASS32
569 ? sizeof (Elf32_External_Shdr)
570 : sizeof (Elf64_External_Shdr));
571
572 /* Read the section headers. We skip section 0, which is not a
573 useful section. */
574
575 shnum = eor->shnum;
576 shdrs = XNEWVEC (unsigned char, shdr_size * (shnum - 1));
577
578 if (!simple_object_internal_read (sobj->descriptor,
579 sobj->offset + eor->shoff + shdr_size,
580 shdrs,
581 shdr_size * (shnum - 1),
582 &errmsg, err))
583 {
584 XDELETEVEC (shdrs);
585 return errmsg;
586 }
587
588 /* Read the section names. */
589
590 shstrhdr = shdrs + (eor->shstrndx - 1) * shdr_size;
591 name_size = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
592 shstrhdr, sh_size, Elf_Addr);
593 shstroff = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
594 shstrhdr, sh_offset, Elf_Addr);
595 names = XNEWVEC (unsigned char, name_size);
596 if (!simple_object_internal_read (sobj->descriptor,
597 sobj->offset + shstroff,
598 names, name_size, &errmsg, err))
599 {
600 XDELETEVEC (names);
601 XDELETEVEC (shdrs);
602 return errmsg;
603 }
604
605 for (i = 1; i < shnum; ++i)
606 {
607 unsigned char *shdr;
608 unsigned int sh_name;
609 const char *name;
610 off_t offset;
611 off_t length;
612
613 shdr = shdrs + (i - 1) * shdr_size;
614 sh_name = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
615 shdr, sh_name, Elf_Word);
616 if (sh_name >= name_size)
617 {
618 *err = 0;
619 XDELETEVEC (names);
620 XDELETEVEC (shdrs);
621 return "ELF section name out of range";
622 }
623
624 name = (const char *) names + sh_name;
625 offset = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
626 shdr, sh_offset, Elf_Addr);
627 length = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
628 shdr, sh_size, Elf_Addr);
629
630 if (!(*pfn) (data, name, offset, length))
631 break;
632 }
633
634 XDELETEVEC (names);
635 XDELETEVEC (shdrs);
636
637 return NULL;
638 }
639
640 /* Fetch the attributes for an simple_object_read. */
641
642 static void *
643 simple_object_elf_fetch_attributes (simple_object_read *sobj,
644 const char **errmsg ATTRIBUTE_UNUSED,
645 int *err ATTRIBUTE_UNUSED)
646 {
647 struct simple_object_elf_read *eor =
648 (struct simple_object_elf_read *) sobj->data;
649 struct simple_object_elf_attributes *ret;
650
651 ret = XNEW (struct simple_object_elf_attributes);
652 ret->type_functions = eor->type_functions;
653 ret->ei_data = eor->ei_data;
654 ret->ei_class = eor->ei_class;
655 ret->ei_osabi = eor->ei_osabi;
656 ret->machine = eor->machine;
657 ret->flags = eor->flags;
658 return ret;
659 }
660
661 /* Release the privata data for an simple_object_read. */
662
663 static void
664 simple_object_elf_release_read (void *data)
665 {
666 XDELETE (data);
667 }
668
669 /* Compare two attributes structures. */
670
671 static const char *
672 simple_object_elf_attributes_merge (void *todata, void *fromdata, int *err)
673 {
674 struct simple_object_elf_attributes *to =
675 (struct simple_object_elf_attributes *) todata;
676 struct simple_object_elf_attributes *from =
677 (struct simple_object_elf_attributes *) fromdata;
678
679 if (to->ei_data != from->ei_data || to->ei_class != from->ei_class)
680 {
681 *err = 0;
682 return "ELF object format mismatch";
683 }
684
685 if (to->machine != from->machine)
686 {
687 int ok;
688
689 /* EM_SPARC and EM_SPARC32PLUS are compatible and force an
690 output of EM_SPARC32PLUS. */
691 ok = 0;
692 switch (to->machine)
693 {
694 case EM_SPARC:
695 if (from->machine == EM_SPARC32PLUS)
696 {
697 to->machine = from->machine;
698 ok = 1;
699 }
700 break;
701
702 case EM_SPARC32PLUS:
703 if (from->machine == EM_SPARC)
704 ok = 1;
705 break;
706
707 default:
708 break;
709 }
710
711 if (!ok)
712 {
713 *err = 0;
714 return "ELF machine number mismatch";
715 }
716 }
717
718 return NULL;
719 }
720
721 /* Release the private data for an attributes structure. */
722
723 static void
724 simple_object_elf_release_attributes (void *data)
725 {
726 XDELETE (data);
727 }
728
729 /* Prepare to write out a file. */
730
731 static void *
732 simple_object_elf_start_write (void *attributes_data,
733 const char **errmsg ATTRIBUTE_UNUSED,
734 int *err ATTRIBUTE_UNUSED)
735 {
736 struct simple_object_elf_attributes *attrs =
737 (struct simple_object_elf_attributes *) attributes_data;
738 struct simple_object_elf_write *ret;
739
740 /* We're just going to record the attributes, but we need to make a
741 copy because the user may delete them. */
742 ret = XNEW (struct simple_object_elf_write);
743 ret->attrs = *attrs;
744 ret->shdrs = NULL;
745 return ret;
746 }
747
748 /* Write out an ELF ehdr. */
749
750 static int
751 simple_object_elf_write_ehdr (simple_object_write *sobj, int descriptor,
752 const char **errmsg, int *err)
753 {
754 struct simple_object_elf_attributes *attrs =
755 (struct simple_object_elf_attributes *) sobj->data;
756 const struct elf_type_functions* fns;
757 unsigned char cl;
758 size_t ehdr_size;
759 unsigned char buf[sizeof (Elf64_External_Ehdr)];
760 simple_object_write_section *section;
761 unsigned int shnum;
762 unsigned int shstrndx;
763
764 fns = attrs->type_functions;
765 cl = attrs->ei_class;
766
767 shnum = 0;
768 for (section = sobj->sections; section != NULL; section = section->next)
769 ++shnum;
770 if (shnum > 0)
771 {
772 /* Add a section header for the dummy section and one for
773 .shstrtab. */
774 shnum += 2;
775 }
776
777 ehdr_size = (cl == ELFCLASS32
778 ? sizeof (Elf32_External_Ehdr)
779 : sizeof (Elf64_External_Ehdr));
780 memset (buf, 0, sizeof (Elf64_External_Ehdr));
781
782 buf[EI_MAG0] = ELFMAG0;
783 buf[EI_MAG1] = ELFMAG1;
784 buf[EI_MAG2] = ELFMAG2;
785 buf[EI_MAG3] = ELFMAG3;
786 buf[EI_CLASS] = cl;
787 buf[EI_DATA] = attrs->ei_data;
788 buf[EI_VERSION] = EV_CURRENT;
789 buf[EI_OSABI] = attrs->ei_osabi;
790
791 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_type, Elf_Half, ET_REL);
792 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_machine, Elf_Half, attrs->machine);
793 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_version, Elf_Word, EV_CURRENT);
794 /* e_entry left as zero. */
795 /* e_phoff left as zero. */
796 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_shoff, Elf_Addr, ehdr_size);
797 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_flags, Elf_Word, attrs->flags);
798 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_ehsize, Elf_Half, ehdr_size);
799 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_phentsize, Elf_Half,
800 (cl == ELFCLASS32
801 ? sizeof (Elf32_External_Phdr)
802 : sizeof (Elf64_External_Phdr)));
803 /* e_phnum left as zero. */
804 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_shentsize, Elf_Half,
805 (cl == ELFCLASS32
806 ? sizeof (Elf32_External_Shdr)
807 : sizeof (Elf64_External_Shdr)));
808 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_shnum, Elf_Half,
809 shnum >= SHN_LORESERVE ? 0 : shnum);
810 if (shnum == 0)
811 shstrndx = 0;
812 else
813 {
814 shstrndx = shnum - 1;
815 if (shstrndx >= SHN_LORESERVE)
816 shstrndx = SHN_XINDEX;
817 }
818 ELF_SET_FIELD (fns, cl, Ehdr, buf, e_shstrndx, Elf_Half, shstrndx);
819
820 return simple_object_internal_write (descriptor, 0, buf, ehdr_size,
821 errmsg, err);
822 }
823
824 /* Write out an ELF shdr. */
825
826 static int
827 simple_object_elf_write_shdr (simple_object_write *sobj, int descriptor,
828 off_t offset, unsigned int sh_name,
829 unsigned int sh_type, unsigned int sh_flags,
830 off_t sh_addr,
831 unsigned int sh_offset, unsigned int sh_size,
832 unsigned int sh_link, unsigned int sh_info,
833 size_t sh_addralign,
834 size_t sh_entsize,
835 const char **errmsg, int *err)
836 {
837 struct simple_object_elf_attributes *attrs =
838 (struct simple_object_elf_attributes *) sobj->data;
839 const struct elf_type_functions* fns;
840 unsigned char cl;
841 size_t shdr_size;
842 unsigned char buf[sizeof (Elf64_External_Shdr)];
843
844 fns = attrs->type_functions;
845 cl = attrs->ei_class;
846
847 shdr_size = (cl == ELFCLASS32
848 ? sizeof (Elf32_External_Shdr)
849 : sizeof (Elf64_External_Shdr));
850 memset (buf, 0, sizeof (Elf64_External_Shdr));
851
852 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_name, Elf_Word, sh_name);
853 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_type, Elf_Word, sh_type);
854 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_flags, Elf_Addr, sh_flags);
855 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_addr, Elf_Addr, sh_addr);
856 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_offset, Elf_Addr, sh_offset);
857 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_size, Elf_Addr, sh_size);
858 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_link, Elf_Word, sh_link);
859 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_info, Elf_Word, sh_info);
860 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_addralign, Elf_Addr, sh_addralign);
861 ELF_SET_FIELD (fns, cl, Shdr, buf, sh_entsize, Elf_Addr, sh_entsize);
862
863 return simple_object_internal_write (descriptor, offset, buf, shdr_size,
864 errmsg, err);
865 }
866
867 /* Write out a complete ELF file.
868 Ehdr
869 initial dummy Shdr
870 user-created Shdrs
871 .shstrtab Shdr
872 user-created section data
873 .shstrtab data */
874
875 static const char *
876 simple_object_elf_write_to_file (simple_object_write *sobj, int descriptor,
877 int *err)
878 {
879 struct simple_object_elf_write *eow =
880 (struct simple_object_elf_write *) sobj->data;
881 struct simple_object_elf_attributes *attrs = &eow->attrs;
882 unsigned char cl;
883 size_t ehdr_size;
884 size_t shdr_size;
885 const char *errmsg;
886 simple_object_write_section *section;
887 unsigned int shnum;
888 size_t shdr_offset;
889 size_t sh_offset;
890 unsigned int first_sh_size;
891 unsigned int first_sh_link;
892 size_t sh_name;
893 unsigned char zero;
894 unsigned secnum;
895
896 if (!simple_object_elf_write_ehdr (sobj, descriptor, &errmsg, err))
897 return errmsg;
898
899 cl = attrs->ei_class;
900 if (cl == ELFCLASS32)
901 {
902 ehdr_size = sizeof (Elf32_External_Ehdr);
903 shdr_size = sizeof (Elf32_External_Shdr);
904 }
905 else
906 {
907 ehdr_size = sizeof (Elf64_External_Ehdr);
908 shdr_size = sizeof (Elf64_External_Shdr);
909 }
910
911 shnum = 0;
912 for (section = sobj->sections; section != NULL; section = section->next)
913 ++shnum;
914 if (shnum == 0)
915 return NULL;
916
917 /* Add initial dummy Shdr and .shstrtab. */
918 shnum += 2;
919
920 shdr_offset = ehdr_size;
921 sh_offset = shdr_offset + shnum * shdr_size;
922
923 if (shnum < SHN_LORESERVE)
924 first_sh_size = 0;
925 else
926 first_sh_size = shnum;
927 if (shnum - 1 < SHN_LORESERVE)
928 first_sh_link = 0;
929 else
930 first_sh_link = shnum - 1;
931 if (!simple_object_elf_write_shdr (sobj, descriptor, shdr_offset,
932 0, 0, 0, 0, 0, first_sh_size, first_sh_link,
933 0, 0, 0, &errmsg, err))
934 return errmsg;
935
936 shdr_offset += shdr_size;
937
938 sh_name = 1;
939 secnum = 0;
940 for (section = sobj->sections; section != NULL; section = section->next)
941 {
942 size_t mask;
943 size_t new_sh_offset;
944 size_t sh_size;
945 struct simple_object_write_section_buffer *buffer;
946 unsigned int sh_type = SHT_PROGBITS;
947 unsigned int sh_flags = 0;
948 off_t sh_addr = 0;
949 unsigned int sh_link = 0;
950 unsigned int sh_info = 0;
951 size_t sh_addralign = 1U << section->align;
952 size_t sh_entsize = 0;
953 if (eow->shdrs)
954 {
955 sh_type = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
956 eow->shdrs + secnum * shdr_size,
957 sh_type, Elf_Word);
958 sh_flags = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
959 eow->shdrs + secnum * shdr_size,
960 sh_flags, Elf_Addr);
961 sh_addr = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
962 eow->shdrs + secnum * shdr_size,
963 sh_addr, Elf_Addr);
964 sh_link = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
965 eow->shdrs + secnum * shdr_size,
966 sh_link, Elf_Word);
967 sh_info = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
968 eow->shdrs + secnum * shdr_size,
969 sh_info, Elf_Word);
970 sh_addralign = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
971 eow->shdrs + secnum * shdr_size,
972 sh_addralign, Elf_Addr);
973 sh_entsize = ELF_FETCH_FIELD (attrs->type_functions, attrs->ei_class, Shdr,
974 eow->shdrs + secnum * shdr_size,
975 sh_entsize, Elf_Addr);
976 secnum++;
977 }
978
979 mask = sh_addralign - 1;
980 new_sh_offset = sh_offset + mask;
981 new_sh_offset &= ~ mask;
982 while (new_sh_offset > sh_offset)
983 {
984 unsigned char zeroes[16];
985 size_t write;
986
987 memset (zeroes, 0, sizeof zeroes);
988 write = new_sh_offset - sh_offset;
989 if (write > sizeof zeroes)
990 write = sizeof zeroes;
991 if (!simple_object_internal_write (descriptor, sh_offset, zeroes,
992 write, &errmsg, err))
993 return errmsg;
994 sh_offset += write;
995 }
996
997 sh_size = 0;
998 for (buffer = section->buffers; buffer != NULL; buffer = buffer->next)
999 {
1000 if (!simple_object_internal_write (descriptor, sh_offset + sh_size,
1001 ((const unsigned char *)
1002 buffer->buffer),
1003 buffer->size, &errmsg, err))
1004 return errmsg;
1005 sh_size += buffer->size;
1006 }
1007
1008 if (!simple_object_elf_write_shdr (sobj, descriptor, shdr_offset,
1009 sh_name, sh_type, sh_flags,
1010 sh_addr, sh_offset,
1011 sh_size, sh_link, sh_info,
1012 sh_addralign, sh_entsize,
1013 &errmsg, err))
1014 return errmsg;
1015
1016 shdr_offset += shdr_size;
1017 sh_name += strlen (section->name) + 1;
1018 sh_offset += sh_size;
1019 }
1020
1021 if (!simple_object_elf_write_shdr (sobj, descriptor, shdr_offset,
1022 sh_name, SHT_STRTAB, 0, 0, sh_offset,
1023 sh_name + strlen (".shstrtab") + 1, 0, 0,
1024 1, 0, &errmsg, err))
1025 return errmsg;
1026
1027 /* .shstrtab has a leading zero byte. */
1028 zero = 0;
1029 if (!simple_object_internal_write (descriptor, sh_offset, &zero, 1,
1030 &errmsg, err))
1031 return errmsg;
1032 ++sh_offset;
1033
1034 for (section = sobj->sections; section != NULL; section = section->next)
1035 {
1036 size_t len;
1037
1038 len = strlen (section->name) + 1;
1039 if (!simple_object_internal_write (descriptor, sh_offset,
1040 (const unsigned char *) section->name,
1041 len, &errmsg, err))
1042 return errmsg;
1043 sh_offset += len;
1044 }
1045
1046 if (!simple_object_internal_write (descriptor, sh_offset,
1047 (const unsigned char *) ".shstrtab",
1048 strlen (".shstrtab") + 1, &errmsg, err))
1049 return errmsg;
1050
1051 return NULL;
1052 }
1053
1054 /* Release the private data for an simple_object_write structure. */
1055
1056 static void
1057 simple_object_elf_release_write (void *data)
1058 {
1059 struct simple_object_elf_write *eow = (struct simple_object_elf_write *) data;
1060 if (eow->shdrs)
1061 XDELETE (eow->shdrs);
1062 XDELETE (data);
1063 }
1064
1065 /* Copy all sections in an ELF file. */
1066
1067 static const char *
1068 simple_object_elf_copy_lto_debug_sections (simple_object_read *sobj,
1069 simple_object_write *dobj,
1070 int (*pfn) (const char **),
1071 int *err)
1072 {
1073 struct simple_object_elf_read *eor =
1074 (struct simple_object_elf_read *) sobj->data;
1075 const struct elf_type_functions *type_functions = eor->type_functions;
1076 struct simple_object_elf_write *eow =
1077 (struct simple_object_elf_write *) dobj->data;
1078 unsigned char ei_class = eor->ei_class;
1079 size_t shdr_size;
1080 unsigned int shnum;
1081 unsigned char *shdrs;
1082 const char *errmsg;
1083 unsigned char *shstrhdr;
1084 size_t name_size;
1085 off_t shstroff;
1086 unsigned char *names;
1087 unsigned int i;
1088 int *pfnret;
1089 const char **pfnname;
1090
1091 shdr_size = (ei_class == ELFCLASS32
1092 ? sizeof (Elf32_External_Shdr)
1093 : sizeof (Elf64_External_Shdr));
1094
1095 /* Read the section headers. We skip section 0, which is not a
1096 useful section. */
1097
1098 shnum = eor->shnum;
1099 shdrs = XNEWVEC (unsigned char, shdr_size * (shnum - 1));
1100
1101 if (!simple_object_internal_read (sobj->descriptor,
1102 sobj->offset + eor->shoff + shdr_size,
1103 shdrs,
1104 shdr_size * (shnum - 1),
1105 &errmsg, err))
1106 {
1107 XDELETEVEC (shdrs);
1108 return errmsg;
1109 }
1110
1111 /* Read the section names. */
1112
1113 shstrhdr = shdrs + (eor->shstrndx - 1) * shdr_size;
1114 name_size = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1115 shstrhdr, sh_size, Elf_Addr);
1116 shstroff = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1117 shstrhdr, sh_offset, Elf_Addr);
1118 names = XNEWVEC (unsigned char, name_size);
1119 if (!simple_object_internal_read (sobj->descriptor,
1120 sobj->offset + shstroff,
1121 names, name_size, &errmsg, err))
1122 {
1123 XDELETEVEC (names);
1124 XDELETEVEC (shdrs);
1125 return errmsg;
1126 }
1127
1128 eow->shdrs = XNEWVEC (unsigned char, shdr_size * (shnum - 1));
1129 pfnret = XNEWVEC (int, shnum);
1130 pfnname = XNEWVEC (const char *, shnum);
1131
1132 /* First perform the callbacks to know which sections to preserve and
1133 what name to use for those. */
1134 for (i = 1; i < shnum; ++i)
1135 {
1136 unsigned char *shdr;
1137 unsigned int sh_name;
1138 const char *name;
1139 int ret;
1140
1141 shdr = shdrs + (i - 1) * shdr_size;
1142 sh_name = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1143 shdr, sh_name, Elf_Word);
1144 if (sh_name >= name_size)
1145 {
1146 *err = 0;
1147 XDELETEVEC (names);
1148 XDELETEVEC (shdrs);
1149 return "ELF section name out of range";
1150 }
1151
1152 name = (const char *) names + sh_name;
1153
1154 ret = (*pfn) (&name);
1155 pfnret[i - 1] = ret == 1 ? 0 : -1;
1156 pfnname[i - 1] = name;
1157 }
1158
1159 /* Mark sections as preserved that are required by to be preserved
1160 sections. */
1161 for (i = 1; i < shnum; ++i)
1162 {
1163 unsigned char *shdr;
1164 unsigned int sh_type, sh_info, sh_link;
1165 off_t offset;
1166 off_t length;
1167
1168 shdr = shdrs + (i - 1) * shdr_size;
1169 sh_type = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1170 shdr, sh_type, Elf_Word);
1171 sh_info = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1172 shdr, sh_info, Elf_Word);
1173 sh_link = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1174 shdr, sh_link, Elf_Word);
1175 if (sh_type == SHT_GROUP)
1176 {
1177 /* Mark groups containing copied sections. */
1178 unsigned entsize = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1179 shdr, sh_entsize, Elf_Addr);
1180 unsigned char *ent, *buf;
1181 int keep = 0;
1182 offset = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1183 shdr, sh_offset, Elf_Addr);
1184 length = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1185 shdr, sh_size, Elf_Addr);
1186 buf = XNEWVEC (unsigned char, length);
1187 if (!simple_object_internal_read (sobj->descriptor,
1188 sobj->offset + offset, buf,
1189 (size_t) length, &errmsg, err))
1190 {
1191 XDELETEVEC (buf);
1192 XDELETEVEC (names);
1193 XDELETEVEC (shdrs);
1194 return errmsg;
1195 }
1196 for (ent = buf + entsize; ent < buf + length; ent += entsize)
1197 {
1198 unsigned sec = type_functions->fetch_Elf_Word (ent);
1199 if (pfnret[sec - 1] == 0)
1200 keep = 1;
1201 }
1202 if (keep)
1203 {
1204 pfnret[sh_link - 1] = 0;
1205 pfnret[i - 1] = 0;
1206 }
1207 }
1208 if (sh_type == SHT_RELA
1209 || sh_type == SHT_REL)
1210 {
1211 /* Mark relocation sections and symtab of copied sections. */
1212 if (pfnret[sh_info - 1] == 0)
1213 {
1214 pfnret[sh_link - 1] = 0;
1215 pfnret[i - 1] = 0;
1216 }
1217 }
1218 if (sh_type == SHT_SYMTAB)
1219 {
1220 /* Mark strings sections of copied symtabs. */
1221 if (pfnret[i - 1] == 0)
1222 pfnret[sh_link - 1] = 0;
1223 }
1224 }
1225
1226 /* Then perform the actual copying. */
1227 for (i = 1; i < shnum; ++i)
1228 {
1229 unsigned char *shdr;
1230 unsigned int sh_name, sh_type;
1231 const char *name;
1232 off_t offset;
1233 off_t length;
1234 int ret;
1235 const char *errmsg;
1236 simple_object_write_section *dest;
1237 off_t flags;
1238 unsigned char *buf;
1239
1240 shdr = shdrs + (i - 1) * shdr_size;
1241 sh_name = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1242 shdr, sh_name, Elf_Word);
1243 if (sh_name >= name_size)
1244 {
1245 *err = 0;
1246 XDELETEVEC (names);
1247 XDELETEVEC (shdrs);
1248 return "ELF section name out of range";
1249 }
1250
1251 name = (const char *) names + sh_name;
1252 offset = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1253 shdr, sh_offset, Elf_Addr);
1254 length = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1255 shdr, sh_size, Elf_Addr);
1256 sh_type = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1257 shdr, sh_type, Elf_Word);
1258
1259 ret = pfnret[i - 1];
1260 name = ret == 0 ? pfnname[i - 1] : "";
1261
1262 dest = simple_object_write_create_section (dobj, name, 0, &errmsg, err);
1263 if (dest == NULL)
1264 {
1265 XDELETEVEC (names);
1266 XDELETEVEC (shdrs);
1267 return errmsg;
1268 }
1269
1270 /* Record the SHDR of the source. */
1271 memcpy (eow->shdrs + (i - 1) * shdr_size, shdr, shdr_size);
1272 shdr = eow->shdrs + (i - 1) * shdr_size;
1273
1274 /* Copy the data.
1275 ??? This is quite wasteful and ideally would be delayed until
1276 write_to_file (). Thus it questions the interfacing
1277 which eventually should contain destination creation plus
1278 writing. */
1279 /* Keep empty sections for sections we should discard. This avoids
1280 the need to rewrite section indices in symtab and relocation
1281 sections. */
1282 if (ret == 0)
1283 {
1284 buf = XNEWVEC (unsigned char, length);
1285 if (!simple_object_internal_read (sobj->descriptor,
1286 sobj->offset + offset, buf,
1287 (size_t) length, &errmsg, err))
1288 {
1289 XDELETEVEC (buf);
1290 XDELETEVEC (names);
1291 XDELETEVEC (shdrs);
1292 return errmsg;
1293 }
1294
1295 /* If we are processing .symtab purge __gnu_lto_v1 and
1296 __gnu_lto_slim symbols from it. */
1297 if (sh_type == SHT_SYMTAB)
1298 {
1299 unsigned entsize = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1300 shdr, sh_entsize, Elf_Addr);
1301 unsigned strtab = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1302 shdr, sh_link, Elf_Word);
1303 unsigned char *strshdr = shdrs + (strtab - 1) * shdr_size;
1304 off_t stroff = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1305 strshdr, sh_offset, Elf_Addr);
1306 size_t strsz = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1307 strshdr, sh_size, Elf_Addr);
1308 char *strings = XNEWVEC (char, strsz);
1309 unsigned char *ent;
1310 simple_object_internal_read (sobj->descriptor,
1311 sobj->offset + stroff,
1312 (unsigned char *)strings,
1313 strsz, &errmsg, err);
1314 for (ent = buf; ent < buf + length; ent += entsize)
1315 {
1316 unsigned st_shndx = ELF_FETCH_FIELD (type_functions, ei_class,
1317 Sym, ent,
1318 st_shndx, Elf_Half);
1319 unsigned char *st_info;
1320 unsigned char *st_other;
1321 int discard = 0;
1322 if (ei_class == ELFCLASS32)
1323 {
1324 st_info = &((Elf32_External_Sym *)ent)->st_info;
1325 st_other = &((Elf32_External_Sym *)ent)->st_other;
1326 }
1327 else
1328 {
1329 st_info = &((Elf64_External_Sym *)ent)->st_info;
1330 st_other = &((Elf64_External_Sym *)ent)->st_other;
1331 }
1332 /* Eliminate all COMMONs - this includes __gnu_lto_v1
1333 and __gnu_lto_slim which otherwise cause endless
1334 LTO plugin invocation. */
1335 if (st_shndx == SHN_COMMON)
1336 /* Setting st_name to "" seems to work to purge
1337 COMMON symbols (in addition to setting their
1338 size to zero). */
1339 discard = 1;
1340 /* We also need to remove symbols refering to sections
1341 we'll eventually remove as with fat LTO objects
1342 we otherwise get duplicate symbols at final link
1343 (with GNU ld, gold is fine and ignores symbols in
1344 sections marked as EXCLUDE). ld/20513 */
1345 else if (st_shndx != SHN_UNDEF
1346 && st_shndx < shnum
1347 && pfnret[st_shndx - 1] == -1)
1348 discard = 1;
1349
1350 if (discard)
1351 {
1352 /* Make discarded symbols undefined and unnamed. */
1353 ELF_SET_FIELD (type_functions, ei_class, Sym,
1354 ent, st_name, Elf_Word, 0);
1355 ELF_SET_FIELD (type_functions, ei_class, Sym,
1356 ent, st_value, Elf_Addr, 0);
1357 ELF_SET_FIELD (type_functions, ei_class, Sym,
1358 ent, st_size, Elf_Word, 0);
1359 ELF_SET_FIELD (type_functions, ei_class, Sym,
1360 ent, st_shndx, Elf_Half, SHN_UNDEF);
1361 *st_info = ELF_ST_INFO (ELF_ST_BIND (*st_info),
1362 STT_NOTYPE);
1363 *st_other = STV_DEFAULT;
1364 }
1365 }
1366 XDELETEVEC (strings);
1367 }
1368
1369 errmsg = simple_object_write_add_data (dobj, dest,
1370 buf, length, 1, err);
1371 XDELETEVEC (buf);
1372 if (errmsg)
1373 {
1374 XDELETEVEC (names);
1375 XDELETEVEC (shdrs);
1376 return errmsg;
1377 }
1378 }
1379 else
1380 {
1381 /* For deleted sections mark the section header table entry as
1382 unused. That allows the link editor to remove it in a partial
1383 link. */
1384 ELF_SET_FIELD (type_functions, ei_class, Shdr,
1385 shdr, sh_type, Elf_Word, SHT_NULL);
1386 }
1387
1388 flags = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
1389 shdr, sh_flags, Elf_Addr);
1390 if (ret == 0)
1391 flags &= ~SHF_EXCLUDE;
1392 else if (ret == -1)
1393 flags = SHF_EXCLUDE;
1394 ELF_SET_FIELD (type_functions, ei_class, Shdr,
1395 shdr, sh_flags, Elf_Addr, flags);
1396 }
1397
1398 XDELETEVEC (names);
1399 XDELETEVEC (shdrs);
1400 XDELETEVEC (pfnret);
1401 XDELETEVEC (pfnname);
1402
1403 return NULL;
1404 }
1405
1406
1407 /* The ELF functions. */
1408
1409 const struct simple_object_functions simple_object_elf_functions =
1410 {
1411 simple_object_elf_match,
1412 simple_object_elf_find_sections,
1413 simple_object_elf_fetch_attributes,
1414 simple_object_elf_release_read,
1415 simple_object_elf_attributes_merge,
1416 simple_object_elf_release_attributes,
1417 simple_object_elf_start_write,
1418 simple_object_elf_write_to_file,
1419 simple_object_elf_release_write,
1420 simple_object_elf_copy_lto_debug_sections
1421 };