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