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