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