1 /* objcopy.c -- copy object file from input to output, optionally massaging it.
2 Copyright (C) 1991-2019 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
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
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
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.
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
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
25 #include "libiberty.h"
28 #include "filenames.h"
31 #include "coff/internal.h"
33 #include "safe-ctype.h"
35 /* FIXME: See bfd/peXXigen.c for why we include an architecture specific
36 header in generic PE code. */
37 #include "coff/i386.h"
40 static bfd_vma pe_file_alignment
= (bfd_vma
) -1;
41 static bfd_vma pe_heap_commit
= (bfd_vma
) -1;
42 static bfd_vma pe_heap_reserve
= (bfd_vma
) -1;
43 static bfd_vma pe_image_base
= (bfd_vma
) -1;
44 static bfd_vma pe_section_alignment
= (bfd_vma
) -1;
45 static bfd_vma pe_stack_commit
= (bfd_vma
) -1;
46 static bfd_vma pe_stack_reserve
= (bfd_vma
) -1;
47 static short pe_subsystem
= -1;
48 static short pe_major_subsystem_version
= -1;
49 static short pe_minor_subsystem_version
= -1;
51 struct is_specified_symbol_predicate_data
57 /* A node includes symbol name mapping to support redefine_sym. */
66 struct addsym_node
*next
;
74 typedef struct section_rename
76 const char * old_name
;
77 const char * new_name
;
79 struct section_rename
* next
;
83 /* List of sections to be renamed. */
84 static section_rename
*section_rename_list
;
86 static asymbol
**isympp
= NULL
; /* Input symbols. */
87 static asymbol
**osympp
= NULL
; /* Output symbols that survive stripping. */
89 /* If `copy_byte' >= 0, copy 'copy_width' byte(s) of every `interleave' bytes. */
90 static int copy_byte
= -1;
91 static int interleave
= 0; /* Initialised to 4 in copy_main(). */
92 static int copy_width
= 1;
94 static bfd_boolean verbose
; /* Print file and target names. */
95 static bfd_boolean preserve_dates
; /* Preserve input file timestamp. */
96 static int deterministic
= -1; /* Enable deterministic archives. */
97 static int status
= 0; /* Exit status. */
99 static bfd_boolean merge_notes
= FALSE
; /* Merge note sections. */
101 typedef struct merged_note_section
103 asection
* sec
; /* The section that is being merged. */
104 bfd_byte
* contents
;/* New contents of the section. */
105 bfd_size_type size
; /* New size of the section. */
106 struct merged_note_section
* next
; /* Link to next merged note section. */
107 } merged_note_section
;
112 STRIP_NONE
, /* Don't strip. */
113 STRIP_DEBUG
, /* Strip all debugger symbols. */
114 STRIP_UNNEEDED
, /* Strip unnecessary symbols. */
115 STRIP_NONDEBUG
, /* Strip everything but debug info. */
116 STRIP_DWO
, /* Strip all DWO info. */
117 STRIP_NONDWO
, /* Strip everything but DWO info. */
118 STRIP_ALL
/* Strip all symbols. */
121 /* Which symbols to remove. */
122 static enum strip_action strip_symbols
= STRIP_UNDEF
;
127 LOCALS_START_L
, /* Discard locals starting with L. */
128 LOCALS_ALL
/* Discard all locals. */
131 /* Which local symbols to remove. Overrides STRIP_ALL. */
132 static enum locals_action discard_locals
;
134 /* Structure used to hold lists of sections and actions to take. */
137 struct section_list
* next
; /* Next section to change. */
138 const char * pattern
; /* Section name pattern. */
139 bfd_boolean used
; /* Whether this entry was used. */
141 unsigned int context
; /* What to do with matching sections. */
142 /* Flag bits used in the context field.
143 COPY and REMOVE are mutually exlusive. SET and ALTER are mutually exclusive. */
144 #define SECTION_CONTEXT_REMOVE (1 << 0) /* Remove this section. */
145 #define SECTION_CONTEXT_COPY (1 << 1) /* Copy this section, delete all non-copied section. */
146 #define SECTION_CONTEXT_KEEP (1 << 2) /* Keep this section. */
147 #define SECTION_CONTEXT_SET_VMA (1 << 3) /* Set the sections' VMA address. */
148 #define SECTION_CONTEXT_ALTER_VMA (1 << 4) /* Increment or decrement the section's VMA address. */
149 #define SECTION_CONTEXT_SET_LMA (1 << 5) /* Set the sections' LMA address. */
150 #define SECTION_CONTEXT_ALTER_LMA (1 << 6) /* Increment or decrement the section's LMA address. */
151 #define SECTION_CONTEXT_SET_FLAGS (1 << 7) /* Set the section's flags. */
152 #define SECTION_CONTEXT_REMOVE_RELOCS (1 << 8) /* Remove relocations for this section. */
153 #define SECTION_CONTEXT_SET_ALIGNMENT (1 << 9) /* Set alignment for section. */
155 bfd_vma vma_val
; /* Amount to change by or set to. */
156 bfd_vma lma_val
; /* Amount to change by or set to. */
157 flagword flags
; /* What to set the section flags to. */
158 unsigned int alignment
; /* Alignment of output section. */
161 static struct section_list
*change_sections
;
163 /* TRUE if some sections are to be removed. */
164 static bfd_boolean sections_removed
;
166 /* TRUE if only some sections are to be copied. */
167 static bfd_boolean sections_copied
;
169 /* Changes to the start address. */
170 static bfd_vma change_start
= 0;
171 static bfd_boolean set_start_set
= FALSE
;
172 static bfd_vma set_start
;
174 /* Changes to section addresses. */
175 static bfd_vma change_section_address
= 0;
177 /* Filling gaps between sections. */
178 static bfd_boolean gap_fill_set
= FALSE
;
179 static bfd_byte gap_fill
= 0;
181 /* Pad to a given address. */
182 static bfd_boolean pad_to_set
= FALSE
;
183 static bfd_vma pad_to
;
185 /* Use alternative machine code? */
186 static unsigned long use_alt_mach_code
= 0;
188 /* Output BFD flags user wants to set or clear */
189 static flagword bfd_flags_to_set
;
190 static flagword bfd_flags_to_clear
;
192 /* List of sections to add. */
195 /* Next section to add. */
196 struct section_add
*next
;
197 /* Name of section to add. */
199 /* Name of file holding section contents. */
200 const char *filename
;
203 /* Contents of file. */
205 /* BFD section, after it has been added. */
209 /* List of sections to add to the output BFD. */
210 static struct section_add
*add_sections
;
212 /* List of sections to update in the output BFD. */
213 static struct section_add
*update_sections
;
215 /* List of sections to dump from the output BFD. */
216 static struct section_add
*dump_sections
;
218 /* If non-NULL the argument to --add-gnu-debuglink.
219 This should be the filename to store in the .gnu_debuglink section. */
220 static const char * gnu_debuglink_filename
= NULL
;
222 /* Whether to convert debugging information. */
223 static bfd_boolean convert_debugging
= FALSE
;
225 /* Whether to compress/decompress DWARF debug sections. */
230 compress_zlib
= compress
| 1 << 1,
231 compress_gnu_zlib
= compress
| 1 << 2,
232 compress_gabi_zlib
= compress
| 1 << 3,
234 } do_debug_sections
= nothing
;
236 /* Whether to generate ELF common symbols with the STT_COMMON type. */
237 static enum bfd_link_elf_stt_common do_elf_stt_common
= unchanged
;
239 /* Whether to change the leading character in symbol names. */
240 static bfd_boolean change_leading_char
= FALSE
;
242 /* Whether to remove the leading character from global symbol names. */
243 static bfd_boolean remove_leading_char
= FALSE
;
245 /* Whether to permit wildcard in symbol comparison. */
246 static bfd_boolean wildcard
= FALSE
;
248 /* True if --localize-hidden is in effect. */
249 static bfd_boolean localize_hidden
= FALSE
;
251 /* List of symbols to strip, keep, localize, keep-global, weaken,
253 static htab_t strip_specific_htab
= NULL
;
254 static htab_t strip_unneeded_htab
= NULL
;
255 static htab_t keep_specific_htab
= NULL
;
256 static htab_t localize_specific_htab
= NULL
;
257 static htab_t globalize_specific_htab
= NULL
;
258 static htab_t keepglobal_specific_htab
= NULL
;
259 static htab_t weaken_specific_htab
= NULL
;
260 static htab_t redefine_specific_htab
= NULL
;
261 static htab_t redefine_specific_reverse_htab
= NULL
;
262 static struct addsym_node
*add_sym_list
= NULL
, **add_sym_tail
= &add_sym_list
;
263 static int add_symbols
= 0;
265 static char *strip_specific_buffer
= NULL
;
266 static char *strip_unneeded_buffer
= NULL
;
267 static char *keep_specific_buffer
= NULL
;
268 static char *localize_specific_buffer
= NULL
;
269 static char *globalize_specific_buffer
= NULL
;
270 static char *keepglobal_specific_buffer
= NULL
;
271 static char *weaken_specific_buffer
= NULL
;
273 /* If this is TRUE, we weaken global symbols (set BSF_WEAK). */
274 static bfd_boolean weaken
= FALSE
;
276 /* If this is TRUE, we retain BSF_FILE symbols. */
277 static bfd_boolean keep_file_symbols
= FALSE
;
279 /* Prefix symbols/sections. */
280 static char *prefix_symbols_string
= 0;
281 static char *prefix_sections_string
= 0;
282 static char *prefix_alloc_sections_string
= 0;
284 /* True if --extract-symbol was passed on the command line. */
285 static bfd_boolean extract_symbol
= FALSE
;
287 /* If `reverse_bytes' is nonzero, then reverse the order of every chunk
288 of <reverse_bytes> bytes within each output section. */
289 static int reverse_bytes
= 0;
291 /* For Coff objects, we may want to allow or disallow long section names,
292 or preserve them where found in the inputs. Debug info relies on them. */
293 enum long_section_name_handling
300 /* The default long section handling mode is to preserve them.
301 This is also the only behaviour for 'strip'. */
302 static enum long_section_name_handling long_section_names
= KEEP
;
304 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
305 enum command_line_switch
307 OPTION_ADD_SECTION
=150,
308 OPTION_ADD_GNU_DEBUGLINK
,
310 OPTION_ALT_MACH_CODE
,
311 OPTION_CHANGE_ADDRESSES
,
312 OPTION_CHANGE_LEADING_CHAR
,
313 OPTION_CHANGE_SECTION_ADDRESS
,
314 OPTION_CHANGE_SECTION_LMA
,
315 OPTION_CHANGE_SECTION_VMA
,
317 OPTION_CHANGE_WARNINGS
,
318 OPTION_COMPRESS_DEBUG_SECTIONS
,
320 OPTION_DECOMPRESS_DEBUG_SECTIONS
,
322 OPTION_ELF_STT_COMMON
,
324 OPTION_EXTRACT_SYMBOL
,
325 OPTION_FILE_ALIGNMENT
,
328 OPTION_GLOBALIZE_SYMBOL
,
329 OPTION_GLOBALIZE_SYMBOLS
,
333 OPTION_INTERLEAVE_WIDTH
,
334 OPTION_KEEPGLOBAL_SYMBOLS
,
335 OPTION_KEEP_FILE_SYMBOLS
,
338 OPTION_LOCALIZE_HIDDEN
,
339 OPTION_LOCALIZE_SYMBOLS
,
340 OPTION_LONG_SECTION_NAMES
,
342 OPTION_NO_MERGE_NOTES
,
343 OPTION_NO_CHANGE_WARNINGS
,
344 OPTION_ONLY_KEEP_DEBUG
,
346 OPTION_PREFIX_ALLOC_SECTIONS
,
347 OPTION_PREFIX_SECTIONS
,
348 OPTION_PREFIX_SYMBOLS
,
350 OPTION_READONLY_TEXT
,
352 OPTION_REDEFINE_SYMS
,
353 OPTION_REMOVE_LEADING_CHAR
,
354 OPTION_REMOVE_RELOCS
,
355 OPTION_RENAME_SECTION
,
356 OPTION_REVERSE_BYTES
,
357 OPTION_PE_SECTION_ALIGNMENT
,
358 OPTION_SET_SECTION_FLAGS
,
359 OPTION_SET_SECTION_ALIGNMENT
,
365 OPTION_STRIP_SYMBOLS
,
366 OPTION_STRIP_UNNEEDED
,
367 OPTION_STRIP_UNNEEDED_SYMBOL
,
368 OPTION_STRIP_UNNEEDED_SYMBOLS
,
370 OPTION_UPDATE_SECTION
,
371 OPTION_VERILOG_DATA_WIDTH
,
373 OPTION_WEAKEN_SYMBOLS
,
377 /* Options to handle if running as "strip". */
379 static struct option strip_options
[] =
381 {"disable-deterministic-archives", no_argument
, 0, 'U'},
382 {"discard-all", no_argument
, 0, 'x'},
383 {"discard-locals", no_argument
, 0, 'X'},
384 {"enable-deterministic-archives", no_argument
, 0, 'D'},
385 {"format", required_argument
, 0, 'F'}, /* Obsolete */
386 {"help", no_argument
, 0, 'h'},
387 {"info", no_argument
, 0, OPTION_FORMATS_INFO
},
388 {"input-format", required_argument
, 0, 'I'}, /* Obsolete */
389 {"input-target", required_argument
, 0, 'I'},
390 {"keep-file-symbols", no_argument
, 0, OPTION_KEEP_FILE_SYMBOLS
},
391 {"keep-section", required_argument
, 0, OPTION_KEEP_SECTION
},
392 {"keep-symbol", required_argument
, 0, 'K'},
393 {"merge-notes", no_argument
, 0, 'M'},
394 {"no-merge-notes", no_argument
, 0, OPTION_NO_MERGE_NOTES
},
395 {"only-keep-debug", no_argument
, 0, OPTION_ONLY_KEEP_DEBUG
},
396 {"output-file", required_argument
, 0, 'o'},
397 {"output-format", required_argument
, 0, 'O'}, /* Obsolete */
398 {"output-target", required_argument
, 0, 'O'},
399 {"preserve-dates", no_argument
, 0, 'p'},
400 {"remove-section", required_argument
, 0, 'R'},
401 {"remove-relocations", required_argument
, 0, OPTION_REMOVE_RELOCS
},
402 {"strip-all", no_argument
, 0, 's'},
403 {"strip-debug", no_argument
, 0, 'S'},
404 {"strip-dwo", no_argument
, 0, OPTION_STRIP_DWO
},
405 {"strip-symbol", required_argument
, 0, 'N'},
406 {"strip-unneeded", no_argument
, 0, OPTION_STRIP_UNNEEDED
},
407 {"target", required_argument
, 0, 'F'},
408 {"verbose", no_argument
, 0, 'v'},
409 {"version", no_argument
, 0, 'V'},
410 {"wildcard", no_argument
, 0, 'w'},
411 {0, no_argument
, 0, 0}
414 /* Options to handle if running as "objcopy". */
416 static struct option copy_options
[] =
418 {"add-gnu-debuglink", required_argument
, 0, OPTION_ADD_GNU_DEBUGLINK
},
419 {"add-section", required_argument
, 0, OPTION_ADD_SECTION
},
420 {"add-symbol", required_argument
, 0, OPTION_ADD_SYMBOL
},
421 {"adjust-section-vma", required_argument
, 0, OPTION_CHANGE_SECTION_ADDRESS
},
422 {"adjust-start", required_argument
, 0, OPTION_CHANGE_START
},
423 {"adjust-vma", required_argument
, 0, OPTION_CHANGE_ADDRESSES
},
424 {"adjust-warnings", no_argument
, 0, OPTION_CHANGE_WARNINGS
},
425 {"alt-machine-code", required_argument
, 0, OPTION_ALT_MACH_CODE
},
426 {"binary-architecture", required_argument
, 0, 'B'},
427 {"byte", required_argument
, 0, 'b'},
428 {"change-addresses", required_argument
, 0, OPTION_CHANGE_ADDRESSES
},
429 {"change-leading-char", no_argument
, 0, OPTION_CHANGE_LEADING_CHAR
},
430 {"change-section-address", required_argument
, 0, OPTION_CHANGE_SECTION_ADDRESS
},
431 {"change-section-lma", required_argument
, 0, OPTION_CHANGE_SECTION_LMA
},
432 {"change-section-vma", required_argument
, 0, OPTION_CHANGE_SECTION_VMA
},
433 {"change-start", required_argument
, 0, OPTION_CHANGE_START
},
434 {"change-warnings", no_argument
, 0, OPTION_CHANGE_WARNINGS
},
435 {"compress-debug-sections", optional_argument
, 0, OPTION_COMPRESS_DEBUG_SECTIONS
},
436 {"debugging", no_argument
, 0, OPTION_DEBUGGING
},
437 {"decompress-debug-sections", no_argument
, 0, OPTION_DECOMPRESS_DEBUG_SECTIONS
},
438 {"disable-deterministic-archives", no_argument
, 0, 'U'},
439 {"discard-all", no_argument
, 0, 'x'},
440 {"discard-locals", no_argument
, 0, 'X'},
441 {"dump-section", required_argument
, 0, OPTION_DUMP_SECTION
},
442 {"elf-stt-common", required_argument
, 0, OPTION_ELF_STT_COMMON
},
443 {"enable-deterministic-archives", no_argument
, 0, 'D'},
444 {"extract-dwo", no_argument
, 0, OPTION_EXTRACT_DWO
},
445 {"extract-symbol", no_argument
, 0, OPTION_EXTRACT_SYMBOL
},
446 {"file-alignment", required_argument
, 0, OPTION_FILE_ALIGNMENT
},
447 {"format", required_argument
, 0, 'F'}, /* Obsolete */
448 {"gap-fill", required_argument
, 0, OPTION_GAP_FILL
},
449 {"globalize-symbol", required_argument
, 0, OPTION_GLOBALIZE_SYMBOL
},
450 {"globalize-symbols", required_argument
, 0, OPTION_GLOBALIZE_SYMBOLS
},
451 {"heap", required_argument
, 0, OPTION_HEAP
},
452 {"help", no_argument
, 0, 'h'},
453 {"image-base", required_argument
, 0 , OPTION_IMAGE_BASE
},
454 {"impure", no_argument
, 0, OPTION_IMPURE
},
455 {"info", no_argument
, 0, OPTION_FORMATS_INFO
},
456 {"input-format", required_argument
, 0, 'I'}, /* Obsolete */
457 {"input-target", required_argument
, 0, 'I'},
458 {"interleave", optional_argument
, 0, 'i'},
459 {"interleave-width", required_argument
, 0, OPTION_INTERLEAVE_WIDTH
},
460 {"keep-file-symbols", no_argument
, 0, OPTION_KEEP_FILE_SYMBOLS
},
461 {"keep-global-symbol", required_argument
, 0, 'G'},
462 {"keep-global-symbols", required_argument
, 0, OPTION_KEEPGLOBAL_SYMBOLS
},
463 {"keep-section", required_argument
, 0, OPTION_KEEP_SECTION
},
464 {"keep-symbol", required_argument
, 0, 'K'},
465 {"keep-symbols", required_argument
, 0, OPTION_KEEP_SYMBOLS
},
466 {"localize-hidden", no_argument
, 0, OPTION_LOCALIZE_HIDDEN
},
467 {"localize-symbol", required_argument
, 0, 'L'},
468 {"localize-symbols", required_argument
, 0, OPTION_LOCALIZE_SYMBOLS
},
469 {"long-section-names", required_argument
, 0, OPTION_LONG_SECTION_NAMES
},
470 {"merge-notes", no_argument
, 0, 'M'},
471 {"no-merge-notes", no_argument
, 0, OPTION_NO_MERGE_NOTES
},
472 {"no-adjust-warnings", no_argument
, 0, OPTION_NO_CHANGE_WARNINGS
},
473 {"no-change-warnings", no_argument
, 0, OPTION_NO_CHANGE_WARNINGS
},
474 {"only-keep-debug", no_argument
, 0, OPTION_ONLY_KEEP_DEBUG
},
475 {"only-section", required_argument
, 0, 'j'},
476 {"output-format", required_argument
, 0, 'O'}, /* Obsolete */
477 {"output-target", required_argument
, 0, 'O'},
478 {"pad-to", required_argument
, 0, OPTION_PAD_TO
},
479 {"prefix-alloc-sections", required_argument
, 0, OPTION_PREFIX_ALLOC_SECTIONS
},
480 {"prefix-sections", required_argument
, 0, OPTION_PREFIX_SECTIONS
},
481 {"prefix-symbols", required_argument
, 0, OPTION_PREFIX_SYMBOLS
},
482 {"preserve-dates", no_argument
, 0, 'p'},
483 {"pure", no_argument
, 0, OPTION_PURE
},
484 {"readonly-text", no_argument
, 0, OPTION_READONLY_TEXT
},
485 {"redefine-sym", required_argument
, 0, OPTION_REDEFINE_SYM
},
486 {"redefine-syms", required_argument
, 0, OPTION_REDEFINE_SYMS
},
487 {"remove-leading-char", no_argument
, 0, OPTION_REMOVE_LEADING_CHAR
},
488 {"remove-section", required_argument
, 0, 'R'},
489 {"remove-relocations", required_argument
, 0, OPTION_REMOVE_RELOCS
},
490 {"rename-section", required_argument
, 0, OPTION_RENAME_SECTION
},
491 {"reverse-bytes", required_argument
, 0, OPTION_REVERSE_BYTES
},
492 {"section-alignment", required_argument
, 0, OPTION_PE_SECTION_ALIGNMENT
},
493 {"set-section-flags", required_argument
, 0, OPTION_SET_SECTION_FLAGS
},
494 {"set-section-alignment", required_argument
, 0, OPTION_SET_SECTION_ALIGNMENT
},
495 {"set-start", required_argument
, 0, OPTION_SET_START
},
496 {"srec-forceS3", no_argument
, 0, OPTION_SREC_FORCES3
},
497 {"srec-len", required_argument
, 0, OPTION_SREC_LEN
},
498 {"stack", required_argument
, 0, OPTION_STACK
},
499 {"strip-all", no_argument
, 0, 'S'},
500 {"strip-debug", no_argument
, 0, 'g'},
501 {"strip-dwo", no_argument
, 0, OPTION_STRIP_DWO
},
502 {"strip-symbol", required_argument
, 0, 'N'},
503 {"strip-symbols", required_argument
, 0, OPTION_STRIP_SYMBOLS
},
504 {"strip-unneeded", no_argument
, 0, OPTION_STRIP_UNNEEDED
},
505 {"strip-unneeded-symbol", required_argument
, 0, OPTION_STRIP_UNNEEDED_SYMBOL
},
506 {"strip-unneeded-symbols", required_argument
, 0, OPTION_STRIP_UNNEEDED_SYMBOLS
},
507 {"subsystem", required_argument
, 0, OPTION_SUBSYSTEM
},
508 {"target", required_argument
, 0, 'F'},
509 {"update-section", required_argument
, 0, OPTION_UPDATE_SECTION
},
510 {"verbose", no_argument
, 0, 'v'},
511 {"verilog-data-width", required_argument
, 0, OPTION_VERILOG_DATA_WIDTH
},
512 {"version", no_argument
, 0, 'V'},
513 {"weaken", no_argument
, 0, OPTION_WEAKEN
},
514 {"weaken-symbol", required_argument
, 0, 'W'},
515 {"weaken-symbols", required_argument
, 0, OPTION_WEAKEN_SYMBOLS
},
516 {"wildcard", no_argument
, 0, 'w'},
517 {"writable-text", no_argument
, 0, OPTION_WRITABLE_TEXT
},
518 {0, no_argument
, 0, 0}
522 extern char *program_name
;
524 /* This flag distinguishes between strip and objcopy:
525 1 means this is 'strip'; 0 means this is 'objcopy'.
526 -1 means if we should use argv[0] to decide. */
529 /* The maximum length of an S record. This variable is defined in srec.c
530 and can be modified by the --srec-len parameter. */
531 extern unsigned int _bfd_srec_len
;
533 /* Restrict the generation of Srecords to type S3 only.
534 This variable is defined in bfd/srec.c and can be toggled
535 on by the --srec-forceS3 command line switch. */
536 extern bfd_boolean _bfd_srec_forceS3
;
538 /* Width of data in bytes for verilog output.
539 This variable is declared in bfd/verilog.c and can be modified by
540 the --verilog-data-width parameter. */
541 extern unsigned int VerilogDataWidth
;
543 /* Forward declarations. */
544 static void setup_section (bfd
*, asection
*, void *);
545 static void setup_bfd_headers (bfd
*, bfd
*);
546 static void copy_relocations_in_section (bfd
*, asection
*, void *);
547 static void copy_section (bfd
*, asection
*, void *);
548 static void get_sections (bfd
*, asection
*, void *);
549 static int compare_section_lma (const void *, const void *);
550 static void mark_symbols_used_in_relocations (bfd
*, asection
*, void *);
551 static bfd_boolean
write_debugging_info (bfd
*, void *, long *, asymbol
***);
552 static const char *lookup_sym_redefinition (const char *);
553 static const char *find_section_rename (const char *, flagword
*);
555 ATTRIBUTE_NORETURN
static void
556 copy_usage (FILE *stream
, int exit_status
)
558 fprintf (stream
, _("Usage: %s [option(s)] in-file [out-file]\n"), program_name
);
559 fprintf (stream
, _(" Copies a binary file, possibly transforming it in the process\n"));
560 fprintf (stream
, _(" The options are:\n"));
561 fprintf (stream
, _("\
562 -I --input-target <bfdname> Assume input file is in format <bfdname>\n\
563 -O --output-target <bfdname> Create an output file in format <bfdname>\n\
564 -B --binary-architecture <arch> Set output arch, when input is arch-less\n\
565 -F --target <bfdname> Set both input and output format to <bfdname>\n\
566 --debugging Convert debugging information, if possible\n\
567 -p --preserve-dates Copy modified/access timestamps to the output\n"));
568 if (DEFAULT_AR_DETERMINISTIC
)
569 fprintf (stream
, _("\
570 -D --enable-deterministic-archives\n\
571 Produce deterministic output when stripping archives (default)\n\
572 -U --disable-deterministic-archives\n\
573 Disable -D behavior\n"));
575 fprintf (stream
, _("\
576 -D --enable-deterministic-archives\n\
577 Produce deterministic output when stripping archives\n\
578 -U --disable-deterministic-archives\n\
579 Disable -D behavior (default)\n"));
580 fprintf (stream
, _("\
581 -j --only-section <name> Only copy section <name> into the output\n\
582 --add-gnu-debuglink=<file> Add section .gnu_debuglink linking to <file>\n\
583 -R --remove-section <name> Remove section <name> from the output\n\
584 --remove-relocations <name> Remove relocations from section <name>\n\
585 -S --strip-all Remove all symbol and relocation information\n\
586 -g --strip-debug Remove all debugging symbols & sections\n\
587 --strip-dwo Remove all DWO sections\n\
588 --strip-unneeded Remove all symbols not needed by relocations\n\
589 -N --strip-symbol <name> Do not copy symbol <name>\n\
590 --strip-unneeded-symbol <name>\n\
591 Do not copy symbol <name> unless needed by\n\
593 --only-keep-debug Strip everything but the debug information\n\
594 --extract-dwo Copy only DWO sections\n\
595 --extract-symbol Remove section contents but keep symbols\n\
596 --keep-section <name> Do not strip section <name>\n\
597 -K --keep-symbol <name> Do not strip symbol <name>\n\
598 --keep-file-symbols Do not strip file symbol(s)\n\
599 --localize-hidden Turn all ELF hidden symbols into locals\n\
600 -L --localize-symbol <name> Force symbol <name> to be marked as a local\n\
601 --globalize-symbol <name> Force symbol <name> to be marked as a global\n\
602 -G --keep-global-symbol <name> Localize all symbols except <name>\n\
603 -W --weaken-symbol <name> Force symbol <name> to be marked as a weak\n\
604 --weaken Force all global symbols to be marked as weak\n\
605 -w --wildcard Permit wildcard in symbol comparison\n\
606 -x --discard-all Remove all non-global symbols\n\
607 -X --discard-locals Remove any compiler-generated symbols\n\
608 -i --interleave[=<number>] Only copy N out of every <number> bytes\n\
609 --interleave-width <number> Set N for --interleave\n\
610 -b --byte <num> Select byte <num> in every interleaved block\n\
611 --gap-fill <val> Fill gaps between sections with <val>\n\
612 --pad-to <addr> Pad the last section up to address <addr>\n\
613 --set-start <addr> Set the start address to <addr>\n\
614 {--change-start|--adjust-start} <incr>\n\
615 Add <incr> to the start address\n\
616 {--change-addresses|--adjust-vma} <incr>\n\
617 Add <incr> to LMA, VMA and start addresses\n\
618 {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>\n\
619 Change LMA and VMA of section <name> by <val>\n\
620 --change-section-lma <name>{=|+|-}<val>\n\
621 Change the LMA of section <name> by <val>\n\
622 --change-section-vma <name>{=|+|-}<val>\n\
623 Change the VMA of section <name> by <val>\n\
624 {--[no-]change-warnings|--[no-]adjust-warnings}\n\
625 Warn if a named section does not exist\n\
626 --set-section-flags <name>=<flags>\n\
627 Set section <name>'s properties to <flags>\n\
628 --set-section-alignment <name>=<align>\n\
629 Set section <name>'s alignment to <align> bytes\n\
630 --add-section <name>=<file> Add section <name> found in <file> to output\n\
631 --update-section <name>=<file>\n\
632 Update contents of section <name> with\n\
633 contents found in <file>\n\
634 --dump-section <name>=<file> Dump the contents of section <name> into <file>\n\
635 --rename-section <old>=<new>[,<flags>] Rename section <old> to <new>\n\
636 --long-section-names {enable|disable|keep}\n\
637 Handle long section names in Coff objects.\n\
638 --change-leading-char Force output format's leading character style\n\
639 --remove-leading-char Remove leading character from global symbols\n\
640 --reverse-bytes=<num> Reverse <num> bytes at a time, in output sections with content\n\
641 --redefine-sym <old>=<new> Redefine symbol name <old> to <new>\n\
642 --redefine-syms <file> --redefine-sym for all symbol pairs \n\
644 --srec-len <number> Restrict the length of generated Srecords\n\
645 --srec-forceS3 Restrict the type of generated Srecords to S3\n\
646 --strip-symbols <file> -N for all symbols listed in <file>\n\
647 --strip-unneeded-symbols <file>\n\
648 --strip-unneeded-symbol for all symbols listed\n\
650 --keep-symbols <file> -K for all symbols listed in <file>\n\
651 --localize-symbols <file> -L for all symbols listed in <file>\n\
652 --globalize-symbols <file> --globalize-symbol for all in <file>\n\
653 --keep-global-symbols <file> -G for all symbols listed in <file>\n\
654 --weaken-symbols <file> -W for all symbols listed in <file>\n\
655 --add-symbol <name>=[<section>:]<value>[,<flags>] Add a symbol\n\
656 --alt-machine-code <index> Use the target's <index>'th alternative machine\n\
657 --writable-text Mark the output text as writable\n\
658 --readonly-text Make the output text write protected\n\
659 --pure Mark the output file as demand paged\n\
660 --impure Mark the output file as impure\n\
661 --prefix-symbols <prefix> Add <prefix> to start of every symbol name\n\
662 --prefix-sections <prefix> Add <prefix> to start of every section name\n\
663 --prefix-alloc-sections <prefix>\n\
664 Add <prefix> to start of every allocatable\n\
666 --file-alignment <num> Set PE file alignment to <num>\n\
667 --heap <reserve>[,<commit>] Set PE reserve/commit heap to <reserve>/\n\
669 --image-base <address> Set PE image base to <address>\n\
670 --section-alignment <num> Set PE section alignment to <num>\n\
671 --stack <reserve>[,<commit>] Set PE reserve/commit stack to <reserve>/\n\
673 --subsystem <name>[:<version>]\n\
674 Set PE subsystem to <name> [& <version>]\n\
675 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n\
676 Compress DWARF debug sections using zlib\n\
677 --decompress-debug-sections Decompress DWARF debug sections using zlib\n\
678 --elf-stt-common=[yes|no] Generate ELF common symbols with STT_COMMON\n\
680 --verilog-data-width <number> Specifies data width, in bytes, for verilog output\n\
681 -M --merge-notes Remove redundant entries in note sections\n\
682 --no-merge-notes Do not attempt to remove redundant notes (default)\n\
683 -v --verbose List all object files modified\n\
684 @<file> Read options from <file>\n\
685 -V --version Display this program's version number\n\
686 -h --help Display this output\n\
687 --info List object formats & architectures supported\n\
689 list_supported_targets (program_name
, stream
);
690 if (REPORT_BUGS_TO
[0] && exit_status
== 0)
691 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
695 ATTRIBUTE_NORETURN
static void
696 strip_usage (FILE *stream
, int exit_status
)
698 fprintf (stream
, _("Usage: %s <option(s)> in-file(s)\n"), program_name
);
699 fprintf (stream
, _(" Removes symbols and sections from files\n"));
700 fprintf (stream
, _(" The options are:\n"));
701 fprintf (stream
, _("\
702 -I --input-target=<bfdname> Assume input file is in format <bfdname>\n\
703 -O --output-target=<bfdname> Create an output file in format <bfdname>\n\
704 -F --target=<bfdname> Set both input and output format to <bfdname>\n\
705 -p --preserve-dates Copy modified/access timestamps to the output\n\
707 if (DEFAULT_AR_DETERMINISTIC
)
708 fprintf (stream
, _("\
709 -D --enable-deterministic-archives\n\
710 Produce deterministic output when stripping archives (default)\n\
711 -U --disable-deterministic-archives\n\
712 Disable -D behavior\n"));
714 fprintf (stream
, _("\
715 -D --enable-deterministic-archives\n\
716 Produce deterministic output when stripping archives\n\
717 -U --disable-deterministic-archives\n\
718 Disable -D behavior (default)\n"));
719 fprintf (stream
, _("\
720 -R --remove-section=<name> Also remove section <name> from the output\n\
721 --remove-relocations <name> Remove relocations from section <name>\n\
722 -s --strip-all Remove all symbol and relocation information\n\
723 -g -S -d --strip-debug Remove all debugging symbols & sections\n\
724 --strip-dwo Remove all DWO sections\n\
725 --strip-unneeded Remove all symbols not needed by relocations\n\
726 --only-keep-debug Strip everything but the debug information\n\
727 -M --merge-notes Remove redundant entries in note sections (default)\n\
728 --no-merge-notes Do not attempt to remove redundant notes\n\
729 -N --strip-symbol=<name> Do not copy symbol <name>\n\
730 --keep-section=<name> Do not strip section <name>\n\
731 -K --keep-symbol=<name> Do not strip symbol <name>\n\
732 --keep-file-symbols Do not strip file symbol(s)\n\
733 -w --wildcard Permit wildcard in symbol comparison\n\
734 -x --discard-all Remove all non-global symbols\n\
735 -X --discard-locals Remove any compiler-generated symbols\n\
736 -v --verbose List all object files modified\n\
737 -V --version Display this program's version number\n\
738 -h --help Display this output\n\
739 --info List object formats & architectures supported\n\
740 -o <file> Place stripped output into <file>\n\
743 list_supported_targets (program_name
, stream
);
744 if (REPORT_BUGS_TO
[0] && exit_status
== 0)
745 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
749 /* Parse section flags into a flagword, with a fatal error if the
750 string can't be parsed. */
753 parse_flags (const char *s
)
763 snext
= strchr (s
, ',');
773 #define PARSE_FLAG(fname,fval) \
774 else if (strncasecmp (fname, s, len) == 0) ret |= fval
775 PARSE_FLAG ("alloc", SEC_ALLOC
);
776 PARSE_FLAG ("load", SEC_LOAD
);
777 PARSE_FLAG ("noload", SEC_NEVER_LOAD
);
778 PARSE_FLAG ("readonly", SEC_READONLY
);
779 PARSE_FLAG ("debug", SEC_DEBUGGING
);
780 PARSE_FLAG ("code", SEC_CODE
);
781 PARSE_FLAG ("data", SEC_DATA
);
782 PARSE_FLAG ("rom", SEC_ROM
);
783 PARSE_FLAG ("share", SEC_COFF_SHARED
);
784 PARSE_FLAG ("contents", SEC_HAS_CONTENTS
);
785 PARSE_FLAG ("merge", SEC_MERGE
);
786 PARSE_FLAG ("strings", SEC_STRINGS
);
792 copy
= (char *) xmalloc (len
+ 1);
793 strncpy (copy
, s
, len
);
795 non_fatal (_("unrecognized section flag `%s'"), copy
);
796 fatal (_("supported flags: %s"),
797 "alloc, load, noload, readonly, debug, code, data, rom, share, contents, merge, strings");
807 /* Parse symbol flags into a flagword, with a fatal error if the
808 string can't be parsed. */
811 parse_symflags (const char *s
, char **other
)
821 snext
= strchr (s
, ',');
830 #define PARSE_FLAG(fname, fval) \
831 else if (len == sizeof fname - 1 \
832 && strncasecmp (fname, s, len) == 0) \
835 #define PARSE_OTHER(fname, fval) \
836 else if (len >= sizeof fname \
837 && strncasecmp (fname, s, sizeof fname - 1) == 0) \
838 fval = xstrndup (s + sizeof fname - 1, len - sizeof fname + 1)
841 PARSE_FLAG ("local", BSF_LOCAL
);
842 PARSE_FLAG ("global", BSF_GLOBAL
);
843 PARSE_FLAG ("export", BSF_EXPORT
);
844 PARSE_FLAG ("debug", BSF_DEBUGGING
);
845 PARSE_FLAG ("function", BSF_FUNCTION
);
846 PARSE_FLAG ("weak", BSF_WEAK
);
847 PARSE_FLAG ("section", BSF_SECTION_SYM
);
848 PARSE_FLAG ("constructor", BSF_CONSTRUCTOR
);
849 PARSE_FLAG ("warning", BSF_WARNING
);
850 PARSE_FLAG ("indirect", BSF_INDIRECT
);
851 PARSE_FLAG ("file", BSF_FILE
);
852 PARSE_FLAG ("object", BSF_OBJECT
);
853 PARSE_FLAG ("synthetic", BSF_SYNTHETIC
);
854 PARSE_FLAG ("indirect-function", BSF_GNU_INDIRECT_FUNCTION
| BSF_FUNCTION
);
855 PARSE_FLAG ("unique-object", BSF_GNU_UNIQUE
| BSF_OBJECT
);
856 PARSE_OTHER ("before=", *other
);
864 copy
= (char *) xmalloc (len
+ 1);
865 strncpy (copy
, s
, len
);
867 non_fatal (_("unrecognized symbol flag `%s'"), copy
);
868 fatal (_("supported flags: %s"),
869 "local, global, export, debug, function, weak, section, "
870 "constructor, warning, indirect, file, object, synthetic, "
871 "indirect-function, unique-object, before=<othersym>");
881 /* Find and optionally add an entry in the change_sections list.
883 We need to be careful in how we match section names because of the support
884 for wildcard characters. For example suppose that the user has invoked
887 --set-section-flags .debug_*=debug
888 --set-section-flags .debug_str=readonly,debug
889 --change-section-address .debug_*ranges=0x1000
891 With the idea that all debug sections will receive the DEBUG flag, the
892 .debug_str section will also receive the READONLY flag and the
893 .debug_ranges and .debug_aranges sections will have their address set to
894 0x1000. (This may not make much sense, but it is just an example).
896 When adding the section name patterns to the section list we need to make
897 sure that previous entries do not match with the new entry, unless the
898 match is exact. (In which case we assume that the user is overriding
899 the previous entry with the new context).
901 When matching real section names to the section list we make use of the
902 wildcard characters, but we must do so in context. Eg if we are setting
903 section addresses then we match for .debug_ranges but not for .debug_info.
905 Finally, if ADD is false and we do find a match, we mark the section list
908 static struct section_list
*
909 find_section_list (const char *name
, bfd_boolean add
, unsigned int context
)
911 struct section_list
*p
, *match
= NULL
;
913 /* assert ((context & ((1 << 7) - 1)) != 0); */
915 for (p
= change_sections
; p
!= NULL
; p
= p
->next
)
919 if (strcmp (p
->pattern
, name
) == 0)
921 /* Check for context conflicts. */
922 if (((p
->context
& SECTION_CONTEXT_REMOVE
)
923 && (context
& SECTION_CONTEXT_COPY
))
924 || ((context
& SECTION_CONTEXT_REMOVE
)
925 && (p
->context
& SECTION_CONTEXT_COPY
)))
926 fatal (_("error: %s both copied and removed"), name
);
928 if (((p
->context
& SECTION_CONTEXT_SET_VMA
)
929 && (context
& SECTION_CONTEXT_ALTER_VMA
))
930 || ((context
& SECTION_CONTEXT_SET_VMA
)
931 && (context
& SECTION_CONTEXT_ALTER_VMA
)))
932 fatal (_("error: %s both sets and alters VMA"), name
);
934 if (((p
->context
& SECTION_CONTEXT_SET_LMA
)
935 && (context
& SECTION_CONTEXT_ALTER_LMA
))
936 || ((context
& SECTION_CONTEXT_SET_LMA
)
937 && (context
& SECTION_CONTEXT_ALTER_LMA
)))
938 fatal (_("error: %s both sets and alters LMA"), name
);
940 /* Extend the context. */
941 p
->context
|= context
;
945 /* If we are not adding a new name/pattern then
946 only check for a match if the context applies. */
947 else if (p
->context
& context
)
949 /* We could check for the presence of wildchar characters
950 first and choose between calling strcmp and fnmatch,
951 but is that really worth it ? */
952 if (p
->pattern
[0] == '!')
954 if (fnmatch (p
->pattern
+ 1, name
, 0) == 0)
962 if (fnmatch (p
->pattern
, name
, 0) == 0)
978 p
= (struct section_list
*) xmalloc (sizeof (struct section_list
));
981 p
->context
= context
;
986 p
->next
= change_sections
;
992 /* S1 is the entry node already in the table, S2 is the key node. */
995 eq_string_redefnode (const void *s1
, const void *s2
)
997 struct redefine_node
*node1
= (struct redefine_node
*) s1
;
998 struct redefine_node
*node2
= (struct redefine_node
*) s2
;
999 return !strcmp ((const char *) node1
->source
, (const char *) node2
->source
);
1002 /* P is redefine node. Hash value is generated from its "source" filed. */
1005 htab_hash_redefnode (const void *p
)
1007 struct redefine_node
*redefnode
= (struct redefine_node
*) p
;
1008 return htab_hash_string (redefnode
->source
);
1011 /* Create hashtab used for redefine node. */
1014 create_symbol2redef_htab (void)
1016 return htab_create_alloc (16, htab_hash_redefnode
, eq_string_redefnode
, NULL
,
1020 /* There is htab_hash_string but no htab_eq_string. Makes sense. */
1023 eq_string (const void *s1
, const void *s2
)
1025 return strcmp ((const char *) s1
, (const char *) s2
) == 0;
1029 create_symbol_htab (void)
1031 return htab_create_alloc (16, htab_hash_string
, eq_string
, NULL
, xcalloc
, free
);
1035 create_symbol_htabs (void)
1037 strip_specific_htab
= create_symbol_htab ();
1038 strip_unneeded_htab
= create_symbol_htab ();
1039 keep_specific_htab
= create_symbol_htab ();
1040 localize_specific_htab
= create_symbol_htab ();
1041 globalize_specific_htab
= create_symbol_htab ();
1042 keepglobal_specific_htab
= create_symbol_htab ();
1043 weaken_specific_htab
= create_symbol_htab ();
1044 redefine_specific_htab
= create_symbol2redef_htab ();
1045 /* As there is no bidirectional hash table in libiberty, need a reverse table
1046 to check duplicated target string. */
1047 redefine_specific_reverse_htab
= create_symbol_htab ();
1050 /* Add a symbol to strip_specific_list. */
1053 add_specific_symbol (const char *name
, htab_t htab
)
1055 *htab_find_slot (htab
, name
, INSERT
) = (char *) name
;
1058 /* Like add_specific_symbol, but the element type is void *. */
1061 add_specific_symbol_node (const void *node
, htab_t htab
)
1063 *htab_find_slot (htab
, node
, INSERT
) = (void *) node
;
1066 /* Add symbols listed in `filename' to strip_specific_list. */
1068 #define IS_WHITESPACE(c) ((c) == ' ' || (c) == '\t')
1069 #define IS_LINE_TERMINATOR(c) ((c) == '\n' || (c) == '\r' || (c) == '\0')
1072 add_specific_symbols (const char *filename
, htab_t htab
, char **buffer_p
)
1078 unsigned int line_count
;
1080 size
= get_file_size (filename
);
1087 buffer
= (char *) xmalloc (size
+ 2);
1088 f
= fopen (filename
, FOPEN_RT
);
1090 fatal (_("cannot open '%s': %s"), filename
, strerror (errno
));
1092 if (fread (buffer
, 1, size
, f
) == 0 || ferror (f
))
1093 fatal (_("%s: fread failed"), filename
);
1096 buffer
[size
] = '\n';
1097 buffer
[size
+ 1] = '\0';
1101 for (line
= buffer
; * line
!= '\0'; line
++)
1106 int finished
= FALSE
;
1108 for (eol
= line
;; eol
++)
1114 /* Cope with \n\r. */
1122 /* Cope with \r\n. */
1133 /* Line comment, Terminate the line here, in case a
1134 name is present and then allow the rest of the
1135 loop to find the real end of the line. */
1147 /* A name may now exist somewhere between 'line' and 'eol'.
1148 Strip off leading whitespace and trailing whitespace,
1149 then add it to the list. */
1150 for (name
= line
; IS_WHITESPACE (* name
); name
++)
1152 for (name_end
= name
;
1153 (! IS_WHITESPACE (* name_end
))
1154 && (! IS_LINE_TERMINATOR (* name_end
));
1158 if (! IS_LINE_TERMINATOR (* name_end
))
1162 for (extra
= name_end
+ 1; IS_WHITESPACE (* extra
); extra
++)
1165 if (! IS_LINE_TERMINATOR (* extra
))
1166 non_fatal (_("%s:%d: Ignoring rubbish found on this line"),
1167 filename
, line_count
);
1172 if (name_end
> name
)
1173 add_specific_symbol (name
, htab
);
1175 /* Advance line pointer to end of line. The 'eol ++' in the for
1176 loop above will then advance us to the start of the next line. */
1181 /* Do not free the buffer. Parts of it will have been referenced
1182 in the calls to add_specific_symbol. */
1186 /* See whether a symbol should be stripped or kept
1187 based on strip_specific_list and keep_symbols. */
1190 is_specified_symbol_predicate (void **slot
, void *data
)
1192 struct is_specified_symbol_predicate_data
*d
=
1193 (struct is_specified_symbol_predicate_data
*) data
;
1194 const char *slot_name
= (char *) *slot
;
1196 if (*slot_name
!= '!')
1198 if (! fnmatch (slot_name
, d
->name
, 0))
1201 /* Continue traversal, there might be a non-match rule. */
1207 if (! fnmatch (slot_name
+ 1, d
->name
, 0))
1210 /* Stop traversal. */
1215 /* Continue traversal. */
1220 is_specified_symbol (const char *name
, htab_t htab
)
1224 struct is_specified_symbol_predicate_data data
;
1229 htab_traverse (htab
, is_specified_symbol_predicate
, &data
);
1234 return htab_find (htab
, name
) != NULL
;
1237 /* Return a pointer to the symbol used as a signature for GROUP. */
1240 group_signature (asection
*group
)
1242 bfd
*abfd
= group
->owner
;
1243 Elf_Internal_Shdr
*ghdr
;
1245 /* PR 20089: An earlier error may have prevented us from loading the symbol table. */
1249 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
1252 ghdr
= &elf_section_data (group
)->this_hdr
;
1253 if (ghdr
->sh_link
== elf_onesymtab (abfd
))
1255 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
1256 Elf_Internal_Shdr
*symhdr
= &elf_symtab_hdr (abfd
);
1258 if (ghdr
->sh_info
> 0
1259 && ghdr
->sh_info
< symhdr
->sh_size
/ bed
->s
->sizeof_sym
)
1260 return isympp
[ghdr
->sh_info
- 1];
1265 /* Return TRUE if the section is a DWO section. */
1268 is_dwo_section (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
)
1270 const char *name
= bfd_section_name (sec
);
1271 int len
= strlen (name
);
1273 return strncmp (name
+ len
- 4, ".dwo", 4) == 0;
1276 /* Return TRUE if section SEC is in the update list. */
1279 is_update_section (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
)
1281 if (update_sections
!= NULL
)
1283 struct section_add
*pupdate
;
1285 for (pupdate
= update_sections
;
1287 pupdate
= pupdate
->next
)
1289 if (strcmp (sec
->name
, pupdate
->name
) == 0)
1298 is_mergeable_note_section (bfd
* abfd
, asection
* sec
)
1301 && bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1302 && elf_section_data (sec
)->this_hdr
.sh_type
== SHT_NOTE
1303 /* FIXME: We currently only support merging GNU_BUILD_NOTEs.
1304 We should add support for more note types. */
1305 && ((elf_section_data (sec
)->this_hdr
.sh_flags
& SHF_GNU_BUILD_NOTE
) != 0
1306 /* Old versions of GAS (prior to 2.27) could not set the section
1307 flags to OS-specific values, so we also accept sections that
1308 start with the expected name. */
1309 || (CONST_STRNEQ (sec
->name
, GNU_BUILD_ATTRS_SECTION_NAME
))))
1315 /* See if a non-group section is being removed. */
1318 is_strip_section_1 (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
)
1320 if (find_section_list (bfd_section_name (sec
), FALSE
, SECTION_CONTEXT_KEEP
)
1324 if (sections_removed
|| sections_copied
)
1326 struct section_list
*p
;
1327 struct section_list
*q
;
1329 p
= find_section_list (bfd_section_name (sec
), FALSE
,
1330 SECTION_CONTEXT_REMOVE
);
1331 q
= find_section_list (bfd_section_name (sec
), FALSE
,
1332 SECTION_CONTEXT_COPY
);
1335 fatal (_("error: section %s matches both remove and copy options"),
1336 bfd_section_name (sec
));
1337 if (p
&& is_update_section (abfd
, sec
))
1338 fatal (_("error: section %s matches both update and remove options"),
1339 bfd_section_name (sec
));
1343 if (sections_copied
&& q
== NULL
)
1347 if ((bfd_section_flags (sec
) & SEC_DEBUGGING
) != 0)
1349 if (strip_symbols
== STRIP_DEBUG
1350 || strip_symbols
== STRIP_UNNEEDED
1351 || strip_symbols
== STRIP_ALL
1352 || discard_locals
== LOCALS_ALL
1353 || convert_debugging
)
1355 /* By default we don't want to strip .reloc section.
1356 This section has for pe-coff special meaning. See
1357 pe-dll.c file in ld, and peXXigen.c in bfd for details. */
1358 if (strcmp (bfd_section_name (sec
), ".reloc") != 0)
1362 if (strip_symbols
== STRIP_DWO
)
1363 return is_dwo_section (abfd
, sec
);
1365 if (strip_symbols
== STRIP_NONDEBUG
)
1369 if (strip_symbols
== STRIP_NONDWO
)
1370 return !is_dwo_section (abfd
, sec
);
1375 /* See if a section is being removed. */
1378 is_strip_section (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*sec
)
1380 if (is_strip_section_1 (abfd
, sec
))
1383 if ((bfd_section_flags (sec
) & SEC_GROUP
) != 0)
1387 asection
*elt
, *first
;
1389 gsym
= group_signature (sec
);
1390 /* Strip groups without a valid signature. */
1395 If we are going to strip the group signature symbol, then
1396 strip the group section too. */
1398 if ((strip_symbols
== STRIP_ALL
1399 && !is_specified_symbol (gname
, keep_specific_htab
))
1400 || is_specified_symbol (gname
, strip_specific_htab
))
1403 /* Remove the group section if all members are removed. */
1404 first
= elt
= elf_next_in_group (sec
);
1407 if (!is_strip_section_1 (abfd
, elt
))
1409 elt
= elf_next_in_group (elt
);
1421 is_nondebug_keep_contents_section (bfd
*ibfd
, asection
*isection
)
1423 /* Always keep ELF note sections. */
1424 if (bfd_get_flavour (ibfd
) == bfd_target_elf_flavour
)
1425 return elf_section_type (isection
) == SHT_NOTE
;
1427 /* Always keep the .buildid section for PE/COFF.
1429 Strictly, this should be written "always keep the section storing the debug
1430 directory", but that may be the .text section for objects produced by some
1431 tools, which it is not sensible to keep. */
1432 if (bfd_get_flavour (ibfd
) == bfd_target_coff_flavour
)
1433 return strcmp (bfd_section_name (isection
), ".buildid") == 0;
1438 /* Return true if SYM is a hidden symbol. */
1441 is_hidden_symbol (asymbol
*sym
)
1443 elf_symbol_type
*elf_sym
;
1445 elf_sym
= elf_symbol_from (sym
->the_bfd
, sym
);
1446 if (elf_sym
!= NULL
)
1447 switch (ELF_ST_VISIBILITY (elf_sym
->internal_elf_sym
.st_other
))
1457 need_sym_before (struct addsym_node
**node
, const char *sym
)
1460 struct addsym_node
*ptr
= add_sym_list
;
1462 /* 'othersym' symbols are at the front of the list. */
1463 for (count
= 0; count
< add_symbols
; count
++)
1467 else if (strcmp (ptr
->othersym
, sym
) == 0)
1469 free (ptr
->othersym
);
1470 ptr
->othersym
= ""; /* Empty name is hopefully never a valid symbol name. */
1480 create_new_symbol (struct addsym_node
*ptr
, bfd
*obfd
)
1482 asymbol
*sym
= bfd_make_empty_symbol (obfd
);
1484 bfd_set_asymbol_name (sym
, ptr
->symdef
);
1485 sym
->value
= ptr
->symval
;
1486 sym
->flags
= ptr
->flags
;
1489 asection
*sec
= bfd_get_section_by_name (obfd
, ptr
->section
);
1491 fatal (_("Section %s not found"), ptr
->section
);
1495 sym
->section
= bfd_abs_section_ptr
;
1499 /* Choose which symbol entries to copy; put the result in OSYMS.
1500 We don't copy in place, because that confuses the relocs.
1501 Return the number of symbols to print. */
1504 filter_symbols (bfd
*abfd
, bfd
*obfd
, asymbol
**osyms
,
1505 asymbol
**isyms
, long symcount
)
1507 asymbol
**from
= isyms
, **to
= osyms
;
1508 long src_count
= 0, dst_count
= 0;
1509 int relocatable
= (abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0;
1511 for (; src_count
< symcount
; src_count
++)
1513 asymbol
*sym
= from
[src_count
];
1514 flagword flags
= sym
->flags
;
1515 char *name
= (char *) bfd_asymbol_name (sym
);
1517 bfd_boolean used_in_reloc
= FALSE
;
1518 bfd_boolean undefined
;
1519 bfd_boolean rem_leading_char
;
1520 bfd_boolean add_leading_char
;
1522 undefined
= bfd_is_und_section (bfd_asymbol_section (sym
));
1526 struct addsym_node
*ptr
;
1528 if (need_sym_before (&ptr
, name
))
1529 to
[dst_count
++] = create_new_symbol (ptr
, obfd
);
1532 if (htab_elements (redefine_specific_htab
) || section_rename_list
)
1536 new_name
= (char *) lookup_sym_redefinition (name
);
1537 if (new_name
== name
1538 && (flags
& BSF_SECTION_SYM
) != 0)
1539 new_name
= (char *) find_section_rename (name
, NULL
);
1540 bfd_set_asymbol_name (sym
, new_name
);
1544 /* Check if we will remove the current leading character. */
1546 (name
[0] == bfd_get_symbol_leading_char (abfd
))
1547 && (change_leading_char
1548 || (remove_leading_char
1549 && ((flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0
1551 || bfd_is_com_section (bfd_asymbol_section (sym
)))));
1553 /* Check if we will add a new leading character. */
1556 && (bfd_get_symbol_leading_char (obfd
) != '\0')
1557 && (bfd_get_symbol_leading_char (abfd
) == '\0'
1558 || (name
[0] == bfd_get_symbol_leading_char (abfd
)));
1560 /* Short circuit for change_leading_char if we can do it in-place. */
1561 if (rem_leading_char
&& add_leading_char
&& !prefix_symbols_string
)
1563 name
[0] = bfd_get_symbol_leading_char (obfd
);
1564 bfd_set_asymbol_name (sym
, name
);
1565 rem_leading_char
= FALSE
;
1566 add_leading_char
= FALSE
;
1569 /* Remove leading char. */
1570 if (rem_leading_char
)
1571 bfd_set_asymbol_name (sym
, ++name
);
1573 /* Add new leading char and/or prefix. */
1574 if (add_leading_char
|| prefix_symbols_string
)
1578 ptr
= n
= (char *) xmalloc (1 + strlen (prefix_symbols_string
)
1579 + strlen (name
) + 1);
1580 if (add_leading_char
)
1581 *ptr
++ = bfd_get_symbol_leading_char (obfd
);
1583 if (prefix_symbols_string
)
1585 strcpy (ptr
, prefix_symbols_string
);
1586 ptr
+= strlen (prefix_symbols_string
);
1590 bfd_set_asymbol_name (sym
, n
);
1594 if (strip_symbols
== STRIP_ALL
)
1596 else if ((flags
& BSF_KEEP
) != 0 /* Used in relocation. */
1597 || ((flags
& BSF_SECTION_SYM
) != 0
1598 && ((*bfd_asymbol_section (sym
)->symbol_ptr_ptr
)->flags
1602 used_in_reloc
= TRUE
;
1604 else if (relocatable
/* Relocatable file. */
1605 && ((flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0
1606 || bfd_is_com_section (bfd_asymbol_section (sym
))))
1608 else if (bfd_decode_symclass (sym
) == 'I')
1609 /* Global symbols in $idata sections need to be retained
1610 even if relocatable is FALSE. External users of the
1611 library containing the $idata section may reference these
1614 else if ((flags
& BSF_GLOBAL
) != 0 /* Global symbol. */
1615 || (flags
& BSF_WEAK
) != 0
1617 || bfd_is_com_section (bfd_asymbol_section (sym
)))
1618 keep
= strip_symbols
!= STRIP_UNNEEDED
;
1619 else if ((flags
& BSF_DEBUGGING
) != 0) /* Debugging symbol. */
1620 keep
= (strip_symbols
!= STRIP_DEBUG
1621 && strip_symbols
!= STRIP_UNNEEDED
1622 && ! convert_debugging
);
1623 else if (bfd_coff_get_comdat_section (abfd
, bfd_asymbol_section (sym
)))
1624 /* COMDAT sections store special information in local
1625 symbols, so we cannot risk stripping any of them. */
1627 else /* Local symbol. */
1628 keep
= (strip_symbols
!= STRIP_UNNEEDED
1629 && (discard_locals
!= LOCALS_ALL
1630 && (discard_locals
!= LOCALS_START_L
1631 || ! bfd_is_local_label (abfd
, sym
))));
1633 if (keep
&& is_specified_symbol (name
, strip_specific_htab
))
1635 /* There are multiple ways to set 'keep' above, but if it
1636 was the relocatable symbol case, then that's an error. */
1639 non_fatal (_("not stripping symbol `%s' because it is named in a relocation"), name
);
1647 && !(flags
& BSF_KEEP
)
1648 && is_specified_symbol (name
, strip_unneeded_htab
))
1652 && ((keep_file_symbols
&& (flags
& BSF_FILE
))
1653 || is_specified_symbol (name
, keep_specific_htab
)))
1656 if (keep
&& is_strip_section (abfd
, bfd_asymbol_section (sym
)))
1661 if ((flags
& BSF_GLOBAL
) != 0
1662 && (weaken
|| is_specified_symbol (name
, weaken_specific_htab
)))
1664 sym
->flags
&= ~ BSF_GLOBAL
;
1665 sym
->flags
|= BSF_WEAK
;
1669 && (flags
& (BSF_GLOBAL
| BSF_WEAK
))
1670 && (is_specified_symbol (name
, localize_specific_htab
)
1671 || (htab_elements (keepglobal_specific_htab
) != 0
1672 && ! is_specified_symbol (name
, keepglobal_specific_htab
))
1673 || (localize_hidden
&& is_hidden_symbol (sym
))))
1675 sym
->flags
&= ~ (BSF_GLOBAL
| BSF_WEAK
);
1676 sym
->flags
|= BSF_LOCAL
;
1680 && (flags
& BSF_LOCAL
)
1681 && is_specified_symbol (name
, globalize_specific_htab
))
1683 sym
->flags
&= ~ BSF_LOCAL
;
1684 sym
->flags
|= BSF_GLOBAL
;
1687 to
[dst_count
++] = sym
;
1692 struct addsym_node
*ptr
= add_sym_list
;
1694 for (src_count
= 0; src_count
< add_symbols
; src_count
++)
1698 if (strcmp (ptr
->othersym
, ""))
1699 fatal (_("'before=%s' not found"), ptr
->othersym
);
1702 to
[dst_count
++] = create_new_symbol (ptr
, obfd
);
1708 to
[dst_count
] = NULL
;
1713 /* Find the redefined name of symbol SOURCE. */
1716 lookup_sym_redefinition (const char *source
)
1718 struct redefine_node key_node
= {(char *) source
, NULL
};
1719 struct redefine_node
*redef_node
1720 = (struct redefine_node
*) htab_find (redefine_specific_htab
, &key_node
);
1722 return redef_node
== NULL
? source
: redef_node
->target
;
1725 /* Insert a node into symbol redefine hash tabel. */
1728 add_redefine_and_check (const char *cause
, const char *source
,
1731 struct redefine_node
*new_node
1732 = (struct redefine_node
*) xmalloc (sizeof (struct redefine_node
));
1734 new_node
->source
= strdup (source
);
1735 new_node
->target
= strdup (target
);
1737 if (htab_find (redefine_specific_htab
, new_node
) != HTAB_EMPTY_ENTRY
)
1738 fatal (_("%s: Multiple redefinition of symbol \"%s\""),
1741 if (htab_find (redefine_specific_reverse_htab
, target
) != HTAB_EMPTY_ENTRY
)
1742 fatal (_("%s: Symbol \"%s\" is target of more than one redefinition"),
1745 /* Insert the NEW_NODE into hash table for quick search. */
1746 add_specific_symbol_node (new_node
, redefine_specific_htab
);
1748 /* Insert the target string into the reverse hash table, this is needed for
1749 duplicated target string check. */
1750 add_specific_symbol (new_node
->target
, redefine_specific_reverse_htab
);
1754 /* Handle the --redefine-syms option. Read lines containing "old new"
1755 from the file, and add them to the symbol redefine list. */
1758 add_redefine_syms_file (const char *filename
)
1767 file
= fopen (filename
, "r");
1769 fatal (_("couldn't open symbol redefinition file %s (error: %s)"),
1770 filename
, strerror (errno
));
1773 buf
= (char *) xmalloc (bufsize
+ 1 /* For the terminating NUL. */);
1781 /* Collect the input symbol name. */
1782 while (! IS_WHITESPACE (c
) && ! IS_LINE_TERMINATOR (c
) && c
!= EOF
)
1790 buf
= (char *) xrealloc (buf
, bufsize
+ 1);
1798 /* Eat white space between the symbol names. */
1799 while (IS_WHITESPACE (c
))
1801 if (c
== '#' || IS_LINE_TERMINATOR (c
))
1806 /* Collect the output symbol name. */
1808 while (! IS_WHITESPACE (c
) && ! IS_LINE_TERMINATOR (c
) && c
!= EOF
)
1816 buf
= (char *) xrealloc (buf
, bufsize
+ 1);
1824 /* Eat white space at end of line. */
1825 while (! IS_LINE_TERMINATOR(c
) && c
!= EOF
&& IS_WHITESPACE (c
))
1830 if ((c
== '\r' && (c
= getc (file
)) == '\n')
1831 || c
== '\n' || c
== EOF
)
1834 /* Append the redefinition to the list. */
1836 add_redefine_and_check (filename
, &buf
[0], &buf
[outsym_off
]);
1847 fatal (_("%s:%d: garbage found at end of line"), filename
, lineno
);
1849 if (len
!= 0 && (outsym_off
== 0 || outsym_off
== len
))
1850 fatal (_("%s:%d: missing new symbol name"), filename
, lineno
);
1853 /* Eat the rest of the line and finish it. */
1854 while (c
!= '\n' && c
!= EOF
)
1860 fatal (_("%s:%d: premature end of file"), filename
, lineno
);
1866 /* Copy unknown object file IBFD onto OBFD.
1867 Returns TRUE upon success, FALSE otherwise. */
1870 copy_unknown_object (bfd
*ibfd
, bfd
*obfd
)
1878 if (bfd_stat_arch_elt (ibfd
, &buf
) != 0)
1880 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
1887 non_fatal (_("stat returns negative size for `%s'"),
1888 bfd_get_archive_filename (ibfd
));
1892 if (bfd_seek (ibfd
, (file_ptr
) 0, SEEK_SET
) != 0)
1894 bfd_nonfatal (bfd_get_archive_filename (ibfd
));
1899 printf (_("copy from `%s' [unknown] to `%s' [unknown]\n"),
1900 bfd_get_archive_filename (ibfd
), bfd_get_filename (obfd
));
1902 cbuf
= (char *) xmalloc (BUFSIZE
);
1904 while (ncopied
< size
)
1906 tocopy
= size
- ncopied
;
1907 if (tocopy
> BUFSIZE
)
1910 if (bfd_bread (cbuf
, (bfd_size_type
) tocopy
, ibfd
)
1911 != (bfd_size_type
) tocopy
)
1913 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
1918 if (bfd_bwrite (cbuf
, (bfd_size_type
) tocopy
, obfd
)
1919 != (bfd_size_type
) tocopy
)
1921 bfd_nonfatal_message (NULL
, obfd
, NULL
, NULL
);
1929 /* We should at least to be able to read it back when copying an
1930 unknown object in an archive. */
1931 chmod (bfd_get_filename (obfd
), buf
.st_mode
| S_IRUSR
);
1936 typedef struct objcopy_internal_note
1938 Elf_Internal_Note note
;
1939 unsigned long padded_namesz
;
1942 } objcopy_internal_note
;
1944 #define DEBUG_MERGE 0
1947 #define merge_debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
1949 #define merge_debug(format, ...)
1952 /* Returns TRUE iff PNOTE1 overlaps or adjoins PNOTE2. */
1955 overlaps_or_adjoins (objcopy_internal_note
* pnote1
,
1956 objcopy_internal_note
* pnote2
)
1958 if (pnote1
->end
< pnote2
->start
)
1959 /* FIXME: Alignment of 16 bytes taken from x86_64 binaries.
1960 Really we should extract the alignment of the section
1961 covered by the notes. */
1962 return BFD_ALIGN (pnote1
->end
, 16) < pnote2
->start
;
1964 if (pnote2
->end
< pnote2
->start
)
1965 return BFD_ALIGN (pnote2
->end
, 16) < pnote1
->start
;
1967 if (pnote1
->end
< pnote2
->end
)
1970 if (pnote2
->end
< pnote1
->end
)
1976 /* Returns TRUE iff NEEDLE is fully contained by HAYSTACK. */
1979 contained_by (objcopy_internal_note
* needle
,
1980 objcopy_internal_note
* haystack
)
1982 return needle
->start
>= haystack
->start
&& needle
->end
<= haystack
->end
;
1986 is_open_note (objcopy_internal_note
* pnote
)
1988 return pnote
->note
.type
== NT_GNU_BUILD_ATTRIBUTE_OPEN
;
1992 is_func_note (objcopy_internal_note
* pnote
)
1994 return pnote
->note
.type
== NT_GNU_BUILD_ATTRIBUTE_FUNC
;
1998 is_deleted_note (objcopy_internal_note
* pnote
)
2000 return pnote
->note
.type
== 0;
2004 is_version_note (objcopy_internal_note
* pnote
)
2006 return (pnote
->note
.namesz
> 4
2007 && pnote
->note
.namedata
[0] == 'G'
2008 && pnote
->note
.namedata
[1] == 'A'
2009 && pnote
->note
.namedata
[2] == '$'
2010 && pnote
->note
.namedata
[3] == GNU_BUILD_ATTRIBUTE_VERSION
);
2014 is_64bit (bfd
* abfd
)
2016 /* Should never happen, but let's be paranoid. */
2017 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
2020 return elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
;
2023 /* This sorting function is used to get the notes into an order
2024 that makes merging easy. */
2027 compare_gnu_build_notes (const void * data1
, const void * data2
)
2029 objcopy_internal_note
* pnote1
= (objcopy_internal_note
*) data1
;
2030 objcopy_internal_note
* pnote2
= (objcopy_internal_note
*) data2
;
2032 /* Sort notes based upon the attribute they record. */
2033 int cmp
= memcmp (pnote1
->note
.namedata
+ 3,
2034 pnote2
->note
.namedata
+ 3,
2035 pnote1
->note
.namesz
< pnote2
->note
.namesz
?
2036 pnote1
->note
.namesz
- 3 : pnote2
->note
.namesz
- 3);
2040 if (pnote1
->end
< pnote2
->start
)
2042 if (pnote1
->start
> pnote2
->end
)
2045 /* Overlaps - we should merge the two ranges. */
2046 if (pnote1
->start
< pnote2
->start
)
2048 if (pnote1
->end
> pnote2
->end
)
2051 /* Put OPEN notes before function notes. */
2052 if (is_open_note (pnote1
) && ! is_open_note (pnote2
))
2054 if (! is_open_note (pnote1
) && is_open_note (pnote2
))
2060 /* This sorting function is used to get the notes into an order
2061 that makes eliminating address ranges easier. */
2064 sort_gnu_build_notes (const void * data1
, const void * data2
)
2066 objcopy_internal_note
* pnote1
= (objcopy_internal_note
*) data1
;
2067 objcopy_internal_note
* pnote2
= (objcopy_internal_note
*) data2
;
2069 if (pnote1
->note
.type
!= pnote2
->note
.type
)
2071 /* Move deleted notes to the end. */
2072 if (is_deleted_note (pnote1
)) /* 1: OFD 2: OFD */
2075 /* Move OPEN notes to the start. */
2076 if (is_open_note (pnote1
)) /* 1: OF 2: OFD */
2079 if (is_deleted_note (pnote2
)) /* 1: F 2: O D */
2082 return 1; /* 1: F 2: O */
2085 /* Sort by starting address. */
2086 if (pnote1
->start
< pnote2
->start
)
2088 if (pnote1
->start
> pnote2
->start
)
2091 /* Then by end address (bigger range first). */
2092 if (pnote1
->end
> pnote2
->end
)
2094 if (pnote1
->end
< pnote2
->end
)
2097 /* Then by attribute type. */
2098 if (pnote1
->note
.namesz
> 4
2099 && pnote2
->note
.namesz
> 4
2100 && pnote1
->note
.namedata
[3] != pnote2
->note
.namedata
[3])
2101 return pnote1
->note
.namedata
[3] - pnote2
->note
.namedata
[3];
2106 /* Merge the notes on SEC, removing redundant entries.
2107 Returns the new, smaller size of the section upon success. */
2109 static bfd_size_type
2110 merge_gnu_build_notes (bfd
* abfd
,
2113 bfd_byte
* contents
)
2115 objcopy_internal_note
* pnotes_end
;
2116 objcopy_internal_note
* pnotes
= NULL
;
2117 objcopy_internal_note
* pnote
;
2118 bfd_size_type remain
= size
;
2119 unsigned version_1_seen
= 0;
2120 unsigned version_2_seen
= 0;
2121 unsigned version_3_seen
= 0;
2122 const char * err
= NULL
;
2123 bfd_byte
* in
= contents
;
2124 unsigned long previous_func_start
= 0;
2125 unsigned long previous_open_start
= 0;
2126 unsigned long previous_func_end
= 0;
2127 unsigned long previous_open_end
= 0;
2130 relsize
= bfd_get_reloc_upper_bound (abfd
, sec
);
2136 /* If there are relocs associated with this section then we
2137 cannot safely merge it. */
2138 relpp
= (arelent
**) xmalloc (relsize
);
2139 relcount
= bfd_canonicalize_reloc (abfd
, sec
, relpp
, isympp
);
2144 non_fatal (_("%s[%s]: Cannot merge - there are relocations against this section"),
2145 bfd_get_filename (abfd
), bfd_section_name (sec
));
2150 /* Make a copy of the notes and convert to our internal format.
2151 Minimum size of a note is 12 bytes. Also locate the version
2152 notes and check them. */
2153 pnote
= pnotes
= (objcopy_internal_note
*)
2154 xcalloc ((size
/ 12), sizeof (* pnote
));
2155 while (remain
>= 12)
2159 pnote
->note
.namesz
= bfd_get_32 (abfd
, in
);
2160 pnote
->note
.descsz
= bfd_get_32 (abfd
, in
+ 4);
2161 pnote
->note
.type
= bfd_get_32 (abfd
, in
+ 8);
2162 pnote
->padded_namesz
= (pnote
->note
.namesz
+ 3) & ~3;
2164 if (((pnote
->note
.descsz
+ 3) & ~3) != pnote
->note
.descsz
)
2166 err
= _("corrupt GNU build attribute note: description size not a factor of 4");
2170 if (pnote
->note
.type
!= NT_GNU_BUILD_ATTRIBUTE_OPEN
2171 && pnote
->note
.type
!= NT_GNU_BUILD_ATTRIBUTE_FUNC
)
2173 err
= _("corrupt GNU build attribute note: wrong note type");
2177 if (pnote
->padded_namesz
+ pnote
->note
.descsz
+ 12 > remain
)
2179 err
= _("corrupt GNU build attribute note: note too big");
2183 if (pnote
->note
.namesz
< 2)
2185 err
= _("corrupt GNU build attribute note: name too small");
2189 pnote
->note
.namedata
= (char *)(in
+ 12);
2190 pnote
->note
.descdata
= (char *)(in
+ 12 + pnote
->padded_namesz
);
2192 remain
-= 12 + pnote
->padded_namesz
+ pnote
->note
.descsz
;
2193 in
+= 12 + pnote
->padded_namesz
+ pnote
->note
.descsz
;
2195 if (pnote
->note
.namesz
> 2
2196 && pnote
->note
.namedata
[0] == '$'
2197 && pnote
->note
.namedata
[1] == GNU_BUILD_ATTRIBUTE_VERSION
2198 && pnote
->note
.namedata
[2] == '1')
2200 else if (is_version_note (pnote
))
2202 if (pnote
->note
.namedata
[4] == '2')
2204 else if (pnote
->note
.namedata
[4] == '3')
2208 err
= _("corrupt GNU build attribute note: unsupported version");
2213 switch (pnote
->note
.descsz
)
2220 start
= bfd_get_32 (abfd
, pnote
->note
.descdata
);
2221 /* FIXME: For version 1 and 2 notes we should try to
2222 calculate the end address by finding a symbol whose
2223 value is START, and then adding in its size.
2225 For now though, since v1 and v2 was not intended to
2226 handle gaps, we chose an artificially large end
2232 if (! is_64bit (abfd
))
2234 start
= bfd_get_32 (abfd
, pnote
->note
.descdata
);
2235 end
= bfd_get_32 (abfd
, pnote
->note
.descdata
+ 4);
2239 start
= bfd_get_64 (abfd
, pnote
->note
.descdata
);
2240 /* FIXME: For version 1 and 2 notes we should try to
2241 calculate the end address by finding a symbol whose
2242 value is START, and then adding in its size.
2244 For now though, since v1 and v2 was not intended to
2245 handle gaps, we chose an artificially large end
2252 start
= bfd_get_64 (abfd
, pnote
->note
.descdata
);
2253 end
= bfd_get_64 (abfd
, pnote
->note
.descdata
+ 8);
2257 err
= _("corrupt GNU build attribute note: bad description size");
2261 if (is_open_note (pnote
))
2264 previous_open_start
= start
;
2266 pnote
->start
= previous_open_start
;
2269 previous_open_end
= end
;
2271 pnote
->end
= previous_open_end
;
2276 previous_func_start
= start
;
2278 pnote
->start
= previous_func_start
;
2281 previous_func_end
= end
;
2283 pnote
->end
= previous_func_end
;
2286 if (pnote
->note
.namedata
[pnote
->note
.namesz
- 1] != 0)
2288 err
= _("corrupt GNU build attribute note: name not NUL terminated");
2297 /* Check that the notes are valid. */
2300 err
= _("corrupt GNU build attribute notes: excess data at end");
2304 if (version_1_seen
== 0 && version_2_seen
== 0 && version_3_seen
== 0)
2307 err
= _("bad GNU build attribute notes: no known versions detected");
2310 /* This happens with glibc. No idea why. */
2311 non_fatal (_("%s[%s]: Warning: version note missing - assuming version 3"),
2312 bfd_get_filename (abfd
), bfd_section_name (sec
));
2317 if ( (version_1_seen
> 0 && version_2_seen
> 0)
2318 || (version_1_seen
> 0 && version_3_seen
> 0)
2319 || (version_2_seen
> 0 && version_3_seen
> 0))
2321 err
= _("bad GNU build attribute notes: multiple different versions");
2325 /* We are now only supporting the merging v3+ notes
2326 - it makes things much simpler. */
2327 if (version_3_seen
== 0)
2329 merge_debug ("%s: skipping merge - not using v3 notes", bfd_section_name (sec
));
2333 merge_debug ("Merging section %s which contains %ld notes\n",
2334 sec
->name
, pnotes_end
- pnotes
);
2336 /* Sort the notes. */
2337 qsort (pnotes
, pnotes_end
- pnotes
, sizeof (* pnotes
),
2338 compare_gnu_build_notes
);
2341 merge_debug ("Results of initial sort:\n");
2342 for (pnote
= pnotes
; pnote
< pnotes_end
; pnote
++)
2343 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2344 (pnote
->note
.namedata
- (char *) contents
) - 12,
2345 pnote
->start
, pnote
->end
,
2347 pnote
->note
.namedata
[3],
2352 /* Now merge the notes. The rules are:
2353 1. If a note has a zero range, it can be eliminated.
2354 2. If two notes have the same namedata then:
2355 2a. If one note's range is fully covered by the other note
2356 then it can be deleted.
2357 2b. If one note's range partially overlaps or adjoins the
2358 other note then if they are both of the same type (open
2359 or func) then they can be merged and one deleted. If
2360 they are of different types then they cannot be merged. */
2361 for (pnote
= pnotes
; pnote
< pnotes_end
; pnote
++)
2363 /* Skip already deleted notes.
2364 FIXME: Can this happen ? We are scanning forwards and
2365 deleting backwards after all. */
2366 if (is_deleted_note (pnote
))
2369 /* Rule 1 - delete 0-range notes. */
2370 if (pnote
->start
== pnote
->end
)
2372 merge_debug ("Delete note at offset %#08lx - empty range\n",
2373 (pnote
->note
.namedata
- (char *) contents
) - 12);
2374 pnote
->note
.type
= 0;
2379 objcopy_internal_note
* back
;
2381 /* Rule 2: Check to see if there is an identical previous note. */
2382 for (iter
= 0, back
= pnote
- 1; back
>= pnotes
; back
--)
2384 if (is_deleted_note (back
))
2387 /* Our sorting function should have placed all identically
2388 attributed notes together, so if we see a note of a different
2389 attribute type stop searching. */
2390 if (back
->note
.namesz
!= pnote
->note
.namesz
2391 || memcmp (back
->note
.namedata
,
2392 pnote
->note
.namedata
, pnote
->note
.namesz
) != 0)
2395 if (back
->start
== pnote
->start
2396 && back
->end
== pnote
->end
)
2398 merge_debug ("Delete note at offset %#08lx - duplicate of note at offset %#08lx\n",
2399 (pnote
->note
.namedata
- (char *) contents
) - 12,
2400 (back
->note
.namedata
- (char *) contents
) - 12);
2401 pnote
->note
.type
= 0;
2406 if (contained_by (pnote
, back
))
2408 merge_debug ("Delete note at offset %#08lx - fully contained by note at %#08lx\n",
2409 (pnote
->note
.namedata
- (char *) contents
) - 12,
2410 (back
->note
.namedata
- (char *) contents
) - 12);
2411 pnote
->note
.type
= 0;
2416 /* This should not happen as we have sorted the
2417 notes with earlier starting addresses first. */
2418 if (contained_by (back
, pnote
))
2419 merge_debug ("ERROR: UNEXPECTED CONTAINMENT\n");
2423 if (overlaps_or_adjoins (back
, pnote
)
2424 && is_func_note (back
) == is_func_note (pnote
))
2426 merge_debug ("Delete note at offset %#08lx - merge into note at %#08lx\n",
2427 (pnote
->note
.namedata
- (char *) contents
) - 12,
2428 (back
->note
.namedata
- (char *) contents
) - 12);
2430 back
->end
= back
->end
> pnote
->end
? back
->end
: pnote
->end
;
2431 back
->start
= back
->start
< pnote
->start
? back
->start
: pnote
->start
;
2432 pnote
->note
.type
= 0;
2436 /* Don't scan too far back however. */
2439 /* FIXME: Not sure if this can ever be triggered. */
2440 merge_debug ("ITERATION LIMIT REACHED\n");
2445 if (! is_deleted_note (pnote
))
2446 merge_debug ("Unable to do anything with note at %#08lx\n",
2447 (pnote
->note
.namedata
- (char *) contents
) - 12);
2451 /* Resort the notes. */
2452 merge_debug ("Final sorting of notes\n");
2453 qsort (pnotes
, pnotes_end
- pnotes
, sizeof (* pnotes
), sort_gnu_build_notes
);
2455 /* Reconstruct the ELF notes. */
2456 bfd_byte
* new_contents
;
2459 bfd_size_type new_size
;
2460 bfd_vma prev_start
= 0;
2461 bfd_vma prev_end
= 0;
2463 /* Not sure how, but the notes might grow in size.
2464 (eg see PR 1774507). Allow for this here. */
2465 new = new_contents
= xmalloc (size
* 2);
2466 for (pnote
= pnotes
, old
= contents
;
2470 bfd_size_type note_size
= 12 + pnote
->padded_namesz
+ pnote
->note
.descsz
;
2472 if (! is_deleted_note (pnote
))
2474 /* Create the note, potentially using the
2475 address range of the previous note. */
2476 if (pnote
->start
== prev_start
&& pnote
->end
== prev_end
)
2478 bfd_put_32 (abfd
, pnote
->note
.namesz
, new);
2479 bfd_put_32 (abfd
, 0, new + 4);
2480 bfd_put_32 (abfd
, pnote
->note
.type
, new + 8);
2482 memcpy (new, pnote
->note
.namedata
, pnote
->note
.namesz
);
2483 if (pnote
->note
.namesz
< pnote
->padded_namesz
)
2484 memset (new + pnote
->note
.namesz
, 0, pnote
->padded_namesz
- pnote
->note
.namesz
);
2485 new += pnote
->padded_namesz
;
2489 bfd_put_32 (abfd
, pnote
->note
.namesz
, new);
2490 bfd_put_32 (abfd
, is_64bit (abfd
) ? 16 : 8, new + 4);
2491 bfd_put_32 (abfd
, pnote
->note
.type
, new + 8);
2493 memcpy (new, pnote
->note
.namedata
, pnote
->note
.namesz
);
2494 if (pnote
->note
.namesz
< pnote
->padded_namesz
)
2495 memset (new + pnote
->note
.namesz
, 0, pnote
->padded_namesz
- pnote
->note
.namesz
);
2496 new += pnote
->padded_namesz
;
2497 if (is_64bit (abfd
))
2499 bfd_put_64 (abfd
, pnote
->start
, new);
2500 bfd_put_64 (abfd
, pnote
->end
, new + 8);
2505 bfd_put_32 (abfd
, pnote
->start
, new);
2506 bfd_put_32 (abfd
, pnote
->end
, new + 4);
2510 prev_start
= pnote
->start
;
2511 prev_end
= pnote
->end
;
2519 merge_debug ("Results of merge:\n");
2520 for (pnote
= pnotes
; pnote
< pnotes_end
; pnote
++)
2521 if (! is_deleted_note (pnote
))
2522 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2523 (pnote
->note
.namedata
- (char *) contents
) - 12,
2524 pnote
->start
, pnote
->end
,
2526 pnote
->note
.namedata
[3],
2531 new_size
= new - new_contents
;
2532 if (new_size
< size
)
2534 memcpy (contents
, new_contents
, new_size
);
2537 free (new_contents
);
2542 bfd_set_error (bfd_error_bad_value
);
2543 bfd_nonfatal_message (NULL
, abfd
, sec
, err
);
2551 /* Copy object file IBFD onto OBFD.
2552 Returns TRUE upon success, FALSE otherwise. */
2555 copy_object (bfd
*ibfd
, bfd
*obfd
, const bfd_arch_info_type
*input_arch
)
2559 asection
**osections
= NULL
;
2561 asection
*gnu_debuglink_section
= NULL
;
2562 bfd_size_type
*gaps
= NULL
;
2563 bfd_size_type max_gap
= 0;
2566 enum bfd_architecture iarch
;
2570 if (ibfd
->xvec
->byteorder
!= obfd
->xvec
->byteorder
2571 && ibfd
->xvec
->byteorder
!= BFD_ENDIAN_UNKNOWN
2572 && obfd
->xvec
->byteorder
!= BFD_ENDIAN_UNKNOWN
)
2574 /* PR 17636: Call non-fatal so that we return to our parent who
2575 may need to tidy temporary files. */
2576 non_fatal (_("Unable to change endianness of input file(s)"));
2580 if (!bfd_set_format (obfd
, bfd_get_format (ibfd
)))
2582 bfd_nonfatal_message (NULL
, obfd
, NULL
, NULL
);
2586 if (ibfd
->sections
== NULL
)
2588 non_fatal (_("error: the input file '%s' has no sections"),
2589 bfd_get_archive_filename (ibfd
));
2593 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
2595 if ((do_debug_sections
& compress
) != 0
2596 && do_debug_sections
!= compress
)
2598 non_fatal (_("--compress-debug-sections=[zlib|zlib-gnu|zlib-gabi] is unsupported on `%s'"),
2599 bfd_get_archive_filename (ibfd
));
2603 if (do_elf_stt_common
)
2605 non_fatal (_("--elf-stt-common=[yes|no] is unsupported on `%s'"),
2606 bfd_get_archive_filename (ibfd
));
2612 printf (_("copy from `%s' [%s] to `%s' [%s]\n"),
2613 bfd_get_archive_filename (ibfd
), bfd_get_target (ibfd
),
2614 bfd_get_filename (obfd
), bfd_get_target (obfd
));
2623 start
= bfd_get_start_address (ibfd
);
2624 start
+= change_start
;
2627 /* Neither the start address nor the flags
2628 need to be set for a core file. */
2629 if (bfd_get_format (obfd
) != bfd_core
)
2633 flags
= bfd_get_file_flags (ibfd
);
2634 flags
|= bfd_flags_to_set
;
2635 flags
&= ~bfd_flags_to_clear
;
2636 flags
&= bfd_applicable_file_flags (obfd
);
2638 if (strip_symbols
== STRIP_ALL
)
2639 flags
&= ~HAS_RELOC
;
2641 if (!bfd_set_start_address (obfd
, start
)
2642 || !bfd_set_file_flags (obfd
, flags
))
2644 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
2649 /* Copy architecture of input file to output file. */
2650 iarch
= bfd_get_arch (ibfd
);
2651 imach
= bfd_get_mach (ibfd
);
2654 if (iarch
== bfd_arch_unknown
)
2656 iarch
= input_arch
->arch
;
2657 imach
= input_arch
->mach
;
2660 non_fatal (_("Input file `%s' ignores binary architecture parameter."),
2661 bfd_get_archive_filename (ibfd
));
2663 if (iarch
== bfd_arch_unknown
2664 && bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
2665 && bfd_get_flavour (obfd
) == bfd_target_elf_flavour
)
2667 const struct elf_backend_data
*bed
= get_elf_backend_data (obfd
);
2671 if (!bfd_set_arch_mach (obfd
, iarch
, imach
)
2672 && (ibfd
->target_defaulted
2673 || bfd_get_arch (ibfd
) != bfd_get_arch (obfd
)))
2675 if (bfd_get_arch (ibfd
) == bfd_arch_unknown
)
2676 non_fatal (_("Unable to recognise the format of the input file `%s'"),
2677 bfd_get_archive_filename (ibfd
));
2679 non_fatal (_("Output file cannot represent architecture `%s'"),
2680 bfd_printable_arch_mach (bfd_get_arch (ibfd
),
2681 bfd_get_mach (ibfd
)));
2685 if (!bfd_set_format (obfd
, bfd_get_format (ibfd
)))
2687 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
2691 if (bfd_get_flavour (obfd
) == bfd_target_coff_flavour
2692 && bfd_pei_p (obfd
))
2694 /* Set up PE parameters. */
2695 pe_data_type
*pe
= pe_data (obfd
);
2697 /* Copy PE parameters before changing them. */
2698 if (bfd_get_flavour (ibfd
) == bfd_target_coff_flavour
2699 && bfd_pei_p (ibfd
))
2700 pe
->pe_opthdr
= pe_data (ibfd
)->pe_opthdr
;
2702 if (pe_file_alignment
!= (bfd_vma
) -1)
2703 pe
->pe_opthdr
.FileAlignment
= pe_file_alignment
;
2705 pe_file_alignment
= PE_DEF_FILE_ALIGNMENT
;
2707 if (pe_heap_commit
!= (bfd_vma
) -1)
2708 pe
->pe_opthdr
.SizeOfHeapCommit
= pe_heap_commit
;
2710 if (pe_heap_reserve
!= (bfd_vma
) -1)
2711 pe
->pe_opthdr
.SizeOfHeapCommit
= pe_heap_reserve
;
2713 if (pe_image_base
!= (bfd_vma
) -1)
2714 pe
->pe_opthdr
.ImageBase
= pe_image_base
;
2716 if (pe_section_alignment
!= (bfd_vma
) -1)
2717 pe
->pe_opthdr
.SectionAlignment
= pe_section_alignment
;
2719 pe_section_alignment
= PE_DEF_SECTION_ALIGNMENT
;
2721 if (pe_stack_commit
!= (bfd_vma
) -1)
2722 pe
->pe_opthdr
.SizeOfStackCommit
= pe_stack_commit
;
2724 if (pe_stack_reserve
!= (bfd_vma
) -1)
2725 pe
->pe_opthdr
.SizeOfStackCommit
= pe_stack_reserve
;
2727 if (pe_subsystem
!= -1)
2728 pe
->pe_opthdr
.Subsystem
= pe_subsystem
;
2730 if (pe_major_subsystem_version
!= -1)
2731 pe
->pe_opthdr
.MajorSubsystemVersion
= pe_major_subsystem_version
;
2733 if (pe_minor_subsystem_version
!= -1)
2734 pe
->pe_opthdr
.MinorSubsystemVersion
= pe_minor_subsystem_version
;
2736 if (pe_file_alignment
> pe_section_alignment
)
2738 char file_alignment
[20], section_alignment
[20];
2740 sprintf_vma (file_alignment
, pe_file_alignment
);
2741 sprintf_vma (section_alignment
, pe_section_alignment
);
2742 non_fatal (_("warning: file alignment (0x%s) > section alignment (0x%s)"),
2744 file_alignment
, section_alignment
);
2751 if (osympp
!= isympp
)
2757 symsize
= bfd_get_symtab_upper_bound (ibfd
);
2760 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
2764 osympp
= isympp
= (asymbol
**) xmalloc (symsize
);
2765 symcount
= bfd_canonicalize_symtab (ibfd
, isympp
);
2768 bfd_nonfatal_message (NULL
, ibfd
, NULL
, NULL
);
2771 /* PR 17512: file: d6323821
2772 If the symbol table could not be loaded do not pretend that we have
2773 any symbols. This trips us up later on when we load the relocs. */
2777 osympp
= isympp
= NULL
;
2780 /* BFD mandates that all output sections be created and sizes set before
2781 any output is done. Thus, we traverse all sections multiple times. */
2782 bfd_map_over_sections (ibfd
, setup_section
, obfd
);
2784 if (!extract_symbol
)
2785 setup_bfd_headers (ibfd
, obfd
);
2787 if (add_sections
!= NULL
)
2789 struct section_add
*padd
;
2790 struct section_list
*pset
;
2792 for (padd
= add_sections
; padd
!= NULL
; padd
= padd
->next
)
2796 pset
= find_section_list (padd
->name
, FALSE
,
2797 SECTION_CONTEXT_SET_FLAGS
);
2799 flags
= pset
->flags
| SEC_HAS_CONTENTS
;
2801 flags
= SEC_HAS_CONTENTS
| SEC_READONLY
| SEC_DATA
;
2803 /* bfd_make_section_with_flags() does not return very helpful
2804 error codes, so check for the most likely user error first. */
2805 if (bfd_get_section_by_name (obfd
, padd
->name
))
2807 bfd_nonfatal_message (NULL
, obfd
, NULL
,
2808 _("can't add section '%s'"), padd
->name
);
2813 /* We use LINKER_CREATED here so that the backend hooks
2814 will create any special section type information,
2815 instead of presuming we know what we're doing merely
2816 because we set the flags. */
2817 padd
->section
= bfd_make_section_with_flags
2818 (obfd
, padd
->name
, flags
| SEC_LINKER_CREATED
);
2819 if (padd
->section
== NULL
)
2821 bfd_nonfatal_message (NULL
, obfd
, NULL
,
2822 _("can't create section `%s'"),
2828 if (!bfd_set_section_size (padd
->section
, padd
->size
))
2830 bfd_nonfatal_message (NULL
, obfd
, padd
->section
, NULL
);
2834 pset
= find_section_list (padd
->name
, FALSE
,
2835 SECTION_CONTEXT_SET_VMA
| SECTION_CONTEXT_ALTER_VMA
);
2837 && !bfd_set_section_vma (padd
->section
, pset
->vma_val
))
2839 bfd_nonfatal_message (NULL
, obfd
, padd
->section
, NULL
);
2843 pset
= find_section_list (padd
->name
, FALSE
,
2844 SECTION_CONTEXT_SET_LMA
| SECTION_CONTEXT_ALTER_LMA
);
2847 padd
->section
->lma
= pset
->lma_val
;
2849 if (!bfd_set_section_alignment
2850 (padd
->section
, bfd_section_alignment (padd
->section
)))
2852 bfd_nonfatal_message (NULL
, obfd
, padd
->section
, NULL
);
2859 if (update_sections
!= NULL
)
2861 struct section_add
*pupdate
;
2863 for (pupdate
= update_sections
;
2865 pupdate
= pupdate
->next
)
2867 pupdate
->section
= bfd_get_section_by_name (ibfd
, pupdate
->name
);
2868 if (pupdate
->section
== NULL
)
2870 non_fatal (_("error: %s not found, can't be updated"), pupdate
->name
);
2874 osec
= pupdate
->section
->output_section
;
2875 if (!bfd_set_section_size (osec
, pupdate
->size
))
2877 bfd_nonfatal_message (NULL
, obfd
, osec
, NULL
);
2883 merged_note_section
* merged_note_sections
= NULL
;
2886 /* This palaver is necessary because we must set the output
2887 section size first, before its contents are ready. */
2888 for (osec
= ibfd
->sections
; osec
!= NULL
; osec
= osec
->next
)
2890 if (! is_mergeable_note_section (ibfd
, osec
))
2893 /* If the section is going to be completly deleted then
2894 do not bother to merge it. */
2895 if (osec
->output_section
== NULL
)
2898 bfd_size_type size
= bfd_section_size (osec
);
2902 bfd_nonfatal_message (NULL
, ibfd
, osec
,
2903 _("warning: note section is empty"));
2907 merged_note_section
* merged
= xmalloc (sizeof * merged
);
2908 merged
->contents
= NULL
;
2909 if (! bfd_get_full_section_contents (ibfd
, osec
, & merged
->contents
))
2911 bfd_nonfatal_message (NULL
, ibfd
, osec
,
2912 _("warning: could not load note section"));
2917 merged
->size
= merge_gnu_build_notes (ibfd
, osec
, size
,
2920 /* FIXME: Once we have read the contents in, we must write
2921 them out again. So even if the mergeing has achieved
2922 nothing we still add this entry to the merge list. */
2924 if (size
!= merged
->size
2925 && !bfd_set_section_size (osec
->output_section
, merged
->size
))
2927 bfd_nonfatal_message (NULL
, obfd
, osec
,
2928 _("warning: failed to set merged notes size"));
2929 free (merged
->contents
);
2934 /* Add section to list of merged sections. */
2936 merged
->next
= merged_note_sections
;
2937 merged_note_sections
= merged
;
2941 if (dump_sections
!= NULL
)
2943 struct section_add
* pdump
;
2945 for (pdump
= dump_sections
; pdump
!= NULL
; pdump
= pdump
->next
)
2947 osec
= bfd_get_section_by_name (ibfd
, pdump
->name
);
2950 bfd_nonfatal_message (NULL
, ibfd
, NULL
,
2951 _("can't dump section '%s' - it does not exist"),
2956 if ((bfd_section_flags (osec
) & SEC_HAS_CONTENTS
) == 0)
2958 bfd_nonfatal_message (NULL
, ibfd
, osec
,
2959 _("can't dump section - it has no contents"));
2963 bfd_size_type size
= bfd_section_size (osec
);
2966 bfd_nonfatal_message (NULL
, ibfd
, osec
,
2967 _("can't dump section - it is empty"));
2972 f
= fopen (pdump
->filename
, FOPEN_WB
);
2975 bfd_nonfatal_message (pdump
->filename
, NULL
, NULL
,
2976 _("could not open section dump file"));
2981 if (bfd_malloc_and_get_section (ibfd
, osec
, &contents
))
2983 if (fwrite (contents
, 1, size
, f
) != size
)
2985 non_fatal (_("error writing section contents to %s (error: %s)"),
2994 bfd_nonfatal_message (NULL
, ibfd
, osec
,
2995 _("could not retrieve section contents"));
3002 if (gnu_debuglink_filename
!= NULL
)
3004 /* PR 15125: Give a helpful warning message if
3005 the debuglink section already exists, and
3006 allow the rest of the copy to complete. */
3007 if (bfd_get_section_by_name (obfd
, ".gnu_debuglink"))
3009 non_fatal (_("%s: debuglink section already exists"),
3010 bfd_get_filename (obfd
));
3011 gnu_debuglink_filename
= NULL
;
3015 gnu_debuglink_section
= bfd_create_gnu_debuglink_section
3016 (obfd
, gnu_debuglink_filename
);
3018 if (gnu_debuglink_section
== NULL
)
3020 bfd_nonfatal_message (NULL
, obfd
, NULL
,
3021 _("cannot create debug link section `%s'"),
3022 gnu_debuglink_filename
);
3026 /* Special processing for PE format files. We
3027 have no way to distinguish PE from COFF here. */
3028 if (bfd_get_flavour (obfd
) == bfd_target_coff_flavour
)
3030 bfd_vma debuglink_vma
;
3031 asection
* highest_section
;
3033 /* The PE spec requires that all sections be adjacent and sorted
3034 in ascending order of VMA. It also specifies that debug
3035 sections should be last. This is despite the fact that debug
3036 sections are not loaded into memory and so in theory have no
3039 This means that the debuglink section must be given a non-zero
3040 VMA which makes it contiguous with other debug sections. So
3041 walk the current section list, find the section with the
3042 highest VMA and start the debuglink section after that one. */
3043 for (osec
= obfd
->sections
, highest_section
= NULL
;
3047 && (highest_section
== NULL
3048 || osec
->vma
> highest_section
->vma
))
3049 highest_section
= osec
;
3051 if (highest_section
)
3052 debuglink_vma
= BFD_ALIGN (highest_section
->vma
3053 + highest_section
->size
,
3054 /* FIXME: We ought to be using
3055 COFF_PAGE_SIZE here or maybe
3056 bfd_section_alignment() (if it
3057 was set) but since this is for PE
3058 and we know the required alignment
3059 it is easier just to hard code it. */
3062 /* Umm, not sure what to do in this case. */
3063 debuglink_vma
= 0x1000;
3065 bfd_set_section_vma (gnu_debuglink_section
, debuglink_vma
);
3070 c
= bfd_count_sections (obfd
);
3072 && (gap_fill_set
|| pad_to_set
))
3076 /* We must fill in gaps between the sections and/or we must pad
3077 the last section to a specified address. We do this by
3078 grabbing a list of the sections, sorting them by VMA, and
3079 increasing the section sizes as required to fill the gaps.
3080 We write out the gap contents below. */
3082 osections
= (asection
**) xmalloc (c
* sizeof (asection
*));
3084 bfd_map_over_sections (obfd
, get_sections
, &set
);
3086 qsort (osections
, c
, sizeof (asection
*), compare_section_lma
);
3088 gaps
= (bfd_size_type
*) xmalloc (c
* sizeof (bfd_size_type
));
3089 memset (gaps
, 0, c
* sizeof (bfd_size_type
));
3093 for (i
= 0; i
< c
- 1; i
++)
3097 bfd_vma gap_start
, gap_stop
;
3099 flags
= bfd_section_flags (osections
[i
]);
3100 if ((flags
& SEC_HAS_CONTENTS
) == 0
3101 || (flags
& SEC_LOAD
) == 0)
3104 size
= bfd_section_size (osections
[i
]);
3105 gap_start
= bfd_section_lma (osections
[i
]) + size
;
3106 gap_stop
= bfd_section_lma (osections
[i
+ 1]);
3107 if (gap_start
< gap_stop
)
3109 if (!bfd_set_section_size (osections
[i
],
3110 size
+ (gap_stop
- gap_start
)))
3112 bfd_nonfatal_message (NULL
, obfd
, osections
[i
],
3113 _("Can't fill gap after section"));
3117 gaps
[i
] = gap_stop
- gap_start
;
3118 if (max_gap
< gap_stop
- gap_start
)
3119 max_gap
= gap_stop
- gap_start
;
3129 lma
= bfd_section_lma (osections
[c
- 1]);
3130 size
= bfd_section_size (osections
[c
- 1]);
3131 if (lma
+ size
< pad_to
)
3133 if (!bfd_set_section_size (osections
[c
- 1], pad_to
- lma
))
3135 bfd_nonfatal_message (NULL
, obfd
, osections
[c
- 1],
3136 _("can't add padding"));
3141 gaps
[c
- 1] = pad_to
- (lma
+ size
);
3142 if (max_gap
< pad_to
- (lma
+ size
))
3143 max_gap
= pad_to
- (lma
+ size
);
3149 /* Symbol filtering must happen after the output sections
3150 have been created, but before their contents are set. */
3152 if (convert_debugging
)
3153 dhandle
= read_debugging_info (ibfd
, isympp
, symcount
, FALSE
);
3155 if (strip_symbols
== STRIP_DEBUG
3156 || strip_symbols
== STRIP_ALL
3157 || strip_symbols
== STRIP_UNNEEDED
3158 || strip_symbols
== STRIP_NONDEBUG
3159 || strip_symbols
== STRIP_DWO
3160 || strip_symbols
== STRIP_NONDWO
3161 || discard_locals
!= LOCALS_UNDEF
3163 || htab_elements (strip_specific_htab
) != 0
3164 || htab_elements (keep_specific_htab
) != 0
3165 || htab_elements (localize_specific_htab
) != 0
3166 || htab_elements (globalize_specific_htab
) != 0
3167 || htab_elements (keepglobal_specific_htab
) != 0
3168 || htab_elements (weaken_specific_htab
) != 0
3169 || htab_elements (redefine_specific_htab
) != 0
3170 || prefix_symbols_string
3173 || convert_debugging
3174 || change_leading_char
3175 || remove_leading_char
3176 || section_rename_list
3180 /* Mark symbols used in output relocations so that they
3181 are kept, even if they are local labels or static symbols.
3183 Note we iterate over the input sections examining their
3184 relocations since the relocations for the output sections
3185 haven't been set yet. mark_symbols_used_in_relocations will
3186 ignore input sections which have no corresponding output
3188 if (strip_symbols
!= STRIP_ALL
)
3190 bfd_set_error (bfd_error_no_error
);
3191 bfd_map_over_sections (ibfd
,
3192 mark_symbols_used_in_relocations
,
3194 if (bfd_get_error () != bfd_error_no_error
)
3201 osympp
= (asymbol
**) xmalloc ((symcount
+ add_symbols
+ 1) * sizeof (asymbol
*));
3202 symcount
= filter_symbols (ibfd
, obfd
, osympp
, isympp
, symcount
);
3205 if (convert_debugging
&& dhandle
!= NULL
)
3209 res
= write_debugging_info (obfd
, dhandle
, &symcount
, &osympp
);
3212 dhandle
= NULL
; /* Paranoia... */
3221 bfd_set_symtab (obfd
, osympp
, symcount
);
3223 /* This has to happen before section positions are set. */
3224 bfd_map_over_sections (ibfd
, copy_relocations_in_section
, obfd
);
3226 /* This has to happen after the symbol table has been set. */
3227 bfd_map_over_sections (ibfd
, copy_section
, obfd
);
3229 if (add_sections
!= NULL
)
3231 struct section_add
*padd
;
3233 for (padd
= add_sections
; padd
!= NULL
; padd
= padd
->next
)
3235 if (! bfd_set_section_contents (obfd
, padd
->section
, padd
->contents
,
3238 bfd_nonfatal_message (NULL
, obfd
, padd
->section
, NULL
);
3244 if (update_sections
!= NULL
)
3246 struct section_add
*pupdate
;
3248 for (pupdate
= update_sections
;
3250 pupdate
= pupdate
->next
)
3252 osec
= pupdate
->section
->output_section
;
3253 if (! bfd_set_section_contents (obfd
, osec
, pupdate
->contents
,
3256 bfd_nonfatal_message (NULL
, obfd
, osec
, NULL
);
3262 if (merged_note_sections
!= NULL
)
3264 merged_note_section
* merged
= NULL
;
3266 for (osec
= obfd
->sections
; osec
!= NULL
; osec
= osec
->next
)
3268 if (! is_mergeable_note_section (obfd
, osec
))
3272 merged
= merged_note_sections
;
3274 /* It is likely that output sections are in the same order
3275 as the input sections, but do not assume that this is
3277 if (strcmp (bfd_section_name (merged
->sec
),
3278 bfd_section_name (osec
)) != 0)
3280 for (merged
= merged_note_sections
;
3282 merged
= merged
->next
)
3283 if (strcmp (bfd_section_name (merged
->sec
),
3284 bfd_section_name (osec
)) == 0)
3289 bfd_nonfatal_message
3291 _("error: failed to locate merged notes"));
3296 if (merged
->contents
== NULL
)
3298 bfd_nonfatal_message
3300 _("error: failed to merge notes"));
3304 if (! bfd_set_section_contents (obfd
, osec
, merged
->contents
, 0,
3307 bfd_nonfatal_message
3309 _("error: failed to copy merged notes into output"));
3313 merged
= merged
->next
;
3316 /* Free the memory. */
3317 merged_note_section
* next
;
3318 for (merged
= merged_note_sections
; merged
!= NULL
; merged
= next
)
3320 next
= merged
->next
;
3321 free (merged
->contents
);
3325 else if (merge_notes
&& ! is_strip
)
3326 non_fatal (_("%s: Could not find any mergeable note sections"),
3327 bfd_get_filename (ibfd
));
3329 if (gnu_debuglink_filename
!= NULL
)
3331 if (! bfd_fill_in_gnu_debuglink_section
3332 (obfd
, gnu_debuglink_section
, gnu_debuglink_filename
))
3334 bfd_nonfatal_message (NULL
, obfd
, NULL
,
3335 _("cannot fill debug link section `%s'"),
3336 gnu_debuglink_filename
);
3341 if (gap_fill_set
|| pad_to_set
)
3345 /* Fill in the gaps. */
3348 buf
= (bfd_byte
*) xmalloc (max_gap
);
3349 memset (buf
, gap_fill
, max_gap
);
3351 c
= bfd_count_sections (obfd
);
3352 for (i
= 0; i
< c
; i
++)
3360 off
= bfd_section_size (osections
[i
]) - left
;
3371 if (! bfd_set_section_contents (obfd
, osections
[i
], buf
,
3374 bfd_nonfatal_message (NULL
, obfd
, osections
[i
], NULL
);
3390 /* Allow the BFD backend to copy any private data it understands
3391 from the input BFD to the output BFD. This is done last to
3392 permit the routine to look at the filtered symbol table, which is
3393 important for the ECOFF code at least. */
3394 if (! bfd_copy_private_bfd_data (ibfd
, obfd
))
3396 bfd_nonfatal_message (NULL
, obfd
, NULL
,
3397 _("error copying private BFD data"));
3401 /* Switch to the alternate machine code. We have to do this at the
3402 very end, because we only initialize the header when we create
3403 the first section. */
3404 if (use_alt_mach_code
!= 0)
3406 if (! bfd_alt_mach_code (obfd
, use_alt_mach_code
))
3408 non_fatal (_("this target does not support %lu alternative machine codes"),
3410 if (bfd_get_flavour (obfd
) == bfd_target_elf_flavour
)
3412 non_fatal (_("treating that number as an absolute e_machine value instead"));
3413 elf_elfheader (obfd
)->e_machine
= use_alt_mach_code
;
3416 non_fatal (_("ignoring the alternative value"));
3423 /* Read each archive element in turn from IBFD, copy the
3424 contents to temp file, and keep the temp file handle.
3425 If 'force_output_target' is TRUE then make sure that
3426 all elements in the new archive are of the type
3430 copy_archive (bfd
*ibfd
, bfd
*obfd
, const char *output_target
,
3431 bfd_boolean force_output_target
,
3432 const bfd_arch_info_type
*input_arch
)
3436 struct name_list
*next
;
3440 bfd
**ptr
= &obfd
->archive_head
;
3443 const char *filename
;
3445 /* PR 24281: It is not clear what should happen when copying a thin archive.
3446 One part is straight forward - if the output archive is in a different
3447 directory from the input archive then any relative paths in the library
3448 should be adjusted to the new location. But if any transformation
3449 options are active (eg strip, rename, add, etc) then the implication is
3450 that these should be applied to the files pointed to by the archive.
3451 But since objcopy is not destructive, this means that new files must be
3452 created, and there is no guidance for the names of the new files. (Plus
3453 this conflicts with one of the goals of thin libraries - only taking up
3454 a minimal amount of space in the file system).
3456 So for now we fail if an attempt is made to copy such libraries. */
3457 if (ibfd
->is_thin_archive
)
3460 bfd_set_error (bfd_error_invalid_operation
);
3461 bfd_nonfatal_message (NULL
, ibfd
, NULL
,
3462 _("sorry: copying thin archives is not currently supported"));
3466 /* Make a temp directory to hold the contents. */
3467 dir
= make_tempdir (bfd_get_filename (obfd
));
3469 fatal (_("cannot create tempdir for archive copying (error: %s)"),
3472 if (strip_symbols
== STRIP_ALL
)
3473 obfd
->has_armap
= FALSE
;
3475 obfd
->has_armap
= ibfd
->has_armap
;
3476 obfd
->is_thin_archive
= ibfd
->is_thin_archive
;
3479 obfd
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
3483 this_element
= bfd_openr_next_archived_file (ibfd
, NULL
);
3485 if (!bfd_set_format (obfd
, bfd_get_format (ibfd
)))
3488 bfd_nonfatal_message (NULL
, obfd
, NULL
, NULL
);
3489 goto cleanup_and_exit
;
3492 while (!status
&& this_element
!= NULL
)
3498 int stat_status
= 0;
3499 bfd_boolean del
= TRUE
;
3500 bfd_boolean ok_object
;
3502 /* PR binutils/17533: Do not allow directory traversal
3503 outside of the current directory tree by archive members. */
3504 if (! is_valid_archive_path (bfd_get_filename (this_element
)))
3506 non_fatal (_("illegal pathname found in archive member: %s"),
3507 bfd_get_filename (this_element
));
3509 goto cleanup_and_exit
;
3512 /* Create an output file for this member. */
3513 output_name
= concat (dir
, "/",
3514 bfd_get_filename (this_element
), (char *) 0);
3516 /* If the file already exists, make another temp dir. */
3517 if (stat (output_name
, &buf
) >= 0)
3519 char * tmpdir
= make_tempdir (output_name
);
3524 non_fatal (_("cannot create tempdir for archive copying (error: %s)"),
3527 goto cleanup_and_exit
;
3530 l
= (struct name_list
*) xmalloc (sizeof (struct name_list
));
3535 output_name
= concat (tmpdir
, "/",
3536 bfd_get_filename (this_element
), (char *) 0);
3541 stat_status
= bfd_stat_arch_elt (this_element
, &buf
);
3543 if (stat_status
!= 0)
3544 non_fatal (_("internal stat error on %s"),
3545 bfd_get_filename (this_element
));
3548 l
= (struct name_list
*) xmalloc (sizeof (struct name_list
));
3549 l
->name
= output_name
;
3554 ok_object
= bfd_check_format (this_element
, bfd_object
);
3556 bfd_nonfatal_message (NULL
, this_element
, NULL
,
3557 _("Unable to recognise the format of file"));
3559 /* PR binutils/3110: Cope with archives
3560 containing multiple target types. */
3561 if (force_output_target
|| !ok_object
)
3562 output_bfd
= bfd_openw (output_name
, output_target
);
3564 output_bfd
= bfd_openw (output_name
, bfd_get_target (this_element
));
3566 if (output_bfd
== NULL
)
3568 bfd_nonfatal_message (output_name
, NULL
, NULL
, NULL
);
3570 goto cleanup_and_exit
;
3575 del
= !copy_object (this_element
, output_bfd
, input_arch
);
3577 if (del
&& bfd_get_arch (this_element
) == bfd_arch_unknown
)
3578 /* Try again as an unknown object file. */
3580 else if (!bfd_close (output_bfd
))
3582 bfd_nonfatal_message (output_name
, NULL
, NULL
, NULL
);
3583 /* Error in new object file. Don't change archive. */
3590 del
= !copy_unknown_object (this_element
, output_bfd
);
3591 if (!bfd_close_all_done (output_bfd
))
3593 bfd_nonfatal_message (output_name
, NULL
, NULL
, NULL
);
3594 /* Error in new object file. Don't change archive. */
3601 unlink (output_name
);
3606 if (preserve_dates
&& stat_status
== 0)
3607 set_times (output_name
, &buf
);
3609 /* Open the newly output file and attach to our list. */
3610 output_bfd
= bfd_openr (output_name
, output_target
);
3612 l
->obfd
= output_bfd
;
3615 ptr
= &output_bfd
->archive_next
;
3617 last_element
= this_element
;
3619 this_element
= bfd_openr_next_archived_file (ibfd
, last_element
);
3621 bfd_close (last_element
);
3626 filename
= bfd_get_filename (obfd
);
3627 if (!bfd_close (obfd
))
3630 bfd_nonfatal_message (filename
, NULL
, NULL
, NULL
);
3633 filename
= bfd_get_filename (ibfd
);
3634 if (!bfd_close (ibfd
))
3637 bfd_nonfatal_message (filename
, NULL
, NULL
, NULL
);
3641 /* Delete all the files that we opened. */
3643 struct name_list
* next
;
3645 for (l
= list
; l
!= NULL
; l
= next
)
3647 if (l
->obfd
== NULL
)
3651 bfd_close (l
->obfd
);
3663 set_long_section_mode (bfd
*output_bfd
, bfd
*input_bfd
, enum long_section_name_handling style
)
3665 /* This is only relevant to Coff targets. */
3666 if (bfd_get_flavour (output_bfd
) == bfd_target_coff_flavour
)
3669 && bfd_get_flavour (input_bfd
) == bfd_target_coff_flavour
)
3670 style
= bfd_coff_long_section_names (input_bfd
) ? ENABLE
: DISABLE
;
3671 bfd_coff_set_long_section_names (output_bfd
, style
!= DISABLE
);
3675 /* The top-level control. */
3678 copy_file (const char *input_filename
, const char *output_filename
,
3679 const char *input_target
, const char *output_target
,
3680 const bfd_arch_info_type
*input_arch
)
3683 char **obj_matching
;
3684 char **core_matching
;
3685 off_t size
= get_file_size (input_filename
);
3690 non_fatal (_("error: the input file '%s' is empty"),
3696 /* To allow us to do "strip *" without dying on the first
3697 non-object file, failures are nonfatal. */
3698 ibfd
= bfd_openr (input_filename
, input_target
);
3701 bfd_nonfatal_message (input_filename
, NULL
, NULL
, NULL
);
3706 switch (do_debug_sections
)
3710 case compress_gnu_zlib
:
3711 case compress_gabi_zlib
:
3712 ibfd
->flags
|= BFD_COMPRESS
;
3713 /* Don't check if input is ELF here since this information is
3714 only available after bfd_check_format_matches is called. */
3715 if (do_debug_sections
!= compress_gnu_zlib
)
3716 ibfd
->flags
|= BFD_COMPRESS_GABI
;
3719 ibfd
->flags
|= BFD_DECOMPRESS
;
3725 switch (do_elf_stt_common
)
3727 case elf_stt_common
:
3728 ibfd
->flags
|= BFD_CONVERT_ELF_COMMON
| BFD_USE_ELF_STT_COMMON
;
3731 case no_elf_stt_common
:
3732 ibfd
->flags
|= BFD_CONVERT_ELF_COMMON
;
3738 if (bfd_check_format (ibfd
, bfd_archive
))
3740 bfd_boolean force_output_target
;
3743 /* bfd_get_target does not return the correct value until
3744 bfd_check_format succeeds. */
3745 if (output_target
== NULL
)
3747 output_target
= bfd_get_target (ibfd
);
3748 force_output_target
= FALSE
;
3751 force_output_target
= TRUE
;
3753 obfd
= bfd_openw (output_filename
, output_target
);
3756 bfd_nonfatal_message (output_filename
, NULL
, NULL
, NULL
);
3761 if (gnu_debuglink_filename
!= NULL
)
3763 non_fatal (_("--add-gnu-debuglink ignored for archive %s"),
3764 bfd_get_filename (ibfd
));
3765 gnu_debuglink_filename
= NULL
;
3768 /* This is a no-op on non-Coff targets. */
3769 set_long_section_mode (obfd
, ibfd
, long_section_names
);
3771 copy_archive (ibfd
, obfd
, output_target
, force_output_target
, input_arch
);
3773 else if (bfd_check_format_matches (ibfd
, bfd_object
, &obj_matching
))
3778 /* bfd_get_target does not return the correct value until
3779 bfd_check_format succeeds. */
3780 if (output_target
== NULL
)
3781 output_target
= bfd_get_target (ibfd
);
3783 obfd
= bfd_openw (output_filename
, output_target
);
3786 bfd_nonfatal_message (output_filename
, NULL
, NULL
, NULL
);
3790 /* This is a no-op on non-Coff targets. */
3791 set_long_section_mode (obfd
, ibfd
, long_section_names
);
3793 if (! copy_object (ibfd
, obfd
, input_arch
))
3796 /* PR 17512: file: 0f15796a.
3797 If the file could not be copied it may not be in a writeable
3798 state. So use bfd_close_all_done to avoid the possibility of
3799 writing uninitialised data into the file. */
3800 if (! (status
? bfd_close_all_done (obfd
) : bfd_close (obfd
)))
3803 bfd_nonfatal_message (output_filename
, NULL
, NULL
, NULL
);
3807 if (!bfd_close (ibfd
))
3810 bfd_nonfatal_message (input_filename
, NULL
, NULL
, NULL
);
3816 bfd_error_type obj_error
= bfd_get_error ();
3817 bfd_error_type core_error
;
3819 if (bfd_check_format_matches (ibfd
, bfd_core
, &core_matching
))
3821 /* This probably can't happen.. */
3822 if (obj_error
== bfd_error_file_ambiguously_recognized
)
3823 free (obj_matching
);
3827 core_error
= bfd_get_error ();
3828 /* Report the object error in preference to the core error. */
3829 if (obj_error
!= core_error
)
3830 bfd_set_error (obj_error
);
3832 bfd_nonfatal_message (input_filename
, NULL
, NULL
, NULL
);
3834 if (obj_error
== bfd_error_file_ambiguously_recognized
)
3836 list_matching_formats (obj_matching
);
3837 free (obj_matching
);
3839 if (core_error
== bfd_error_file_ambiguously_recognized
)
3841 list_matching_formats (core_matching
);
3842 free (core_matching
);
3849 /* Add a name to the section renaming list. */
3852 add_section_rename (const char * old_name
, const char * new_name
,
3855 section_rename
* srename
;
3857 /* Check for conflicts first. */
3858 for (srename
= section_rename_list
; srename
!= NULL
; srename
= srename
->next
)
3859 if (strcmp (srename
->old_name
, old_name
) == 0)
3861 /* Silently ignore duplicate definitions. */
3862 if (strcmp (srename
->new_name
, new_name
) == 0
3863 && srename
->flags
== flags
)
3866 fatal (_("Multiple renames of section %s"), old_name
);
3869 srename
= (section_rename
*) xmalloc (sizeof (* srename
));
3871 srename
->old_name
= old_name
;
3872 srename
->new_name
= new_name
;
3873 srename
->flags
= flags
;
3874 srename
->next
= section_rename_list
;
3876 section_rename_list
= srename
;
3879 /* Check the section rename list for a new name of the input section
3880 called OLD_NAME. Returns the new name if one is found and sets
3881 RETURNED_FLAGS if non-NULL to the flags to be used for this section. */
3884 find_section_rename (const char *old_name
, flagword
*returned_flags
)
3886 const section_rename
*srename
;
3888 for (srename
= section_rename_list
; srename
!= NULL
; srename
= srename
->next
)
3889 if (strcmp (srename
->old_name
, old_name
) == 0)
3891 if (returned_flags
!= NULL
&& srename
->flags
!= (flagword
) -1)
3892 *returned_flags
= srename
->flags
;
3894 return srename
->new_name
;
3900 /* Once each of the sections is copied, we may still need to do some
3901 finalization work for private section headers. Do that here. */
3904 setup_bfd_headers (bfd
*ibfd
, bfd
*obfd
)
3906 /* Allow the BFD backend to copy any private data it understands
3907 from the input section to the output section. */
3908 if (! bfd_copy_private_header_data (ibfd
, obfd
))
3911 bfd_nonfatal_message (NULL
, ibfd
, NULL
,
3912 _("error in private header data"));
3916 /* All went well. */
3920 /* Create a section in OBFD with the same
3921 name and attributes as ISECTION in IBFD. */
3924 setup_section (bfd
*ibfd
, sec_ptr isection
, void *obfdarg
)
3926 bfd
*obfd
= (bfd
*) obfdarg
;
3927 struct section_list
*p
;
3935 char *prefix
= NULL
;
3936 bfd_boolean make_nobits
;
3937 unsigned int alignment
;
3939 if (is_strip_section (ibfd
, isection
))
3942 /* Get the, possibly new, name of the output section. */
3943 name
= bfd_section_name (isection
);
3944 flags
= bfd_section_flags (isection
);
3945 if (bfd_get_flavour (ibfd
) != bfd_get_flavour (obfd
))
3947 flags
&= bfd_applicable_section_flags (ibfd
);
3948 flags
&= bfd_applicable_section_flags (obfd
);
3950 name
= find_section_rename (name
, &flags
);
3952 /* Prefix sections. */
3953 if (prefix_alloc_sections_string
3954 && (bfd_section_flags (isection
) & SEC_ALLOC
) != 0)
3955 prefix
= prefix_alloc_sections_string
;
3956 else if (prefix_sections_string
)
3957 prefix
= prefix_sections_string
;
3963 n
= (char *) xmalloc (strlen (prefix
) + strlen (name
) + 1);
3969 make_nobits
= FALSE
;
3971 p
= find_section_list (bfd_section_name (isection
), FALSE
,
3972 SECTION_CONTEXT_SET_FLAGS
);
3974 flags
= p
->flags
| (flags
& (SEC_HAS_CONTENTS
| SEC_RELOC
));
3975 else if (strip_symbols
== STRIP_NONDEBUG
3976 && (flags
& (SEC_ALLOC
| SEC_GROUP
)) != 0
3977 && !is_nondebug_keep_contents_section (ibfd
, isection
))
3979 flags
&= ~(SEC_HAS_CONTENTS
| SEC_LOAD
| SEC_GROUP
);
3980 if (bfd_get_flavour (obfd
) == bfd_target_elf_flavour
)
3984 /* Twiddle the input section flags so that it seems to
3985 elf.c:copy_private_bfd_data that section flags have not
3986 changed between input and output sections. This hack
3987 prevents wholesale rewriting of the program headers. */
3988 isection
->flags
&= ~(SEC_HAS_CONTENTS
| SEC_LOAD
| SEC_GROUP
);
3992 osection
= bfd_make_section_anyway_with_flags (obfd
, name
, flags
);
3994 if (osection
== NULL
)
3996 err
= _("failed to create output section");
4001 elf_section_type (osection
) = SHT_NOBITS
;
4003 size
= bfd_section_size (isection
);
4004 size
= bfd_convert_section_size (ibfd
, isection
, obfd
, size
);
4006 size
= (size
+ interleave
- 1) / interleave
* copy_width
;
4007 else if (extract_symbol
)
4009 if (!bfd_set_section_size (osection
, size
))
4011 err
= _("failed to set size");
4015 vma
= bfd_section_vma (isection
);
4016 p
= find_section_list (bfd_section_name (isection
), FALSE
,
4017 SECTION_CONTEXT_ALTER_VMA
| SECTION_CONTEXT_SET_VMA
);
4020 if (p
->context
& SECTION_CONTEXT_SET_VMA
)
4026 vma
+= change_section_address
;
4028 if (!bfd_set_section_vma (osection
, vma
))
4030 err
= _("failed to set vma");
4034 lma
= isection
->lma
;
4035 p
= find_section_list (bfd_section_name (isection
), FALSE
,
4036 SECTION_CONTEXT_ALTER_LMA
| SECTION_CONTEXT_SET_LMA
);
4039 if (p
->context
& SECTION_CONTEXT_ALTER_LMA
)
4045 lma
+= change_section_address
;
4047 osection
->lma
= lma
;
4049 p
= find_section_list (bfd_section_name (isection
), FALSE
,
4050 SECTION_CONTEXT_SET_ALIGNMENT
);
4052 alignment
= p
->alignment
;
4054 alignment
= bfd_section_alignment (isection
);
4056 /* FIXME: This is probably not enough. If we change the LMA we
4057 may have to recompute the header for the file as well. */
4058 if (!bfd_set_section_alignment (osection
, alignment
))
4060 err
= _("failed to set alignment");
4064 /* Copy merge entity size. */
4065 osection
->entsize
= isection
->entsize
;
4067 /* Copy compress status. */
4068 osection
->compress_status
= isection
->compress_status
;
4070 /* This used to be mangle_section; we do here to avoid using
4071 bfd_get_section_by_name since some formats allow multiple
4072 sections with the same name. */
4073 isection
->output_section
= osection
;
4074 isection
->output_offset
= 0;
4076 if ((isection
->flags
& SEC_GROUP
) != 0)
4078 asymbol
*gsym
= group_signature (isection
);
4082 gsym
->flags
|= BSF_KEEP
;
4083 if (bfd_get_flavour (ibfd
) == bfd_target_elf_flavour
)
4084 elf_group_id (isection
) = gsym
;
4088 /* Allow the BFD backend to copy any private data it understands
4089 from the input section to the output section. */
4090 if (!bfd_copy_private_section_data (ibfd
, isection
, obfd
, osection
))
4092 err
= _("failed to copy private data");
4096 /* All went well. */
4101 bfd_nonfatal_message (NULL
, obfd
, osection
, err
);
4104 /* Return TRUE if input section ISECTION should be skipped. */
4107 skip_section (bfd
*ibfd
, sec_ptr isection
, bfd_boolean skip_copy
)
4113 /* If we have already failed earlier on,
4114 do not keep on generating complaints now. */
4121 if (is_strip_section (ibfd
, isection
))
4124 if (is_update_section (ibfd
, isection
))
4127 /* When merging a note section we skip the copying of the contents,
4128 but not the copying of the relocs associated with the contents. */
4129 if (skip_copy
&& is_mergeable_note_section (ibfd
, isection
))
4132 flags
= bfd_section_flags (isection
);
4133 if ((flags
& SEC_GROUP
) != 0)
4136 osection
= isection
->output_section
;
4137 size
= bfd_section_size (isection
);
4139 if (size
== 0 || osection
== 0)
4145 /* Add section SECTION_PATTERN to the list of sections that will have their
4146 relocations removed. */
4149 handle_remove_relocations_option (const char *section_pattern
)
4151 find_section_list (section_pattern
, TRUE
, SECTION_CONTEXT_REMOVE_RELOCS
);
4154 /* Return TRUE if ISECTION from IBFD should have its relocations removed,
4155 otherwise return FALSE. If the user has requested that relocations be
4156 removed from a section that does not have relocations then this
4157 function will still return TRUE. */
4160 discard_relocations (bfd
*ibfd ATTRIBUTE_UNUSED
, asection
*isection
)
4162 return (find_section_list (bfd_section_name (isection
), FALSE
,
4163 SECTION_CONTEXT_REMOVE_RELOCS
) != NULL
);
4166 /* Wrapper for dealing with --remove-section (-R) command line arguments.
4167 A special case is detected here, if the user asks to remove a relocation
4168 section (one starting with ".rela" or ".rel") then this removal must
4169 be done using a different technique in a relocatable object. */
4172 handle_remove_section_option (const char *section_pattern
)
4174 find_section_list (section_pattern
, TRUE
, SECTION_CONTEXT_REMOVE
);
4175 if (strncmp (section_pattern
, ".rel", 4) == 0)
4177 section_pattern
+= 4;
4178 if (*section_pattern
== 'a')
4180 if (*section_pattern
)
4181 handle_remove_relocations_option (section_pattern
);
4183 sections_removed
= TRUE
;
4186 /* Copy relocations in input section ISECTION of IBFD to an output
4187 section with the same name in OBFDARG. If stripping then don't
4188 copy any relocation info. */
4191 copy_relocations_in_section (bfd
*ibfd
, sec_ptr isection
, void *obfdarg
)
4193 bfd
*obfd
= (bfd
*) obfdarg
;
4199 if (skip_section (ibfd
, isection
, FALSE
))
4202 osection
= isection
->output_section
;
4204 /* Core files and DWO files do not need to be relocated. */
4205 if (bfd_get_format (obfd
) == bfd_core
4206 || strip_symbols
== STRIP_NONDWO
4207 || discard_relocations (ibfd
, isection
))
4211 relsize
= bfd_get_reloc_upper_bound (ibfd
, isection
);
4215 /* Do not complain if the target does not support relocations. */
4216 if (relsize
== -1 && bfd_get_error () == bfd_error_invalid_operation
)
4221 bfd_nonfatal_message (NULL
, ibfd
, isection
, NULL
);
4229 bfd_set_reloc (obfd
, osection
, NULL
, 0);
4230 osection
->flags
&= ~SEC_RELOC
;
4234 if (isection
->orelocation
!= NULL
)
4236 /* Some other function has already set up the output relocs
4237 for us, so scan those instead of the default relocs. */
4238 relcount
= isection
->reloc_count
;
4239 relpp
= isection
->orelocation
;
4243 relpp
= (arelent
**) xmalloc (relsize
);
4244 relcount
= bfd_canonicalize_reloc (ibfd
, isection
, relpp
, isympp
);
4248 bfd_nonfatal_message (NULL
, ibfd
, isection
,
4249 _("relocation count is negative"));
4254 if (strip_symbols
== STRIP_ALL
)
4256 /* Remove relocations which are not in
4257 keep_strip_specific_list. */
4258 arelent
**temp_relpp
;
4259 long temp_relcount
= 0;
4262 temp_relpp
= (arelent
**) xmalloc (relsize
);
4263 for (i
= 0; i
< relcount
; i
++)
4265 /* PR 17512: file: 9e907e0c. */
4266 if (relpp
[i
]->sym_ptr_ptr
4268 && * relpp
[i
]->sym_ptr_ptr
)
4269 if (is_specified_symbol (bfd_asymbol_name (*relpp
[i
]->sym_ptr_ptr
),
4270 keep_specific_htab
))
4271 temp_relpp
[temp_relcount
++] = relpp
[i
];
4273 relcount
= temp_relcount
;
4274 if (isection
->orelocation
== NULL
)
4279 bfd_set_reloc (obfd
, osection
, relcount
== 0 ? NULL
: relpp
, relcount
);
4282 osection
->flags
&= ~SEC_RELOC
;
4288 /* Copy the data of input section ISECTION of IBFD
4289 to an output section with the same name in OBFD. */
4292 copy_section (bfd
*ibfd
, sec_ptr isection
, void *obfdarg
)
4294 bfd
*obfd
= (bfd
*) obfdarg
;
4295 struct section_list
*p
;
4299 if (skip_section (ibfd
, isection
, TRUE
))
4302 osection
= isection
->output_section
;
4303 /* The output SHF_COMPRESSED section size is different from input if
4304 ELF classes of input and output aren't the same. We can't use
4305 the output section size since --interleave will shrink the output
4306 section. Size will be updated if the section is converted. */
4307 size
= bfd_section_size (isection
);
4309 if (bfd_section_flags (isection
) & SEC_HAS_CONTENTS
4310 && bfd_section_flags (osection
) & SEC_HAS_CONTENTS
)
4312 bfd_byte
*memhunk
= NULL
;
4314 if (!bfd_get_full_section_contents (ibfd
, isection
, &memhunk
)
4315 || !bfd_convert_section_contents (ibfd
, isection
, obfd
,
4319 bfd_nonfatal_message (NULL
, ibfd
, isection
, NULL
);
4326 /* We don't handle leftover bytes (too many possible behaviors,
4327 and we don't know what the user wants). The section length
4328 must be a multiple of the number of bytes to swap. */
4329 if ((size
% reverse_bytes
) == 0)
4334 for (i
= 0; i
< size
; i
+= reverse_bytes
)
4335 for (j
= 0; j
< (unsigned long)(reverse_bytes
/ 2); j
++)
4337 bfd_byte
*m
= (bfd_byte
*) memhunk
;
4340 m
[i
+ j
] = m
[(i
+ reverse_bytes
) - (j
+ 1)];
4341 m
[(i
+ reverse_bytes
) - (j
+ 1)] = b
;
4345 /* User must pad the section up in order to do this. */
4346 fatal (_("cannot reverse bytes: length of section %s must be evenly divisible by %d"),
4347 bfd_section_name (isection
), reverse_bytes
);
4352 /* Keep only every `copy_byte'th byte in MEMHUNK. */
4353 char *from
= (char *) memhunk
+ copy_byte
;
4354 char *to
= (char *) memhunk
;
4355 char *end
= (char *) memhunk
+ size
;
4358 /* If the section address is not exactly divisible by the interleave,
4359 then we must bias the from address. If the copy_byte is less than
4360 the bias, then we must skip forward one interleave, and increment
4362 int extra
= isection
->lma
% interleave
;
4364 if (copy_byte
< extra
)
4367 for (; from
< end
; from
+= interleave
)
4368 for (i
= 0; i
< copy_width
; i
++)
4370 if (&from
[i
] >= end
)
4375 size
= (size
+ interleave
- 1 - copy_byte
) / interleave
* copy_width
;
4376 osection
->lma
/= interleave
;
4377 if (copy_byte
< extra
)
4381 if (!bfd_set_section_contents (obfd
, osection
, memhunk
, 0, size
))
4384 bfd_nonfatal_message (NULL
, obfd
, osection
, NULL
);
4390 else if ((p
= find_section_list (bfd_section_name (isection
),
4391 FALSE
, SECTION_CONTEXT_SET_FLAGS
)) != NULL
4392 && (p
->flags
& SEC_HAS_CONTENTS
) != 0)
4394 void *memhunk
= xmalloc (size
);
4396 /* We don't permit the user to turn off the SEC_HAS_CONTENTS
4397 flag--they can just remove the section entirely and add it
4398 back again. However, we do permit them to turn on the
4399 SEC_HAS_CONTENTS flag, and take it to mean that the section
4400 contents should be zeroed out. */
4402 memset (memhunk
, 0, size
);
4403 if (! bfd_set_section_contents (obfd
, osection
, memhunk
, 0, size
))
4406 bfd_nonfatal_message (NULL
, obfd
, osection
, NULL
);
4414 /* Get all the sections. This is used when --gap-fill or --pad-to is
4418 get_sections (bfd
*obfd ATTRIBUTE_UNUSED
, asection
*osection
, void *secppparg
)
4420 asection
***secppp
= (asection
***) secppparg
;
4422 **secppp
= osection
;
4426 /* Sort sections by LMA. This is called via qsort, and is used when
4427 --gap-fill or --pad-to is used. We force non loadable or empty
4428 sections to the front, where they are easier to ignore. */
4431 compare_section_lma (const void *arg1
, const void *arg2
)
4433 const asection
*sec1
= *(const asection
**) arg1
;
4434 const asection
*sec2
= *(const asection
**) arg2
;
4435 flagword flags1
, flags2
;
4437 /* Sort non loadable sections to the front. */
4438 flags1
= sec1
->flags
;
4439 flags2
= sec2
->flags
;
4440 if ((flags1
& SEC_HAS_CONTENTS
) == 0
4441 || (flags1
& SEC_LOAD
) == 0)
4443 if ((flags2
& SEC_HAS_CONTENTS
) != 0
4444 && (flags2
& SEC_LOAD
) != 0)
4449 if ((flags2
& SEC_HAS_CONTENTS
) == 0
4450 || (flags2
& SEC_LOAD
) == 0)
4454 /* Sort sections by LMA. */
4455 if (sec1
->lma
> sec2
->lma
)
4457 if (sec1
->lma
< sec2
->lma
)
4460 /* Sort sections with the same LMA by size. */
4461 if (bfd_section_size (sec1
) > bfd_section_size (sec2
))
4463 if (bfd_section_size (sec1
) < bfd_section_size (sec2
))
4466 if (sec1
->id
> sec2
->id
)
4468 if (sec1
->id
< sec2
->id
)
4473 /* Mark all the symbols which will be used in output relocations with
4474 the BSF_KEEP flag so that those symbols will not be stripped.
4476 Ignore relocations which will not appear in the output file. */
4479 mark_symbols_used_in_relocations (bfd
*ibfd
, sec_ptr isection
, void *symbolsarg
)
4481 asymbol
**symbols
= (asymbol
**) symbolsarg
;
4486 /* Ignore an input section with no corresponding output section. */
4487 if (isection
->output_section
== NULL
)
4490 relsize
= bfd_get_reloc_upper_bound (ibfd
, isection
);
4493 /* Do not complain if the target does not support relocations. */
4494 if (relsize
== -1 && bfd_get_error () == bfd_error_invalid_operation
)
4496 bfd_fatal (bfd_get_filename (ibfd
));
4502 relpp
= (arelent
**) xmalloc (relsize
);
4503 relcount
= bfd_canonicalize_reloc (ibfd
, isection
, relpp
, symbols
);
4505 bfd_fatal (bfd_get_filename (ibfd
));
4507 /* Examine each symbol used in a relocation. If it's not one of the
4508 special bfd section symbols, then mark it with BSF_KEEP. */
4509 for (i
= 0; i
< relcount
; i
++)
4511 /* See PRs 20923 and 20930 for reproducers for the NULL tests. */
4512 if (relpp
[i
]->sym_ptr_ptr
!= NULL
4513 && * relpp
[i
]->sym_ptr_ptr
!= NULL
4514 && *relpp
[i
]->sym_ptr_ptr
!= bfd_com_section_ptr
->symbol
4515 && *relpp
[i
]->sym_ptr_ptr
!= bfd_abs_section_ptr
->symbol
4516 && *relpp
[i
]->sym_ptr_ptr
!= bfd_und_section_ptr
->symbol
)
4517 (*relpp
[i
]->sym_ptr_ptr
)->flags
|= BSF_KEEP
;
4524 /* Write out debugging information. */
4527 write_debugging_info (bfd
*obfd
, void *dhandle
,
4528 long *symcountp ATTRIBUTE_UNUSED
,
4529 asymbol
***symppp ATTRIBUTE_UNUSED
)
4531 if (bfd_get_flavour (obfd
) == bfd_target_coff_flavour
4532 || bfd_get_flavour (obfd
) == bfd_target_elf_flavour
)
4534 bfd_byte
*syms
, *strings
= NULL
;
4535 bfd_size_type symsize
, stringsize
;
4536 asection
*stabsec
, *stabstrsec
;
4539 if (! write_stabs_in_sections_debugging_info (obfd
, dhandle
, &syms
,
4544 flags
= SEC_HAS_CONTENTS
| SEC_READONLY
| SEC_DEBUGGING
;
4545 stabsec
= bfd_make_section_with_flags (obfd
, ".stab", flags
);
4546 stabstrsec
= bfd_make_section_with_flags (obfd
, ".stabstr", flags
);
4548 || stabstrsec
== NULL
4549 || !bfd_set_section_size (stabsec
, symsize
)
4550 || !bfd_set_section_size (stabstrsec
, stringsize
)
4551 || !bfd_set_section_alignment (stabsec
, 2)
4552 || !bfd_set_section_alignment (stabstrsec
, 0))
4554 bfd_nonfatal_message (NULL
, obfd
, NULL
,
4555 _("can't create debugging section"));
4560 /* We can get away with setting the section contents now because
4561 the next thing the caller is going to do is copy over the
4562 real sections. We may someday have to split the contents
4563 setting out of this function. */
4564 if (! bfd_set_section_contents (obfd
, stabsec
, syms
, 0, symsize
)
4565 || ! bfd_set_section_contents (obfd
, stabstrsec
, strings
, 0,
4568 bfd_nonfatal_message (NULL
, obfd
, NULL
,
4569 _("can't set debugging section contents"));
4577 bfd_nonfatal_message (NULL
, obfd
, NULL
,
4578 _("don't know how to write debugging information for %s"),
4579 bfd_get_target (obfd
));
4583 /* If neither -D nor -U was specified explicitly,
4584 then use the configured default. */
4586 default_deterministic (void)
4588 if (deterministic
< 0)
4589 deterministic
= DEFAULT_AR_DETERMINISTIC
;
4593 strip_main (int argc
, char *argv
[])
4595 char *input_target
= NULL
;
4596 char *output_target
= NULL
;
4597 bfd_boolean show_version
= FALSE
;
4598 bfd_boolean formats_info
= FALSE
;
4601 char *output_file
= NULL
;
4602 bfd_boolean merge_notes_set
= FALSE
;
4604 while ((c
= getopt_long (argc
, argv
, "I:O:F:K:MN:R:o:sSpdgxXHhVvwDU",
4605 strip_options
, (int *) 0)) != EOF
)
4610 input_target
= optarg
;
4613 output_target
= optarg
;
4616 input_target
= output_target
= optarg
;
4619 handle_remove_section_option (optarg
);
4621 case OPTION_KEEP_SECTION
:
4622 find_section_list (optarg
, TRUE
, SECTION_CONTEXT_KEEP
);
4624 case OPTION_REMOVE_RELOCS
:
4625 handle_remove_relocations_option (optarg
);
4628 strip_symbols
= STRIP_ALL
;
4632 case 'd': /* Historic BSD alias for -g. Used by early NetBSD. */
4633 strip_symbols
= STRIP_DEBUG
;
4635 case OPTION_STRIP_DWO
:
4636 strip_symbols
= STRIP_DWO
;
4638 case OPTION_STRIP_UNNEEDED
:
4639 strip_symbols
= STRIP_UNNEEDED
;
4642 add_specific_symbol (optarg
, keep_specific_htab
);
4646 merge_notes_set
= TRUE
;
4648 case OPTION_NO_MERGE_NOTES
:
4649 merge_notes
= FALSE
;
4650 merge_notes_set
= TRUE
;
4653 add_specific_symbol (optarg
, strip_specific_htab
);
4656 output_file
= optarg
;
4659 preserve_dates
= TRUE
;
4662 deterministic
= TRUE
;
4665 deterministic
= FALSE
;
4668 discard_locals
= LOCALS_ALL
;
4671 discard_locals
= LOCALS_START_L
;
4677 show_version
= TRUE
;
4679 case OPTION_FORMATS_INFO
:
4680 formats_info
= TRUE
;
4682 case OPTION_ONLY_KEEP_DEBUG
:
4683 strip_symbols
= STRIP_NONDEBUG
;
4685 case OPTION_KEEP_FILE_SYMBOLS
:
4686 keep_file_symbols
= 1;
4689 /* We've been given a long option. */
4696 strip_usage (stdout
, 0);
4698 strip_usage (stderr
, 1);
4702 /* If the user has not expressly chosen to merge/not-merge ELF notes
4703 then enable the merging unless we are stripping debug or dwo info. */
4704 if (! merge_notes_set
4705 && (strip_symbols
== STRIP_UNDEF
4706 || strip_symbols
== STRIP_ALL
4707 || strip_symbols
== STRIP_UNNEEDED
4708 || strip_symbols
== STRIP_NONDEBUG
4709 || strip_symbols
== STRIP_NONDWO
))
4719 print_version ("strip");
4721 default_deterministic ();
4723 /* Default is to strip all symbols. */
4724 if (strip_symbols
== STRIP_UNDEF
4725 && discard_locals
== LOCALS_UNDEF
4726 && htab_elements (strip_specific_htab
) == 0)
4727 strip_symbols
= STRIP_ALL
;
4729 if (output_target
== NULL
)
4730 output_target
= input_target
;
4734 || (output_file
!= NULL
&& (i
+ 1) < argc
))
4735 strip_usage (stderr
, 1);
4737 for (; i
< argc
; i
++)
4739 int hold_status
= status
;
4740 struct stat statbuf
;
4743 if (get_file_size (argv
[i
]) < 1)
4750 /* No need to check the return value of stat().
4751 It has already been checked in get_file_size(). */
4752 stat (argv
[i
], &statbuf
);
4754 if (output_file
== NULL
4755 || filename_cmp (argv
[i
], output_file
) == 0)
4756 tmpname
= make_tempname (argv
[i
]);
4758 tmpname
= output_file
;
4760 if (tmpname
== NULL
)
4762 bfd_nonfatal_message (argv
[i
], NULL
, NULL
,
4763 _("could not create temporary file to hold stripped copy"));
4769 copy_file (argv
[i
], tmpname
, input_target
, output_target
, NULL
);
4773 set_times (tmpname
, &statbuf
);
4774 if (output_file
!= tmpname
)
4775 status
= (smart_rename (tmpname
,
4776 output_file
? output_file
: argv
[i
],
4777 preserve_dates
) != 0);
4779 status
= hold_status
;
4782 unlink_if_ordinary (tmpname
);
4783 if (output_file
!= tmpname
)
4790 /* Set up PE subsystem. */
4793 set_pe_subsystem (const char *s
)
4795 const char *version
, *subsystem
;
4805 { "native", 0, IMAGE_SUBSYSTEM_NATIVE
},
4806 { "windows", 0, IMAGE_SUBSYSTEM_WINDOWS_GUI
},
4807 { "console", 0, IMAGE_SUBSYSTEM_WINDOWS_CUI
},
4808 { "posix", 0, IMAGE_SUBSYSTEM_POSIX_CUI
},
4809 { "wince", 0, IMAGE_SUBSYSTEM_WINDOWS_CE_GUI
},
4810 { "efi-app", 1, IMAGE_SUBSYSTEM_EFI_APPLICATION
},
4811 { "efi-bsd", 1, IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
},
4812 { "efi-rtd", 1, IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER
},
4813 { "sal-rtd", 1, IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER
},
4814 { "xbox", 0, IMAGE_SUBSYSTEM_XBOX
}
4820 /* Check for the presence of a version number. */
4821 version
= strchr (s
, ':');
4822 if (version
== NULL
)
4826 int len
= version
- s
;
4830 version
= copy
+ 1 + len
;
4831 pe_major_subsystem_version
= strtoul (version
, ©
, 0);
4833 pe_minor_subsystem_version
= strtoul (copy
+ 1, ©
, 0);
4835 non_fatal (_("%s: bad version in PE subsystem"), s
);
4838 /* Check for numeric subsystem. */
4839 value
= (short) strtol (subsystem
, ©
, 0);
4842 for (i
= 0; i
< ARRAY_SIZE (v
); i
++)
4843 if (v
[i
].value
== value
)
4845 pe_subsystem
= value
;
4846 set_def
= v
[i
].set_def
;
4852 /* Search for subsystem by name. */
4853 for (i
= 0; i
< ARRAY_SIZE (v
); i
++)
4854 if (strcmp (subsystem
, v
[i
].name
) == 0)
4856 pe_subsystem
= v
[i
].value
;
4857 set_def
= v
[i
].set_def
;
4865 fatal (_("unknown PE subsystem: %s"), s
);
4870 if (pe_file_alignment
== (bfd_vma
) -1)
4871 pe_file_alignment
= PE_DEF_FILE_ALIGNMENT
;
4872 if (pe_section_alignment
== (bfd_vma
) -1)
4873 pe_section_alignment
= PE_DEF_SECTION_ALIGNMENT
;
4877 free ((char *) subsystem
);
4880 /* Convert EFI target to PEI target. */
4883 convert_efi_target (char *efi
)
4889 if (strcmp (efi
+ 4, "ia32") == 0)
4891 /* Change ia32 to i386. */
4896 else if (strcmp (efi
+ 4, "x86_64") == 0)
4898 /* Change x86_64 to x86-64. */
4903 /* Allocate and return a pointer to a struct section_add, initializing the
4904 structure using ARG, a string in the format "sectionname=filename".
4905 The returned structure will have its next pointer set to NEXT. The
4906 OPTION field is the name of the command line option currently being
4907 parsed, and is only used if an error needs to be reported. */
4909 static struct section_add
*
4910 init_section_add (const char *arg
,
4911 struct section_add
*next
,
4914 struct section_add
*pa
;
4917 s
= strchr (arg
, '=');
4919 fatal (_("bad format for %s"), option
);
4921 pa
= (struct section_add
*) xmalloc (sizeof (struct section_add
));
4922 pa
->name
= xstrndup (arg
, s
- arg
);
4923 pa
->filename
= s
+ 1;
4925 pa
->contents
= NULL
;
4931 /* Load the file specified in PA, allocating memory to hold the file
4932 contents, and store a pointer to the allocated memory in the contents
4933 field of PA. The size field of PA is also updated. All errors call
4937 section_add_load_file (struct section_add
*pa
)
4942 /* We don't use get_file_size so that we can do
4943 --add-section .note.GNU_stack=/dev/null
4944 get_file_size doesn't work on /dev/null. */
4946 f
= fopen (pa
->filename
, FOPEN_RB
);
4948 fatal (_("cannot open: %s: %s"),
4949 pa
->filename
, strerror (errno
));
4953 pa
->contents
= (bfd_byte
*) xmalloc (alloc
);
4961 pa
->contents
= (bfd_byte
*) xrealloc (pa
->contents
, alloc
);
4964 got
= fread (pa
->contents
+ off
, 1, alloc
- off
, f
);
4966 fatal (_("%s: fread failed"), pa
->filename
);
4977 copy_main (int argc
, char *argv
[])
4979 char *input_filename
= NULL
;
4980 char *output_filename
= NULL
;
4982 char *input_target
= NULL
;
4983 char *output_target
= NULL
;
4984 bfd_boolean show_version
= FALSE
;
4985 bfd_boolean change_warn
= TRUE
;
4986 bfd_boolean formats_info
= FALSE
;
4987 bfd_boolean use_globalize
= FALSE
;
4988 bfd_boolean use_keep_global
= FALSE
;
4990 struct stat statbuf
;
4991 const bfd_arch_info_type
*input_arch
= NULL
;
4993 while ((c
= getopt_long (argc
, argv
, "b:B:i:I:j:K:MN:s:O:d:F:L:G:R:SpgxXHhVvW:wDU",
4994 copy_options
, (int *) 0)) != EOF
)
4999 copy_byte
= atoi (optarg
);
5001 fatal (_("byte number must be non-negative"));
5005 input_arch
= bfd_scan_arch (optarg
);
5006 if (input_arch
== NULL
)
5007 fatal (_("architecture %s unknown"), optarg
);
5013 interleave
= atoi (optarg
);
5015 fatal (_("interleave must be positive"));
5021 case OPTION_INTERLEAVE_WIDTH
:
5022 copy_width
= atoi (optarg
);
5024 fatal(_("interleave width must be positive"));
5028 case 's': /* "source" - 'I' is preferred */
5029 input_target
= optarg
;
5033 case 'd': /* "destination" - 'O' is preferred */
5034 output_target
= optarg
;
5038 input_target
= output_target
= optarg
;
5042 find_section_list (optarg
, TRUE
, SECTION_CONTEXT_COPY
);
5043 sections_copied
= TRUE
;
5047 handle_remove_section_option (optarg
);
5050 case OPTION_KEEP_SECTION
:
5051 find_section_list (optarg
, TRUE
, SECTION_CONTEXT_KEEP
);
5054 case OPTION_REMOVE_RELOCS
:
5055 handle_remove_relocations_option (optarg
);
5059 strip_symbols
= STRIP_ALL
;
5063 strip_symbols
= STRIP_DEBUG
;
5066 case OPTION_STRIP_DWO
:
5067 strip_symbols
= STRIP_DWO
;
5070 case OPTION_STRIP_UNNEEDED
:
5071 strip_symbols
= STRIP_UNNEEDED
;
5074 case OPTION_ONLY_KEEP_DEBUG
:
5075 strip_symbols
= STRIP_NONDEBUG
;
5078 case OPTION_KEEP_FILE_SYMBOLS
:
5079 keep_file_symbols
= 1;
5082 case OPTION_ADD_GNU_DEBUGLINK
:
5083 long_section_names
= ENABLE
;
5084 gnu_debuglink_filename
= optarg
;
5088 add_specific_symbol (optarg
, keep_specific_htab
);
5094 case OPTION_NO_MERGE_NOTES
:
5095 merge_notes
= FALSE
;
5099 add_specific_symbol (optarg
, strip_specific_htab
);
5102 case OPTION_STRIP_UNNEEDED_SYMBOL
:
5103 add_specific_symbol (optarg
, strip_unneeded_htab
);
5107 add_specific_symbol (optarg
, localize_specific_htab
);
5110 case OPTION_GLOBALIZE_SYMBOL
:
5111 use_globalize
= TRUE
;
5112 add_specific_symbol (optarg
, globalize_specific_htab
);
5116 use_keep_global
= TRUE
;
5117 add_specific_symbol (optarg
, keepglobal_specific_htab
);
5121 add_specific_symbol (optarg
, weaken_specific_htab
);
5125 preserve_dates
= TRUE
;
5129 deterministic
= TRUE
;
5133 deterministic
= FALSE
;
5141 discard_locals
= LOCALS_ALL
;
5145 discard_locals
= LOCALS_START_L
;
5153 show_version
= TRUE
;
5156 case OPTION_FORMATS_INFO
:
5157 formats_info
= TRUE
;
5164 case OPTION_ADD_SECTION
:
5165 add_sections
= init_section_add (optarg
, add_sections
,
5167 section_add_load_file (add_sections
);
5170 case OPTION_UPDATE_SECTION
:
5171 update_sections
= init_section_add (optarg
, update_sections
,
5172 "--update-section");
5173 section_add_load_file (update_sections
);
5176 case OPTION_DUMP_SECTION
:
5177 dump_sections
= init_section_add (optarg
, dump_sections
,
5181 case OPTION_ADD_SYMBOL
:
5184 struct addsym_node
*newsym
= xmalloc (sizeof *newsym
);
5186 newsym
->next
= NULL
;
5187 s
= strchr (optarg
, '=');
5189 fatal (_("bad format for %s"), "--add-symbol");
5190 t
= strchr (s
+ 1, ':');
5192 newsym
->symdef
= xstrndup (optarg
, s
- optarg
);
5195 newsym
->section
= xstrndup (s
+ 1, t
- (s
+ 1));
5196 newsym
->symval
= strtol (t
+ 1, NULL
, 0);
5200 newsym
->section
= NULL
;
5201 newsym
->symval
= strtol (s
+ 1, NULL
, 0);
5205 t
= strchr (t
+ 1, ',');
5206 newsym
->othersym
= NULL
;
5208 newsym
->flags
= parse_symflags (t
+1, &newsym
->othersym
);
5210 newsym
->flags
= BSF_GLOBAL
;
5212 /* Keep 'othersym' symbols at the front of the list. */
5213 if (newsym
->othersym
)
5215 newsym
->next
= add_sym_list
;
5217 add_sym_tail
= &newsym
->next
;
5218 add_sym_list
= newsym
;
5222 *add_sym_tail
= newsym
;
5223 add_sym_tail
= &newsym
->next
;
5229 case OPTION_CHANGE_START
:
5230 change_start
= parse_vma (optarg
, "--change-start");
5233 case OPTION_CHANGE_SECTION_ADDRESS
:
5234 case OPTION_CHANGE_SECTION_LMA
:
5235 case OPTION_CHANGE_SECTION_VMA
:
5237 struct section_list
* p
;
5238 unsigned int context
= 0;
5242 char *option
= NULL
;
5247 case OPTION_CHANGE_SECTION_ADDRESS
:
5248 option
= "--change-section-address";
5249 context
= SECTION_CONTEXT_ALTER_LMA
| SECTION_CONTEXT_ALTER_VMA
;
5251 case OPTION_CHANGE_SECTION_LMA
:
5252 option
= "--change-section-lma";
5253 context
= SECTION_CONTEXT_ALTER_LMA
;
5255 case OPTION_CHANGE_SECTION_VMA
:
5256 option
= "--change-section-vma";
5257 context
= SECTION_CONTEXT_ALTER_VMA
;
5261 s
= strchr (optarg
, '=');
5264 s
= strchr (optarg
, '+');
5267 s
= strchr (optarg
, '-');
5269 fatal (_("bad format for %s"), option
);
5274 /* Correct the context. */
5277 case OPTION_CHANGE_SECTION_ADDRESS
:
5278 context
= SECTION_CONTEXT_SET_LMA
| SECTION_CONTEXT_SET_VMA
;
5280 case OPTION_CHANGE_SECTION_LMA
:
5281 context
= SECTION_CONTEXT_SET_LMA
;
5283 case OPTION_CHANGE_SECTION_VMA
:
5284 context
= SECTION_CONTEXT_SET_VMA
;
5290 name
= (char *) xmalloc (len
+ 1);
5291 strncpy (name
, optarg
, len
);
5294 p
= find_section_list (name
, TRUE
, context
);
5296 val
= parse_vma (s
+ 1, option
);
5302 case OPTION_CHANGE_SECTION_ADDRESS
:
5306 case OPTION_CHANGE_SECTION_LMA
:
5310 case OPTION_CHANGE_SECTION_VMA
:
5317 case OPTION_CHANGE_ADDRESSES
:
5318 change_section_address
= parse_vma (optarg
, "--change-addresses");
5319 change_start
= change_section_address
;
5322 case OPTION_CHANGE_WARNINGS
:
5326 case OPTION_CHANGE_LEADING_CHAR
:
5327 change_leading_char
= TRUE
;
5330 case OPTION_COMPRESS_DEBUG_SECTIONS
:
5333 if (strcasecmp (optarg
, "none") == 0)
5334 do_debug_sections
= decompress
;
5335 else if (strcasecmp (optarg
, "zlib") == 0)
5336 do_debug_sections
= compress_zlib
;
5337 else if (strcasecmp (optarg
, "zlib-gnu") == 0)
5338 do_debug_sections
= compress_gnu_zlib
;
5339 else if (strcasecmp (optarg
, "zlib-gabi") == 0)
5340 do_debug_sections
= compress_gabi_zlib
;
5342 fatal (_("unrecognized --compress-debug-sections type `%s'"),
5346 do_debug_sections
= compress
;
5349 case OPTION_DEBUGGING
:
5350 convert_debugging
= TRUE
;
5353 case OPTION_DECOMPRESS_DEBUG_SECTIONS
:
5354 do_debug_sections
= decompress
;
5357 case OPTION_ELF_STT_COMMON
:
5358 if (strcasecmp (optarg
, "yes") == 0)
5359 do_elf_stt_common
= elf_stt_common
;
5360 else if (strcasecmp (optarg
, "no") == 0)
5361 do_elf_stt_common
= no_elf_stt_common
;
5363 fatal (_("unrecognized --elf-stt-common= option `%s'"),
5367 case OPTION_GAP_FILL
:
5369 bfd_vma gap_fill_vma
;
5371 gap_fill_vma
= parse_vma (optarg
, "--gap-fill");
5372 gap_fill
= (bfd_byte
) gap_fill_vma
;
5373 if ((bfd_vma
) gap_fill
!= gap_fill_vma
)
5377 sprintf_vma (buff
, gap_fill_vma
);
5379 non_fatal (_("Warning: truncating gap-fill from 0x%s to 0x%x"),
5382 gap_fill_set
= TRUE
;
5386 case OPTION_NO_CHANGE_WARNINGS
:
5387 change_warn
= FALSE
;
5391 pad_to
= parse_vma (optarg
, "--pad-to");
5395 case OPTION_REMOVE_LEADING_CHAR
:
5396 remove_leading_char
= TRUE
;
5399 case OPTION_REDEFINE_SYM
:
5401 /* Insert this redefinition onto redefine_specific_htab. */
5405 const char *nextarg
;
5406 char *source
, *target
;
5408 s
= strchr (optarg
, '=');
5410 fatal (_("bad format for %s"), "--redefine-sym");
5413 source
= (char *) xmalloc (len
+ 1);
5414 strncpy (source
, optarg
, len
);
5418 len
= strlen (nextarg
);
5419 target
= (char *) xmalloc (len
+ 1);
5420 strcpy (target
, nextarg
);
5422 add_redefine_and_check ("--redefine-sym", source
, target
);
5429 case OPTION_REDEFINE_SYMS
:
5430 add_redefine_syms_file (optarg
);
5433 case OPTION_SET_SECTION_FLAGS
:
5435 struct section_list
*p
;
5440 s
= strchr (optarg
, '=');
5442 fatal (_("bad format for %s"), "--set-section-flags");
5445 name
= (char *) xmalloc (len
+ 1);
5446 strncpy (name
, optarg
, len
);
5449 p
= find_section_list (name
, TRUE
, SECTION_CONTEXT_SET_FLAGS
);
5451 p
->flags
= parse_flags (s
+ 1);
5455 case OPTION_SET_SECTION_ALIGNMENT
:
5457 struct section_list
*p
;
5463 s
= strchr (optarg
, '=');
5465 fatal (_("bad format for --set-section-alignment: argument needed"));
5467 align
= atoi (s
+ 1);
5469 fatal (_("bad format for --set-section-alignment: numeric argument needed"));
5471 /* Convert integer alignment into a power-of-two alignment. */
5473 while ((align
& 1) == 0)
5480 /* Number has more than on 1, i.e. wasn't a power of 2. */
5481 fatal (_("bad format for --set-section-alignment: alignment is not a power of two"));
5483 /* Add the alignment setting to the section list. */
5485 name
= (char *) xmalloc (len
+ 1);
5486 strncpy (name
, optarg
, len
);
5489 p
= find_section_list (name
, TRUE
, SECTION_CONTEXT_SET_ALIGNMENT
);
5491 p
->alignment
= palign
;
5495 case OPTION_RENAME_SECTION
:
5498 const char *eq
, *fl
;
5503 eq
= strchr (optarg
, '=');
5505 fatal (_("bad format for %s"), "--rename-section");
5509 fatal (_("bad format for %s"), "--rename-section");
5511 old_name
= (char *) xmalloc (len
+ 1);
5512 strncpy (old_name
, optarg
, len
);
5516 fl
= strchr (eq
, ',');
5519 flags
= parse_flags (fl
+ 1);
5529 fatal (_("bad format for %s"), "--rename-section");
5531 new_name
= (char *) xmalloc (len
+ 1);
5532 strncpy (new_name
, eq
, len
);
5535 add_section_rename (old_name
, new_name
, flags
);
5539 case OPTION_SET_START
:
5540 set_start
= parse_vma (optarg
, "--set-start");
5541 set_start_set
= TRUE
;
5544 case OPTION_SREC_LEN
:
5545 _bfd_srec_len
= parse_vma (optarg
, "--srec-len");
5548 case OPTION_SREC_FORCES3
:
5549 _bfd_srec_forceS3
= TRUE
;
5552 case OPTION_STRIP_SYMBOLS
:
5553 add_specific_symbols (optarg
, strip_specific_htab
,
5554 &strip_specific_buffer
);
5557 case OPTION_STRIP_UNNEEDED_SYMBOLS
:
5558 add_specific_symbols (optarg
, strip_unneeded_htab
,
5559 &strip_unneeded_buffer
);
5562 case OPTION_KEEP_SYMBOLS
:
5563 add_specific_symbols (optarg
, keep_specific_htab
,
5564 &keep_specific_buffer
);
5567 case OPTION_LOCALIZE_HIDDEN
:
5568 localize_hidden
= TRUE
;
5571 case OPTION_LOCALIZE_SYMBOLS
:
5572 add_specific_symbols (optarg
, localize_specific_htab
,
5573 &localize_specific_buffer
);
5576 case OPTION_LONG_SECTION_NAMES
:
5577 if (!strcmp ("enable", optarg
))
5578 long_section_names
= ENABLE
;
5579 else if (!strcmp ("disable", optarg
))
5580 long_section_names
= DISABLE
;
5581 else if (!strcmp ("keep", optarg
))
5582 long_section_names
= KEEP
;
5584 fatal (_("unknown long section names option '%s'"), optarg
);
5587 case OPTION_GLOBALIZE_SYMBOLS
:
5588 use_globalize
= TRUE
;
5589 add_specific_symbols (optarg
, globalize_specific_htab
,
5590 &globalize_specific_buffer
);
5593 case OPTION_KEEPGLOBAL_SYMBOLS
:
5594 use_keep_global
= TRUE
;
5595 add_specific_symbols (optarg
, keepglobal_specific_htab
,
5596 &keepglobal_specific_buffer
);
5599 case OPTION_WEAKEN_SYMBOLS
:
5600 add_specific_symbols (optarg
, weaken_specific_htab
,
5601 &weaken_specific_buffer
);
5604 case OPTION_ALT_MACH_CODE
:
5605 use_alt_mach_code
= strtoul (optarg
, NULL
, 0);
5606 if (use_alt_mach_code
== 0)
5607 fatal (_("unable to parse alternative machine code"));
5610 case OPTION_PREFIX_SYMBOLS
:
5611 prefix_symbols_string
= optarg
;
5614 case OPTION_PREFIX_SECTIONS
:
5615 prefix_sections_string
= optarg
;
5618 case OPTION_PREFIX_ALLOC_SECTIONS
:
5619 prefix_alloc_sections_string
= optarg
;
5622 case OPTION_READONLY_TEXT
:
5623 bfd_flags_to_set
|= WP_TEXT
;
5624 bfd_flags_to_clear
&= ~WP_TEXT
;
5627 case OPTION_WRITABLE_TEXT
:
5628 bfd_flags_to_clear
|= WP_TEXT
;
5629 bfd_flags_to_set
&= ~WP_TEXT
;
5633 bfd_flags_to_set
|= D_PAGED
;
5634 bfd_flags_to_clear
&= ~D_PAGED
;
5638 bfd_flags_to_clear
|= D_PAGED
;
5639 bfd_flags_to_set
&= ~D_PAGED
;
5642 case OPTION_EXTRACT_DWO
:
5643 strip_symbols
= STRIP_NONDWO
;
5646 case OPTION_EXTRACT_SYMBOL
:
5647 extract_symbol
= TRUE
;
5650 case OPTION_REVERSE_BYTES
:
5652 int prev
= reverse_bytes
;
5654 reverse_bytes
= atoi (optarg
);
5655 if ((reverse_bytes
<= 0) || ((reverse_bytes
% 2) != 0))
5656 fatal (_("number of bytes to reverse must be positive and even"));
5658 if (prev
&& prev
!= reverse_bytes
)
5659 non_fatal (_("Warning: ignoring previous --reverse-bytes value of %d"),
5664 case OPTION_FILE_ALIGNMENT
:
5665 pe_file_alignment
= parse_vma (optarg
, "--file-alignment");
5671 pe_heap_reserve
= strtoul (optarg
, &end
, 0);
5673 || (*end
!= '.' && *end
!= '\0'))
5674 non_fatal (_("%s: invalid reserve value for --heap"),
5676 else if (*end
!= '\0')
5678 pe_heap_commit
= strtoul (end
+ 1, &end
, 0);
5680 non_fatal (_("%s: invalid commit value for --heap"),
5686 case OPTION_IMAGE_BASE
:
5687 pe_image_base
= parse_vma (optarg
, "--image-base");
5690 case OPTION_PE_SECTION_ALIGNMENT
:
5691 pe_section_alignment
= parse_vma (optarg
,
5692 "--section-alignment");
5695 case OPTION_SUBSYSTEM
:
5696 set_pe_subsystem (optarg
);
5702 pe_stack_reserve
= strtoul (optarg
, &end
, 0);
5704 || (*end
!= '.' && *end
!= '\0'))
5705 non_fatal (_("%s: invalid reserve value for --stack"),
5707 else if (*end
!= '\0')
5709 pe_stack_commit
= strtoul (end
+ 1, &end
, 0);
5711 non_fatal (_("%s: invalid commit value for --stack"),
5717 case OPTION_VERILOG_DATA_WIDTH
:
5718 VerilogDataWidth
= parse_vma (optarg
, "--verilog-data-width");
5719 if (VerilogDataWidth
< 1)
5720 fatal (_("verilog data width must be at least 1 byte"));
5724 /* We've been given a long option. */
5729 copy_usage (stdout
, 0);
5732 copy_usage (stderr
, 1);
5736 if (use_globalize
&& use_keep_global
)
5737 fatal(_("--globalize-symbol(s) is incompatible with -G/--keep-global-symbol(s)"));
5746 print_version ("objcopy");
5748 if (interleave
&& copy_byte
== -1)
5749 fatal (_("interleave start byte must be set with --byte"));
5751 if (copy_byte
>= interleave
)
5752 fatal (_("byte number must be less than interleave"));
5754 if (copy_width
> interleave
- copy_byte
)
5755 fatal (_("interleave width must be less than or equal to interleave - byte`"));
5757 if (optind
== argc
|| optind
+ 2 < argc
)
5758 copy_usage (stderr
, 1);
5760 input_filename
= argv
[optind
];
5761 if (optind
+ 1 < argc
)
5762 output_filename
= argv
[optind
+ 1];
5764 default_deterministic ();
5766 /* Default is to strip no symbols. */
5767 if (strip_symbols
== STRIP_UNDEF
&& discard_locals
== LOCALS_UNDEF
)
5768 strip_symbols
= STRIP_NONE
;
5770 if (output_target
== NULL
)
5771 output_target
= input_target
;
5773 /* Convert input EFI target to PEI target. */
5774 if (input_target
!= NULL
5775 && strncmp (input_target
, "efi-", 4) == 0)
5779 efi
= xstrdup (output_target
+ 4);
5780 if (strncmp (efi
, "bsdrv-", 6) == 0
5781 || strncmp (efi
, "rtdrv-", 6) == 0)
5783 else if (strncmp (efi
, "app-", 4) != 0)
5784 fatal (_("unknown input EFI target: %s"), input_target
);
5787 convert_efi_target (efi
);
5790 /* Convert output EFI target to PEI target. */
5791 if (output_target
!= NULL
5792 && strncmp (output_target
, "efi-", 4) == 0)
5796 efi
= xstrdup (output_target
+ 4);
5797 if (strncmp (efi
, "app-", 4) == 0)
5799 if (pe_subsystem
== -1)
5800 pe_subsystem
= IMAGE_SUBSYSTEM_EFI_APPLICATION
;
5802 else if (strncmp (efi
, "bsdrv-", 6) == 0)
5804 if (pe_subsystem
== -1)
5805 pe_subsystem
= IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
;
5808 else if (strncmp (efi
, "rtdrv-", 6) == 0)
5810 if (pe_subsystem
== -1)
5811 pe_subsystem
= IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER
;
5815 fatal (_("unknown output EFI target: %s"), output_target
);
5817 if (pe_file_alignment
== (bfd_vma
) -1)
5818 pe_file_alignment
= PE_DEF_FILE_ALIGNMENT
;
5819 if (pe_section_alignment
== (bfd_vma
) -1)
5820 pe_section_alignment
= PE_DEF_SECTION_ALIGNMENT
;
5822 output_target
= efi
;
5823 convert_efi_target (efi
);
5827 if (stat (input_filename
, & statbuf
) < 0)
5828 fatal (_("warning: could not locate '%s'. System error message: %s"),
5829 input_filename
, strerror (errno
));
5831 /* If there is no destination file, or the source and destination files
5832 are the same, then create a temp and rename the result into the input. */
5833 if (output_filename
== NULL
5834 || filename_cmp (input_filename
, output_filename
) == 0)
5835 tmpname
= make_tempname (input_filename
);
5837 tmpname
= output_filename
;
5839 if (tmpname
== NULL
)
5840 fatal (_("warning: could not create temporary file whilst copying '%s', (error: %s)"),
5841 input_filename
, strerror (errno
));
5843 copy_file (input_filename
, tmpname
, input_target
, output_target
, input_arch
);
5847 set_times (tmpname
, &statbuf
);
5848 if (tmpname
!= output_filename
)
5849 status
= (smart_rename (tmpname
, input_filename
,
5850 preserve_dates
) != 0);
5853 unlink_if_ordinary (tmpname
);
5855 if (tmpname
!= output_filename
)
5860 struct section_list
*p
;
5862 for (p
= change_sections
; p
!= NULL
; p
= p
->next
)
5866 if (p
->context
& (SECTION_CONTEXT_SET_VMA
| SECTION_CONTEXT_ALTER_VMA
))
5870 sprintf_vma (buff
, p
->vma_val
);
5872 /* xgettext:c-format */
5873 non_fatal (_("%s %s%c0x%s never used"),
5874 "--change-section-vma",
5876 p
->context
& SECTION_CONTEXT_SET_VMA
? '=' : '+',
5880 if (p
->context
& (SECTION_CONTEXT_SET_LMA
| SECTION_CONTEXT_ALTER_LMA
))
5884 sprintf_vma (buff
, p
->lma_val
);
5886 /* xgettext:c-format */
5887 non_fatal (_("%s %s%c0x%s never used"),
5888 "--change-section-lma",
5890 p
->context
& SECTION_CONTEXT_SET_LMA
? '=' : '+',
5897 if (strip_specific_buffer
)
5898 free (strip_specific_buffer
);
5900 if (strip_unneeded_buffer
)
5901 free (strip_unneeded_buffer
);
5903 if (keep_specific_buffer
)
5904 free (keep_specific_buffer
);
5906 if (localize_specific_buffer
)
5907 free (globalize_specific_buffer
);
5909 if (globalize_specific_buffer
)
5910 free (globalize_specific_buffer
);
5912 if (keepglobal_specific_buffer
)
5913 free (keepglobal_specific_buffer
);
5915 if (weaken_specific_buffer
)
5916 free (weaken_specific_buffer
);
5922 main (int argc
, char *argv
[])
5924 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
5925 setlocale (LC_MESSAGES
, "");
5927 #if defined (HAVE_SETLOCALE)
5928 setlocale (LC_CTYPE
, "");
5930 bindtextdomain (PACKAGE
, LOCALEDIR
);
5931 textdomain (PACKAGE
);
5933 program_name
= argv
[0];
5934 xmalloc_set_program_name (program_name
);
5936 START_PROGRESS (program_name
, 0);
5938 expandargv (&argc
, &argv
);
5940 strip_symbols
= STRIP_UNDEF
;
5941 discard_locals
= LOCALS_UNDEF
;
5943 if (bfd_init () != BFD_INIT_MAGIC
)
5944 fatal (_("fatal error: libbfd ABI mismatch"));
5945 set_default_bfd_target ();
5949 int i
= strlen (program_name
);
5950 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5951 /* Drop the .exe suffix, if any. */
5952 if (i
> 4 && FILENAME_CMP (program_name
+ i
- 4, ".exe") == 0)
5955 program_name
[i
] = '\0';
5958 is_strip
= (i
>= 5 && FILENAME_CMP (program_name
+ i
- 5, "strip") == 0);
5961 create_symbol_htabs ();
5964 bfd_set_error_program_name (argv
[0]);
5967 strip_main (argc
, argv
);
5969 copy_main (argc
, argv
);
5971 END_PROGRESS (program_name
);