More fixes for invalid memory accesses triggered by fuzzed binaries.
[external/binutils.git] / binutils / ChangeLog
1 2014-12-08  Nick Clifton  <nickc@redhat.com>
2
3         PR binutils/17531
4         * dwarf.c (display_debug_frames): Check for a negative
5         augmentation data length.
6         (display_gdb_index): Check for invalid offsets.
7         * elfcomm.c (process_archive_index_and_symbols): Check for an
8         index number that overflows when multiplied by the ar index size.
9         * readelf.c (dump_ia64_unwind): Add range checks.
10         (slurp_ia64_unwind_table): Change to a boolean function.  Add
11         range checks.
12         (process_version_sections): Add range checks.
13         (get_symbol_version_string): Add check for missing section
14         headers.
15
16 2014-12-08  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
17
18         * configure.ac: Add od-elf32_avr to build.
19         * configure: Regenerate.
20         * od-elf32_avr.c: New file.
21         * objdump.h: Declare objdump_private_desc_elf32_avr.
22
23 2014-12-06  Eric Botcazou  <ebotcazou@adacore.com>
24
25         * readelf.c: Include elf/visium.h.
26         (guess_is_rela): Deal with EM_VISIUM.
27         (dump_relocations): Likewise.
28         (get_machine_name): Likewise.
29         (get_machine_flags): Likewise.
30         (get_osabi_name): Likewise.
31         (is_32bit_abs_reloc): Likewise.
32         (is_32bit_pcrel_reloc): Likewise.
33         (is_16bit_abs_reloc): Likewise.
34
35 2014-12-05  Andrew Burgess  <andrew.burgess@embecosm.com>
36
37         * readelf.c (decode_AVR_machine_flags): New function.
38         (get_machine_flags): Add EM_AVR case.
39
40 2014-12-03  Nick Clifton  <nickc@redhat.com>
41
42         PR binutils/17512
43         * objdump.c (free_debug_section): Reset the compress_status as
44         well.
45
46 2014-12-03  Nick Clifton  <nickc@redhat.com>
47
48         PR binutils/17531
49         * readelf.c (get_machine_flags): Replace call to abort with a
50         warning message and a return value.
51         (get_elf_section_flags): Likewise.
52         (get_symbol_visibility): Likewise.
53         (get_ia64_symbol_other): Likewise.
54         (get_ia64_symbol_other): Likewise.
55         (is_32bit_abs_reloc): Likewise.
56         (apply_relocations): Likewise.
57         (display_arm_attribute): Likewise.
58
59 2014-12-02  Denis Chertykov  <chertykov@gmail.com>
60
61         * MAINTAINERS: Fix my email address.
62
63 2014-12-01  H.J. Lu  <hongjiu.lu@intel.com>
64
65         * dwarf.c (process_cu_tu_index): Properly check for an out of
66         range row index.
67
68 2014-12-01  Nick Clifton  <nickc@redhat.com>
69
70         PR binutils/17512
71         * dwarf.h (struct dwarf_section): Add user_data field.
72         * dwarf.c (frame_need_space): Check for an over large register
73         number.
74         (display_debug_frames): Check the return value from
75         frame_need_space.  Check for a CFA expression that is so long the
76         start address wraps around.
77         (debug_displays): Initialise the user_data field.
78         * objdump.c (load_specific_debug_section): Save the BFD section
79         pointer in the user_data field of the dwarf_section structure.
80         (free_debug_section): Update BFD section data when freeing section
81         contents.
82         * readelf.c (load_specific_debug_section): Initialise the
83         user_data field.
84
85 2014-12-01  Nick Clifton  <nickc@redhat.com>
86
87         PR binutils/17531
88         * dwarf.c (process_cu_tu_index): Check for an out of range row
89         index.
90         * elfcomm.c (adjust_relative_path): Change name_len parameter to
91         an unsigned long.  Check for path length overflow.
92         (process_archive_index_and_symbols): Check for invalid header
93         size.
94         (setup_archive): Add checks for invalid archives.
95         (get_archive_member_name): Add range checks.
96         * elfcomm.h (adjust_relative_path): Update prototyoe.
97         * readelf.c (process_archive): Add range checks.
98
99 2014-11-28  Alan Modra  <amodra@gmail.com>
100
101         * readelf.c (get_32bit_elf_symbols): Cast bfd_size_type values to
102         unsigned long for %lx.
103         (get_64bit_elf_symbols, process_section_groups): Likewise.
104
105 2014-11-27  Espen Grindhaug <espen@grindhaug.org>
106             Nick Clifton  <nickc@redhat.com>
107
108         PR binutils/17531
109         * readelf.c (get_data): Move excessive length check to earlier on
110         in the function and allow for wraparound in the arithmetic.
111         (get_32bit_elf_symbols): Terminate early if the section size is
112         zero.  Check for an invalid sh_entsize.  Check for an index
113         section with an invalid size.
114         (get_64bit_elf_symbols): Likewise.
115         (process_section_groups): Check for an invalid sh_entsize.
116
117 2014-11-24  Mark Wielaard  <mjw@redhat.com>
118
119         * dwarf.c (read_and_display_attr_value): Handle DW_LANG_C11,
120         DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
121
122 2014-11-26  Nick Clifton  <nickc@redhat.com>
123
124         PR binutils/17512
125         * dwarf.c (display_block): Do nothing if the block starts after
126         the end of the buffer.
127         (read_and_display_attr_value): Add range checks.
128         (struct Frame_Chunk): Make the ncols and ra fields unsigned.
129         (frame_need_space): Test for an ncols of zero.
130         (read_cie): Fail if the augmentation data extends off the end of
131         the buffer.
132         (display_debug_frames): Add checks for read_cie failing.  Add
133         range checks.
134
135 2014-11-25  H.J. Lu  <hongjiu.lu@intel.com>
136
137         * objdump.c (objdump_print_symname): Replace
138         bfd_elf_get_symbol_version_string with
139         bfd_get_symbol_version_string.
140
141 2014-11-25  H.J. Lu  <hongjiu.lu@intel.com>
142
143         PR binutils/16496
144         * objdump.c (objdump_print_symname): Call
145         bfd_elf_get_symbol_version_string to get ELF symbol version
146         string.  Append version string if needed.
147
148         * readelf.c (versioned_symbol_info): New enum.
149         (get_symbol_version_string): New.  Extracted from
150         process_symbol_table.
151         (dump_relocations): Add a new argument to indicate if dynamic
152         symbol table is used.  Use get_symbol_version_string to get
153         symbol version string for dynamic symbol.  Append version string
154         if needed.
155         (process_relocs): Updated dump_relocations call.
156         (process_symbol_table): Use get_symbol_version_string.
157
158 2014-11-24  H.J. Lu  <hongjiu.lu@intel.com>
159
160         * configure: Regenerated.
161
162 2014-11-21  Nick Clifton  <nickc@redhat.com>
163
164         PR binutils/17512
165         * dwarf.c (get_encoded_value): Check for an encoded size of 0.
166         (display_debug_lines_raw): Check for an invalid line range value.
167         (display_debug_frames): Check for corrupt augmentation data.
168
169 2014-11-21  Nick Clifton  <nickc@redhat.com>
170
171         PR binutils/17531
172         * readelf.c (process_version_sections): Prevent an infinite loop
173         processing corrupt version need data.
174         (process_corefile_note_segment): Handle corrupt notes.
175
176 2014-11-21  Terry Guo  <terry.guo@arm.com>
177
178         * readelf.c (arm_attr_tag_FP_arch): Extended to support FPv5.
179
180 2014-11-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
181
182         * dwarf.c (process_extended_line_op): Fix signedness warning.
183
184 2014-11-18  Nick Clifton  <nickc@redhat.com>
185
186         PR binutuls/17605
187         * bucomm.c (print_arelt_descr): Check for ctime returning NULL.
188
189 2014-11-18  Nick Clifton  <nickc@redhat.com>
190
191         PR binutils/17512
192         * dwarf.c (get_encoded_value): Warn and return if the encoded
193         value is more than 64-bits long.
194         (SAFE_BYTE_GET): Do not attempt to read more than 64-bits.
195         (process_extended_line_op): Add more range checks.
196         (decode_location_expression): Use the return value from
197         display_block.  Add more range checks.
198         (read_debug_line_header): Add range check.
199         (display_debug_lines_raw): Add range checks.
200         (display_debug_frames): Silently skip multiple zero terminators.
201         Add range checks.
202         (process_cu_tu_index): Check for non-existant or empty sections.
203         Use SAFE_BYTE_GET instead of byte_get.
204
205 2014-11-18  Nick Clifton  <nickc@redhat.com>
206
207         PR binutils/17531
208         * readelf.c (get_unwind_section_word): Skip reloc processing if
209         there are no relocs associated with the section.
210         (decode_tic6x_unwind_bytecode): Warn and return if the stack
211         pointer adjustment falls off the end of the buffer.
212
213 2014-11-14  Nick Clifton  <nickc@redhat.com>
214
215         PR binutils/17512
216         * dwarf.c (get_encoded_value): Add an 'end' parameter.  Change the
217         'data' parameter to a double pointer and return the updated value.
218         (decode_location_expression): Update call to get_encoded_value.
219         (frame_need_space): Handle the case where one or both of the
220         mallocs fails.
221         (read_cie): Initialise the cie pointer, even if the read fails.
222         (display_debug_frames): Warn if the calculated block_end is before
223         the start of the block.  Break the loop if the CIE could not be
224         read.  Update call to get_encoded_value.  Warn if the read CFA
225         expressions are too big.
226
227 2014-11-13  Nick Clifton  <nickc@redhat.com>
228
229         PR binutils/17531
230         * readelf.c (process_version_sections): If the read of the version
231         def information fails, make sure that the external verdef data is
232         not used.
233         (get_dynamic_data): Do not attempt to allocate memory for more
234         dynamic data than there is in the file.  If the read fails, free
235         the allocated buffer.
236         (process_symbol_table): Do not print dynamic information if we
237         were unable to read the dynamic symbol table.
238         (print_gnu_note): Do not print the note if the descsz is too
239         small.
240
241 2014-11-12  Nick Clifton  <nickc@redhat.com>
242
243         PR binutils/17512
244         * dwarf.c (read_and_display_attr_value): Check that we do not read
245         past end.
246         (display_debug_pubnames_worker): Add range checks.
247         (process_debug_info): Check for invalid pointer sizes.
248         (display_loc_list): Likewise.
249         (display_loc_list_dwo): Likewise.
250         (display_debug_ranges): Likewise.
251         (display_debug_aranges): Check for invalid address size.
252         (read_cie): Add range checks.  Replace call strchr with while loop.
253         * objdump.c (dump_dwarf): Replace abort with a warning message.
254         (print_section_stabs): Improve range checks.
255         * rdcoff.c (coff_get_slot): Use long for indx parameter type.
256         Add check for an excesively large index.
257         * rddbg.c (read_section_stabs_debugging_info): Zero terminate the
258         string table.  Avoid walking off the end of the stabs data.
259         * stabs.c (parse_stab_string): Add check for a NULL name.
260
261 2014-11-11  Nick Clifton  <nickc@redhat.com>
262
263         PR binutils/17531
264         * binutils/readelf.c (dynamic_nent): Change type to size_t.
265         (slurp_rela_relocs): Use size_t type for nrelas.
266         (slurp_rel_relocs): Likewise.
267         (get_program_headers): Improve out of memory error message.
268         (get_32bit_section_headers): Likewise.
269         (get_32bit_section_headers): Likewise.
270         (get_64bit_section_headers): Likewise.
271         (get_32bit_elf_symbols): Likewise.
272         (get_64bit_elf_symbols): Likewise.
273         (process_section_groups): Likewise.
274         (get_32bit_dynamic_section): Likewise.
275         (get_64bit_dynamic_section): Likewise.
276         (process_dynamic_section): Likewise.
277         (process_version_sections): Likewise.
278         (get_symbol_index_type): Likewise.
279         (process_mips_specific): Likewise.
280         (process_corefile_note_segment): Likewise.
281         (process_version_sections): Use size_t type for total.
282         (get_dynamic_data): Change type of number parameter to size_t.
283         Improve out of memory error messages.
284         (process_symbol_table): Change type of nbuckets and nchains to
285         size_t.  Skip processing of sections headers if there are none.
286         Improve out of memory error messages.
287
288 2014-11-11  Nick Clifton  <nickc@redhat.com>
289
290         * po/fr.po: Updated French translation.
291
292 2014-11-11  Nick Clifton  <nickc@redhat.com>
293
294         PR binutils/17531
295         * readelf.c (display_arm_attribute): Avoid reading off the end of
296         the buffer when processing a Tag_nodefaults.
297
298 2014-11-10  Nick Clifton  <nickc@redhat.com>
299
300         PR binutils/17531
301         * (ia64_process_unwind): Replace assertion with an error message.
302         Add range checking for group section indicies.
303         (hppa_process_unwind): Replace assertion with an error message.
304         (process_syminfo): Likewise.
305         (decode_arm_unwind_bytecode): Add range checking.
306         (dump_section_as_strings): Add more string range checking.
307         (display_tag_value): Likewise.
308         (display_arm_attribute): Likewise.
309         (display_gnu_attribute): Likewise.
310         (display_tic6x_attribute): Likewise.
311         (display_msp430x_attribute): Likewise.
312
313 2014-11-10  Nick Clifton  <nickc@redhat.com>
314
315         PR binutils/17552
316         * (copy_archive): Clean up temporary files even if an error
317         occurs.
318
319 2014-11-07  H.J. Lu  <hongjiu.lu@intel.com>
320
321         * readelf.c (process_dynamic_section): Cast time value to unsigned
322         long to print.
323
324 2014-11-07  Nick Clifton  <nickc@redhat.com>
325
326         PR binutils/17531
327         * readelf.c (get_data): Avoid allocating memory when we know that
328         the read will fail.
329         (find_section_by_type): New function.
330         (get_unwind_section_word): Check for invalid symbol indicies.
331         Check for invalid reloc types.
332         (get_32bit_dynamic_section): Add range checks.
333         (get_64bit_dynamic_section): Add range checks.
334         (process_dynamic_section): Check for a corrupt time value.
335         (process_symbol_table): Add range checks.
336         (dump_section_as_strings): Add string length range checks.
337         (display_tag_value): Likewise.
338         (display_arm_attribute): Likewise.
339         (display_gnu_attribute): Likewise.
340         (display_tic6x_attribute): Likewise.
341         (display_msp430x_attribute): Likewise.
342         (process_mips_specific): Add range check.
343
344 2014-11-06  Nick Clifton  <nickc@redhat.com>
345
346         PR binutils/17552, binutils/17533
347         * bucomm.c (is_valid_archive_path): New function.  Returns false
348         for absolute pathnames and pathnames that include /../.
349         * bucomm.h (is_valid_archive_path): Add prototype.
350         * ar.c (extract_file): Use new function to check for valid
351         pathnames when extracting files from an archive.
352         * objcopy.c (copy_archive): Likewise.
353         * doc/binutils.texi: Update documentation to mention the
354         limitation on pathname of archive members.
355
356 2014-11-05  Nick Clifton  <nickc@redhat.com>
357
358         PR binutils/17531
359         * readelf.c (printable_section_name): New function.
360         (printable_section_name_from_index): New function.
361         (dump_relocations): Use new function.
362         (process_program_headers, get_32bit_elf_symbols,
363         (get_64bit_elf_symbols, process_section_headers,
364         (process_section_groups, process_relocs, ia64_process_unwind,
365         (hppa_process_unwind, get_unwind_section_word, decode_arm_unwind,
366         (arm_process_unwind, process_version_sections,
367         (process_symbol_table, apply_relocations, get_section_contents,
368         (dump_section_as_strings, dump_section_as_bytes,
369         (display_debug_section, process_attributes, process_mips_specific,
370         (process_mips_specific process_gnu_liblist): Likewise.
371         (get_unwind_section_word): Check for a missing symbol table.
372         Replace aborts with error messages.
373         (arm_process_unwind): Check for a missing string table.
374         (process_attributes): Check for an attribute length that is too
375         small.
376         (process_mips_specific): Check for a corrupt GOT symbol offset.
377
378 2014-11-05  Nick Clifton  <nickc@redhat.com>
379
380         PR binutils/17533
381         * bucomm.c (is_valid_archive_path): New function.
382         * bucomm.h (is_valid_archive_path): Prototype it.
383         * ar.c (extract_file): Call is_valid_archive_path to verify a
384         member filename before extracting it.
385         * objcopy.c (copy_archive): Likewise.
386
387 2014-11-05  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
388
389         * readelf.c (process_mips_specific): Fix format string warning.
390
391 2014-11-04  Matthew Fortune  <matthew.fortune@imgtec.com>
392
393         * readelf.c (process_mips_specific): Rename index to idx.
394
395 2014-11-04  Nick Clifton  <nickc@redhat.com>
396
397         PR binutils/17531
398         * readelf.c (get_data): If the reason parameter is null, do not
399         print any error messages.
400         (get_32bit_section_headers): Verify section header entry size
401         before reading in the section headers.
402         (get_64bit_section_headers): Likewise.
403         (process_section_headers): Pass FALSE to get_section_headers.
404         (get_file_header): Pass TRUE to get_section_headers.
405         (process_dynamic_section): Change an assert to an error message.
406         (process_symbol_table): Handle corrupt histograms.
407
408         (get_32bit_program_headers): Verify program header entry size
409         before reading in the program headers.
410         (get_64bit_program_headers): Likewise.
411         (get_unwind_section_word): Do nothing if no section was provided.
412         Fail if the offset is outside of the section.
413         (print_dynamic_symbol): Catch out of range symbol indicies.
414         (process_mips_specific): Likewise.
415         (process_attributes): Make sure that there is enough space left in
416         the section before attempting to read the length of the next
417         attribute.
418
419 2014-11-03  Nick Clifton  <nickc@redhat.com>
420
421         PR binutils/17512
422         * objdump.c (slurp_symtab): Fail gracefully if the table could not
423         be read.
424         (dump_relocs_in_section): Likewise.
425
426 2014-11-03  Nick Clifton  <nickc@redhat.com>
427
428         * po/fi.po: Updated Finnish translation.
429         * po/sv.po: Updated Swedish translation.
430
431 2014-11-01  Hans-Peter Nilsson  <hp@axis.com>
432
433         * readelf.c (get_32bit_elf_symbols): Cast error
434         parameters of bfd_size_type with the %lx format to
435         unsigned long.
436
437 2014-10-31  Andrew Pinski  <apinski@cavium.com>
438             Naveen H.S  <Naveen.Hurugalawadi@caviumnetworks.com>
439
440         * readelf.c (print_mips_isa_ext): Print the value of Octeon3.
441
442 2014-10-31  Iain Buclaw  <ibuclaw@gdcproject.org>
443
444         * cxxfilt.c (main): Add case for dlang_demangling style.
445
446 2014-10-31  Nick Clifton  <nickc@redhat.com>
447
448         PR binutils/17512
449         * readelf.c (process_program_headers): Avoid memory exhaustion due
450         to corrupt values in a dynamis segment header.
451         (get_32bit_elf_symbols): Do not attempt to read an over-large
452         section.
453         (get_64bit_elf_symbols): Likewise.
454
455 2014-10-31  Nick Clifton  <nickc@redhat.com>
456
457         * strings.c: Add new command line option --data to only scan the
458         initialized, loadable data secions of binaries.  Choose the
459         default behaviour of --all or --data based upon a configure
460         option.
461         * doc/binutils.texi (strings): Update documentation.  Include
462         description  of why the --data option might be unsafe.
463         * configure.ac: Add new option --disable-default-strings-all which
464         restores the old behaviour of strings using --data by default.  If
465         the option is not used make strings use --all by default.
466         * NEWS: Mention the new behaviour of strings.
467         * configure: Regenerate.
468         * config.in: Regenerate.
469
470 2014-10-30  Nick Clifton  <nickc@redhat.com>
471
472         * readelf.c (CHECK_ENTSIZE_VALUES): Rewrite error message so that
473         there is a single string for translation.
474         (dynamic_section_mips_val): Likewise.
475
476 2014-10-29  Nick Clifton  <nickc@redhat.com>
477
478         * po/bg.po: Updated Bulgarian translation.
479         * po/sr.po: New Serbian translation.
480         * po/sv.po: Updated Swedish translation.
481
482 2014-10-22  Matthew Fortune  <matthew.fortune@imgtec.com>
483
484         * readelf.c (print_mips_ases): Print unknown ASEs.
485         (print_mips_isa_ext): Print the value of an unknown extension.
486
487 2014-10-15  Tristan Gingold  <gingold@adacore.com>
488
489         * configure: Regenerate.
490
491 2014-10-14  Tristan Gingold  <gingold@adacore.com>
492
493         * NEWS: Add marker for 2.25.
494
495 2014-10-14  Alan Modra  <amodra@gmail.com>
496
497         PR 17453
498         * dwarf.c (read_leb128): Avoid signed overflow.
499         (read_debug_line_header): Likewise.
500
501 2014-10-14  Alan Modra  <amodra@gmail.com>
502
503         PR 17453
504         * readelf.c (process_program_headers): Correct fscanf format used
505         for interpreter.
506
507 2014-10-09  Jose E. Marchesi  <jose.marchesi@oracle.com>
508
509         * readelf.c (display_sparc_hwcaps2): New function.
510         (display_sparc_gnu_attribute): Call `display_sparc_hwcaps2' when
511         handling `Tag_GNU_Sparc_HWCAPS2' attributes.
512
513 2014-09-22  Alan Modra  <amodra@gmail.com>
514
515         PR 16563
516         * dwarf.c (GET): Remove semicolon.
517         (read_cie): New function, extracted from..
518         (display_debug_frames): ..here.  Correctly handle signed offset
519         from FDE to CIE in .eh_frame.  Decode forward referenced CIEs too.
520
521 2014-09-16  Nick Clifton  <nickc@redhat.com>
522
523         * readelf.c (display_arm_attribute): Use unsigned int type for
524         tag, val and type variables.
525
526 2014-09-16  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
527
528         * readelf.c (decode_NDS32_machine_flags): Display ABI2 FP+.
529
530 2014-09-15  Andrew Bennett  <andrew.bennett@imgtec.com>
531             Matthew Fortune  <matthew.fortune@imgtec.com>
532
533         * readelf.c (get_machine_flags): Add support for mips32r6 and
534         mips64r6.
535
536 2014-09-01  Jon TURNEY  <jon.turney@dronecode.org.uk>
537
538         * objcopy.c (is_nondebug_keep_contents_section): Change
539         '.build-id' to '.buildid'.
540
541 2014-08-22  Richard Henderson  <rth@redhat.com>
542
543         * dwarf.h (init_dwarf_regnames_aarch64): Declare.
544         * dwarf.c (dwarf_regnames_aarch64): New.
545         (init_dwarf_regnames_aarch64): New.
546         (init_dwarf_regnames): Call it.
547         * objdump.c (dump_dwarf): Likewise.
548
549 2014-08-19  Alan Modra  <amodra@gmail.com>
550
551         * configure: Regenerate.
552
553 2014-08-14  Alan Modra  <amodra@gmail.com>
554
555         * configure.ac: Move ACX_LARGEFILE after LT_INIT.
556         * config.in: Regenerate.
557         * configure: Regenerate.
558
559 2014-07-29  Matthew Fortune  <matthew.fortune@imgtec.com>
560
561         * readelf.c (get_mips_segment_type): Display name for PT_MIPS_ABIFLAGS.
562         (get_mips_section_type_name): Display name for SHT_MIPS_ABIFLAGS.
563         (display_mips_gnu_attribute): Abstracted fp abi printing to...
564         (print_mips_fp_abi_value): New static function. Handle new FP ABIs.
565         (print_mips_ases, print_mips_isa_ext): New static functions.
566         (get_mips_reg_size): Likewise.
567         (process_mips_specific): Display abiflags data.
568
569 2014-07-28  Alan Modra  <amodra@gmail.com>
570
571         PR 13227
572         * nm.c (filter_symbols): Warn on __gnu_lto_slim.
573
574 2014-07-07  Nick Clifton  <nickc@redhat.com>
575
576         * readelf.c (get_symbol_type): Revert accidental change to
577         detection of thumb function symbols.
578
579 2014-07-04  Alan Modra  <amodra@gmail.com>
580
581         * configure.ac: Rename from configure.in.
582         * Makefile.in: Regenerate.
583         * config.in: Regenerate.
584         * doc/Makefile.in: Regenerate.
585
586 2014-07-04  Alan Modra  <amodra@gmail.com>
587
588         * configure.in: Include bfd/version.m4.
589         (AC_INIT, AM_INIT_AUTOMAKE): Use modern form.
590         (BFD_VERSION): Delete.
591         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Remove bfd/configure.in.
592         * configure: Regenerate.
593         * Makefile.in: Regenerate.
594         * doc/Makefile.in: Regenerate.
595
596 2014-07-03  Tristan Gingold  <gingold@adacore.com>
597
598         * doc/binutils.texi: Clarify addr2line output.
599
600 2014-07-01  Alan Modra  <amodra@gmail.com>
601
602         * objdump.c (dump_bfd_header): Don't print HAS_LOAD_PAGE.
603
604 2014-06-26  Erik Akermann  <kurterikackermann@gmail.com>
605
606         * strings.c: Add -w/--include-all-whitespace option to include any
607         whitespace character in the displayed strings.
608         * NEWS: Mention the new feature.
609         * doc/binutils.texi (strings): Document the new command line
610         option.
611
612 2014-06-26  Nick Clifton  <nickc@redhat.com>
613
614         * readelf.c (process_note_sections): If there are no note sections
615         try processing note segments instead.
616
617 2014-06-17  Anton Lavrentiwev  <lavr@ncbi.nim.nih.gov>
618
619         PR binutils/16923
620         * rcparse.y (fixedverinfo): Prevent large version numbers from
621         corrupting other values.
622
623 2014-06-09  Romain Chastenet  <romain.chastenet@free.fr>
624
625         PR binutils/16252
626         * dwarf.c (display_debug_frames): Remember the state of the
627         cfa_offset, cfa_reg, ra and cfa_exp field
628
629 2014-06-05  Joel Brobecker  <brobecker@adacore.com>
630
631         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Add dependency on
632         bfd's development.sh.
633         * Makefile.in, configure: Regenerate.
634
635 2014-05-16  Jon Turney  <jon.turney@dronecode.org.uk>
636
637         * objcopy.c (is_nondebug_keep_contents_section): New function.
638         (setup_section): Use it.
639
640 2014-05-16  Kaushik Phata  <Kaushik.Phatak@kpit.com>
641
642         * readelf.c (get_machine_flags): Handle RL78 64-bit doubles flag.
643
644 2014-05-02  Alan Modra  <amodra@gmail.com>
645
646         * emul_aix.c: Update bfd target vector naming.
647         * testsuite/binutils-all/objcopy.exp: Likewise.
648
649 2014-04-24  Christian Svensson  <blue@cmd.nu>
650
651         * MAINTAINERS: Add myself and Stefan as OR1K maintainers.
652
653 2014-04-23  Andrew Bennett  <andrew.bennett@imgtec.com>
654
655         * doc/binutils.texi: Document the disassemble MIPS XPA instructions
656         command line option.
657
658 2014-04-22  Christian Svensson  <blue@cmd.nu>
659
660         * readelf.c: Remove openrisc and or32 support.  Add support for or1k.
661
662 2014-04-18  Tristan Gingold  <gingold@adacore.com>
663
664         * od-macho.c (dump_section_map): Adjust as load commands
665         are now chained.
666         (dump_load_command, dump_section_content): Likewise.
667
668 2014-04-16  Tristan Gingold  <gingold@adacore.com>
669
670         * od-macho.c (OPT_DYLD_INFO): New macro.
671         (options): Add entry for dyld_info.
672         (mach_o_help): Likewise.
673         (load_and_dump, dump_dyld_info_rebase, dump_dyld_info_bind)
674         (dump_dyld_info_export_1, dump_dyld_info_export): New functions.
675         (bfd_mach_o_dyld_rebase_type_name): New array.
676         (export_info_data): New struct.
677         (dump_dyld_info): Add verbose argument.  Dump rebase, bind and
678         exports data.
679         (dump_load_command): Adjust dump_dyld_info call.
680         (mach_o_dump): Handle dyld_info.
681
682 2014-04-16  Tristan Gingold  <gingold@adacore.com>
683
684         * od-macho.c (dump_header): Display sizeofcmds in decimal too.
685         (dump_segment): Reformat output.
686         (dump_dyld_info): Also display end offsets.
687         (dump_load_command): Add IDX argument, display commands size
688         and offset, reformat display.
689         (dump_load_commands): Adjust for added argument.
690
691 2014-04-07  Alan Modra  <amodra@gmail.com>
692
693         PR binutils/16811
694         * objcopy.c (copy_object): Error if no sections.
695
696 2014-04-03  Markus Trippelsdorf  <markus@trippelsdorf.de>
697
698         PR binutils/14698
699         ar.c: Set plugin_target early if plugins are supported.
700         nm.c: Likewise.
701
702 2014-04-03  Tristan Gingold  <gingold@adacore.com>
703
704         * od-macho.c (printf_uint64): New function.
705         (dump_load_command, dump_obj_compact_unwind): Use it.
706         (dump_exe_compact_unwind): Display personality functions.
707
708 2014-04-02  Tristan Gingold  <gingold@adacore.com>
709
710         * od-macho.c (OPT_TWOLEVEL_HINTS): New macro.
711         (options): Add entry for twolevel_hints.
712         (dump_data_in_code): Fix error message.
713         (dump_twolevel_hints): New function.
714         (dump_load_command): Handle prebound dylib, prebind cksum
715         and twolevel hints.
716         (mach_o_dump): Handle twolevel hints.
717
718 2014-04-01  Tristan Gingold  <gingold@adacore.com>
719
720         * od-macho.c (OPT_DATA_IN_CODE): New macro.
721         (options): Add entry for data in code.
722         (mach_o_help): Ditto.
723         (data_in_code_kind_name): New array.
724         (dump_data_in_code): New function.
725         (dump_load_command): Handle data in code.
726         (mach_o_dump): Ditto.
727         (dump_header): Display a terminal newline.
728
729 2014-03-27  Tristan Gingold  <gingold@adacore.com>
730
731         * od-macho.c (dump_load_command): Display value for
732         BFD_MACH_O_LC_DYLD_ENVIRONMENT.  Handle BFD_MACH_O_LC_DATA_IN_CODE
733         and BFD_MACH_O_LC_DYLIB_CODE_SIGN_DRS.
734
735 2014-03-27  Tristan Gingold  <gingold@adacore.com>
736
737         * od-macho.c (OPT_FUNCTION_STARTS): New macro.
738         (options): Add entry for function_starts.
739         (mach_o_help): Ditto.
740         (disp_segment_prot): New function.
741         (dump_section_map): Call disp_segment_prot.
742         (dump_function_starts): New function.
743         (dump_obj_compact_unwind): Fix ouput indentation.
744         (dump_exe_compact_unwind): Fix ouput indentation.
745         (mach_o_dump): Handle function_starts.
746
747 2014-03-26  Tristan Gingold  <gingold@adacore.com>
748
749         * od-macho.c (bfd_mach_o_cpu_name): Add BFD_MACH_O_CPU_TYPE_ARM64.
750
751 2014-03-24  Tristan Gingold  <gingold@adacore.com>
752
753         * objdump.c (load_specific_debug_section): Set address of section.
754
755 2014-03-24  Tristan Gingold  <gingold@adacore.com>
756
757         * od-macho.c (dump_unwind_encoding_x86): Set the factor.
758         (dump_exe_compact_unwind): Change the condition.  Improve
759         indentation.
760
761 2014-03-20  Nick Clifton  <nickc@redhat.com>
762
763         * readelf.c (process_version_sections): Fix off-by-one error in
764         previous delta.
765
766 2014-03-19  Nick Clifton  <nickc@redhat.com>
767
768         PR binutils/16723
769         * readelf.c (process_version_sections): Prevent an infinite loop
770         when the vn_next field is zero but there are still entries to be
771         processed.
772
773 2014-03-17  Tristan Gingold  <gingold@adacore.com>
774
775         * od-macho.c (dump_section_header): Renames of dump_section.
776         (dump_segment): Adjust after renaming.
777         (OPT_COMPACT_UNWIND): Define.
778         (options): Add compact unwind.
779         (mach_o_help): Document compact_unwind.
780         (unwind_x86_64_regs, unwind_x86_regs): New arrays.
781         (dump_unwind_encoding_x86, dump_unwind_encoding)
782         (dump_obj_compact_unwind, dump_exe_compact_unwind)
783         (dump_section_content): New functions.
784         (mach_o_dump): Handle compact unwind.
785
786 2014-03-17  Tristan Gingold  <gingold@adacore.com>
787
788         * od-macho.c (dump_load_command): Handle lazy load dylib.
789
790 2014-03-14  Anthony Green  <green@moxielogic.com>
791
792         * objcopy.c (copy_object): Check fwrite return code.
793
794 2014-03-14  Meador Inge  <meadori@codesourcery.com>
795
796         * dwarf.c (strnlen): Move prototype ...
797         * sysdep.h (strnlen): ... to here.
798
799 2014-03-12  Nick Clifton  <nickc@redhat.com>
800
801         PR binutils/16652
802         * doc/binutils.texi (ar cmdline): Move --plugin command line
803         option to after the command option.
804
805 2014-03-12  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>
806
807         PR binutils/16567
808         * deflex.l: Add noinput and nounput options.
809
810 2014-03-12  Alan Modra  <amodra@gmail.com>
811
812         * Makefile.in: Regenerate.
813         * doc/Makefile.in: Regenerate.
814
815 2014-03-06  Nick Clifton  <nickc@redhat.com>
816
817         PR binutils/16664
818         * readelf.c (process_attributes): Add checks for corrupt
819         attribute section names.
820
821 2014-03-05  Alan Modra  <amodra@gmail.com>
822
823         Update copyright years.
824
825 2014-03-03  Alan Modra  <amodra@gmail.com>
826
827         * README: Add "Copyright Notices" paragraph.
828
829 2014-02-11  Cary Coutant  <ccoutant@google.com>
830
831         * binutils/dwarf.c (read_and_display_attr_value): Don't warn
832         for zero-length attribute value.
833
834 2014-02-10  Alan Modra  <amodra@gmail.com>
835
836         * po/binutils.pot: Regenerate.
837
838 2014-02-06  Andrew Pinski  <apinski@cavium.com>
839
840         * readelf.c  (get_machine_flags): Handle E_MIPS_MACH_OCTEON3 case.
841
842 2014-02-06  Cary Coutant  <ccoutant@google.com>
843
844         PR binutils/16444
845         * readelf.c (print_gnu_note): Add support for NT_GNU_GOLD_VERSION.
846
847 2014-01-08  H.J. Lu  <hongjiu.lu@intel.com>
848
849         * version.c (print_version): Update copyright year to 2014.
850
851 2014-01-07  Tom Tromey  <tromey@redhat.com>
852
853         * bucomm.c (fatal, non_fatal): Replace obsolete VA_* macros with
854         stdarg macros.
855         * dlltool.c (inform): Replace obsolete VA_* macros with stdarg
856         macros.
857         * dllwrap.c (inform, warn): Replace obsolete VA_* macros with
858         stdarg macros.
859
860 2014-01-07  Tom Tromey  <tromey@redhat.com>
861
862         * coffgrok.h (coff_ofile): Don't use PARAMS.
863         * nlmheader.y (strerror): Don't use PARAMS.
864
865 For older changes see ChangeLog-2013
866 \f
867 Copyright (C) 2014 Free Software Foundation, Inc.
868
869 Copying and distribution of this file, with or without modification,
870 are permitted in any medium without royalty provided the copyright
871 notice and this notice are preserved.
872
873 Local Variables:
874 mode: change-log
875 left-margin: 8
876 fill-column: 74
877 version-control: never
878 End: