Automatic date update in version.in
[binutils-gdb.git] / binutils / objcopy.c
blob6ffbdf9c68177c0b09a6f158311185aa1bbf8a58
1 /* objcopy.c -- copy object file from input to output, optionally massaging it.
2 Copyright (C) 1991-2022 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
19 02110-1301, USA. */
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "progress.h"
24 #include "getopt.h"
25 #include "libiberty.h"
26 #include "bucomm.h"
27 #include "budbg.h"
28 #include "filenames.h"
29 #include "fnmatch.h"
30 #include "elf-bfd.h"
31 #include "coff/internal.h"
32 #include "libcoff.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"
38 #include "coff/pe.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
53 const char *name;
54 bool found;
57 /* A node includes symbol name mapping to support redefine_sym. */
58 struct redefine_node
60 char *source;
61 char *target;
64 struct addsym_node
66 struct addsym_node *next;
67 char * symdef;
68 long symval;
69 flagword flags;
70 char * section;
71 const char * othersym;
74 typedef struct section_rename
76 const char * old_name;
77 const char * new_name;
78 flagword flags;
79 struct section_rename * next;
81 section_rename;
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 bool keep_section_symbols = false ;/* True if section symbols should be retained. */
95 static bool verbose; /* Print file and target names. */
96 static bool preserve_dates; /* Preserve input file timestamp. */
97 static int deterministic = -1; /* Enable deterministic archives. */
98 static int status = 0; /* Exit status. */
100 static bool merge_notes = false; /* Merge note sections. */
102 typedef struct merged_note_section
104 asection * sec; /* The section that is being merged. */
105 bfd_byte * contents;/* New contents of the section. */
106 bfd_size_type size; /* New size of the section. */
107 struct merged_note_section * next; /* Link to next merged note section. */
108 } merged_note_section;
110 enum strip_action
112 STRIP_UNDEF,
113 STRIP_NONE, /* Don't strip. */
114 STRIP_DEBUG, /* Strip all debugger symbols. */
115 STRIP_UNNEEDED, /* Strip unnecessary symbols. */
116 STRIP_NONDEBUG, /* Strip everything but debug info. */
117 STRIP_DWO, /* Strip all DWO info. */
118 STRIP_NONDWO, /* Strip everything but DWO info. */
119 STRIP_ALL /* Strip all symbols. */
122 /* Which symbols to remove. */
123 static enum strip_action strip_symbols = STRIP_UNDEF;
125 enum locals_action
127 LOCALS_UNDEF,
128 LOCALS_START_L, /* Discard locals starting with L. */
129 LOCALS_ALL /* Discard all locals. */
132 /* Which local symbols to remove. Overrides STRIP_ALL. */
133 static enum locals_action discard_locals;
135 /* Structure used to hold lists of sections and actions to take. */
136 struct section_list
138 struct section_list *next; /* Next section to change. */
139 const char *pattern; /* Section name pattern. */
140 bool used; /* Whether this entry was used. */
142 unsigned int context; /* What to do with matching sections. */
143 /* Flag bits used in the context field.
144 COPY and REMOVE are mutually exlusive.
145 SET and ALTER are mutually exclusive. */
146 #define SECTION_CONTEXT_REMOVE (1 << 0) /* Remove this section. */
147 #define SECTION_CONTEXT_COPY (1 << 1) /* Copy this section, delete all non-copied section. */
148 #define SECTION_CONTEXT_KEEP (1 << 2) /* Keep this section. */
149 #define SECTION_CONTEXT_SET_VMA (1 << 3) /* Set the sections' VMA address. */
150 #define SECTION_CONTEXT_ALTER_VMA (1 << 4) /* Increment or decrement the section's VMA address. */
151 #define SECTION_CONTEXT_SET_LMA (1 << 5) /* Set the sections' LMA address. */
152 #define SECTION_CONTEXT_ALTER_LMA (1 << 6) /* Increment or decrement the section's LMA address. */
153 #define SECTION_CONTEXT_SET_FLAGS (1 << 7) /* Set the section's flags. */
154 #define SECTION_CONTEXT_REMOVE_RELOCS (1 << 8) /* Remove relocations for this section. */
155 #define SECTION_CONTEXT_SET_ALIGNMENT (1 << 9) /* Set alignment for section. */
157 bfd_vma vma_val; /* Amount to change by or set to. */
158 bfd_vma lma_val; /* Amount to change by or set to. */
159 flagword flags; /* What to set the section flags to. */
160 unsigned int alignment; /* Alignment of output section. */
163 static struct section_list *change_sections;
165 /* TRUE if some sections are to be removed. */
166 static bool sections_removed;
168 /* TRUE if only some sections are to be copied. */
169 static bool sections_copied;
171 /* Changes to the start address. */
172 static bfd_vma change_start = 0;
173 static bool set_start_set = false;
174 static bfd_vma set_start;
176 /* Changes to section addresses. */
177 static bfd_vma change_section_address = 0;
179 /* Filling gaps between sections. */
180 static bool gap_fill_set = false;
181 static bfd_byte gap_fill = 0;
183 /* Pad to a given address. */
184 static bool pad_to_set = false;
185 static bfd_vma pad_to;
187 /* Use alternative machine code? */
188 static unsigned long use_alt_mach_code = 0;
190 /* Output BFD flags user wants to set or clear */
191 static flagword bfd_flags_to_set;
192 static flagword bfd_flags_to_clear;
194 /* List of sections to add. */
195 struct section_add
197 /* Next section to add. */
198 struct section_add *next;
199 /* Name of section to add. */
200 const char *name;
201 /* Name of file holding section contents. */
202 const char *filename;
203 /* Size of file. */
204 size_t size;
205 /* Contents of file. */
206 bfd_byte *contents;
207 /* BFD section, after it has been added. */
208 asection *section;
211 /* List of sections to add to the output BFD. */
212 static struct section_add *add_sections;
214 /* List of sections to update in the output BFD. */
215 static struct section_add *update_sections;
217 /* List of sections to dump from the output BFD. */
218 static struct section_add *dump_sections;
220 /* If non-NULL the argument to --add-gnu-debuglink.
221 This should be the filename to store in the .gnu_debuglink section. */
222 static const char * gnu_debuglink_filename = NULL;
224 /* Whether to convert debugging information. */
225 static bool convert_debugging = false;
227 /* Whether to compress/decompress DWARF debug sections. */
228 static enum
230 nothing = 0,
231 compress = 1 << 0,
232 compress_zlib = compress | 1 << 1,
233 compress_gnu_zlib = compress | 1 << 2,
234 compress_gabi_zlib = compress | 1 << 3,
235 compress_zstd = compress | 1 << 4,
236 decompress = 1 << 5
237 } do_debug_sections = nothing;
239 /* Whether to generate ELF common symbols with the STT_COMMON type. */
240 static enum bfd_link_elf_stt_common do_elf_stt_common = unchanged;
242 /* Whether to change the leading character in symbol names. */
243 static bool change_leading_char = false;
245 /* Whether to remove the leading character from global symbol names. */
246 static bool remove_leading_char = false;
248 /* Whether to permit wildcard in symbol comparison. */
249 static bool wildcard = false;
251 /* True if --localize-hidden is in effect. */
252 static bool localize_hidden = false;
254 /* List of symbols to strip, keep, localize, keep-global, weaken,
255 or redefine. */
256 static htab_t strip_specific_htab = NULL;
257 static htab_t strip_unneeded_htab = NULL;
258 static htab_t keep_specific_htab = NULL;
259 static htab_t localize_specific_htab = NULL;
260 static htab_t globalize_specific_htab = NULL;
261 static htab_t keepglobal_specific_htab = NULL;
262 static htab_t weaken_specific_htab = NULL;
263 static htab_t redefine_specific_htab = NULL;
264 static htab_t redefine_specific_reverse_htab = NULL;
265 static struct addsym_node *add_sym_list = NULL, **add_sym_tail = &add_sym_list;
266 static int add_symbols = 0;
268 static char *strip_specific_buffer = NULL;
269 static char *strip_unneeded_buffer = NULL;
270 static char *keep_specific_buffer = NULL;
271 static char *localize_specific_buffer = NULL;
272 static char *globalize_specific_buffer = NULL;
273 static char *keepglobal_specific_buffer = NULL;
274 static char *weaken_specific_buffer = NULL;
276 /* If this is TRUE, we weaken global symbols (set BSF_WEAK). */
277 static bool weaken = false;
279 /* If this is TRUE, we retain BSF_FILE symbols. */
280 static bool keep_file_symbols = false;
282 /* Prefix symbols/sections. */
283 static char *prefix_symbols_string = 0;
284 static char *prefix_sections_string = 0;
285 static char *prefix_alloc_sections_string = 0;
287 /* True if --extract-symbol was passed on the command line. */
288 static bool extract_symbol = false;
290 /* If `reverse_bytes' is nonzero, then reverse the order of every chunk
291 of <reverse_bytes> bytes within each output section. */
292 static int reverse_bytes = 0;
294 /* For Coff objects, we may want to allow or disallow long section names,
295 or preserve them where found in the inputs. Debug info relies on them. */
296 enum long_section_name_handling
298 DISABLE,
299 ENABLE,
300 KEEP
303 /* The default long section handling mode is to preserve them.
304 This is also the only behaviour for 'strip'. */
305 static enum long_section_name_handling long_section_names = KEEP;
307 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
308 enum command_line_switch
310 OPTION_ADD_SECTION=150,
311 OPTION_ADD_GNU_DEBUGLINK,
312 OPTION_ADD_SYMBOL,
313 OPTION_ALT_MACH_CODE,
314 OPTION_CHANGE_ADDRESSES,
315 OPTION_CHANGE_LEADING_CHAR,
316 OPTION_CHANGE_SECTION_ADDRESS,
317 OPTION_CHANGE_SECTION_LMA,
318 OPTION_CHANGE_SECTION_VMA,
319 OPTION_CHANGE_START,
320 OPTION_CHANGE_WARNINGS,
321 OPTION_COMPRESS_DEBUG_SECTIONS,
322 OPTION_DEBUGGING,
323 OPTION_DECOMPRESS_DEBUG_SECTIONS,
324 OPTION_DUMP_SECTION,
325 OPTION_ELF_STT_COMMON,
326 OPTION_EXTRACT_DWO,
327 OPTION_EXTRACT_SYMBOL,
328 OPTION_FILE_ALIGNMENT,
329 OPTION_FORMATS_INFO,
330 OPTION_GAP_FILL,
331 OPTION_GLOBALIZE_SYMBOL,
332 OPTION_GLOBALIZE_SYMBOLS,
333 OPTION_HEAP,
334 OPTION_IMAGE_BASE,
335 OPTION_IMPURE,
336 OPTION_INTERLEAVE_WIDTH,
337 OPTION_KEEPGLOBAL_SYMBOLS,
338 OPTION_KEEP_FILE_SYMBOLS,
339 OPTION_KEEP_SECTION,
340 OPTION_KEEP_SYMBOLS,
341 OPTION_KEEP_SECTION_SYMBOLS,
342 OPTION_LOCALIZE_HIDDEN,
343 OPTION_LOCALIZE_SYMBOLS,
344 OPTION_LONG_SECTION_NAMES,
345 OPTION_MERGE_NOTES,
346 OPTION_NO_MERGE_NOTES,
347 OPTION_NO_CHANGE_WARNINGS,
348 OPTION_ONLY_KEEP_DEBUG,
349 OPTION_PAD_TO,
350 OPTION_PREFIX_ALLOC_SECTIONS,
351 OPTION_PREFIX_SECTIONS,
352 OPTION_PREFIX_SYMBOLS,
353 OPTION_PURE,
354 OPTION_READONLY_TEXT,
355 OPTION_REDEFINE_SYM,
356 OPTION_REDEFINE_SYMS,
357 OPTION_REMOVE_LEADING_CHAR,
358 OPTION_REMOVE_RELOCS,
359 OPTION_RENAME_SECTION,
360 OPTION_REVERSE_BYTES,
361 OPTION_PE_SECTION_ALIGNMENT,
362 OPTION_SET_SECTION_FLAGS,
363 OPTION_SET_SECTION_ALIGNMENT,
364 OPTION_SET_START,
365 OPTION_SREC_FORCES3,
366 OPTION_SREC_LEN,
367 OPTION_STACK,
368 OPTION_STRIP_DWO,
369 OPTION_STRIP_SYMBOLS,
370 OPTION_STRIP_UNNEEDED,
371 OPTION_STRIP_UNNEEDED_SYMBOL,
372 OPTION_STRIP_UNNEEDED_SYMBOLS,
373 OPTION_SUBSYSTEM,
374 OPTION_UPDATE_SECTION,
375 OPTION_VERILOG_DATA_WIDTH,
376 OPTION_WEAKEN,
377 OPTION_WEAKEN_SYMBOLS,
378 OPTION_WRITABLE_TEXT
381 /* Options to handle if running as "strip". */
383 static struct option strip_options[] =
385 {"disable-deterministic-archives", no_argument, 0, 'U'},
386 {"discard-all", no_argument, 0, 'x'},
387 {"discard-locals", no_argument, 0, 'X'},
388 {"enable-deterministic-archives", no_argument, 0, 'D'},
389 {"format", required_argument, 0, 'F'}, /* Obsolete */
390 {"help", no_argument, 0, 'h'},
391 {"info", no_argument, 0, OPTION_FORMATS_INFO},
392 {"input-format", required_argument, 0, 'I'}, /* Obsolete */
393 {"input-target", required_argument, 0, 'I'},
394 {"keep-section-symbols", no_argument, 0, OPTION_KEEP_SECTION_SYMBOLS},
395 {"keep-file-symbols", no_argument, 0, OPTION_KEEP_FILE_SYMBOLS},
396 {"keep-section", required_argument, 0, OPTION_KEEP_SECTION},
397 {"keep-symbol", required_argument, 0, 'K'},
398 {"merge-notes", no_argument, 0, 'M'},
399 {"no-merge-notes", no_argument, 0, OPTION_NO_MERGE_NOTES},
400 {"only-keep-debug", no_argument, 0, OPTION_ONLY_KEEP_DEBUG},
401 {"output-file", required_argument, 0, 'o'},
402 {"output-format", required_argument, 0, 'O'}, /* Obsolete */
403 {"output-target", required_argument, 0, 'O'},
404 {"preserve-dates", no_argument, 0, 'p'},
405 {"remove-section", required_argument, 0, 'R'},
406 {"remove-relocations", required_argument, 0, OPTION_REMOVE_RELOCS},
407 {"strip-all", no_argument, 0, 's'},
408 {"strip-debug", no_argument, 0, 'S'},
409 {"strip-dwo", no_argument, 0, OPTION_STRIP_DWO},
410 {"strip-symbol", required_argument, 0, 'N'},
411 {"strip-unneeded", no_argument, 0, OPTION_STRIP_UNNEEDED},
412 {"target", required_argument, 0, 'F'},
413 {"verbose", no_argument, 0, 'v'},
414 {"version", no_argument, 0, 'V'},
415 {"wildcard", no_argument, 0, 'w'},
416 {0, no_argument, 0, 0}
419 /* Options to handle if running as "objcopy". */
421 static struct option copy_options[] =
423 {"add-gnu-debuglink", required_argument, 0, OPTION_ADD_GNU_DEBUGLINK},
424 {"add-section", required_argument, 0, OPTION_ADD_SECTION},
425 {"add-symbol", required_argument, 0, OPTION_ADD_SYMBOL},
426 {"adjust-section-vma", required_argument, 0, OPTION_CHANGE_SECTION_ADDRESS},
427 {"adjust-start", required_argument, 0, OPTION_CHANGE_START},
428 {"adjust-vma", required_argument, 0, OPTION_CHANGE_ADDRESSES},
429 {"adjust-warnings", no_argument, 0, OPTION_CHANGE_WARNINGS},
430 {"alt-machine-code", required_argument, 0, OPTION_ALT_MACH_CODE},
431 {"binary-architecture", required_argument, 0, 'B'},
432 {"byte", required_argument, 0, 'b'},
433 {"change-addresses", required_argument, 0, OPTION_CHANGE_ADDRESSES},
434 {"change-leading-char", no_argument, 0, OPTION_CHANGE_LEADING_CHAR},
435 {"change-section-address", required_argument, 0, OPTION_CHANGE_SECTION_ADDRESS},
436 {"change-section-lma", required_argument, 0, OPTION_CHANGE_SECTION_LMA},
437 {"change-section-vma", required_argument, 0, OPTION_CHANGE_SECTION_VMA},
438 {"change-start", required_argument, 0, OPTION_CHANGE_START},
439 {"change-warnings", no_argument, 0, OPTION_CHANGE_WARNINGS},
440 {"compress-debug-sections", optional_argument, 0, OPTION_COMPRESS_DEBUG_SECTIONS},
441 {"debugging", no_argument, 0, OPTION_DEBUGGING},
442 {"decompress-debug-sections", no_argument, 0, OPTION_DECOMPRESS_DEBUG_SECTIONS},
443 {"disable-deterministic-archives", no_argument, 0, 'U'},
444 {"discard-all", no_argument, 0, 'x'},
445 {"discard-locals", no_argument, 0, 'X'},
446 {"dump-section", required_argument, 0, OPTION_DUMP_SECTION},
447 {"elf-stt-common", required_argument, 0, OPTION_ELF_STT_COMMON},
448 {"enable-deterministic-archives", no_argument, 0, 'D'},
449 {"extract-dwo", no_argument, 0, OPTION_EXTRACT_DWO},
450 {"extract-symbol", no_argument, 0, OPTION_EXTRACT_SYMBOL},
451 {"file-alignment", required_argument, 0, OPTION_FILE_ALIGNMENT},
452 {"format", required_argument, 0, 'F'}, /* Obsolete */
453 {"gap-fill", required_argument, 0, OPTION_GAP_FILL},
454 {"globalize-symbol", required_argument, 0, OPTION_GLOBALIZE_SYMBOL},
455 {"globalize-symbols", required_argument, 0, OPTION_GLOBALIZE_SYMBOLS},
456 {"heap", required_argument, 0, OPTION_HEAP},
457 {"help", no_argument, 0, 'h'},
458 {"image-base", required_argument, 0 , OPTION_IMAGE_BASE},
459 {"impure", no_argument, 0, OPTION_IMPURE},
460 {"info", no_argument, 0, OPTION_FORMATS_INFO},
461 {"input-format", required_argument, 0, 'I'}, /* Obsolete */
462 {"input-target", required_argument, 0, 'I'},
463 {"interleave", optional_argument, 0, 'i'},
464 {"interleave-width", required_argument, 0, OPTION_INTERLEAVE_WIDTH},
465 {"keep-file-symbols", no_argument, 0, OPTION_KEEP_FILE_SYMBOLS},
466 {"keep-global-symbol", required_argument, 0, 'G'},
467 {"keep-global-symbols", required_argument, 0, OPTION_KEEPGLOBAL_SYMBOLS},
468 {"keep-section", required_argument, 0, OPTION_KEEP_SECTION},
469 {"keep-symbol", required_argument, 0, 'K'},
470 {"keep-symbols", required_argument, 0, OPTION_KEEP_SYMBOLS},
471 {"keep-section-symbols", required_argument, 0, OPTION_KEEP_SECTION_SYMBOLS},
472 {"localize-hidden", no_argument, 0, OPTION_LOCALIZE_HIDDEN},
473 {"localize-symbol", required_argument, 0, 'L'},
474 {"localize-symbols", required_argument, 0, OPTION_LOCALIZE_SYMBOLS},
475 {"long-section-names", required_argument, 0, OPTION_LONG_SECTION_NAMES},
476 {"merge-notes", no_argument, 0, 'M'},
477 {"no-merge-notes", no_argument, 0, OPTION_NO_MERGE_NOTES},
478 {"no-adjust-warnings", no_argument, 0, OPTION_NO_CHANGE_WARNINGS},
479 {"no-change-warnings", no_argument, 0, OPTION_NO_CHANGE_WARNINGS},
480 {"only-keep-debug", no_argument, 0, OPTION_ONLY_KEEP_DEBUG},
481 {"only-section", required_argument, 0, 'j'},
482 {"output-format", required_argument, 0, 'O'}, /* Obsolete */
483 {"output-target", required_argument, 0, 'O'},
484 {"pad-to", required_argument, 0, OPTION_PAD_TO},
485 {"prefix-alloc-sections", required_argument, 0, OPTION_PREFIX_ALLOC_SECTIONS},
486 {"prefix-sections", required_argument, 0, OPTION_PREFIX_SECTIONS},
487 {"prefix-symbols", required_argument, 0, OPTION_PREFIX_SYMBOLS},
488 {"preserve-dates", no_argument, 0, 'p'},
489 {"pure", no_argument, 0, OPTION_PURE},
490 {"readonly-text", no_argument, 0, OPTION_READONLY_TEXT},
491 {"redefine-sym", required_argument, 0, OPTION_REDEFINE_SYM},
492 {"redefine-syms", required_argument, 0, OPTION_REDEFINE_SYMS},
493 {"remove-leading-char", no_argument, 0, OPTION_REMOVE_LEADING_CHAR},
494 {"remove-section", required_argument, 0, 'R'},
495 {"remove-relocations", required_argument, 0, OPTION_REMOVE_RELOCS},
496 {"rename-section", required_argument, 0, OPTION_RENAME_SECTION},
497 {"reverse-bytes", required_argument, 0, OPTION_REVERSE_BYTES},
498 {"section-alignment", required_argument, 0, OPTION_PE_SECTION_ALIGNMENT},
499 {"set-section-flags", required_argument, 0, OPTION_SET_SECTION_FLAGS},
500 {"set-section-alignment", required_argument, 0, OPTION_SET_SECTION_ALIGNMENT},
501 {"set-start", required_argument, 0, OPTION_SET_START},
502 {"srec-forceS3", no_argument, 0, OPTION_SREC_FORCES3},
503 {"srec-len", required_argument, 0, OPTION_SREC_LEN},
504 {"stack", required_argument, 0, OPTION_STACK},
505 {"strip-all", no_argument, 0, 'S'},
506 {"strip-debug", no_argument, 0, 'g'},
507 {"strip-dwo", no_argument, 0, OPTION_STRIP_DWO},
508 {"strip-symbol", required_argument, 0, 'N'},
509 {"strip-symbols", required_argument, 0, OPTION_STRIP_SYMBOLS},
510 {"strip-unneeded", no_argument, 0, OPTION_STRIP_UNNEEDED},
511 {"strip-unneeded-symbol", required_argument, 0, OPTION_STRIP_UNNEEDED_SYMBOL},
512 {"strip-unneeded-symbols", required_argument, 0, OPTION_STRIP_UNNEEDED_SYMBOLS},
513 {"subsystem", required_argument, 0, OPTION_SUBSYSTEM},
514 {"target", required_argument, 0, 'F'},
515 {"update-section", required_argument, 0, OPTION_UPDATE_SECTION},
516 {"verbose", no_argument, 0, 'v'},
517 {"verilog-data-width", required_argument, 0, OPTION_VERILOG_DATA_WIDTH},
518 {"version", no_argument, 0, 'V'},
519 {"weaken", no_argument, 0, OPTION_WEAKEN},
520 {"weaken-symbol", required_argument, 0, 'W'},
521 {"weaken-symbols", required_argument, 0, OPTION_WEAKEN_SYMBOLS},
522 {"wildcard", no_argument, 0, 'w'},
523 {"writable-text", no_argument, 0, OPTION_WRITABLE_TEXT},
524 {0, no_argument, 0, 0}
527 /* IMPORTS */
528 extern char *program_name;
530 /* This flag distinguishes between strip and objcopy:
531 1 means this is 'strip'; 0 means this is 'objcopy'.
532 -1 means if we should use argv[0] to decide. */
533 extern int is_strip;
535 /* The maximum length of an S record. This variable is defined in srec.c
536 and can be modified by the --srec-len parameter. */
537 extern unsigned int _bfd_srec_len;
539 /* Restrict the generation of Srecords to type S3 only.
540 This variable is defined in bfd/srec.c and can be toggled
541 on by the --srec-forceS3 command line switch. */
542 extern bool _bfd_srec_forceS3;
544 /* Width of data in bytes for verilog output.
545 This variable is declared in bfd/verilog.c and can be modified by
546 the --verilog-data-width parameter. */
547 extern unsigned int VerilogDataWidth;
549 /* Forward declarations. */
550 static void setup_section (bfd *, asection *, void *);
551 static void setup_bfd_headers (bfd *, bfd *);
552 static void copy_relocations_in_section (bfd *, asection *, void *);
553 static void copy_section (bfd *, asection *, void *);
554 static void get_sections (bfd *, asection *, void *);
555 static int compare_section_lma (const void *, const void *);
556 static void mark_symbols_used_in_relocations (bfd *, asection *, void *);
557 static bool write_debugging_info (bfd *, void *, long *, asymbol ***);
558 static const char *lookup_sym_redefinition (const char *);
559 static const char *find_section_rename (const char *, flagword *);
561 ATTRIBUTE_NORETURN static void
562 copy_usage (FILE *stream, int exit_status)
564 fprintf (stream, _("Usage: %s [option(s)] in-file [out-file]\n"), program_name);
565 fprintf (stream, _(" Copies a binary file, possibly transforming it in the process\n"));
566 fprintf (stream, _(" The options are:\n"));
567 fprintf (stream, _("\
568 -I --input-target <bfdname> Assume input file is in format <bfdname>\n\
569 -O --output-target <bfdname> Create an output file in format <bfdname>\n\
570 -B --binary-architecture <arch> Set output arch, when input is arch-less\n\
571 -F --target <bfdname> Set both input and output format to <bfdname>\n\
572 --debugging Convert debugging information, if possible\n\
573 -p --preserve-dates Copy modified/access timestamps to the output\n"));
574 if (DEFAULT_AR_DETERMINISTIC)
575 fprintf (stream, _("\
576 -D --enable-deterministic-archives\n\
577 Produce deterministic output when stripping archives (default)\n\
578 -U --disable-deterministic-archives\n\
579 Disable -D behavior\n"));
580 else
581 fprintf (stream, _("\
582 -D --enable-deterministic-archives\n\
583 Produce deterministic output when stripping archives\n\
584 -U --disable-deterministic-archives\n\
585 Disable -D behavior (default)\n"));
586 fprintf (stream, _("\
587 -j --only-section <name> Only copy section <name> into the output\n\
588 --add-gnu-debuglink=<file> Add section .gnu_debuglink linking to <file>\n\
589 -R --remove-section <name> Remove section <name> from the output\n\
590 --remove-relocations <name> Remove relocations from section <name>\n\
591 -S --strip-all Remove all symbol and relocation information\n\
592 -g --strip-debug Remove all debugging symbols & sections\n\
593 --strip-dwo Remove all DWO sections\n\
594 --strip-unneeded Remove all symbols not needed by relocations\n\
595 -N --strip-symbol <name> Do not copy symbol <name>\n\
596 --strip-unneeded-symbol <name>\n\
597 Do not copy symbol <name> unless needed by\n\
598 relocations\n\
599 --only-keep-debug Strip everything but the debug information\n\
600 --extract-dwo Copy only DWO sections\n\
601 --extract-symbol Remove section contents but keep symbols\n\
602 --keep-section <name> Do not strip section <name>\n\
603 -K --keep-symbol <name> Do not strip symbol <name>\n\
604 --keep-section-symbols Do not strip section symbols\n\
605 --keep-file-symbols Do not strip file symbol(s)\n\
606 --localize-hidden Turn all ELF hidden symbols into locals\n\
607 -L --localize-symbol <name> Force symbol <name> to be marked as a local\n\
608 --globalize-symbol <name> Force symbol <name> to be marked as a global\n\
609 -G --keep-global-symbol <name> Localize all symbols except <name>\n\
610 -W --weaken-symbol <name> Force symbol <name> to be marked as a weak\n\
611 --weaken Force all global symbols to be marked as weak\n\
612 -w --wildcard Permit wildcard in symbol comparison\n\
613 -x --discard-all Remove all non-global symbols\n\
614 -X --discard-locals Remove any compiler-generated symbols\n\
615 -i --interleave[=<number>] Only copy N out of every <number> bytes\n\
616 --interleave-width <number> Set N for --interleave\n\
617 -b --byte <num> Select byte <num> in every interleaved block\n\
618 --gap-fill <val> Fill gaps between sections with <val>\n\
619 --pad-to <addr> Pad the last section up to address <addr>\n\
620 --set-start <addr> Set the start address to <addr>\n\
621 {--change-start|--adjust-start} <incr>\n\
622 Add <incr> to the start address\n\
623 {--change-addresses|--adjust-vma} <incr>\n\
624 Add <incr> to LMA, VMA and start addresses\n\
625 {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>\n\
626 Change LMA and VMA of section <name> by <val>\n\
627 --change-section-lma <name>{=|+|-}<val>\n\
628 Change the LMA of section <name> by <val>\n\
629 --change-section-vma <name>{=|+|-}<val>\n\
630 Change the VMA of section <name> by <val>\n\
631 {--[no-]change-warnings|--[no-]adjust-warnings}\n\
632 Warn if a named section does not exist\n\
633 --set-section-flags <name>=<flags>\n\
634 Set section <name>'s properties to <flags>\n\
635 --set-section-alignment <name>=<align>\n\
636 Set section <name>'s alignment to <align> bytes\n\
637 --add-section <name>=<file> Add section <name> found in <file> to output\n\
638 --update-section <name>=<file>\n\
639 Update contents of section <name> with\n\
640 contents found in <file>\n\
641 --dump-section <name>=<file> Dump the contents of section <name> into <file>\n\
642 --rename-section <old>=<new>[,<flags>] Rename section <old> to <new>\n\
643 --long-section-names {enable|disable|keep}\n\
644 Handle long section names in Coff objects.\n\
645 --change-leading-char Force output format's leading character style\n\
646 --remove-leading-char Remove leading character from global symbols\n\
647 --reverse-bytes=<num> Reverse <num> bytes at a time, in output sections with content\n\
648 --redefine-sym <old>=<new> Redefine symbol name <old> to <new>\n\
649 --redefine-syms <file> --redefine-sym for all symbol pairs \n\
650 listed in <file>\n\
651 --srec-len <number> Restrict the length of generated Srecords\n\
652 --srec-forceS3 Restrict the type of generated Srecords to S3\n\
653 --strip-symbols <file> -N for all symbols listed in <file>\n\
654 --strip-unneeded-symbols <file>\n\
655 --strip-unneeded-symbol for all symbols listed\n\
656 in <file>\n\
657 --keep-symbols <file> -K for all symbols listed in <file>\n\
658 --localize-symbols <file> -L for all symbols listed in <file>\n\
659 --globalize-symbols <file> --globalize-symbol for all in <file>\n\
660 --keep-global-symbols <file> -G for all symbols listed in <file>\n\
661 --weaken-symbols <file> -W for all symbols listed in <file>\n\
662 --add-symbol <name>=[<section>:]<value>[,<flags>] Add a symbol\n\
663 --alt-machine-code <index> Use the target's <index>'th alternative machine\n\
664 --writable-text Mark the output text as writable\n\
665 --readonly-text Make the output text write protected\n\
666 --pure Mark the output file as demand paged\n\
667 --impure Mark the output file as impure\n\
668 --prefix-symbols <prefix> Add <prefix> to start of every symbol name\n\
669 --prefix-sections <prefix> Add <prefix> to start of every section name\n\
670 --prefix-alloc-sections <prefix>\n\
671 Add <prefix> to start of every allocatable\n\
672 section name\n\
673 --file-alignment <num> Set PE file alignment to <num>\n\
674 --heap <reserve>[,<commit>] Set PE reserve/commit heap to <reserve>/\n\
675 <commit>\n\
676 --image-base <address> Set PE image base to <address>\n\
677 --section-alignment <num> Set PE section alignment to <num>\n\
678 --stack <reserve>[,<commit>] Set PE reserve/commit stack to <reserve>/\n\
679 <commit>\n\
680 --subsystem <name>[:<version>]\n\
681 Set PE subsystem to <name> [& <version>]\n\
682 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi|zstd}]\n\
683 Compress DWARF debug sections\n\
684 --decompress-debug-sections Decompress DWARF debug sections using zlib\n\
685 --elf-stt-common=[yes|no] Generate ELF common symbols with STT_COMMON\n\
686 type\n\
687 --verilog-data-width <number> Specifies data width, in bytes, for verilog output\n\
688 -M --merge-notes Remove redundant entries in note sections\n\
689 --no-merge-notes Do not attempt to remove redundant notes (default)\n\
690 -v --verbose List all object files modified\n\
691 @<file> Read options from <file>\n\
692 -V --version Display this program's version number\n\
693 -h --help Display this output\n\
694 --info List object formats & architectures supported\n\
695 "));
696 list_supported_targets (program_name, stream);
697 if (REPORT_BUGS_TO[0] && exit_status == 0)
698 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
699 exit (exit_status);
702 ATTRIBUTE_NORETURN static void
703 strip_usage (FILE *stream, int exit_status)
705 fprintf (stream, _("Usage: %s <option(s)> in-file(s)\n"), program_name);
706 fprintf (stream, _(" Removes symbols and sections from files\n"));
707 fprintf (stream, _(" The options are:\n"));
708 fprintf (stream, _("\
709 -I --input-target=<bfdname> Assume input file is in format <bfdname>\n\
710 -O --output-target=<bfdname> Create an output file in format <bfdname>\n\
711 -F --target=<bfdname> Set both input and output format to <bfdname>\n\
712 -p --preserve-dates Copy modified/access timestamps to the output\n\
713 "));
714 if (DEFAULT_AR_DETERMINISTIC)
715 fprintf (stream, _("\
716 -D --enable-deterministic-archives\n\
717 Produce deterministic output when stripping archives (default)\n\
718 -U --disable-deterministic-archives\n\
719 Disable -D behavior\n"));
720 else
721 fprintf (stream, _("\
722 -D --enable-deterministic-archives\n\
723 Produce deterministic output when stripping archives\n\
724 -U --disable-deterministic-archives\n\
725 Disable -D behavior (default)\n"));
726 fprintf (stream, _("\
727 -R --remove-section=<name> Also remove section <name> from the output\n\
728 --remove-relocations <name> Remove relocations from section <name>\n\
729 -s --strip-all Remove all symbol and relocation information\n\
730 -g -S -d --strip-debug Remove all debugging symbols & sections\n\
731 --strip-dwo Remove all DWO sections\n\
732 --strip-unneeded Remove all symbols not needed by relocations\n\
733 --only-keep-debug Strip everything but the debug information\n\
734 -M --merge-notes Remove redundant entries in note sections (default)\n\
735 --no-merge-notes Do not attempt to remove redundant notes\n\
736 -N --strip-symbol=<name> Do not copy symbol <name>\n\
737 --keep-section=<name> Do not strip section <name>\n\
738 -K --keep-symbol=<name> Do not strip symbol <name>\n\
739 --keep-section-symbols Do not strip section symbols\n\
740 --keep-file-symbols Do not strip file symbol(s)\n\
741 -w --wildcard Permit wildcard in symbol comparison\n\
742 -x --discard-all Remove all non-global symbols\n\
743 -X --discard-locals Remove any compiler-generated symbols\n\
744 -v --verbose List all object files modified\n\
745 -V --version Display this program's version number\n\
746 -h --help Display this output\n\
747 --info List object formats & architectures supported\n\
748 -o <file> Place stripped output into <file>\n\
749 "));
751 list_supported_targets (program_name, stream);
752 if (REPORT_BUGS_TO[0] && exit_status == 0)
753 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
754 exit (exit_status);
757 /* Parse section flags into a flagword, with a fatal error if the
758 string can't be parsed. */
760 static flagword
761 parse_flags (const char *s)
763 flagword ret;
764 const char *snext;
765 int len;
767 ret = SEC_NO_FLAGS;
771 snext = strchr (s, ',');
772 if (snext == NULL)
773 len = strlen (s);
774 else
776 len = snext - s;
777 ++snext;
780 if (0) ;
781 #define PARSE_FLAG(fname,fval) \
782 else if (strncasecmp (fname, s, len) == 0) ret |= fval
783 PARSE_FLAG ("alloc", SEC_ALLOC);
784 PARSE_FLAG ("load", SEC_LOAD);
785 PARSE_FLAG ("noload", SEC_NEVER_LOAD);
786 PARSE_FLAG ("readonly", SEC_READONLY);
787 PARSE_FLAG ("debug", SEC_DEBUGGING);
788 PARSE_FLAG ("code", SEC_CODE);
789 PARSE_FLAG ("data", SEC_DATA);
790 PARSE_FLAG ("rom", SEC_ROM);
791 PARSE_FLAG ("exclude", SEC_EXCLUDE);
792 PARSE_FLAG ("share", SEC_COFF_SHARED);
793 PARSE_FLAG ("contents", SEC_HAS_CONTENTS);
794 PARSE_FLAG ("merge", SEC_MERGE);
795 PARSE_FLAG ("strings", SEC_STRINGS);
796 #undef PARSE_FLAG
797 else
799 char *copy;
801 copy = (char *) xmalloc (len + 1);
802 strncpy (copy, s, len);
803 copy[len] = '\0';
804 non_fatal (_("unrecognized section flag `%s'"), copy);
805 fatal (_("supported flags: %s"),
806 "alloc, load, noload, readonly, debug, code, data, rom, exclude, share, contents, merge, strings");
809 s = snext;
811 while (s != NULL);
813 return ret;
816 /* Parse symbol flags into a flagword, with a fatal error if the
817 string can't be parsed. */
819 static flagword
820 parse_symflags (const char *s, const char **other)
822 flagword ret;
823 const char *snext;
824 size_t len;
826 ret = BSF_NO_FLAGS;
830 snext = strchr (s, ',');
831 if (snext == NULL)
832 len = strlen (s);
833 else
835 len = snext - s;
836 ++snext;
839 #define PARSE_FLAG(fname, fval) \
840 else if (len == sizeof fname - 1 \
841 && strncasecmp (fname, s, len) == 0) \
842 ret |= fval
844 #define PARSE_OTHER(fname, fval) \
845 else if (len >= sizeof fname \
846 && strncasecmp (fname, s, sizeof fname - 1) == 0) \
847 fval = xstrndup (s + sizeof fname - 1, len - sizeof fname + 1)
849 if (0) ;
850 PARSE_FLAG ("local", BSF_LOCAL);
851 PARSE_FLAG ("global", BSF_GLOBAL);
852 PARSE_FLAG ("export", BSF_EXPORT);
853 PARSE_FLAG ("debug", BSF_DEBUGGING);
854 PARSE_FLAG ("function", BSF_FUNCTION);
855 PARSE_FLAG ("weak", BSF_WEAK);
856 PARSE_FLAG ("section", BSF_SECTION_SYM);
857 PARSE_FLAG ("constructor", BSF_CONSTRUCTOR);
858 PARSE_FLAG ("warning", BSF_WARNING);
859 PARSE_FLAG ("indirect", BSF_INDIRECT);
860 PARSE_FLAG ("file", BSF_FILE);
861 PARSE_FLAG ("object", BSF_OBJECT);
862 PARSE_FLAG ("synthetic", BSF_SYNTHETIC);
863 PARSE_FLAG ("indirect-function", BSF_GNU_INDIRECT_FUNCTION | BSF_FUNCTION);
864 PARSE_FLAG ("unique-object", BSF_GNU_UNIQUE | BSF_OBJECT);
865 PARSE_OTHER ("before=", *other);
867 #undef PARSE_FLAG
868 #undef PARSE_OTHER
869 else
871 char *copy;
873 copy = (char *) xmalloc (len + 1);
874 strncpy (copy, s, len);
875 copy[len] = '\0';
876 non_fatal (_("unrecognized symbol flag `%s'"), copy);
877 fatal (_("supported flags: %s"),
878 "local, global, export, debug, function, weak, section, "
879 "constructor, warning, indirect, file, object, synthetic, "
880 "indirect-function, unique-object, before=<othersym>");
883 s = snext;
885 while (s != NULL);
887 return ret;
890 /* Find and optionally add an entry in the change_sections list.
892 We need to be careful in how we match section names because of the support
893 for wildcard characters. For example suppose that the user has invoked
894 objcopy like this:
896 --set-section-flags .debug_*=debug
897 --set-section-flags .debug_str=readonly,debug
898 --change-section-address .debug_*ranges=0x1000
900 With the idea that all debug sections will receive the DEBUG flag, the
901 .debug_str section will also receive the READONLY flag and the
902 .debug_ranges and .debug_aranges sections will have their address set to
903 0x1000. (This may not make much sense, but it is just an example).
905 When adding the section name patterns to the section list we need to make
906 sure that previous entries do not match with the new entry, unless the
907 match is exact. (In which case we assume that the user is overriding
908 the previous entry with the new context).
910 When matching real section names to the section list we make use of the
911 wildcard characters, but we must do so in context. Eg if we are setting
912 section addresses then we match for .debug_ranges but not for .debug_info.
914 Finally, if ADD is false and we do find a match, we mark the section list
915 entry as used. */
917 static struct section_list *
918 find_section_list (const char *name, bool add, unsigned int context)
920 struct section_list *p, *match = NULL;
922 /* assert ((context & ((1 << 7) - 1)) != 0); */
924 for (p = change_sections; p != NULL; p = p->next)
926 if (add)
928 if (strcmp (p->pattern, name) == 0)
930 /* Check for context conflicts. */
931 if (((p->context & SECTION_CONTEXT_REMOVE)
932 && (context & SECTION_CONTEXT_COPY))
933 || ((context & SECTION_CONTEXT_REMOVE)
934 && (p->context & SECTION_CONTEXT_COPY)))
935 fatal (_("error: %s both copied and removed"), name);
937 if (((p->context & SECTION_CONTEXT_SET_VMA)
938 && (context & SECTION_CONTEXT_ALTER_VMA))
939 || ((context & SECTION_CONTEXT_SET_VMA)
940 && (context & SECTION_CONTEXT_ALTER_VMA)))
941 fatal (_("error: %s both sets and alters VMA"), name);
943 if (((p->context & SECTION_CONTEXT_SET_LMA)
944 && (context & SECTION_CONTEXT_ALTER_LMA))
945 || ((context & SECTION_CONTEXT_SET_LMA)
946 && (context & SECTION_CONTEXT_ALTER_LMA)))
947 fatal (_("error: %s both sets and alters LMA"), name);
949 /* Extend the context. */
950 p->context |= context;
951 return p;
954 /* If we are not adding a new name/pattern then
955 only check for a match if the context applies. */
956 else if (p->context & context)
958 /* We could check for the presence of wildchar characters
959 first and choose between calling strcmp and fnmatch,
960 but is that really worth it ? */
961 if (p->pattern [0] == '!')
963 if (fnmatch (p->pattern + 1, name, 0) == 0)
965 p->used = true;
966 return NULL;
969 else
971 if (fnmatch (p->pattern, name, 0) == 0)
973 if (match == NULL)
974 match = p;
980 if (! add)
982 if (match != NULL)
983 match->used = true;
984 return match;
987 p = (struct section_list *) xmalloc (sizeof (struct section_list));
988 p->pattern = name;
989 p->used = false;
990 p->context = context;
991 p->vma_val = 0;
992 p->lma_val = 0;
993 p->flags = 0;
994 p->alignment = 0;
995 p->next = change_sections;
996 change_sections = p;
998 return p;
1001 /* S1 is the entry node already in the table, S2 is the key node. */
1003 static int
1004 eq_string_redefnode (const void *s1, const void *s2)
1006 struct redefine_node *node1 = (struct redefine_node *) s1;
1007 struct redefine_node *node2 = (struct redefine_node *) s2;
1008 return !strcmp ((const char *) node1->source, (const char *) node2->source);
1011 /* P is redefine node. Hash value is generated from its "source" filed. */
1013 static hashval_t
1014 htab_hash_redefnode (const void *p)
1016 struct redefine_node *redefnode = (struct redefine_node *) p;
1017 return htab_hash_string (redefnode->source);
1020 /* Create hashtab used for redefine node. */
1022 static htab_t
1023 create_symbol2redef_htab (void)
1025 return htab_create_alloc (16, htab_hash_redefnode, eq_string_redefnode, NULL,
1026 xcalloc, free);
1029 static htab_t
1030 create_symbol_htab (void)
1032 return htab_create_alloc (16, htab_hash_string, htab_eq_string, NULL,
1033 xcalloc, free);
1036 static void
1037 create_symbol_htabs (void)
1039 strip_specific_htab = create_symbol_htab ();
1040 strip_unneeded_htab = create_symbol_htab ();
1041 keep_specific_htab = create_symbol_htab ();
1042 localize_specific_htab = create_symbol_htab ();
1043 globalize_specific_htab = create_symbol_htab ();
1044 keepglobal_specific_htab = create_symbol_htab ();
1045 weaken_specific_htab = create_symbol_htab ();
1046 redefine_specific_htab = create_symbol2redef_htab ();
1047 /* As there is no bidirectional hash table in libiberty, need a reverse table
1048 to check duplicated target string. */
1049 redefine_specific_reverse_htab = create_symbol_htab ();
1052 static void
1053 delete_symbol_htabs (void)
1055 htab_delete (strip_specific_htab);
1056 htab_delete (strip_unneeded_htab);
1057 htab_delete (keep_specific_htab);
1058 htab_delete (localize_specific_htab);
1059 htab_delete (globalize_specific_htab);
1060 htab_delete (keepglobal_specific_htab);
1061 htab_delete (weaken_specific_htab);
1062 htab_delete (redefine_specific_htab);
1063 htab_delete (redefine_specific_reverse_htab);
1066 /* Add a symbol to strip_specific_list. */
1068 static void
1069 add_specific_symbol (const char *name, htab_t htab)
1071 *htab_find_slot (htab, name, INSERT) = (char *) name;
1074 /* Like add_specific_symbol, but the element type is void *. */
1076 static void
1077 add_specific_symbol_node (const void *node, htab_t htab)
1079 *htab_find_slot (htab, node, INSERT) = (void *) node;
1082 /* Add symbols listed in `filename' to strip_specific_list. */
1084 #define IS_WHITESPACE(c) ((c) == ' ' || (c) == '\t')
1085 #define IS_LINE_TERMINATOR(c) ((c) == '\n' || (c) == '\r' || (c) == '\0')
1087 static void
1088 add_specific_symbols (const char *filename, htab_t htab, char **buffer_p)
1090 off_t size;
1091 FILE * f;
1092 char * line;
1093 char * buffer;
1094 unsigned int line_count;
1096 size = get_file_size (filename);
1097 if (size == 0)
1099 status = 1;
1100 return;
1103 buffer = (char *) xmalloc (size + 2);
1104 f = fopen (filename, FOPEN_RT);
1105 if (f == NULL)
1106 fatal (_("cannot open '%s': %s"), filename, strerror (errno));
1108 if (fread (buffer, 1, size, f) == 0 || ferror (f))
1109 fatal (_("%s: fread failed"), filename);
1111 fclose (f);
1112 buffer [size] = '\n';
1113 buffer [size + 1] = '\0';
1115 line_count = 1;
1117 for (line = buffer; * line != '\0'; line ++)
1119 char * eol;
1120 char * name;
1121 char * name_end;
1122 int finished = false;
1124 for (eol = line;; eol ++)
1126 switch (* eol)
1128 case '\n':
1129 * eol = '\0';
1130 /* Cope with \n\r. */
1131 if (eol[1] == '\r')
1132 ++ eol;
1133 finished = true;
1134 break;
1136 case '\r':
1137 * eol = '\0';
1138 /* Cope with \r\n. */
1139 if (eol[1] == '\n')
1140 ++ eol;
1141 finished = true;
1142 break;
1144 case 0:
1145 finished = true;
1146 break;
1148 case '#':
1149 /* Line comment, Terminate the line here, in case a
1150 name is present and then allow the rest of the
1151 loop to find the real end of the line. */
1152 * eol = '\0';
1153 break;
1155 default:
1156 break;
1159 if (finished)
1160 break;
1163 /* A name may now exist somewhere between 'line' and 'eol'.
1164 Strip off leading whitespace and trailing whitespace,
1165 then add it to the list. */
1166 for (name = line; IS_WHITESPACE (* name); name ++)
1168 for (name_end = name;
1169 (! IS_WHITESPACE (* name_end))
1170 && (! IS_LINE_TERMINATOR (* name_end));
1171 name_end ++)
1174 if (! IS_LINE_TERMINATOR (* name_end))
1176 char * extra;
1178 for (extra = name_end + 1; IS_WHITESPACE (* extra); extra ++)
1181 if (! IS_LINE_TERMINATOR (* extra))
1182 non_fatal (_("%s:%d: Ignoring rubbish found on this line"),
1183 filename, line_count);
1186 * name_end = '\0';
1188 if (name_end > name)
1189 add_specific_symbol (name, htab);
1191 /* Advance line pointer to end of line. The 'eol ++' in the for
1192 loop above will then advance us to the start of the next line. */
1193 line = eol;
1194 line_count ++;
1197 /* Do not free the buffer. Parts of it will have been referenced
1198 in the calls to add_specific_symbol. */
1199 *buffer_p = buffer;
1202 /* See whether a symbol should be stripped or kept
1203 based on strip_specific_list and keep_symbols. */
1205 static int
1206 is_specified_symbol_predicate (void **slot, void *data)
1208 struct is_specified_symbol_predicate_data *d =
1209 (struct is_specified_symbol_predicate_data *) data;
1210 const char *slot_name = (char *) *slot;
1212 if (*slot_name != '!')
1214 if (! fnmatch (slot_name, d->name, 0))
1216 d->found = true;
1217 /* Continue traversal, there might be a non-match rule. */
1218 return 1;
1221 else
1223 if (! fnmatch (slot_name + 1, d->name, 0))
1225 d->found = false;
1226 /* Stop traversal. */
1227 return 0;
1231 /* Continue traversal. */
1232 return 1;
1235 static bool
1236 is_specified_symbol (const char *name, htab_t htab)
1238 if (wildcard)
1240 struct is_specified_symbol_predicate_data data;
1242 data.name = name;
1243 data.found = false;
1245 htab_traverse (htab, is_specified_symbol_predicate, &data);
1247 return data.found;
1250 return htab_find (htab, name) != NULL;
1253 /* Return a pointer to the symbol used as a signature for GROUP. */
1255 static asymbol *
1256 group_signature (asection *group)
1258 bfd *abfd = group->owner;
1259 Elf_Internal_Shdr *ghdr;
1261 /* PR 20089: An earlier error may have prevented us from loading the symbol table. */
1262 if (isympp == NULL)
1263 return NULL;
1265 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
1266 return NULL;
1268 ghdr = &elf_section_data (group)->this_hdr;
1269 if (ghdr->sh_link == elf_onesymtab (abfd))
1271 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1272 Elf_Internal_Shdr *symhdr = &elf_symtab_hdr (abfd);
1274 if (ghdr->sh_info > 0
1275 && ghdr->sh_info < symhdr->sh_size / bed->s->sizeof_sym)
1276 return isympp[ghdr->sh_info - 1];
1278 return NULL;
1281 /* Return TRUE if the section is a DWO section. */
1283 static bool
1284 is_dwo_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1286 const char *name;
1287 int len;
1289 if (sec == NULL || (name = bfd_section_name (sec)) == NULL)
1290 return false;
1292 len = strlen (name);
1293 if (len < 5)
1294 return false;
1296 return startswith (name + len - 4, ".dwo");
1299 /* Return TRUE if section SEC is in the update list. */
1301 static bool
1302 is_update_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1304 if (update_sections != NULL)
1306 struct section_add *pupdate;
1308 for (pupdate = update_sections;
1309 pupdate != NULL;
1310 pupdate = pupdate->next)
1312 if (strcmp (sec->name, pupdate->name) == 0)
1313 return true;
1317 return false;
1320 static bool
1321 is_mergeable_note_section (bfd * abfd, asection * sec)
1323 if (merge_notes
1324 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
1325 && elf_section_data (sec)->this_hdr.sh_type == SHT_NOTE
1326 /* FIXME: We currently only support merging GNU_BUILD_NOTEs.
1327 We should add support for more note types. */
1328 && (startswith (sec->name, GNU_BUILD_ATTRS_SECTION_NAME)))
1329 return true;
1331 return false;
1334 /* See if a non-group section is being removed. */
1336 static bool
1337 is_strip_section_1 (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1339 if (find_section_list (bfd_section_name (sec), false, SECTION_CONTEXT_KEEP)
1340 != NULL)
1341 return false;
1343 if (sections_removed || sections_copied)
1345 struct section_list *p;
1346 struct section_list *q;
1348 p = find_section_list (bfd_section_name (sec), false,
1349 SECTION_CONTEXT_REMOVE);
1350 q = find_section_list (bfd_section_name (sec), false,
1351 SECTION_CONTEXT_COPY);
1353 if (p && q)
1354 fatal (_("error: section %s matches both remove and copy options"),
1355 bfd_section_name (sec));
1356 if (p && is_update_section (abfd, sec))
1357 fatal (_("error: section %s matches both update and remove options"),
1358 bfd_section_name (sec));
1360 if (p != NULL)
1361 return true;
1362 if (sections_copied && q == NULL)
1363 return true;
1366 if ((bfd_section_flags (sec) & SEC_DEBUGGING) != 0)
1368 if (strip_symbols == STRIP_DEBUG
1369 || strip_symbols == STRIP_UNNEEDED
1370 || strip_symbols == STRIP_ALL
1371 || discard_locals == LOCALS_ALL
1372 || convert_debugging)
1374 /* By default we don't want to strip .reloc section.
1375 This section has for pe-coff special meaning. See
1376 pe-dll.c file in ld, and peXXigen.c in bfd for details.
1377 Similarly we do not want to strip debuglink sections. */
1378 const char * kept_sections[] =
1380 ".reloc",
1381 ".gnu_debuglink",
1382 ".gnu_debugaltlink"
1384 int i;
1386 for (i = ARRAY_SIZE (kept_sections);i--;)
1387 if (strcmp (bfd_section_name (sec), kept_sections[i]) == 0)
1388 break;
1389 if (i == -1)
1390 return true;
1393 if (strip_symbols == STRIP_DWO)
1394 return is_dwo_section (abfd, sec);
1396 if (strip_symbols == STRIP_NONDEBUG)
1397 return false;
1400 if (strip_symbols == STRIP_NONDWO)
1401 return !is_dwo_section (abfd, sec);
1403 return false;
1406 /* See if a section is being removed. */
1408 static bool
1409 is_strip_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1411 if (is_strip_section_1 (abfd, sec))
1412 return true;
1414 if ((bfd_section_flags (sec) & SEC_GROUP) != 0)
1416 asymbol *gsym;
1417 const char *gname;
1418 asection *elt, *first;
1420 gsym = group_signature (sec);
1421 /* Strip groups without a valid signature. */
1422 if (gsym == NULL)
1423 return true;
1425 /* PR binutils/3181
1426 If we are going to strip the group signature symbol, then
1427 strip the group section too. */
1428 gname = gsym->name;
1429 if ((strip_symbols == STRIP_ALL
1430 && !is_specified_symbol (gname, keep_specific_htab))
1431 || is_specified_symbol (gname, strip_specific_htab))
1432 return true;
1434 /* Remove the group section if all members are removed. */
1435 first = elt = elf_next_in_group (sec);
1436 while (elt != NULL)
1438 if (!is_strip_section_1 (abfd, elt))
1439 return false;
1440 elt = elf_next_in_group (elt);
1441 if (elt == first)
1442 break;
1445 return true;
1448 return false;
1451 static bool
1452 is_nondebug_keep_contents_section (bfd *ibfd, asection *isection)
1454 /* Always keep ELF note sections. */
1455 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
1456 return elf_section_type (isection) == SHT_NOTE;
1458 /* Always keep the .buildid section for PE/COFF.
1460 Strictly, this should be written "always keep the section storing the debug
1461 directory", but that may be the .text section for objects produced by some
1462 tools, which it is not sensible to keep. */
1463 if (bfd_get_flavour (ibfd) == bfd_target_coff_flavour)
1464 return strcmp (bfd_section_name (isection), ".buildid") == 0;
1466 return false;
1469 /* Return true if SYM is a hidden symbol. */
1471 static bool
1472 is_hidden_symbol (asymbol *sym)
1474 elf_symbol_type *elf_sym;
1476 elf_sym = elf_symbol_from (sym);
1477 if (elf_sym != NULL)
1478 switch (ELF_ST_VISIBILITY (elf_sym->internal_elf_sym.st_other))
1480 case STV_HIDDEN:
1481 case STV_INTERNAL:
1482 return true;
1484 return false;
1487 /* Empty name is hopefully never a valid symbol name. */
1488 static const char * empty_name = "";
1490 static bool
1491 need_sym_before (struct addsym_node **node, const char *sym)
1493 int count;
1494 struct addsym_node *ptr = add_sym_list;
1496 /* 'othersym' symbols are at the front of the list. */
1497 for (count = 0; count < add_symbols; count++)
1499 if (!ptr->othersym)
1500 break;
1501 if (ptr->othersym == empty_name)
1502 continue;
1503 else if (strcmp (ptr->othersym, sym) == 0)
1505 free ((char *) ptr->othersym);
1506 ptr->othersym = empty_name;
1507 *node = ptr;
1508 return true;
1510 ptr = ptr->next;
1512 return false;
1515 static asymbol *
1516 create_new_symbol (struct addsym_node *ptr, bfd *obfd)
1518 asymbol *sym = bfd_make_empty_symbol (obfd);
1520 bfd_set_asymbol_name (sym, ptr->symdef);
1521 sym->value = ptr->symval;
1522 sym->flags = ptr->flags;
1523 if (ptr->section)
1525 asection *sec = bfd_get_section_by_name (obfd, ptr->section);
1526 if (!sec)
1527 fatal (_("Section %s not found"), ptr->section);
1528 sym->section = sec;
1530 else
1531 sym->section = bfd_abs_section_ptr;
1532 return sym;
1535 /* Choose which symbol entries to copy; put the result in OSYMS.
1536 We don't copy in place, because that confuses the relocs.
1537 Return the number of symbols to print. */
1539 static unsigned int
1540 filter_symbols (bfd *abfd, bfd *obfd, asymbol **osyms,
1541 asymbol **isyms, long symcount)
1543 asymbol **from = isyms, **to = osyms;
1544 long src_count = 0, dst_count = 0;
1545 int relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
1547 for (; src_count < symcount; src_count++)
1549 asymbol *sym = from[src_count];
1550 flagword flags = sym->flags;
1551 char *name = (char *) bfd_asymbol_name (sym);
1552 bool keep;
1553 bool used_in_reloc = false;
1554 bool undefined;
1555 bool rem_leading_char;
1556 bool add_leading_char;
1558 undefined = bfd_is_und_section (bfd_asymbol_section (sym));
1560 if (add_sym_list)
1562 struct addsym_node *ptr;
1564 if (need_sym_before (&ptr, name))
1565 to[dst_count++] = create_new_symbol (ptr, obfd);
1568 if (htab_elements (redefine_specific_htab) || section_rename_list)
1570 char *new_name;
1572 if (name != NULL
1573 && name[0] == '_'
1574 && name[1] == '_'
1575 && strcmp (name + (name[2] == '_'), "__gnu_lto_slim") == 0)
1577 fatal (_("redefining symbols does not work on LTO-compiled object files"));
1580 new_name = (char *) lookup_sym_redefinition (name);
1581 if (new_name == name
1582 && (flags & BSF_SECTION_SYM) != 0)
1583 new_name = (char *) find_section_rename (name, NULL);
1584 bfd_set_asymbol_name (sym, new_name);
1585 name = new_name;
1588 /* Check if we will remove the current leading character. */
1589 rem_leading_char =
1590 (name[0] != '\0'
1591 && name[0] == bfd_get_symbol_leading_char (abfd)
1592 && (change_leading_char
1593 || (remove_leading_char
1594 && ((flags & (BSF_GLOBAL | BSF_WEAK)) != 0
1595 || undefined
1596 || bfd_is_com_section (bfd_asymbol_section (sym))))));
1598 /* Check if we will add a new leading character. */
1599 add_leading_char =
1600 change_leading_char
1601 && (bfd_get_symbol_leading_char (obfd) != '\0')
1602 && (bfd_get_symbol_leading_char (abfd) == '\0'
1603 || (name[0] == bfd_get_symbol_leading_char (abfd)));
1605 /* Short circuit for change_leading_char if we can do it in-place. */
1606 if (rem_leading_char && add_leading_char && !prefix_symbols_string)
1608 name[0] = bfd_get_symbol_leading_char (obfd);
1609 bfd_set_asymbol_name (sym, name);
1610 rem_leading_char = false;
1611 add_leading_char = false;
1614 /* Remove leading char. */
1615 if (rem_leading_char)
1616 bfd_set_asymbol_name (sym, ++name);
1618 /* Add new leading char and/or prefix. */
1619 if (add_leading_char || prefix_symbols_string)
1621 char *n, *ptr;
1622 size_t len = strlen (name) + 1;
1624 if (add_leading_char)
1625 len++;
1626 if (prefix_symbols_string)
1627 len += strlen (prefix_symbols_string);
1629 ptr = n = (char *) xmalloc (len);
1630 if (add_leading_char)
1631 *ptr++ = bfd_get_symbol_leading_char (obfd);
1633 if (prefix_symbols_string)
1635 strcpy (ptr, prefix_symbols_string);
1636 ptr += strlen (prefix_symbols_string);
1639 strcpy (ptr, name);
1640 bfd_set_asymbol_name (sym, n);
1641 name = n;
1644 if (strip_symbols == STRIP_ALL)
1645 keep = false;
1646 else if ((flags & BSF_KEEP) != 0 /* Used in relocation. */
1647 || ((flags & BSF_SECTION_SYM) != 0
1648 && ((*bfd_asymbol_section (sym)->symbol_ptr_ptr)->flags
1649 & BSF_KEEP) != 0))
1651 keep = true;
1652 used_in_reloc = true;
1654 else if (relocatable /* Relocatable file. */
1655 && ((flags & (BSF_GLOBAL | BSF_WEAK)) != 0
1656 || bfd_is_com_section (bfd_asymbol_section (sym))))
1657 keep = true;
1658 else if (bfd_decode_symclass (sym) == 'I')
1659 /* Global symbols in $idata sections need to be retained
1660 even if relocatable is FALSE. External users of the
1661 library containing the $idata section may reference these
1662 symbols. */
1663 keep = true;
1664 else if ((flags & BSF_GLOBAL) != 0 /* Global symbol. */
1665 || (flags & BSF_WEAK) != 0
1666 || undefined
1667 || bfd_is_com_section (bfd_asymbol_section (sym)))
1668 keep = strip_symbols != STRIP_UNNEEDED;
1669 else if ((flags & BSF_DEBUGGING) != 0) /* Debugging symbol. */
1670 keep = (strip_symbols != STRIP_DEBUG
1671 && strip_symbols != STRIP_UNNEEDED
1672 && ! convert_debugging);
1673 else if (bfd_coff_get_comdat_section (abfd, bfd_asymbol_section (sym)))
1674 /* COMDAT sections store special information in local
1675 symbols, so we cannot risk stripping any of them. */
1676 keep = true;
1677 else /* Local symbol. */
1678 keep = (strip_symbols != STRIP_UNNEEDED
1679 && (discard_locals != LOCALS_ALL
1680 && (discard_locals != LOCALS_START_L
1681 || ! bfd_is_local_label (abfd, sym))));
1683 if (keep && is_specified_symbol (name, strip_specific_htab))
1685 /* There are multiple ways to set 'keep' above, but if it
1686 was the relocatable symbol case, then that's an error. */
1687 if (used_in_reloc)
1689 non_fatal (_("not stripping symbol `%s' because it is named in a relocation"), name);
1690 status = 1;
1692 else
1693 keep = false;
1696 if (keep
1697 && !(flags & BSF_KEEP)
1698 && is_specified_symbol (name, strip_unneeded_htab))
1699 keep = false;
1701 if (!keep
1702 && ((keep_file_symbols && (flags & BSF_FILE))
1703 || is_specified_symbol (name, keep_specific_htab)))
1704 keep = true;
1706 if (keep && is_strip_section (abfd, bfd_asymbol_section (sym)))
1707 keep = false;
1709 if (keep)
1711 if (((flags & (BSF_GLOBAL | BSF_GNU_UNIQUE))
1712 || undefined)
1713 && (weaken || is_specified_symbol (name, weaken_specific_htab)))
1715 sym->flags &= ~ (BSF_GLOBAL | BSF_GNU_UNIQUE);
1716 sym->flags |= BSF_WEAK;
1719 if (!undefined
1720 && (flags & (BSF_GLOBAL | BSF_WEAK))
1721 && (is_specified_symbol (name, localize_specific_htab)
1722 || (htab_elements (keepglobal_specific_htab) != 0
1723 && ! is_specified_symbol (name, keepglobal_specific_htab))
1724 || (localize_hidden && is_hidden_symbol (sym))))
1726 sym->flags &= ~ (BSF_GLOBAL | BSF_WEAK);
1727 sym->flags |= BSF_LOCAL;
1730 if (!undefined
1731 && (flags & BSF_LOCAL)
1732 && is_specified_symbol (name, globalize_specific_htab))
1734 sym->flags &= ~ BSF_LOCAL;
1735 sym->flags |= BSF_GLOBAL;
1738 to[dst_count++] = sym;
1741 if (add_sym_list)
1743 struct addsym_node *ptr = add_sym_list;
1745 for (src_count = 0; src_count < add_symbols; src_count++)
1747 if (ptr->othersym)
1749 if (ptr->othersym != empty_name)
1750 fatal (_("'before=%s' not found"), ptr->othersym);
1752 else
1753 to[dst_count++] = create_new_symbol (ptr, obfd);
1755 ptr = ptr->next;
1759 to[dst_count] = NULL;
1761 return dst_count;
1764 /* Find the redefined name of symbol SOURCE. */
1766 static const char *
1767 lookup_sym_redefinition (const char *source)
1769 struct redefine_node key_node = {(char *) source, NULL};
1770 struct redefine_node *redef_node
1771 = (struct redefine_node *) htab_find (redefine_specific_htab, &key_node);
1773 return redef_node == NULL ? source : redef_node->target;
1776 /* Insert a node into symbol redefine hash tabel. */
1778 static void
1779 add_redefine_and_check (const char *cause, const char *source,
1780 const char *target)
1782 struct redefine_node *new_node
1783 = (struct redefine_node *) xmalloc (sizeof (struct redefine_node));
1785 new_node->source = strdup (source);
1786 new_node->target = strdup (target);
1788 if (htab_find (redefine_specific_htab, new_node) != HTAB_EMPTY_ENTRY)
1789 fatal (_("%s: Multiple redefinition of symbol \"%s\""),
1790 cause, source);
1792 if (htab_find (redefine_specific_reverse_htab, target) != HTAB_EMPTY_ENTRY)
1793 fatal (_("%s: Symbol \"%s\" is target of more than one redefinition"),
1794 cause, target);
1796 /* Insert the NEW_NODE into hash table for quick search. */
1797 add_specific_symbol_node (new_node, redefine_specific_htab);
1799 /* Insert the target string into the reverse hash table, this is needed for
1800 duplicated target string check. */
1801 add_specific_symbol (new_node->target, redefine_specific_reverse_htab);
1805 /* Handle the --redefine-syms option. Read lines containing "old new"
1806 from the file, and add them to the symbol redefine list. */
1808 static void
1809 add_redefine_syms_file (const char *filename)
1811 FILE *file;
1812 char *buf;
1813 size_t bufsize;
1814 size_t len;
1815 size_t outsym_off;
1816 int c, lineno;
1818 file = fopen (filename, "r");
1819 if (file == NULL)
1820 fatal (_("couldn't open symbol redefinition file %s (error: %s)"),
1821 filename, strerror (errno));
1823 bufsize = 100;
1824 buf = (char *) xmalloc (bufsize + 1 /* For the terminating NUL. */);
1826 lineno = 1;
1827 c = getc (file);
1828 len = 0;
1829 outsym_off = 0;
1830 while (c != EOF)
1832 /* Collect the input symbol name. */
1833 while (! IS_WHITESPACE (c) && ! IS_LINE_TERMINATOR (c) && c != EOF)
1835 if (c == '#')
1836 goto comment;
1837 buf[len++] = c;
1838 if (len >= bufsize)
1840 bufsize *= 2;
1841 buf = (char *) xrealloc (buf, bufsize + 1);
1843 c = getc (file);
1845 buf[len++] = '\0';
1846 if (c == EOF)
1847 break;
1849 /* Eat white space between the symbol names. */
1850 while (IS_WHITESPACE (c))
1851 c = getc (file);
1852 if (c == '#' || IS_LINE_TERMINATOR (c))
1853 goto comment;
1854 if (c == EOF)
1855 break;
1857 /* Collect the output symbol name. */
1858 outsym_off = len;
1859 while (! IS_WHITESPACE (c) && ! IS_LINE_TERMINATOR (c) && c != EOF)
1861 if (c == '#')
1862 goto comment;
1863 buf[len++] = c;
1864 if (len >= bufsize)
1866 bufsize *= 2;
1867 buf = (char *) xrealloc (buf, bufsize + 1);
1869 c = getc (file);
1871 buf[len++] = '\0';
1872 if (c == EOF)
1873 break;
1875 /* Eat white space at end of line. */
1876 while (! IS_LINE_TERMINATOR(c) && c != EOF && IS_WHITESPACE (c))
1877 c = getc (file);
1878 if (c == '#')
1879 goto comment;
1880 /* Handle \r\n. */
1881 if ((c == '\r' && (c = getc (file)) == '\n')
1882 || c == '\n' || c == EOF)
1884 end_of_line:
1885 /* Append the redefinition to the list. */
1886 if (buf[0] != '\0')
1887 add_redefine_and_check (filename, &buf[0], &buf[outsym_off]);
1889 lineno++;
1890 len = 0;
1891 outsym_off = 0;
1892 if (c == EOF)
1893 break;
1894 c = getc (file);
1895 continue;
1897 else
1898 fatal (_("%s:%d: garbage found at end of line"), filename, lineno);
1899 comment:
1900 if (len != 0 && (outsym_off == 0 || outsym_off == len))
1901 fatal (_("%s:%d: missing new symbol name"), filename, lineno);
1902 buf[len++] = '\0';
1904 /* Eat the rest of the line and finish it. */
1905 while (c != '\n' && c != EOF)
1906 c = getc (file);
1907 goto end_of_line;
1910 if (len != 0)
1911 fatal (_("%s:%d: premature end of file"), filename, lineno);
1913 free (buf);
1914 fclose (file);
1917 /* Copy unknown object file IBFD onto OBFD.
1918 Returns TRUE upon success, FALSE otherwise. */
1920 static bool
1921 copy_unknown_object (bfd *ibfd, bfd *obfd)
1923 char *cbuf;
1924 bfd_size_type tocopy;
1925 off_t size;
1926 struct stat buf;
1928 if (bfd_stat_arch_elt (ibfd, &buf) != 0)
1930 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
1931 return false;
1934 size = buf.st_size;
1935 if (size < 0)
1937 non_fatal (_("stat returns negative size for `%s'"),
1938 bfd_get_archive_filename (ibfd));
1939 return false;
1942 if (bfd_seek (ibfd, (file_ptr) 0, SEEK_SET) != 0)
1944 bfd_nonfatal (bfd_get_archive_filename (ibfd));
1945 return false;
1948 if (verbose)
1949 printf (_("copy from `%s' [unknown] to `%s' [unknown]\n"),
1950 bfd_get_archive_filename (ibfd), bfd_get_filename (obfd));
1952 cbuf = (char *) xmalloc (BUFSIZE);
1953 while (size != 0)
1955 if (size > BUFSIZE)
1956 tocopy = BUFSIZE;
1957 else
1958 tocopy = size;
1960 if (bfd_bread (cbuf, tocopy, ibfd) != tocopy)
1962 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
1963 free (cbuf);
1964 return false;
1967 if (bfd_bwrite (cbuf, tocopy, obfd) != tocopy)
1969 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
1970 free (cbuf);
1971 return false;
1974 size -= tocopy;
1977 /* We should at least to be able to read it back when copying an
1978 unknown object in an archive. */
1979 chmod (bfd_get_filename (obfd), buf.st_mode | S_IRUSR);
1980 free (cbuf);
1981 return true;
1984 typedef struct objcopy_internal_note
1986 Elf_Internal_Note note;
1987 unsigned long padded_namesz;
1988 bfd_vma start;
1989 bfd_vma end;
1990 } objcopy_internal_note;
1992 #define DEBUG_MERGE 0
1994 #if DEBUG_MERGE
1995 #define merge_debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
1996 #else
1997 #define merge_debug(format, ...)
1998 #endif
2000 /* Returns TRUE iff PNOTE1 overlaps or adjoins PNOTE2. */
2002 static bool
2003 overlaps_or_adjoins (objcopy_internal_note * pnote1,
2004 objcopy_internal_note * pnote2)
2006 if (pnote1->end < pnote2->start)
2007 /* FIXME: Alignment of 16 bytes taken from x86_64 binaries.
2008 Really we should extract the alignment of the section
2009 covered by the notes. */
2010 return BFD_ALIGN (pnote1->end, 16) < pnote2->start;
2012 if (pnote2->end < pnote2->start)
2013 return BFD_ALIGN (pnote2->end, 16) < pnote1->start;
2015 if (pnote1->end < pnote2->end)
2016 return true;
2018 if (pnote2->end < pnote1->end)
2019 return true;
2021 return false;
2024 /* Returns TRUE iff NEEDLE is fully contained by HAYSTACK. */
2026 static bool
2027 contained_by (objcopy_internal_note * needle,
2028 objcopy_internal_note * haystack)
2030 return needle->start >= haystack->start && needle->end <= haystack->end;
2033 static bool
2034 is_open_note (objcopy_internal_note * pnote)
2036 return pnote->note.type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
2039 static bool
2040 is_func_note (objcopy_internal_note * pnote)
2042 return pnote->note.type == NT_GNU_BUILD_ATTRIBUTE_FUNC;
2045 static bool
2046 is_deleted_note (objcopy_internal_note * pnote)
2048 return pnote->note.type == 0;
2051 static bool
2052 is_version_note (objcopy_internal_note * pnote)
2054 return (pnote->note.namesz > 4
2055 && pnote->note.namedata[0] == 'G'
2056 && pnote->note.namedata[1] == 'A'
2057 && pnote->note.namedata[2] == '$'
2058 && pnote->note.namedata[3] == GNU_BUILD_ATTRIBUTE_VERSION);
2061 static bool
2062 is_64bit (bfd * abfd)
2064 /* Should never happen, but let's be paranoid. */
2065 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
2066 return false;
2068 return elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64;
2071 /* This sorting function is used to get the notes into an order
2072 that makes merging easy. */
2074 static int
2075 compare_gnu_build_notes (const void * data1, const void * data2)
2077 objcopy_internal_note * pnote1 = (objcopy_internal_note *) data1;
2078 objcopy_internal_note * pnote2 = (objcopy_internal_note *) data2;
2080 /* Sort notes based upon the attribute they record. */
2081 int cmp = memcmp (pnote1->note.namedata + 3,
2082 pnote2->note.namedata + 3,
2083 pnote1->note.namesz < pnote2->note.namesz ?
2084 pnote1->note.namesz - 3 : pnote2->note.namesz - 3);
2085 if (cmp)
2086 return cmp;
2088 if (pnote1->end < pnote2->start)
2089 return -1;
2090 if (pnote1->start > pnote2->end)
2091 return 1;
2093 /* Overlaps - we should merge the two ranges. */
2094 if (pnote1->start < pnote2->start)
2095 return -1;
2096 if (pnote1->end > pnote2->end)
2097 return 1;
2098 if (pnote1->end < pnote2->end)
2099 return -1;
2101 /* Put OPEN notes before function notes. */
2102 if (is_open_note (pnote1) && ! is_open_note (pnote2))
2103 return -1;
2104 if (! is_open_note (pnote1) && is_open_note (pnote2))
2105 return 1;
2107 return 0;
2110 /* This sorting function is used to get the notes into an order
2111 that makes eliminating address ranges easier. */
2113 static int
2114 sort_gnu_build_notes (const void * data1, const void * data2)
2116 objcopy_internal_note * pnote1 = (objcopy_internal_note *) data1;
2117 objcopy_internal_note * pnote2 = (objcopy_internal_note *) data2;
2119 if (pnote1->note.type != pnote2->note.type)
2121 /* Move deleted notes to the end. */
2122 if (is_deleted_note (pnote1)) /* 1: OFD 2: OFD */
2123 return 1;
2125 /* Move OPEN notes to the start. */
2126 if (is_open_note (pnote1)) /* 1: OF 2: OFD */
2127 return -1;
2129 if (is_deleted_note (pnote2)) /* 1: F 2: O D */
2130 return -1;
2132 return 1; /* 1: F 2: O */
2135 /* Sort by starting address. */
2136 if (pnote1->start < pnote2->start)
2137 return -1;
2138 if (pnote1->start > pnote2->start)
2139 return 1;
2141 /* Then by end address (bigger range first). */
2142 if (pnote1->end > pnote2->end)
2143 return -1;
2144 if (pnote1->end < pnote2->end)
2145 return 1;
2147 /* Then by attribute type. */
2148 if (pnote1->note.namesz > 4
2149 && pnote2->note.namesz > 4
2150 && pnote1->note.namedata[3] != pnote2->note.namedata[3])
2151 return pnote1->note.namedata[3] - pnote2->note.namedata[3];
2153 return 0;
2156 /* Merge the notes on SEC, removing redundant entries.
2157 Returns the new, smaller size of the section upon success. */
2159 static bfd_size_type
2160 merge_gnu_build_notes (bfd * abfd,
2161 asection * sec,
2162 bfd_size_type size,
2163 bfd_byte * contents)
2165 objcopy_internal_note * pnotes_end;
2166 objcopy_internal_note * pnotes = NULL;
2167 objcopy_internal_note * pnote;
2168 bfd_size_type remain = size;
2169 unsigned version_1_seen = 0;
2170 unsigned version_2_seen = 0;
2171 unsigned version_3_seen = 0;
2172 const char * err = NULL;
2173 bfd_byte * in = contents;
2174 unsigned long previous_func_start = 0;
2175 unsigned long previous_open_start = 0;
2176 unsigned long previous_func_end = 0;
2177 unsigned long previous_open_end = 0;
2178 long relsize;
2180 relsize = bfd_get_reloc_upper_bound (abfd, sec);
2181 if (relsize > 0)
2183 arelent ** relpp;
2184 long relcount;
2186 /* If there are relocs associated with this section then we
2187 cannot safely merge it. */
2188 relpp = (arelent **) xmalloc (relsize);
2189 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, isympp);
2190 free (relpp);
2191 if (relcount != 0)
2193 if (! is_strip)
2194 non_fatal (_("%s[%s]: Cannot merge - there are relocations against this section"),
2195 bfd_get_filename (abfd), bfd_section_name (sec));
2196 goto done;
2200 /* Make a copy of the notes and convert to our internal format.
2201 Minimum size of a note is 12 bytes. Also locate the version
2202 notes and check them. */
2203 pnote = pnotes = (objcopy_internal_note *)
2204 xcalloc ((size / 12), sizeof (* pnote));
2205 while (remain >= 12)
2207 bfd_vma start, end;
2209 pnote->note.namesz = bfd_get_32 (abfd, in);
2210 pnote->note.descsz = bfd_get_32 (abfd, in + 4);
2211 pnote->note.type = bfd_get_32 (abfd, in + 8);
2212 pnote->padded_namesz = (pnote->note.namesz + 3) & ~3;
2214 if (((pnote->note.descsz + 3) & ~3) != pnote->note.descsz)
2216 err = _("corrupt GNU build attribute note: description size not a factor of 4");
2217 goto done;
2220 if (pnote->note.type != NT_GNU_BUILD_ATTRIBUTE_OPEN
2221 && pnote->note.type != NT_GNU_BUILD_ATTRIBUTE_FUNC)
2223 err = _("corrupt GNU build attribute note: wrong note type");
2224 goto done;
2227 if (pnote->padded_namesz + pnote->note.descsz + 12 > remain)
2229 err = _("corrupt GNU build attribute note: note too big");
2230 goto done;
2233 if (pnote->note.namesz < 2)
2235 err = _("corrupt GNU build attribute note: name too small");
2236 goto done;
2239 pnote->note.namedata = (char *)(in + 12);
2240 pnote->note.descdata = (char *)(in + 12 + pnote->padded_namesz);
2242 remain -= 12 + pnote->padded_namesz + pnote->note.descsz;
2243 in += 12 + pnote->padded_namesz + pnote->note.descsz;
2245 if (pnote->note.namesz > 2
2246 && pnote->note.namedata[0] == '$'
2247 && pnote->note.namedata[1] == GNU_BUILD_ATTRIBUTE_VERSION
2248 && pnote->note.namedata[2] == '1')
2249 ++ version_1_seen;
2250 else if (is_version_note (pnote))
2252 if (pnote->note.namedata[4] == '2')
2253 ++ version_2_seen;
2254 else if (pnote->note.namedata[4] == '3')
2255 ++ version_3_seen;
2256 else
2258 err = _("corrupt GNU build attribute note: unsupported version");
2259 goto done;
2263 switch (pnote->note.descsz)
2265 case 0:
2266 start = end = 0;
2267 break;
2269 case 4:
2270 start = bfd_get_32 (abfd, pnote->note.descdata);
2271 /* FIXME: For version 1 and 2 notes we should try to
2272 calculate the end address by finding a symbol whose
2273 value is START, and then adding in its size.
2275 For now though, since v1 and v2 was not intended to
2276 handle gaps, we chose an artificially large end
2277 address. */
2278 end = (bfd_vma) -1;
2279 break;
2281 case 8:
2282 start = bfd_get_32 (abfd, pnote->note.descdata);
2283 end = bfd_get_32 (abfd, pnote->note.descdata + 4);
2284 break;
2286 case 16:
2287 start = bfd_get_64 (abfd, pnote->note.descdata);
2288 end = bfd_get_64 (abfd, pnote->note.descdata + 8);
2289 break;
2291 default:
2292 err = _("corrupt GNU build attribute note: bad description size");
2293 goto done;
2296 if (start > end)
2297 /* This can happen with PPC64LE binaries where empty notes are
2298 encoded as start = end + 4. */
2299 start = end;
2301 if (is_open_note (pnote))
2303 if (start)
2304 previous_open_start = start;
2306 pnote->start = previous_open_start;
2308 if (end)
2309 previous_open_end = end;
2311 pnote->end = previous_open_end;
2313 else
2315 if (start)
2316 previous_func_start = start;
2318 pnote->start = previous_func_start;
2320 if (end)
2321 previous_func_end = end;
2323 pnote->end = previous_func_end;
2326 if (pnote->note.namedata[pnote->note.namesz - 1] != 0)
2328 err = _("corrupt GNU build attribute note: name not NUL terminated");
2329 goto done;
2332 pnote ++;
2335 pnotes_end = pnote;
2337 /* Check that the notes are valid. */
2338 if (remain != 0)
2340 err = _("corrupt GNU build attribute notes: excess data at end");
2341 goto done;
2344 if (version_1_seen == 0 && version_2_seen == 0 && version_3_seen == 0)
2346 #if 0
2347 err = _("bad GNU build attribute notes: no known versions detected");
2348 goto done;
2349 #else
2350 /* This happens with glibc. No idea why. */
2351 non_fatal (_("%s[%s]: Warning: version note missing - assuming version 3"),
2352 bfd_get_filename (abfd), bfd_section_name (sec));
2353 version_3_seen = 2;
2354 #endif
2357 if ( (version_1_seen > 0 && version_2_seen > 0)
2358 || (version_1_seen > 0 && version_3_seen > 0)
2359 || (version_2_seen > 0 && version_3_seen > 0))
2361 err = _("bad GNU build attribute notes: multiple different versions");
2362 goto done;
2365 /* We are now only supporting the merging v3+ notes
2366 - it makes things much simpler. */
2367 if (version_3_seen == 0)
2369 merge_debug ("%s: skipping merge - not using v3 notes", bfd_section_name (sec));
2370 goto done;
2373 merge_debug ("Merging section %s which contains %ld notes\n",
2374 sec->name, pnotes_end - pnotes);
2376 /* Sort the notes. */
2377 qsort (pnotes, pnotes_end - pnotes, sizeof (* pnotes),
2378 compare_gnu_build_notes);
2380 #if DEBUG_MERGE
2381 merge_debug ("Results of initial sort:\n");
2382 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
2383 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2384 (pnote->note.namedata - (char *) contents) - 12,
2385 pnote->start, pnote->end,
2386 pnote->note.type,
2387 pnote->note.namedata[3],
2388 pnote->note.namesz
2390 #endif
2392 /* Now merge the notes. The rules are:
2393 1. If a note has a zero range, it can be eliminated.
2394 2. If two notes have the same namedata then:
2395 2a. If one note's range is fully covered by the other note
2396 then it can be deleted.
2397 2b. If one note's range partially overlaps or adjoins the
2398 other note then if they are both of the same type (open
2399 or func) then they can be merged and one deleted. If
2400 they are of different types then they cannot be merged. */
2401 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
2403 /* Skip already deleted notes.
2404 FIXME: Can this happen ? We are scanning forwards and
2405 deleting backwards after all. */
2406 if (is_deleted_note (pnote))
2407 continue;
2409 /* Rule 1 - delete 0-range notes. */
2410 if (pnote->start == pnote->end)
2412 merge_debug ("Delete note at offset %#08lx - empty range\n",
2413 (pnote->note.namedata - (char *) contents) - 12);
2414 pnote->note.type = 0;
2415 continue;
2418 int iter;
2419 objcopy_internal_note * back;
2421 /* Rule 2: Check to see if there is an identical previous note. */
2422 for (iter = 0, back = pnote - 1; back >= pnotes; back --)
2424 if (is_deleted_note (back))
2425 continue;
2427 /* Our sorting function should have placed all identically
2428 attributed notes together, so if we see a note of a different
2429 attribute type stop searching. */
2430 if (back->note.namesz != pnote->note.namesz
2431 || memcmp (back->note.namedata,
2432 pnote->note.namedata, pnote->note.namesz) != 0)
2433 break;
2435 if (back->start == pnote->start
2436 && back->end == pnote->end)
2438 merge_debug ("Delete note at offset %#08lx - duplicate of note at offset %#08lx\n",
2439 (pnote->note.namedata - (char *) contents) - 12,
2440 (back->note.namedata - (char *) contents) - 12);
2441 pnote->note.type = 0;
2442 break;
2445 /* Rule 2a. */
2446 if (contained_by (pnote, back))
2448 merge_debug ("Delete note at offset %#08lx - fully contained by note at %#08lx\n",
2449 (pnote->note.namedata - (char *) contents) - 12,
2450 (back->note.namedata - (char *) contents) - 12);
2451 pnote->note.type = 0;
2452 break;
2455 #if DEBUG_MERGE
2456 /* This should not happen as we have sorted the
2457 notes with earlier starting addresses first. */
2458 if (contained_by (back, pnote))
2459 merge_debug ("ERROR: UNEXPECTED CONTAINMENT\n");
2460 #endif
2462 /* Rule 2b. */
2463 if (overlaps_or_adjoins (back, pnote)
2464 && is_func_note (back) == is_func_note (pnote))
2466 merge_debug ("Delete note at offset %#08lx - merge into note at %#08lx\n",
2467 (pnote->note.namedata - (char *) contents) - 12,
2468 (back->note.namedata - (char *) contents) - 12);
2470 back->end = back->end > pnote->end ? back->end : pnote->end;
2471 back->start = back->start < pnote->start ? back->start : pnote->start;
2472 pnote->note.type = 0;
2473 break;
2476 /* Don't scan too far back however. */
2477 if (iter ++ > 16)
2479 /* FIXME: Not sure if this can ever be triggered. */
2480 merge_debug ("ITERATION LIMIT REACHED\n");
2481 break;
2484 #if DEBUG_MERGE
2485 if (! is_deleted_note (pnote))
2486 merge_debug ("Unable to do anything with note at %#08lx\n",
2487 (pnote->note.namedata - (char *) contents) - 12);
2488 #endif
2491 /* Resort the notes. */
2492 merge_debug ("Final sorting of notes\n");
2493 qsort (pnotes, pnotes_end - pnotes, sizeof (* pnotes), sort_gnu_build_notes);
2495 /* Reconstruct the ELF notes. */
2496 bfd_byte * new_contents;
2497 bfd_byte * old;
2498 bfd_byte * new;
2499 bfd_size_type new_size;
2500 bfd_vma prev_start = 0;
2501 bfd_vma prev_end = 0;
2503 /* Not sure how, but the notes might grow in size.
2504 (eg see PR 1774507). Allow for this here. */
2505 new = new_contents = xmalloc (size * 2);
2506 for (pnote = pnotes, old = contents;
2507 pnote < pnotes_end;
2508 pnote ++)
2510 bfd_size_type note_size = 12 + pnote->padded_namesz + pnote->note.descsz;
2512 if (! is_deleted_note (pnote))
2514 /* Create the note, potentially using the
2515 address range of the previous note. */
2516 if (pnote->start == prev_start && pnote->end == prev_end)
2518 bfd_put_32 (abfd, pnote->note.namesz, new);
2519 bfd_put_32 (abfd, 0, new + 4);
2520 bfd_put_32 (abfd, pnote->note.type, new + 8);
2521 new += 12;
2522 memcpy (new, pnote->note.namedata, pnote->note.namesz);
2523 if (pnote->note.namesz < pnote->padded_namesz)
2524 memset (new + pnote->note.namesz, 0, pnote->padded_namesz - pnote->note.namesz);
2525 new += pnote->padded_namesz;
2527 else
2529 bfd_put_32 (abfd, pnote->note.namesz, new);
2530 bfd_put_32 (abfd, is_64bit (abfd) ? 16 : 8, new + 4);
2531 bfd_put_32 (abfd, pnote->note.type, new + 8);
2532 new += 12;
2533 memcpy (new, pnote->note.namedata, pnote->note.namesz);
2534 if (pnote->note.namesz < pnote->padded_namesz)
2535 memset (new + pnote->note.namesz, 0, pnote->padded_namesz - pnote->note.namesz);
2536 new += pnote->padded_namesz;
2537 if (is_64bit (abfd))
2539 bfd_put_64 (abfd, pnote->start, new);
2540 bfd_put_64 (abfd, pnote->end, new + 8);
2541 new += 16;
2543 else
2545 bfd_put_32 (abfd, pnote->start, new);
2546 bfd_put_32 (abfd, pnote->end, new + 4);
2547 new += 8;
2550 prev_start = pnote->start;
2551 prev_end = pnote->end;
2555 old += note_size;
2558 #if DEBUG_MERGE
2559 merge_debug ("Results of merge:\n");
2560 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
2561 if (! is_deleted_note (pnote))
2562 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2563 (pnote->note.namedata - (char *) contents) - 12,
2564 pnote->start, pnote->end,
2565 pnote->note.type,
2566 pnote->note.namedata[3],
2567 pnote->note.namesz
2569 #endif
2571 new_size = new - new_contents;
2572 if (new_size < size)
2574 memcpy (contents, new_contents, new_size);
2575 size = new_size;
2577 free (new_contents);
2579 done:
2580 if (err)
2582 bfd_set_error (bfd_error_bad_value);
2583 bfd_nonfatal_message (NULL, abfd, sec, err);
2584 status = 1;
2587 free (pnotes);
2588 return size;
2591 static flagword
2592 check_new_section_flags (flagword flags, bfd * abfd, const char * secname)
2594 /* Only set the SEC_COFF_SHARED flag on COFF files.
2595 The same bit value is used by ELF targets to indicate
2596 compressed sections, and setting that flag here breaks
2597 things. */
2598 if ((flags & SEC_COFF_SHARED)
2599 && bfd_get_flavour (abfd) != bfd_target_coff_flavour)
2601 non_fatal (_("%s[%s]: Note - dropping 'share' flag as output format is not COFF"),
2602 bfd_get_filename (abfd), secname);
2603 flags &= ~ SEC_COFF_SHARED;
2605 return flags;
2608 /* Copy object file IBFD onto OBFD.
2609 Returns TRUE upon success, FALSE otherwise. */
2611 static bool
2612 copy_object (bfd *ibfd, bfd *obfd, const bfd_arch_info_type *input_arch)
2614 bfd_vma start;
2615 long symcount;
2616 asection **osections = NULL;
2617 asection *osec;
2618 asection *gnu_debuglink_section = NULL;
2619 bfd_size_type *gaps = NULL;
2620 bfd_size_type max_gap = 0;
2621 long symsize;
2622 void *dhandle;
2623 enum bfd_architecture iarch;
2624 unsigned int imach;
2625 unsigned int num_sec, i;
2627 if (ibfd->xvec->byteorder != obfd->xvec->byteorder
2628 && ibfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN
2629 && obfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN)
2631 /* PR 17636: Call non-fatal so that we return to our parent who
2632 may need to tidy temporary files. */
2633 non_fatal (_("unable to change endianness of '%s'"),
2634 bfd_get_archive_filename (ibfd));
2635 return false;
2638 if (ibfd->read_only)
2640 non_fatal (_("unable to modify '%s' due to errors"),
2641 bfd_get_archive_filename (ibfd));
2642 return false;
2645 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
2647 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
2648 return false;
2651 if (ibfd->sections == NULL)
2653 non_fatal (_("error: the input file '%s' has no sections"),
2654 bfd_get_archive_filename (ibfd));
2655 return false;
2658 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
2660 if ((do_debug_sections & compress) != 0
2661 && do_debug_sections != compress)
2663 non_fatal (_ ("--compress-debug-sections=[zlib|zlib-gnu|zlib-gabi|"
2664 "zstd] is unsupported on `%s'"),
2665 bfd_get_archive_filename (ibfd));
2666 return false;
2669 if (do_elf_stt_common)
2671 non_fatal (_("--elf-stt-common=[yes|no] is unsupported on `%s'"),
2672 bfd_get_archive_filename (ibfd));
2673 return false;
2677 if (verbose)
2678 printf (_("copy from `%s' [%s] to `%s' [%s]\n"),
2679 bfd_get_archive_filename (ibfd), bfd_get_target (ibfd),
2680 bfd_get_filename (obfd), bfd_get_target (obfd));
2682 if (extract_symbol)
2683 start = 0;
2684 else
2686 if (set_start_set)
2687 start = set_start;
2688 else
2689 start = bfd_get_start_address (ibfd);
2690 start += change_start;
2693 /* Neither the start address nor the flags
2694 need to be set for a core file. */
2695 if (bfd_get_format (obfd) != bfd_core)
2697 flagword flags;
2699 flags = bfd_get_file_flags (ibfd);
2700 flags |= bfd_flags_to_set;
2701 flags &= ~bfd_flags_to_clear;
2702 flags &= bfd_applicable_file_flags (obfd);
2704 if (strip_symbols == STRIP_ALL)
2705 flags &= ~HAS_RELOC;
2707 if (!bfd_set_start_address (obfd, start)
2708 || !bfd_set_file_flags (obfd, flags))
2710 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
2711 return false;
2715 /* Copy architecture of input file to output file. */
2716 iarch = bfd_get_arch (ibfd);
2717 imach = bfd_get_mach (ibfd);
2718 if (input_arch)
2720 if (iarch == bfd_arch_unknown)
2722 iarch = input_arch->arch;
2723 imach = input_arch->mach;
2725 else
2726 non_fatal (_("Input file `%s' ignores binary architecture parameter."),
2727 bfd_get_archive_filename (ibfd));
2729 if (iarch == bfd_arch_unknown
2730 && bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2731 && bfd_get_flavour (obfd) == bfd_target_elf_flavour)
2733 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
2734 iarch = bed->arch;
2735 imach = 0;
2737 if (!bfd_set_arch_mach (obfd, iarch, imach)
2738 && (ibfd->target_defaulted
2739 || bfd_get_arch (ibfd) != bfd_get_arch (obfd)))
2741 if (bfd_get_arch (ibfd) == bfd_arch_unknown)
2742 non_fatal (_("Unable to recognise the format of the input file `%s'"),
2743 bfd_get_archive_filename (ibfd));
2744 else
2745 non_fatal (_("Output file cannot represent architecture `%s'"),
2746 bfd_printable_arch_mach (bfd_get_arch (ibfd),
2747 bfd_get_mach (ibfd)));
2748 return false;
2751 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
2753 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
2754 return false;
2757 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour
2758 && bfd_pei_p (obfd))
2760 /* Set up PE parameters. */
2761 pe_data_type *pe = pe_data (obfd);
2763 /* Copy PE parameters before changing them. */
2764 if (bfd_get_flavour (ibfd) == bfd_target_coff_flavour
2765 && bfd_pei_p (ibfd))
2767 pe->pe_opthdr = pe_data (ibfd)->pe_opthdr;
2769 if (preserve_dates)
2770 pe->timestamp = pe_data (ibfd)->coff.timestamp;
2771 else
2772 pe->timestamp = -1;
2775 if (pe_file_alignment != (bfd_vma) -1)
2776 pe->pe_opthdr.FileAlignment = pe_file_alignment;
2777 else
2778 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
2780 if (pe_heap_commit != (bfd_vma) -1)
2781 pe->pe_opthdr.SizeOfHeapCommit = pe_heap_commit;
2783 if (pe_heap_reserve != (bfd_vma) -1)
2784 pe->pe_opthdr.SizeOfHeapCommit = pe_heap_reserve;
2786 if (pe_image_base != (bfd_vma) -1)
2787 pe->pe_opthdr.ImageBase = pe_image_base;
2789 if (pe_section_alignment != (bfd_vma) -1)
2790 pe->pe_opthdr.SectionAlignment = pe_section_alignment;
2791 else
2792 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
2794 if (pe_stack_commit != (bfd_vma) -1)
2795 pe->pe_opthdr.SizeOfStackCommit = pe_stack_commit;
2797 if (pe_stack_reserve != (bfd_vma) -1)
2798 pe->pe_opthdr.SizeOfStackCommit = pe_stack_reserve;
2800 if (pe_subsystem != -1)
2801 pe->pe_opthdr.Subsystem = pe_subsystem;
2803 if (pe_major_subsystem_version != -1)
2804 pe->pe_opthdr.MajorSubsystemVersion = pe_major_subsystem_version;
2806 if (pe_minor_subsystem_version != -1)
2807 pe->pe_opthdr.MinorSubsystemVersion = pe_minor_subsystem_version;
2809 if (pe_file_alignment > pe_section_alignment)
2811 non_fatal (_("warning: file alignment (0x%" PRIx64
2812 ") > section alignment (0x%" PRIx64 ")"),
2813 (uint64_t) pe_file_alignment,
2814 (uint64_t) pe_section_alignment);
2818 free (isympp);
2820 if (osympp != isympp)
2821 free (osympp);
2823 isympp = NULL;
2824 osympp = NULL;
2826 symsize = bfd_get_symtab_upper_bound (ibfd);
2827 if (symsize < 0)
2829 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
2830 return false;
2833 osympp = isympp = (asymbol **) xmalloc (symsize);
2834 symcount = bfd_canonicalize_symtab (ibfd, isympp);
2835 if (symcount < 0)
2837 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
2838 return false;
2840 /* PR 17512: file: d6323821
2841 If the symbol table could not be loaded do not pretend that we have
2842 any symbols. This trips us up later on when we load the relocs. */
2843 if (symcount == 0)
2845 free (isympp);
2846 osympp = isympp = NULL;
2849 /* BFD mandates that all output sections be created and sizes set before
2850 any output is done. Thus, we traverse all sections multiple times. */
2851 bfd_map_over_sections (ibfd, setup_section, obfd);
2853 if (!extract_symbol)
2854 setup_bfd_headers (ibfd, obfd);
2856 if (add_sections != NULL)
2858 struct section_add *padd;
2859 struct section_list *pset;
2861 for (padd = add_sections; padd != NULL; padd = padd->next)
2863 flagword flags;
2865 pset = find_section_list (padd->name, false,
2866 SECTION_CONTEXT_SET_FLAGS);
2867 if (pset != NULL)
2869 flags = pset->flags | SEC_HAS_CONTENTS;
2870 flags = check_new_section_flags (flags, obfd, padd->name);
2872 else
2873 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DATA;
2875 /* bfd_make_section_with_flags() does not return very helpful
2876 error codes, so check for the most likely user error first. */
2877 if (bfd_get_section_by_name (obfd, padd->name))
2879 bfd_nonfatal_message (NULL, obfd, NULL,
2880 _("can't add section '%s'"), padd->name);
2881 return false;
2883 else
2885 /* We use LINKER_CREATED here so that the backend hooks
2886 will create any special section type information,
2887 instead of presuming we know what we're doing merely
2888 because we set the flags. */
2889 padd->section = bfd_make_section_with_flags
2890 (obfd, padd->name, flags | SEC_LINKER_CREATED);
2891 if (padd->section == NULL)
2893 bfd_nonfatal_message (NULL, obfd, NULL,
2894 _("can't create section `%s'"),
2895 padd->name);
2896 return false;
2900 if (!bfd_set_section_size (padd->section, padd->size))
2902 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
2903 return false;
2906 pset = find_section_list (padd->name, false,
2907 SECTION_CONTEXT_SET_VMA | SECTION_CONTEXT_ALTER_VMA);
2908 if (pset != NULL
2909 && !bfd_set_section_vma (padd->section, pset->vma_val))
2911 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
2912 return false;
2915 pset = find_section_list (padd->name, false,
2916 SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_ALTER_LMA);
2917 if (pset != NULL)
2919 padd->section->lma = pset->lma_val;
2921 if (!bfd_set_section_alignment
2922 (padd->section, bfd_section_alignment (padd->section)))
2924 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
2925 return false;
2931 if (update_sections != NULL)
2933 struct section_add *pupdate;
2935 for (pupdate = update_sections;
2936 pupdate != NULL;
2937 pupdate = pupdate->next)
2939 pupdate->section = bfd_get_section_by_name (ibfd, pupdate->name);
2940 if (pupdate->section == NULL)
2942 non_fatal (_("error: %s not found, can't be updated"), pupdate->name);
2943 return false;
2946 osec = pupdate->section->output_section;
2947 if (!bfd_set_section_size (osec, pupdate->size))
2949 bfd_nonfatal_message (NULL, obfd, osec, NULL);
2950 return false;
2955 merged_note_section * merged_note_sections = NULL;
2956 if (merge_notes)
2958 /* This palaver is necessary because we must set the output
2959 section size first, before its contents are ready. */
2960 for (osec = ibfd->sections; osec != NULL; osec = osec->next)
2962 if (! is_mergeable_note_section (ibfd, osec))
2963 continue;
2965 /* If the section is going to be completly deleted then
2966 do not bother to merge it. */
2967 if (osec->output_section == NULL)
2968 continue;
2970 bfd_size_type size = bfd_section_size (osec);
2972 if (size == 0)
2973 /* This can happen, eg when stripping a binary for a second
2974 time. See BZ 2121365 for an example. */
2975 continue;
2977 merged_note_section * merged = xmalloc (sizeof * merged);
2978 merged->contents = NULL;
2979 if (! bfd_get_full_section_contents (ibfd, osec, & merged->contents))
2981 bfd_nonfatal_message (NULL, ibfd, osec,
2982 _("warning: could not load note section"));
2983 free (merged);
2984 continue;
2987 merged->size = merge_gnu_build_notes (ibfd, osec, size,
2988 merged->contents);
2990 /* FIXME: Once we have read the contents in, we must write
2991 them out again. So even if the mergeing has achieved
2992 nothing we still add this entry to the merge list. */
2994 if (size != merged->size
2995 && !bfd_set_section_size (osec->output_section, merged->size))
2997 bfd_nonfatal_message (NULL, obfd, osec,
2998 _("warning: failed to set merged notes size"));
2999 free (merged->contents);
3000 free (merged);
3001 continue;
3004 /* Add section to list of merged sections. */
3005 merged->sec = osec;
3006 merged->next = merged_note_sections;
3007 merged_note_sections = merged;
3011 if (dump_sections != NULL)
3013 struct section_add * pdump;
3015 for (pdump = dump_sections; pdump != NULL; pdump = pdump->next)
3017 FILE * f;
3018 bfd_byte *contents;
3020 osec = bfd_get_section_by_name (ibfd, pdump->name);
3021 if (osec == NULL)
3023 bfd_nonfatal_message (NULL, ibfd, NULL,
3024 _("can't dump section '%s' - it does not exist"),
3025 pdump->name);
3026 continue;
3029 if ((bfd_section_flags (osec) & SEC_HAS_CONTENTS) == 0)
3031 bfd_nonfatal_message (NULL, ibfd, osec,
3032 _("can't dump section - it has no contents"));
3033 continue;
3036 bfd_size_type size = bfd_section_size (osec);
3037 /* Note - we allow the dumping of zero-sized sections,
3038 creating an empty file. */
3040 f = fopen (pdump->filename, FOPEN_WB);
3041 if (f == NULL)
3043 bfd_nonfatal_message (pdump->filename, NULL, NULL,
3044 _("could not open section dump file"));
3045 continue;
3048 if (bfd_malloc_and_get_section (ibfd, osec, &contents))
3050 if (size != 0 && fwrite (contents, 1, size, f) != size)
3052 non_fatal (_("error writing section contents to %s (error: %s)"),
3053 pdump->filename,
3054 strerror (errno));
3055 free (contents);
3056 fclose (f);
3057 return false;
3060 else
3061 bfd_nonfatal_message (NULL, ibfd, osec,
3062 _("could not retrieve section contents"));
3064 fclose (f);
3065 free (contents);
3069 if (gnu_debuglink_filename != NULL)
3071 /* PR 15125: Give a helpful warning message if
3072 the debuglink section already exists, and
3073 allow the rest of the copy to complete. */
3074 if (bfd_get_section_by_name (obfd, ".gnu_debuglink"))
3076 non_fatal (_("%s: debuglink section already exists"),
3077 bfd_get_filename (ibfd));
3078 gnu_debuglink_filename = NULL;
3080 else
3082 gnu_debuglink_section = bfd_create_gnu_debuglink_section
3083 (obfd, gnu_debuglink_filename);
3085 if (gnu_debuglink_section == NULL)
3087 bfd_nonfatal_message (NULL, obfd, NULL,
3088 _("cannot create debug link section `%s'"),
3089 gnu_debuglink_filename);
3090 return false;
3093 /* Special processing for PE format files. We
3094 have no way to distinguish PE from COFF here. */
3095 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour)
3097 bfd_vma debuglink_vma;
3098 asection * highest_section;
3100 /* The PE spec requires that all sections be adjacent and sorted
3101 in ascending order of VMA. It also specifies that debug
3102 sections should be last. This is despite the fact that debug
3103 sections are not loaded into memory and so in theory have no
3104 use for a VMA.
3106 This means that the debuglink section must be given a non-zero
3107 VMA which makes it contiguous with other debug sections. So
3108 walk the current section list, find the section with the
3109 highest VMA and start the debuglink section after that one. */
3110 for (osec = obfd->sections, highest_section = NULL;
3111 osec != NULL;
3112 osec = osec->next)
3113 if (osec->vma > 0
3114 && (highest_section == NULL
3115 || osec->vma > highest_section->vma))
3116 highest_section = osec;
3118 if (highest_section)
3119 debuglink_vma = BFD_ALIGN (highest_section->vma
3120 + highest_section->size,
3121 /* FIXME: We ought to be using
3122 COFF_PAGE_SIZE here or maybe
3123 bfd_section_alignment() (if it
3124 was set) but since this is for PE
3125 and we know the required alignment
3126 it is easier just to hard code it. */
3127 0x1000);
3128 else
3129 /* Umm, not sure what to do in this case. */
3130 debuglink_vma = 0x1000;
3132 bfd_set_section_vma (gnu_debuglink_section, debuglink_vma);
3137 num_sec = bfd_count_sections (obfd);
3138 if (num_sec != 0
3139 && (gap_fill_set || pad_to_set))
3141 asection **set;
3143 /* We must fill in gaps between the sections and/or we must pad
3144 the last section to a specified address. We do this by
3145 grabbing a list of the sections, sorting them by VMA, and
3146 increasing the section sizes as required to fill the gaps.
3147 We write out the gap contents below. */
3149 osections = xmalloc (num_sec * sizeof (*osections));
3150 set = osections;
3151 bfd_map_over_sections (obfd, get_sections, &set);
3153 qsort (osections, num_sec, sizeof (*osections), compare_section_lma);
3155 gaps = xmalloc (num_sec * sizeof (*gaps));
3156 memset (gaps, 0, num_sec * sizeof (*gaps));
3158 if (gap_fill_set)
3160 for (i = 0; i < num_sec - 1; i++)
3162 flagword flags;
3163 bfd_size_type size; /* Octets. */
3164 bfd_vma gap_start, gap_stop; /* Octets. */
3165 unsigned int opb1 = bfd_octets_per_byte (obfd, osections[i]);
3166 unsigned int opb2 = bfd_octets_per_byte (obfd, osections[i+1]);
3168 flags = bfd_section_flags (osections[i]);
3169 if ((flags & SEC_HAS_CONTENTS) == 0
3170 || (flags & SEC_LOAD) == 0)
3171 continue;
3173 size = bfd_section_size (osections[i]);
3174 gap_start = bfd_section_lma (osections[i]) * opb1 + size;
3175 gap_stop = bfd_section_lma (osections[i + 1]) * opb2;
3176 if (gap_start < gap_stop)
3178 if (!bfd_set_section_size (osections[i],
3179 size + (gap_stop - gap_start)))
3181 bfd_nonfatal_message (NULL, obfd, osections[i],
3182 _("Can't fill gap after section"));
3183 status = 1;
3184 break;
3186 gaps[i] = gap_stop - gap_start;
3187 if (max_gap < gap_stop - gap_start)
3188 max_gap = gap_stop - gap_start;
3193 if (pad_to_set)
3195 bfd_vma lma; /* Octets. */
3196 bfd_size_type size; /* Octets. */
3197 unsigned int opb = bfd_octets_per_byte (obfd, osections[num_sec - 1]);
3198 bfd_vma _pad_to = pad_to * opb;
3200 lma = bfd_section_lma (osections[num_sec - 1]) * opb;
3201 size = bfd_section_size (osections[num_sec - 1]);
3202 if (lma + size < _pad_to)
3204 if (!bfd_set_section_size (osections[num_sec - 1], _pad_to - lma))
3206 bfd_nonfatal_message (NULL, obfd, osections[num_sec - 1],
3207 _("can't add padding"));
3208 status = 1;
3210 else
3212 gaps[num_sec - 1] = _pad_to - (lma + size);
3213 if (max_gap < _pad_to - (lma + size))
3214 max_gap = _pad_to - (lma + size);
3220 /* Symbol filtering must happen after the output sections
3221 have been created, but before their contents are set. */
3222 dhandle = NULL;
3223 if (convert_debugging)
3224 dhandle = read_debugging_info (ibfd, isympp, symcount, false);
3226 if ((obfd->flags & (EXEC_P | DYNAMIC)) != 0
3227 && (obfd->flags & HAS_RELOC) == 0)
3229 if (bfd_keep_unused_section_symbols (obfd) || keep_section_symbols)
3231 /* Non-relocatable inputs may not have the unused section
3232 symbols. Mark all section symbols as used to generate
3233 section symbols. */
3234 asection *asect;
3235 for (asect = obfd->sections; asect != NULL; asect = asect->next)
3236 if (asect->symbol)
3237 asect->symbol->flags |= BSF_SECTION_SYM_USED;
3239 else
3241 /* Non-relocatable inputs may have the unused section symbols.
3242 Mark all section symbols as unused to excluded them. */
3243 long s;
3244 for (s = 0; s < symcount; s++)
3245 if ((isympp[s]->flags & BSF_SECTION_SYM_USED))
3246 isympp[s]->flags &= ~BSF_SECTION_SYM_USED;
3250 if (strip_symbols == STRIP_DEBUG
3251 || strip_symbols == STRIP_ALL
3252 || strip_symbols == STRIP_UNNEEDED
3253 || strip_symbols == STRIP_NONDEBUG
3254 || strip_symbols == STRIP_DWO
3255 || strip_symbols == STRIP_NONDWO
3256 || discard_locals != LOCALS_UNDEF
3257 || localize_hidden
3258 || htab_elements (strip_specific_htab) != 0
3259 || htab_elements (keep_specific_htab) != 0
3260 || htab_elements (localize_specific_htab) != 0
3261 || htab_elements (globalize_specific_htab) != 0
3262 || htab_elements (keepglobal_specific_htab) != 0
3263 || htab_elements (weaken_specific_htab) != 0
3264 || htab_elements (redefine_specific_htab) != 0
3265 || prefix_symbols_string
3266 || sections_removed
3267 || sections_copied
3268 || convert_debugging
3269 || change_leading_char
3270 || remove_leading_char
3271 || section_rename_list
3272 || weaken
3273 || add_symbols)
3275 /* Mark symbols used in output relocations so that they
3276 are kept, even if they are local labels or static symbols.
3278 Note we iterate over the input sections examining their
3279 relocations since the relocations for the output sections
3280 haven't been set yet. mark_symbols_used_in_relocations will
3281 ignore input sections which have no corresponding output
3282 section. */
3283 if (strip_symbols != STRIP_ALL)
3285 bfd_set_error (bfd_error_no_error);
3286 bfd_map_over_sections (ibfd,
3287 mark_symbols_used_in_relocations,
3288 isympp);
3289 if (bfd_get_error () != bfd_error_no_error)
3291 status = 1;
3292 return false;
3296 osympp = (asymbol **) xmalloc ((symcount + add_symbols + 1) * sizeof (asymbol *));
3297 symcount = filter_symbols (ibfd, obfd, osympp, isympp, symcount);
3300 if (convert_debugging && dhandle != NULL)
3302 bool res;
3304 res = write_debugging_info (obfd, dhandle, &symcount, &osympp);
3306 free (dhandle);
3307 dhandle = NULL; /* Paranoia... */
3309 if (! res)
3311 status = 1;
3312 return false;
3316 bfd_set_symtab (obfd, osympp, symcount);
3318 /* This has to happen before section positions are set. */
3319 bfd_map_over_sections (ibfd, copy_relocations_in_section, obfd);
3321 /* This has to happen after the symbol table has been set. */
3322 bfd_map_over_sections (ibfd, copy_section, obfd);
3324 if (add_sections != NULL)
3326 struct section_add *padd;
3328 for (padd = add_sections; padd != NULL; padd = padd->next)
3330 if (! bfd_set_section_contents (obfd, padd->section, padd->contents,
3331 0, padd->size))
3333 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
3334 return false;
3339 if (update_sections != NULL)
3341 struct section_add *pupdate;
3343 for (pupdate = update_sections;
3344 pupdate != NULL;
3345 pupdate = pupdate->next)
3347 osec = pupdate->section->output_section;
3348 if (! bfd_set_section_contents (obfd, osec, pupdate->contents,
3349 0, pupdate->size))
3351 bfd_nonfatal_message (NULL, obfd, osec, NULL);
3352 return false;
3357 if (merged_note_sections != NULL)
3359 merged_note_section * merged = NULL;
3361 for (osec = obfd->sections; osec != NULL; osec = osec->next)
3363 if (! is_mergeable_note_section (obfd, osec))
3364 continue;
3366 if (merged == NULL)
3367 merged = merged_note_sections;
3369 /* It is likely that output sections are in the same order
3370 as the input sections, but do not assume that this is
3371 the case. */
3372 if (merged->sec->output_section != osec)
3374 for (merged = merged_note_sections;
3375 merged != NULL;
3376 merged = merged->next)
3377 if (merged->sec->output_section == osec)
3378 break;
3380 if (merged == NULL)
3382 bfd_nonfatal_message
3383 (NULL, obfd, osec,
3384 _("error: failed to locate merged notes"));
3385 continue;
3389 if (merged->contents == NULL)
3391 bfd_nonfatal_message
3392 (NULL, obfd, osec,
3393 _("error: failed to merge notes"));
3394 continue;
3397 if (! bfd_set_section_contents (obfd, osec, merged->contents, 0,
3398 merged->size))
3400 bfd_nonfatal_message
3401 (NULL, obfd, osec,
3402 _("error: failed to copy merged notes into output"));
3403 return false;
3406 merged = merged->next;
3409 /* Free the memory. */
3410 merged_note_section * next;
3411 for (merged = merged_note_sections; merged != NULL; merged = next)
3413 next = merged->next;
3414 free (merged->contents);
3415 free (merged);
3418 else if (merge_notes && ! is_strip)
3419 non_fatal (_("%s: Could not find any mergeable note sections"),
3420 bfd_get_filename (ibfd));
3422 if (gnu_debuglink_filename != NULL)
3424 if (! bfd_fill_in_gnu_debuglink_section
3425 (obfd, gnu_debuglink_section, gnu_debuglink_filename))
3427 bfd_nonfatal_message (NULL, obfd, NULL,
3428 _("cannot fill debug link section `%s'"),
3429 gnu_debuglink_filename);
3430 return false;
3434 if (gaps != NULL)
3436 bfd_byte *buf;
3438 /* Fill in the gaps. */
3439 if (max_gap > 8192)
3440 max_gap = 8192;
3441 buf = (bfd_byte *) xmalloc (max_gap);
3442 memset (buf, gap_fill, max_gap);
3444 for (i = 0; i < num_sec; i++)
3446 if (gaps[i] != 0)
3448 bfd_size_type left;
3449 file_ptr off;
3451 left = gaps[i];
3452 off = bfd_section_size (osections[i]) - left;
3454 while (left > 0)
3456 bfd_size_type now;
3458 if (left > 8192)
3459 now = 8192;
3460 else
3461 now = left;
3463 if (! bfd_set_section_contents (obfd, osections[i], buf,
3464 off, now))
3466 bfd_nonfatal_message (NULL, obfd, osections[i], NULL);
3467 free (buf);
3468 return false;
3471 left -= now;
3472 off += now;
3477 free (buf);
3478 free (gaps);
3479 gaps = NULL;
3482 /* Allow the BFD backend to copy any private data it understands
3483 from the input BFD to the output BFD. This is done last to
3484 permit the routine to look at the filtered symbol table, which is
3485 important for the ECOFF code at least. */
3486 if (! bfd_copy_private_bfd_data (ibfd, obfd))
3488 bfd_nonfatal_message (NULL, obfd, NULL,
3489 _("error copying private BFD data"));
3490 return false;
3493 /* Switch to the alternate machine code. We have to do this at the
3494 very end, because we only initialize the header when we create
3495 the first section. */
3496 if (use_alt_mach_code != 0)
3498 if (! bfd_alt_mach_code (obfd, use_alt_mach_code))
3500 non_fatal (_("this target does not support %lu alternative machine codes"),
3501 use_alt_mach_code);
3502 if (bfd_get_flavour (obfd) == bfd_target_elf_flavour)
3504 non_fatal (_("treating that number as an absolute e_machine value instead"));
3505 elf_elfheader (obfd)->e_machine = use_alt_mach_code;
3507 else
3508 non_fatal (_("ignoring the alternative value"));
3512 return true;
3515 /* Read each archive element in turn from IBFD, copy the
3516 contents to temp file, and keep the temp file handle.
3517 If 'force_output_target' is TRUE then make sure that
3518 all elements in the new archive are of the type
3519 'output_target'. */
3521 static void
3522 copy_archive (bfd *ibfd, bfd *obfd, const char *output_target,
3523 bool force_output_target,
3524 const bfd_arch_info_type *input_arch)
3526 struct name_list
3528 struct name_list *next;
3529 const char *name;
3530 bfd *obfd;
3531 } *list, *l;
3532 bfd **ptr = &obfd->archive_head;
3533 bfd *this_element;
3534 char *dir;
3535 const char *filename;
3537 /* PR 24281: It is not clear what should happen when copying a thin archive.
3538 One part is straight forward - if the output archive is in a different
3539 directory from the input archive then any relative paths in the library
3540 should be adjusted to the new location. But if any transformation
3541 options are active (eg strip, rename, add, etc) then the implication is
3542 that these should be applied to the files pointed to by the archive.
3543 But since objcopy is not destructive, this means that new files must be
3544 created, and there is no guidance for the names of the new files. (Plus
3545 this conflicts with one of the goals of thin libraries - only taking up
3546 a minimal amount of space in the file system).
3548 So for now we fail if an attempt is made to copy such libraries. */
3549 if (ibfd->is_thin_archive)
3551 status = 1;
3552 bfd_set_error (bfd_error_invalid_operation);
3553 bfd_nonfatal_message (NULL, ibfd, NULL,
3554 _("sorry: copying thin archives is not currently supported"));
3555 return;
3558 /* Make a temp directory to hold the contents. */
3559 dir = make_tempdir (bfd_get_filename (obfd));
3560 if (dir == NULL)
3561 fatal (_("cannot create tempdir for archive copying (error: %s)"),
3562 strerror (errno));
3564 if (strip_symbols == STRIP_ALL)
3565 obfd->has_armap = false;
3566 else
3567 obfd->has_armap = ibfd->has_armap;
3568 obfd->is_thin_archive = ibfd->is_thin_archive;
3570 if (deterministic)
3571 obfd->flags |= BFD_DETERMINISTIC_OUTPUT;
3573 list = NULL;
3575 this_element = bfd_openr_next_archived_file (ibfd, NULL);
3577 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
3579 status = 1;
3580 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
3581 goto cleanup_and_exit;
3584 while (!status && this_element != NULL)
3586 char *output_name;
3587 bfd *output_bfd;
3588 bfd *last_element;
3589 struct stat buf;
3590 int stat_status = 0;
3591 bool del = true;
3592 bool ok_object;
3594 /* PR binutils/17533: Do not allow directory traversal
3595 outside of the current directory tree by archive members. */
3596 if (! is_valid_archive_path (bfd_get_filename (this_element)))
3598 non_fatal (_("illegal pathname found in archive member: %s"),
3599 bfd_get_filename (this_element));
3600 status = 1;
3601 goto cleanup_and_exit;
3604 /* Create an output file for this member. */
3605 output_name = concat (dir, "/",
3606 bfd_get_filename (this_element), (char *) 0);
3608 /* If the file already exists, make another temp dir. */
3609 if (stat (output_name, &buf) >= 0)
3611 char * tmpdir = make_tempdir (output_name);
3613 free (output_name);
3614 if (tmpdir == NULL)
3616 non_fatal (_("cannot create tempdir for archive copying (error: %s)"),
3617 strerror (errno));
3618 status = 1;
3619 goto cleanup_and_exit;
3622 l = (struct name_list *) xmalloc (sizeof (struct name_list));
3623 l->name = tmpdir;
3624 l->next = list;
3625 l->obfd = NULL;
3626 list = l;
3627 output_name = concat (tmpdir, "/",
3628 bfd_get_filename (this_element), (char *) 0);
3631 if (preserve_dates)
3633 memset (&buf, 0, sizeof (buf));
3634 stat_status = bfd_stat_arch_elt (this_element, &buf);
3636 if (stat_status != 0)
3637 non_fatal (_("internal stat error on %s"),
3638 bfd_get_filename (this_element));
3641 l = (struct name_list *) xmalloc (sizeof (struct name_list));
3642 l->name = output_name;
3643 l->next = list;
3644 l->obfd = NULL;
3645 list = l;
3647 ok_object = bfd_check_format (this_element, bfd_object);
3648 if (!ok_object)
3649 bfd_nonfatal_message (NULL, this_element, NULL,
3650 _("Unable to recognise the format of file"));
3652 /* PR binutils/3110: Cope with archives
3653 containing multiple target types. */
3654 if (force_output_target || !ok_object)
3655 output_bfd = bfd_openw (output_name, output_target);
3656 else
3657 output_bfd = bfd_openw (output_name, bfd_get_target (this_element));
3659 if (output_bfd == NULL)
3661 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
3662 status = 1;
3663 goto cleanup_and_exit;
3666 if (ok_object)
3668 del = !copy_object (this_element, output_bfd, input_arch);
3670 if (del && bfd_get_arch (this_element) == bfd_arch_unknown)
3671 /* Try again as an unknown object file. */
3672 ok_object = false;
3673 else if (!bfd_close (output_bfd))
3675 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
3676 /* Error in new object file. Don't change archive. */
3677 status = 1;
3681 if (!ok_object)
3683 del = !copy_unknown_object (this_element, output_bfd);
3684 if (!bfd_close_all_done (output_bfd))
3686 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
3687 /* Error in new object file. Don't change archive. */
3688 status = 1;
3692 if (del)
3694 unlink (output_name);
3695 status = 1;
3697 else
3699 if (preserve_dates && stat_status == 0)
3700 set_times (output_name, &buf);
3702 /* Open the newly output file and attach to our list. */
3703 output_bfd = bfd_openr (output_name, output_target);
3705 l->obfd = output_bfd;
3707 *ptr = output_bfd;
3708 ptr = &output_bfd->archive_next;
3710 last_element = this_element;
3712 this_element = bfd_openr_next_archived_file (ibfd, last_element);
3714 bfd_close (last_element);
3717 *ptr = NULL;
3719 filename = bfd_get_filename (obfd);
3720 if (!bfd_close (obfd))
3722 status = 1;
3723 bfd_nonfatal_message (filename, NULL, NULL, NULL);
3726 filename = bfd_get_filename (ibfd);
3727 if (!bfd_close (ibfd))
3729 status = 1;
3730 bfd_nonfatal_message (filename, NULL, NULL, NULL);
3733 cleanup_and_exit:
3734 /* Delete all the files that we opened. */
3736 struct name_list * next;
3738 for (l = list; l != NULL; l = next)
3740 if (l->obfd == NULL)
3741 rmdir (l->name);
3742 else
3744 bfd_close (l->obfd);
3745 unlink (l->name);
3747 next = l->next;
3748 free (l);
3752 rmdir (dir);
3753 free (dir);
3756 static void
3757 set_long_section_mode (bfd *output_bfd, bfd *input_bfd, enum long_section_name_handling style)
3759 /* This is only relevant to Coff targets. */
3760 if (bfd_get_flavour (output_bfd) == bfd_target_coff_flavour)
3762 if (style == KEEP
3763 && bfd_get_flavour (input_bfd) == bfd_target_coff_flavour)
3764 style = bfd_coff_long_section_names (input_bfd) ? ENABLE : DISABLE;
3765 bfd_coff_set_long_section_names (output_bfd, style != DISABLE);
3769 /* The top-level control. */
3771 static void
3772 copy_file (const char *input_filename, const char *output_filename, int ofd,
3773 struct stat *in_stat, const char *input_target,
3774 const char *output_target, const bfd_arch_info_type *input_arch)
3776 bfd *ibfd;
3777 char **obj_matching;
3778 char **core_matching;
3779 off_t size = get_file_size (input_filename);
3781 if (size < 1)
3783 if (size == 0)
3784 non_fatal (_("error: the input file '%s' is empty"),
3785 input_filename);
3786 status = 1;
3787 return;
3790 /* To allow us to do "strip *" without dying on the first
3791 non-object file, failures are nonfatal. */
3792 ibfd = bfd_openr (input_filename, input_target);
3793 if (ibfd == NULL || bfd_stat (ibfd, in_stat) != 0)
3795 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
3796 status = 1;
3797 return;
3800 switch (do_debug_sections)
3802 case compress:
3803 case compress_zlib:
3804 case compress_gnu_zlib:
3805 case compress_gabi_zlib:
3806 ibfd->flags |= BFD_COMPRESS;
3807 /* Don't check if input is ELF here since this information is
3808 only available after bfd_check_format_matches is called. */
3809 if (do_debug_sections != compress_gnu_zlib)
3810 ibfd->flags |= BFD_COMPRESS_GABI;
3811 break;
3812 case compress_zstd:
3813 ibfd->flags |= BFD_COMPRESS | BFD_COMPRESS_GABI | BFD_COMPRESS_ZSTD;
3814 #ifndef HAVE_ZSTD
3815 fatal (_ ("--compress-debug-sections=zstd: binutils is not built with "
3816 "zstd support"));
3817 #endif
3818 break;
3819 case decompress:
3820 ibfd->flags |= BFD_DECOMPRESS;
3821 break;
3822 default:
3823 break;
3826 switch (do_elf_stt_common)
3828 case elf_stt_common:
3829 ibfd->flags |= BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON;
3830 break;
3831 break;
3832 case no_elf_stt_common:
3833 ibfd->flags |= BFD_CONVERT_ELF_COMMON;
3834 break;
3835 default:
3836 break;
3839 if (bfd_check_format (ibfd, bfd_archive))
3841 bool force_output_target;
3842 bfd *obfd;
3844 /* bfd_get_target does not return the correct value until
3845 bfd_check_format succeeds. */
3846 if (output_target == NULL)
3848 output_target = bfd_get_target (ibfd);
3849 force_output_target = false;
3851 else
3852 force_output_target = true;
3854 if (ofd >= 0)
3855 obfd = bfd_fdopenw (output_filename, output_target, ofd);
3856 else
3857 obfd = bfd_openw (output_filename, output_target);
3859 if (obfd == NULL)
3861 close (ofd);
3862 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3863 status = 1;
3864 return;
3867 if (gnu_debuglink_filename != NULL)
3869 non_fatal (_("--add-gnu-debuglink ignored for archive %s"),
3870 bfd_get_filename (ibfd));
3871 gnu_debuglink_filename = NULL;
3874 /* This is a no-op on non-Coff targets. */
3875 set_long_section_mode (obfd, ibfd, long_section_names);
3877 copy_archive (ibfd, obfd, output_target, force_output_target, input_arch);
3879 else if (bfd_check_format_matches (ibfd, bfd_object, &obj_matching))
3881 bfd *obfd;
3882 do_copy:
3884 /* bfd_get_target does not return the correct value until
3885 bfd_check_format succeeds. */
3886 if (output_target == NULL)
3887 output_target = bfd_get_target (ibfd);
3889 if (ofd >= 0)
3890 obfd = bfd_fdopenw (output_filename, output_target, ofd);
3891 else
3892 obfd = bfd_openw (output_filename, output_target);
3894 if (obfd == NULL)
3896 close (ofd);
3897 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3898 status = 1;
3899 return;
3902 /* This is a no-op on non-Coff targets. */
3903 set_long_section_mode (obfd, ibfd, long_section_names);
3905 if (! copy_object (ibfd, obfd, input_arch))
3906 status = 1;
3908 /* PR 17512: file: 0f15796a.
3909 If the file could not be copied it may not be in a writeable
3910 state. So use bfd_close_all_done to avoid the possibility of
3911 writing uninitialised data into the file. */
3912 if (! (status ? bfd_close_all_done (obfd) : bfd_close (obfd)))
3914 status = 1;
3915 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3916 return;
3919 if (!bfd_close (ibfd))
3921 status = 1;
3922 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
3923 return;
3926 else
3928 bfd_error_type obj_error = bfd_get_error ();
3929 bfd_error_type core_error;
3931 if (bfd_check_format_matches (ibfd, bfd_core, &core_matching))
3933 /* This probably can't happen.. */
3934 if (obj_error == bfd_error_file_ambiguously_recognized)
3935 free (obj_matching);
3936 goto do_copy;
3939 core_error = bfd_get_error ();
3940 /* Report the object error in preference to the core error. */
3941 if (obj_error != core_error)
3942 bfd_set_error (obj_error);
3944 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
3946 if (obj_error == bfd_error_file_ambiguously_recognized)
3947 list_matching_formats (obj_matching);
3948 if (core_error == bfd_error_file_ambiguously_recognized)
3949 list_matching_formats (core_matching);
3951 status = 1;
3955 /* Add a name to the section renaming list. */
3957 static void
3958 add_section_rename (const char * old_name, const char * new_name,
3959 flagword flags)
3961 section_rename * srename;
3963 /* Check for conflicts first. */
3964 for (srename = section_rename_list; srename != NULL; srename = srename->next)
3965 if (strcmp (srename->old_name, old_name) == 0)
3967 /* Silently ignore duplicate definitions. */
3968 if (strcmp (srename->new_name, new_name) == 0
3969 && srename->flags == flags)
3970 return;
3972 fatal (_("Multiple renames of section %s"), old_name);
3975 srename = (section_rename *) xmalloc (sizeof (* srename));
3977 srename->old_name = old_name;
3978 srename->new_name = new_name;
3979 srename->flags = flags;
3980 srename->next = section_rename_list;
3982 section_rename_list = srename;
3985 /* Check the section rename list for a new name of the input section
3986 called OLD_NAME. Returns the new name if one is found and sets
3987 RETURNED_FLAGS if non-NULL to the flags to be used for this section. */
3989 static const char *
3990 find_section_rename (const char *old_name, flagword *returned_flags)
3992 const section_rename *srename;
3994 for (srename = section_rename_list; srename != NULL; srename = srename->next)
3995 if (strcmp (srename->old_name, old_name) == 0)
3997 if (returned_flags != NULL && srename->flags != (flagword) -1)
3998 *returned_flags = srename->flags;
4000 return srename->new_name;
4003 return old_name;
4006 /* Once each of the sections is copied, we may still need to do some
4007 finalization work for private section headers. Do that here. */
4009 static void
4010 setup_bfd_headers (bfd *ibfd, bfd *obfd)
4012 /* Allow the BFD backend to copy any private data it understands
4013 from the input section to the output section. */
4014 if (! bfd_copy_private_header_data (ibfd, obfd))
4016 status = 1;
4017 bfd_nonfatal_message (NULL, ibfd, NULL,
4018 _("error in private header data"));
4019 return;
4022 /* All went well. */
4023 return;
4026 /* Create a section in OBFD with the same
4027 name and attributes as ISECTION in IBFD. */
4029 static void
4030 setup_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
4032 bfd *obfd = (bfd *) obfdarg;
4033 struct section_list *p;
4034 sec_ptr osection;
4035 bfd_size_type size;
4036 bfd_vma vma;
4037 bfd_vma lma;
4038 flagword flags;
4039 const char *err = NULL;
4040 const char * name;
4041 const char * new_name;
4042 char *prefix = NULL;
4043 bool make_nobits;
4044 unsigned int alignment;
4046 if (is_strip_section (ibfd, isection))
4047 return;
4049 /* Get the, possibly new, name of the output section. */
4050 name = bfd_section_name (isection);
4051 flags = bfd_section_flags (isection);
4052 if (bfd_get_flavour (ibfd) != bfd_get_flavour (obfd))
4054 flags &= bfd_applicable_section_flags (ibfd);
4055 flags &= bfd_applicable_section_flags (obfd);
4057 new_name = find_section_rename (name, &flags);
4058 if (new_name != name)
4060 name = new_name;
4061 flags = check_new_section_flags (flags, obfd, name);
4064 /* Prefix sections. */
4065 if (prefix_alloc_sections_string
4066 && (bfd_section_flags (isection) & SEC_ALLOC) != 0)
4067 prefix = prefix_alloc_sections_string;
4068 else if (prefix_sections_string)
4069 prefix = prefix_sections_string;
4071 if (prefix)
4073 char *n;
4075 n = (char *) xmalloc (strlen (prefix) + strlen (name) + 1);
4076 strcpy (n, prefix);
4077 strcat (n, name);
4078 name = n;
4081 make_nobits = false;
4083 p = find_section_list (bfd_section_name (isection), false,
4084 SECTION_CONTEXT_SET_FLAGS);
4085 if (p != NULL)
4087 flags = p->flags | (flags & (SEC_HAS_CONTENTS | SEC_RELOC));
4088 flags = check_new_section_flags (flags, obfd, bfd_section_name (isection));
4090 else if (strip_symbols == STRIP_NONDEBUG
4091 && (flags & (SEC_ALLOC | SEC_GROUP)) != 0
4092 && !is_nondebug_keep_contents_section (ibfd, isection))
4094 flagword clr = SEC_HAS_CONTENTS | SEC_LOAD | SEC_GROUP;
4096 if (bfd_get_flavour (obfd) == bfd_target_elf_flavour)
4098 /* PR 29532: Copy group sections intact as otherwise we end up with
4099 empty groups. This prevents separate debug info files from
4100 being used with GDB, if they were based upon files that
4101 originally contained groups. */
4102 if (flags & SEC_GROUP)
4103 clr = SEC_LOAD;
4104 else
4105 make_nobits = true;
4107 /* Twiddle the input section flags so that it seems to
4108 elf.c:copy_private_bfd_data that section flags have not
4109 changed between input and output sections. This hack
4110 prevents wholesale rewriting of the program headers. */
4111 isection->flags &= ~clr;
4113 flags &= ~clr;
4116 osection = bfd_make_section_anyway_with_flags (obfd, name, flags);
4118 if (osection == NULL)
4120 err = _("failed to create output section");
4121 goto loser;
4124 size = bfd_section_size (isection);
4125 size = bfd_convert_section_size (ibfd, isection, obfd, size);
4126 if (copy_byte >= 0)
4127 size = (size + interleave - 1) / interleave * copy_width;
4128 else if (extract_symbol)
4129 size = 0;
4130 if (!bfd_set_section_size (osection, size))
4131 err = _("failed to set size");
4133 vma = bfd_section_vma (isection);
4134 p = find_section_list (bfd_section_name (isection), false,
4135 SECTION_CONTEXT_ALTER_VMA | SECTION_CONTEXT_SET_VMA);
4136 if (p != NULL)
4138 if (p->context & SECTION_CONTEXT_SET_VMA)
4139 vma = p->vma_val;
4140 else
4141 vma += p->vma_val;
4143 else
4144 vma += change_section_address;
4146 if (!bfd_set_section_vma (osection, vma))
4147 err = _("failed to set vma");
4149 lma = isection->lma;
4150 p = find_section_list (bfd_section_name (isection), false,
4151 SECTION_CONTEXT_ALTER_LMA | SECTION_CONTEXT_SET_LMA);
4152 if (p != NULL)
4154 if (p->context & SECTION_CONTEXT_ALTER_LMA)
4155 lma += p->lma_val;
4156 else
4157 lma = p->lma_val;
4159 else
4160 lma += change_section_address;
4162 osection->lma = lma;
4164 p = find_section_list (bfd_section_name (isection), false,
4165 SECTION_CONTEXT_SET_ALIGNMENT);
4166 if (p != NULL)
4167 alignment = p->alignment;
4168 else
4169 alignment = bfd_section_alignment (isection);
4171 /* FIXME: This is probably not enough. If we change the LMA we
4172 may have to recompute the header for the file as well. */
4173 if (!bfd_set_section_alignment (osection, alignment))
4174 err = _("failed to set alignment");
4176 /* Copy merge entity size. */
4177 osection->entsize = isection->entsize;
4179 /* Copy compress status. */
4180 osection->compress_status = isection->compress_status;
4182 /* This used to be mangle_section; we do here to avoid using
4183 bfd_get_section_by_name since some formats allow multiple
4184 sections with the same name. */
4185 isection->output_section = osection;
4186 isection->output_offset = 0;
4188 if ((isection->flags & SEC_GROUP) != 0)
4190 asymbol *gsym = group_signature (isection);
4192 if (gsym != NULL)
4194 gsym->flags |= BSF_KEEP;
4195 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
4196 elf_group_id (isection) = gsym;
4200 /* Allow the BFD backend to copy any private data it understands
4201 from the input section to the output section. */
4202 if (!bfd_copy_private_section_data (ibfd, isection, obfd, osection))
4203 err = _("failed to copy private data");
4205 if (make_nobits)
4206 elf_section_type (osection) = SHT_NOBITS;
4208 if (!err)
4209 return;
4211 loser:
4212 status = 1;
4213 bfd_nonfatal_message (NULL, obfd, osection, err);
4216 /* Return TRUE if input section ISECTION should be skipped. */
4218 static bool
4219 skip_section (bfd *ibfd, sec_ptr isection, bool skip_copy)
4221 sec_ptr osection;
4222 bfd_size_type size;
4223 flagword flags;
4225 /* If we have already failed earlier on,
4226 do not keep on generating complaints now. */
4227 if (status != 0)
4228 return true;
4230 if (extract_symbol)
4231 return true;
4233 if (is_strip_section (ibfd, isection))
4234 return true;
4236 if (is_update_section (ibfd, isection))
4237 return true;
4239 /* When merging a note section we skip the copying of the contents,
4240 but not the copying of the relocs associated with the contents. */
4241 if (skip_copy && is_mergeable_note_section (ibfd, isection))
4242 return true;
4244 flags = bfd_section_flags (isection);
4245 if ((flags & SEC_GROUP) != 0)
4246 return true;
4248 osection = isection->output_section;
4249 size = bfd_section_size (isection);
4251 if (size == 0 || osection == 0)
4252 return true;
4254 return false;
4257 /* Add section SECTION_PATTERN to the list of sections that will have their
4258 relocations removed. */
4260 static void
4261 handle_remove_relocations_option (const char *section_pattern)
4263 find_section_list (section_pattern, true, SECTION_CONTEXT_REMOVE_RELOCS);
4266 /* Return TRUE if ISECTION from IBFD should have its relocations removed,
4267 otherwise return FALSE. If the user has requested that relocations be
4268 removed from a section that does not have relocations then this
4269 function will still return TRUE. */
4271 static bool
4272 discard_relocations (bfd *ibfd ATTRIBUTE_UNUSED, asection *isection)
4274 return (find_section_list (bfd_section_name (isection), false,
4275 SECTION_CONTEXT_REMOVE_RELOCS) != NULL);
4278 /* Wrapper for dealing with --remove-section (-R) command line arguments.
4279 A special case is detected here, if the user asks to remove a relocation
4280 section (one starting with ".rela" or ".rel") then this removal must
4281 be done using a different technique in a relocatable object. */
4283 static void
4284 handle_remove_section_option (const char *section_pattern)
4286 find_section_list (section_pattern, true, SECTION_CONTEXT_REMOVE);
4287 if (startswith (section_pattern, ".rel"))
4289 section_pattern += 4;
4290 if (*section_pattern == 'a')
4291 section_pattern++;
4292 if (*section_pattern)
4293 handle_remove_relocations_option (section_pattern);
4295 sections_removed = true;
4298 /* Copy relocations in input section ISECTION of IBFD to an output
4299 section with the same name in OBFDARG. If stripping then don't
4300 copy any relocation info. */
4302 static void
4303 copy_relocations_in_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
4305 bfd *obfd = (bfd *) obfdarg;
4306 long relsize;
4307 arelent **relpp;
4308 long relcount;
4309 sec_ptr osection;
4311 if (skip_section (ibfd, isection, false))
4312 return;
4314 osection = isection->output_section;
4316 /* Core files and DWO files do not need to be relocated. */
4317 if (bfd_get_format (obfd) == bfd_core
4318 || strip_symbols == STRIP_NONDWO
4319 || discard_relocations (ibfd, isection))
4320 relsize = 0;
4321 else
4323 relsize = bfd_get_reloc_upper_bound (ibfd, isection);
4325 if (relsize < 0)
4327 /* Do not complain if the target does not support relocations. */
4328 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation)
4329 relsize = 0;
4330 else
4332 status = 1;
4333 bfd_nonfatal_message (NULL, ibfd, isection, NULL);
4334 return;
4339 if (relsize == 0)
4341 bfd_set_reloc (obfd, osection, NULL, 0);
4342 osection->flags &= ~SEC_RELOC;
4344 else
4346 if (isection->orelocation != NULL)
4348 /* Some other function has already set up the output relocs
4349 for us, so scan those instead of the default relocs. */
4350 relcount = isection->reloc_count;
4351 relpp = isection->orelocation;
4353 else
4355 relpp = bfd_xalloc (obfd, relsize);
4356 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp);
4357 if (relcount < 0)
4359 status = 1;
4360 bfd_nonfatal_message (NULL, ibfd, isection,
4361 _("relocation count is negative"));
4362 return;
4366 if (strip_symbols == STRIP_ALL)
4368 /* Remove relocations which are not in
4369 keep_strip_specific_list. */
4370 arelent **w_relpp;
4371 long i;
4373 for (w_relpp = relpp, i = 0; i < relcount; i++)
4374 /* PR 17512: file: 9e907e0c. */
4375 if (relpp[i]->sym_ptr_ptr
4376 /* PR 20096 */
4377 && *relpp[i]->sym_ptr_ptr
4378 && is_specified_symbol (bfd_asymbol_name (*relpp[i]->sym_ptr_ptr),
4379 keep_specific_htab))
4380 *w_relpp++ = relpp[i];
4381 relcount = w_relpp - relpp;
4382 *w_relpp = 0;
4385 bfd_set_reloc (obfd, osection, relcount == 0 ? NULL : relpp, relcount);
4386 if (relcount == 0)
4387 osection->flags &= ~SEC_RELOC;
4391 /* Copy the data of input section ISECTION of IBFD
4392 to an output section with the same name in OBFD. */
4394 static void
4395 copy_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
4397 bfd *obfd = (bfd *) obfdarg;
4398 struct section_list *p;
4399 sec_ptr osection;
4400 bfd_size_type size;
4402 if (skip_section (ibfd, isection, true))
4403 return;
4405 osection = isection->output_section;
4406 /* The output SHF_COMPRESSED section size is different from input if
4407 ELF classes of input and output aren't the same. We can't use
4408 the output section size since --interleave will shrink the output
4409 section. Size will be updated if the section is converted. */
4410 size = bfd_section_size (isection);
4412 if (bfd_section_flags (isection) & SEC_HAS_CONTENTS
4413 && bfd_section_flags (osection) & SEC_HAS_CONTENTS)
4415 bfd_byte *memhunk = NULL;
4417 if (!bfd_get_full_section_contents (ibfd, isection, &memhunk)
4418 || !bfd_convert_section_contents (ibfd, isection, obfd,
4419 &memhunk, &size))
4421 status = 1;
4422 bfd_nonfatal_message (NULL, ibfd, isection, NULL);
4423 free (memhunk);
4424 return;
4427 if (reverse_bytes)
4429 /* We don't handle leftover bytes (too many possible behaviors,
4430 and we don't know what the user wants). The section length
4431 must be a multiple of the number of bytes to swap. */
4432 if ((size % reverse_bytes) == 0)
4434 unsigned long i, j;
4435 bfd_byte b;
4437 for (i = 0; i < size; i += reverse_bytes)
4438 for (j = 0; j < (unsigned long)(reverse_bytes / 2); j++)
4440 bfd_byte *m = (bfd_byte *) memhunk;
4442 b = m[i + j];
4443 m[i + j] = m[(i + reverse_bytes) - (j + 1)];
4444 m[(i + reverse_bytes) - (j + 1)] = b;
4447 else
4448 /* User must pad the section up in order to do this. */
4449 fatal (_("cannot reverse bytes: length of section %s must be evenly divisible by %d"),
4450 bfd_section_name (isection), reverse_bytes);
4453 if (copy_byte >= 0)
4455 /* Keep only every `copy_byte'th byte in MEMHUNK. */
4456 char *from = (char *) memhunk + copy_byte;
4457 char *to = (char *) memhunk;
4458 char *end = (char *) memhunk + size;
4459 int i;
4461 /* If the section address is not exactly divisible by the interleave,
4462 then we must bias the from address. If the copy_byte is less than
4463 the bias, then we must skip forward one interleave, and increment
4464 the final lma. */
4465 int extra = isection->lma % interleave;
4466 from -= extra;
4467 if (copy_byte < extra)
4468 from += interleave;
4470 for (; from < end; from += interleave)
4471 for (i = 0; i < copy_width; i++)
4473 if (&from[i] >= end)
4474 break;
4475 *to++ = from[i];
4478 size = (size + interleave - 1 - copy_byte) / interleave * copy_width;
4479 osection->lma /= interleave;
4480 if (copy_byte < extra)
4481 osection->lma++;
4484 if (!bfd_set_section_contents (obfd, osection, memhunk, 0, size))
4486 status = 1;
4487 bfd_nonfatal_message (NULL, obfd, osection, NULL);
4488 free (memhunk);
4489 return;
4491 free (memhunk);
4493 else if ((p = find_section_list (bfd_section_name (isection),
4494 false, SECTION_CONTEXT_SET_FLAGS)) != NULL
4495 && (p->flags & SEC_HAS_CONTENTS) != 0)
4497 void *memhunk = xmalloc (size);
4499 /* We don't permit the user to turn off the SEC_HAS_CONTENTS
4500 flag--they can just remove the section entirely and add it
4501 back again. However, we do permit them to turn on the
4502 SEC_HAS_CONTENTS flag, and take it to mean that the section
4503 contents should be zeroed out. */
4505 memset (memhunk, 0, size);
4506 if (! bfd_set_section_contents (obfd, osection, memhunk, 0, size))
4508 status = 1;
4509 bfd_nonfatal_message (NULL, obfd, osection, NULL);
4510 free (memhunk);
4511 return;
4513 free (memhunk);
4517 /* Get all the sections. This is used when --gap-fill or --pad-to is
4518 used. */
4520 static void
4521 get_sections (bfd *obfd ATTRIBUTE_UNUSED, asection *osection, void *secppparg)
4523 asection ***secppp = (asection ***) secppparg;
4525 **secppp = osection;
4526 ++(*secppp);
4529 /* Sort sections by LMA. This is called via qsort, and is used when
4530 --gap-fill or --pad-to is used. We force non loadable or empty
4531 sections to the front, where they are easier to ignore. */
4533 static int
4534 compare_section_lma (const void *arg1, const void *arg2)
4536 const asection *sec1 = *(const asection **) arg1;
4537 const asection *sec2 = *(const asection **) arg2;
4538 flagword flags1, flags2;
4540 /* Sort non loadable sections to the front. */
4541 flags1 = sec1->flags;
4542 flags2 = sec2->flags;
4543 if ((flags1 & SEC_HAS_CONTENTS) == 0
4544 || (flags1 & SEC_LOAD) == 0)
4546 if ((flags2 & SEC_HAS_CONTENTS) != 0
4547 && (flags2 & SEC_LOAD) != 0)
4548 return -1;
4550 else
4552 if ((flags2 & SEC_HAS_CONTENTS) == 0
4553 || (flags2 & SEC_LOAD) == 0)
4554 return 1;
4557 /* Sort sections by LMA. */
4558 if (sec1->lma > sec2->lma)
4559 return 1;
4560 if (sec1->lma < sec2->lma)
4561 return -1;
4563 /* Sort sections with the same LMA by size. */
4564 if (bfd_section_size (sec1) > bfd_section_size (sec2))
4565 return 1;
4566 if (bfd_section_size (sec1) < bfd_section_size (sec2))
4567 return -1;
4569 if (sec1->id > sec2->id)
4570 return 1;
4571 if (sec1->id < sec2->id)
4572 return -1;
4573 return 0;
4576 /* Mark all the symbols which will be used in output relocations with
4577 the BSF_KEEP flag so that those symbols will not be stripped.
4579 Ignore relocations which will not appear in the output file. */
4581 static void
4582 mark_symbols_used_in_relocations (bfd *ibfd, sec_ptr isection, void *symbolsarg)
4584 asymbol **symbols = (asymbol **) symbolsarg;
4585 long relsize;
4586 arelent **relpp;
4587 long relcount, i;
4589 /* Ignore an input section with no corresponding output section. */
4590 if (isection->output_section == NULL)
4591 return;
4593 relsize = bfd_get_reloc_upper_bound (ibfd, isection);
4594 if (relsize < 0)
4596 /* Do not complain if the target does not support relocations. */
4597 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation)
4598 return;
4599 bfd_fatal (bfd_get_filename (ibfd));
4602 if (relsize == 0)
4603 return;
4605 relpp = (arelent **) xmalloc (relsize);
4606 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, symbols);
4607 if (relcount < 0)
4608 bfd_fatal (bfd_get_filename (ibfd));
4610 /* Examine each symbol used in a relocation. If it's not one of the
4611 special bfd section symbols, then mark it with BSF_KEEP. */
4612 for (i = 0; i < relcount; i++)
4614 /* See PRs 20923 and 20930 for reproducers for the NULL tests. */
4615 if (relpp[i]->sym_ptr_ptr != NULL
4616 && * relpp[i]->sym_ptr_ptr != NULL
4617 && *relpp[i]->sym_ptr_ptr != bfd_com_section_ptr->symbol
4618 && *relpp[i]->sym_ptr_ptr != bfd_abs_section_ptr->symbol
4619 && *relpp[i]->sym_ptr_ptr != bfd_und_section_ptr->symbol)
4620 (*relpp[i]->sym_ptr_ptr)->flags |= BSF_KEEP;
4623 free (relpp);
4626 /* Write out debugging information. */
4628 static bool
4629 write_debugging_info (bfd *obfd, void *dhandle,
4630 long *symcountp ATTRIBUTE_UNUSED,
4631 asymbol ***symppp ATTRIBUTE_UNUSED)
4633 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour
4634 || bfd_get_flavour (obfd) == bfd_target_elf_flavour)
4636 bfd_byte *syms, *strings = NULL;
4637 bfd_size_type symsize, stringsize;
4638 asection *stabsec, *stabstrsec;
4639 flagword flags;
4641 if (! write_stabs_in_sections_debugging_info (obfd, dhandle, &syms,
4642 &symsize, &strings,
4643 &stringsize))
4644 return false;
4646 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DEBUGGING;
4647 stabsec = bfd_make_section_with_flags (obfd, ".stab", flags);
4648 stabstrsec = bfd_make_section_with_flags (obfd, ".stabstr", flags);
4649 if (stabsec == NULL
4650 || stabstrsec == NULL
4651 || !bfd_set_section_size (stabsec, symsize)
4652 || !bfd_set_section_size (stabstrsec, stringsize)
4653 || !bfd_set_section_alignment (stabsec, 2)
4654 || !bfd_set_section_alignment (stabstrsec, 0))
4656 bfd_nonfatal_message (NULL, obfd, NULL,
4657 _("can't create debugging section"));
4658 free (strings);
4659 return false;
4662 /* We can get away with setting the section contents now because
4663 the next thing the caller is going to do is copy over the
4664 real sections. We may someday have to split the contents
4665 setting out of this function. */
4666 if (! bfd_set_section_contents (obfd, stabsec, syms, 0, symsize)
4667 || ! bfd_set_section_contents (obfd, stabstrsec, strings, 0,
4668 stringsize))
4670 bfd_nonfatal_message (NULL, obfd, NULL,
4671 _("can't set debugging section contents"));
4672 free (strings);
4673 return false;
4676 return true;
4679 bfd_nonfatal_message (NULL, obfd, NULL,
4680 _("don't know how to write debugging information for %s"),
4681 bfd_get_target (obfd));
4682 return false;
4685 /* If neither -D nor -U was specified explicitly,
4686 then use the configured default. */
4687 static void
4688 default_deterministic (void)
4690 if (deterministic < 0)
4691 deterministic = DEFAULT_AR_DETERMINISTIC;
4694 static int
4695 strip_main (int argc, char *argv[])
4697 char *input_target = NULL;
4698 char *output_target = NULL;
4699 bool show_version = false;
4700 bool formats_info = false;
4701 int c;
4702 int i;
4703 char *output_file = NULL;
4704 bool merge_notes_set = false;
4706 while ((c = getopt_long (argc, argv, "I:O:F:K:MN:R:o:sSpdgxXHhVvwDU",
4707 strip_options, (int *) 0)) != EOF)
4709 switch (c)
4711 case 'I':
4712 input_target = optarg;
4713 break;
4714 case 'O':
4715 output_target = optarg;
4716 break;
4717 case 'F':
4718 input_target = output_target = optarg;
4719 break;
4720 case 'R':
4721 handle_remove_section_option (optarg);
4722 break;
4723 case OPTION_KEEP_SECTION:
4724 find_section_list (optarg, true, SECTION_CONTEXT_KEEP);
4725 break;
4726 case OPTION_REMOVE_RELOCS:
4727 handle_remove_relocations_option (optarg);
4728 break;
4729 case 's':
4730 strip_symbols = STRIP_ALL;
4731 break;
4732 case 'S':
4733 case 'g':
4734 case 'd': /* Historic BSD alias for -g. Used by early NetBSD. */
4735 strip_symbols = STRIP_DEBUG;
4736 break;
4737 case OPTION_STRIP_DWO:
4738 strip_symbols = STRIP_DWO;
4739 break;
4740 case OPTION_STRIP_UNNEEDED:
4741 strip_symbols = STRIP_UNNEEDED;
4742 break;
4743 case 'K':
4744 add_specific_symbol (optarg, keep_specific_htab);
4745 break;
4746 case 'M':
4747 merge_notes = true;
4748 merge_notes_set = true;
4749 break;
4750 case OPTION_NO_MERGE_NOTES:
4751 merge_notes = false;
4752 merge_notes_set = true;
4753 break;
4754 case 'N':
4755 add_specific_symbol (optarg, strip_specific_htab);
4756 break;
4757 case 'o':
4758 output_file = optarg;
4759 break;
4760 case 'p':
4761 preserve_dates = true;
4762 break;
4763 case 'D':
4764 deterministic = true;
4765 break;
4766 case 'U':
4767 deterministic = false;
4768 break;
4769 case 'x':
4770 discard_locals = LOCALS_ALL;
4771 break;
4772 case 'X':
4773 discard_locals = LOCALS_START_L;
4774 break;
4775 case 'v':
4776 verbose = true;
4777 break;
4778 case 'V':
4779 show_version = true;
4780 break;
4781 case OPTION_FORMATS_INFO:
4782 formats_info = true;
4783 break;
4784 case OPTION_ONLY_KEEP_DEBUG:
4785 strip_symbols = STRIP_NONDEBUG;
4786 break;
4787 case OPTION_KEEP_FILE_SYMBOLS:
4788 keep_file_symbols = 1;
4789 break;
4790 case OPTION_KEEP_SECTION_SYMBOLS:
4791 keep_section_symbols = true;
4792 break;
4793 case 0:
4794 /* We've been given a long option. */
4795 break;
4796 case 'w':
4797 wildcard = true;
4798 break;
4799 case 'H':
4800 case 'h':
4801 strip_usage (stdout, 0);
4802 default:
4803 strip_usage (stderr, 1);
4807 /* If the user has not expressly chosen to merge/not-merge ELF notes
4808 then enable the merging unless we are stripping debug or dwo info. */
4809 if (! merge_notes_set
4810 && (strip_symbols == STRIP_UNDEF
4811 || strip_symbols == STRIP_ALL
4812 || strip_symbols == STRIP_UNNEEDED
4813 || strip_symbols == STRIP_NONDEBUG
4814 || strip_symbols == STRIP_NONDWO))
4815 merge_notes = true;
4817 if (formats_info)
4819 display_info ();
4820 return 0;
4823 if (show_version)
4824 print_version ("strip");
4826 default_deterministic ();
4828 /* Default is to strip all symbols. */
4829 if (strip_symbols == STRIP_UNDEF
4830 && discard_locals == LOCALS_UNDEF
4831 && htab_elements (strip_specific_htab) == 0)
4832 strip_symbols = STRIP_ALL;
4834 if (output_target == NULL)
4835 output_target = input_target;
4837 i = optind;
4838 if (i == argc
4839 || (output_file != NULL && (i + 1) < argc))
4840 strip_usage (stderr, 1);
4842 for (; i < argc; i++)
4844 int hold_status = status;
4845 struct stat statbuf;
4846 char *tmpname;
4847 int tmpfd = -1;
4848 int copyfd = -1;
4850 if (get_file_size (argv[i]) < 1)
4852 status = 1;
4853 continue;
4856 if (output_file == NULL
4857 || filename_cmp (argv[i], output_file) == 0)
4859 tmpname = make_tempname (argv[i], &tmpfd);
4860 if (tmpfd >= 0)
4861 copyfd = dup (tmpfd);
4863 else
4864 tmpname = output_file;
4866 if (tmpname == NULL)
4868 bfd_nonfatal_message (argv[i], NULL, NULL,
4869 _("could not create temporary file to hold stripped copy"));
4870 status = 1;
4871 continue;
4874 status = 0;
4875 copy_file (argv[i], tmpname, tmpfd, &statbuf, input_target,
4876 output_target, NULL);
4877 if (status == 0)
4879 const char *oname = output_file ? output_file : argv[i];
4880 status = smart_rename (tmpname, oname, copyfd,
4881 &statbuf, preserve_dates) != 0;
4882 if (status == 0)
4883 status = hold_status;
4885 else
4887 if (copyfd >= 0)
4888 close (copyfd);
4889 unlink_if_ordinary (tmpname);
4891 if (output_file != tmpname)
4892 free (tmpname);
4895 return status;
4898 /* Set up PE subsystem. */
4900 static void
4901 set_pe_subsystem (const char *s)
4903 const char *version, *subsystem;
4904 size_t i;
4905 static const struct
4907 const char *name;
4908 const char set_def;
4909 const short value;
4911 v[] =
4913 { "native", 0, IMAGE_SUBSYSTEM_NATIVE },
4914 { "windows", 0, IMAGE_SUBSYSTEM_WINDOWS_GUI },
4915 { "console", 0, IMAGE_SUBSYSTEM_WINDOWS_CUI },
4916 { "posix", 0, IMAGE_SUBSYSTEM_POSIX_CUI },
4917 { "wince", 0, IMAGE_SUBSYSTEM_WINDOWS_CE_GUI },
4918 { "efi-app", 1, IMAGE_SUBSYSTEM_EFI_APPLICATION },
4919 { "efi-bsd", 1, IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER },
4920 { "efi-rtd", 1, IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER },
4921 { "sal-rtd", 1, IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER },
4922 { "xbox", 0, IMAGE_SUBSYSTEM_XBOX }
4924 short value;
4925 char *copy;
4926 int set_def = -1;
4928 /* Check for the presence of a version number. */
4929 version = strchr (s, ':');
4930 if (version == NULL)
4931 subsystem = s;
4932 else
4934 int len = version - s;
4935 copy = xstrdup (s);
4936 subsystem = copy;
4937 copy[len] = '\0';
4938 version = copy + 1 + len;
4939 pe_major_subsystem_version = strtoul (version, &copy, 0);
4940 if (*copy == '.')
4941 pe_minor_subsystem_version = strtoul (copy + 1, &copy, 0);
4942 if (*copy != '\0')
4943 non_fatal (_("%s: bad version in PE subsystem"), s);
4946 /* Check for numeric subsystem. */
4947 value = (short) strtol (subsystem, &copy, 0);
4948 if (*copy == '\0')
4950 for (i = 0; i < ARRAY_SIZE (v); i++)
4951 if (v[i].value == value)
4953 pe_subsystem = value;
4954 set_def = v[i].set_def;
4955 break;
4958 else
4960 /* Search for subsystem by name. */
4961 for (i = 0; i < ARRAY_SIZE (v); i++)
4962 if (strcmp (subsystem, v[i].name) == 0)
4964 pe_subsystem = v[i].value;
4965 set_def = v[i].set_def;
4966 break;
4970 switch (set_def)
4972 case -1:
4973 fatal (_("unknown PE subsystem: %s"), s);
4974 break;
4975 case 0:
4976 break;
4977 default:
4978 if (pe_file_alignment == (bfd_vma) -1)
4979 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
4980 if (pe_section_alignment == (bfd_vma) -1)
4981 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
4982 break;
4984 if (s != subsystem)
4985 free ((char *) subsystem);
4988 /* Convert EFI target to PEI target. */
4990 static int
4991 convert_efi_target (char **targ)
4993 size_t len;
4994 char *pei;
4995 char *efi = *targ + 4;
4996 int subsys = -1;
4998 if (startswith (efi, "app-"))
4999 subsys = IMAGE_SUBSYSTEM_EFI_APPLICATION;
5000 else if (startswith (efi, "bsdrv-"))
5002 subsys = IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER;
5003 efi += 2;
5005 else if (startswith (efi, "rtdrv-"))
5007 subsys = IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER;
5008 efi += 2;
5010 else
5011 return subsys;
5013 len = strlen (efi);
5014 pei = xmalloc (len + sizeof ("-little"));
5015 memcpy (pei, efi, len + 1);
5016 pei[0] = 'p';
5017 pei[1] = 'e';
5018 pei[2] = 'i';
5020 if (strcmp (efi + 4, "ia32") == 0)
5022 /* Change ia32 to i386. */
5023 pei[5]= '3';
5024 pei[6]= '8';
5025 pei[7]= '6';
5027 else if (strcmp (efi + 4, "x86_64") == 0)
5029 /* Change x86_64 to x86-64. */
5030 pei[7] = '-';
5032 else if (strcmp (efi + 4, "aarch64") == 0)
5034 /* Change aarch64 to aarch64-little. */
5035 memcpy (pei + 4 + sizeof ("aarch64") - 1, "-little", sizeof ("-little"));
5037 *targ = pei;
5038 return subsys;
5041 /* Allocate and return a pointer to a struct section_add, initializing the
5042 structure using ARG, a string in the format "sectionname=filename".
5043 The returned structure will have its next pointer set to NEXT. The
5044 OPTION field is the name of the command line option currently being
5045 parsed, and is only used if an error needs to be reported. */
5047 static struct section_add *
5048 init_section_add (const char *arg,
5049 struct section_add *next,
5050 const char *option)
5052 struct section_add *pa;
5053 const char *s;
5055 s = strchr (arg, '=');
5056 if (s == NULL)
5057 fatal (_("bad format for %s"), option);
5059 pa = (struct section_add *) xmalloc (sizeof (struct section_add));
5060 pa->name = xstrndup (arg, s - arg);
5061 pa->filename = s + 1;
5062 pa->next = next;
5063 pa->contents = NULL;
5064 pa->size = 0;
5066 return pa;
5069 /* Load the file specified in PA, allocating memory to hold the file
5070 contents, and store a pointer to the allocated memory in the contents
5071 field of PA. The size field of PA is also updated. All errors call
5072 FATAL. */
5074 static void
5075 section_add_load_file (struct section_add *pa)
5077 size_t off, alloc;
5078 FILE *f;
5080 /* We don't use get_file_size so that we can do
5081 --add-section .note.GNU_stack=/dev/null
5082 get_file_size doesn't work on /dev/null. */
5084 f = fopen (pa->filename, FOPEN_RB);
5085 if (f == NULL)
5086 fatal (_("cannot open: %s: %s"),
5087 pa->filename, strerror (errno));
5089 off = 0;
5090 alloc = 4096;
5091 pa->contents = (bfd_byte *) xmalloc (alloc);
5092 while (!feof (f))
5094 off_t got;
5096 if (off == alloc)
5098 alloc <<= 1;
5099 pa->contents = (bfd_byte *) xrealloc (pa->contents, alloc);
5102 got = fread (pa->contents + off, 1, alloc - off, f);
5103 if (ferror (f))
5104 fatal (_("%s: fread failed"), pa->filename);
5106 off += got;
5109 pa->size = off;
5111 fclose (f);
5114 static int
5115 copy_main (int argc, char *argv[])
5117 char *input_filename = NULL;
5118 char *output_filename = NULL;
5119 char *tmpname;
5120 char *input_target = NULL;
5121 char *output_target = NULL;
5122 bool show_version = false;
5123 bool change_warn = true;
5124 bool formats_info = false;
5125 bool use_globalize = false;
5126 bool use_keep_global = false;
5127 int c;
5128 int tmpfd = -1;
5129 int copyfd;
5130 struct stat statbuf;
5131 const bfd_arch_info_type *input_arch = NULL;
5133 while ((c = getopt_long (argc, argv, "b:B:i:I:j:K:MN:s:O:d:F:L:G:R:SpgxXHhVvW:wDU",
5134 copy_options, (int *) 0)) != EOF)
5136 switch (c)
5138 case 'b':
5139 copy_byte = atoi (optarg);
5140 if (copy_byte < 0)
5141 fatal (_("byte number must be non-negative"));
5142 break;
5144 case 'B':
5145 input_arch = bfd_scan_arch (optarg);
5146 if (input_arch == NULL)
5147 fatal (_("architecture %s unknown"), optarg);
5148 break;
5150 case 'i':
5151 if (optarg)
5153 interleave = atoi (optarg);
5154 if (interleave < 1)
5155 fatal (_("interleave must be positive"));
5157 else
5158 interleave = 4;
5159 break;
5161 case OPTION_INTERLEAVE_WIDTH:
5162 copy_width = atoi (optarg);
5163 if (copy_width < 1)
5164 fatal(_("interleave width must be positive"));
5165 break;
5167 case 'I':
5168 case 's': /* "source" - 'I' is preferred */
5169 input_target = optarg;
5170 break;
5172 case 'O':
5173 case 'd': /* "destination" - 'O' is preferred */
5174 output_target = optarg;
5175 break;
5177 case 'F':
5178 input_target = output_target = optarg;
5179 break;
5181 case 'j':
5182 find_section_list (optarg, true, SECTION_CONTEXT_COPY);
5183 sections_copied = true;
5184 break;
5186 case 'R':
5187 handle_remove_section_option (optarg);
5188 break;
5190 case OPTION_KEEP_SECTION:
5191 find_section_list (optarg, true, SECTION_CONTEXT_KEEP);
5192 break;
5194 case OPTION_REMOVE_RELOCS:
5195 handle_remove_relocations_option (optarg);
5196 break;
5198 case 'S':
5199 strip_symbols = STRIP_ALL;
5200 break;
5202 case 'g':
5203 strip_symbols = STRIP_DEBUG;
5204 break;
5206 case OPTION_STRIP_DWO:
5207 strip_symbols = STRIP_DWO;
5208 break;
5210 case OPTION_STRIP_UNNEEDED:
5211 strip_symbols = STRIP_UNNEEDED;
5212 break;
5214 case OPTION_ONLY_KEEP_DEBUG:
5215 strip_symbols = STRIP_NONDEBUG;
5216 break;
5218 case OPTION_KEEP_FILE_SYMBOLS:
5219 keep_file_symbols = 1;
5220 break;
5222 case OPTION_ADD_GNU_DEBUGLINK:
5223 long_section_names = ENABLE ;
5224 gnu_debuglink_filename = optarg;
5225 break;
5227 case 'K':
5228 add_specific_symbol (optarg, keep_specific_htab);
5229 break;
5231 case 'M':
5232 merge_notes = true;
5233 break;
5234 case OPTION_NO_MERGE_NOTES:
5235 merge_notes = false;
5236 break;
5238 case 'N':
5239 add_specific_symbol (optarg, strip_specific_htab);
5240 break;
5242 case OPTION_STRIP_UNNEEDED_SYMBOL:
5243 add_specific_symbol (optarg, strip_unneeded_htab);
5244 break;
5246 case 'L':
5247 add_specific_symbol (optarg, localize_specific_htab);
5248 break;
5250 case OPTION_GLOBALIZE_SYMBOL:
5251 use_globalize = true;
5252 add_specific_symbol (optarg, globalize_specific_htab);
5253 break;
5255 case 'G':
5256 use_keep_global = true;
5257 add_specific_symbol (optarg, keepglobal_specific_htab);
5258 break;
5260 case 'W':
5261 add_specific_symbol (optarg, weaken_specific_htab);
5262 break;
5264 case 'p':
5265 preserve_dates = true;
5266 break;
5268 case 'D':
5269 deterministic = true;
5270 break;
5272 case 'U':
5273 deterministic = false;
5274 break;
5276 case 'w':
5277 wildcard = true;
5278 break;
5280 case 'x':
5281 discard_locals = LOCALS_ALL;
5282 break;
5284 case 'X':
5285 discard_locals = LOCALS_START_L;
5286 break;
5288 case 'v':
5289 verbose = true;
5290 break;
5292 case 'V':
5293 show_version = true;
5294 break;
5296 case OPTION_FORMATS_INFO:
5297 formats_info = true;
5298 break;
5300 case OPTION_WEAKEN:
5301 weaken = true;
5302 break;
5304 case OPTION_ADD_SECTION:
5305 add_sections = init_section_add (optarg, add_sections,
5306 "--add-section");
5307 section_add_load_file (add_sections);
5308 break;
5310 case OPTION_UPDATE_SECTION:
5311 update_sections = init_section_add (optarg, update_sections,
5312 "--update-section");
5313 section_add_load_file (update_sections);
5314 break;
5316 case OPTION_DUMP_SECTION:
5317 dump_sections = init_section_add (optarg, dump_sections,
5318 "--dump-section");
5319 break;
5321 case OPTION_ADD_SYMBOL:
5323 char *s, *t;
5324 struct addsym_node *newsym = xmalloc (sizeof *newsym);
5326 newsym->next = NULL;
5327 s = strchr (optarg, '=');
5328 if (s == NULL)
5329 fatal (_("bad format for %s"), "--add-symbol");
5330 t = strchr (s + 1, ':');
5332 newsym->symdef = xstrndup (optarg, s - optarg);
5333 if (t)
5335 newsym->section = xstrndup (s + 1, t - (s + 1));
5336 newsym->symval = strtol (t + 1, NULL, 0);
5338 else
5340 newsym->section = NULL;
5341 newsym->symval = strtol (s + 1, NULL, 0);
5342 t = s;
5345 t = strchr (t + 1, ',');
5346 newsym->othersym = NULL;
5347 if (t)
5348 newsym->flags = parse_symflags (t+1, &newsym->othersym);
5349 else
5350 newsym->flags = BSF_GLOBAL;
5352 /* Keep 'othersym' symbols at the front of the list. */
5353 if (newsym->othersym)
5355 newsym->next = add_sym_list;
5356 if (!add_sym_list)
5357 add_sym_tail = &newsym->next;
5358 add_sym_list = newsym;
5360 else
5362 *add_sym_tail = newsym;
5363 add_sym_tail = &newsym->next;
5365 add_symbols++;
5367 break;
5369 case OPTION_CHANGE_START:
5370 change_start = parse_vma (optarg, "--change-start");
5371 break;
5373 case OPTION_CHANGE_SECTION_ADDRESS:
5374 case OPTION_CHANGE_SECTION_LMA:
5375 case OPTION_CHANGE_SECTION_VMA:
5377 struct section_list * p;
5378 unsigned int context = 0;
5379 const char *s;
5380 int len;
5381 char *name;
5382 char *option = NULL;
5383 bfd_vma val;
5385 switch (c)
5387 case OPTION_CHANGE_SECTION_ADDRESS:
5388 option = "--change-section-address";
5389 context = SECTION_CONTEXT_ALTER_LMA | SECTION_CONTEXT_ALTER_VMA;
5390 break;
5391 case OPTION_CHANGE_SECTION_LMA:
5392 option = "--change-section-lma";
5393 context = SECTION_CONTEXT_ALTER_LMA;
5394 break;
5395 case OPTION_CHANGE_SECTION_VMA:
5396 option = "--change-section-vma";
5397 context = SECTION_CONTEXT_ALTER_VMA;
5398 break;
5401 s = strchr (optarg, '=');
5402 if (s == NULL)
5404 s = strchr (optarg, '+');
5405 if (s == NULL)
5407 s = strchr (optarg, '-');
5408 if (s == NULL)
5409 fatal (_("bad format for %s"), option);
5412 else
5414 /* Correct the context. */
5415 switch (c)
5417 case OPTION_CHANGE_SECTION_ADDRESS:
5418 context = SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_SET_VMA;
5419 break;
5420 case OPTION_CHANGE_SECTION_LMA:
5421 context = SECTION_CONTEXT_SET_LMA;
5422 break;
5423 case OPTION_CHANGE_SECTION_VMA:
5424 context = SECTION_CONTEXT_SET_VMA;
5425 break;
5429 len = s - optarg;
5430 name = (char *) xmalloc (len + 1);
5431 strncpy (name, optarg, len);
5432 name[len] = '\0';
5434 p = find_section_list (name, true, context);
5436 val = parse_vma (s + 1, option);
5437 if (*s == '-')
5438 val = - val;
5440 switch (c)
5442 case OPTION_CHANGE_SECTION_ADDRESS:
5443 p->vma_val = val;
5444 /* Fall through. */
5446 case OPTION_CHANGE_SECTION_LMA:
5447 p->lma_val = val;
5448 break;
5450 case OPTION_CHANGE_SECTION_VMA:
5451 p->vma_val = val;
5452 break;
5455 break;
5457 case OPTION_CHANGE_ADDRESSES:
5458 change_section_address = parse_vma (optarg, "--change-addresses");
5459 change_start = change_section_address;
5460 break;
5462 case OPTION_CHANGE_WARNINGS:
5463 change_warn = true;
5464 break;
5466 case OPTION_CHANGE_LEADING_CHAR:
5467 change_leading_char = true;
5468 break;
5470 case OPTION_COMPRESS_DEBUG_SECTIONS:
5471 if (optarg)
5473 if (strcasecmp (optarg, "none") == 0)
5474 do_debug_sections = decompress;
5475 else if (strcasecmp (optarg, "zlib") == 0)
5476 do_debug_sections = compress_zlib;
5477 else if (strcasecmp (optarg, "zlib-gnu") == 0)
5478 do_debug_sections = compress_gnu_zlib;
5479 else if (strcasecmp (optarg, "zlib-gabi") == 0)
5480 do_debug_sections = compress_gabi_zlib;
5481 else if (strcasecmp (optarg, "zstd") == 0)
5482 do_debug_sections = compress_zstd;
5483 else
5484 fatal (_("unrecognized --compress-debug-sections type `%s'"),
5485 optarg);
5487 else
5488 do_debug_sections = compress;
5489 break;
5491 case OPTION_DEBUGGING:
5492 convert_debugging = true;
5493 break;
5495 case OPTION_DECOMPRESS_DEBUG_SECTIONS:
5496 do_debug_sections = decompress;
5497 break;
5499 case OPTION_ELF_STT_COMMON:
5500 if (strcasecmp (optarg, "yes") == 0)
5501 do_elf_stt_common = elf_stt_common;
5502 else if (strcasecmp (optarg, "no") == 0)
5503 do_elf_stt_common = no_elf_stt_common;
5504 else
5505 fatal (_("unrecognized --elf-stt-common= option `%s'"),
5506 optarg);
5507 break;
5509 case OPTION_GAP_FILL:
5511 bfd_vma gap_fill_vma;
5513 gap_fill_vma = parse_vma (optarg, "--gap-fill");
5514 gap_fill = (bfd_byte) gap_fill_vma;
5515 if ((bfd_vma) gap_fill != gap_fill_vma)
5516 non_fatal (_("Warning: truncating gap-fill from 0x%" PRIx64
5517 " to 0x%x"),
5518 (uint64_t) gap_fill_vma, gap_fill);
5519 gap_fill_set = true;
5521 break;
5523 case OPTION_NO_CHANGE_WARNINGS:
5524 change_warn = false;
5525 break;
5527 case OPTION_PAD_TO:
5528 pad_to = parse_vma (optarg, "--pad-to");
5529 pad_to_set = true;
5530 break;
5532 case OPTION_REMOVE_LEADING_CHAR:
5533 remove_leading_char = true;
5534 break;
5536 case OPTION_REDEFINE_SYM:
5538 /* Insert this redefinition onto redefine_specific_htab. */
5540 int len;
5541 const char *s;
5542 const char *nextarg;
5543 char *source, *target;
5545 s = strchr (optarg, '=');
5546 if (s == NULL)
5547 fatal (_("bad format for %s"), "--redefine-sym");
5549 len = s - optarg;
5550 source = (char *) xmalloc (len + 1);
5551 strncpy (source, optarg, len);
5552 source[len] = '\0';
5554 nextarg = s + 1;
5555 len = strlen (nextarg);
5556 target = (char *) xmalloc (len + 1);
5557 strcpy (target, nextarg);
5559 add_redefine_and_check ("--redefine-sym", source, target);
5561 free (source);
5562 free (target);
5564 break;
5566 case OPTION_REDEFINE_SYMS:
5567 add_redefine_syms_file (optarg);
5568 break;
5570 case OPTION_SET_SECTION_FLAGS:
5572 struct section_list *p;
5573 const char *s;
5574 int len;
5575 char *name;
5577 s = strchr (optarg, '=');
5578 if (s == NULL)
5579 fatal (_("bad format for %s"), "--set-section-flags");
5581 len = s - optarg;
5582 name = (char *) xmalloc (len + 1);
5583 strncpy (name, optarg, len);
5584 name[len] = '\0';
5586 p = find_section_list (name, true, SECTION_CONTEXT_SET_FLAGS);
5588 p->flags = parse_flags (s + 1);
5590 break;
5592 case OPTION_SET_SECTION_ALIGNMENT:
5594 struct section_list *p;
5595 const char *s;
5596 int len;
5597 char *name;
5598 int palign, align;
5600 s = strchr (optarg, '=');
5601 if (s == NULL)
5602 fatal (_("bad format for --set-section-alignment: argument needed"));
5604 align = atoi (s + 1);
5605 if (align <= 0)
5606 fatal (_("bad format for --set-section-alignment: numeric argument needed"));
5608 /* Convert integer alignment into a power-of-two alignment. */
5609 palign = 0;
5610 while ((align & 1) == 0)
5612 align >>= 1;
5613 ++palign;
5616 if (align != 1)
5617 /* Number has more than on 1, i.e. wasn't a power of 2. */
5618 fatal (_("bad format for --set-section-alignment: alignment is not a power of two"));
5620 /* Add the alignment setting to the section list. */
5621 len = s - optarg;
5622 name = (char *) xmalloc (len + 1);
5623 strncpy (name, optarg, len);
5624 name[len] = '\0';
5626 p = find_section_list (name, true, SECTION_CONTEXT_SET_ALIGNMENT);
5627 if (p)
5628 p->alignment = palign;
5630 break;
5632 case OPTION_RENAME_SECTION:
5634 flagword flags;
5635 const char *eq, *fl;
5636 char *old_name;
5637 char *new_name;
5638 unsigned int len;
5640 eq = strchr (optarg, '=');
5641 if (eq == NULL)
5642 fatal (_("bad format for %s"), "--rename-section");
5644 len = eq - optarg;
5645 if (len == 0)
5646 fatal (_("bad format for %s"), "--rename-section");
5648 old_name = (char *) xmalloc (len + 1);
5649 strncpy (old_name, optarg, len);
5650 old_name[len] = 0;
5652 eq++;
5653 fl = strchr (eq, ',');
5654 if (fl)
5656 flags = parse_flags (fl + 1);
5657 len = fl - eq;
5659 else
5661 flags = -1;
5662 len = strlen (eq);
5665 if (len == 0)
5666 fatal (_("bad format for %s"), "--rename-section");
5668 new_name = (char *) xmalloc (len + 1);
5669 strncpy (new_name, eq, len);
5670 new_name[len] = 0;
5672 add_section_rename (old_name, new_name, flags);
5674 break;
5676 case OPTION_SET_START:
5677 set_start = parse_vma (optarg, "--set-start");
5678 set_start_set = true;
5679 break;
5681 case OPTION_SREC_LEN:
5682 _bfd_srec_len = parse_vma (optarg, "--srec-len");
5683 break;
5685 case OPTION_SREC_FORCES3:
5686 _bfd_srec_forceS3 = true;
5687 break;
5689 case OPTION_STRIP_SYMBOLS:
5690 add_specific_symbols (optarg, strip_specific_htab,
5691 &strip_specific_buffer);
5692 break;
5694 case OPTION_STRIP_UNNEEDED_SYMBOLS:
5695 add_specific_symbols (optarg, strip_unneeded_htab,
5696 &strip_unneeded_buffer);
5697 break;
5699 case OPTION_KEEP_SYMBOLS:
5700 add_specific_symbols (optarg, keep_specific_htab,
5701 &keep_specific_buffer);
5702 break;
5704 case OPTION_KEEP_SECTION_SYMBOLS:
5705 keep_section_symbols = true;
5706 break;
5708 case OPTION_LOCALIZE_HIDDEN:
5709 localize_hidden = true;
5710 break;
5712 case OPTION_LOCALIZE_SYMBOLS:
5713 add_specific_symbols (optarg, localize_specific_htab,
5714 &localize_specific_buffer);
5715 break;
5717 case OPTION_LONG_SECTION_NAMES:
5718 if (!strcmp ("enable", optarg))
5719 long_section_names = ENABLE;
5720 else if (!strcmp ("disable", optarg))
5721 long_section_names = DISABLE;
5722 else if (!strcmp ("keep", optarg))
5723 long_section_names = KEEP;
5724 else
5725 fatal (_("unknown long section names option '%s'"), optarg);
5726 break;
5728 case OPTION_GLOBALIZE_SYMBOLS:
5729 use_globalize = true;
5730 add_specific_symbols (optarg, globalize_specific_htab,
5731 &globalize_specific_buffer);
5732 break;
5734 case OPTION_KEEPGLOBAL_SYMBOLS:
5735 use_keep_global = true;
5736 add_specific_symbols (optarg, keepglobal_specific_htab,
5737 &keepglobal_specific_buffer);
5738 break;
5740 case OPTION_WEAKEN_SYMBOLS:
5741 add_specific_symbols (optarg, weaken_specific_htab,
5742 &weaken_specific_buffer);
5743 break;
5745 case OPTION_ALT_MACH_CODE:
5746 use_alt_mach_code = strtoul (optarg, NULL, 0);
5747 if (use_alt_mach_code == 0)
5748 fatal (_("unable to parse alternative machine code"));
5749 break;
5751 case OPTION_PREFIX_SYMBOLS:
5752 prefix_symbols_string = optarg;
5753 break;
5755 case OPTION_PREFIX_SECTIONS:
5756 prefix_sections_string = optarg;
5757 break;
5759 case OPTION_PREFIX_ALLOC_SECTIONS:
5760 prefix_alloc_sections_string = optarg;
5761 break;
5763 case OPTION_READONLY_TEXT:
5764 bfd_flags_to_set |= WP_TEXT;
5765 bfd_flags_to_clear &= ~WP_TEXT;
5766 break;
5768 case OPTION_WRITABLE_TEXT:
5769 bfd_flags_to_clear |= WP_TEXT;
5770 bfd_flags_to_set &= ~WP_TEXT;
5771 break;
5773 case OPTION_PURE:
5774 bfd_flags_to_set |= D_PAGED;
5775 bfd_flags_to_clear &= ~D_PAGED;
5776 break;
5778 case OPTION_IMPURE:
5779 bfd_flags_to_clear |= D_PAGED;
5780 bfd_flags_to_set &= ~D_PAGED;
5781 break;
5783 case OPTION_EXTRACT_DWO:
5784 strip_symbols = STRIP_NONDWO;
5785 break;
5787 case OPTION_EXTRACT_SYMBOL:
5788 extract_symbol = true;
5789 break;
5791 case OPTION_REVERSE_BYTES:
5793 int prev = reverse_bytes;
5795 reverse_bytes = atoi (optarg);
5796 if ((reverse_bytes <= 0) || ((reverse_bytes % 2) != 0))
5797 fatal (_("number of bytes to reverse must be positive and even"));
5799 if (prev && prev != reverse_bytes)
5800 non_fatal (_("Warning: ignoring previous --reverse-bytes value of %d"),
5801 prev);
5802 break;
5805 case OPTION_FILE_ALIGNMENT:
5806 pe_file_alignment = parse_vma (optarg, "--file-alignment");
5807 break;
5809 case OPTION_HEAP:
5811 char *end;
5812 pe_heap_reserve = strtoul (optarg, &end, 0);
5813 if (end == optarg
5814 || (*end != '.' && *end != '\0'))
5815 non_fatal (_("%s: invalid reserve value for --heap"),
5816 optarg);
5817 else if (*end != '\0')
5819 pe_heap_commit = strtoul (end + 1, &end, 0);
5820 if (*end != '\0')
5821 non_fatal (_("%s: invalid commit value for --heap"),
5822 optarg);
5825 break;
5827 case OPTION_IMAGE_BASE:
5828 pe_image_base = parse_vma (optarg, "--image-base");
5829 break;
5831 case OPTION_PE_SECTION_ALIGNMENT:
5832 pe_section_alignment = parse_vma (optarg,
5833 "--section-alignment");
5834 break;
5836 case OPTION_SUBSYSTEM:
5837 set_pe_subsystem (optarg);
5838 break;
5840 case OPTION_STACK:
5842 char *end;
5843 pe_stack_reserve = strtoul (optarg, &end, 0);
5844 if (end == optarg
5845 || (*end != '.' && *end != '\0'))
5846 non_fatal (_("%s: invalid reserve value for --stack"),
5847 optarg);
5848 else if (*end != '\0')
5850 pe_stack_commit = strtoul (end + 1, &end, 0);
5851 if (*end != '\0')
5852 non_fatal (_("%s: invalid commit value for --stack"),
5853 optarg);
5856 break;
5858 case OPTION_VERILOG_DATA_WIDTH:
5859 VerilogDataWidth = parse_vma (optarg, "--verilog-data-width");
5860 if (VerilogDataWidth < 1)
5861 fatal (_("verilog data width must be at least 1 byte"));
5862 break;
5864 case 0:
5865 /* We've been given a long option. */
5866 break;
5868 case 'H':
5869 case 'h':
5870 copy_usage (stdout, 0);
5872 default:
5873 copy_usage (stderr, 1);
5877 if (use_globalize && use_keep_global)
5878 fatal(_("--globalize-symbol(s) is incompatible with -G/--keep-global-symbol(s)"));
5880 if (formats_info)
5882 display_info ();
5883 return 0;
5886 if (show_version)
5887 print_version ("objcopy");
5889 if (interleave && copy_byte == -1)
5890 fatal (_("interleave start byte must be set with --byte"));
5892 if (copy_byte >= interleave)
5893 fatal (_("byte number must be less than interleave"));
5895 if (copy_width > interleave - copy_byte)
5896 fatal (_("interleave width must be less than or equal to interleave - byte`"));
5898 if (optind == argc || optind + 2 < argc)
5899 copy_usage (stderr, 1);
5901 input_filename = argv[optind];
5902 if (optind + 1 < argc)
5903 output_filename = argv[optind + 1];
5905 default_deterministic ();
5907 /* Default is to strip no symbols. */
5908 if (strip_symbols == STRIP_UNDEF && discard_locals == LOCALS_UNDEF)
5909 strip_symbols = STRIP_NONE;
5911 if (output_target == NULL)
5912 output_target = input_target;
5914 /* Convert input EFI target to PEI target. */
5915 if (input_target != NULL
5916 && startswith (input_target, "efi-"))
5918 if (convert_efi_target (&input_target) < 0)
5919 fatal (_("unknown input EFI target: %s"), input_target);
5922 /* Convert output EFI target to PEI target. */
5923 if (output_target != NULL
5924 && startswith (output_target, "efi-"))
5926 int subsys = convert_efi_target (&output_target);
5928 if (subsys < 0)
5929 fatal (_("unknown output EFI target: %s"), output_target);
5930 if (pe_subsystem == -1)
5931 pe_subsystem = subsys;
5932 if (pe_file_alignment == (bfd_vma) -1)
5933 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
5934 if (pe_section_alignment == (bfd_vma) -1)
5935 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
5938 /* If there is no destination file, or the source and destination files
5939 are the same, then create a temp and copy the result into the input. */
5940 copyfd = -1;
5941 if (output_filename == NULL
5942 || filename_cmp (input_filename, output_filename) == 0)
5944 tmpname = make_tempname (input_filename, &tmpfd);
5945 if (tmpfd >= 0)
5946 copyfd = dup (tmpfd);
5948 else
5949 tmpname = output_filename;
5951 if (tmpname == NULL)
5953 fatal (_("warning: could not create temporary file whilst copying '%s', (error: %s)"),
5954 input_filename, strerror (errno));
5957 copy_file (input_filename, tmpname, tmpfd, &statbuf, input_target,
5958 output_target, input_arch);
5959 if (status == 0)
5961 const char *oname = output_filename ? output_filename : input_filename;
5962 status = smart_rename (tmpname, oname, copyfd,
5963 &statbuf, preserve_dates) != 0;
5965 else
5967 if (copyfd >= 0)
5968 close (copyfd);
5969 unlink_if_ordinary (tmpname);
5972 if (tmpname != output_filename)
5973 free (tmpname);
5975 if (change_warn)
5977 struct section_list *p;
5979 for (p = change_sections; p != NULL; p = p->next)
5981 if (! p->used)
5983 if (p->context & (SECTION_CONTEXT_SET_VMA | SECTION_CONTEXT_ALTER_VMA))
5984 /* xgettext:c-format */
5985 non_fatal (_("%s %s%c0x%" PRIx64 " never used"),
5986 "--change-section-vma",
5987 p->pattern,
5988 p->context & SECTION_CONTEXT_SET_VMA ? '=' : '+',
5989 (uint64_t) p->vma_val);
5991 if (p->context & (SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_ALTER_LMA))
5992 /* xgettext:c-format */
5993 non_fatal (_("%s %s%c0x%" PRIx64 " never used"),
5994 "--change-section-lma",
5995 p->pattern,
5996 p->context & SECTION_CONTEXT_SET_LMA ? '=' : '+',
5997 (uint64_t) p->lma_val);
6002 free (strip_specific_buffer);
6003 free (strip_unneeded_buffer);
6004 free (keep_specific_buffer);
6005 free (localize_specific_buffer);
6006 free (globalize_specific_buffer);
6007 free (keepglobal_specific_buffer);
6008 free (weaken_specific_buffer);
6010 return 0;
6014 main (int argc, char *argv[])
6016 #ifdef HAVE_LC_MESSAGES
6017 setlocale (LC_MESSAGES, "");
6018 #endif
6019 setlocale (LC_CTYPE, "");
6020 bindtextdomain (PACKAGE, LOCALEDIR);
6021 textdomain (PACKAGE);
6023 program_name = argv[0];
6024 xmalloc_set_program_name (program_name);
6026 START_PROGRESS (program_name, 0);
6028 expandargv (&argc, &argv);
6030 strip_symbols = STRIP_UNDEF;
6031 discard_locals = LOCALS_UNDEF;
6033 if (bfd_init () != BFD_INIT_MAGIC)
6034 fatal (_("fatal error: libbfd ABI mismatch"));
6035 set_default_bfd_target ();
6037 if (is_strip < 0)
6039 int i = strlen (program_name);
6040 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
6041 /* Drop the .exe suffix, if any. */
6042 if (i > 4 && FILENAME_CMP (program_name + i - 4, ".exe") == 0)
6044 i -= 4;
6045 program_name[i] = '\0';
6047 #endif
6048 is_strip = (i >= 5 && FILENAME_CMP (program_name + i - 5, "strip") == 0);
6051 create_symbol_htabs ();
6052 xatexit (delete_symbol_htabs);
6054 if (argv != NULL)
6055 bfd_set_error_program_name (argv[0]);
6057 if (is_strip)
6058 strip_main (argc, argv);
6059 else
6060 copy_main (argc, argv);
6062 END_PROGRESS (program_name);
6064 return status;