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