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