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