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