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