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