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