[gdb/build] Add CXX_DIALECT to CXX
[deliverable/binutils-gdb.git] / binutils / objcopy.c
CommitLineData
252b5132 1/* objcopy.c -- copy object file from input to output, optionally massaging it.
250d07de 2 Copyright (C) 1991-2021 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
32866df7 8 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
b43b5d5f
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20\f
3db64b00 21#include "sysdep.h"
252b5132
RH
22#include "bfd.h"
23#include "progress.h"
252b5132
RH
24#include "getopt.h"
25#include "libiberty.h"
3db64b00 26#include "bucomm.h"
252b5132 27#include "budbg.h"
5af11cab 28#include "filenames.h"
5fe11841 29#include "fnmatch.h"
f0312d39 30#include "elf-bfd.h"
0408dee6
DK
31#include "coff/internal.h"
32#include "libcoff.h"
9ef920e9 33#include "safe-ctype.h"
252b5132 34
92dd4511
L
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"
39
40static bfd_vma pe_file_alignment = (bfd_vma) -1;
41static bfd_vma pe_heap_commit = (bfd_vma) -1;
42static bfd_vma pe_heap_reserve = (bfd_vma) -1;
43static bfd_vma pe_image_base = (bfd_vma) -1;
44static bfd_vma pe_section_alignment = (bfd_vma) -1;
45static bfd_vma pe_stack_commit = (bfd_vma) -1;
46static bfd_vma pe_stack_reserve = (bfd_vma) -1;
47static short pe_subsystem = -1;
48static short pe_major_subsystem_version = -1;
49static short pe_minor_subsystem_version = -1;
50
047c9024 51struct is_specified_symbol_predicate_data
252b5132 52{
015dc7e1
AM
53 const char *name;
54 bool found;
252b5132
RH
55};
56
0f65a5d8 57/* A node includes symbol name mapping to support redefine_sym. */
57938635
AM
58struct redefine_node
59{
60 char *source;
61 char *target;
57938635
AM
62};
63
2b35fb28
RH
64struct addsym_node
65{
66 struct addsym_node *next;
67 char * symdef;
68 long symval;
69 flagword flags;
70 char * section;
ffebb0bb 71 const char * othersym;
2b35fb28
RH
72};
73
594ef5db
NC
74typedef struct section_rename
75{
76 const char * old_name;
77 const char * new_name;
78 flagword flags;
79 struct section_rename * next;
80}
81section_rename;
82
83/* List of sections to be renamed. */
84e2f313 84static section_rename *section_rename_list;
594ef5db 85
84e2f313
NC
86static asymbol **isympp = NULL; /* Input symbols. */
87static asymbol **osympp = NULL; /* Output symbols that survive stripping. */
252b5132 88
b7dd81f7 89/* If `copy_byte' >= 0, copy 'copy_width' byte(s) of every `interleave' bytes. */
252b5132 90static int copy_byte = -1;
b7dd81f7
NC
91static int interleave = 0; /* Initialised to 4 in copy_main(). */
92static int copy_width = 1;
252b5132 93
015dc7e1
AM
94static bool keep_section_symbols = false ;/* True if section symbols should be retained. */
95static bool verbose; /* Print file and target names. */
96static bool preserve_dates; /* Preserve input file timestamp. */
955d0b3b 97static int deterministic = -1; /* Enable deterministic archives. */
9ef920e9
NC
98static int status = 0; /* Exit status. */
99
015dc7e1 100static bool merge_notes = false; /* Merge note sections. */
5c49f2cd
NC
101
102typedef struct merged_note_section
103{
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;
252b5132
RH
109
110enum strip_action
2b35fb28
RH
111{
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. */
120};
252b5132 121
0af11b59 122/* Which symbols to remove. */
4fc8b895 123static enum strip_action strip_symbols = STRIP_UNDEF;
252b5132
RH
124
125enum locals_action
2b35fb28
RH
126{
127 LOCALS_UNDEF,
128 LOCALS_START_L, /* Discard locals starting with L. */
129 LOCALS_ALL /* Discard all locals. */
130};
252b5132
RH
131
132/* Which local symbols to remove. Overrides STRIP_ALL. */
133static enum locals_action discard_locals;
134
252b5132
RH
135/* Structure used to hold lists of sections and actions to take. */
136struct section_list
137{
015dc7e1
AM
138 struct section_list *next; /* Next section to change. */
139 const char *pattern; /* Section name pattern. */
140 bool used; /* Whether this entry was used. */
2e62b721 141
015dc7e1 142 unsigned int context; /* What to do with matching sections. */
2e62b721 143 /* Flag bits used in the context field.
015dc7e1
AM
144 COPY and REMOVE are mutually exlusive.
145 SET and ALTER are mutually exclusive. */
2e62b721
NC
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. */
64f52b3e
FS
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. */
2e62b721 156
015dc7e1
AM
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. */
252b5132
RH
161};
162
163static struct section_list *change_sections;
594ef5db 164
b34976b6 165/* TRUE if some sections are to be removed. */
015dc7e1 166static bool sections_removed;
594ef5db 167
b34976b6 168/* TRUE if only some sections are to be copied. */
015dc7e1 169static bool sections_copied;
252b5132
RH
170
171/* Changes to the start address. */
172static bfd_vma change_start = 0;
015dc7e1 173static bool set_start_set = false;
252b5132
RH
174static bfd_vma set_start;
175
176/* Changes to section addresses. */
177static bfd_vma change_section_address = 0;
178
179/* Filling gaps between sections. */
015dc7e1 180static bool gap_fill_set = false;
252b5132
RH
181static bfd_byte gap_fill = 0;
182
183/* Pad to a given address. */
015dc7e1 184static bool pad_to_set = false;
252b5132
RH
185static bfd_vma pad_to;
186
f9d4ad2a
NC
187/* Use alternative machine code? */
188static unsigned long use_alt_mach_code = 0;
1ae8b3d2 189
4087920c
MR
190/* Output BFD flags user wants to set or clear */
191static flagword bfd_flags_to_set;
192static flagword bfd_flags_to_clear;
193
252b5132 194/* List of sections to add. */
252b5132
RH
195struct section_add
196{
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;
209};
210
594ef5db 211/* List of sections to add to the output BFD. */
252b5132
RH
212static struct section_add *add_sections;
213
acf1419f
AB
214/* List of sections to update in the output BFD. */
215static struct section_add *update_sections;
216
bbad633b
NC
217/* List of sections to dump from the output BFD. */
218static struct section_add *dump_sections;
219
2593f09a
NC
220/* If non-NULL the argument to --add-gnu-debuglink.
221 This should be the filename to store in the .gnu_debuglink section. */
222static const char * gnu_debuglink_filename = NULL;
223
252b5132 224/* Whether to convert debugging information. */
015dc7e1 225static bool convert_debugging = false;
252b5132 226
4a114e3e
L
227/* Whether to compress/decompress DWARF debug sections. */
228static enum
229{
cd6faa73
L
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 decompress = 1 << 4
4a114e3e
L
236} do_debug_sections = nothing;
237
b8871f35 238/* Whether to generate ELF common symbols with the STT_COMMON type. */
eecc1a7f 239static enum bfd_link_elf_stt_common do_elf_stt_common = unchanged;
b8871f35 240
252b5132 241/* Whether to change the leading character in symbol names. */
015dc7e1 242static bool change_leading_char = false;
252b5132
RH
243
244/* Whether to remove the leading character from global symbol names. */
015dc7e1 245static bool remove_leading_char = false;
252b5132 246
aaad4cf3 247/* Whether to permit wildcard in symbol comparison. */
015dc7e1 248static bool wildcard = false;
5fe11841 249
d58c2e3a 250/* True if --localize-hidden is in effect. */
015dc7e1 251static bool localize_hidden = false;
d58c2e3a 252
16b2b71c
NC
253/* List of symbols to strip, keep, localize, keep-global, weaken,
254 or redefine. */
047c9024
NC
255static htab_t strip_specific_htab = NULL;
256static htab_t strip_unneeded_htab = NULL;
257static htab_t keep_specific_htab = NULL;
258static htab_t localize_specific_htab = NULL;
259static htab_t globalize_specific_htab = NULL;
260static htab_t keepglobal_specific_htab = NULL;
261static htab_t weaken_specific_htab = NULL;
0f65a5d8
JW
262static htab_t redefine_specific_htab = NULL;
263static htab_t redefine_specific_reverse_htab = NULL;
2b35fb28
RH
264static struct addsym_node *add_sym_list = NULL, **add_sym_tail = &add_sym_list;
265static int add_symbols = 0;
252b5132 266
d839b914
L
267static char *strip_specific_buffer = NULL;
268static char *strip_unneeded_buffer = NULL;
269static char *keep_specific_buffer = NULL;
270static char *localize_specific_buffer = NULL;
271static char *globalize_specific_buffer = NULL;
272static char *keepglobal_specific_buffer = NULL;
273static char *weaken_specific_buffer = NULL;
274
b34976b6 275/* If this is TRUE, we weaken global symbols (set BSF_WEAK). */
015dc7e1 276static bool weaken = false;
252b5132 277
1637cd90 278/* If this is TRUE, we retain BSF_FILE symbols. */
015dc7e1 279static bool keep_file_symbols = false;
1637cd90 280
d7fb0dd2
NC
281/* Prefix symbols/sections. */
282static char *prefix_symbols_string = 0;
283static char *prefix_sections_string = 0;
284static char *prefix_alloc_sections_string = 0;
285
d3e52d40 286/* True if --extract-symbol was passed on the command line. */
015dc7e1 287static bool extract_symbol = false;
d3e52d40 288
9e48b4c6
NC
289/* If `reverse_bytes' is nonzero, then reverse the order of every chunk
290 of <reverse_bytes> bytes within each output section. */
291static int reverse_bytes = 0;
292
0408dee6
DK
293/* For Coff objects, we may want to allow or disallow long section names,
294 or preserve them where found in the inputs. Debug info relies on them. */
295enum long_section_name_handling
2b35fb28
RH
296{
297 DISABLE,
298 ENABLE,
299 KEEP
300};
0408dee6
DK
301
302/* The default long section handling mode is to preserve them.
303 This is also the only behaviour for 'strip'. */
304static enum long_section_name_handling long_section_names = KEEP;
9e48b4c6 305
252b5132 306/* 150 isn't special; it's just an arbitrary non-ASCII char value. */
84e2f313 307enum command_line_switch
2b35fb28
RH
308{
309 OPTION_ADD_SECTION=150,
310 OPTION_ADD_GNU_DEBUGLINK,
311 OPTION_ADD_SYMBOL,
312 OPTION_ALT_MACH_CODE,
313 OPTION_CHANGE_ADDRESSES,
314 OPTION_CHANGE_LEADING_CHAR,
315 OPTION_CHANGE_SECTION_ADDRESS,
316 OPTION_CHANGE_SECTION_LMA,
317 OPTION_CHANGE_SECTION_VMA,
318 OPTION_CHANGE_START,
319 OPTION_CHANGE_WARNINGS,
320 OPTION_COMPRESS_DEBUG_SECTIONS,
321 OPTION_DEBUGGING,
322 OPTION_DECOMPRESS_DEBUG_SECTIONS,
323 OPTION_DUMP_SECTION,
b8871f35 324 OPTION_ELF_STT_COMMON,
2b35fb28
RH
325 OPTION_EXTRACT_DWO,
326 OPTION_EXTRACT_SYMBOL,
327 OPTION_FILE_ALIGNMENT,
328 OPTION_FORMATS_INFO,
329 OPTION_GAP_FILL,
330 OPTION_GLOBALIZE_SYMBOL,
331 OPTION_GLOBALIZE_SYMBOLS,
332 OPTION_HEAP,
333 OPTION_IMAGE_BASE,
334 OPTION_IMPURE,
335 OPTION_INTERLEAVE_WIDTH,
336 OPTION_KEEPGLOBAL_SYMBOLS,
337 OPTION_KEEP_FILE_SYMBOLS,
64f52b3e 338 OPTION_KEEP_SECTION,
2b35fb28 339 OPTION_KEEP_SYMBOLS,
ca0e11aa 340 OPTION_KEEP_SECTION_SYMBOLS,
2b35fb28
RH
341 OPTION_LOCALIZE_HIDDEN,
342 OPTION_LOCALIZE_SYMBOLS,
343 OPTION_LONG_SECTION_NAMES,
9ef920e9 344 OPTION_MERGE_NOTES,
1d15e434 345 OPTION_NO_MERGE_NOTES,
2b35fb28
RH
346 OPTION_NO_CHANGE_WARNINGS,
347 OPTION_ONLY_KEEP_DEBUG,
348 OPTION_PAD_TO,
349 OPTION_PREFIX_ALLOC_SECTIONS,
350 OPTION_PREFIX_SECTIONS,
351 OPTION_PREFIX_SYMBOLS,
352 OPTION_PURE,
353 OPTION_READONLY_TEXT,
354 OPTION_REDEFINE_SYM,
355 OPTION_REDEFINE_SYMS,
356 OPTION_REMOVE_LEADING_CHAR,
d3e5f6c8 357 OPTION_REMOVE_RELOCS,
2b35fb28
RH
358 OPTION_RENAME_SECTION,
359 OPTION_REVERSE_BYTES,
fa463e9f 360 OPTION_PE_SECTION_ALIGNMENT,
2b35fb28 361 OPTION_SET_SECTION_FLAGS,
fa463e9f 362 OPTION_SET_SECTION_ALIGNMENT,
2b35fb28
RH
363 OPTION_SET_START,
364 OPTION_SREC_FORCES3,
365 OPTION_SREC_LEN,
366 OPTION_STACK,
367 OPTION_STRIP_DWO,
368 OPTION_STRIP_SYMBOLS,
369 OPTION_STRIP_UNNEEDED,
370 OPTION_STRIP_UNNEEDED_SYMBOL,
371 OPTION_STRIP_UNNEEDED_SYMBOLS,
372 OPTION_SUBSYSTEM,
373 OPTION_UPDATE_SECTION,
37d0d091 374 OPTION_VERILOG_DATA_WIDTH,
2b35fb28
RH
375 OPTION_WEAKEN,
376 OPTION_WEAKEN_SYMBOLS,
377 OPTION_WRITABLE_TEXT
378};
252b5132
RH
379
380/* Options to handle if running as "strip". */
381
382static struct option strip_options[] =
383{
955d0b3b 384 {"disable-deterministic-archives", no_argument, 0, 'U'},
252b5132
RH
385 {"discard-all", no_argument, 0, 'x'},
386 {"discard-locals", no_argument, 0, 'X'},
2e30cb57 387 {"enable-deterministic-archives", no_argument, 0, 'D'},
252b5132
RH
388 {"format", required_argument, 0, 'F'}, /* Obsolete */
389 {"help", no_argument, 0, 'h'},
7c29036b 390 {"info", no_argument, 0, OPTION_FORMATS_INFO},
252b5132
RH
391 {"input-format", required_argument, 0, 'I'}, /* Obsolete */
392 {"input-target", required_argument, 0, 'I'},
ca0e11aa 393 {"keep-section-symbols", no_argument, 0, OPTION_KEEP_SECTION_SYMBOLS},
1637cd90 394 {"keep-file-symbols", no_argument, 0, OPTION_KEEP_FILE_SYMBOLS},
64f52b3e 395 {"keep-section", required_argument, 0, OPTION_KEEP_SECTION},
252b5132 396 {"keep-symbol", required_argument, 0, 'K'},
1d15e434
NC
397 {"merge-notes", no_argument, 0, 'M'},
398 {"no-merge-notes", no_argument, 0, OPTION_NO_MERGE_NOTES},
ed1653a7 399 {"only-keep-debug", no_argument, 0, OPTION_ONLY_KEEP_DEBUG},
2b35fb28 400 {"output-file", required_argument, 0, 'o'},
252b5132
RH
401 {"output-format", required_argument, 0, 'O'}, /* Obsolete */
402 {"output-target", required_argument, 0, 'O'},
403 {"preserve-dates", no_argument, 0, 'p'},
404 {"remove-section", required_argument, 0, 'R'},
d3e5f6c8 405 {"remove-relocations", required_argument, 0, OPTION_REMOVE_RELOCS},
252b5132
RH
406 {"strip-all", no_argument, 0, 's'},
407 {"strip-debug", no_argument, 0, 'S'},
96109726 408 {"strip-dwo", no_argument, 0, OPTION_STRIP_DWO},
252b5132 409 {"strip-symbol", required_argument, 0, 'N'},
2b35fb28 410 {"strip-unneeded", no_argument, 0, OPTION_STRIP_UNNEEDED},
252b5132
RH
411 {"target", required_argument, 0, 'F'},
412 {"verbose", no_argument, 0, 'v'},
413 {"version", no_argument, 0, 'V'},
5fe11841 414 {"wildcard", no_argument, 0, 'w'},
252b5132
RH
415 {0, no_argument, 0, 0}
416};
417
418/* Options to handle if running as "objcopy". */
419
420static struct option copy_options[] =
421{
2593f09a 422 {"add-gnu-debuglink", required_argument, 0, OPTION_ADD_GNU_DEBUGLINK},
252b5132 423 {"add-section", required_argument, 0, OPTION_ADD_SECTION},
2b35fb28
RH
424 {"add-symbol", required_argument, 0, OPTION_ADD_SYMBOL},
425 {"adjust-section-vma", required_argument, 0, OPTION_CHANGE_SECTION_ADDRESS},
252b5132
RH
426 {"adjust-start", required_argument, 0, OPTION_CHANGE_START},
427 {"adjust-vma", required_argument, 0, OPTION_CHANGE_ADDRESSES},
252b5132 428 {"adjust-warnings", no_argument, 0, OPTION_CHANGE_WARNINGS},
d7fb0dd2 429 {"alt-machine-code", required_argument, 0, OPTION_ALT_MACH_CODE},
43a0748c 430 {"binary-architecture", required_argument, 0, 'B'},
252b5132
RH
431 {"byte", required_argument, 0, 'b'},
432 {"change-addresses", required_argument, 0, OPTION_CHANGE_ADDRESSES},
433 {"change-leading-char", no_argument, 0, OPTION_CHANGE_LEADING_CHAR},
434 {"change-section-address", required_argument, 0, OPTION_CHANGE_SECTION_ADDRESS},
435 {"change-section-lma", required_argument, 0, OPTION_CHANGE_SECTION_LMA},
436 {"change-section-vma", required_argument, 0, OPTION_CHANGE_SECTION_VMA},
437 {"change-start", required_argument, 0, OPTION_CHANGE_START},
438 {"change-warnings", no_argument, 0, OPTION_CHANGE_WARNINGS},
151411f8 439 {"compress-debug-sections", optional_argument, 0, OPTION_COMPRESS_DEBUG_SECTIONS},
252b5132 440 {"debugging", no_argument, 0, OPTION_DEBUGGING},
4a114e3e 441 {"decompress-debug-sections", no_argument, 0, OPTION_DECOMPRESS_DEBUG_SECTIONS},
955d0b3b 442 {"disable-deterministic-archives", no_argument, 0, 'U'},
252b5132
RH
443 {"discard-all", no_argument, 0, 'x'},
444 {"discard-locals", no_argument, 0, 'X'},
bbad633b 445 {"dump-section", required_argument, 0, OPTION_DUMP_SECTION},
b8871f35 446 {"elf-stt-common", required_argument, 0, OPTION_ELF_STT_COMMON},
2e30cb57 447 {"enable-deterministic-archives", no_argument, 0, 'D'},
96109726 448 {"extract-dwo", no_argument, 0, OPTION_EXTRACT_DWO},
d3e52d40 449 {"extract-symbol", no_argument, 0, OPTION_EXTRACT_SYMBOL},
2b35fb28 450 {"file-alignment", required_argument, 0, OPTION_FILE_ALIGNMENT},
252b5132
RH
451 {"format", required_argument, 0, 'F'}, /* Obsolete */
452 {"gap-fill", required_argument, 0, OPTION_GAP_FILL},
7b4a0685
NC
453 {"globalize-symbol", required_argument, 0, OPTION_GLOBALIZE_SYMBOL},
454 {"globalize-symbols", required_argument, 0, OPTION_GLOBALIZE_SYMBOLS},
2b35fb28 455 {"heap", required_argument, 0, OPTION_HEAP},
252b5132 456 {"help", no_argument, 0, 'h'},
2b35fb28 457 {"image-base", required_argument, 0 , OPTION_IMAGE_BASE},
4087920c 458 {"impure", no_argument, 0, OPTION_IMPURE},
7c29036b 459 {"info", no_argument, 0, OPTION_FORMATS_INFO},
252b5132
RH
460 {"input-format", required_argument, 0, 'I'}, /* Obsolete */
461 {"input-target", required_argument, 0, 'I'},
b7dd81f7
NC
462 {"interleave", optional_argument, 0, 'i'},
463 {"interleave-width", required_argument, 0, OPTION_INTERLEAVE_WIDTH},
1637cd90 464 {"keep-file-symbols", no_argument, 0, OPTION_KEEP_FILE_SYMBOLS},
d7fb0dd2
NC
465 {"keep-global-symbol", required_argument, 0, 'G'},
466 {"keep-global-symbols", required_argument, 0, OPTION_KEEPGLOBAL_SYMBOLS},
64f52b3e 467 {"keep-section", required_argument, 0, OPTION_KEEP_SECTION},
252b5132 468 {"keep-symbol", required_argument, 0, 'K'},
d7fb0dd2 469 {"keep-symbols", required_argument, 0, OPTION_KEEP_SYMBOLS},
ca0e11aa 470 {"keep-section-symbols", required_argument, 0, OPTION_KEEP_SECTION_SYMBOLS},
d58c2e3a 471 {"localize-hidden", no_argument, 0, OPTION_LOCALIZE_HIDDEN},
d7fb0dd2
NC
472 {"localize-symbol", required_argument, 0, 'L'},
473 {"localize-symbols", required_argument, 0, OPTION_LOCALIZE_SYMBOLS},
0408dee6 474 {"long-section-names", required_argument, 0, OPTION_LONG_SECTION_NAMES},
9ef920e9 475 {"merge-notes", no_argument, 0, 'M'},
1d15e434 476 {"no-merge-notes", no_argument, 0, OPTION_NO_MERGE_NOTES},
252b5132
RH
477 {"no-adjust-warnings", no_argument, 0, OPTION_NO_CHANGE_WARNINGS},
478 {"no-change-warnings", no_argument, 0, OPTION_NO_CHANGE_WARNINGS},
ed1653a7 479 {"only-keep-debug", no_argument, 0, OPTION_ONLY_KEEP_DEBUG},
d7fb0dd2 480 {"only-section", required_argument, 0, 'j'},
252b5132
RH
481 {"output-format", required_argument, 0, 'O'}, /* Obsolete */
482 {"output-target", required_argument, 0, 'O'},
483 {"pad-to", required_argument, 0, OPTION_PAD_TO},
d7fb0dd2 484 {"prefix-alloc-sections", required_argument, 0, OPTION_PREFIX_ALLOC_SECTIONS},
2b35fb28
RH
485 {"prefix-sections", required_argument, 0, OPTION_PREFIX_SECTIONS},
486 {"prefix-symbols", required_argument, 0, OPTION_PREFIX_SYMBOLS},
252b5132 487 {"preserve-dates", no_argument, 0, 'p'},
4087920c
MR
488 {"pure", no_argument, 0, OPTION_PURE},
489 {"readonly-text", no_argument, 0, OPTION_READONLY_TEXT},
d7fb0dd2 490 {"redefine-sym", required_argument, 0, OPTION_REDEFINE_SYM},
92991082 491 {"redefine-syms", required_argument, 0, OPTION_REDEFINE_SYMS},
252b5132
RH
492 {"remove-leading-char", no_argument, 0, OPTION_REMOVE_LEADING_CHAR},
493 {"remove-section", required_argument, 0, 'R'},
d3e5f6c8 494 {"remove-relocations", required_argument, 0, OPTION_REMOVE_RELOCS},
594ef5db 495 {"rename-section", required_argument, 0, OPTION_RENAME_SECTION},
9e48b4c6 496 {"reverse-bytes", required_argument, 0, OPTION_REVERSE_BYTES},
fa463e9f 497 {"section-alignment", required_argument, 0, OPTION_PE_SECTION_ALIGNMENT},
252b5132 498 {"set-section-flags", required_argument, 0, OPTION_SET_SECTION_FLAGS},
fa463e9f 499 {"set-section-alignment", required_argument, 0, OPTION_SET_SECTION_ALIGNMENT},
252b5132 500 {"set-start", required_argument, 0, OPTION_SET_START},
d7fb0dd2 501 {"srec-forceS3", no_argument, 0, OPTION_SREC_FORCES3},
2b35fb28
RH
502 {"srec-len", required_argument, 0, OPTION_SREC_LEN},
503 {"stack", required_argument, 0, OPTION_STACK},
252b5132
RH
504 {"strip-all", no_argument, 0, 'S'},
505 {"strip-debug", no_argument, 0, 'g'},
96109726 506 {"strip-dwo", no_argument, 0, OPTION_STRIP_DWO},
2b35fb28
RH
507 {"strip-symbol", required_argument, 0, 'N'},
508 {"strip-symbols", required_argument, 0, OPTION_STRIP_SYMBOLS},
252b5132 509 {"strip-unneeded", no_argument, 0, OPTION_STRIP_UNNEEDED},
bcf32829
JB
510 {"strip-unneeded-symbol", required_argument, 0, OPTION_STRIP_UNNEEDED_SYMBOL},
511 {"strip-unneeded-symbols", required_argument, 0, OPTION_STRIP_UNNEEDED_SYMBOLS},
2b35fb28 512 {"subsystem", required_argument, 0, OPTION_SUBSYSTEM},
252b5132 513 {"target", required_argument, 0, 'F'},
2b35fb28 514 {"update-section", required_argument, 0, OPTION_UPDATE_SECTION},
252b5132 515 {"verbose", no_argument, 0, 'v'},
37d0d091 516 {"verilog-data-width", required_argument, 0, OPTION_VERILOG_DATA_WIDTH},
252b5132
RH
517 {"version", no_argument, 0, 'V'},
518 {"weaken", no_argument, 0, OPTION_WEAKEN},
519 {"weaken-symbol", required_argument, 0, 'W'},
16b2b71c 520 {"weaken-symbols", required_argument, 0, OPTION_WEAKEN_SYMBOLS},
5fe11841 521 {"wildcard", no_argument, 0, 'w'},
4087920c 522 {"writable-text", no_argument, 0, OPTION_WRITABLE_TEXT},
252b5132
RH
523 {0, no_argument, 0, 0}
524};
525
526/* IMPORTS */
527extern char *program_name;
528
529/* This flag distinguishes between strip and objcopy:
530 1 means this is 'strip'; 0 means this is 'objcopy'.
0af11b59 531 -1 means if we should use argv[0] to decide. */
252b5132
RH
532extern int is_strip;
533
4bc26c69 534/* The maximum length of an S record. This variable is defined in srec.c
420496c1 535 and can be modified by the --srec-len parameter. */
4bc26c69 536extern unsigned int _bfd_srec_len;
420496c1
NC
537
538/* Restrict the generation of Srecords to type S3 only.
4bc26c69 539 This variable is defined in bfd/srec.c and can be toggled
420496c1 540 on by the --srec-forceS3 command line switch. */
015dc7e1 541extern bool _bfd_srec_forceS3;
252b5132 542
37d0d091
JH
543/* Width of data in bytes for verilog output.
544 This variable is declared in bfd/verilog.c and can be modified by
545 the --verilog-data-width parameter. */
546extern unsigned int VerilogDataWidth;
547
d3ba0551
AM
548/* Forward declarations. */
549static void setup_section (bfd *, asection *, void *);
80fccad2 550static void setup_bfd_headers (bfd *, bfd *);
c3989150 551static void copy_relocations_in_section (bfd *, asection *, void *);
d3ba0551
AM
552static void copy_section (bfd *, asection *, void *);
553static void get_sections (bfd *, asection *, void *);
554static int compare_section_lma (const void *, const void *);
555static void mark_symbols_used_in_relocations (bfd *, asection *, void *);
015dc7e1 556static bool write_debugging_info (bfd *, void *, long *, asymbol ***);
d3ba0551 557static const char *lookup_sym_redefinition (const char *);
9cc0123f 558static const char *find_section_rename (const char *, flagword *);
594ef5db 559\f
1e0f0b4d 560ATTRIBUTE_NORETURN static void
84e2f313 561copy_usage (FILE *stream, int exit_status)
252b5132 562{
8b53311e
NC
563 fprintf (stream, _("Usage: %s [option(s)] in-file [out-file]\n"), program_name);
564 fprintf (stream, _(" Copies a binary file, possibly transforming it in the process\n"));
6364e0b4 565 fprintf (stream, _(" The options are:\n"));
252b5132 566 fprintf (stream, _("\
d5bcb29d
NC
567 -I --input-target <bfdname> Assume input file is in format <bfdname>\n\
568 -O --output-target <bfdname> Create an output file in format <bfdname>\n\
8b31b6c4 569 -B --binary-architecture <arch> Set output arch, when input is arch-less\n\
d5bcb29d
NC
570 -F --target <bfdname> Set both input and output format to <bfdname>\n\
571 --debugging Convert debugging information, if possible\n\
955d0b3b
RM
572 -p --preserve-dates Copy modified/access timestamps to the output\n"));
573 if (DEFAULT_AR_DETERMINISTIC)
574 fprintf (stream, _("\
575 -D --enable-deterministic-archives\n\
576 Produce deterministic output when stripping archives (default)\n\
577 -U --disable-deterministic-archives\n\
578 Disable -D behavior\n"));
579 else
580 fprintf (stream, _("\
2e30cb57
CC
581 -D --enable-deterministic-archives\n\
582 Produce deterministic output when stripping archives\n\
955d0b3b
RM
583 -U --disable-deterministic-archives\n\
584 Disable -D behavior (default)\n"));
585 fprintf (stream, _("\
d5bcb29d 586 -j --only-section <name> Only copy section <name> into the output\n\
2593f09a 587 --add-gnu-debuglink=<file> Add section .gnu_debuglink linking to <file>\n\
d5bcb29d 588 -R --remove-section <name> Remove section <name> from the output\n\
d3e5f6c8 589 --remove-relocations <name> Remove relocations from section <name>\n\
d5bcb29d 590 -S --strip-all Remove all symbol and relocation information\n\
2593f09a 591 -g --strip-debug Remove all debugging symbols & sections\n\
96109726 592 --strip-dwo Remove all DWO sections\n\
d5bcb29d
NC
593 --strip-unneeded Remove all symbols not needed by relocations\n\
594 -N --strip-symbol <name> Do not copy symbol <name>\n\
bcf32829
JB
595 --strip-unneeded-symbol <name>\n\
596 Do not copy symbol <name> unless needed by\n\
597 relocations\n\
6ea3dd37 598 --only-keep-debug Strip everything but the debug information\n\
96109726 599 --extract-dwo Copy only DWO sections\n\
d3e52d40 600 --extract-symbol Remove section contents but keep symbols\n\
64f52b3e 601 --keep-section <name> Do not strip section <name>\n\
e7f918ad 602 -K --keep-symbol <name> Do not strip symbol <name>\n\
ca0e11aa 603 --keep-section-symbols Do not strip section symbols\n\
1637cd90 604 --keep-file-symbols Do not strip file symbol(s)\n\
d58c2e3a 605 --localize-hidden Turn all ELF hidden symbols into locals\n\
d5bcb29d 606 -L --localize-symbol <name> Force symbol <name> to be marked as a local\n\
7b4a0685 607 --globalize-symbol <name> Force symbol <name> to be marked as a global\n\
16b2b71c 608 -G --keep-global-symbol <name> Localize all symbols except <name>\n\
d5bcb29d
NC
609 -W --weaken-symbol <name> Force symbol <name> to be marked as a weak\n\
610 --weaken Force all global symbols to be marked as weak\n\
a95b5cf9 611 -w --wildcard Permit wildcard in symbol comparison\n\
d5bcb29d
NC
612 -x --discard-all Remove all non-global symbols\n\
613 -X --discard-locals Remove any compiler-generated symbols\n\
bfcf0ccd 614 -i --interleave[=<number>] Only copy N out of every <number> bytes\n\
b7dd81f7 615 --interleave-width <number> Set N for --interleave\n\
d5bcb29d
NC
616 -b --byte <num> Select byte <num> in every interleaved block\n\
617 --gap-fill <val> Fill gaps between sections with <val>\n\
618 --pad-to <addr> Pad the last section up to address <addr>\n\
619 --set-start <addr> Set the start address to <addr>\n\
620 {--change-start|--adjust-start} <incr>\n\
621 Add <incr> to the start address\n\
622 {--change-addresses|--adjust-vma} <incr>\n\
623 Add <incr> to LMA, VMA and start addresses\n\
624 {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>\n\
625 Change LMA and VMA of section <name> by <val>\n\
626 --change-section-lma <name>{=|+|-}<val>\n\
627 Change the LMA of section <name> by <val>\n\
628 --change-section-vma <name>{=|+|-}<val>\n\
629 Change the VMA of section <name> by <val>\n\
630 {--[no-]change-warnings|--[no-]adjust-warnings}\n\
631 Warn if a named section does not exist\n\
632 --set-section-flags <name>=<flags>\n\
633 Set section <name>'s properties to <flags>\n\
fa463e9f 634 --set-section-alignment <name>=<align>\n\
de4859ea 635 Set section <name>'s alignment to <align> bytes\n\
d5bcb29d 636 --add-section <name>=<file> Add section <name> found in <file> to output\n\
acf1419f
AB
637 --update-section <name>=<file>\n\
638 Update contents of section <name> with\n\
639 contents found in <file>\n\
bbad633b 640 --dump-section <name>=<file> Dump the contents of section <name> into <file>\n\
594ef5db 641 --rename-section <old>=<new>[,<flags>] Rename section <old> to <new>\n\
0408dee6
DK
642 --long-section-names {enable|disable|keep}\n\
643 Handle long section names in Coff objects.\n\
d5bcb29d
NC
644 --change-leading-char Force output format's leading character style\n\
645 --remove-leading-char Remove leading character from global symbols\n\
9e48b4c6 646 --reverse-bytes=<num> Reverse <num> bytes at a time, in output sections with content\n\
57938635 647 --redefine-sym <old>=<new> Redefine symbol name <old> to <new>\n\
92991082
JT
648 --redefine-syms <file> --redefine-sym for all symbol pairs \n\
649 listed in <file>\n\
420496c1
NC
650 --srec-len <number> Restrict the length of generated Srecords\n\
651 --srec-forceS3 Restrict the type of generated Srecords to S3\n\
16b2b71c 652 --strip-symbols <file> -N for all symbols listed in <file>\n\
bcf32829
JB
653 --strip-unneeded-symbols <file>\n\
654 --strip-unneeded-symbol for all symbols listed\n\
655 in <file>\n\
16b2b71c
NC
656 --keep-symbols <file> -K for all symbols listed in <file>\n\
657 --localize-symbols <file> -L for all symbols listed in <file>\n\
7b4a0685 658 --globalize-symbols <file> --globalize-symbol for all in <file>\n\
16b2b71c
NC
659 --keep-global-symbols <file> -G for all symbols listed in <file>\n\
660 --weaken-symbols <file> -W for all symbols listed in <file>\n\
2b35fb28 661 --add-symbol <name>=[<section>:]<value>[,<flags>] Add a symbol\n\
f9d4ad2a 662 --alt-machine-code <index> Use the target's <index>'th alternative machine\n\
4087920c
MR
663 --writable-text Mark the output text as writable\n\
664 --readonly-text Make the output text write protected\n\
665 --pure Mark the output file as demand paged\n\
666 --impure Mark the output file as impure\n\
d7fb0dd2
NC
667 --prefix-symbols <prefix> Add <prefix> to start of every symbol name\n\
668 --prefix-sections <prefix> Add <prefix> to start of every section name\n\
669 --prefix-alloc-sections <prefix>\n\
670 Add <prefix> to start of every allocatable\n\
671 section name\n\
92dd4511
L
672 --file-alignment <num> Set PE file alignment to <num>\n\
673 --heap <reserve>[,<commit>] Set PE reserve/commit heap to <reserve>/\n\
674 <commit>\n\
675 --image-base <address> Set PE image base to <address>\n\
676 --section-alignment <num> Set PE section alignment to <num>\n\
677 --stack <reserve>[,<commit>] Set PE reserve/commit stack to <reserve>/\n\
678 <commit>\n\
679 --subsystem <name>[:<version>]\n\
447049af 680 Set PE subsystem to <name> [& <version>]\n\
151411f8
L
681 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n\
682 Compress DWARF debug sections using zlib\n\
4a114e3e 683 --decompress-debug-sections Decompress DWARF debug sections using zlib\n\
b8871f35
L
684 --elf-stt-common=[yes|no] Generate ELF common symbols with STT_COMMON\n\
685 type\n\
37d0d091 686 --verilog-data-width <number> Specifies data width, in bytes, for verilog output\n\
9ef920e9 687 -M --merge-notes Remove redundant entries in note sections\n\
1d15e434 688 --no-merge-notes Do not attempt to remove redundant notes (default)\n\
d5bcb29d 689 -v --verbose List all object files modified\n\
07012eee 690 @<file> Read options from <file>\n\
d5bcb29d
NC
691 -V --version Display this program's version number\n\
692 -h --help Display this output\n\
7c29036b 693 --info List object formats & architectures supported\n\
d5bcb29d 694"));
252b5132 695 list_supported_targets (program_name, stream);
92f01d61 696 if (REPORT_BUGS_TO[0] && exit_status == 0)
8ad3436c 697 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
698 exit (exit_status);
699}
700
1e0f0b4d 701ATTRIBUTE_NORETURN static void
84e2f313 702strip_usage (FILE *stream, int exit_status)
252b5132 703{
8b53311e
NC
704 fprintf (stream, _("Usage: %s <option(s)> in-file(s)\n"), program_name);
705 fprintf (stream, _(" Removes symbols and sections from files\n"));
6364e0b4 706 fprintf (stream, _(" The options are:\n"));
252b5132 707 fprintf (stream, _("\
8b53311e
NC
708 -I --input-target=<bfdname> Assume input file is in format <bfdname>\n\
709 -O --output-target=<bfdname> Create an output file in format <bfdname>\n\
710 -F --target=<bfdname> Set both input and output format to <bfdname>\n\
d5bcb29d 711 -p --preserve-dates Copy modified/access timestamps to the output\n\
955d0b3b
RM
712"));
713 if (DEFAULT_AR_DETERMINISTIC)
714 fprintf (stream, _("\
715 -D --enable-deterministic-archives\n\
716 Produce deterministic output when stripping archives (default)\n\
717 -U --disable-deterministic-archives\n\
718 Disable -D behavior\n"));
719 else
720 fprintf (stream, _("\
2e30cb57
CC
721 -D --enable-deterministic-archives\n\
722 Produce deterministic output when stripping archives\n\
955d0b3b
RM
723 -U --disable-deterministic-archives\n\
724 Disable -D behavior (default)\n"));
725 fprintf (stream, _("\
805b1c8b 726 -R --remove-section=<name> Also remove section <name> from the output\n\
d3e5f6c8 727 --remove-relocations <name> Remove relocations from section <name>\n\
d5bcb29d 728 -s --strip-all Remove all symbol and relocation information\n\
2593f09a 729 -g -S -d --strip-debug Remove all debugging symbols & sections\n\
96109726 730 --strip-dwo Remove all DWO sections\n\
d5bcb29d 731 --strip-unneeded Remove all symbols not needed by relocations\n\
6ea3dd37 732 --only-keep-debug Strip everything but the debug information\n\
1d15e434
NC
733 -M --merge-notes Remove redundant entries in note sections (default)\n\
734 --no-merge-notes Do not attempt to remove redundant notes\n\
8b53311e 735 -N --strip-symbol=<name> Do not copy symbol <name>\n\
64f52b3e 736 --keep-section=<name> Do not strip section <name>\n\
5219e4c0 737 -K --keep-symbol=<name> Do not strip symbol <name>\n\
ca0e11aa 738 --keep-section-symbols Do not strip section symbols\n\
1637cd90 739 --keep-file-symbols Do not strip file symbol(s)\n\
a95b5cf9 740 -w --wildcard Permit wildcard in symbol comparison\n\
d5bcb29d
NC
741 -x --discard-all Remove all non-global symbols\n\
742 -X --discard-locals Remove any compiler-generated symbols\n\
743 -v --verbose List all object files modified\n\
744 -V --version Display this program's version number\n\
745 -h --help Display this output\n\
7c29036b 746 --info List object formats & architectures supported\n\
d5bcb29d
NC
747 -o <file> Place stripped output into <file>\n\
748"));
749
252b5132 750 list_supported_targets (program_name, stream);
92f01d61 751 if (REPORT_BUGS_TO[0] && exit_status == 0)
8ad3436c 752 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
753 exit (exit_status);
754}
755
756/* Parse section flags into a flagword, with a fatal error if the
757 string can't be parsed. */
758
759static flagword
84e2f313 760parse_flags (const char *s)
252b5132
RH
761{
762 flagword ret;
763 const char *snext;
764 int len;
765
766 ret = SEC_NO_FLAGS;
767
768 do
769 {
770 snext = strchr (s, ',');
771 if (snext == NULL)
772 len = strlen (s);
773 else
774 {
775 len = snext - s;
776 ++snext;
777 }
778
779 if (0) ;
f7433f01
AM
780#define PARSE_FLAG(fname,fval) \
781 else if (strncasecmp (fname, s, len) == 0) ret |= fval
252b5132
RH
782 PARSE_FLAG ("alloc", SEC_ALLOC);
783 PARSE_FLAG ("load", SEC_LOAD);
3994e2c6 784 PARSE_FLAG ("noload", SEC_NEVER_LOAD);
252b5132 785 PARSE_FLAG ("readonly", SEC_READONLY);
3994e2c6 786 PARSE_FLAG ("debug", SEC_DEBUGGING);
252b5132
RH
787 PARSE_FLAG ("code", SEC_CODE);
788 PARSE_FLAG ("data", SEC_DATA);
789 PARSE_FLAG ("rom", SEC_ROM);
3a5d12fb 790 PARSE_FLAG ("exclude", SEC_EXCLUDE);
ebe372c1 791 PARSE_FLAG ("share", SEC_COFF_SHARED);
252b5132 792 PARSE_FLAG ("contents", SEC_HAS_CONTENTS);
5dddde8e
AM
793 PARSE_FLAG ("merge", SEC_MERGE);
794 PARSE_FLAG ("strings", SEC_STRINGS);
252b5132
RH
795#undef PARSE_FLAG
796 else
797 {
798 char *copy;
799
3f5e193b 800 copy = (char *) xmalloc (len + 1);
252b5132
RH
801 strncpy (copy, s, len);
802 copy[len] = '\0';
803 non_fatal (_("unrecognized section flag `%s'"), copy);
57938635 804 fatal (_("supported flags: %s"),
3a5d12fb 805 "alloc, load, noload, readonly, debug, code, data, rom, exclude, share, contents, merge, strings");
252b5132
RH
806 }
807
808 s = snext;
809 }
810 while (s != NULL);
811
812 return ret;
813}
814
2b35fb28
RH
815/* Parse symbol flags into a flagword, with a fatal error if the
816 string can't be parsed. */
817
818static flagword
ffebb0bb 819parse_symflags (const char *s, const char **other)
2b35fb28
RH
820{
821 flagword ret;
822 const char *snext;
f7433f01 823 size_t len;
2b35fb28
RH
824
825 ret = BSF_NO_FLAGS;
826
827 do
828 {
829 snext = strchr (s, ',');
830 if (snext == NULL)
f7433f01 831 len = strlen (s);
2b35fb28
RH
832 else
833 {
834 len = snext - s;
835 ++snext;
836 }
837
f7433f01
AM
838#define PARSE_FLAG(fname, fval) \
839 else if (len == sizeof fname - 1 \
840 && strncasecmp (fname, s, len) == 0) \
2b35fb28
RH
841 ret |= fval
842
f7433f01
AM
843#define PARSE_OTHER(fname, fval) \
844 else if (len >= sizeof fname \
845 && strncasecmp (fname, s, sizeof fname - 1) == 0) \
a4f8732b 846 fval = xstrndup (s + sizeof fname - 1, len - sizeof fname + 1)
f7433f01 847
2b35fb28
RH
848 if (0) ;
849 PARSE_FLAG ("local", BSF_LOCAL);
850 PARSE_FLAG ("global", BSF_GLOBAL);
851 PARSE_FLAG ("export", BSF_EXPORT);
852 PARSE_FLAG ("debug", BSF_DEBUGGING);
853 PARSE_FLAG ("function", BSF_FUNCTION);
854 PARSE_FLAG ("weak", BSF_WEAK);
855 PARSE_FLAG ("section", BSF_SECTION_SYM);
856 PARSE_FLAG ("constructor", BSF_CONSTRUCTOR);
857 PARSE_FLAG ("warning", BSF_WARNING);
858 PARSE_FLAG ("indirect", BSF_INDIRECT);
859 PARSE_FLAG ("file", BSF_FILE);
860 PARSE_FLAG ("object", BSF_OBJECT);
861 PARSE_FLAG ("synthetic", BSF_SYNTHETIC);
862 PARSE_FLAG ("indirect-function", BSF_GNU_INDIRECT_FUNCTION | BSF_FUNCTION);
863 PARSE_FLAG ("unique-object", BSF_GNU_UNIQUE | BSF_OBJECT);
864 PARSE_OTHER ("before=", *other);
865
866#undef PARSE_FLAG
867#undef PARSE_OTHER
868 else
869 {
870 char *copy;
871
872 copy = (char *) xmalloc (len + 1);
873 strncpy (copy, s, len);
874 copy[len] = '\0';
875 non_fatal (_("unrecognized symbol flag `%s'"), copy);
876 fatal (_("supported flags: %s"),
f7433f01
AM
877 "local, global, export, debug, function, weak, section, "
878 "constructor, warning, indirect, file, object, synthetic, "
879 "indirect-function, unique-object, before=<othersym>");
2b35fb28
RH
880 }
881
882 s = snext;
883 }
884 while (s != NULL);
885
886 return ret;
887}
888
2e62b721
NC
889/* Find and optionally add an entry in the change_sections list.
890
891 We need to be careful in how we match section names because of the support
892 for wildcard characters. For example suppose that the user has invoked
893 objcopy like this:
3aade688 894
2e62b721
NC
895 --set-section-flags .debug_*=debug
896 --set-section-flags .debug_str=readonly,debug
897 --change-section-address .debug_*ranges=0x1000
898
899 With the idea that all debug sections will receive the DEBUG flag, the
900 .debug_str section will also receive the READONLY flag and the
901 .debug_ranges and .debug_aranges sections will have their address set to
902 0x1000. (This may not make much sense, but it is just an example).
903
904 When adding the section name patterns to the section list we need to make
905 sure that previous entries do not match with the new entry, unless the
906 match is exact. (In which case we assume that the user is overriding
907 the previous entry with the new context).
908
909 When matching real section names to the section list we make use of the
910 wildcard characters, but we must do so in context. Eg if we are setting
911 section addresses then we match for .debug_ranges but not for .debug_info.
912
913 Finally, if ADD is false and we do find a match, we mark the section list
914 entry as used. */
252b5132
RH
915
916static struct section_list *
015dc7e1 917find_section_list (const char *name, bool add, unsigned int context)
252b5132 918{
e511c9b1 919 struct section_list *p, *match = NULL;
252b5132 920
2e62b721 921 /* assert ((context & ((1 << 7) - 1)) != 0); */
3aade688 922
252b5132 923 for (p = change_sections; p != NULL; p = p->next)
2e62b721
NC
924 {
925 if (add)
926 {
927 if (strcmp (p->pattern, name) == 0)
928 {
929 /* Check for context conflicts. */
930 if (((p->context & SECTION_CONTEXT_REMOVE)
931 && (context & SECTION_CONTEXT_COPY))
932 || ((context & SECTION_CONTEXT_REMOVE)
933 && (p->context & SECTION_CONTEXT_COPY)))
934 fatal (_("error: %s both copied and removed"), name);
935
936 if (((p->context & SECTION_CONTEXT_SET_VMA)
937 && (context & SECTION_CONTEXT_ALTER_VMA))
938 || ((context & SECTION_CONTEXT_SET_VMA)
939 && (context & SECTION_CONTEXT_ALTER_VMA)))
940 fatal (_("error: %s both sets and alters VMA"), name);
941
942 if (((p->context & SECTION_CONTEXT_SET_LMA)
943 && (context & SECTION_CONTEXT_ALTER_LMA))
944 || ((context & SECTION_CONTEXT_SET_LMA)
945 && (context & SECTION_CONTEXT_ALTER_LMA)))
946 fatal (_("error: %s both sets and alters LMA"), name);
947
948 /* Extend the context. */
949 p->context |= context;
950 return p;
951 }
952 }
953 /* If we are not adding a new name/pattern then
954 only check for a match if the context applies. */
e511c9b1
AB
955 else if (p->context & context)
956 {
957 /* We could check for the presence of wildchar characters
958 first and choose between calling strcmp and fnmatch,
959 but is that really worth it ? */
960 if (p->pattern [0] == '!')
961 {
962 if (fnmatch (p->pattern + 1, name, 0) == 0)
963 {
015dc7e1 964 p->used = true;
e511c9b1
AB
965 return NULL;
966 }
967 }
968 else
969 {
970 if (fnmatch (p->pattern, name, 0) == 0)
971 {
972 if (match == NULL)
973 match = p;
974 }
975 }
976 }
2e62b721 977 }
252b5132
RH
978
979 if (! add)
e511c9b1
AB
980 {
981 if (match != NULL)
015dc7e1 982 match->used = true;
e511c9b1
AB
983 return match;
984 }
252b5132 985
3f5e193b 986 p = (struct section_list *) xmalloc (sizeof (struct section_list));
2e62b721 987 p->pattern = name;
015dc7e1 988 p->used = false;
2e62b721 989 p->context = context;
252b5132
RH
990 p->vma_val = 0;
991 p->lma_val = 0;
252b5132 992 p->flags = 0;
fa463e9f 993 p->alignment = 0;
252b5132
RH
994 p->next = change_sections;
995 change_sections = p;
996
997 return p;
998}
999
0f65a5d8
JW
1000/* S1 is the entry node already in the table, S2 is the key node. */
1001
1002static int
1003eq_string_redefnode (const void *s1, const void *s2)
1004{
1005 struct redefine_node *node1 = (struct redefine_node *) s1;
1006 struct redefine_node *node2 = (struct redefine_node *) s2;
1007 return !strcmp ((const char *) node1->source, (const char *) node2->source);
1008}
1009
1010/* P is redefine node. Hash value is generated from its "source" filed. */
1011
1012static hashval_t
1013htab_hash_redefnode (const void *p)
1014{
1015 struct redefine_node *redefnode = (struct redefine_node *) p;
1016 return htab_hash_string (redefnode->source);
1017}
1018
1019/* Create hashtab used for redefine node. */
1020
1021static htab_t
1022create_symbol2redef_htab (void)
1023{
1024 return htab_create_alloc (16, htab_hash_redefnode, eq_string_redefnode, NULL,
1025 xcalloc, free);
1026}
1027
047c9024
NC
1028static htab_t
1029create_symbol_htab (void)
1030{
b05a0fc7
AM
1031 return htab_create_alloc (16, htab_hash_string, htab_eq_string, NULL,
1032 xcalloc, free);
047c9024 1033}
252b5132 1034
57938635 1035static void
047c9024 1036create_symbol_htabs (void)
252b5132 1037{
047c9024
NC
1038 strip_specific_htab = create_symbol_htab ();
1039 strip_unneeded_htab = create_symbol_htab ();
1040 keep_specific_htab = create_symbol_htab ();
1041 localize_specific_htab = create_symbol_htab ();
1042 globalize_specific_htab = create_symbol_htab ();
1043 keepglobal_specific_htab = create_symbol_htab ();
1044 weaken_specific_htab = create_symbol_htab ();
0f65a5d8
JW
1045 redefine_specific_htab = create_symbol2redef_htab ();
1046 /* As there is no bidirectional hash table in libiberty, need a reverse table
1047 to check duplicated target string. */
1048 redefine_specific_reverse_htab = create_symbol_htab ();
047c9024
NC
1049}
1050
1051/* Add a symbol to strip_specific_list. */
252b5132 1052
047c9024
NC
1053static void
1054add_specific_symbol (const char *name, htab_t htab)
1055{
1056 *htab_find_slot (htab, name, INSERT) = (char *) name;
252b5132
RH
1057}
1058
0f65a5d8
JW
1059/* Like add_specific_symbol, but the element type is void *. */
1060
1061static void
1062add_specific_symbol_node (const void *node, htab_t htab)
1063{
1064 *htab_find_slot (htab, node, INSERT) = (void *) node;
1065}
1066
0af11b59 1067/* Add symbols listed in `filename' to strip_specific_list. */
16b2b71c
NC
1068
1069#define IS_WHITESPACE(c) ((c) == ' ' || (c) == '\t')
1070#define IS_LINE_TERMINATOR(c) ((c) == '\n' || (c) == '\r' || (c) == '\0')
1071
1072static void
d839b914 1073add_specific_symbols (const char *filename, htab_t htab, char **buffer_p)
16b2b71c 1074{
f24ddbdd 1075 off_t size;
16b2b71c
NC
1076 FILE * f;
1077 char * line;
1078 char * buffer;
1079 unsigned int line_count;
0af11b59 1080
f24ddbdd
NC
1081 size = get_file_size (filename);
1082 if (size == 0)
d68c385b
NC
1083 {
1084 status = 1;
1085 return;
1086 }
16b2b71c 1087
3f5e193b 1088 buffer = (char *) xmalloc (size + 2);
16b2b71c
NC
1089 f = fopen (filename, FOPEN_RT);
1090 if (f == NULL)
f24ddbdd 1091 fatal (_("cannot open '%s': %s"), filename, strerror (errno));
16b2b71c 1092
f24ddbdd 1093 if (fread (buffer, 1, size, f) == 0 || ferror (f))
16b2b71c
NC
1094 fatal (_("%s: fread failed"), filename);
1095
1096 fclose (f);
f24ddbdd
NC
1097 buffer [size] = '\n';
1098 buffer [size + 1] = '\0';
16b2b71c
NC
1099
1100 line_count = 1;
0af11b59 1101
16b2b71c
NC
1102 for (line = buffer; * line != '\0'; line ++)
1103 {
1104 char * eol;
1105 char * name;
1106 char * name_end;
015dc7e1 1107 int finished = false;
16b2b71c
NC
1108
1109 for (eol = line;; eol ++)
1110 {
1111 switch (* eol)
1112 {
1113 case '\n':
1114 * eol = '\0';
1115 /* Cope with \n\r. */
1116 if (eol[1] == '\r')
1117 ++ eol;
015dc7e1 1118 finished = true;
16b2b71c 1119 break;
0af11b59 1120
16b2b71c
NC
1121 case '\r':
1122 * eol = '\0';
1123 /* Cope with \r\n. */
1124 if (eol[1] == '\n')
1125 ++ eol;
015dc7e1 1126 finished = true;
16b2b71c 1127 break;
0af11b59 1128
16b2b71c 1129 case 0:
015dc7e1 1130 finished = true;
16b2b71c 1131 break;
0af11b59 1132
16b2b71c
NC
1133 case '#':
1134 /* Line comment, Terminate the line here, in case a
1135 name is present and then allow the rest of the
1136 loop to find the real end of the line. */
1137 * eol = '\0';
1138 break;
0af11b59 1139
16b2b71c
NC
1140 default:
1141 break;
1142 }
1143
1144 if (finished)
1145 break;
1146 }
1147
1148 /* A name may now exist somewhere between 'line' and 'eol'.
1149 Strip off leading whitespace and trailing whitespace,
1150 then add it to the list. */
1151 for (name = line; IS_WHITESPACE (* name); name ++)
1152 ;
1153 for (name_end = name;
1154 (! IS_WHITESPACE (* name_end))
1155 && (! IS_LINE_TERMINATOR (* name_end));
0af11b59
KH
1156 name_end ++)
1157 ;
16b2b71c
NC
1158
1159 if (! IS_LINE_TERMINATOR (* name_end))
1160 {
1161 char * extra;
1162
1163 for (extra = name_end + 1; IS_WHITESPACE (* extra); extra ++)
1164 ;
1165
1166 if (! IS_LINE_TERMINATOR (* extra))
d412a550
NC
1167 non_fatal (_("%s:%d: Ignoring rubbish found on this line"),
1168 filename, line_count);
16b2b71c 1169 }
0af11b59 1170
16b2b71c
NC
1171 * name_end = '\0';
1172
1173 if (name_end > name)
047c9024 1174 add_specific_symbol (name, htab);
16b2b71c
NC
1175
1176 /* Advance line pointer to end of line. The 'eol ++' in the for
1177 loop above will then advance us to the start of the next line. */
1178 line = eol;
1179 line_count ++;
1180 }
3391569f 1181
508d0c9b
NC
1182 /* Do not free the buffer. Parts of it will have been referenced
1183 in the calls to add_specific_symbol. */
d839b914 1184 *buffer_p = buffer;
16b2b71c
NC
1185}
1186
047c9024
NC
1187/* See whether a symbol should be stripped or kept
1188 based on strip_specific_list and keep_symbols. */
252b5132 1189
047c9024
NC
1190static int
1191is_specified_symbol_predicate (void **slot, void *data)
252b5132 1192{
3f5e193b
NC
1193 struct is_specified_symbol_predicate_data *d =
1194 (struct is_specified_symbol_predicate_data *) data;
1195 const char *slot_name = (char *) *slot;
252b5132 1196
047c9024 1197 if (*slot_name != '!')
5fe11841 1198 {
047c9024
NC
1199 if (! fnmatch (slot_name, d->name, 0))
1200 {
015dc7e1 1201 d->found = true;
0b45135e
AB
1202 /* Continue traversal, there might be a non-match rule. */
1203 return 1;
047c9024 1204 }
5fe11841
NC
1205 }
1206 else
1207 {
0b45135e 1208 if (! fnmatch (slot_name + 1, d->name, 0))
047c9024 1209 {
015dc7e1 1210 d->found = false;
047c9024
NC
1211 /* Stop traversal. */
1212 return 0;
1213 }
5fe11841 1214 }
594ef5db 1215
047c9024
NC
1216 /* Continue traversal. */
1217 return 1;
1218}
1219
015dc7e1 1220static bool
047c9024
NC
1221is_specified_symbol (const char *name, htab_t htab)
1222{
1223 if (wildcard)
1224 {
1225 struct is_specified_symbol_predicate_data data;
1226
1227 data.name = name;
015dc7e1 1228 data.found = false;
047c9024
NC
1229
1230 htab_traverse (htab, is_specified_symbol_predicate, &data);
1231
1232 return data.found;
1233 }
1234
1235 return htab_find (htab, name) != NULL;
252b5132
RH
1236}
1237
30288845
AM
1238/* Return a pointer to the symbol used as a signature for GROUP. */
1239
1240static asymbol *
1241group_signature (asection *group)
1242{
1243 bfd *abfd = group->owner;
1244 Elf_Internal_Shdr *ghdr;
1245
bcc3a8bc
NC
1246 /* PR 20089: An earlier error may have prevented us from loading the symbol table. */
1247 if (isympp == NULL)
1248 return NULL;
1249
30288845
AM
1250 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
1251 return NULL;
1252
1253 ghdr = &elf_section_data (group)->this_hdr;
ce4ec1a9 1254 if (ghdr->sh_link == elf_onesymtab (abfd))
30288845
AM
1255 {
1256 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
ce4ec1a9 1257 Elf_Internal_Shdr *symhdr = &elf_symtab_hdr (abfd);
30288845 1258
ce4ec1a9
AM
1259 if (ghdr->sh_info > 0
1260 && ghdr->sh_info < symhdr->sh_size / bed->s->sizeof_sym)
748fc5e9 1261 return isympp[ghdr->sh_info - 1];
30288845
AM
1262 }
1263 return NULL;
1264}
1265
96109726
CC
1266/* Return TRUE if the section is a DWO section. */
1267
015dc7e1 1268static bool
96109726
CC
1269is_dwo_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1270{
00c19b8e
NC
1271 const char *name;
1272 int len;
1273
1274 if (sec == NULL || (name = bfd_section_name (sec)) == NULL)
015dc7e1 1275 return false;
00c19b8e
NC
1276
1277 len = strlen (name);
1278 if (len < 5)
015dc7e1 1279 return false;
96109726 1280
3f3328b8 1281 return startswith (name + len - 4, ".dwo");
96109726
CC
1282}
1283
acf1419f
AB
1284/* Return TRUE if section SEC is in the update list. */
1285
015dc7e1 1286static bool
acf1419f
AB
1287is_update_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1288{
1289 if (update_sections != NULL)
1290 {
1291 struct section_add *pupdate;
1292
1293 for (pupdate = update_sections;
f7433f01
AM
1294 pupdate != NULL;
1295 pupdate = pupdate->next)
acf1419f 1296 {
f7433f01 1297 if (strcmp (sec->name, pupdate->name) == 0)
015dc7e1 1298 return true;
f7433f01 1299 }
acf1419f
AB
1300 }
1301
015dc7e1 1302 return false;
acf1419f
AB
1303}
1304
015dc7e1 1305static bool
5c49f2cd 1306is_mergeable_note_section (bfd * abfd, asection * sec)
9ef920e9
NC
1307{
1308 if (merge_notes
1309 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
1310 && elf_section_data (sec)->this_hdr.sh_type == SHT_NOTE
1311 /* FIXME: We currently only support merging GNU_BUILD_NOTEs.
1312 We should add support for more note types. */
08dedd66 1313 && (startswith (sec->name, GNU_BUILD_ATTRS_SECTION_NAME)))
015dc7e1 1314 return true;
9ef920e9 1315
015dc7e1 1316 return false;
9ef920e9
NC
1317}
1318
4c8e8a7e 1319/* See if a non-group section is being removed. */
252b5132 1320
015dc7e1 1321static bool
4c8e8a7e 1322is_strip_section_1 (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
252b5132 1323{
015dc7e1 1324 if (find_section_list (bfd_section_name (sec), false, SECTION_CONTEXT_KEEP)
64f52b3e 1325 != NULL)
015dc7e1 1326 return false;
64f52b3e 1327
2593f09a
NC
1328 if (sections_removed || sections_copied)
1329 {
1330 struct section_list *p;
2e62b721 1331 struct section_list *q;
2593f09a 1332
015dc7e1 1333 p = find_section_list (bfd_section_name (sec), false,
2e62b721 1334 SECTION_CONTEXT_REMOVE);
015dc7e1 1335 q = find_section_list (bfd_section_name (sec), false,
2e62b721 1336 SECTION_CONTEXT_COPY);
2593f09a 1337
2e62b721
NC
1338 if (p && q)
1339 fatal (_("error: section %s matches both remove and copy options"),
fd361982 1340 bfd_section_name (sec));
acf1419f 1341 if (p && is_update_section (abfd, sec))
f7433f01 1342 fatal (_("error: section %s matches both update and remove options"),
fd361982 1343 bfd_section_name (sec));
2e62b721
NC
1344
1345 if (p != NULL)
015dc7e1 1346 return true;
2e62b721 1347 if (sections_copied && q == NULL)
015dc7e1 1348 return true;
2593f09a 1349 }
252b5132 1350
fd361982 1351 if ((bfd_section_flags (sec) & SEC_DEBUGGING) != 0)
2593f09a
NC
1352 {
1353 if (strip_symbols == STRIP_DEBUG
252b5132
RH
1354 || strip_symbols == STRIP_UNNEEDED
1355 || strip_symbols == STRIP_ALL
1356 || discard_locals == LOCALS_ALL
2593f09a 1357 || convert_debugging)
4fc8b895
KT
1358 {
1359 /* By default we don't want to strip .reloc section.
1360 This section has for pe-coff special meaning. See
1361 pe-dll.c file in ld, and peXXigen.c in bfd for details. */
fd361982 1362 if (strcmp (bfd_section_name (sec), ".reloc") != 0)
015dc7e1 1363 return true;
4fc8b895 1364 }
ed1653a7 1365
96109726
CC
1366 if (strip_symbols == STRIP_DWO)
1367 return is_dwo_section (abfd, sec);
1368
ed1653a7 1369 if (strip_symbols == STRIP_NONDEBUG)
015dc7e1 1370 return false;
2593f09a 1371 }
f91ea849 1372
96109726
CC
1373 if (strip_symbols == STRIP_NONDWO)
1374 return !is_dwo_section (abfd, sec);
1375
015dc7e1 1376 return false;
4c8e8a7e
L
1377}
1378
1379/* See if a section is being removed. */
1380
015dc7e1 1381static bool
4c8e8a7e
L
1382is_strip_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
1383{
1384 if (is_strip_section_1 (abfd, sec))
015dc7e1 1385 return true;
4c8e8a7e 1386
fd361982 1387 if ((bfd_section_flags (sec) & SEC_GROUP) != 0)
30288845
AM
1388 {
1389 asymbol *gsym;
1390 const char *gname;
4c8e8a7e 1391 asection *elt, *first;
30288845 1392
886d5428
AM
1393 gsym = group_signature (sec);
1394 /* Strip groups without a valid signature. */
1395 if (gsym == NULL)
015dc7e1 1396 return true;
886d5428 1397
30288845
AM
1398 /* PR binutils/3181
1399 If we are going to strip the group signature symbol, then
1400 strip the group section too. */
886d5428 1401 gname = gsym->name;
30288845 1402 if ((strip_symbols == STRIP_ALL
047c9024
NC
1403 && !is_specified_symbol (gname, keep_specific_htab))
1404 || is_specified_symbol (gname, strip_specific_htab))
015dc7e1 1405 return true;
4c8e8a7e
L
1406
1407 /* Remove the group section if all members are removed. */
1408 first = elt = elf_next_in_group (sec);
1409 while (elt != NULL)
1410 {
1411 if (!is_strip_section_1 (abfd, elt))
015dc7e1 1412 return false;
4c8e8a7e
L
1413 elt = elf_next_in_group (elt);
1414 if (elt == first)
1415 break;
1416 }
1417
015dc7e1 1418 return true;
30288845 1419 }
91bb255c 1420
015dc7e1 1421 return false;
252b5132
RH
1422}
1423
015dc7e1 1424static bool
6e6e7cfc
JT
1425is_nondebug_keep_contents_section (bfd *ibfd, asection *isection)
1426{
1427 /* Always keep ELF note sections. */
dd68a12b
AM
1428 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
1429 return elf_section_type (isection) == SHT_NOTE;
6e6e7cfc 1430
74fffc39 1431 /* Always keep the .buildid section for PE/COFF.
6e6e7cfc
JT
1432
1433 Strictly, this should be written "always keep the section storing the debug
1434 directory", but that may be the .text section for objects produced by some
1435 tools, which it is not sensible to keep. */
dd68a12b
AM
1436 if (bfd_get_flavour (ibfd) == bfd_target_coff_flavour)
1437 return strcmp (bfd_section_name (isection), ".buildid") == 0;
6e6e7cfc 1438
015dc7e1 1439 return false;
6e6e7cfc
JT
1440}
1441
d58c2e3a
RS
1442/* Return true if SYM is a hidden symbol. */
1443
015dc7e1 1444static bool
d58c2e3a
RS
1445is_hidden_symbol (asymbol *sym)
1446{
1447 elf_symbol_type *elf_sym;
1448
c1229f84 1449 elf_sym = elf_symbol_from (sym);
d58c2e3a
RS
1450 if (elf_sym != NULL)
1451 switch (ELF_ST_VISIBILITY (elf_sym->internal_elf_sym.st_other))
1452 {
1453 case STV_HIDDEN:
1454 case STV_INTERNAL:
015dc7e1 1455 return true;
d58c2e3a 1456 }
015dc7e1 1457 return false;
d58c2e3a
RS
1458}
1459
ffebb0bb
NC
1460/* Empty name is hopefully never a valid symbol name. */
1461static const char * empty_name = "";
1462
015dc7e1 1463static bool
2b35fb28
RH
1464need_sym_before (struct addsym_node **node, const char *sym)
1465{
1466 int count;
1467 struct addsym_node *ptr = add_sym_list;
1468
1469 /* 'othersym' symbols are at the front of the list. */
1470 for (count = 0; count < add_symbols; count++)
1471 {
1472 if (!ptr->othersym)
1473 break;
ffebb0bb
NC
1474 if (ptr->othersym == empty_name)
1475 continue;
2b35fb28
RH
1476 else if (strcmp (ptr->othersym, sym) == 0)
1477 {
ffebb0bb
NC
1478 free ((char *) ptr->othersym);
1479 ptr->othersym = empty_name;
2b35fb28 1480 *node = ptr;
015dc7e1 1481 return true;
2b35fb28
RH
1482 }
1483 ptr = ptr->next;
1484 }
015dc7e1 1485 return false;
2b35fb28
RH
1486}
1487
1488static asymbol *
1489create_new_symbol (struct addsym_node *ptr, bfd *obfd)
1490{
f7433f01 1491 asymbol *sym = bfd_make_empty_symbol (obfd);
2b35fb28 1492
e6f7f6d1 1493 bfd_set_asymbol_name (sym, ptr->symdef);
2b35fb28
RH
1494 sym->value = ptr->symval;
1495 sym->flags = ptr->flags;
1496 if (ptr->section)
1497 {
1498 asection *sec = bfd_get_section_by_name (obfd, ptr->section);
1499 if (!sec)
1500 fatal (_("Section %s not found"), ptr->section);
1501 sym->section = sec;
1502 }
f7433f01
AM
1503 else
1504 sym->section = bfd_abs_section_ptr;
2b35fb28
RH
1505 return sym;
1506}
1507
252b5132
RH
1508/* Choose which symbol entries to copy; put the result in OSYMS.
1509 We don't copy in place, because that confuses the relocs.
1510 Return the number of symbols to print. */
1511
1512static unsigned int
84e2f313
NC
1513filter_symbols (bfd *abfd, bfd *obfd, asymbol **osyms,
1514 asymbol **isyms, long symcount)
252b5132 1515{
84e2f313 1516 asymbol **from = isyms, **to = osyms;
252b5132 1517 long src_count = 0, dst_count = 0;
e205a099 1518 int relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
252b5132
RH
1519
1520 for (; src_count < symcount; src_count++)
1521 {
1522 asymbol *sym = from[src_count];
1523 flagword flags = sym->flags;
d7fb0dd2 1524 char *name = (char *) bfd_asymbol_name (sym);
015dc7e1
AM
1525 bool keep;
1526 bool used_in_reloc = false;
1527 bool undefined;
1528 bool rem_leading_char;
1529 bool add_leading_char;
d7fb0dd2 1530
e6f7f6d1 1531 undefined = bfd_is_und_section (bfd_asymbol_section (sym));
252b5132 1532
2b35fb28
RH
1533 if (add_sym_list)
1534 {
1535 struct addsym_node *ptr;
1536
1537 if (need_sym_before (&ptr, name))
1538 to[dst_count++] = create_new_symbol (ptr, obfd);
1539 }
1540
0f65a5d8 1541 if (htab_elements (redefine_specific_htab) || section_rename_list)
57938635 1542 {
9cc0123f 1543 char *new_name;
57938635 1544
9cc0123f
AM
1545 new_name = (char *) lookup_sym_redefinition (name);
1546 if (new_name == name
1547 && (flags & BSF_SECTION_SYM) != 0)
1548 new_name = (char *) find_section_rename (name, NULL);
e6f7f6d1 1549 bfd_set_asymbol_name (sym, new_name);
66491ebc 1550 name = new_name;
57938635
AM
1551 }
1552
d7fb0dd2
NC
1553 /* Check if we will remove the current leading character. */
1554 rem_leading_char =
a9b90127
AM
1555 (name[0] != '\0'
1556 && name[0] == bfd_get_symbol_leading_char (abfd)
1557 && (change_leading_char
1558 || (remove_leading_char
1559 && ((flags & (BSF_GLOBAL | BSF_WEAK)) != 0
1560 || undefined
1561 || bfd_is_com_section (bfd_asymbol_section (sym))))));
d7fb0dd2
NC
1562
1563 /* Check if we will add a new leading character. */
1564 add_leading_char =
1565 change_leading_char
1566 && (bfd_get_symbol_leading_char (obfd) != '\0')
1567 && (bfd_get_symbol_leading_char (abfd) == '\0'
1568 || (name[0] == bfd_get_symbol_leading_char (abfd)));
1569
1570 /* Short circuit for change_leading_char if we can do it in-place. */
1571 if (rem_leading_char && add_leading_char && !prefix_symbols_string)
f7433f01 1572 {
d7fb0dd2 1573 name[0] = bfd_get_symbol_leading_char (obfd);
e6f7f6d1 1574 bfd_set_asymbol_name (sym, name);
015dc7e1
AM
1575 rem_leading_char = false;
1576 add_leading_char = false;
f7433f01 1577 }
d7fb0dd2
NC
1578
1579 /* Remove leading char. */
1580 if (rem_leading_char)
e6f7f6d1 1581 bfd_set_asymbol_name (sym, ++name);
d7fb0dd2
NC
1582
1583 /* Add new leading char and/or prefix. */
1584 if (add_leading_char || prefix_symbols_string)
f7433f01
AM
1585 {
1586 char *n, *ptr;
d1faf7ca 1587 size_t len = strlen (name) + 1;
d7fb0dd2 1588
d1faf7ca
AM
1589 if (add_leading_char)
1590 len++;
1591 if (prefix_symbols_string)
1592 len += strlen (prefix_symbols_string);
1593
1594 ptr = n = (char *) xmalloc (len);
f7433f01 1595 if (add_leading_char)
d7fb0dd2
NC
1596 *ptr++ = bfd_get_symbol_leading_char (obfd);
1597
f7433f01
AM
1598 if (prefix_symbols_string)
1599 {
1600 strcpy (ptr, prefix_symbols_string);
1601 ptr += strlen (prefix_symbols_string);
1602 }
d7fb0dd2 1603
f7433f01 1604 strcpy (ptr, name);
e6f7f6d1 1605 bfd_set_asymbol_name (sym, n);
f7433f01 1606 name = n;
252b5132
RH
1607 }
1608
252b5132 1609 if (strip_symbols == STRIP_ALL)
015dc7e1 1610 keep = false;
252b5132
RH
1611 else if ((flags & BSF_KEEP) != 0 /* Used in relocation. */
1612 || ((flags & BSF_SECTION_SYM) != 0
e6f7f6d1 1613 && ((*bfd_asymbol_section (sym)->symbol_ptr_ptr)->flags
252b5132 1614 & BSF_KEEP) != 0))
312aaa3c 1615 {
015dc7e1
AM
1616 keep = true;
1617 used_in_reloc = true;
312aaa3c 1618 }
0af11b59 1619 else if (relocatable /* Relocatable file. */
0691f7af 1620 && ((flags & (BSF_GLOBAL | BSF_WEAK)) != 0
e6f7f6d1 1621 || bfd_is_com_section (bfd_asymbol_section (sym))))
015dc7e1 1622 keep = true;
16b2b71c
NC
1623 else if (bfd_decode_symclass (sym) == 'I')
1624 /* Global symbols in $idata sections need to be retained
b34976b6 1625 even if relocatable is FALSE. External users of the
16b2b71c
NC
1626 library containing the $idata section may reference these
1627 symbols. */
015dc7e1 1628 keep = true;
252b5132
RH
1629 else if ((flags & BSF_GLOBAL) != 0 /* Global symbol. */
1630 || (flags & BSF_WEAK) != 0
24e01a36 1631 || undefined
e6f7f6d1 1632 || bfd_is_com_section (bfd_asymbol_section (sym)))
252b5132
RH
1633 keep = strip_symbols != STRIP_UNNEEDED;
1634 else if ((flags & BSF_DEBUGGING) != 0) /* Debugging symbol. */
1635 keep = (strip_symbols != STRIP_DEBUG
1636 && strip_symbols != STRIP_UNNEEDED
1637 && ! convert_debugging);
e6f7f6d1 1638 else if (bfd_coff_get_comdat_section (abfd, bfd_asymbol_section (sym)))
af3bdff7
NC
1639 /* COMDAT sections store special information in local
1640 symbols, so we cannot risk stripping any of them. */
015dc7e1 1641 keep = true;
252b5132
RH
1642 else /* Local symbol. */
1643 keep = (strip_symbols != STRIP_UNNEEDED
1644 && (discard_locals != LOCALS_ALL
1645 && (discard_locals != LOCALS_START_L
1646 || ! bfd_is_local_label (abfd, sym))));
1647
047c9024 1648 if (keep && is_specified_symbol (name, strip_specific_htab))
312aaa3c
NC
1649 {
1650 /* There are multiple ways to set 'keep' above, but if it
1651 was the relocatable symbol case, then that's an error. */
1652 if (used_in_reloc)
1653 {
1654 non_fatal (_("not stripping symbol `%s' because it is named in a relocation"), name);
1655 status = 1;
1656 }
1657 else
015dc7e1 1658 keep = false;
312aaa3c
NC
1659 }
1660
bcf32829
JB
1661 if (keep
1662 && !(flags & BSF_KEEP)
047c9024 1663 && is_specified_symbol (name, strip_unneeded_htab))
015dc7e1 1664 keep = false;
312aaa3c 1665
1637cd90
JB
1666 if (!keep
1667 && ((keep_file_symbols && (flags & BSF_FILE))
047c9024 1668 || is_specified_symbol (name, keep_specific_htab)))
015dc7e1 1669 keep = true;
312aaa3c 1670
e6f7f6d1 1671 if (keep && is_strip_section (abfd, bfd_asymbol_section (sym)))
015dc7e1 1672 keep = false;
e0c60db2 1673
7b4a0685 1674 if (keep)
252b5132 1675 {
fd5c076a
AM
1676 if (((flags & BSF_GLOBAL) != 0
1677 || undefined)
047c9024 1678 && (weaken || is_specified_symbol (name, weaken_specific_htab)))
7b4a0685
NC
1679 {
1680 sym->flags &= ~ BSF_GLOBAL;
1681 sym->flags |= BSF_WEAK;
1682 }
252b5132 1683
7b4a0685
NC
1684 if (!undefined
1685 && (flags & (BSF_GLOBAL | BSF_WEAK))
047c9024
NC
1686 && (is_specified_symbol (name, localize_specific_htab)
1687 || (htab_elements (keepglobal_specific_htab) != 0
1688 && ! is_specified_symbol (name, keepglobal_specific_htab))
d58c2e3a 1689 || (localize_hidden && is_hidden_symbol (sym))))
7b4a0685
NC
1690 {
1691 sym->flags &= ~ (BSF_GLOBAL | BSF_WEAK);
1692 sym->flags |= BSF_LOCAL;
1693 }
1694
1695 if (!undefined
c1c0eb9e 1696 && (flags & BSF_LOCAL)
047c9024 1697 && is_specified_symbol (name, globalize_specific_htab))
7b4a0685
NC
1698 {
1699 sym->flags &= ~ BSF_LOCAL;
1700 sym->flags |= BSF_GLOBAL;
1701 }
1702
1703 to[dst_count++] = sym;
1704 }
252b5132 1705 }
2b35fb28
RH
1706 if (add_sym_list)
1707 {
1708 struct addsym_node *ptr = add_sym_list;
1709
1710 for (src_count = 0; src_count < add_symbols; src_count++)
1711 {
1712 if (ptr->othersym)
1713 {
ffebb0bb 1714 if (ptr->othersym != empty_name)
2b35fb28
RH
1715 fatal (_("'before=%s' not found"), ptr->othersym);
1716 }
1717 else
1718 to[dst_count++] = create_new_symbol (ptr, obfd);
1719
1720 ptr = ptr->next;
1721 }
1722 }
252b5132
RH
1723
1724 to[dst_count] = NULL;
1725
1726 return dst_count;
1727}
1728
594ef5db
NC
1729/* Find the redefined name of symbol SOURCE. */
1730
57938635 1731static const char *
84e2f313 1732lookup_sym_redefinition (const char *source)
57938635 1733{
0f65a5d8
JW
1734 struct redefine_node key_node = {(char *) source, NULL};
1735 struct redefine_node *redef_node
1736 = (struct redefine_node *) htab_find (redefine_specific_htab, &key_node);
594ef5db 1737
0f65a5d8 1738 return redef_node == NULL ? source : redef_node->target;
57938635
AM
1739}
1740
0f65a5d8 1741/* Insert a node into symbol redefine hash tabel. */
57938635
AM
1742
1743static void
0f65a5d8
JW
1744add_redefine_and_check (const char *cause, const char *source,
1745 const char *target)
57938635 1746{
0f65a5d8
JW
1747 struct redefine_node *new_node
1748 = (struct redefine_node *) xmalloc (sizeof (struct redefine_node));
57938635 1749
0f65a5d8
JW
1750 new_node->source = strdup (source);
1751 new_node->target = strdup (target);
57938635 1752
0f65a5d8
JW
1753 if (htab_find (redefine_specific_htab, new_node) != HTAB_EMPTY_ENTRY)
1754 fatal (_("%s: Multiple redefinition of symbol \"%s\""),
1755 cause, source);
57938635 1756
0f65a5d8
JW
1757 if (htab_find (redefine_specific_reverse_htab, target) != HTAB_EMPTY_ENTRY)
1758 fatal (_("%s: Symbol \"%s\" is target of more than one redefinition"),
1759 cause, target);
57938635 1760
0f65a5d8
JW
1761 /* Insert the NEW_NODE into hash table for quick search. */
1762 add_specific_symbol_node (new_node, redefine_specific_htab);
1763
1764 /* Insert the target string into the reverse hash table, this is needed for
1765 duplicated target string check. */
1766 add_specific_symbol (new_node->target, redefine_specific_reverse_htab);
57938635 1767
57938635
AM
1768}
1769
92991082
JT
1770/* Handle the --redefine-syms option. Read lines containing "old new"
1771 from the file, and add them to the symbol redefine list. */
1772
2593f09a 1773static void
84e2f313 1774add_redefine_syms_file (const char *filename)
92991082
JT
1775{
1776 FILE *file;
1777 char *buf;
84e2f313
NC
1778 size_t bufsize;
1779 size_t len;
1780 size_t outsym_off;
92991082
JT
1781 int c, lineno;
1782
1783 file = fopen (filename, "r");
d3ba0551 1784 if (file == NULL)
92991082
JT
1785 fatal (_("couldn't open symbol redefinition file %s (error: %s)"),
1786 filename, strerror (errno));
1787
1788 bufsize = 100;
a6da20b5 1789 buf = (char *) xmalloc (bufsize + 1 /* For the terminating NUL. */);
92991082
JT
1790
1791 lineno = 1;
1792 c = getc (file);
1793 len = 0;
1794 outsym_off = 0;
1795 while (c != EOF)
1796 {
1797 /* Collect the input symbol name. */
1798 while (! IS_WHITESPACE (c) && ! IS_LINE_TERMINATOR (c) && c != EOF)
1799 {
1800 if (c == '#')
1801 goto comment;
1802 buf[len++] = c;
1803 if (len >= bufsize)
1804 {
1805 bufsize *= 2;
a6da20b5 1806 buf = (char *) xrealloc (buf, bufsize + 1);
92991082
JT
1807 }
1808 c = getc (file);
1809 }
1810 buf[len++] = '\0';
1811 if (c == EOF)
1812 break;
1813
1814 /* Eat white space between the symbol names. */
1815 while (IS_WHITESPACE (c))
1816 c = getc (file);
1817 if (c == '#' || IS_LINE_TERMINATOR (c))
1818 goto comment;
1819 if (c == EOF)
1820 break;
1821
1822 /* Collect the output symbol name. */
1823 outsym_off = len;
1824 while (! IS_WHITESPACE (c) && ! IS_LINE_TERMINATOR (c) && c != EOF)
1825 {
1826 if (c == '#')
1827 goto comment;
1828 buf[len++] = c;
1829 if (len >= bufsize)
1830 {
1831 bufsize *= 2;
a6da20b5 1832 buf = (char *) xrealloc (buf, bufsize + 1);
92991082
JT
1833 }
1834 c = getc (file);
1835 }
1836 buf[len++] = '\0';
1837 if (c == EOF)
1838 break;
1839
1840 /* Eat white space at end of line. */
1841 while (! IS_LINE_TERMINATOR(c) && c != EOF && IS_WHITESPACE (c))
1842 c = getc (file);
1843 if (c == '#')
1844 goto comment;
1845 /* Handle \r\n. */
1846 if ((c == '\r' && (c = getc (file)) == '\n')
1847 || c == '\n' || c == EOF)
1848 {
f7433f01 1849 end_of_line:
92991082
JT
1850 /* Append the redefinition to the list. */
1851 if (buf[0] != '\0')
0f65a5d8 1852 add_redefine_and_check (filename, &buf[0], &buf[outsym_off]);
92991082 1853
c1c0eb9e 1854 lineno++;
92991082
JT
1855 len = 0;
1856 outsym_off = 0;
1857 if (c == EOF)
1858 break;
1859 c = getc (file);
1860 continue;
1861 }
1862 else
d412a550 1863 fatal (_("%s:%d: garbage found at end of line"), filename, lineno);
f7433f01 1864 comment:
92991082 1865 if (len != 0 && (outsym_off == 0 || outsym_off == len))
d412a550 1866 fatal (_("%s:%d: missing new symbol name"), filename, lineno);
92991082
JT
1867 buf[len++] = '\0';
1868
1869 /* Eat the rest of the line and finish it. */
1870 while (c != '\n' && c != EOF)
1871 c = getc (file);
1872 goto end_of_line;
1873 }
1874
1875 if (len != 0)
d412a550 1876 fatal (_("%s:%d: premature end of file"), filename, lineno);
92991082
JT
1877
1878 free (buf);
3391569f 1879 fclose (file);
92991082
JT
1880}
1881
222c2bf0 1882/* Copy unknown object file IBFD onto OBFD.
77f762d6
L
1883 Returns TRUE upon success, FALSE otherwise. */
1884
015dc7e1 1885static bool
77f762d6
L
1886copy_unknown_object (bfd *ibfd, bfd *obfd)
1887{
1888 char *cbuf;
1889 int tocopy;
1890 long ncopied;
1891 long size;
1892 struct stat buf;
1893
1894 if (bfd_stat_arch_elt (ibfd, &buf) != 0)
1895 {
8d8e0703 1896 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
015dc7e1 1897 return false;
77f762d6
L
1898 }
1899
1900 size = buf.st_size;
1901 if (size < 0)
1902 {
1903 non_fatal (_("stat returns negative size for `%s'"),
1904 bfd_get_archive_filename (ibfd));
015dc7e1 1905 return false;
77f762d6
L
1906 }
1907
1908 if (bfd_seek (ibfd, (file_ptr) 0, SEEK_SET) != 0)
1909 {
1910 bfd_nonfatal (bfd_get_archive_filename (ibfd));
015dc7e1 1911 return false;
77f762d6
L
1912 }
1913
1914 if (verbose)
1915 printf (_("copy from `%s' [unknown] to `%s' [unknown]\n"),
1916 bfd_get_archive_filename (ibfd), bfd_get_filename (obfd));
1917
3f5e193b 1918 cbuf = (char *) xmalloc (BUFSIZE);
77f762d6
L
1919 ncopied = 0;
1920 while (ncopied < size)
1921 {
1922 tocopy = size - ncopied;
1923 if (tocopy > BUFSIZE)
1924 tocopy = BUFSIZE;
1925
1926 if (bfd_bread (cbuf, (bfd_size_type) tocopy, ibfd)
1927 != (bfd_size_type) tocopy)
1928 {
8d8e0703 1929 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
77f762d6 1930 free (cbuf);
015dc7e1 1931 return false;
77f762d6
L
1932 }
1933
1934 if (bfd_bwrite (cbuf, (bfd_size_type) tocopy, obfd)
1935 != (bfd_size_type) tocopy)
1936 {
2db6cde7 1937 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
77f762d6 1938 free (cbuf);
015dc7e1 1939 return false;
77f762d6
L
1940 }
1941
1942 ncopied += tocopy;
1943 }
1944
1e99536a
L
1945 /* We should at least to be able to read it back when copying an
1946 unknown object in an archive. */
1947 chmod (bfd_get_filename (obfd), buf.st_mode | S_IRUSR);
77f762d6 1948 free (cbuf);
015dc7e1 1949 return true;
77f762d6
L
1950}
1951
6f156d7a
NC
1952typedef struct objcopy_internal_note
1953{
1954 Elf_Internal_Note note;
5c49f2cd 1955 unsigned long padded_namesz;
6f156d7a
NC
1956 bfd_vma start;
1957 bfd_vma end;
6f156d7a 1958} objcopy_internal_note;
82ef9cad 1959
5c49f2cd
NC
1960#define DEBUG_MERGE 0
1961
1962#if DEBUG_MERGE
1963#define merge_debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
1964#else
1965#define merge_debug(format, ...)
1966#endif
1967
1968/* Returns TRUE iff PNOTE1 overlaps or adjoins PNOTE2. */
6f156d7a 1969
015dc7e1 1970static bool
5c49f2cd
NC
1971overlaps_or_adjoins (objcopy_internal_note * pnote1,
1972 objcopy_internal_note * pnote2)
6f156d7a 1973{
5c49f2cd
NC
1974 if (pnote1->end < pnote2->start)
1975 /* FIXME: Alignment of 16 bytes taken from x86_64 binaries.
1976 Really we should extract the alignment of the section
1977 covered by the notes. */
1978 return BFD_ALIGN (pnote1->end, 16) < pnote2->start;
1979
1980 if (pnote2->end < pnote2->start)
1981 return BFD_ALIGN (pnote2->end, 16) < pnote1->start;
1982
1983 if (pnote1->end < pnote2->end)
015dc7e1 1984 return true;
6f156d7a 1985
5c49f2cd 1986 if (pnote2->end < pnote1->end)
015dc7e1 1987 return true;
5c49f2cd 1988
015dc7e1 1989 return false;
5c49f2cd
NC
1990}
1991
1992/* Returns TRUE iff NEEDLE is fully contained by HAYSTACK. */
1993
015dc7e1 1994static bool
5c49f2cd
NC
1995contained_by (objcopy_internal_note * needle,
1996 objcopy_internal_note * haystack)
1997{
1998 return needle->start >= haystack->start && needle->end <= haystack->end;
6f156d7a
NC
1999}
2000
015dc7e1 2001static bool
6f156d7a
NC
2002is_open_note (objcopy_internal_note * pnote)
2003{
5c49f2cd 2004 return pnote->note.type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
6f156d7a
NC
2005}
2006
015dc7e1 2007static bool
6f156d7a
NC
2008is_func_note (objcopy_internal_note * pnote)
2009{
5c49f2cd
NC
2010 return pnote->note.type == NT_GNU_BUILD_ATTRIBUTE_FUNC;
2011}
2012
015dc7e1 2013static bool
5c49f2cd
NC
2014is_deleted_note (objcopy_internal_note * pnote)
2015{
2016 return pnote->note.type == 0;
2017}
2018
015dc7e1 2019static bool
5c49f2cd
NC
2020is_version_note (objcopy_internal_note * pnote)
2021{
2022 return (pnote->note.namesz > 4
2023 && pnote->note.namedata[0] == 'G'
2024 && pnote->note.namedata[1] == 'A'
2025 && pnote->note.namedata[2] == '$'
2026 && pnote->note.namedata[3] == GNU_BUILD_ATTRIBUTE_VERSION);
6f156d7a
NC
2027}
2028
015dc7e1 2029static bool
6f156d7a
NC
2030is_64bit (bfd * abfd)
2031{
2032 /* Should never happen, but let's be paranoid. */
2033 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
015dc7e1 2034 return false;
6f156d7a
NC
2035
2036 return elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64;
2037}
2038
5c49f2cd
NC
2039/* This sorting function is used to get the notes into an order
2040 that makes merging easy. */
2041
2042static int
2043compare_gnu_build_notes (const void * data1, const void * data2)
2044{
2045 objcopy_internal_note * pnote1 = (objcopy_internal_note *) data1;
2046 objcopy_internal_note * pnote2 = (objcopy_internal_note *) data2;
2047
2048 /* Sort notes based upon the attribute they record. */
2049 int cmp = memcmp (pnote1->note.namedata + 3,
2050 pnote2->note.namedata + 3,
2051 pnote1->note.namesz < pnote2->note.namesz ?
2052 pnote1->note.namesz - 3 : pnote2->note.namesz - 3);
2053 if (cmp)
2054 return cmp;
82ef9cad 2055
5c49f2cd
NC
2056 if (pnote1->end < pnote2->start)
2057 return -1;
2058 if (pnote1->start > pnote2->end)
2059 return 1;
2060
2061 /* Overlaps - we should merge the two ranges. */
2062 if (pnote1->start < pnote2->start)
2063 return -1;
2064 if (pnote1->end > pnote2->end)
2065 return 1;
82ef9cad
RM
2066 if (pnote1->end < pnote2->end)
2067 return -1;
2068
5c49f2cd
NC
2069 /* Put OPEN notes before function notes. */
2070 if (is_open_note (pnote1) && ! is_open_note (pnote2))
2071 return -1;
2072 if (! is_open_note (pnote1) && is_open_note (pnote2))
2073 return 1;
82ef9cad 2074
5c49f2cd
NC
2075 return 0;
2076}
2077
2078/* This sorting function is used to get the notes into an order
2079 that makes eliminating address ranges easier. */
2080
2081static int
2082sort_gnu_build_notes (const void * data1, const void * data2)
2083{
2084 objcopy_internal_note * pnote1 = (objcopy_internal_note *) data1;
2085 objcopy_internal_note * pnote2 = (objcopy_internal_note *) data2;
2086
2087 if (pnote1->note.type != pnote2->note.type)
2088 {
2089 /* Move deleted notes to the end. */
2090 if (is_deleted_note (pnote1)) /* 1: OFD 2: OFD */
2091 return 1;
2092
2093 /* Move OPEN notes to the start. */
2094 if (is_open_note (pnote1)) /* 1: OF 2: OFD */
2095 return -1;
2096
2097 if (is_deleted_note (pnote2)) /* 1: F 2: O D */
1cc3da76 2098 return -1;
5c49f2cd
NC
2099
2100 return 1; /* 1: F 2: O */
2101 }
82ef9cad 2102
5c49f2cd
NC
2103 /* Sort by starting address. */
2104 if (pnote1->start < pnote2->start)
2105 return -1;
2106 if (pnote1->start > pnote2->start)
2107 return 1;
2108
2109 /* Then by end address (bigger range first). */
2110 if (pnote1->end > pnote2->end)
2111 return -1;
2112 if (pnote1->end < pnote2->end)
2113 return 1;
2114
2115 /* Then by attribute type. */
2116 if (pnote1->note.namesz > 4
2117 && pnote2->note.namesz > 4
2118 && pnote1->note.namedata[3] != pnote2->note.namedata[3])
2119 return pnote1->note.namedata[3] - pnote2->note.namedata[3];
82ef9cad 2120
5c49f2cd
NC
2121 return 0;
2122}
2123
9ef920e9
NC
2124/* Merge the notes on SEC, removing redundant entries.
2125 Returns the new, smaller size of the section upon success. */
2126
2127static bfd_size_type
5c49f2cd
NC
2128merge_gnu_build_notes (bfd * abfd,
2129 asection * sec,
2130 bfd_size_type size,
2131 bfd_byte * contents)
9ef920e9 2132{
6f156d7a
NC
2133 objcopy_internal_note * pnotes_end;
2134 objcopy_internal_note * pnotes = NULL;
2135 objcopy_internal_note * pnote;
9ef920e9 2136 bfd_size_type remain = size;
88305e1b
NC
2137 unsigned version_1_seen = 0;
2138 unsigned version_2_seen = 0;
6f156d7a 2139 unsigned version_3_seen = 0;
9ef920e9
NC
2140 const char * err = NULL;
2141 bfd_byte * in = contents;
6f156d7a
NC
2142 unsigned long previous_func_start = 0;
2143 unsigned long previous_open_start = 0;
2144 unsigned long previous_func_end = 0;
2145 unsigned long previous_open_end = 0;
2146 long relsize;
2147
6f156d7a
NC
2148 relsize = bfd_get_reloc_upper_bound (abfd, sec);
2149 if (relsize > 0)
2150 {
2151 arelent ** relpp;
2152 long relcount;
2153
2154 /* If there are relocs associated with this section then we
2155 cannot safely merge it. */
2156 relpp = (arelent **) xmalloc (relsize);
2157 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, isympp);
2158 free (relpp);
2159 if (relcount != 0)
5c49f2cd
NC
2160 {
2161 if (! is_strip)
2162 non_fatal (_("%s[%s]: Cannot merge - there are relocations against this section"),
2163 bfd_get_filename (abfd), bfd_section_name (sec));
2164 goto done;
2165 }
6f156d7a 2166 }
82ef9cad 2167
6f156d7a 2168 /* Make a copy of the notes and convert to our internal format.
276cbbdf
NC
2169 Minimum size of a note is 12 bytes. Also locate the version
2170 notes and check them. */
5c49f2cd
NC
2171 pnote = pnotes = (objcopy_internal_note *)
2172 xcalloc ((size / 12), sizeof (* pnote));
9ef920e9
NC
2173 while (remain >= 12)
2174 {
6f156d7a
NC
2175 bfd_vma start, end;
2176
5c49f2cd
NC
2177 pnote->note.namesz = bfd_get_32 (abfd, in);
2178 pnote->note.descsz = bfd_get_32 (abfd, in + 4);
2179 pnote->note.type = bfd_get_32 (abfd, in + 8);
2180 pnote->padded_namesz = (pnote->note.namesz + 3) & ~3;
2181
2182 if (((pnote->note.descsz + 3) & ~3) != pnote->note.descsz)
2183 {
2184 err = _("corrupt GNU build attribute note: description size not a factor of 4");
2185 goto done;
2186 }
9ef920e9 2187
6f156d7a
NC
2188 if (pnote->note.type != NT_GNU_BUILD_ATTRIBUTE_OPEN
2189 && pnote->note.type != NT_GNU_BUILD_ATTRIBUTE_FUNC)
9ef920e9
NC
2190 {
2191 err = _("corrupt GNU build attribute note: wrong note type");
2192 goto done;
2193 }
2194
5c49f2cd 2195 if (pnote->padded_namesz + pnote->note.descsz + 12 > remain)
9ef920e9
NC
2196 {
2197 err = _("corrupt GNU build attribute note: note too big");
2198 goto done;
2199 }
2200
6f156d7a 2201 if (pnote->note.namesz < 2)
9ef920e9
NC
2202 {
2203 err = _("corrupt GNU build attribute note: name too small");
2204 goto done;
2205 }
2206
6f156d7a 2207 pnote->note.namedata = (char *)(in + 12);
5c49f2cd 2208 pnote->note.descdata = (char *)(in + 12 + pnote->padded_namesz);
6f156d7a 2209
5c49f2cd
NC
2210 remain -= 12 + pnote->padded_namesz + pnote->note.descsz;
2211 in += 12 + pnote->padded_namesz + pnote->note.descsz;
6f156d7a
NC
2212
2213 if (pnote->note.namesz > 2
2214 && pnote->note.namedata[0] == '$'
2215 && pnote->note.namedata[1] == GNU_BUILD_ATTRIBUTE_VERSION
2216 && pnote->note.namedata[2] == '1')
2217 ++ version_1_seen;
5c49f2cd 2218 else if (is_version_note (pnote))
6f156d7a
NC
2219 {
2220 if (pnote->note.namedata[4] == '2')
2221 ++ version_2_seen;
2222 else if (pnote->note.namedata[4] == '3')
2223 ++ version_3_seen;
2224 else
2225 {
2226 err = _("corrupt GNU build attribute note: unsupported version");
2227 goto done;
2228 }
2229 }
2230
2231 switch (pnote->note.descsz)
9ef920e9 2232 {
6f156d7a
NC
2233 case 0:
2234 start = end = 0;
2235 break;
2236
2237 case 4:
2238 start = bfd_get_32 (abfd, pnote->note.descdata);
2239 /* FIXME: For version 1 and 2 notes we should try to
2240 calculate the end address by finding a symbol whose
2241 value is START, and then adding in its size.
2242
2243 For now though, since v1 and v2 was not intended to
2244 handle gaps, we chose an artificially large end
2245 address. */
f49db8be 2246 end = (bfd_vma) -1;
6f156d7a 2247 break;
82ef9cad 2248
6f156d7a 2249 case 8:
c74147bb
NC
2250 start = bfd_get_32 (abfd, pnote->note.descdata);
2251 end = bfd_get_32 (abfd, pnote->note.descdata + 4);
6f156d7a
NC
2252 break;
2253
2254 case 16:
2255 start = bfd_get_64 (abfd, pnote->note.descdata);
2256 end = bfd_get_64 (abfd, pnote->note.descdata + 8);
2257 break;
82ef9cad 2258
6f156d7a 2259 default:
9ef920e9
NC
2260 err = _("corrupt GNU build attribute note: bad description size");
2261 goto done;
2262 }
2263
85684222
NC
2264 if (start > end)
2265 /* This can happen with PPC64LE binaries where empty notes are
2266 encoded as start = end + 4. */
2267 start = end;
2268
6f156d7a
NC
2269 if (is_open_note (pnote))
2270 {
2271 if (start)
2272 previous_open_start = start;
2273
2274 pnote->start = previous_open_start;
2275
2276 if (end)
2277 previous_open_end = end;
2278
2279 pnote->end = previous_open_end;
2280 }
2281 else
2282 {
2283 if (start)
2284 previous_func_start = start;
2285
2286 pnote->start = previous_func_start;
9ef920e9 2287
6f156d7a
NC
2288 if (end)
2289 previous_func_end = end;
9ef920e9 2290
6f156d7a
NC
2291 pnote->end = previous_func_end;
2292 }
2293
2294 if (pnote->note.namedata[pnote->note.namesz - 1] != 0)
1d15e434
NC
2295 {
2296 err = _("corrupt GNU build attribute note: name not NUL terminated");
2297 goto done;
2298 }
6f156d7a 2299
9ef920e9
NC
2300 pnote ++;
2301 }
2302
2303 pnotes_end = pnote;
2304
2305 /* Check that the notes are valid. */
2306 if (remain != 0)
2307 {
88305e1b 2308 err = _("corrupt GNU build attribute notes: excess data at end");
9ef920e9
NC
2309 goto done;
2310 }
2311
6f156d7a 2312 if (version_1_seen == 0 && version_2_seen == 0 && version_3_seen == 0)
9ef920e9 2313 {
5c49f2cd 2314#if 0
88305e1b
NC
2315 err = _("bad GNU build attribute notes: no known versions detected");
2316 goto done;
5c49f2cd
NC
2317#else
2318 /* This happens with glibc. No idea why. */
2319 non_fatal (_("%s[%s]: Warning: version note missing - assuming version 3"),
2320 bfd_get_filename (abfd), bfd_section_name (sec));
2321 version_3_seen = 2;
2322#endif
88305e1b
NC
2323 }
2324
5c49f2cd 2325 if ( (version_1_seen > 0 && version_2_seen > 0)
6f156d7a
NC
2326 || (version_1_seen > 0 && version_3_seen > 0)
2327 || (version_2_seen > 0 && version_3_seen > 0))
88305e1b
NC
2328 {
2329 err = _("bad GNU build attribute notes: multiple different versions");
9ef920e9
NC
2330 goto done;
2331 }
2332
5c49f2cd
NC
2333 /* We are now only supporting the merging v3+ notes
2334 - it makes things much simpler. */
2335 if (version_3_seen == 0)
2336 {
2337 merge_debug ("%s: skipping merge - not using v3 notes", bfd_section_name (sec));
2338 goto done;
2339 }
9ef920e9 2340
5c49f2cd
NC
2341 merge_debug ("Merging section %s which contains %ld notes\n",
2342 sec->name, pnotes_end - pnotes);
88305e1b 2343
5c49f2cd
NC
2344 /* Sort the notes. */
2345 qsort (pnotes, pnotes_end - pnotes, sizeof (* pnotes),
2346 compare_gnu_build_notes);
2347
2348#if DEBUG_MERGE
2349 merge_debug ("Results of initial sort:\n");
2350 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
2351 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2352 (pnote->note.namedata - (char *) contents) - 12,
2353 pnote->start, pnote->end,
2354 pnote->note.type,
2355 pnote->note.namedata[3],
2356 pnote->note.namesz
2357 );
2358#endif
9ef920e9 2359
9ef920e9 2360 /* Now merge the notes. The rules are:
5c49f2cd
NC
2361 1. If a note has a zero range, it can be eliminated.
2362 2. If two notes have the same namedata then:
2363 2a. If one note's range is fully covered by the other note
2364 then it can be deleted.
2365 2b. If one note's range partially overlaps or adjoins the
2366 other note then if they are both of the same type (open
2367 or func) then they can be merged and one deleted. If
2368 they are of different types then they cannot be merged. */
276cbbdf 2369 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
9ef920e9 2370 {
5c49f2cd
NC
2371 /* Skip already deleted notes.
2372 FIXME: Can this happen ? We are scanning forwards and
2373 deleting backwards after all. */
2374 if (is_deleted_note (pnote))
2375 continue;
9ef920e9 2376
5c49f2cd 2377 /* Rule 1 - delete 0-range notes. */
4aae6e5a
NC
2378 if (pnote->start == pnote->end)
2379 {
5c49f2cd
NC
2380 merge_debug ("Delete note at offset %#08lx - empty range\n",
2381 (pnote->note.namedata - (char *) contents) - 12);
4aae6e5a
NC
2382 pnote->note.type = 0;
2383 continue;
2384 }
2385
5c49f2cd
NC
2386 int iter;
2387 objcopy_internal_note * back;
9ef920e9 2388
5c49f2cd
NC
2389 /* Rule 2: Check to see if there is an identical previous note. */
2390 for (iter = 0, back = pnote - 1; back >= pnotes; back --)
9ef920e9 2391 {
5c49f2cd 2392 if (is_deleted_note (back))
6f156d7a 2393 continue;
88305e1b 2394
5c49f2cd
NC
2395 /* Our sorting function should have placed all identically
2396 attributed notes together, so if we see a note of a different
2397 attribute type stop searching. */
2398 if (back->note.namesz != pnote->note.namesz
2399 || memcmp (back->note.namedata,
2400 pnote->note.namedata, pnote->note.namesz) != 0)
2401 break;
82ef9cad 2402
5c49f2cd
NC
2403 if (back->start == pnote->start
2404 && back->end == pnote->end)
6f156d7a 2405 {
5c49f2cd
NC
2406 merge_debug ("Delete note at offset %#08lx - duplicate of note at offset %#08lx\n",
2407 (pnote->note.namedata - (char *) contents) - 12,
2408 (back->note.namedata - (char *) contents) - 12);
6f156d7a
NC
2409 pnote->note.type = 0;
2410 break;
2411 }
2412
5c49f2cd
NC
2413 /* Rule 2a. */
2414 if (contained_by (pnote, back))
6f156d7a 2415 {
5c49f2cd
NC
2416 merge_debug ("Delete note at offset %#08lx - fully contained by note at %#08lx\n",
2417 (pnote->note.namedata - (char *) contents) - 12,
2418 (back->note.namedata - (char *) contents) - 12);
6f156d7a 2419 pnote->note.type = 0;
6f156d7a
NC
2420 break;
2421 }
2422
5c49f2cd
NC
2423#if DEBUG_MERGE
2424 /* This should not happen as we have sorted the
2425 notes with earlier starting addresses first. */
2426 if (contained_by (back, pnote))
2427 merge_debug ("ERROR: UNEXPECTED CONTAINMENT\n");
2428#endif
2429
2430 /* Rule 2b. */
2431 if (overlaps_or_adjoins (back, pnote)
2432 && is_func_note (back) == is_func_note (pnote))
6f156d7a 2433 {
5c49f2cd
NC
2434 merge_debug ("Delete note at offset %#08lx - merge into note at %#08lx\n",
2435 (pnote->note.namedata - (char *) contents) - 12,
2436 (back->note.namedata - (char *) contents) - 12);
2437
2438 back->end = back->end > pnote->end ? back->end : pnote->end;
2439 back->start = back->start < pnote->start ? back->start : pnote->start;
2440 pnote->note.type = 0;
2441 break;
6f156d7a 2442 }
5c49f2cd
NC
2443
2444 /* Don't scan too far back however. */
2445 if (iter ++ > 16)
6f156d7a 2446 {
5c49f2cd
NC
2447 /* FIXME: Not sure if this can ever be triggered. */
2448 merge_debug ("ITERATION LIMIT REACHED\n");
2449 break;
9ef920e9
NC
2450 }
2451 }
5c49f2cd
NC
2452#if DEBUG_MERGE
2453 if (! is_deleted_note (pnote))
2454 merge_debug ("Unable to do anything with note at %#08lx\n",
2455 (pnote->note.namedata - (char *) contents) - 12);
82ef9cad 2456#endif
9ef920e9
NC
2457 }
2458
5c49f2cd
NC
2459 /* Resort the notes. */
2460 merge_debug ("Final sorting of notes\n");
2461 qsort (pnotes, pnotes_end - pnotes, sizeof (* pnotes), sort_gnu_build_notes);
2462
2463 /* Reconstruct the ELF notes. */
2464 bfd_byte * new_contents;
2465 bfd_byte * old;
2466 bfd_byte * new;
2467 bfd_size_type new_size;
2468 bfd_vma prev_start = 0;
2469 bfd_vma prev_end = 0;
2470
f76d7958
NC
2471 /* Not sure how, but the notes might grow in size.
2472 (eg see PR 1774507). Allow for this here. */
2473 new = new_contents = xmalloc (size * 2);
5c49f2cd
NC
2474 for (pnote = pnotes, old = contents;
2475 pnote < pnotes_end;
2476 pnote ++)
9ef920e9 2477 {
5c49f2cd 2478 bfd_size_type note_size = 12 + pnote->padded_namesz + pnote->note.descsz;
9ef920e9 2479
5c49f2cd 2480 if (! is_deleted_note (pnote))
9ef920e9 2481 {
5c49f2cd
NC
2482 /* Create the note, potentially using the
2483 address range of the previous note. */
2484 if (pnote->start == prev_start && pnote->end == prev_end)
9ef920e9 2485 {
5c49f2cd
NC
2486 bfd_put_32 (abfd, pnote->note.namesz, new);
2487 bfd_put_32 (abfd, 0, new + 4);
2488 bfd_put_32 (abfd, pnote->note.type, new + 8);
2489 new += 12;
2490 memcpy (new, pnote->note.namedata, pnote->note.namesz);
2491 if (pnote->note.namesz < pnote->padded_namesz)
2492 memset (new + pnote->note.namesz, 0, pnote->padded_namesz - pnote->note.namesz);
2493 new += pnote->padded_namesz;
2494 }
2495 else
2496 {
2497 bfd_put_32 (abfd, pnote->note.namesz, new);
2498 bfd_put_32 (abfd, is_64bit (abfd) ? 16 : 8, new + 4);
2499 bfd_put_32 (abfd, pnote->note.type, new + 8);
2500 new += 12;
2501 memcpy (new, pnote->note.namedata, pnote->note.namesz);
2502 if (pnote->note.namesz < pnote->padded_namesz)
2503 memset (new + pnote->note.namesz, 0, pnote->padded_namesz - pnote->note.namesz);
2504 new += pnote->padded_namesz;
2505 if (is_64bit (abfd))
9ef920e9 2506 {
5c49f2cd
NC
2507 bfd_put_64 (abfd, pnote->start, new);
2508 bfd_put_64 (abfd, pnote->end, new + 8);
2509 new += 16;
9ef920e9 2510 }
6f156d7a
NC
2511 else
2512 {
5c49f2cd
NC
2513 bfd_put_32 (abfd, pnote->start, new);
2514 bfd_put_32 (abfd, pnote->end, new + 4);
2515 new += 8;
6f156d7a 2516 }
5c49f2cd 2517
6f156d7a
NC
2518 prev_start = pnote->start;
2519 prev_end = pnote->end;
9ef920e9 2520 }
9ef920e9
NC
2521 }
2522
5c49f2cd 2523 old += note_size;
9ef920e9
NC
2524 }
2525
5c49f2cd
NC
2526#if DEBUG_MERGE
2527 merge_debug ("Results of merge:\n");
2528 for (pnote = pnotes; pnote < pnotes_end; pnote ++)
2529 if (! is_deleted_note (pnote))
2530 merge_debug ("offset %#08lx range %#08lx..%#08lx type %ld attribute %d namesz %ld\n",
2531 (pnote->note.namedata - (char *) contents) - 12,
2532 pnote->start, pnote->end,
2533 pnote->note.type,
2534 pnote->note.namedata[3],
2535 pnote->note.namesz
2536 );
2537#endif
82ef9cad 2538
5c49f2cd 2539 new_size = new - new_contents;
f76d7958
NC
2540 if (new_size < size)
2541 {
2542 memcpy (contents, new_contents, new_size);
2543 size = new_size;
2544 }
5c49f2cd
NC
2545 free (new_contents);
2546
9ef920e9
NC
2547 done:
2548 if (err)
2549 {
2550 bfd_set_error (bfd_error_bad_value);
2551 bfd_nonfatal_message (NULL, abfd, sec, err);
2552 status = 1;
2553 }
2554
2555 free (pnotes);
2556 return size;
2557}
2558
a0dcf297
NC
2559static flagword
2560check_new_section_flags (flagword flags, bfd * abfd, const char * secname)
2561{
2562 /* Only set the SEC_COFF_SHARED flag on COFF files.
2563 The same bit value is used by ELF targets to indicate
2564 compressed sections, and setting that flag here breaks
2565 things. */
2566 if ((flags & SEC_COFF_SHARED)
2567 && bfd_get_flavour (abfd) != bfd_target_coff_flavour)
2568 {
2569 non_fatal (_("%s[%s]: Note - dropping 'share' flag as output format is not COFF"),
2570 bfd_get_filename (abfd), secname);
2571 flags &= ~ SEC_COFF_SHARED;
2572 }
2573 return flags;
2574}
2575
950d48e7 2576/* Copy object file IBFD onto OBFD.
5b8c74e6 2577 Returns TRUE upon success, FALSE otherwise. */
252b5132 2578
015dc7e1 2579static bool
8b31b6c4 2580copy_object (bfd *ibfd, bfd *obfd, const bfd_arch_info_type *input_arch)
252b5132
RH
2581{
2582 bfd_vma start;
2583 long symcount;
2584 asection **osections = NULL;
9ef920e9 2585 asection *osec;
84e2f313 2586 asection *gnu_debuglink_section = NULL;
252b5132
RH
2587 bfd_size_type *gaps = NULL;
2588 bfd_size_type max_gap = 0;
2589 long symsize;
84e2f313 2590 void *dhandle;
66491ebc
AM
2591 enum bfd_architecture iarch;
2592 unsigned int imach;
9cc89dc0 2593 unsigned int num_sec, i;
252b5132 2594
23719f39
NC
2595 if (ibfd->xvec->byteorder != obfd->xvec->byteorder
2596 && ibfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN
2597 && obfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN)
cfad8730
NC
2598 {
2599 /* PR 17636: Call non-fatal so that we return to our parent who
2600 may need to tidy temporary files. */
75e100a3
AM
2601 non_fatal (_("unable to change endianness of '%s'"),
2602 bfd_get_archive_filename (ibfd));
015dc7e1 2603 return false;
75e100a3
AM
2604 }
2605
2606 if (ibfd->read_only)
2607 {
2608 non_fatal (_("unable to modify '%s' due to errors"),
2609 bfd_get_archive_filename (ibfd));
015dc7e1 2610 return false;
cfad8730 2611 }
252b5132
RH
2612
2613 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
950d48e7 2614 {
2db6cde7 2615 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
015dc7e1 2616 return false;
950d48e7 2617 }
252b5132 2618
5063a421
AM
2619 if (ibfd->sections == NULL)
2620 {
2621 non_fatal (_("error: the input file '%s' has no sections"),
2622 bfd_get_archive_filename (ibfd));
015dc7e1 2623 return false;
5063a421
AM
2624 }
2625
dd68a12b 2626 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
cd6faa73 2627 {
b8871f35
L
2628 if ((do_debug_sections & compress) != 0
2629 && do_debug_sections != compress)
2630 {
2631 non_fatal (_("--compress-debug-sections=[zlib|zlib-gnu|zlib-gabi] is unsupported on `%s'"),
2632 bfd_get_archive_filename (ibfd));
015dc7e1 2633 return false;
b8871f35
L
2634 }
2635
2636 if (do_elf_stt_common)
2637 {
2638 non_fatal (_("--elf-stt-common=[yes|no] is unsupported on `%s'"),
2639 bfd_get_archive_filename (ibfd));
015dc7e1 2640 return false;
b8871f35 2641 }
cd6faa73
L
2642 }
2643
252b5132 2644 if (verbose)
77f762d6
L
2645 printf (_("copy from `%s' [%s] to `%s' [%s]\n"),
2646 bfd_get_archive_filename (ibfd), bfd_get_target (ibfd),
252b5132
RH
2647 bfd_get_filename (obfd), bfd_get_target (obfd));
2648
d3e52d40
RS
2649 if (extract_symbol)
2650 start = 0;
252b5132 2651 else
d3e52d40
RS
2652 {
2653 if (set_start_set)
2654 start = set_start;
2655 else
2656 start = bfd_get_start_address (ibfd);
2657 start += change_start;
2658 }
252b5132 2659
0af11b59
KH
2660 /* Neither the start address nor the flags
2661 need to be set for a core file. */
4dd67f29
MS
2662 if (bfd_get_format (obfd) != bfd_core)
2663 {
4087920c
MR
2664 flagword flags;
2665
2666 flags = bfd_get_file_flags (ibfd);
2667 flags |= bfd_flags_to_set;
2668 flags &= ~bfd_flags_to_clear;
2669 flags &= bfd_applicable_file_flags (obfd);
2670
3516e984
L
2671 if (strip_symbols == STRIP_ALL)
2672 flags &= ~HAS_RELOC;
2673
4dd67f29 2674 if (!bfd_set_start_address (obfd, start)
4087920c 2675 || !bfd_set_file_flags (obfd, flags))
950d48e7 2676 {
8d8e0703 2677 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
015dc7e1 2678 return false;
950d48e7 2679 }
4dd67f29 2680 }
252b5132 2681
594ef5db 2682 /* Copy architecture of input file to output file. */
66491ebc
AM
2683 iarch = bfd_get_arch (ibfd);
2684 imach = bfd_get_mach (ibfd);
8b31b6c4
NC
2685 if (input_arch)
2686 {
6765ee18 2687 if (iarch == bfd_arch_unknown)
8b31b6c4
NC
2688 {
2689 iarch = input_arch->arch;
2690 imach = input_arch->mach;
2691 }
2692 else
2693 non_fatal (_("Input file `%s' ignores binary architecture parameter."),
2694 bfd_get_archive_filename (ibfd));
2695 }
6765ee18
AM
2696 if (iarch == bfd_arch_unknown
2697 && bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2698 && bfd_get_flavour (obfd) == bfd_target_elf_flavour)
2699 {
2700 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
2701 iarch = bed->arch;
2702 imach = 0;
2703 }
66491ebc 2704 if (!bfd_set_arch_mach (obfd, iarch, imach)
212a3c4d
L
2705 && (ibfd->target_defaulted
2706 || bfd_get_arch (ibfd) != bfd_get_arch (obfd)))
f57a841a
NC
2707 {
2708 if (bfd_get_arch (ibfd) == bfd_arch_unknown)
77f762d6
L
2709 non_fatal (_("Unable to recognise the format of the input file `%s'"),
2710 bfd_get_archive_filename (ibfd));
f57a841a 2711 else
c1e2cb9d 2712 non_fatal (_("Output file cannot represent architecture `%s'"),
77f762d6
L
2713 bfd_printable_arch_mach (bfd_get_arch (ibfd),
2714 bfd_get_mach (ibfd)));
015dc7e1 2715 return false;
f57a841a 2716 }
57938635 2717
252b5132 2718 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
950d48e7 2719 {
8d8e0703 2720 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
015dc7e1 2721 return false;
950d48e7 2722 }
252b5132 2723
92dd4511
L
2724 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour
2725 && bfd_pei_p (obfd))
2726 {
2727 /* Set up PE parameters. */
2728 pe_data_type *pe = pe_data (obfd);
2729
325c681d 2730 /* Copy PE parameters before changing them. */
dd68a12b 2731 if (bfd_get_flavour (ibfd) == bfd_target_coff_flavour
325c681d
L
2732 && bfd_pei_p (ibfd))
2733 pe->pe_opthdr = pe_data (ibfd)->pe_opthdr;
2734
92dd4511
L
2735 if (pe_file_alignment != (bfd_vma) -1)
2736 pe->pe_opthdr.FileAlignment = pe_file_alignment;
2737 else
2738 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
2739
2740 if (pe_heap_commit != (bfd_vma) -1)
2741 pe->pe_opthdr.SizeOfHeapCommit = pe_heap_commit;
2742
2743 if (pe_heap_reserve != (bfd_vma) -1)
2744 pe->pe_opthdr.SizeOfHeapCommit = pe_heap_reserve;
2745
2746 if (pe_image_base != (bfd_vma) -1)
2747 pe->pe_opthdr.ImageBase = pe_image_base;
2748
2749 if (pe_section_alignment != (bfd_vma) -1)
2750 pe->pe_opthdr.SectionAlignment = pe_section_alignment;
2751 else
2752 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
2753
2754 if (pe_stack_commit != (bfd_vma) -1)
2755 pe->pe_opthdr.SizeOfStackCommit = pe_stack_commit;
2756
2757 if (pe_stack_reserve != (bfd_vma) -1)
2758 pe->pe_opthdr.SizeOfStackCommit = pe_stack_reserve;
2759
2760 if (pe_subsystem != -1)
2761 pe->pe_opthdr.Subsystem = pe_subsystem;
2762
2763 if (pe_major_subsystem_version != -1)
2764 pe->pe_opthdr.MajorSubsystemVersion = pe_major_subsystem_version;
2765
2766 if (pe_minor_subsystem_version != -1)
2767 pe->pe_opthdr.MinorSubsystemVersion = pe_minor_subsystem_version;
2768
2769 if (pe_file_alignment > pe_section_alignment)
2770 {
2771 char file_alignment[20], section_alignment[20];
2772
2773 sprintf_vma (file_alignment, pe_file_alignment);
2774 sprintf_vma (section_alignment, pe_section_alignment);
2775 non_fatal (_("warning: file alignment (0x%s) > section alignment (0x%s)"),
2776
2777 file_alignment, section_alignment);
2778 }
00386881
NC
2779
2780 if (preserve_dates
2781 && bfd_get_flavour (ibfd) == bfd_target_coff_flavour
2782 && bfd_pei_p (ibfd))
2783 pe->timestamp = pe_data (ibfd)->coff.timestamp;
92dd4511
L
2784 }
2785
67965ba2 2786 free (isympp);
57938635 2787
252b5132 2788 if (osympp != isympp)
62d732f5
AM
2789 free (osympp);
2790
2791 isympp = NULL;
2792 osympp = NULL;
252b5132 2793
c39ada54
AM
2794 symsize = bfd_get_symtab_upper_bound (ibfd);
2795 if (symsize < 0)
2796 {
8d8e0703 2797 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
015dc7e1 2798 return false;
c39ada54
AM
2799 }
2800
3f5e193b 2801 osympp = isympp = (asymbol **) xmalloc (symsize);
c39ada54
AM
2802 symcount = bfd_canonicalize_symtab (ibfd, isympp);
2803 if (symcount < 0)
2804 {
2db6cde7 2805 bfd_nonfatal_message (NULL, ibfd, NULL, NULL);
015dc7e1 2806 return false;
c39ada54 2807 }
063bb025
NC
2808 /* PR 17512: file: d6323821
2809 If the symbol table could not be loaded do not pretend that we have
2810 any symbols. This trips us up later on when we load the relocs. */
2811 if (symcount == 0)
2812 {
2813 free (isympp);
2814 osympp = isympp = NULL;
2815 }
c39ada54 2816
252b5132
RH
2817 /* BFD mandates that all output sections be created and sizes set before
2818 any output is done. Thus, we traverse all sections multiple times. */
d3ba0551 2819 bfd_map_over_sections (ibfd, setup_section, obfd);
252b5132 2820
237dcb53
AM
2821 if (!extract_symbol)
2822 setup_bfd_headers (ibfd, obfd);
80fccad2 2823
252b5132
RH
2824 if (add_sections != NULL)
2825 {
2826 struct section_add *padd;
2827 struct section_list *pset;
2828
2829 for (padd = add_sections; padd != NULL; padd = padd->next)
2830 {
2593f09a
NC
2831 flagword flags;
2832
015dc7e1 2833 pset = find_section_list (padd->name, false,
2e62b721 2834 SECTION_CONTEXT_SET_FLAGS);
551b43fd 2835 if (pset != NULL)
a0dcf297
NC
2836 {
2837 flags = pset->flags | SEC_HAS_CONTENTS;
2838 flags = check_new_section_flags (flags, obfd, padd->name);
2839 }
2e62b721
NC
2840 else
2841 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DATA;
551b43fd 2842
c8782eee
NC
2843 /* bfd_make_section_with_flags() does not return very helpful
2844 error codes, so check for the most likely user error first. */
2845 if (bfd_get_section_by_name (obfd, padd->name))
252b5132 2846 {
2db6cde7 2847 bfd_nonfatal_message (NULL, obfd, NULL,
f7433f01 2848 _("can't add section '%s'"), padd->name);
015dc7e1 2849 return false;
252b5132 2850 }
c8782eee
NC
2851 else
2852 {
0930eddd 2853 /* We use LINKER_CREATED here so that the backend hooks
f7433f01
AM
2854 will create any special section type information,
2855 instead of presuming we know what we're doing merely
2856 because we set the flags. */
0930eddd
NS
2857 padd->section = bfd_make_section_with_flags
2858 (obfd, padd->name, flags | SEC_LINKER_CREATED);
c8782eee
NC
2859 if (padd->section == NULL)
2860 {
2db6cde7
NS
2861 bfd_nonfatal_message (NULL, obfd, NULL,
2862 _("can't create section `%s'"),
2863 padd->name);
015dc7e1 2864 return false;
c8782eee
NC
2865 }
2866 }
252b5132 2867
fd361982 2868 if (!bfd_set_section_size (padd->section, padd->size))
950d48e7 2869 {
2db6cde7 2870 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
015dc7e1 2871 return false;
950d48e7 2872 }
252b5132 2873
015dc7e1 2874 pset = find_section_list (padd->name, false,
2e62b721
NC
2875 SECTION_CONTEXT_SET_VMA | SECTION_CONTEXT_ALTER_VMA);
2876 if (pset != NULL
fd361982 2877 && !bfd_set_section_vma (padd->section, pset->vma_val))
2e62b721
NC
2878 {
2879 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
015dc7e1 2880 return false;
2e62b721
NC
2881 }
2882
015dc7e1 2883 pset = find_section_list (padd->name, false,
2e62b721 2884 SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_ALTER_LMA);
2593f09a
NC
2885 if (pset != NULL)
2886 {
2e62b721 2887 padd->section->lma = pset->lma_val;
57938635 2888
fd361982
AM
2889 if (!bfd_set_section_alignment
2890 (padd->section, bfd_section_alignment (padd->section)))
2593f09a 2891 {
2e62b721 2892 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
015dc7e1 2893 return false;
252b5132
RH
2894 }
2895 }
2896 }
2897 }
2898
acf1419f
AB
2899 if (update_sections != NULL)
2900 {
2901 struct section_add *pupdate;
2902
2903 for (pupdate = update_sections;
2904 pupdate != NULL;
2905 pupdate = pupdate->next)
2906 {
acf1419f
AB
2907 pupdate->section = bfd_get_section_by_name (ibfd, pupdate->name);
2908 if (pupdate->section == NULL)
cfad8730
NC
2909 {
2910 non_fatal (_("error: %s not found, can't be updated"), pupdate->name);
015dc7e1 2911 return false;
cfad8730 2912 }
acf1419f
AB
2913
2914 osec = pupdate->section->output_section;
fd361982 2915 if (!bfd_set_section_size (osec, pupdate->size))
acf1419f
AB
2916 {
2917 bfd_nonfatal_message (NULL, obfd, osec, NULL);
015dc7e1 2918 return false;
acf1419f
AB
2919 }
2920 }
2921 }
2922
5c49f2cd 2923 merged_note_section * merged_note_sections = NULL;
9ef920e9
NC
2924 if (merge_notes)
2925 {
2926 /* This palaver is necessary because we must set the output
2927 section size first, before its contents are ready. */
5c49f2cd 2928 for (osec = ibfd->sections; osec != NULL; osec = osec->next)
9ef920e9 2929 {
5c49f2cd
NC
2930 if (! is_mergeable_note_section (ibfd, osec))
2931 continue;
2932
ef07b808
NC
2933 /* If the section is going to be completly deleted then
2934 do not bother to merge it. */
2935 if (osec->output_section == NULL)
2936 continue;
2937
5c49f2cd
NC
2938 bfd_size_type size = bfd_section_size (osec);
2939
9ef920e9
NC
2940 if (size == 0)
2941 {
5c49f2cd
NC
2942 bfd_nonfatal_message (NULL, ibfd, osec,
2943 _("warning: note section is empty"));
2944 continue;
9ef920e9 2945 }
5c49f2cd
NC
2946
2947 merged_note_section * merged = xmalloc (sizeof * merged);
2948 merged->contents = NULL;
2949 if (! bfd_get_full_section_contents (ibfd, osec, & merged->contents))
9ef920e9 2950 {
5c49f2cd
NC
2951 bfd_nonfatal_message (NULL, ibfd, osec,
2952 _("warning: could not load note section"));
5c49f2cd
NC
2953 free (merged);
2954 continue;
9ef920e9 2955 }
5c49f2cd
NC
2956
2957 merged->size = merge_gnu_build_notes (ibfd, osec, size,
2958 merged->contents);
5c49f2cd 2959
ef07b808
NC
2960 /* FIXME: Once we have read the contents in, we must write
2961 them out again. So even if the mergeing has achieved
2962 nothing we still add this entry to the merge list. */
2963
2964 if (size != merged->size
2965 && !bfd_set_section_size (osec->output_section, merged->size))
5c49f2cd
NC
2966 {
2967 bfd_nonfatal_message (NULL, obfd, osec,
2968 _("warning: failed to set merged notes size"));
2969 free (merged->contents);
2970 free (merged);
2971 continue;
9ef920e9 2972 }
5c49f2cd
NC
2973
2974 /* Add section to list of merged sections. */
2975 merged->sec = osec;
2976 merged->next = merged_note_sections;
2977 merged_note_sections = merged;
9ef920e9
NC
2978 }
2979 }
2980
bbad633b
NC
2981 if (dump_sections != NULL)
2982 {
2983 struct section_add * pdump;
2984
2985 for (pdump = dump_sections; pdump != NULL; pdump = pdump->next)
2986 {
e052e2ba
FS
2987 FILE * f;
2988 bfd_byte *contents;
2989
9ef920e9
NC
2990 osec = bfd_get_section_by_name (ibfd, pdump->name);
2991 if (osec == NULL)
bbad633b
NC
2992 {
2993 bfd_nonfatal_message (NULL, ibfd, NULL,
2994 _("can't dump section '%s' - it does not exist"),
2995 pdump->name);
2996 continue;
2997 }
2998
fd361982 2999 if ((bfd_section_flags (osec) & SEC_HAS_CONTENTS) == 0)
bbad633b 3000 {
9ef920e9 3001 bfd_nonfatal_message (NULL, ibfd, osec,
bbad633b
NC
3002 _("can't dump section - it has no contents"));
3003 continue;
3004 }
3aade688 3005
fd361982 3006 bfd_size_type size = bfd_section_size (osec);
a68aba2d
AM
3007 /* Note - we allow the dumping of zero-sized sections,
3008 creating an empty file. */
bbad633b 3009
bbad633b
NC
3010 f = fopen (pdump->filename, FOPEN_WB);
3011 if (f == NULL)
3012 {
3013 bfd_nonfatal_message (pdump->filename, NULL, NULL,
3014 _("could not open section dump file"));
3015 continue;
3016 }
3017
bae7501e 3018 if (bfd_malloc_and_get_section (ibfd, osec, &contents))
182a105a 3019 {
a68aba2d 3020 if (size != 0 && fwrite (contents, 1, size, f) != size)
cfad8730
NC
3021 {
3022 non_fatal (_("error writing section contents to %s (error: %s)"),
3023 pdump->filename,
3024 strerror (errno));
bae7501e 3025 free (contents);
3391569f 3026 fclose (f);
015dc7e1 3027 return false;
cfad8730 3028 }
182a105a 3029 }
bbad633b 3030 else
9ef920e9 3031 bfd_nonfatal_message (NULL, ibfd, osec,
bbad633b
NC
3032 _("could not retrieve section contents"));
3033
3034 fclose (f);
3035 free (contents);
3036 }
3037 }
3aade688 3038
2593f09a
NC
3039 if (gnu_debuglink_filename != NULL)
3040 {
d99b05a3
NC
3041 /* PR 15125: Give a helpful warning message if
3042 the debuglink section already exists, and
3043 allow the rest of the copy to complete. */
3044 if (bfd_get_section_by_name (obfd, ".gnu_debuglink"))
950d48e7 3045 {
d99b05a3
NC
3046 non_fatal (_("%s: debuglink section already exists"),
3047 bfd_get_filename (obfd));
3048 gnu_debuglink_filename = NULL;
950d48e7 3049 }
d99b05a3 3050 else
6e2c86ac 3051 {
d99b05a3
NC
3052 gnu_debuglink_section = bfd_create_gnu_debuglink_section
3053 (obfd, gnu_debuglink_filename);
3054
3055 if (gnu_debuglink_section == NULL)
3056 {
3057 bfd_nonfatal_message (NULL, obfd, NULL,
3058 _("cannot create debug link section `%s'"),
3059 gnu_debuglink_filename);
015dc7e1 3060 return false;
d99b05a3 3061 }
6e2c86ac 3062
d99b05a3
NC
3063 /* Special processing for PE format files. We
3064 have no way to distinguish PE from COFF here. */
3065 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour)
3066 {
3067 bfd_vma debuglink_vma;
3068 asection * highest_section;
d99b05a3
NC
3069
3070 /* The PE spec requires that all sections be adjacent and sorted
3071 in ascending order of VMA. It also specifies that debug
3072 sections should be last. This is despite the fact that debug
3073 sections are not loaded into memory and so in theory have no
3074 use for a VMA.
3075
3076 This means that the debuglink section must be given a non-zero
3077 VMA which makes it contiguous with other debug sections. So
3078 walk the current section list, find the section with the
3079 highest VMA and start the debuglink section after that one. */
9ef920e9
NC
3080 for (osec = obfd->sections, highest_section = NULL;
3081 osec != NULL;
3082 osec = osec->next)
3083 if (osec->vma > 0
d99b05a3 3084 && (highest_section == NULL
9ef920e9
NC
3085 || osec->vma > highest_section->vma))
3086 highest_section = osec;
d99b05a3
NC
3087
3088 if (highest_section)
3089 debuglink_vma = BFD_ALIGN (highest_section->vma
3090 + highest_section->size,
3091 /* FIXME: We ought to be using
3092 COFF_PAGE_SIZE here or maybe
fd361982 3093 bfd_section_alignment() (if it
d99b05a3
NC
3094 was set) but since this is for PE
3095 and we know the required alignment
3096 it is easier just to hard code it. */
3097 0x1000);
3098 else
3099 /* Umm, not sure what to do in this case. */
3100 debuglink_vma = 0x1000;
3101
fd361982 3102 bfd_set_section_vma (gnu_debuglink_section, debuglink_vma);
d99b05a3 3103 }
6e2c86ac 3104 }
950d48e7
NC
3105 }
3106
9cc89dc0
AM
3107 num_sec = bfd_count_sections (obfd);
3108 if (num_sec != 0
1aa9ef63 3109 && (gap_fill_set || pad_to_set))
252b5132
RH
3110 {
3111 asection **set;
252b5132
RH
3112
3113 /* We must fill in gaps between the sections and/or we must pad
3114 the last section to a specified address. We do this by
3115 grabbing a list of the sections, sorting them by VMA, and
3116 increasing the section sizes as required to fill the gaps.
3117 We write out the gap contents below. */
3118
9cc89dc0 3119 osections = xmalloc (num_sec * sizeof (*osections));
252b5132 3120 set = osections;
d3ba0551 3121 bfd_map_over_sections (obfd, get_sections, &set);
252b5132 3122
9cc89dc0 3123 qsort (osections, num_sec, sizeof (*osections), compare_section_lma);
252b5132 3124
9cc89dc0
AM
3125 gaps = xmalloc (num_sec * sizeof (*gaps));
3126 memset (gaps, 0, num_sec * sizeof (*gaps));
252b5132
RH
3127
3128 if (gap_fill_set)
3129 {
9cc89dc0 3130 for (i = 0; i < num_sec - 1; i++)
252b5132
RH
3131 {
3132 flagword flags;
eef64366
CE
3133 bfd_size_type size; /* Octets. */
3134 bfd_vma gap_start, gap_stop; /* Octets. */
3135 unsigned int opb1 = bfd_octets_per_byte (obfd, osections[i]);
3136 unsigned int opb2 = bfd_octets_per_byte (obfd, osections[i+1]);
252b5132 3137
fd361982 3138 flags = bfd_section_flags (osections[i]);
252b5132
RH
3139 if ((flags & SEC_HAS_CONTENTS) == 0
3140 || (flags & SEC_LOAD) == 0)
3141 continue;
3142
fd361982 3143 size = bfd_section_size (osections[i]);
eef64366
CE
3144 gap_start = bfd_section_lma (osections[i]) * opb1 + size;
3145 gap_stop = bfd_section_lma (osections[i + 1]) * opb2;
252b5132
RH
3146 if (gap_start < gap_stop)
3147 {
fd361982
AM
3148 if (!bfd_set_section_size (osections[i],
3149 size + (gap_stop - gap_start)))
252b5132 3150 {
2db6cde7
NS
3151 bfd_nonfatal_message (NULL, obfd, osections[i],
3152 _("Can't fill gap after section"));
252b5132
RH
3153 status = 1;
3154 break;
3155 }
3156 gaps[i] = gap_stop - gap_start;
3157 if (max_gap < gap_stop - gap_start)
3158 max_gap = gap_stop - gap_start;
3159 }
3160 }
3161 }
3162
3163 if (pad_to_set)
3164 {
eef64366
CE
3165 bfd_vma lma; /* Octets. */
3166 bfd_size_type size; /* Octets. */
9cc89dc0 3167 unsigned int opb = bfd_octets_per_byte (obfd, osections[num_sec - 1]);
eef64366 3168 bfd_vma _pad_to = pad_to * opb;
252b5132 3169
9cc89dc0
AM
3170 lma = bfd_section_lma (osections[num_sec - 1]) * opb;
3171 size = bfd_section_size (osections[num_sec - 1]);
eef64366 3172 if (lma + size < _pad_to)
252b5132 3173 {
9cc89dc0 3174 if (!bfd_set_section_size (osections[num_sec - 1], _pad_to - lma))
252b5132 3175 {
9cc89dc0 3176 bfd_nonfatal_message (NULL, obfd, osections[num_sec - 1],
2db6cde7 3177 _("can't add padding"));
252b5132
RH
3178 status = 1;
3179 }
3180 else
3181 {
9cc89dc0 3182 gaps[num_sec - 1] = _pad_to - (lma + size);
eef64366
CE
3183 if (max_gap < _pad_to - (lma + size))
3184 max_gap = _pad_to - (lma + size);
252b5132
RH
3185 }
3186 }
3187 }
3188 }
3189
594ef5db
NC
3190 /* Symbol filtering must happen after the output sections
3191 have been created, but before their contents are set. */
252b5132 3192 dhandle = NULL;
252b5132 3193 if (convert_debugging)
015dc7e1 3194 dhandle = read_debugging_info (ibfd, isympp, symcount, false);
57938635 3195
d1bcae83
L
3196 if ((obfd->flags & (EXEC_P | DYNAMIC)) != 0
3197 && (obfd->flags & HAS_RELOC) == 0)
3198 {
ca0e11aa 3199 if (bfd_keep_unused_section_symbols (obfd) || keep_section_symbols)
d1bcae83
L
3200 {
3201 /* Non-relocatable inputs may not have the unused section
3202 symbols. Mark all section symbols as used to generate
3203 section symbols. */
3204 asection *asect;
3205 for (asect = obfd->sections; asect != NULL; asect = asect->next)
3206 if (asect->symbol)
3207 asect->symbol->flags |= BSF_SECTION_SYM_USED;
3208 }
3209 else
3210 {
3211 /* Non-relocatable inputs may have the unused section symbols.
3212 Mark all section symbols as unused to excluded them. */
3213 long s;
3214 for (s = 0; s < symcount; s++)
3215 if ((isympp[s]->flags & BSF_SECTION_SYM_USED))
3216 isympp[s]->flags &= ~BSF_SECTION_SYM_USED;
3217 }
3218 }
3219
57938635 3220 if (strip_symbols == STRIP_DEBUG
252b5132
RH
3221 || strip_symbols == STRIP_ALL
3222 || strip_symbols == STRIP_UNNEEDED
ed1653a7 3223 || strip_symbols == STRIP_NONDEBUG
96109726
CC
3224 || strip_symbols == STRIP_DWO
3225 || strip_symbols == STRIP_NONDWO
252b5132 3226 || discard_locals != LOCALS_UNDEF
d58c2e3a 3227 || localize_hidden
047c9024
NC
3228 || htab_elements (strip_specific_htab) != 0
3229 || htab_elements (keep_specific_htab) != 0
3230 || htab_elements (localize_specific_htab) != 0
3231 || htab_elements (globalize_specific_htab) != 0
3232 || htab_elements (keepglobal_specific_htab) != 0
3233 || htab_elements (weaken_specific_htab) != 0
0f65a5d8 3234 || htab_elements (redefine_specific_htab) != 0
d7fb0dd2 3235 || prefix_symbols_string
252b5132 3236 || sections_removed
f91ea849 3237 || sections_copied
252b5132
RH
3238 || convert_debugging
3239 || change_leading_char
3240 || remove_leading_char
9cc0123f 3241 || section_rename_list
2b35fb28
RH
3242 || weaken
3243 || add_symbols)
252b5132
RH
3244 {
3245 /* Mark symbols used in output relocations so that they
3246 are kept, even if they are local labels or static symbols.
57938635 3247
252b5132
RH
3248 Note we iterate over the input sections examining their
3249 relocations since the relocations for the output sections
3250 haven't been set yet. mark_symbols_used_in_relocations will
3251 ignore input sections which have no corresponding output
3252 section. */
3253 if (strip_symbols != STRIP_ALL)
f3185997
NC
3254 {
3255 bfd_set_error (bfd_error_no_error);
3256 bfd_map_over_sections (ibfd,
3257 mark_symbols_used_in_relocations,
3258 isympp);
3259 if (bfd_get_error () != bfd_error_no_error)
3260 {
3261 status = 1;
015dc7e1 3262 return false;
f3185997
NC
3263 }
3264 }
3265
2b35fb28 3266 osympp = (asymbol **) xmalloc ((symcount + add_symbols + 1) * sizeof (asymbol *));
252b5132
RH
3267 symcount = filter_symbols (ibfd, obfd, osympp, isympp, symcount);
3268 }
3269
3270 if (convert_debugging && dhandle != NULL)
3271 {
015dc7e1 3272 bool res;
cf0ad5bb
NC
3273
3274 res = write_debugging_info (obfd, dhandle, &symcount, &osympp);
3275
3276 free (dhandle);
3277 dhandle = NULL; /* Paranoia... */
3278
3279 if (! res)
252b5132
RH
3280 {
3281 status = 1;
015dc7e1 3282 return false;
252b5132
RH
3283 }
3284 }
3285
3286 bfd_set_symtab (obfd, osympp, symcount);
3287
c3989150
L
3288 /* This has to happen before section positions are set. */
3289 bfd_map_over_sections (ibfd, copy_relocations_in_section, obfd);
3290
252b5132 3291 /* This has to happen after the symbol table has been set. */
d3ba0551 3292 bfd_map_over_sections (ibfd, copy_section, obfd);
252b5132
RH
3293
3294 if (add_sections != NULL)
3295 {
3296 struct section_add *padd;
3297
3298 for (padd = add_sections; padd != NULL; padd = padd->next)
3299 {
d3ba0551
AM
3300 if (! bfd_set_section_contents (obfd, padd->section, padd->contents,
3301 0, padd->size))
950d48e7 3302 {
2db6cde7 3303 bfd_nonfatal_message (NULL, obfd, padd->section, NULL);
015dc7e1 3304 return false;
950d48e7 3305 }
252b5132
RH
3306 }
3307 }
3308
acf1419f
AB
3309 if (update_sections != NULL)
3310 {
3311 struct section_add *pupdate;
3312
3313 for (pupdate = update_sections;
f7433f01
AM
3314 pupdate != NULL;
3315 pupdate = pupdate->next)
acf1419f 3316 {
acf1419f
AB
3317 osec = pupdate->section->output_section;
3318 if (! bfd_set_section_contents (obfd, osec, pupdate->contents,
f7433f01 3319 0, pupdate->size))
acf1419f
AB
3320 {
3321 bfd_nonfatal_message (NULL, obfd, osec, NULL);
015dc7e1 3322 return false;
acf1419f
AB
3323 }
3324 }
3325 }
3326
5c49f2cd 3327 if (merged_note_sections != NULL)
9ef920e9 3328 {
5c49f2cd
NC
3329 merged_note_section * merged = NULL;
3330
3331 for (osec = obfd->sections; osec != NULL; osec = osec->next)
9ef920e9 3332 {
5c49f2cd
NC
3333 if (! is_mergeable_note_section (obfd, osec))
3334 continue;
3335
3336 if (merged == NULL)
3337 merged = merged_note_sections;
3338
3339 /* It is likely that output sections are in the same order
3340 as the input sections, but do not assume that this is
3341 the case. */
0ec992e6 3342 if (merged->sec->output_section != osec)
5c49f2cd
NC
3343 {
3344 for (merged = merged_note_sections;
3345 merged != NULL;
3346 merged = merged->next)
0ec992e6 3347 if (merged->sec->output_section == osec)
5c49f2cd
NC
3348 break;
3349
3350 if (merged == NULL)
3351 {
3352 bfd_nonfatal_message
3353 (NULL, obfd, osec,
ef07b808 3354 _("error: failed to locate merged notes"));
5c49f2cd
NC
3355 continue;
3356 }
3357 }
3358
ef07b808 3359 if (merged->contents == NULL)
5c49f2cd
NC
3360 {
3361 bfd_nonfatal_message
3362 (NULL, obfd, osec,
ef07b808 3363 _("error: failed to merge notes"));
5c49f2cd
NC
3364 continue;
3365 }
3366
3367 if (! bfd_set_section_contents (obfd, osec, merged->contents, 0,
3368 merged->size))
9ef920e9 3369 {
5c49f2cd
NC
3370 bfd_nonfatal_message
3371 (NULL, obfd, osec,
3372 _("error: failed to copy merged notes into output"));
015dc7e1 3373 return false;
9ef920e9 3374 }
5c49f2cd
NC
3375
3376 merged = merged->next;
3377 }
3378
3379 /* Free the memory. */
3380 merged_note_section * next;
3381 for (merged = merged_note_sections; merged != NULL; merged = next)
3382 {
3383 next = merged->next;
3384 free (merged->contents);
3385 free (merged);
9ef920e9 3386 }
9ef920e9 3387 }
5c49f2cd
NC
3388 else if (merge_notes && ! is_strip)
3389 non_fatal (_("%s: Could not find any mergeable note sections"),
3390 bfd_get_filename (ibfd));
9ef920e9 3391
e7c81c25
NC
3392 if (gnu_debuglink_filename != NULL)
3393 {
3394 if (! bfd_fill_in_gnu_debuglink_section
3395 (obfd, gnu_debuglink_section, gnu_debuglink_filename))
950d48e7 3396 {
2db6cde7
NS
3397 bfd_nonfatal_message (NULL, obfd, NULL,
3398 _("cannot fill debug link section `%s'"),
3399 gnu_debuglink_filename);
015dc7e1 3400 return false;
950d48e7 3401 }
e7c81c25
NC
3402 }
3403
9cc89dc0 3404 if (gaps != NULL)
252b5132
RH
3405 {
3406 bfd_byte *buf;
252b5132
RH
3407
3408 /* Fill in the gaps. */
252b5132
RH
3409 if (max_gap > 8192)
3410 max_gap = 8192;
3f5e193b 3411 buf = (bfd_byte *) xmalloc (max_gap);
d3ba0551 3412 memset (buf, gap_fill, max_gap);
252b5132 3413
9cc89dc0 3414 for (i = 0; i < num_sec; i++)
252b5132
RH
3415 {
3416 if (gaps[i] != 0)
3417 {
3418 bfd_size_type left;
3419 file_ptr off;
3420
3421 left = gaps[i];
fd361982 3422 off = bfd_section_size (osections[i]) - left;
594ef5db 3423
252b5132
RH
3424 while (left > 0)
3425 {
3426 bfd_size_type now;
3427
3428 if (left > 8192)
3429 now = 8192;
3430 else
3431 now = left;
3432
3433 if (! bfd_set_section_contents (obfd, osections[i], buf,
3434 off, now))
950d48e7 3435 {
2db6cde7 3436 bfd_nonfatal_message (NULL, obfd, osections[i], NULL);
3391569f 3437 free (buf);
015dc7e1 3438 return false;
950d48e7 3439 }
252b5132
RH
3440
3441 left -= now;
3442 off += now;
3443 }
3444 }
3445 }
3391569f
NC
3446
3447 free (buf);
3448 free (gaps);
3449 gaps = NULL;
252b5132
RH
3450 }
3451
3452 /* Allow the BFD backend to copy any private data it understands
3453 from the input BFD to the output BFD. This is done last to
3454 permit the routine to look at the filtered symbol table, which is
3455 important for the ECOFF code at least. */
42bb2e33 3456 if (! bfd_copy_private_bfd_data (ibfd, obfd))
252b5132 3457 {
2db6cde7
NS
3458 bfd_nonfatal_message (NULL, obfd, NULL,
3459 _("error copying private BFD data"));
015dc7e1 3460 return false;
252b5132 3461 }
1ae8b3d2
AO
3462
3463 /* Switch to the alternate machine code. We have to do this at the
3464 very end, because we only initialize the header when we create
3465 the first section. */
f9d4ad2a
NC
3466 if (use_alt_mach_code != 0)
3467 {
3468 if (! bfd_alt_mach_code (obfd, use_alt_mach_code))
3469 {
3470 non_fatal (_("this target does not support %lu alternative machine codes"),
3471 use_alt_mach_code);
3472 if (bfd_get_flavour (obfd) == bfd_target_elf_flavour)
3473 {
3474 non_fatal (_("treating that number as an absolute e_machine value instead"));
3475 elf_elfheader (obfd)->e_machine = use_alt_mach_code;
3476 }
3477 else
3478 non_fatal (_("ignoring the alternative value"));
3479 }
3480 }
950d48e7 3481
015dc7e1 3482 return true;
252b5132
RH
3483}
3484
3485/* Read each archive element in turn from IBFD, copy the
ee873e00
NC
3486 contents to temp file, and keep the temp file handle.
3487 If 'force_output_target' is TRUE then make sure that
3488 all elements in the new archive are of the type
3489 'output_target'. */
252b5132
RH
3490
3491static void
ee873e00 3492copy_archive (bfd *ibfd, bfd *obfd, const char *output_target,
015dc7e1 3493 bool force_output_target,
8b31b6c4 3494 const bfd_arch_info_type *input_arch)
252b5132
RH
3495{
3496 struct name_list
3497 {
3498 struct name_list *next;
4c168fa3 3499 const char *name;
252b5132
RH
3500 bfd *obfd;
3501 } *list, *l;
3502 bfd **ptr = &obfd->archive_head;
3503 bfd *this_element;
8d8e0703
AM
3504 char *dir;
3505 const char *filename;
252b5132 3506
f5f20315
NC
3507 /* PR 24281: It is not clear what should happen when copying a thin archive.
3508 One part is straight forward - if the output archive is in a different
3509 directory from the input archive then any relative paths in the library
3510 should be adjusted to the new location. But if any transformation
3511 options are active (eg strip, rename, add, etc) then the implication is
3512 that these should be applied to the files pointed to by the archive.
3513 But since objcopy is not destructive, this means that new files must be
3514 created, and there is no guidance for the names of the new files. (Plus
3515 this conflicts with one of the goals of thin libraries - only taking up
3516 a minimal amount of space in the file system).
3517
3518 So for now we fail if an attempt is made to copy such libraries. */
3519 if (ibfd->is_thin_archive)
3520 {
3521 status = 1;
3522 bfd_set_error (bfd_error_invalid_operation);
3523 bfd_nonfatal_message (NULL, ibfd, NULL,
3524 _("sorry: copying thin archives is not currently supported"));
3525 return;
3526 }
3527
252b5132 3528 /* Make a temp directory to hold the contents. */
1ff5d5c4 3529 dir = make_tempdir (bfd_get_filename (obfd));
f9c026a8 3530 if (dir == NULL)
f7433f01 3531 fatal (_("cannot create tempdir for archive copying (error: %s)"),
f9c026a8 3532 strerror (errno));
84e2f313 3533
2e30cb57 3534 if (strip_symbols == STRIP_ALL)
015dc7e1 3535 obfd->has_armap = false;
2e30cb57
CC
3536 else
3537 obfd->has_armap = ibfd->has_armap;
a8da6403 3538 obfd->is_thin_archive = ibfd->is_thin_archive;
252b5132 3539
2e30cb57
CC
3540 if (deterministic)
3541 obfd->flags |= BFD_DETERMINISTIC_OUTPUT;
3542
252b5132
RH
3543 list = NULL;
3544
3545 this_element = bfd_openr_next_archived_file (ibfd, NULL);
594ef5db 3546
b667df2e 3547 if (!bfd_set_format (obfd, bfd_get_format (ibfd)))
8d8e0703
AM
3548 {
3549 status = 1;
3550 bfd_nonfatal_message (NULL, obfd, NULL, NULL);
cfad8730 3551 goto cleanup_and_exit;
8d8e0703 3552 }
b667df2e 3553
d3ba0551 3554 while (!status && this_element != NULL)
252b5132 3555 {
4c168fa3
AM
3556 char *output_name;
3557 bfd *output_bfd;
252b5132 3558 bfd *last_element;
8066d1a2
AS
3559 struct stat buf;
3560 int stat_status = 0;
015dc7e1
AM
3561 bool del = true;
3562 bool ok_object;
8066d1a2 3563
dd9b91de
NC
3564 /* PR binutils/17533: Do not allow directory traversal
3565 outside of the current directory tree by archive members. */
3566 if (! is_valid_archive_path (bfd_get_filename (this_element)))
5e186ece
NC
3567 {
3568 non_fatal (_("illegal pathname found in archive member: %s"),
3569 bfd_get_filename (this_element));
3570 status = 1;
3571 goto cleanup_and_exit;
3572 }
dd9b91de 3573
4c168fa3
AM
3574 /* Create an output file for this member. */
3575 output_name = concat (dir, "/",
3576 bfd_get_filename (this_element), (char *) 0);
3577
3578 /* If the file already exists, make another temp dir. */
3579 if (stat (output_name, &buf) >= 0)
3580 {
1d97232a
NC
3581 char * tmpdir = make_tempdir (output_name);
3582
3583 free (output_name);
3584 if (tmpdir == NULL)
5e186ece
NC
3585 {
3586 non_fatal (_("cannot create tempdir for archive copying (error: %s)"),
3587 strerror (errno));
3588 status = 1;
3589 goto cleanup_and_exit;
3590 }
84e2f313 3591
3f5e193b 3592 l = (struct name_list *) xmalloc (sizeof (struct name_list));
1d97232a 3593 l->name = tmpdir;
4c168fa3
AM
3594 l->next = list;
3595 l->obfd = NULL;
3596 list = l;
1d97232a 3597 output_name = concat (tmpdir, "/",
4c168fa3
AM
3598 bfd_get_filename (this_element), (char *) 0);
3599 }
3600
8066d1a2
AS
3601 if (preserve_dates)
3602 {
3603 stat_status = bfd_stat_arch_elt (this_element, &buf);
594ef5db 3604
8066d1a2
AS
3605 if (stat_status != 0)
3606 non_fatal (_("internal stat error on %s"),
3607 bfd_get_filename (this_element));
3608 }
252b5132 3609
3f5e193b 3610 l = (struct name_list *) xmalloc (sizeof (struct name_list));
252b5132
RH
3611 l->name = output_name;
3612 l->next = list;
bee59fd2 3613 l->obfd = NULL;
252b5132
RH
3614 list = l;
3615
19094d10
AM
3616 ok_object = bfd_check_format (this_element, bfd_object);
3617 if (!ok_object)
3618 bfd_nonfatal_message (NULL, this_element, NULL,
3619 _("Unable to recognise the format of file"));
3620
3621 /* PR binutils/3110: Cope with archives
3622 containing multiple target types. */
3623 if (force_output_target || !ok_object)
3624 output_bfd = bfd_openw (output_name, output_target);
3625 else
3626 output_bfd = bfd_openw (output_name, bfd_get_target (this_element));
3627
3628 if (output_bfd == NULL)
77f762d6 3629 {
19094d10
AM
3630 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
3631 status = 1;
5e186ece 3632 goto cleanup_and_exit;
19094d10
AM
3633 }
3634
3635 if (ok_object)
3636 {
3637 del = !copy_object (this_element, output_bfd, input_arch);
ee873e00 3638
19094d10
AM
3639 if (del && bfd_get_arch (this_element) == bfd_arch_unknown)
3640 /* Try again as an unknown object file. */
015dc7e1 3641 ok_object = false;
19094d10 3642 else if (!bfd_close (output_bfd))
2db6cde7
NS
3643 {
3644 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
19094d10 3645 /* Error in new object file. Don't change archive. */
2db6cde7 3646 status = 1;
77f762d6 3647 }
77f762d6 3648 }
77f762d6 3649
19094d10
AM
3650 if (!ok_object)
3651 {
3f5e193b 3652 del = !copy_unknown_object (this_element, output_bfd);
77f762d6
L
3653 if (!bfd_close_all_done (output_bfd))
3654 {
8d8e0703 3655 bfd_nonfatal_message (output_name, NULL, NULL, NULL);
77f762d6
L
3656 /* Error in new object file. Don't change archive. */
3657 status = 1;
3658 }
252b5132
RH
3659 }
3660
3f5e193b 3661 if (del)
950d48e7
NC
3662 {
3663 unlink (output_name);
3664 status = 1;
3665 }
3666 else
3667 {
3668 if (preserve_dates && stat_status == 0)
3669 set_times (output_name, &buf);
8066d1a2 3670
950d48e7
NC
3671 /* Open the newly output file and attach to our list. */
3672 output_bfd = bfd_openr (output_name, output_target);
252b5132 3673
950d48e7 3674 l->obfd = output_bfd;
252b5132 3675
950d48e7 3676 *ptr = output_bfd;
cc481421 3677 ptr = &output_bfd->archive_next;
252b5132 3678
950d48e7 3679 last_element = this_element;
252b5132 3680
950d48e7 3681 this_element = bfd_openr_next_archived_file (ibfd, last_element);
252b5132 3682
950d48e7
NC
3683 bfd_close (last_element);
3684 }
252b5132 3685 }
d3ba0551 3686 *ptr = NULL;
252b5132 3687
8d8e0703 3688 filename = bfd_get_filename (obfd);
252b5132 3689 if (!bfd_close (obfd))
8d8e0703
AM
3690 {
3691 status = 1;
3692 bfd_nonfatal_message (filename, NULL, NULL, NULL);
8d8e0703 3693 }
252b5132 3694
8d8e0703 3695 filename = bfd_get_filename (ibfd);
252b5132 3696 if (!bfd_close (ibfd))
8d8e0703
AM
3697 {
3698 status = 1;
3699 bfd_nonfatal_message (filename, NULL, NULL, NULL);
8d8e0703 3700 }
252b5132 3701
5e186ece 3702 cleanup_and_exit:
252b5132 3703 /* Delete all the files that we opened. */
1d97232a
NC
3704 {
3705 struct name_list * next;
3706
3707 for (l = list; l != NULL; l = next)
3708 {
3709 if (l->obfd == NULL)
3710 rmdir (l->name);
3711 else
3712 {
3713 bfd_close (l->obfd);
3714 unlink (l->name);
3715 }
3716 next = l->next;
3717 free (l);
3718 }
3719 }
cfad8730 3720
252b5132
RH
3721 rmdir (dir);
3722}
3723
0408dee6
DK
3724static void
3725set_long_section_mode (bfd *output_bfd, bfd *input_bfd, enum long_section_name_handling style)
3726{
3727 /* This is only relevant to Coff targets. */
3728 if (bfd_get_flavour (output_bfd) == bfd_target_coff_flavour)
3729 {
78e82dc3
AM
3730 if (style == KEEP
3731 && bfd_get_flavour (input_bfd) == bfd_target_coff_flavour)
0408dee6
DK
3732 style = bfd_coff_long_section_names (input_bfd) ? ENABLE : DISABLE;
3733 bfd_coff_set_long_section_names (output_bfd, style != DISABLE);
3734 }
3735}
3736
252b5132
RH
3737/* The top-level control. */
3738
3739static void
365f5fb6 3740copy_file (const char *input_filename, const char *output_filename, int ofd,
1a1c3b4c
SP
3741 struct stat *in_stat, const char *input_target,
3742 const char *output_target, const bfd_arch_info_type *input_arch)
252b5132
RH
3743{
3744 bfd *ibfd;
49c12576
AM
3745 char **obj_matching;
3746 char **core_matching;
52a476ee 3747 off_t size = get_file_size (input_filename);
252b5132 3748
52a476ee 3749 if (size < 1)
f24ddbdd 3750 {
52a476ee
L
3751 if (size == 0)
3752 non_fatal (_("error: the input file '%s' is empty"),
3753 input_filename);
f24ddbdd
NC
3754 status = 1;
3755 return;
3756 }
3757
252b5132
RH
3758 /* To allow us to do "strip *" without dying on the first
3759 non-object file, failures are nonfatal. */
252b5132 3760 ibfd = bfd_openr (input_filename, input_target);
95b91a04 3761 if (ibfd == NULL || bfd_stat (ibfd, in_stat) != 0)
2db6cde7
NS
3762 {
3763 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
3764 status = 1;
3765 return;
3766 }
252b5132 3767
4a114e3e
L
3768 switch (do_debug_sections)
3769 {
3770 case compress:
151411f8
L
3771 case compress_zlib:
3772 case compress_gnu_zlib:
3773 case compress_gabi_zlib:
4a114e3e 3774 ibfd->flags |= BFD_COMPRESS;
cd6faa73
L
3775 /* Don't check if input is ELF here since this information is
3776 only available after bfd_check_format_matches is called. */
19a7fe52 3777 if (do_debug_sections != compress_gnu_zlib)
cd6faa73 3778 ibfd->flags |= BFD_COMPRESS_GABI;
4a114e3e
L
3779 break;
3780 case decompress:
3781 ibfd->flags |= BFD_DECOMPRESS;
3782 break;
3783 default:
3784 break;
3785 }
3786
b8871f35
L
3787 switch (do_elf_stt_common)
3788 {
3789 case elf_stt_common:
3790 ibfd->flags |= BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON;
3791 break;
3792 break;
3793 case no_elf_stt_common:
3794 ibfd->flags |= BFD_CONVERT_ELF_COMMON;
3795 break;
3796 default:
3797 break;
3798 }
3799
252b5132
RH
3800 if (bfd_check_format (ibfd, bfd_archive))
3801 {
015dc7e1 3802 bool force_output_target;
252b5132
RH
3803 bfd *obfd;
3804
3805 /* bfd_get_target does not return the correct value until
f7433f01 3806 bfd_check_format succeeds. */
252b5132 3807 if (output_target == NULL)
ee873e00
NC
3808 {
3809 output_target = bfd_get_target (ibfd);
015dc7e1 3810 force_output_target = false;
ee873e00
NC
3811 }
3812 else
015dc7e1 3813 force_output_target = true;
252b5132 3814
365f5fb6
SP
3815 if (ofd >= 0)
3816 obfd = bfd_fdopenw (output_filename, output_target, ofd);
3817 else
3818 obfd = bfd_openw (output_filename, output_target);
3819
252b5132 3820 if (obfd == NULL)
2db6cde7 3821 {
365f5fb6 3822 close (ofd);
2db6cde7
NS
3823 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3824 status = 1;
3825 return;
3826 }
f2032b67
AM
3827
3828 if (gnu_debuglink_filename != NULL)
3829 {
3830 non_fatal (_("--add-gnu-debuglink ignored for archive %s"),
3831 bfd_get_filename (ibfd));
3832 gnu_debuglink_filename = NULL;
3833 }
3834
0408dee6
DK
3835 /* This is a no-op on non-Coff targets. */
3836 set_long_section_mode (obfd, ibfd, long_section_names);
252b5132 3837
8b31b6c4 3838 copy_archive (ibfd, obfd, output_target, force_output_target, input_arch);
252b5132 3839 }
49c12576 3840 else if (bfd_check_format_matches (ibfd, bfd_object, &obj_matching))
252b5132
RH
3841 {
3842 bfd *obfd;
49c12576 3843 do_copy:
950d48e7 3844
252b5132 3845 /* bfd_get_target does not return the correct value until
f7433f01 3846 bfd_check_format succeeds. */
252b5132
RH
3847 if (output_target == NULL)
3848 output_target = bfd_get_target (ibfd);
3849
365f5fb6
SP
3850 if (ofd >= 0)
3851 obfd = bfd_fdopenw (output_filename, output_target, ofd);
3852 else
3853 obfd = bfd_openw (output_filename, output_target);
3854
252b5132 3855 if (obfd == NULL)
2db6cde7 3856 {
365f5fb6 3857 close (ofd);
2db6cde7
NS
3858 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3859 status = 1;
3860 return;
3861 }
365f5fb6 3862
0408dee6
DK
3863 /* This is a no-op on non-Coff targets. */
3864 set_long_section_mode (obfd, ibfd, long_section_names);
252b5132 3865
8b31b6c4 3866 if (! copy_object (ibfd, obfd, input_arch))
a580b8e0 3867 status = 1;
252b5132 3868
063bb025
NC
3869 /* PR 17512: file: 0f15796a.
3870 If the file could not be copied it may not be in a writeable
3871 state. So use bfd_close_all_done to avoid the possibility of
3872 writing uninitialised data into the file. */
3873 if (! (status ? bfd_close_all_done (obfd) : bfd_close (obfd)))
8d8e0703
AM
3874 {
3875 status = 1;
3876 bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
3877 return;
3878 }
252b5132
RH
3879
3880 if (!bfd_close (ibfd))
8d8e0703
AM
3881 {
3882 status = 1;
3883 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
3884 return;
3885 }
252b5132
RH
3886 }
3887 else
3888 {
49c12576
AM
3889 bfd_error_type obj_error = bfd_get_error ();
3890 bfd_error_type core_error;
b34976b6 3891
49c12576
AM
3892 if (bfd_check_format_matches (ibfd, bfd_core, &core_matching))
3893 {
3894 /* This probably can't happen.. */
3895 if (obj_error == bfd_error_file_ambiguously_recognized)
3896 free (obj_matching);
3897 goto do_copy;
3898 }
3899
3900 core_error = bfd_get_error ();
3901 /* Report the object error in preference to the core error. */
3902 if (obj_error != core_error)
3903 bfd_set_error (obj_error);
3904
2db6cde7 3905 bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
57938635 3906
49c12576
AM
3907 if (obj_error == bfd_error_file_ambiguously_recognized)
3908 {
3909 list_matching_formats (obj_matching);
3910 free (obj_matching);
3911 }
3912 if (core_error == bfd_error_file_ambiguously_recognized)
252b5132 3913 {
49c12576
AM
3914 list_matching_formats (core_matching);
3915 free (core_matching);
252b5132 3916 }
57938635 3917
252b5132
RH
3918 status = 1;
3919 }
3920}
3921
594ef5db
NC
3922/* Add a name to the section renaming list. */
3923
3924static void
84e2f313
NC
3925add_section_rename (const char * old_name, const char * new_name,
3926 flagword flags)
594ef5db 3927{
91d6fa6a 3928 section_rename * srename;
594ef5db
NC
3929
3930 /* Check for conflicts first. */
91d6fa6a
NC
3931 for (srename = section_rename_list; srename != NULL; srename = srename->next)
3932 if (strcmp (srename->old_name, old_name) == 0)
594ef5db
NC
3933 {
3934 /* Silently ignore duplicate definitions. */
91d6fa6a
NC
3935 if (strcmp (srename->new_name, new_name) == 0
3936 && srename->flags == flags)
594ef5db 3937 return;
0af11b59 3938
594ef5db
NC
3939 fatal (_("Multiple renames of section %s"), old_name);
3940 }
3941
91d6fa6a 3942 srename = (section_rename *) xmalloc (sizeof (* srename));
594ef5db 3943
91d6fa6a
NC
3944 srename->old_name = old_name;
3945 srename->new_name = new_name;
3946 srename->flags = flags;
3947 srename->next = section_rename_list;
0af11b59 3948
91d6fa6a 3949 section_rename_list = srename;
594ef5db
NC
3950}
3951
3952/* Check the section rename list for a new name of the input section
9cc0123f
AM
3953 called OLD_NAME. Returns the new name if one is found and sets
3954 RETURNED_FLAGS if non-NULL to the flags to be used for this section. */
594ef5db
NC
3955
3956static const char *
9cc0123f 3957find_section_rename (const char *old_name, flagword *returned_flags)
594ef5db 3958{
9cc0123f 3959 const section_rename *srename;
594ef5db 3960
91d6fa6a
NC
3961 for (srename = section_rename_list; srename != NULL; srename = srename->next)
3962 if (strcmp (srename->old_name, old_name) == 0)
594ef5db 3963 {
9cc0123f
AM
3964 if (returned_flags != NULL && srename->flags != (flagword) -1)
3965 *returned_flags = srename->flags;
594ef5db 3966
91d6fa6a 3967 return srename->new_name;
594ef5db
NC
3968 }
3969
3970 return old_name;
3971}
3972
80fccad2
BW
3973/* Once each of the sections is copied, we may still need to do some
3974 finalization work for private section headers. Do that here. */
3975
3976static void
3977setup_bfd_headers (bfd *ibfd, bfd *obfd)
3978{
80fccad2
BW
3979 /* Allow the BFD backend to copy any private data it understands
3980 from the input section to the output section. */
3981 if (! bfd_copy_private_header_data (ibfd, obfd))
3982 {
2db6cde7
NS
3983 status = 1;
3984 bfd_nonfatal_message (NULL, ibfd, NULL,
8d8e0703 3985 _("error in private header data"));
2db6cde7 3986 return;
80fccad2
BW
3987 }
3988
3989 /* All went well. */
3990 return;
80fccad2
BW
3991}
3992
594ef5db
NC
3993/* Create a section in OBFD with the same
3994 name and attributes as ISECTION in IBFD. */
252b5132
RH
3995
3996static void
84e2f313 3997setup_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
252b5132 3998{
3f5e193b 3999 bfd *obfd = (bfd *) obfdarg;
252b5132
RH
4000 struct section_list *p;
4001 sec_ptr osection;
4002 bfd_size_type size;
4003 bfd_vma vma;
4004 bfd_vma lma;
4005 flagword flags;
1a89cc7d 4006 const char *err;
594ef5db 4007 const char * name;
a0dcf297 4008 const char * new_name;
d7fb0dd2 4009 char *prefix = NULL;
015dc7e1 4010 bool make_nobits;
fa463e9f 4011 unsigned int alignment;
0af11b59 4012
2593f09a 4013 if (is_strip_section (ibfd, isection))
252b5132
RH
4014 return;
4015
594ef5db 4016 /* Get the, possibly new, name of the output section. */
fd361982
AM
4017 name = bfd_section_name (isection);
4018 flags = bfd_section_flags (isection);
dd68a12b
AM
4019 if (bfd_get_flavour (ibfd) != bfd_get_flavour (obfd))
4020 {
4021 flags &= bfd_applicable_section_flags (ibfd);
4022 flags &= bfd_applicable_section_flags (obfd);
4023 }
a0dcf297
NC
4024 new_name = find_section_rename (name, &flags);
4025 if (new_name != name)
4026 {
4027 name = new_name;
4028 flags = check_new_section_flags (flags, obfd, name);
4029 }
0af11b59 4030
d7fb0dd2 4031 /* Prefix sections. */
dd68a12b
AM
4032 if (prefix_alloc_sections_string
4033 && (bfd_section_flags (isection) & SEC_ALLOC) != 0)
d7fb0dd2
NC
4034 prefix = prefix_alloc_sections_string;
4035 else if (prefix_sections_string)
4036 prefix = prefix_sections_string;
4037
4038 if (prefix)
4039 {
4040 char *n;
4041
3f5e193b 4042 n = (char *) xmalloc (strlen (prefix) + strlen (name) + 1);
d7fb0dd2
NC
4043 strcpy (n, prefix);
4044 strcat (n, name);
4045 name = n;
4046 }
66491ebc 4047
015dc7e1 4048 make_nobits = false;
2e62b721 4049
015dc7e1 4050 p = find_section_list (bfd_section_name (isection), false,
2e62b721
NC
4051 SECTION_CONTEXT_SET_FLAGS);
4052 if (p != NULL)
a0dcf297
NC
4053 {
4054 flags = p->flags | (flags & (SEC_HAS_CONTENTS | SEC_RELOC));
4055 flags = check_new_section_flags (flags, obfd, bfd_section_name (isection));
4056 }
42bb2e33 4057 else if (strip_symbols == STRIP_NONDEBUG
6c67a030 4058 && (flags & (SEC_ALLOC | SEC_GROUP)) != 0
f7433f01 4059 && !is_nondebug_keep_contents_section (ibfd, isection))
66125551 4060 {
6c67a030 4061 flags &= ~(SEC_HAS_CONTENTS | SEC_LOAD | SEC_GROUP);
dd68a12b 4062 if (bfd_get_flavour (obfd) == bfd_target_elf_flavour)
66125551 4063 {
015dc7e1 4064 make_nobits = true;
66125551
AM
4065
4066 /* Twiddle the input section flags so that it seems to
4067 elf.c:copy_private_bfd_data that section flags have not
4068 changed between input and output sections. This hack
4069 prevents wholesale rewriting of the program headers. */
6c67a030 4070 isection->flags &= ~(SEC_HAS_CONTENTS | SEC_LOAD | SEC_GROUP);
66125551
AM
4071 }
4072 }
551b43fd
AM
4073
4074 osection = bfd_make_section_anyway_with_flags (obfd, name, flags);
57938635 4075
252b5132
RH
4076 if (osection == NULL)
4077 {
2db6cde7 4078 err = _("failed to create output section");
252b5132
RH
4079 goto loser;
4080 }
4081
66125551 4082 if (make_nobits)
551b43fd
AM
4083 elf_section_type (osection) = SHT_NOBITS;
4084
fd361982 4085 size = bfd_section_size (isection);
88988473 4086 size = bfd_convert_section_size (ibfd, isection, obfd, size);
252b5132 4087 if (copy_byte >= 0)
b7dd81f7 4088 size = (size + interleave - 1) / interleave * copy_width;
d3e52d40
RS
4089 else if (extract_symbol)
4090 size = 0;
fd361982 4091 if (!bfd_set_section_size (osection, size))
252b5132 4092 {
2db6cde7 4093 err = _("failed to set size");
252b5132
RH
4094 goto loser;
4095 }
57938635 4096
fd361982 4097 vma = bfd_section_vma (isection);
015dc7e1 4098 p = find_section_list (bfd_section_name (isection), false,
2e62b721
NC
4099 SECTION_CONTEXT_ALTER_VMA | SECTION_CONTEXT_SET_VMA);
4100 if (p != NULL)
4101 {
4102 if (p->context & SECTION_CONTEXT_SET_VMA)
4103 vma = p->vma_val;
4104 else
4105 vma += p->vma_val;
4106 }
252b5132
RH
4107 else
4108 vma += change_section_address;
57938635 4109
fd361982 4110 if (!bfd_set_section_vma (osection, vma))
252b5132 4111 {
2db6cde7 4112 err = _("failed to set vma");
252b5132
RH
4113 goto loser;
4114 }
4115
4116 lma = isection->lma;
015dc7e1 4117 p = find_section_list (bfd_section_name (isection), false,
2e62b721
NC
4118 SECTION_CONTEXT_ALTER_LMA | SECTION_CONTEXT_SET_LMA);
4119 if (p != NULL)
252b5132 4120 {
2e62b721 4121 if (p->context & SECTION_CONTEXT_ALTER_LMA)
252b5132 4122 lma += p->lma_val;
252b5132 4123 else
2e62b721 4124 lma = p->lma_val;
252b5132
RH
4125 }
4126 else
4127 lma += change_section_address;
57938635 4128
237dcb53 4129 osection->lma = lma;
252b5132 4130
015dc7e1 4131 p = find_section_list (bfd_section_name (isection), false,
fa463e9f
N
4132 SECTION_CONTEXT_SET_ALIGNMENT);
4133 if (p != NULL)
4134 alignment = p->alignment;
4135 else
fd361982 4136 alignment = bfd_section_alignment (isection);
82ef9cad 4137
252b5132
RH
4138 /* FIXME: This is probably not enough. If we change the LMA we
4139 may have to recompute the header for the file as well. */
fd361982 4140 if (!bfd_set_section_alignment (osection, alignment))
252b5132 4141 {
2db6cde7 4142 err = _("failed to set alignment");
252b5132
RH
4143 goto loser;
4144 }
4145
bc408b8a
JJ
4146 /* Copy merge entity size. */
4147 osection->entsize = isection->entsize;
4148
f6fe1ccd
L
4149 /* Copy compress status. */
4150 osection->compress_status = isection->compress_status;
4151
252b5132
RH
4152 /* This used to be mangle_section; we do here to avoid using
4153 bfd_get_section_by_name since some formats allow multiple
4154 sections with the same name. */
4155 isection->output_section = osection;
237dcb53 4156 isection->output_offset = 0;
d3e52d40 4157
119f4245
AM
4158 if ((isection->flags & SEC_GROUP) != 0)
4159 {
4160 asymbol *gsym = group_signature (isection);
4161
4162 if (gsym != NULL)
4163 {
4164 gsym->flags |= BSF_KEEP;
dd68a12b 4165 if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
119f4245
AM
4166 elf_group_id (isection) = gsym;
4167 }
4168 }
4169
252b5132
RH
4170 /* Allow the BFD backend to copy any private data it understands
4171 from the input section to the output section. */
42bb2e33 4172 if (!bfd_copy_private_section_data (ibfd, isection, obfd, osection))
252b5132 4173 {
2db6cde7 4174 err = _("failed to copy private data");
252b5132
RH
4175 goto loser;
4176 }
4177
594ef5db 4178 /* All went well. */
252b5132
RH
4179 return;
4180
f7433f01 4181 loser:
252b5132 4182 status = 1;
2db6cde7 4183 bfd_nonfatal_message (NULL, obfd, osection, err);
252b5132
RH
4184}
4185
c3989150 4186/* Return TRUE if input section ISECTION should be skipped. */
252b5132 4187
015dc7e1
AM
4188static bool
4189skip_section (bfd *ibfd, sec_ptr isection, bool skip_copy)
252b5132 4190{
252b5132
RH
4191 sec_ptr osection;
4192 bfd_size_type size;
dc156bc0 4193 flagword flags;
252b5132 4194
594ef5db
NC
4195 /* If we have already failed earlier on,
4196 do not keep on generating complaints now. */
252b5132 4197 if (status != 0)
015dc7e1 4198 return true;
c3989150
L
4199
4200 if (extract_symbol)
015dc7e1 4201 return true;
57938635 4202
2593f09a 4203 if (is_strip_section (ibfd, isection))
015dc7e1 4204 return true;
252b5132 4205
acf1419f 4206 if (is_update_section (ibfd, isection))
015dc7e1 4207 return true;
acf1419f 4208
9ef920e9
NC
4209 /* When merging a note section we skip the copying of the contents,
4210 but not the copying of the relocs associated with the contents. */
5c49f2cd 4211 if (skip_copy && is_mergeable_note_section (ibfd, isection))
015dc7e1 4212 return true;
9ef920e9 4213
fd361982 4214 flags = bfd_section_flags (isection);
dc156bc0 4215 if ((flags & SEC_GROUP) != 0)
015dc7e1 4216 return true;
dc156bc0 4217
252b5132 4218 osection = isection->output_section;
fd361982 4219 size = bfd_section_size (isection);
252b5132
RH
4220
4221 if (size == 0 || osection == 0)
015dc7e1 4222 return true;
252b5132 4223
015dc7e1 4224 return false;
c3989150
L
4225}
4226
d3e5f6c8
AB
4227/* Add section SECTION_PATTERN to the list of sections that will have their
4228 relocations removed. */
4229
4230static void
4231handle_remove_relocations_option (const char *section_pattern)
4232{
015dc7e1 4233 find_section_list (section_pattern, true, SECTION_CONTEXT_REMOVE_RELOCS);
d3e5f6c8
AB
4234}
4235
4236/* Return TRUE if ISECTION from IBFD should have its relocations removed,
4237 otherwise return FALSE. If the user has requested that relocations be
4238 removed from a section that does not have relocations then this
4239 function will still return TRUE. */
4240
015dc7e1 4241static bool
d3e5f6c8
AB
4242discard_relocations (bfd *ibfd ATTRIBUTE_UNUSED, asection *isection)
4243{
015dc7e1 4244 return (find_section_list (bfd_section_name (isection), false,
d3e5f6c8
AB
4245 SECTION_CONTEXT_REMOVE_RELOCS) != NULL);
4246}
4247
4248/* Wrapper for dealing with --remove-section (-R) command line arguments.
4249 A special case is detected here, if the user asks to remove a relocation
c12d9fa2 4250 section (one starting with ".rela" or ".rel") then this removal must
f9853190 4251 be done using a different technique in a relocatable object. */
d3e5f6c8
AB
4252
4253static void
4254handle_remove_section_option (const char *section_pattern)
4255{
015dc7e1 4256 find_section_list (section_pattern, true, SECTION_CONTEXT_REMOVE);
3f3328b8 4257 if (startswith (section_pattern, ".rel"))
c12d9fa2
AM
4258 {
4259 section_pattern += 4;
4260 if (*section_pattern == 'a')
4261 section_pattern++;
4262 if (*section_pattern)
4263 handle_remove_relocations_option (section_pattern);
4264 }
015dc7e1 4265 sections_removed = true;
d3e5f6c8
AB
4266}
4267
c3989150
L
4268/* Copy relocations in input section ISECTION of IBFD to an output
4269 section with the same name in OBFDARG. If stripping then don't
4270 copy any relocation info. */
4271
4272static void
4273copy_relocations_in_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
4274{
4275 bfd *obfd = (bfd *) obfdarg;
4276 long relsize;
4277 arelent **relpp;
4278 long relcount;
4279 sec_ptr osection;
4280
015dc7e1 4281 if (skip_section (ibfd, isection, false))
237dcb53
AM
4282 return;
4283
c3989150 4284 osection = isection->output_section;
2593f09a 4285
96109726 4286 /* Core files and DWO files do not need to be relocated. */
d3e5f6c8
AB
4287 if (bfd_get_format (obfd) == bfd_core
4288 || strip_symbols == STRIP_NONDWO
4289 || discard_relocations (ibfd, isection))
4dd67f29
MS
4290 relsize = 0;
4291 else
ed570f48
NC
4292 {
4293 relsize = bfd_get_reloc_upper_bound (ibfd, isection);
4dd67f29 4294
ed570f48
NC
4295 if (relsize < 0)
4296 {
4297 /* Do not complain if the target does not support relocations. */
4298 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation)
4299 relsize = 0;
4300 else
2db6cde7
NS
4301 {
4302 status = 1;
4303 bfd_nonfatal_message (NULL, ibfd, isection, NULL);
4304 return;
4305 }
ed570f48
NC
4306 }
4307 }
57938635 4308
252b5132 4309 if (relsize == 0)
96109726
CC
4310 {
4311 bfd_set_reloc (obfd, osection, NULL, 0);
4312 osection->flags &= ~SEC_RELOC;
4313 }
252b5132
RH
4314 else
4315 {
2d054e6b 4316 if (isection->orelocation != NULL)
2db6cde7 4317 {
2d054e6b
NC
4318 /* Some other function has already set up the output relocs
4319 for us, so scan those instead of the default relocs. */
4320 relcount = isection->reloc_count;
4321 relpp = isection->orelocation;
4322 }
4323 else
4324 {
4325 relpp = (arelent **) xmalloc (relsize);
4326 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, isympp);
4327 if (relcount < 0)
4328 {
4329 status = 1;
4330 bfd_nonfatal_message (NULL, ibfd, isection,
4331 _("relocation count is negative"));
4a322448 4332 free (relpp);
2d054e6b
NC
4333 return;
4334 }
2db6cde7 4335 }
57938635 4336
252b5132
RH
4337 if (strip_symbols == STRIP_ALL)
4338 {
4339 /* Remove relocations which are not in
0af11b59 4340 keep_strip_specific_list. */
252b5132
RH
4341 arelent **temp_relpp;
4342 long temp_relcount = 0;
4343 long i;
57938635 4344
3f5e193b 4345 temp_relpp = (arelent **) xmalloc (relsize);
252b5132 4346 for (i = 0; i < relcount; i++)
86eafac0
NC
4347 {
4348 /* PR 17512: file: 9e907e0c. */
f507bebf
NC
4349 if (relpp[i]->sym_ptr_ptr
4350 /* PR 20096 */
4351 && * relpp[i]->sym_ptr_ptr)
86eafac0
NC
4352 if (is_specified_symbol (bfd_asymbol_name (*relpp[i]->sym_ptr_ptr),
4353 keep_specific_htab))
4354 temp_relpp [temp_relcount++] = relpp [i];
4355 }
252b5132 4356 relcount = temp_relcount;
4a322448 4357 if (relpp != isection->orelocation)
2d054e6b 4358 free (relpp);
252b5132
RH
4359 relpp = temp_relpp;
4360 }
e0c60db2 4361
d3ba0551 4362 bfd_set_reloc (obfd, osection, relcount == 0 ? NULL : relpp, relcount);
f0312d39 4363 if (relcount == 0)
c3989150
L
4364 {
4365 osection->flags &= ~SEC_RELOC;
4a322448
AM
4366 if (relpp != isection->orelocation)
4367 free (relpp);
c3989150 4368 }
252b5132 4369 }
c3989150
L
4370}
4371
4372/* Copy the data of input section ISECTION of IBFD
4373 to an output section with the same name in OBFD. */
4374
4375static void
4376copy_section (bfd *ibfd, sec_ptr isection, void *obfdarg)
4377{
4378 bfd *obfd = (bfd *) obfdarg;
4379 struct section_list *p;
4380 sec_ptr osection;
4381 bfd_size_type size;
4382
015dc7e1 4383 if (skip_section (ibfd, isection, true))
c3989150
L
4384 return;
4385
4386 osection = isection->output_section;
88988473 4387 /* The output SHF_COMPRESSED section size is different from input if
cbd44e24
L
4388 ELF classes of input and output aren't the same. We can't use
4389 the output section size since --interleave will shrink the output
4390 section. Size will be updated if the section is converted. */
fd361982 4391 size = bfd_section_size (isection);
c3989150 4392
fd361982
AM
4393 if (bfd_section_flags (isection) & SEC_HAS_CONTENTS
4394 && bfd_section_flags (osection) & SEC_HAS_CONTENTS)
252b5132 4395 {
4a114e3e 4396 bfd_byte *memhunk = NULL;
252b5132 4397
88988473
L
4398 if (!bfd_get_full_section_contents (ibfd, isection, &memhunk)
4399 || !bfd_convert_section_contents (ibfd, isection, obfd,
cbd44e24 4400 &memhunk, &size))
2db6cde7
NS
4401 {
4402 status = 1;
4403 bfd_nonfatal_message (NULL, ibfd, isection, NULL);
848ac659 4404 free (memhunk);
2db6cde7
NS
4405 return;
4406 }
252b5132 4407
9e48b4c6
NC
4408 if (reverse_bytes)
4409 {
4410 /* We don't handle leftover bytes (too many possible behaviors,
4411 and we don't know what the user wants). The section length
4412 must be a multiple of the number of bytes to swap. */
4413 if ((size % reverse_bytes) == 0)
4414 {
4415 unsigned long i, j;
4416 bfd_byte b;
4417
4418 for (i = 0; i < size; i += reverse_bytes)
4419 for (j = 0; j < (unsigned long)(reverse_bytes / 2); j++)
4420 {
4421 bfd_byte *m = (bfd_byte *) memhunk;
4422
4423 b = m[i + j];
4424 m[i + j] = m[(i + reverse_bytes) - (j + 1)];
4425 m[(i + reverse_bytes) - (j + 1)] = b;
4426 }
4427 }
4428 else
4429 /* User must pad the section up in order to do this. */
4430 fatal (_("cannot reverse bytes: length of section %s must be evenly divisible by %d"),
fd361982 4431 bfd_section_name (isection), reverse_bytes);
9e48b4c6
NC
4432 }
4433
57938635 4434 if (copy_byte >= 0)
5e675b72
AM
4435 {
4436 /* Keep only every `copy_byte'th byte in MEMHUNK. */
2f01ffbf 4437 char *from = (char *) memhunk + copy_byte;
3f5e193b 4438 char *to = (char *) memhunk;
2f01ffbf 4439 char *end = (char *) memhunk + size;
b7dd81f7 4440 int i;
5e675b72 4441
1c9c7ce0
JW
4442 /* If the section address is not exactly divisible by the interleave,
4443 then we must bias the from address. If the copy_byte is less than
4444 the bias, then we must skip forward one interleave, and increment
4445 the final lma. */
4446 int extra = isection->lma % interleave;
4447 from -= extra;
4448 if (copy_byte < extra)
4449 from += interleave;
4450
5e675b72 4451 for (; from < end; from += interleave)
b7dd81f7 4452 for (i = 0; i < copy_width; i++)
ee7da987
L
4453 {
4454 if (&from[i] >= end)
4455 break;
4456 *to++ = from[i];
4457 }
5e675b72 4458
b7dd81f7 4459 size = (size + interleave - 1 - copy_byte) / interleave * copy_width;
5e675b72 4460 osection->lma /= interleave;
1c9c7ce0
JW
4461 if (copy_byte < extra)
4462 osection->lma++;
5e675b72 4463 }
252b5132 4464
d3ba0551 4465 if (!bfd_set_section_contents (obfd, osection, memhunk, 0, size))
2db6cde7
NS
4466 {
4467 status = 1;
4468 bfd_nonfatal_message (NULL, obfd, osection, NULL);
848ac659 4469 free (memhunk);
2db6cde7
NS
4470 return;
4471 }
252b5132
RH
4472 free (memhunk);
4473 }
fd361982 4474 else if ((p = find_section_list (bfd_section_name (isection),
015dc7e1 4475 false, SECTION_CONTEXT_SET_FLAGS)) != NULL
2e62b721 4476 && (p->flags & SEC_HAS_CONTENTS) != 0)
252b5132 4477 {
d3ba0551 4478 void *memhunk = xmalloc (size);
252b5132
RH
4479
4480 /* We don't permit the user to turn off the SEC_HAS_CONTENTS
4481 flag--they can just remove the section entirely and add it
4482 back again. However, we do permit them to turn on the
4483 SEC_HAS_CONTENTS flag, and take it to mean that the section
4484 contents should be zeroed out. */
4485
4486 memset (memhunk, 0, size);
d3ba0551 4487 if (! bfd_set_section_contents (obfd, osection, memhunk, 0, size))
2db6cde7
NS
4488 {
4489 status = 1;
4490 bfd_nonfatal_message (NULL, obfd, osection, NULL);
848ac659 4491 free (memhunk);
2db6cde7
NS
4492 return;
4493 }
252b5132
RH
4494 free (memhunk);
4495 }
4496}
4497
4498/* Get all the sections. This is used when --gap-fill or --pad-to is
4499 used. */
4500
4501static void
84e2f313 4502get_sections (bfd *obfd ATTRIBUTE_UNUSED, asection *osection, void *secppparg)
252b5132 4503{
3f5e193b 4504 asection ***secppp = (asection ***) secppparg;
252b5132
RH
4505
4506 **secppp = osection;
4507 ++(*secppp);
4508}
4509
6ce9ba7a 4510/* Sort sections by LMA. This is called via qsort, and is used when
252b5132
RH
4511 --gap-fill or --pad-to is used. We force non loadable or empty
4512 sections to the front, where they are easier to ignore. */
4513
4514static int
84e2f313 4515compare_section_lma (const void *arg1, const void *arg2)
252b5132 4516{
6ce9ba7a
AM
4517 const asection *sec1 = *(const asection **) arg1;
4518 const asection *sec2 = *(const asection **) arg2;
252b5132
RH
4519 flagword flags1, flags2;
4520
4521 /* Sort non loadable sections to the front. */
6ce9ba7a
AM
4522 flags1 = sec1->flags;
4523 flags2 = sec2->flags;
252b5132
RH
4524 if ((flags1 & SEC_HAS_CONTENTS) == 0
4525 || (flags1 & SEC_LOAD) == 0)
4526 {
4527 if ((flags2 & SEC_HAS_CONTENTS) != 0
4528 && (flags2 & SEC_LOAD) != 0)
4529 return -1;
4530 }
4531 else
4532 {
4533 if ((flags2 & SEC_HAS_CONTENTS) == 0
4534 || (flags2 & SEC_LOAD) == 0)
4535 return 1;
4536 }
4537
4538 /* Sort sections by LMA. */
6ce9ba7a 4539 if (sec1->lma > sec2->lma)
252b5132 4540 return 1;
6ce9ba7a 4541 if (sec1->lma < sec2->lma)
252b5132
RH
4542 return -1;
4543
4544 /* Sort sections with the same LMA by size. */
6ce9ba7a 4545 if (bfd_section_size (sec1) > bfd_section_size (sec2))
252b5132 4546 return 1;
6ce9ba7a 4547 if (bfd_section_size (sec1) < bfd_section_size (sec2))
252b5132
RH
4548 return -1;
4549
6ce9ba7a
AM
4550 if (sec1->id > sec2->id)
4551 return 1;
4552 if (sec1->id < sec2->id)
4553 return -1;
252b5132
RH
4554 return 0;
4555}
4556
4557/* Mark all the symbols which will be used in output relocations with
4558 the BSF_KEEP flag so that those symbols will not be stripped.
4559
4560 Ignore relocations which will not appear in the output file. */
4561
4562static void
84e2f313 4563mark_symbols_used_in_relocations (bfd *ibfd, sec_ptr isection, void *symbolsarg)
252b5132 4564{
3f5e193b 4565 asymbol **symbols = (asymbol **) symbolsarg;
252b5132
RH
4566 long relsize;
4567 arelent **relpp;
4568 long relcount, i;
4569
4570 /* Ignore an input section with no corresponding output section. */
4571 if (isection->output_section == NULL)
4572 return;
4573
4574 relsize = bfd_get_reloc_upper_bound (ibfd, isection);
4575 if (relsize < 0)
ed570f48
NC
4576 {
4577 /* Do not complain if the target does not support relocations. */
4578 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation)
4579 return;
4580 bfd_fatal (bfd_get_filename (ibfd));
4581 }
252b5132
RH
4582
4583 if (relsize == 0)
4584 return;
4585
3f5e193b 4586 relpp = (arelent **) xmalloc (relsize);
252b5132
RH
4587 relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, symbols);
4588 if (relcount < 0)
4589 bfd_fatal (bfd_get_filename (ibfd));
4590
ec5d57d5
NC
4591 /* Examine each symbol used in a relocation. If it's not one of the
4592 special bfd section symbols, then mark it with BSF_KEEP. */
252b5132
RH
4593 for (i = 0; i < relcount; i++)
4594 {
8b929e42 4595 /* See PRs 20923 and 20930 for reproducers for the NULL tests. */
88add6d8 4596 if (relpp[i]->sym_ptr_ptr != NULL
8b929e42 4597 && * relpp[i]->sym_ptr_ptr != NULL
88add6d8 4598 && *relpp[i]->sym_ptr_ptr != bfd_com_section_ptr->symbol
ec5d57d5
NC
4599 && *relpp[i]->sym_ptr_ptr != bfd_abs_section_ptr->symbol
4600 && *relpp[i]->sym_ptr_ptr != bfd_und_section_ptr->symbol)
4601 (*relpp[i]->sym_ptr_ptr)->flags |= BSF_KEEP;
252b5132
RH
4602 }
4603
67965ba2 4604 free (relpp);
252b5132
RH
4605}
4606
4607/* Write out debugging information. */
4608
015dc7e1 4609static bool
84e2f313
NC
4610write_debugging_info (bfd *obfd, void *dhandle,
4611 long *symcountp ATTRIBUTE_UNUSED,
4612 asymbol ***symppp ATTRIBUTE_UNUSED)
252b5132 4613{
252b5132
RH
4614 if (bfd_get_flavour (obfd) == bfd_target_coff_flavour
4615 || bfd_get_flavour (obfd) == bfd_target_elf_flavour)
4616 {
1d97232a 4617 bfd_byte *syms, *strings = NULL;
252b5132
RH
4618 bfd_size_type symsize, stringsize;
4619 asection *stabsec, *stabstrsec;
551b43fd 4620 flagword flags;
252b5132
RH
4621
4622 if (! write_stabs_in_sections_debugging_info (obfd, dhandle, &syms,
4623 &symsize, &strings,
4624 &stringsize))
015dc7e1 4625 return false;
252b5132 4626
551b43fd
AM
4627 flags = SEC_HAS_CONTENTS | SEC_READONLY | SEC_DEBUGGING;
4628 stabsec = bfd_make_section_with_flags (obfd, ".stab", flags);
4629 stabstrsec = bfd_make_section_with_flags (obfd, ".stabstr", flags);
252b5132
RH
4630 if (stabsec == NULL
4631 || stabstrsec == NULL
fd361982
AM
4632 || !bfd_set_section_size (stabsec, symsize)
4633 || !bfd_set_section_size (stabstrsec, stringsize)
4634 || !bfd_set_section_alignment (stabsec, 2)
4635 || !bfd_set_section_alignment (stabstrsec, 0))
252b5132 4636 {
2db6cde7
NS
4637 bfd_nonfatal_message (NULL, obfd, NULL,
4638 _("can't create debugging section"));
1d97232a 4639 free (strings);
015dc7e1 4640 return false;
252b5132
RH
4641 }
4642
4643 /* We can get away with setting the section contents now because
f7433f01
AM
4644 the next thing the caller is going to do is copy over the
4645 real sections. We may someday have to split the contents
4646 setting out of this function. */
d3ba0551
AM
4647 if (! bfd_set_section_contents (obfd, stabsec, syms, 0, symsize)
4648 || ! bfd_set_section_contents (obfd, stabstrsec, strings, 0,
4649 stringsize))
252b5132 4650 {
2db6cde7
NS
4651 bfd_nonfatal_message (NULL, obfd, NULL,
4652 _("can't set debugging section contents"));
1d97232a 4653 free (strings);
015dc7e1 4654 return false;
252b5132
RH
4655 }
4656
015dc7e1 4657 return true;
252b5132
RH
4658 }
4659
2db6cde7
NS
4660 bfd_nonfatal_message (NULL, obfd, NULL,
4661 _("don't know how to write debugging information for %s"),
f7433f01 4662 bfd_get_target (obfd));
015dc7e1 4663 return false;
252b5132
RH
4664}
4665
955d0b3b
RM
4666/* If neither -D nor -U was specified explicitly,
4667 then use the configured default. */
4668static void
4669default_deterministic (void)
4670{
4671 if (deterministic < 0)
4672 deterministic = DEFAULT_AR_DETERMINISTIC;
4673}
4674
252b5132 4675static int
84e2f313 4676strip_main (int argc, char *argv[])
252b5132 4677{
7c29036b
NC
4678 char *input_target = NULL;
4679 char *output_target = NULL;
015dc7e1
AM
4680 bool show_version = false;
4681 bool formats_info = false;
7c29036b
NC
4682 int c;
4683 int i;
252b5132 4684 char *output_file = NULL;
015dc7e1 4685 bool merge_notes_set = false;
1d15e434 4686
ea8fae9f 4687 while ((c = getopt_long (argc, argv, "I:O:F:K:MN:R:o:sSpdgxXHhVvwDU",
252b5132
RH
4688 strip_options, (int *) 0)) != EOF)
4689 {
4690 switch (c)
4691 {
4692 case 'I':
4693 input_target = optarg;
4694 break;
4695 case 'O':
4696 output_target = optarg;
4697 break;
4698 case 'F':
4699 input_target = output_target = optarg;
4700 break;
4701 case 'R':
d3e5f6c8
AB
4702 handle_remove_section_option (optarg);
4703 break;
64f52b3e 4704 case OPTION_KEEP_SECTION:
015dc7e1 4705 find_section_list (optarg, true, SECTION_CONTEXT_KEEP);
64f52b3e 4706 break;
d3e5f6c8
AB
4707 case OPTION_REMOVE_RELOCS:
4708 handle_remove_relocations_option (optarg);
252b5132
RH
4709 break;
4710 case 's':
4711 strip_symbols = STRIP_ALL;
4712 break;
4713 case 'S':
4714 case 'g':
db4f6831 4715 case 'd': /* Historic BSD alias for -g. Used by early NetBSD. */
252b5132
RH
4716 strip_symbols = STRIP_DEBUG;
4717 break;
96109726
CC
4718 case OPTION_STRIP_DWO:
4719 strip_symbols = STRIP_DWO;
4720 break;
252b5132
RH
4721 case OPTION_STRIP_UNNEEDED:
4722 strip_symbols = STRIP_UNNEEDED;
4723 break;
4724 case 'K':
047c9024 4725 add_specific_symbol (optarg, keep_specific_htab);
252b5132 4726 break;
1d15e434 4727 case 'M':
015dc7e1
AM
4728 merge_notes = true;
4729 merge_notes_set = true;
1d15e434
NC
4730 break;
4731 case OPTION_NO_MERGE_NOTES:
015dc7e1
AM
4732 merge_notes = false;
4733 merge_notes_set = true;
1d15e434 4734 break;
252b5132 4735 case 'N':
047c9024 4736 add_specific_symbol (optarg, strip_specific_htab);
252b5132
RH
4737 break;
4738 case 'o':
4739 output_file = optarg;
4740 break;
4741 case 'p':
015dc7e1 4742 preserve_dates = true;
252b5132 4743 break;
2e30cb57 4744 case 'D':
015dc7e1 4745 deterministic = true;
2e30cb57 4746 break;
955d0b3b 4747 case 'U':
015dc7e1 4748 deterministic = false;
955d0b3b 4749 break;
252b5132
RH
4750 case 'x':
4751 discard_locals = LOCALS_ALL;
4752 break;
4753 case 'X':
4754 discard_locals = LOCALS_START_L;
4755 break;
4756 case 'v':
015dc7e1 4757 verbose = true;
252b5132
RH
4758 break;
4759 case 'V':
015dc7e1 4760 show_version = true;
252b5132 4761 break;
7c29036b 4762 case OPTION_FORMATS_INFO:
015dc7e1 4763 formats_info = true;
7c29036b 4764 break;
ed1653a7
NC
4765 case OPTION_ONLY_KEEP_DEBUG:
4766 strip_symbols = STRIP_NONDEBUG;
4767 break;
1637cd90
JB
4768 case OPTION_KEEP_FILE_SYMBOLS:
4769 keep_file_symbols = 1;
4770 break;
ca0e11aa 4771 case OPTION_KEEP_SECTION_SYMBOLS:
015dc7e1 4772 keep_section_symbols = true;
ca0e11aa 4773 break;
252b5132 4774 case 0:
594ef5db
NC
4775 /* We've been given a long option. */
4776 break;
5fe11841 4777 case 'w':
015dc7e1 4778 wildcard = true;
5fe11841 4779 break;
8b53311e 4780 case 'H':
252b5132
RH
4781 case 'h':
4782 strip_usage (stdout, 0);
4783 default:
4784 strip_usage (stderr, 1);
4785 }
4786 }
4787
1b8dd643
NC
4788 /* If the user has not expressly chosen to merge/not-merge ELF notes
4789 then enable the merging unless we are stripping debug or dwo info. */
4790 if (! merge_notes_set
4791 && (strip_symbols == STRIP_UNDEF
4792 || strip_symbols == STRIP_ALL
4793 || strip_symbols == STRIP_UNNEEDED
4794 || strip_symbols == STRIP_NONDEBUG
4795 || strip_symbols == STRIP_NONDWO))
015dc7e1 4796 merge_notes = true;
1b8dd643 4797
84e2f313
NC
4798 if (formats_info)
4799 {
4800 display_info ();
4801 return 0;
4802 }
c1c0eb9e 4803
252b5132
RH
4804 if (show_version)
4805 print_version ("strip");
4806
955d0b3b
RM
4807 default_deterministic ();
4808
252b5132
RH
4809 /* Default is to strip all symbols. */
4810 if (strip_symbols == STRIP_UNDEF
4811 && discard_locals == LOCALS_UNDEF
047c9024 4812 && htab_elements (strip_specific_htab) == 0)
252b5132
RH
4813 strip_symbols = STRIP_ALL;
4814
d3ba0551 4815 if (output_target == NULL)
252b5132
RH
4816 output_target = input_target;
4817
4818 i = optind;
4819 if (i == argc
4820 || (output_file != NULL && (i + 1) < argc))
4821 strip_usage (stderr, 1);
4822
4823 for (; i < argc; i++)
4824 {
4825 int hold_status = status;
4826 struct stat statbuf;
4827 char *tmpname;
365f5fb6 4828 int tmpfd = -1;
c42c71a1 4829 int copyfd = -1;
252b5132 4830
f24ddbdd 4831 if (get_file_size (argv[i]) < 1)
d68c385b
NC
4832 {
4833 status = 1;
4834 continue;
4835 }
f24ddbdd 4836
8b6efd89
KT
4837 if (output_file == NULL
4838 || filename_cmp (argv[i], output_file) == 0)
c42c71a1
AM
4839 {
4840 tmpname = make_tempname (argv[i], &tmpfd);
4841 if (tmpfd >= 0)
4842 copyfd = dup (tmpfd);
4843 }
12f498a7
NS
4844 else
4845 tmpname = output_file;
252b5132 4846
3685de75 4847 if (tmpname == NULL)
f9c026a8 4848 {
2db6cde7
NS
4849 bfd_nonfatal_message (argv[i], NULL, NULL,
4850 _("could not create temporary file to hold stripped copy"));
f9c026a8
NC
4851 status = 1;
4852 continue;
4853 }
4854
d68c385b 4855 status = 0;
1a1c3b4c
SP
4856 copy_file (argv[i], tmpname, tmpfd, &statbuf, input_target,
4857 output_target, NULL);
252b5132
RH
4858 if (status == 0)
4859 {
d0ecdcdd
AM
4860 const char *oname = output_file ? output_file : argv[i];
4861 status = smart_rename (tmpname, oname, copyfd,
4862 &statbuf, preserve_dates) != 0;
92fac5ec
L
4863 if (status == 0)
4864 status = hold_status;
252b5132
RH
4865 }
4866 else
c42c71a1
AM
4867 {
4868 if (copyfd >= 0)
4869 close (copyfd);
4870 unlink_if_ordinary (tmpname);
4871 }
12f498a7 4872 if (output_file != tmpname)
252b5132
RH
4873 free (tmpname);
4874 }
4875
d68c385b 4876 return status;
252b5132
RH
4877}
4878
92dd4511
L
4879/* Set up PE subsystem. */
4880
4881static void
4882set_pe_subsystem (const char *s)
4883{
4884 const char *version, *subsystem;
4885 size_t i;
4886 static const struct
4887 {
4888 const char *name;
4889 const char set_def;
4890 const short value;
4891 }
4892 v[] =
4893 {
955d0b3b 4894 { "native", 0, IMAGE_SUBSYSTEM_NATIVE },
92dd4511
L
4895 { "windows", 0, IMAGE_SUBSYSTEM_WINDOWS_GUI },
4896 { "console", 0, IMAGE_SUBSYSTEM_WINDOWS_CUI },
4897 { "posix", 0, IMAGE_SUBSYSTEM_POSIX_CUI },
4898 { "wince", 0, IMAGE_SUBSYSTEM_WINDOWS_CE_GUI },
4899 { "efi-app", 1, IMAGE_SUBSYSTEM_EFI_APPLICATION },
4900 { "efi-bsd", 1, IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER },
4901 { "efi-rtd", 1, IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER },
d9118602 4902 { "sal-rtd", 1, IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER },
92dd4511
L
4903 { "xbox", 0, IMAGE_SUBSYSTEM_XBOX }
4904 };
4905 short value;
4906 char *copy;
4907 int set_def = -1;
4908
4909 /* Check for the presence of a version number. */
4910 version = strchr (s, ':');
4911 if (version == NULL)
4912 subsystem = s;
4913 else
4914 {
4915 int len = version - s;
4916 copy = xstrdup (s);
4917 subsystem = copy;
4918 copy[len] = '\0';
4919 version = copy + 1 + len;
4920 pe_major_subsystem_version = strtoul (version, &copy, 0);
4921 if (*copy == '.')
4922 pe_minor_subsystem_version = strtoul (copy + 1, &copy, 0);
4923 if (*copy != '\0')
4924 non_fatal (_("%s: bad version in PE subsystem"), s);
4925 }
4926
4927 /* Check for numeric subsystem. */
4928 value = (short) strtol (subsystem, &copy, 0);
4929 if (*copy == '\0')
4930 {
4931 for (i = 0; i < ARRAY_SIZE (v); i++)
4932 if (v[i].value == value)
4933 {
4934 pe_subsystem = value;
4935 set_def = v[i].set_def;
4936 break;
4937 }
4938 }
4939 else
4940 {
4941 /* Search for subsystem by name. */
4942 for (i = 0; i < ARRAY_SIZE (v); i++)
4943 if (strcmp (subsystem, v[i].name) == 0)
4944 {
4945 pe_subsystem = v[i].value;
4946 set_def = v[i].set_def;
4947 break;
4948 }
4949 }
4950
4951 switch (set_def)
4952 {
4953 case -1:
4954 fatal (_("unknown PE subsystem: %s"), s);
4955 break;
4956 case 0:
4957 break;
4958 default:
4959 if (pe_file_alignment == (bfd_vma) -1)
4960 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
4961 if (pe_section_alignment == (bfd_vma) -1)
4962 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
4963 break;
4964 }
0cbf3531
MS
4965 if (s != subsystem)
4966 free ((char *) subsystem);
92dd4511
L
4967}
4968
4969/* Convert EFI target to PEI target. */
4970
4971static void
4972convert_efi_target (char *efi)
4973{
4974 efi[0] = 'p';
4975 efi[1] = 'e';
4976 efi[2] = 'i';
4977
4978 if (strcmp (efi + 4, "ia32") == 0)
4979 {
4980 /* Change ia32 to i386. */
4981 efi[5]= '3';
4982 efi[6]= '8';
4983 efi[7]= '6';
4984 }
4985 else if (strcmp (efi + 4, "x86_64") == 0)
4986 {
4987 /* Change x86_64 to x86-64. */
4988 efi[7] = '-';
4989 }
4990}
4991
7173b38a 4992/* Allocate and return a pointer to a struct section_add, initializing the
06b73f41 4993 structure using ARG, a string in the format "sectionname=filename".
7173b38a
AB
4994 The returned structure will have its next pointer set to NEXT. The
4995 OPTION field is the name of the command line option currently being
4996 parsed, and is only used if an error needs to be reported. */
4997
4998static struct section_add *
06b73f41 4999init_section_add (const char *arg,
f7433f01
AM
5000 struct section_add *next,
5001 const char *option)
7173b38a
AB
5002{
5003 struct section_add *pa;
5004 const char *s;
5005
06b73f41 5006 s = strchr (arg, '=');
7173b38a
AB
5007 if (s == NULL)
5008 fatal (_("bad format for %s"), option);
5009
5010 pa = (struct section_add *) xmalloc (sizeof (struct section_add));
06b73f41 5011 pa->name = xstrndup (arg, s - arg);
7173b38a
AB
5012 pa->filename = s + 1;
5013 pa->next = next;
5014 pa->contents = NULL;
5015 pa->size = 0;
5016
5017 return pa;
5018}
5019
5020/* Load the file specified in PA, allocating memory to hold the file
5021 contents, and store a pointer to the allocated memory in the contents
5022 field of PA. The size field of PA is also updated. All errors call
5023 FATAL. */
5024
5025static void
5026section_add_load_file (struct section_add *pa)
5027{
5028 size_t off, alloc;
5029 FILE *f;
5030
5031 /* We don't use get_file_size so that we can do
5032 --add-section .note.GNU_stack=/dev/null
5033 get_file_size doesn't work on /dev/null. */
5034
5035 f = fopen (pa->filename, FOPEN_RB);
5036 if (f == NULL)
5037 fatal (_("cannot open: %s: %s"),
f7433f01 5038 pa->filename, strerror (errno));
7173b38a
AB
5039
5040 off = 0;
5041 alloc = 4096;
5042 pa->contents = (bfd_byte *) xmalloc (alloc);
5043 while (!feof (f))
5044 {
5045 off_t got;
5046
5047 if (off == alloc)
f7433f01
AM
5048 {
5049 alloc <<= 1;
5050 pa->contents = (bfd_byte *) xrealloc (pa->contents, alloc);
5051 }
7173b38a
AB
5052
5053 got = fread (pa->contents + off, 1, alloc - off, f);
5054 if (ferror (f))
f7433f01 5055 fatal (_("%s: fread failed"), pa->filename);
7173b38a
AB
5056
5057 off += got;
5058 }
5059
5060 pa->size = off;
5061
5062 fclose (f);
5063}
5064
252b5132 5065static int
84e2f313 5066copy_main (int argc, char *argv[])
252b5132 5067{
7c29036b
NC
5068 char *input_filename = NULL;
5069 char *output_filename = NULL;
c1c0eb9e 5070 char *tmpname;
7c29036b
NC
5071 char *input_target = NULL;
5072 char *output_target = NULL;
015dc7e1
AM
5073 bool show_version = false;
5074 bool change_warn = true;
5075 bool formats_info = false;
5076 bool use_globalize = false;
5077 bool use_keep_global = false;
c42c71a1
AM
5078 int c;
5079 int tmpfd = -1;
5080 int copyfd;
252b5132 5081 struct stat statbuf;
8b31b6c4 5082 const bfd_arch_info_type *input_arch = NULL;
252b5132 5083
9ef920e9 5084 while ((c = getopt_long (argc, argv, "b:B:i:I:j:K:MN:s:O:d:F:L:G:R:SpgxXHhVvW:wDU",
252b5132
RH
5085 copy_options, (int *) 0)) != EOF)
5086 {
5087 switch (c)
5088 {
5089 case 'b':
5090 copy_byte = atoi (optarg);
5091 if (copy_byte < 0)
5092 fatal (_("byte number must be non-negative"));
5093 break;
57938635 5094
0af11b59 5095 case 'B':
8b31b6c4
NC
5096 input_arch = bfd_scan_arch (optarg);
5097 if (input_arch == NULL)
5098 fatal (_("architecture %s unknown"), optarg);
0af11b59 5099 break;
43a0748c 5100
252b5132 5101 case 'i':
b7dd81f7
NC
5102 if (optarg)
5103 {
5104 interleave = atoi (optarg);
5105 if (interleave < 1)
5106 fatal (_("interleave must be positive"));
5107 }
5108 else
5109 interleave = 4;
5110 break;
5111
5112 case OPTION_INTERLEAVE_WIDTH:
5113 copy_width = atoi (optarg);
5114 if (copy_width < 1)
5115 fatal(_("interleave width must be positive"));
252b5132 5116 break;
57938635 5117
252b5132
RH
5118 case 'I':
5119 case 's': /* "source" - 'I' is preferred */
5120 input_target = optarg;
5121 break;
57938635 5122
252b5132
RH
5123 case 'O':
5124 case 'd': /* "destination" - 'O' is preferred */
5125 output_target = optarg;
5126 break;
57938635 5127
252b5132
RH
5128 case 'F':
5129 input_target = output_target = optarg;
5130 break;
57938635 5131
f91ea849 5132 case 'j':
015dc7e1
AM
5133 find_section_list (optarg, true, SECTION_CONTEXT_COPY);
5134 sections_copied = true;
f91ea849 5135 break;
57938635 5136
252b5132 5137 case 'R':
d3e5f6c8
AB
5138 handle_remove_section_option (optarg);
5139 break;
5140
64f52b3e 5141 case OPTION_KEEP_SECTION:
015dc7e1 5142 find_section_list (optarg, true, SECTION_CONTEXT_KEEP);
64f52b3e
FS
5143 break;
5144
d3e5f6c8
AB
5145 case OPTION_REMOVE_RELOCS:
5146 handle_remove_relocations_option (optarg);
252b5132 5147 break;
57938635 5148
252b5132
RH
5149 case 'S':
5150 strip_symbols = STRIP_ALL;
5151 break;
57938635 5152
252b5132
RH
5153 case 'g':
5154 strip_symbols = STRIP_DEBUG;
5155 break;
57938635 5156
96109726
CC
5157 case OPTION_STRIP_DWO:
5158 strip_symbols = STRIP_DWO;
5159 break;
5160
252b5132
RH
5161 case OPTION_STRIP_UNNEEDED:
5162 strip_symbols = STRIP_UNNEEDED;
5163 break;
57938635 5164
ed1653a7
NC
5165 case OPTION_ONLY_KEEP_DEBUG:
5166 strip_symbols = STRIP_NONDEBUG;
5167 break;
5168
1637cd90
JB
5169 case OPTION_KEEP_FILE_SYMBOLS:
5170 keep_file_symbols = 1;
5171 break;
5172
2593f09a 5173 case OPTION_ADD_GNU_DEBUGLINK:
9b8bf321 5174 long_section_names = ENABLE ;
2593f09a
NC
5175 gnu_debuglink_filename = optarg;
5176 break;
5177
252b5132 5178 case 'K':
047c9024 5179 add_specific_symbol (optarg, keep_specific_htab);
252b5132 5180 break;
57938635 5181
9ef920e9 5182 case 'M':
015dc7e1 5183 merge_notes = true;
9ef920e9 5184 break;
1d15e434 5185 case OPTION_NO_MERGE_NOTES:
015dc7e1 5186 merge_notes = false;
1d15e434 5187 break;
9ef920e9 5188
252b5132 5189 case 'N':
047c9024 5190 add_specific_symbol (optarg, strip_specific_htab);
252b5132 5191 break;
57938635 5192
bcf32829 5193 case OPTION_STRIP_UNNEEDED_SYMBOL:
047c9024 5194 add_specific_symbol (optarg, strip_unneeded_htab);
bcf32829
JB
5195 break;
5196
252b5132 5197 case 'L':
047c9024 5198 add_specific_symbol (optarg, localize_specific_htab);
252b5132 5199 break;
57938635 5200
7b4a0685 5201 case OPTION_GLOBALIZE_SYMBOL:
015dc7e1 5202 use_globalize = true;
047c9024 5203 add_specific_symbol (optarg, globalize_specific_htab);
7b4a0685
NC
5204 break;
5205
16b2b71c 5206 case 'G':
015dc7e1 5207 use_keep_global = true;
047c9024 5208 add_specific_symbol (optarg, keepglobal_specific_htab);
16b2b71c
NC
5209 break;
5210
252b5132 5211 case 'W':
047c9024 5212 add_specific_symbol (optarg, weaken_specific_htab);
252b5132 5213 break;
57938635 5214
252b5132 5215 case 'p':
015dc7e1 5216 preserve_dates = true;
252b5132 5217 break;
57938635 5218
2e30cb57 5219 case 'D':
015dc7e1 5220 deterministic = true;
2e30cb57
CC
5221 break;
5222
955d0b3b 5223 case 'U':
015dc7e1 5224 deterministic = false;
955d0b3b
RM
5225 break;
5226
5fe11841 5227 case 'w':
015dc7e1 5228 wildcard = true;
5fe11841
NC
5229 break;
5230
252b5132
RH
5231 case 'x':
5232 discard_locals = LOCALS_ALL;
5233 break;
57938635 5234
252b5132
RH
5235 case 'X':
5236 discard_locals = LOCALS_START_L;
5237 break;
57938635 5238
252b5132 5239 case 'v':
015dc7e1 5240 verbose = true;
252b5132 5241 break;
57938635 5242
252b5132 5243 case 'V':
015dc7e1 5244 show_version = true;
252b5132 5245 break;
57938635 5246
7c29036b 5247 case OPTION_FORMATS_INFO:
015dc7e1 5248 formats_info = true;
7c29036b
NC
5249 break;
5250
252b5132 5251 case OPTION_WEAKEN:
015dc7e1 5252 weaken = true;
252b5132 5253 break;
57938635 5254
252b5132 5255 case OPTION_ADD_SECTION:
f7433f01
AM
5256 add_sections = init_section_add (optarg, add_sections,
5257 "--add-section");
5258 section_add_load_file (add_sections);
252b5132 5259 break;
57938635 5260
acf1419f
AB
5261 case OPTION_UPDATE_SECTION:
5262 update_sections = init_section_add (optarg, update_sections,
f7433f01 5263 "--update-section");
acf1419f
AB
5264 section_add_load_file (update_sections);
5265 break;
5266
bbad633b 5267 case OPTION_DUMP_SECTION:
f7433f01
AM
5268 dump_sections = init_section_add (optarg, dump_sections,
5269 "--dump-section");
bbad633b 5270 break;
3aade688 5271
2b35fb28
RH
5272 case OPTION_ADD_SYMBOL:
5273 {
5274 char *s, *t;
5275 struct addsym_node *newsym = xmalloc (sizeof *newsym);
5276
5277 newsym->next = NULL;
5278 s = strchr (optarg, '=');
5279 if (s == NULL)
5280 fatal (_("bad format for %s"), "--add-symbol");
5281 t = strchr (s + 1, ':');
5282
a4f8732b 5283 newsym->symdef = xstrndup (optarg, s - optarg);
2b35fb28
RH
5284 if (t)
5285 {
a4f8732b 5286 newsym->section = xstrndup (s + 1, t - (s + 1));
2b35fb28
RH
5287 newsym->symval = strtol (t + 1, NULL, 0);
5288 }
5289 else
5290 {
5291 newsym->section = NULL;
5292 newsym->symval = strtol (s + 1, NULL, 0);
5293 t = s;
5294 }
5295
5296 t = strchr (t + 1, ',');
f7433f01 5297 newsym->othersym = NULL;
2b35fb28
RH
5298 if (t)
5299 newsym->flags = parse_symflags (t+1, &newsym->othersym);
5300 else
5301 newsym->flags = BSF_GLOBAL;
5302
5303 /* Keep 'othersym' symbols at the front of the list. */
5304 if (newsym->othersym)
5305 {
5306 newsym->next = add_sym_list;
5307 if (!add_sym_list)
5308 add_sym_tail = &newsym->next;
5309 add_sym_list = newsym;
5310 }
5311 else
5312 {
5313 *add_sym_tail = newsym;
5314 add_sym_tail = &newsym->next;
5315 }
5316 add_symbols++;
5317 }
5318 break;
5319
252b5132
RH
5320 case OPTION_CHANGE_START:
5321 change_start = parse_vma (optarg, "--change-start");
5322 break;
57938635 5323
252b5132
RH
5324 case OPTION_CHANGE_SECTION_ADDRESS:
5325 case OPTION_CHANGE_SECTION_LMA:
5326 case OPTION_CHANGE_SECTION_VMA:
5327 {
2e62b721 5328 struct section_list * p;
76d8cf45 5329 unsigned int context = 0;
252b5132
RH
5330 const char *s;
5331 int len;
5332 char *name;
b4c96d0d 5333 char *option = NULL;
252b5132 5334 bfd_vma val;
57938635 5335
252b5132
RH
5336 switch (c)
5337 {
b4c96d0d
ILT
5338 case OPTION_CHANGE_SECTION_ADDRESS:
5339 option = "--change-section-address";
2e62b721 5340 context = SECTION_CONTEXT_ALTER_LMA | SECTION_CONTEXT_ALTER_VMA;
b4c96d0d
ILT
5341 break;
5342 case OPTION_CHANGE_SECTION_LMA:
5343 option = "--change-section-lma";
2e62b721 5344 context = SECTION_CONTEXT_ALTER_LMA;
b4c96d0d
ILT
5345 break;
5346 case OPTION_CHANGE_SECTION_VMA:
5347 option = "--change-section-vma";
2e62b721 5348 context = SECTION_CONTEXT_ALTER_VMA;
b4c96d0d 5349 break;
252b5132 5350 }
57938635 5351
252b5132
RH
5352 s = strchr (optarg, '=');
5353 if (s == NULL)
5354 {
5355 s = strchr (optarg, '+');
5356 if (s == NULL)
5357 {
5358 s = strchr (optarg, '-');
5359 if (s == NULL)
5360 fatal (_("bad format for %s"), option);
5361 }
5362 }
2e62b721
NC
5363 else
5364 {
5365 /* Correct the context. */
5366 switch (c)
5367 {
5368 case OPTION_CHANGE_SECTION_ADDRESS:
5369 context = SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_SET_VMA;
5370 break;
5371 case OPTION_CHANGE_SECTION_LMA:
5372 context = SECTION_CONTEXT_SET_LMA;
5373 break;
5374 case OPTION_CHANGE_SECTION_VMA:
5375 context = SECTION_CONTEXT_SET_VMA;
5376 break;
5377 }
5378 }
252b5132
RH
5379
5380 len = s - optarg;
3f5e193b 5381 name = (char *) xmalloc (len + 1);
252b5132
RH
5382 strncpy (name, optarg, len);
5383 name[len] = '\0';
5384
015dc7e1 5385 p = find_section_list (name, true, context);
252b5132
RH
5386
5387 val = parse_vma (s + 1, option);
2e62b721
NC
5388 if (*s == '-')
5389 val = - val;
57938635 5390
252b5132
RH
5391 switch (c)
5392 {
5393 case OPTION_CHANGE_SECTION_ADDRESS:
2e62b721 5394 p->vma_val = val;
1a0670f3 5395 /* Fall through. */
57938635 5396
252b5132 5397 case OPTION_CHANGE_SECTION_LMA:
2e62b721 5398 p->lma_val = val;
252b5132 5399 break;
57938635 5400
252b5132 5401 case OPTION_CHANGE_SECTION_VMA:
2e62b721 5402 p->vma_val = val;
252b5132
RH
5403 break;
5404 }
5405 }
5406 break;
57938635 5407
252b5132
RH
5408 case OPTION_CHANGE_ADDRESSES:
5409 change_section_address = parse_vma (optarg, "--change-addresses");
5410 change_start = change_section_address;
5411 break;
57938635 5412
252b5132 5413 case OPTION_CHANGE_WARNINGS:
015dc7e1 5414 change_warn = true;
252b5132 5415 break;
57938635 5416
252b5132 5417 case OPTION_CHANGE_LEADING_CHAR:
015dc7e1 5418 change_leading_char = true;
252b5132 5419 break;
57938635 5420
4a114e3e 5421 case OPTION_COMPRESS_DEBUG_SECTIONS:
151411f8
L
5422 if (optarg)
5423 {
5424 if (strcasecmp (optarg, "none") == 0)
5425 do_debug_sections = decompress;
5426 else if (strcasecmp (optarg, "zlib") == 0)
5427 do_debug_sections = compress_zlib;
5428 else if (strcasecmp (optarg, "zlib-gnu") == 0)
5429 do_debug_sections = compress_gnu_zlib;
5430 else if (strcasecmp (optarg, "zlib-gabi") == 0)
5431 do_debug_sections = compress_gabi_zlib;
5432 else
5433 fatal (_("unrecognized --compress-debug-sections type `%s'"),
5434 optarg);
5435 }
5436 else
5437 do_debug_sections = compress;
4a114e3e
L
5438 break;
5439
252b5132 5440 case OPTION_DEBUGGING:
015dc7e1 5441 convert_debugging = true;
252b5132 5442 break;
57938635 5443
4a114e3e
L
5444 case OPTION_DECOMPRESS_DEBUG_SECTIONS:
5445 do_debug_sections = decompress;
5446 break;
5447
b8871f35
L
5448 case OPTION_ELF_STT_COMMON:
5449 if (strcasecmp (optarg, "yes") == 0)
5450 do_elf_stt_common = elf_stt_common;
5451 else if (strcasecmp (optarg, "no") == 0)
5452 do_elf_stt_common = no_elf_stt_common;
5453 else
5454 fatal (_("unrecognized --elf-stt-common= option `%s'"),
5455 optarg);
5456 break;
5457
252b5132
RH
5458 case OPTION_GAP_FILL:
5459 {
5460 bfd_vma gap_fill_vma;
5461
5462 gap_fill_vma = parse_vma (optarg, "--gap-fill");
5463 gap_fill = (bfd_byte) gap_fill_vma;
5464 if ((bfd_vma) gap_fill != gap_fill_vma)
5465 {
5466 char buff[20];
57938635 5467
252b5132 5468 sprintf_vma (buff, gap_fill_vma);
57938635 5469
252b5132
RH
5470 non_fatal (_("Warning: truncating gap-fill from 0x%s to 0x%x"),
5471 buff, gap_fill);
5472 }
015dc7e1 5473 gap_fill_set = true;
252b5132
RH
5474 }
5475 break;
57938635 5476
252b5132 5477 case OPTION_NO_CHANGE_WARNINGS:
015dc7e1 5478 change_warn = false;
252b5132 5479 break;
57938635 5480
252b5132
RH
5481 case OPTION_PAD_TO:
5482 pad_to = parse_vma (optarg, "--pad-to");
015dc7e1 5483 pad_to_set = true;
252b5132 5484 break;
57938635 5485
252b5132 5486 case OPTION_REMOVE_LEADING_CHAR:
015dc7e1 5487 remove_leading_char = true;
252b5132 5488 break;
57938635
AM
5489
5490 case OPTION_REDEFINE_SYM:
5491 {
0f65a5d8 5492 /* Insert this redefinition onto redefine_specific_htab. */
57938635
AM
5493
5494 int len;
5495 const char *s;
5496 const char *nextarg;
5497 char *source, *target;
5498
5499 s = strchr (optarg, '=');
5500 if (s == NULL)
594ef5db 5501 fatal (_("bad format for %s"), "--redefine-sym");
57938635
AM
5502
5503 len = s - optarg;
3f5e193b 5504 source = (char *) xmalloc (len + 1);
57938635
AM
5505 strncpy (source, optarg, len);
5506 source[len] = '\0';
5507
5508 nextarg = s + 1;
5509 len = strlen (nextarg);
3f5e193b 5510 target = (char *) xmalloc (len + 1);
57938635
AM
5511 strcpy (target, nextarg);
5512
0f65a5d8 5513 add_redefine_and_check ("--redefine-sym", source, target);
57938635
AM
5514
5515 free (source);
5516 free (target);
5517 }
5518 break;
5519
92991082
JT
5520 case OPTION_REDEFINE_SYMS:
5521 add_redefine_syms_file (optarg);
5522 break;
5523
252b5132
RH
5524 case OPTION_SET_SECTION_FLAGS:
5525 {
2e62b721 5526 struct section_list *p;
252b5132
RH
5527 const char *s;
5528 int len;
5529 char *name;
5530
5531 s = strchr (optarg, '=');
5532 if (s == NULL)
57938635 5533 fatal (_("bad format for %s"), "--set-section-flags");
252b5132
RH
5534
5535 len = s - optarg;
3f5e193b 5536 name = (char *) xmalloc (len + 1);
252b5132
RH
5537 strncpy (name, optarg, len);
5538 name[len] = '\0';
5539
015dc7e1 5540 p = find_section_list (name, true, SECTION_CONTEXT_SET_FLAGS);
252b5132 5541
252b5132
RH
5542 p->flags = parse_flags (s + 1);
5543 }
5544 break;
57938635 5545
fa463e9f
N
5546 case OPTION_SET_SECTION_ALIGNMENT:
5547 {
5548 struct section_list *p;
5549 const char *s;
5550 int len;
5551 char *name;
de4859ea 5552 int palign, align;
fa463e9f
N
5553
5554 s = strchr (optarg, '=');
5555 if (s == NULL)
de4859ea 5556 fatal (_("bad format for --set-section-alignment: argument needed"));
82ef9cad 5557
de4859ea
NC
5558 align = atoi (s + 1);
5559 if (align <= 0)
5560 fatal (_("bad format for --set-section-alignment: numeric argument needed"));
fa463e9f 5561
de4859ea
NC
5562 /* Convert integer alignment into a power-of-two alignment. */
5563 palign = 0;
5564 while ((align & 1) == 0)
5565 {
5566 align >>= 1;
5567 ++palign;
5568 }
82ef9cad 5569
de4859ea
NC
5570 if (align != 1)
5571 /* Number has more than on 1, i.e. wasn't a power of 2. */
5572 fatal (_("bad format for --set-section-alignment: alignment is not a power of two"));
5573
5574 /* Add the alignment setting to the section list. */
fa463e9f
N
5575 len = s - optarg;
5576 name = (char *) xmalloc (len + 1);
5577 strncpy (name, optarg, len);
5578 name[len] = '\0';
5579
015dc7e1 5580 p = find_section_list (name, true, SECTION_CONTEXT_SET_ALIGNMENT);
de4859ea
NC
5581 if (p)
5582 p->alignment = palign;
fa463e9f
N
5583 }
5584 break;
82ef9cad 5585
594ef5db
NC
5586 case OPTION_RENAME_SECTION:
5587 {
5588 flagword flags;
3bcfb3e4
AM
5589 const char *eq, *fl;
5590 char *old_name;
5591 char *new_name;
594ef5db
NC
5592 unsigned int len;
5593
3bcfb3e4
AM
5594 eq = strchr (optarg, '=');
5595 if (eq == NULL)
594ef5db
NC
5596 fatal (_("bad format for %s"), "--rename-section");
5597
3bcfb3e4 5598 len = eq - optarg;
594ef5db 5599 if (len == 0)
3bcfb3e4 5600 fatal (_("bad format for %s"), "--rename-section");
594ef5db 5601
3f5e193b 5602 old_name = (char *) xmalloc (len + 1);
594ef5db
NC
5603 strncpy (old_name, optarg, len);
5604 old_name[len] = 0;
5605
3bcfb3e4
AM
5606 eq++;
5607 fl = strchr (eq, ',');
5608 if (fl)
594ef5db 5609 {
3bcfb3e4
AM
5610 flags = parse_flags (fl + 1);
5611 len = fl - eq;
594ef5db
NC
5612 }
5613 else
5614 {
594ef5db 5615 flags = -1;
3bcfb3e4 5616 len = strlen (eq);
594ef5db
NC
5617 }
5618
3bcfb3e4
AM
5619 if (len == 0)
5620 fatal (_("bad format for %s"), "--rename-section");
5621
3f5e193b 5622 new_name = (char *) xmalloc (len + 1);
3bcfb3e4
AM
5623 strncpy (new_name, eq, len);
5624 new_name[len] = 0;
5625
594ef5db
NC
5626 add_section_rename (old_name, new_name, flags);
5627 }
5628 break;
5629
252b5132
RH
5630 case OPTION_SET_START:
5631 set_start = parse_vma (optarg, "--set-start");
015dc7e1 5632 set_start_set = true;
252b5132 5633 break;
57938635 5634
0af11b59 5635 case OPTION_SREC_LEN:
4bc26c69 5636 _bfd_srec_len = parse_vma (optarg, "--srec-len");
0af11b59 5637 break;
420496c1 5638
0af11b59 5639 case OPTION_SREC_FORCES3:
015dc7e1 5640 _bfd_srec_forceS3 = true;
0af11b59 5641 break;
420496c1 5642
16b2b71c 5643 case OPTION_STRIP_SYMBOLS:
d839b914
L
5644 add_specific_symbols (optarg, strip_specific_htab,
5645 &strip_specific_buffer);
16b2b71c
NC
5646 break;
5647
bcf32829 5648 case OPTION_STRIP_UNNEEDED_SYMBOLS:
d839b914
L
5649 add_specific_symbols (optarg, strip_unneeded_htab,
5650 &strip_unneeded_buffer);
bcf32829
JB
5651 break;
5652
16b2b71c 5653 case OPTION_KEEP_SYMBOLS:
d839b914
L
5654 add_specific_symbols (optarg, keep_specific_htab,
5655 &keep_specific_buffer);
16b2b71c
NC
5656 break;
5657
ca0e11aa 5658 case OPTION_KEEP_SECTION_SYMBOLS:
015dc7e1 5659 keep_section_symbols = true;
ca0e11aa
NC
5660 break;
5661
d58c2e3a 5662 case OPTION_LOCALIZE_HIDDEN:
015dc7e1 5663 localize_hidden = true;
d58c2e3a
RS
5664 break;
5665
16b2b71c 5666 case OPTION_LOCALIZE_SYMBOLS:
d839b914
L
5667 add_specific_symbols (optarg, localize_specific_htab,
5668 &localize_specific_buffer);
16b2b71c
NC
5669 break;
5670
0408dee6
DK
5671 case OPTION_LONG_SECTION_NAMES:
5672 if (!strcmp ("enable", optarg))
5673 long_section_names = ENABLE;
5674 else if (!strcmp ("disable", optarg))
5675 long_section_names = DISABLE;
5676 else if (!strcmp ("keep", optarg))
5677 long_section_names = KEEP;
5678 else
5679 fatal (_("unknown long section names option '%s'"), optarg);
5680 break;
5681
7b4a0685 5682 case OPTION_GLOBALIZE_SYMBOLS:
015dc7e1 5683 use_globalize = true;
d839b914
L
5684 add_specific_symbols (optarg, globalize_specific_htab,
5685 &globalize_specific_buffer);
7b4a0685
NC
5686 break;
5687
16b2b71c 5688 case OPTION_KEEPGLOBAL_SYMBOLS:
015dc7e1 5689 use_keep_global = true;
d839b914
L
5690 add_specific_symbols (optarg, keepglobal_specific_htab,
5691 &keepglobal_specific_buffer);
16b2b71c
NC
5692 break;
5693
5694 case OPTION_WEAKEN_SYMBOLS:
d839b914
L
5695 add_specific_symbols (optarg, weaken_specific_htab,
5696 &weaken_specific_buffer);
16b2b71c
NC
5697 break;
5698
1ae8b3d2 5699 case OPTION_ALT_MACH_CODE:
f9d4ad2a
NC
5700 use_alt_mach_code = strtoul (optarg, NULL, 0);
5701 if (use_alt_mach_code == 0)
5702 fatal (_("unable to parse alternative machine code"));
1ae8b3d2
AO
5703 break;
5704
d7fb0dd2
NC
5705 case OPTION_PREFIX_SYMBOLS:
5706 prefix_symbols_string = optarg;
5707 break;
5708
5709 case OPTION_PREFIX_SECTIONS:
5710 prefix_sections_string = optarg;
5711 break;
5712
5713 case OPTION_PREFIX_ALLOC_SECTIONS:
5714 prefix_alloc_sections_string = optarg;
5715 break;
5716
4087920c
MR
5717 case OPTION_READONLY_TEXT:
5718 bfd_flags_to_set |= WP_TEXT;
5719 bfd_flags_to_clear &= ~WP_TEXT;
5720 break;
5721
5722 case OPTION_WRITABLE_TEXT:
5723 bfd_flags_to_clear |= WP_TEXT;
5724 bfd_flags_to_set &= ~WP_TEXT;
5725 break;
5726
5727 case OPTION_PURE:
5728 bfd_flags_to_set |= D_PAGED;
5729 bfd_flags_to_clear &= ~D_PAGED;
5730 break;
5731
5732 case OPTION_IMPURE:
5733 bfd_flags_to_clear |= D_PAGED;
5734 bfd_flags_to_set &= ~D_PAGED;
5735 break;
5736
96109726
CC
5737 case OPTION_EXTRACT_DWO:
5738 strip_symbols = STRIP_NONDWO;
5739 break;
5740
d3e52d40 5741 case OPTION_EXTRACT_SYMBOL:
015dc7e1 5742 extract_symbol = true;
d3e52d40
RS
5743 break;
5744
9e48b4c6 5745 case OPTION_REVERSE_BYTES:
f7433f01
AM
5746 {
5747 int prev = reverse_bytes;
9e48b4c6 5748
f7433f01
AM
5749 reverse_bytes = atoi (optarg);
5750 if ((reverse_bytes <= 0) || ((reverse_bytes % 2) != 0))
5751 fatal (_("number of bytes to reverse must be positive and even"));
9e48b4c6 5752
f7433f01
AM
5753 if (prev && prev != reverse_bytes)
5754 non_fatal (_("Warning: ignoring previous --reverse-bytes value of %d"),
5755 prev);
5756 break;
5757 }
9e48b4c6 5758
92dd4511
L
5759 case OPTION_FILE_ALIGNMENT:
5760 pe_file_alignment = parse_vma (optarg, "--file-alignment");
5761 break;
955d0b3b 5762
92dd4511 5763 case OPTION_HEAP:
f7433f01
AM
5764 {
5765 char *end;
5766 pe_heap_reserve = strtoul (optarg, &end, 0);
5767 if (end == optarg
5768 || (*end != '.' && *end != '\0'))
5769 non_fatal (_("%s: invalid reserve value for --heap"),
5770 optarg);
5771 else if (*end != '\0')
5772 {
5773 pe_heap_commit = strtoul (end + 1, &end, 0);
5774 if (*end != '\0')
5775 non_fatal (_("%s: invalid commit value for --heap"),
5776 optarg);
5777 }
5778 }
92dd4511 5779 break;
955d0b3b 5780
92dd4511
L
5781 case OPTION_IMAGE_BASE:
5782 pe_image_base = parse_vma (optarg, "--image-base");
5783 break;
955d0b3b 5784
fa463e9f 5785 case OPTION_PE_SECTION_ALIGNMENT:
92dd4511
L
5786 pe_section_alignment = parse_vma (optarg,
5787 "--section-alignment");
5788 break;
955d0b3b 5789
92dd4511
L
5790 case OPTION_SUBSYSTEM:
5791 set_pe_subsystem (optarg);
5792 break;
955d0b3b 5793
92dd4511 5794 case OPTION_STACK:
f7433f01
AM
5795 {
5796 char *end;
5797 pe_stack_reserve = strtoul (optarg, &end, 0);
5798 if (end == optarg
5799 || (*end != '.' && *end != '\0'))
5800 non_fatal (_("%s: invalid reserve value for --stack"),
5801 optarg);
5802 else if (*end != '\0')
5803 {
5804 pe_stack_commit = strtoul (end + 1, &end, 0);
5805 if (*end != '\0')
5806 non_fatal (_("%s: invalid commit value for --stack"),
5807 optarg);
5808 }
5809 }
92dd4511 5810 break;
955d0b3b 5811
37d0d091
JH
5812 case OPTION_VERILOG_DATA_WIDTH:
5813 VerilogDataWidth = parse_vma (optarg, "--verilog-data-width");
5814 if (VerilogDataWidth < 1)
5815 fatal (_("verilog data width must be at least 1 byte"));
5816 break;
5817
252b5132 5818 case 0:
2593f09a
NC
5819 /* We've been given a long option. */
5820 break;
57938635 5821
8b53311e 5822 case 'H':
252b5132
RH
5823 case 'h':
5824 copy_usage (stdout, 0);
57938635 5825
252b5132
RH
5826 default:
5827 copy_usage (stderr, 1);
5828 }
5829 }
5830
de564eb5
NC
5831 if (use_globalize && use_keep_global)
5832 fatal(_("--globalize-symbol(s) is incompatible with -G/--keep-global-symbol(s)"));
5833
7c29036b
NC
5834 if (formats_info)
5835 {
5836 display_info ();
5837 return 0;
5838 }
c1c0eb9e 5839
252b5132
RH
5840 if (show_version)
5841 print_version ("objcopy");
5842
b7dd81f7
NC
5843 if (interleave && copy_byte == -1)
5844 fatal (_("interleave start byte must be set with --byte"));
5845
252b5132
RH
5846 if (copy_byte >= interleave)
5847 fatal (_("byte number must be less than interleave"));
5848
b7dd81f7
NC
5849 if (copy_width > interleave - copy_byte)
5850 fatal (_("interleave width must be less than or equal to interleave - byte`"));
5851
252b5132
RH
5852 if (optind == argc || optind + 2 < argc)
5853 copy_usage (stderr, 1);
5854
5855 input_filename = argv[optind];
5856 if (optind + 1 < argc)
5857 output_filename = argv[optind + 1];
5858
955d0b3b
RM
5859 default_deterministic ();
5860
252b5132
RH
5861 /* Default is to strip no symbols. */
5862 if (strip_symbols == STRIP_UNDEF && discard_locals == LOCALS_UNDEF)
5863 strip_symbols = STRIP_NONE;
5864
d3ba0551 5865 if (output_target == NULL)
252b5132
RH
5866 output_target = input_target;
5867
92dd4511
L
5868 /* Convert input EFI target to PEI target. */
5869 if (input_target != NULL
3f3328b8 5870 && startswith (input_target, "efi-"))
92dd4511
L
5871 {
5872 char *efi;
5873
5874 efi = xstrdup (output_target + 4);
3f3328b8
ML
5875 if (startswith (efi, "bsdrv-")
5876 || startswith (efi, "rtdrv-"))
92dd4511 5877 efi += 2;
3f3328b8 5878 else if (!startswith (efi, "app-"))
92dd4511
L
5879 fatal (_("unknown input EFI target: %s"), input_target);
5880
5881 input_target = efi;
5882 convert_efi_target (efi);
5883 }
5884
5885 /* Convert output EFI target to PEI target. */
5886 if (output_target != NULL
3f3328b8 5887 && startswith (output_target, "efi-"))
92dd4511
L
5888 {
5889 char *efi;
5890
5891 efi = xstrdup (output_target + 4);
3f3328b8 5892 if (startswith (efi, "app-"))
92dd4511
L
5893 {
5894 if (pe_subsystem == -1)
5895 pe_subsystem = IMAGE_SUBSYSTEM_EFI_APPLICATION;
5896 }
3f3328b8 5897 else if (startswith (efi, "bsdrv-"))
92dd4511
L
5898 {
5899 if (pe_subsystem == -1)
5900 pe_subsystem = IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER;
5901 efi += 2;
5902 }
3f3328b8 5903 else if (startswith (efi, "rtdrv-"))
92dd4511
L
5904 {
5905 if (pe_subsystem == -1)
5906 pe_subsystem = IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER;
5907 efi += 2;
5908 }
5909 else
5910 fatal (_("unknown output EFI target: %s"), output_target);
5911
5912 if (pe_file_alignment == (bfd_vma) -1)
5913 pe_file_alignment = PE_DEF_FILE_ALIGNMENT;
5914 if (pe_section_alignment == (bfd_vma) -1)
5915 pe_section_alignment = PE_DEF_SECTION_ALIGNMENT;
5916
5917 output_target = efi;
5918 convert_efi_target (efi);
5919 }
5920
0fcdcb91 5921 /* If there is no destination file, or the source and destination files
c42c71a1
AM
5922 are the same, then create a temp and copy the result into the input. */
5923 copyfd = -1;
8b6efd89
KT
5924 if (output_filename == NULL
5925 || filename_cmp (input_filename, output_filename) == 0)
c42c71a1
AM
5926 {
5927 tmpname = make_tempname (input_filename, &tmpfd);
5928 if (tmpfd >= 0)
5929 copyfd = dup (tmpfd);
5930 }
252b5132 5931 else
12f498a7 5932 tmpname = output_filename;
c1c0eb9e 5933
3685de75 5934 if (tmpname == NULL)
014cc7f8
SP
5935 {
5936 fatal (_("warning: could not create temporary file whilst copying '%s', (error: %s)"),
5937 input_filename, strerror (errno));
5938 }
594ef5db 5939
1a1c3b4c
SP
5940 copy_file (input_filename, tmpname, tmpfd, &statbuf, input_target,
5941 output_target, input_arch);
12f498a7
NS
5942 if (status == 0)
5943 {
d0ecdcdd
AM
5944 const char *oname = output_filename ? output_filename : input_filename;
5945 status = smart_rename (tmpname, oname, copyfd,
5946 &statbuf, preserve_dates) != 0;
252b5132 5947 }
12f498a7 5948 else
c42c71a1
AM
5949 {
5950 if (copyfd >= 0)
5951 close (copyfd);
5952 unlink_if_ordinary (tmpname);
5953 }
252b5132 5954
be74fad9
AM
5955 if (tmpname != output_filename)
5956 free (tmpname);
5957
252b5132
RH
5958 if (change_warn)
5959 {
2e62b721
NC
5960 struct section_list *p;
5961
252b5132
RH
5962 for (p = change_sections; p != NULL; p = p->next)
5963 {
5964 if (! p->used)
5965 {
2e62b721 5966 if (p->context & (SECTION_CONTEXT_SET_VMA | SECTION_CONTEXT_ALTER_VMA))
252b5132
RH
5967 {
5968 char buff [20];
5969
5970 sprintf_vma (buff, p->vma_val);
57938635 5971
252b5132 5972 /* xgettext:c-format */
57938635
AM
5973 non_fatal (_("%s %s%c0x%s never used"),
5974 "--change-section-vma",
2e62b721
NC
5975 p->pattern,
5976 p->context & SECTION_CONTEXT_SET_VMA ? '=' : '+',
252b5132
RH
5977 buff);
5978 }
57938635 5979
2e62b721 5980 if (p->context & (SECTION_CONTEXT_SET_LMA | SECTION_CONTEXT_ALTER_LMA))
252b5132
RH
5981 {
5982 char buff [20];
5983
5984 sprintf_vma (buff, p->lma_val);
57938635 5985
252b5132 5986 /* xgettext:c-format */
57938635
AM
5987 non_fatal (_("%s %s%c0x%s never used"),
5988 "--change-section-lma",
2e62b721
NC
5989 p->pattern,
5990 p->context & SECTION_CONTEXT_SET_LMA ? '=' : '+',
252b5132
RH
5991 buff);
5992 }
5993 }
5994 }
5995 }
5996
67965ba2
NC
5997 free (strip_specific_buffer);
5998 free (strip_unneeded_buffer);
5999 free (keep_specific_buffer);
6000 free (localize_specific_buffer);
6001 free (globalize_specific_buffer);
6002 free (keepglobal_specific_buffer);
6003 free (weaken_specific_buffer);
d839b914 6004
252b5132
RH
6005 return 0;
6006}
6007
6008int
84e2f313 6009main (int argc, char *argv[])
252b5132 6010{
87b9f255 6011#ifdef HAVE_LC_MESSAGES
252b5132 6012 setlocale (LC_MESSAGES, "");
3882b010 6013#endif
3882b010 6014 setlocale (LC_CTYPE, "");
252b5132
RH
6015 bindtextdomain (PACKAGE, LOCALEDIR);
6016 textdomain (PACKAGE);
6017
6018 program_name = argv[0];
6019 xmalloc_set_program_name (program_name);
6020
6021 START_PROGRESS (program_name, 0);
6022
869b9d07
MM
6023 expandargv (&argc, &argv);
6024
252b5132
RH
6025 strip_symbols = STRIP_UNDEF;
6026 discard_locals = LOCALS_UNDEF;
6027
bf2dd8d7
AM
6028 if (bfd_init () != BFD_INIT_MAGIC)
6029 fatal (_("fatal error: libbfd ABI mismatch"));
252b5132
RH
6030 set_default_bfd_target ();
6031
6032 if (is_strip < 0)
6033 {
6034 int i = strlen (program_name);
5af11cab
AM
6035#ifdef HAVE_DOS_BASED_FILE_SYSTEM
6036 /* Drop the .exe suffix, if any. */
6037 if (i > 4 && FILENAME_CMP (program_name + i - 4, ".exe") == 0)
6038 {
6039 i -= 4;
6040 program_name[i] = '\0';
6041 }
6042#endif
6043 is_strip = (i >= 5 && FILENAME_CMP (program_name + i - 5, "strip") == 0);
252b5132
RH
6044 }
6045
047c9024
NC
6046 create_symbol_htabs ();
6047
86eafac0
NC
6048 if (argv != NULL)
6049 bfd_set_error_program_name (argv[0]);
6050
252b5132
RH
6051 if (is_strip)
6052 strip_main (argc, argv);
6053 else
6054 copy_main (argc, argv);
6055
6056 END_PROGRESS (program_name);
6057
6058 return status;
6059}
This page took 2.784618 seconds and 4 git commands to generate.