Fixes for memory access violations triggered by running addr2line on fuzzed binaries.
[deliverable/binutils-gdb.git] / binutils / ChangeLog
1 2015-01-27 Nick Clifton <nickc@redhat.com>
2
3 PR binutils/17512
4 * dlltool.c (identify_search_archive): If the last archive was the
5 same as the current archive, terminate the loop.
6
7 * addr2line.c (slurp_symtab): If the symcount is zero, free the
8 symbol table pointer.
9
10 2015-01-23 Nick Clifton <nickc@redhat.com>
11
12 * nlmconv.c (powerpc_mangle_relocs): Fix build errors introduced
13 by recent delta, when compiling on for a 32-bit host.
14
15 2015-01-21 Nick Clifton <nickc@redhat.com>
16
17 PR binutils/17512
18 * addr2line.c (main): Call bfd_set_error_program_name.
19 * ar.c (main): Likewise.
20 * coffdump.c (main): Likewise.
21 * cxxfilt.c (main): Likewise.
22 * dlltool.c (main): Likewise.
23 * nlmconv.c (main): Likewise.
24 * nm.c (main): Likewise.
25 * objdump.c (main): Likewise.
26 * size.c (main): Likewise.
27 * srconv.c (main): Likewise.
28 * strings.c (main): Likewise.
29 * sysdump.c (main): Likewise.
30 * windmc.c (main): Likewise.
31 * windres.c (main): Likewise.
32 * objcopy.c (main): Likewise.
33 (copy_relocations_in_section): Check for relocs without associated
34 symbol pointers.
35
36 2015-01-21 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
37
38 * MAINTAINERS: Add self to ARM maintainers list.
39
40 2015-01-21 Nick Clifton <nickc@redhat.com>
41
42 PR binutils/17512
43 * coffgrok.c (do_type): Check that computed ref exists.
44 (doit): Add range checks when computing section for scope.
45
46 2015-01-12 H.J. Lu <hongjiu.lu@intel.com>
47
48 * dwarf.c (process_debug_info): Properly check abbrev size.
49
50 2015-01-12 Nick Clifton <nickc@redhat.com>
51
52 PR binutils/17531
53 * dwarf.c (process_debug_info): Check for abbrev_base being larger
54 than the section size.
55 (process_cu_tu_index): Use xcalloc2 to allocate the CU and TU
56 arrays.
57 (xcalloc2): New function. Like xcalloc, but checks for overflow.
58 (display_debug_addr): Use xcalloc to allocate the debug_addr_info
59 array. Check for an address_base that is too large.
60
61 * dwarf.h (xcalloc2): Prototype.
62
63 2015-01-12 Alan Modra <amodra@gmail.com>
64
65 * prdbg.c (print_debugging_info): Don't use void* for function
66 pointer param.
67 * budbg.h (print_debugging_info): Update prototype.
68
69 2015-01-08 Nick Clifton <nickc@redhat.com>
70
71 PR binutils/17512
72 * ojcopy.c (copy_object): Free the symbol table if no symbols
73 could be loaded.
74 (copy_file): Use bfd_close_all_done to close files that could not
75 be copied.
76
77 * sysdump.c (getINT): Fail if reading off the end of the buffer.
78 Replace call to abort with a call to fatal.
79 (getCHARS): Prevetn reading off the end of the buffer.
80
81 * nlmconv.c (i386_mangle_relocs): Skip relocs without an
82 associated symbol.
83 (powerpc_mangle_relocs): Skip unrecognised relocs. Check address
84 range before applying a reloc.
85
86 2015-01-07 Nick Clifton <nickc@redhat.com>
87
88 PR binutils/17512
89 * dlltool.c (scan_obj_file): Break loop if the last archive
90 displayed matches the current archive.
91
92 * objdump.c (display_any_bfd): Add a depth limit to nested archive
93 display in order to avoid infinite loops.
94 * srconv.c: Replace calls to abort with calls to fatal with an
95 error message.
96
97 2015-01-06 Nick Clifton <nickc@redhat.com>
98
99 PR binutils/17512
100 * coffdump.c (dump_coff_section): Check for a symbol being
101 available before printing its name.
102 (main): Check the return value from coff_grok.
103 * coffgrok.c: Reformat and tidy.
104 Add range checks to most functions.
105 (coff_grok): Return NULL if the input bfd is not in a COFF
106 format.
107 * coffgrok.h: Reformat and tidy.
108 (struct coff_section): Change the nrelocs field to unsigned.
109 * srconv.c (main): Check the return value from coff_grok.
110
111 2015-01-05 Nick Clifton <nickc@redhat.com>
112
113 PR binutils/17512
114 * nm.c (print_symbol): Add 'is_synthetic' parameter. Use it to
115 help initialize the info.elfinfo field.
116 (print_size_symbols): Add 'synth_count' parameter. Use it to set
117 the is_synthetic parameter when calling print_symbol.
118 (print_symbols): Likewise.
119 (display_rel_file): Pass synth_count to printing function.
120 (display_archive): Break loop if the last archive displayed
121 matches the current archive.
122 * size.c (display_archive): Likewise.
123
124 2015-01-05 Nick Clifton <nickc@redhat.com>
125
126 PR binutils/17531
127 * dwarf.c (alloc_num_debug_info_entries): New variable.
128 (process_debug_info): Set it. Use it to avoid displaying
129 attributes for which there is no info.
130 (display_debug_abbrev): Check that the debug_info_entry index is
131 valid before using it.
132 (display_loc_list_dwo): Likewise.
133 (process_cu_tu_index): Add range check for an overlarge dw_sect
134 value.
135 (free_debug_memory): Reset alloc_num_debug_info_entries.
136 * readelf.c (slurp_ia64_unwind_table): Warn if the reloc could not
137 be indentified.
138 (dynamic_section_mips_val): Warn if the timestamp is invalid.
139 (print_mips_got_entry): Add a data_end parameter. Warn if a read
140 would go beyond the end of the data, and return an error value.
141 (process_mips_specific): Do not read options from beyond the end
142 of the section.
143 Correct code to display optional data at the end of an option.
144 Warn if there are too many GOT symbols.
145 Update calls to print_mips_got_entry, and handle error returns.
146
147 2015-01-05 Daniel Klauer <daniel.c.klauer@web.de>
148
149 PR binutils/17489
150 * doc/binutils.texi (dlltool): Correct description of --kill-at
151 option.
152
153 2015-01-01 Alan Modra <amodra@gmail.com>
154
155 * version.c (print_version): Just print current year.
156
157 2015-01-01 Alan Modra <amodra@gmail.com>
158
159 Update year range in copyright notice of all files.
160
161 For older changes see ChangeLog-2014
162 \f
163 Copyright (C) 2015 Free Software Foundation, Inc.
164
165 Copying and distribution of this file, with or without modification,
166 are permitted in any medium without royalty provided the copyright
167 notice and this notice are preserved.
168
169 Local Variables:
170 mode: change-log
171 left-margin: 8
172 fill-column: 74
173 version-control: never
174 End:
This page took 0.044802 seconds and 5 git commands to generate.