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