Mark Wielaard | 52b6b2f | 2018-09-14 12:08:15 +0200 | [diff] [blame^] | 1 | Version 0.174 |
| 2 | |
| 3 | libelf, libdw and all tools now handle extended shnum and shstrndx correctly. |
| 4 | |
| 5 | elfcompress: Don't rewrite input file if no section data needs updating. |
| 6 | Try harder to keep same file mode bits (suid) on rewrite. |
| 7 | |
| 8 | strip: Handle mixed (out of order) allocated/non-allocated sections. |
| 9 | |
| 10 | unstrip: Handle SHT_GROUP sections. |
| 11 | |
| 12 | backends: RISCV and M68K now have backend implementations to generate CFI based |
| 13 | backtraces. |
| 14 | |
| 15 | Fixes CVE-2018-16062, CVE-2018-16402 and CVE-2018-16403. |
| 16 | |
Mark Wielaard | aa36de0 | 2018-06-29 21:02:18 +0200 | [diff] [blame] | 17 | Version 0.173 |
| 18 | |
| 19 | More fixes for crashes and hangs found by afl-fuzz. In particular various |
| 20 | functions now detect and break infinite loops caused by bad DIE tree cycles. |
| 21 | |
| 22 | readelf: Will now lookup the size and signedness of constant value types |
| 23 | to display them correctly (and not just how they were encoded). |
| 24 | |
| 25 | libdw: New function dwarf_next_lines to read CU-less .debug_line data. |
| 26 | dwarf_begin_elf now accepts ELF files containing just .debug_line |
| 27 | or .debug_frame sections (which can be read without needing a DIE |
| 28 | tree from the .debug_info section). |
| 29 | Removed dwarf_getscn_info, which was never implemented. |
| 30 | |
| 31 | backends: Handle BPF simple relocations. |
| 32 | The RISCV backends now handles ABI specific CFI and knows about |
| 33 | RISCV register types and names. |
| 34 | |
Mark Wielaard | 7a1fd63 | 2018-06-11 17:14:39 +0200 | [diff] [blame] | 35 | Version 0.172 |
| 36 | |
| 37 | No functional changes compared to 0.171. |
| 38 | |
| 39 | Various bug fixes in libdw and eu-readelf dealing with bad DWARF5 data. |
| 40 | Thanks to running the afl fuzzer on eu-readelf and various testcases. |
| 41 | |
| 42 | eu-readelf -N is ~15% faster. |
| 43 | |
Mark Wielaard | cf65ca1 | 2018-06-01 21:16:56 +0200 | [diff] [blame] | 44 | Version 0.171 |
| 45 | |
| 46 | DWARF5 and split dwarf, including GNU DebugFission, are supported now. |
| 47 | Data can be read from the new DWARF sections .debug_addr, .debug_line_str, |
| 48 | .debug_loclists, .debug_str_offsets and .debug_rnglists. Plus the new |
| 49 | DWARF5 and GNU DebugFission encodings of the existing .debug sections. |
| 50 | Also in split DWARF .dwo (DWARF object) files. This support is mostly |
| 51 | handled by existing functions (dwarf_getlocation*, dwarf_getsrclines, |
| 52 | dwarf_ranges, dwarf_form*, etc.) now returning the data from the new |
| 53 | sections and data formats. But some new functions have been added |
| 54 | to more easily get information about skeleton and split compile units |
| 55 | (dwarf_get_units and dwarf_cu_info), handle new attribute data |
| 56 | (dwarf_getabbrevattr_data) and to keep references to Dwarf_Dies |
| 57 | that might come from different sections or files (dwarf_die_addr_die). |
| 58 | |
| 59 | Not yet supported are .dwp (Dwarf Package) and .sup (Dwarf Supplementary) |
| 60 | files, the .debug_names index, the .debug_cu_index and .debug_tu_index |
| 61 | sections. Only a single .debug_info (and .debug_types) section are |
| 62 | currently handled. |
| 63 | |
| 64 | readelf: Handle all new DWARF5 sections. |
| 65 | --debug-dump=info+ will show split unit DIEs when found. |
| 66 | --dwarf-skeleton can be used when inspecting a .dwo file. |
| 67 | Recognizes GNU locviews with --debug-dump=loc. |
| 68 | |
| 69 | libdw: New functions dwarf_die_addr_die, dwarf_get_units, |
| 70 | dwarf_getabbrevattr_data and dwarf_cu_info. |
| 71 | libdw will now try to resolve the alt file on first use of |
| 72 | an alt attribute FORM when not set yet with dwarf_set_alt. |
| 73 | dwarf_aggregate_size() now works with multi-dimensional arrays. |
| 74 | |
| 75 | libdwfl: Use process_vm_readv when available instead of ptrace. |
| 76 | |
| 77 | backends: Add a RISC-V backend. |
| 78 | |
| 79 | There were various improvements to build on Windows. |
| 80 | The sha1 and md5 implementations have been removed, they weren't used. |
| 81 | |
Mark Wielaard | d03be4f | 2017-07-14 17:09:40 +0200 | [diff] [blame] | 82 | Version 0.170 |
| 83 | |
Mark Wielaard | 02e3093 | 2017-07-26 18:32:27 +0200 | [diff] [blame] | 84 | libdw: Added new DWARF5 attribute, tag, character encoding, language code, |
Mark Wielaard | f9d791a | 2017-07-26 23:02:18 +0200 | [diff] [blame] | 85 | calling convention, defaulted member function and macro constants |
| 86 | to dwarf.h. |
Mark Wielaard | 54ba4ce | 2017-08-02 18:30:07 +0200 | [diff] [blame] | 87 | New functions dwarf_default_lower_bound and dwarf_line_file. |
Mark Wielaard | 274f28c | 2017-07-26 22:54:59 +0200 | [diff] [blame] | 88 | dwarf_peel_type now handles DWARF5 immutable, packed and shared tags. |
Mark Wielaard | f9d791a | 2017-07-26 23:02:18 +0200 | [diff] [blame] | 89 | dwarf_getmacros now handles DWARF5 .debug_macro sections. |
Mark Wielaard | 8e9c76b | 2017-07-25 15:29:10 +0200 | [diff] [blame] | 90 | |
Mark Wielaard | d03be4f | 2017-07-14 17:09:40 +0200 | [diff] [blame] | 91 | strip: Add -R, --remove-section=SECTION and --keep-section=SECTION. |
| 92 | |
Mark Wielaard | 1609679 | 2017-07-18 14:12:36 +0200 | [diff] [blame] | 93 | backends: The bpf disassembler is now always build on all platforms. |
| 94 | |
Mark Wielaard | 6358858 | 2017-05-05 09:47:29 +0200 | [diff] [blame] | 95 | Version 0.169 |
| 96 | |
| 97 | backends: Add support for EM_PPC64 GNU_ATTRIBUTES. |
| 98 | Frame pointer unwinding fallback support for i386, x86_64, aarch64. |
| 99 | |
| 100 | translations: Update Polish translation. |
| 101 | |
Mark Wielaard | ee38b26 | 2016-10-22 19:18:51 +0200 | [diff] [blame] | 102 | Version 0.168 |
| 103 | |
Mark Wielaard | 515dd0a | 2016-12-27 15:23:53 +0100 | [diff] [blame] | 104 | http://elfutils.org/ is now hosted at http://sourceware.org/elfutils/ |
| 105 | |
| 106 | libelf: gelf_newehdr and gelf_newehdr now return void *. |
| 107 | |
Mark Wielaard | ee38b26 | 2016-10-22 19:18:51 +0200 | [diff] [blame] | 108 | libdw: dwarf.h corrected the DW_LANG_PLI constant name (was DW_LANG_PL1). |
| 109 | |
Mark Wielaard | 515dd0a | 2016-12-27 15:23:53 +0100 | [diff] [blame] | 110 | readelf: Add optional --symbols[=SECTION] argument to select section name. |
| 111 | |
Mark Wielaard | aee5606 | 2016-08-04 13:36:34 +0200 | [diff] [blame] | 112 | Version 0.167 |
| 113 | |
| 114 | libasm: Add eBPF disassembler for EM_BPF files. |
| 115 | |
| 116 | backends: Add m68k and BPF backends. |
| 117 | |
| 118 | ld: Removed. |
| 119 | |
| 120 | dwelf: Add ELF/DWARF string table creation functions. dwelf_strtab_init, |
| 121 | dwelf_strtab_add, dwelf_strtab_add_len, dwelf_strtab_finalize, |
| 122 | dwelf_strent_off, dwelf_strent_str and dwelf_strtab_free. |
| 123 | |
Mark Wielaard | 9ba2458 | 2016-03-02 15:04:43 +0100 | [diff] [blame] | 124 | Version 0.166 |
| 125 | |
| 126 | config: The default program prefix for the installed tools is now eu-. |
| 127 | Use configure --program-prefix="" to not use a program prefix. |
| 128 | |
Mark Wielaard | 7930054 | 2016-01-08 14:44:49 +0100 | [diff] [blame] | 129 | Version 0.165 |
| 130 | |
| 131 | elfcompress: New utility to compress or decompress ELF sections. |
| 132 | |
| 133 | readelf: Add -z,--decompress option. |
| 134 | |
| 135 | libelf: Add elf_compress, elf_compress_gnu, elf32_getchdr, elf64_getchdr |
| 136 | and gelf_getchdr. |
| 137 | |
| 138 | libdwelf: New function dwelf_scn_gnu_compressed_size. |
| 139 | |
| 140 | config: Add libelf and libdw pkg-config files. |
| 141 | |
| 142 | backends: sparc support for core and live backtraces. |
| 143 | |
| 144 | translations: Updated Polish translation. |
| 145 | |
Mark Wielaard | d11eea4 | 2015-10-15 18:28:34 +0200 | [diff] [blame] | 146 | Version 0.164 |
| 147 | |
| 148 | strip, unstrip: Handle ELF files with merged strtab/shstrtab tables. |
| 149 | Handle missing SHF_INFO_LINK section flags. |
| 150 | |
| 151 | libelf: Use int64_t for offsets in libelf.h instead of loff_t. |
| 152 | |
| 153 | libdw: dwarf.h Add preliminary DWARF5 DW_LANG_Haskell. |
| 154 | |
| 155 | libdwfl: dwfl_standard_find_debuginfo now searches any subdir of the binary |
| 156 | path under the debuginfo root when the separate debug file couldn't |
| 157 | be found by build-id. |
| 158 | dwfl_linux_proc_attach can now be called before any Dwfl_Modules |
| 159 | have been reported. |
| 160 | |
| 161 | backends: Better sparc and sparc64 support. |
| 162 | |
| 163 | translations: Updated Ukrainian translation. |
| 164 | |
| 165 | Provide default-yama-scope subpackage. |
| 166 | |
Mark Wielaard | faf0d3d | 2015-06-19 13:43:58 +0200 | [diff] [blame] | 167 | Version 0.163 |
| 168 | |
| 169 | Bug fixes only, no new features. |
| 170 | |
Petr Machata | 7f61734 | 2015-03-18 19:42:02 +0100 | [diff] [blame] | 171 | Version 0.162 |
| 172 | |
| 173 | libdw: Install new header elfutils/known-dwarf.h. |
Mark Wielaard | 027d911 | 2015-06-10 17:44:42 +0200 | [diff] [blame] | 174 | dwarf.h Add preliminary DWARF5 constants DW_TAG_atomic_type, |
| 175 | DW_LANG_Fortran03, DW_LANG_Fortran08. dwarf_peel_type now also |
| 176 | handles DW_TAG_atomic_type. |
Petr Machata | 7f61734 | 2015-03-18 19:42:02 +0100 | [diff] [blame] | 177 | |
Mark Wielaard | d76d73f | 2015-05-19 23:08:00 +0200 | [diff] [blame] | 178 | addr2line: Input addresses are now always interpreted as hexadecimal |
| 179 | numbers, never as octal or decimal numbers. |
Mark Wielaard | 70a504d | 2015-05-19 16:21:27 +0200 | [diff] [blame] | 180 | New option -a, --addresses to print address before each entry. |
Mark Wielaard | cd2da6c | 2015-05-20 11:52:27 +0200 | [diff] [blame] | 181 | New option -C, --demangle to show demangled symbols. |
Mark Wielaard | b23a5b2 | 2015-05-20 14:09:46 +0200 | [diff] [blame] | 182 | New option --pretty-print to print all information on one line. |
Mark Wielaard | d76d73f | 2015-05-19 23:08:00 +0200 | [diff] [blame] | 183 | |
Mark Wielaard | 027d911 | 2015-06-10 17:44:42 +0200 | [diff] [blame] | 184 | ar: CVE-2014-9447 Directory traversal vulnerability in ar extraction. |
| 185 | |
| 186 | backends: x32 support. |
| 187 | |
Mark Wielaard | 3a36e8a | 2014-10-06 22:00:16 +0200 | [diff] [blame] | 188 | Version 0.161 |
| 189 | |
| 190 | libdw: New function dwarf_peel_type. dwarf_aggregate_size now uses |
| 191 | dwarf_peel_type to also provide the sizes of qualified types. |
Petr Machata | fb90bf3 | 2014-10-17 02:47:03 +0200 | [diff] [blame] | 192 | dwarf_getmacros will now serve either of .debug_macro and |
| 193 | .debug_macinfo transparently. New interfaces |
| 194 | dwarf_getmacros_off, dwarf_macro_getsrcfiles, |
| 195 | dwarf_macro_getparamcnt, and dwarf_macro_param are available |
| 196 | for more generalized inspection of macros and their parameters. |
Mark Wielaard | 09dc83d | 2014-12-18 23:41:41 +0100 | [diff] [blame] | 197 | dwarf.h: Add DW_AT_GNU_deleted, DW_AT_noreturn, DW_LANG_C11, |
| 198 | DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14. |
Petr Machata | fb90bf3 | 2014-10-17 02:47:03 +0200 | [diff] [blame] | 199 | |
Mark Wielaard | 2249709 | 2014-05-26 21:28:05 +0200 | [diff] [blame] | 200 | Version 0.160 |
| 201 | |
Mark Wielaard | f18f233 | 2014-08-15 16:03:21 +0200 | [diff] [blame] | 202 | libdw: New functions dwarf_cu_getdwarf, dwarf_cu_die. |
Mark Wielaard | 5efda26 | 2014-08-25 22:13:57 +0200 | [diff] [blame] | 203 | dwarf.h remove non-existing DW_TAG_mutable_type. |
| 204 | |
| 205 | libdwfl: Handle LZMA .ko.xz compressed kernel modules. |
Mark Wielaard | 209f149 | 2014-08-15 13:08:24 +0200 | [diff] [blame] | 206 | |
Mark Wielaard | 2249709 | 2014-05-26 21:28:05 +0200 | [diff] [blame] | 207 | unstrip: New option -F, --force to combining files even if some ELF headers |
| 208 | don't seem to match. |
| 209 | |
Mark Wielaard | 5efda26 | 2014-08-25 22:13:57 +0200 | [diff] [blame] | 210 | backends: Handle ARM THUMB functions. Add support for ppc64le ELFv2 abi. |
| 211 | |
Mark Wielaard | 531a30a | 2014-01-20 23:09:26 +0100 | [diff] [blame] | 212 | Version 0.159 |
| 213 | |
| 214 | stack: New option -d, --debugname to lookup DWARF debuginfo name for frame. |
Mark Wielaard | 13968d9 | 2014-01-21 16:13:49 +0100 | [diff] [blame] | 215 | New option -i, --inlines to show inlined frames using DWARF debuginfo. |
Mark Wielaard | 531a30a | 2014-01-20 23:09:26 +0100 | [diff] [blame] | 216 | |
Mark Wielaard | 9380297 | 2014-04-11 23:52:47 +0200 | [diff] [blame] | 217 | libdwelf: New libdwelf.h header for libdw.so DWARF ELF Low-level Functions. |
Mark Wielaard | bb096d0 | 2014-05-03 00:23:06 +0200 | [diff] [blame] | 218 | New function dwelf_elf_gnu_debuglink, dwelf_dwarf_gnu_debugaltlink, |
| 219 | and dwelf_elf_gnu_build_id. |
| 220 | |
| 221 | libdw: Support for DWZ multifile forms DW_FORM_GNU_ref_alt and |
| 222 | DW_FORM_GNU_strp_alt is now enabled by default and no longer |
| 223 | experimental. Added new functions dwarf_getalt and dwarf_setalt |
| 224 | to get or set the alternative debug file used for the alt FORMs. |
Mark Wielaard | f05dff9 | 2014-05-18 00:28:26 +0200 | [diff] [blame] | 225 | The dwfl_linux_proc_find_elf callback will now find ELF from |
| 226 | process memory for (deleted) files if the Dwfl has process state |
| 227 | attached. |
Mark Wielaard | bb096d0 | 2014-05-03 00:23:06 +0200 | [diff] [blame] | 228 | |
| 229 | libdwfl: The dwfl_build_id_find_debuginfo and dwfl_standard_find_debuginfo |
| 230 | functions will now try to resolve and set the alternative debug file. |
Mark Wielaard | 9380297 | 2014-04-11 23:52:47 +0200 | [diff] [blame] | 231 | |
Mark Wielaard | f05dff9 | 2014-05-18 00:28:26 +0200 | [diff] [blame] | 232 | backends: Add CFI unwinding for arm. Relies on .debug_frame. |
| 233 | Add arm process initial register state compatible mode to AARCH64. |
| 234 | Add aarch64 native and core unwind support. |
| 235 | |
| 236 | other: All separate elfutils-robustify patches have been merged. |
| 237 | CVE-2014-0172 Check overflow before calling malloc to uncompress data. |
| 238 | |
Jan Kratochvil | 3cf491e | 2013-10-30 10:48:20 +0100 | [diff] [blame] | 239 | Version 0.158 |
| 240 | |
| 241 | libdwfl: dwfl_core_file_report has new parameter executable. |
Mark Wielaard | 159ac52 | 2013-12-18 11:05:54 +0100 | [diff] [blame] | 242 | New functions dwfl_module_getsymtab_first_global, |
| 243 | dwfl_module_getsym_info and dwfl_module_addrinfo. |
Jan Kratochvil | 8aa7fbb | 2013-12-18 14:37:49 +0100 | [diff] [blame] | 244 | Added unwinder with type Dwfl_Thread_Callbacks, opaque types |
| 245 | Dwfl_Thread and Dwfl_Frame and functions dwfl_attach_state, |
| 246 | dwfl_pid, dwfl_thread_dwfl, dwfl_thread_tid, dwfl_frame_thread, |
| 247 | dwfl_thread_state_registers, dwfl_thread_state_register_pc, |
Mark Wielaard | e962ec3 | 2013-12-20 10:09:12 +0100 | [diff] [blame] | 248 | dwfl_getthread_frames, dwfl_getthreads, dwfl_thread_getframes |
| 249 | and dwfl_frame_pc. |
Jan Kratochvil | 3cf491e | 2013-10-30 10:48:20 +0100 | [diff] [blame] | 250 | |
Mark Wielaard | 159ac52 | 2013-12-18 11:05:54 +0100 | [diff] [blame] | 251 | addr2line: New option -x to show the section an address was found in. |
| 252 | |
Mark Wielaard | e962ec3 | 2013-12-20 10:09:12 +0100 | [diff] [blame] | 253 | stack: New utility that uses the new unwinder for processes and cores. |
| 254 | |
Mark Wielaard | 70db4cc | 2014-01-03 22:16:34 +0100 | [diff] [blame] | 255 | backends: Unwinder support for i386, x86_64, s390, s390x, ppc and ppc64. |
| 256 | aarch64 support. |
| 257 | |
Mark Wielaard | f36d727 | 2013-09-27 14:02:26 +0200 | [diff] [blame] | 258 | Version 0.157 |
| 259 | |
| 260 | libdw: Add new functions dwarf_getlocations, dwarf_getlocation_attr |
| 261 | and dwarf_getlocation_die. |
| 262 | |
Mark Wielaard | fb92757 | 2013-09-30 13:50:26 +0200 | [diff] [blame] | 263 | readelf: Show contents of NT_SIGINFO and NT_FILE core notes. |
| 264 | |
Mark Wielaard | f36d727 | 2013-09-27 14:02:26 +0200 | [diff] [blame] | 265 | addr2line: Support -i, --inlines output option. |
| 266 | |
| 267 | backends: abi_cfi hook for arm, ppc and s390. |
| 268 | |
Jan Kratochvil | 904aec2 | 2013-04-30 14:27:16 +0200 | [diff] [blame] | 269 | Version 0.156 |
| 270 | |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 271 | lib: New macro COMPAT_VERSION_NEWPROTO. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 272 | |
Jan Kratochvil | 934d36c | 2013-07-19 23:26:28 +0200 | [diff] [blame] | 273 | libdw: Handle GNU extension opcodes in dwarf_getlocation. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 274 | |
Jan Kratochvil | 934d36c | 2013-07-19 23:26:28 +0200 | [diff] [blame] | 275 | libdwfl: Fix STB_GLOBAL over STB_WEAK preference in dwfl_module_addrsym. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 276 | Add minisymtab support. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 277 | Add parameter add_p_vaddr to dwfl_report_elf. |
| 278 | Use DT_DEBUG library search first. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 279 | |
| 280 | libebl: Handle new core note types in EBL. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 281 | |
Jan Kratochvil | 934d36c | 2013-07-19 23:26:28 +0200 | [diff] [blame] | 282 | backends: Interpret NT_ARM_VFP. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 283 | Implement core file registers parsing for s390/s390x. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 284 | |
| 285 | readelf: Add --elf-section input option to inspect an embedded ELF file. |
| 286 | Add -U, --unresolved-address-offsets output control. |
| 287 | Add --debug-dump=decodedline support. |
| 288 | Accept version 8 .gdb_index section format. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 289 | Adjust output formatting width. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 290 | When highpc is in constant form print it also as address. |
| 291 | Display raw .debug_aranges. Use libdw only for decodedaranges. |
Jan Kratochvil | a55b118 | 2013-07-19 00:24:06 +0200 | [diff] [blame] | 292 | |
| 293 | elflint: Add __bss_start__ to the list of allowed symbols. |
| 294 | |
| 295 | tests: Add configure --enable-valgrind option to run all tests under valgrind. |
| 296 | Enable automake parallel-tests for make check. |
| 297 | |
| 298 | translations: Updated Polish translation. |
| 299 | |
| 300 | Updates for Automake 1.13. |
Jan Kratochvil | 904aec2 | 2013-04-30 14:27:16 +0200 | [diff] [blame] | 301 | |
Mark Wielaard | c4010b8 | 2012-07-24 13:20:41 +0200 | [diff] [blame] | 302 | Version 0.155 |
| 303 | |
Mark Wielaard | 27751ed | 2012-08-22 09:57:36 +0200 | [diff] [blame] | 304 | libelf: elf*_xlatetomd now works for cross-endian ELF note data. |
Mark Wielaard | a2210f8 | 2012-08-21 12:22:08 +0200 | [diff] [blame] | 305 | elf_getshdr now works consistently on non-mmaped ELF files after |
| 306 | calling elf_cntl(ELF_C_FDREAD). |
| 307 | Implement support for ar archives with 64-bit symbol table. |
| 308 | |
Mark Wielaard | c4010b8 | 2012-07-24 13:20:41 +0200 | [diff] [blame] | 309 | libdw: dwarf.h corrected the DW_LANG_ObjC constant name (was DW_LANG_Objc). |
| 310 | Any existing sources using the old name will have to be updated. |
Mark Wielaard | a2210f8 | 2012-08-21 12:22:08 +0200 | [diff] [blame] | 311 | Add DW_MACRO_GNU .debug_macro type encodings constants, DW_ATE_UTF |
| 312 | and DW_OP_GNU_parameter_ref to dwarf.h. |
Mark Wielaard | f5519fc | 2012-08-24 13:54:52 +0200 | [diff] [blame] | 313 | Experimental support for DWZ multifile forms DW_FORM_GNU_ref_alt |
| 314 | and DW_FORM_GNU_strp_alt. Disabled by default. Use configure |
| 315 | --enable-dwz to test it. |
Mark Wielaard | a2210f8 | 2012-08-21 12:22:08 +0200 | [diff] [blame] | 316 | |
| 317 | readelf: Add .debug_macro parsing support. |
| 318 | Add .gdb_index version 7 parsing support. |
| 319 | Recognize DW_OP_GNU_parameter_ref. |
Mark Wielaard | c4010b8 | 2012-07-24 13:20:41 +0200 | [diff] [blame] | 320 | |
Mark Wielaard | 3cb9e8c | 2012-08-27 15:31:31 +0200 | [diff] [blame] | 321 | backends: Add support for Tilera TILE-Gx processor. |
| 322 | |
| 323 | translations: Updated Ukrainian translation. |
| 324 | |
Mark Wielaard | 5479725 | 2012-04-27 13:00:50 +0200 | [diff] [blame] | 325 | Version 0.154 |
| 326 | |
Mark Wielaard | d7bde9b | 2012-06-22 14:14:08 +0200 | [diff] [blame] | 327 | libelf: [g]elf[32|64]_offscn() do not match SHT_NOBITS sections at OFFSET. |
| 328 | |
Mark Wielaard | 5479725 | 2012-04-27 13:00:50 +0200 | [diff] [blame] | 329 | libdw: dwarf_highpc function now handles DWARF 4 DW_AT_high_pc constant form. |
Mark Wielaard | d7bde9b | 2012-06-22 14:14:08 +0200 | [diff] [blame] | 330 | Fix bug using dwarf_next_unit to iterate over .debug_types. |
| 331 | |
| 332 | elflint: Now accepts gold linker produced executables. |
Mark Wielaard | 5479725 | 2012-04-27 13:00:50 +0200 | [diff] [blame] | 333 | |
Mark Wielaard | de2ed97 | 2012-06-05 17:15:16 +0200 | [diff] [blame] | 334 | The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for stand-alone |
| 335 | programs. There is now also a formal CONTRIBUTING document describing how to |
| 336 | submit patches. |
| 337 | |
Roland McGrath | 725aad5 | 2011-02-23 19:52:46 -0800 | [diff] [blame] | 338 | Version 0.153 |
| 339 | |
| 340 | libdw: Support reading .zdebug_* DWARF sections compressed via zlib. |
| 341 | |
Mark Wielaard | 52d1f92 | 2012-01-22 19:28:20 +0100 | [diff] [blame] | 342 | libdwfl: Speed up dwfl_module_addrsym. |
| 343 | |
Ulrich Drepper | b4a16cf | 2011-10-02 08:33:19 -0400 | [diff] [blame] | 344 | nm: Support C++ demangling. |
| 345 | |
Roland McGrath | e5ba2a1 | 2011-11-05 21:08:07 -0700 | [diff] [blame] | 346 | ar: Support D modifier for "deterministic output" with no uid/gid/mtime info. |
Roland McGrath | 6e063d9 | 2012-01-20 11:43:36 -0800 | [diff] [blame] | 347 | The U modifier is the inverse. |
Roland McGrath | 3284b79 | 2012-01-20 12:51:46 -0800 | [diff] [blame] | 348 | elfutils can be configured with the --enable-deterministic-archives |
| 349 | option to make the D behavior the default when U is not specified. |
Mark Wielaard | 52d1f92 | 2012-01-22 19:28:20 +0100 | [diff] [blame] | 350 | |
Roland McGrath | 6e063d9 | 2012-01-20 11:43:36 -0800 | [diff] [blame] | 351 | ranlib: Support -D and -U flags with same meaning. |
Roland McGrath | e5ba2a1 | 2011-11-05 21:08:07 -0700 | [diff] [blame] | 352 | |
Mark Wielaard | 52d1f92 | 2012-01-22 19:28:20 +0100 | [diff] [blame] | 353 | readelf: Improve output of -wline. Add support for printing SDT elf notes. |
Roland McGrath | a77881a | 2012-01-23 10:34:17 -0800 | [diff] [blame] | 354 | Add printing of .gdb_index section. |
| 355 | Support for typed DWARF stack, call_site and entry_value. |
Mark Wielaard | 52d1f92 | 2012-01-22 19:28:20 +0100 | [diff] [blame] | 356 | |
| 357 | strip: Add --reloc-debug-sections option. |
| 358 | Improved SHT_GROUP sections handling. |
| 359 | |
Roland McGrath | f339cd6 | 2011-02-02 17:24:53 -0800 | [diff] [blame] | 360 | Version 0.152 |
| 361 | |
Roland McGrath | 8a7b623 | 2011-02-08 19:40:19 -0800 | [diff] [blame] | 362 | Various build and warning nits fixed for newest GCC and Autoconf. |
| 363 | |
Roland McGrath | f339cd6 | 2011-02-02 17:24:53 -0800 | [diff] [blame] | 364 | libdwfl: Yet another prelink-related fix for another regression. |
Roland McGrath | 788cc88 | 2011-02-11 12:38:36 -0800 | [diff] [blame] | 365 | Look for Linux kernel images in files named with compression suffixes. |
Roland McGrath | f339cd6 | 2011-02-02 17:24:53 -0800 | [diff] [blame] | 366 | |
Roland McGrath | 1fb9c91 | 2011-02-11 10:32:30 -0800 | [diff] [blame] | 367 | elfcmp: New flag --ignore-build-id to ignore differing build ID bits. |
Roland McGrath | 4a14ef7 | 2011-02-11 10:42:45 -0800 | [diff] [blame] | 368 | New flag -l/--verbose to print all differences. |
Roland McGrath | 1fb9c91 | 2011-02-11 10:32:30 -0800 | [diff] [blame] | 369 | |
Roland McGrath | f631595 | 2011-01-11 10:33:32 -0800 | [diff] [blame] | 370 | Version 0.151 |
| 371 | |
| 372 | libdwfl: Fix for more prelink cases with separate debug file. |
| 373 | |
| 374 | strip: New flag --strip-sections to remove section headers entirely. |
| 375 | |
Roland McGrath | 65d8e4e | 2010-11-22 17:35:56 -0800 | [diff] [blame] | 376 | Version 0.150 |
| 377 | |
| 378 | libdw: Fix for handling huge .debug_aranges section. |
| 379 | |
| 380 | libdwfl: Fix for handling prelinked DSO with separate debug file. |
| 381 | |
| 382 | findtextrel: Fix diagnostics to work with usual section ordering. |
| 383 | |
| 384 | libebl: i386 backend fix for multi-register integer return value location. |
| 385 | |
Roland McGrath | de44f13 | 2010-08-24 15:38:42 -0700 | [diff] [blame] | 386 | Version 0.149: |
| 387 | |
Roland McGrath | 932585d | 2010-05-08 04:01:14 -0700 | [diff] [blame] | 388 | libdw: Decode new DW_OP_GNU_implicit_pointer operation; |
| 389 | new function dwarf_getlocation_implicit_pointer. |
| 390 | |
Roland McGrath | de44f13 | 2010-08-24 15:38:42 -0700 | [diff] [blame] | 391 | libdwfl: New function dwfl_dwarf_line. |
| 392 | |
Roland McGrath | 5c45def | 2010-09-09 23:55:32 -0700 | [diff] [blame] | 393 | addr2line: New flag -F/--flags to print more DWARF line information details. |
Roland McGrath | de44f13 | 2010-08-24 15:38:42 -0700 | [diff] [blame] | 394 | |
Roland McGrath | 6849dbb | 2010-09-09 23:26:12 -0700 | [diff] [blame] | 395 | strip: -g recognizes .gdb_index as a debugging section. |
| 396 | |
Roland McGrath | 1fa6bf4 | 2010-05-06 01:14:32 -0700 | [diff] [blame] | 397 | Version 0.148: |
| 398 | |
Roland McGrath | 2b1f095 | 2010-06-20 17:55:50 -0700 | [diff] [blame] | 399 | libdw: Accept DWARF 4 format: new functions dwarf_next_unit, dwarf_offdie_types. |
Roland McGrath | c70cf4e | 2010-06-18 17:01:05 -0700 | [diff] [blame] | 400 | New functions dwarf_lineisa, dwarf_linediscriminator, dwarf_lineop_index. |
Roland McGrath | 3e4b5bb | 2010-06-16 03:40:56 -0700 | [diff] [blame] | 401 | |
Roland McGrath | 1fa6bf4 | 2010-05-06 01:14:32 -0700 | [diff] [blame] | 402 | libdwfl: Fixes in core-file handling, support cores from PIEs. |
| 403 | When working from build IDs, don't open a named file that mismatches. |
| 404 | |
Roland McGrath | 2b1f095 | 2010-06-20 17:55:50 -0700 | [diff] [blame] | 405 | readelf: Handle DWARF 4 formats. |
Roland McGrath | 7fac1ce | 2010-06-01 15:56:58 -0700 | [diff] [blame] | 406 | |
Roland McGrath | fba8ec8 | 2010-05-03 11:42:53 -0700 | [diff] [blame] | 407 | Version 0.147: |
| 408 | |
| 409 | libdw: Fixes in CFI handling, best possible handling of bogus CFA ops. |
| 410 | |
| 411 | libdwfl: Ignore R_*_NONE relocs, works around old (binutils) ld -r bugs. |
| 412 | |
Ulrich Drepper | ad64d8e | 2010-03-04 21:51:19 -0800 | [diff] [blame] | 413 | Version 0.146: |
| 414 | |
Roland McGrath | 8068e06 | 2010-03-10 23:49:13 -0800 | [diff] [blame] | 415 | libdwfl: New function dwfl_core_file_report. |
| 416 | |
Roland McGrath | 056d693 | 2010-02-15 16:05:58 -0800 | [diff] [blame] | 417 | Version 0.145: |
| 418 | |
| 419 | Fix build with --disable-dependency-tracking. |
| 420 | |
| 421 | Fix build with most recent glibc headers. |
| 422 | |
Roland McGrath | 4b0ee3b | 2010-02-18 14:04:45 -0800 | [diff] [blame] | 423 | libelf: More robust to bogus section headers. |
| 424 | |
Roland McGrath | 056d693 | 2010-02-15 16:05:58 -0800 | [diff] [blame] | 425 | libdw: Fix CFI decoding. |
| 426 | |
| 427 | libdwfl: Fix address bias returned by CFI accessors. |
Roland McGrath | 4b0ee3b | 2010-02-18 14:04:45 -0800 | [diff] [blame] | 428 | Fix core file module layout identification. |
Roland McGrath | 056d693 | 2010-02-15 16:05:58 -0800 | [diff] [blame] | 429 | |
| 430 | readelf: Fix CFI decoding. |
| 431 | |
Roland McGrath | ec9746f | 2010-01-04 22:08:45 -0800 | [diff] [blame] | 432 | Version 0.144: |
| 433 | |
Roland McGrath | 6fd3cd1 | 2010-01-07 19:41:04 -0800 | [diff] [blame] | 434 | libelf: New function elf_getphdrnum. |
| 435 | Now support using more than 65536 program headers in a file. |
| 436 | |
Roland McGrath | ebc5c88 | 2010-01-05 22:53:31 -0800 | [diff] [blame] | 437 | libdw: New function dwarf_aggregate_size for computing (constant) type |
| 438 | sizes, including array_type cases with nontrivial calculation. |
| 439 | |
Roland McGrath | ec9746f | 2010-01-04 22:08:45 -0800 | [diff] [blame] | 440 | readelf: Don't give errors for missing info under -a. |
| 441 | Handle Linux "VMCOREINFO" notes under -n. |
| 442 | |
Roland McGrath | de69d52 | 2009-08-07 18:26:19 -0700 | [diff] [blame] | 443 | Version 0.143: |
| 444 | |
| 445 | libdw: Various convenience functions for individual attributes now use |
| 446 | dwarf_attr_integrate to look up indirect inherited attributes. |
Roland McGrath | 7e0aecd | 2009-09-17 15:02:34 -0700 | [diff] [blame] | 447 | Location expression handling now supports DW_OP_implicit_value. |
Roland McGrath | de69d52 | 2009-08-07 18:26:19 -0700 | [diff] [blame] | 448 | |
Roland McGrath | e5a1a81 | 2009-08-26 03:05:50 -0700 | [diff] [blame] | 449 | libdwfl: Support automatic decompression of files in XZ format, |
| 450 | and of Linux kernel images made with bzip2 or LZMA (as well as gzip). |
Roland McGrath | d6ccdc1 | 2009-08-26 00:23:01 -0700 | [diff] [blame] | 451 | |
Ulrich Drepper | f189493 | 2009-06-13 15:55:42 -0700 | [diff] [blame] | 452 | Version 0.142: |
| 453 | |
| 454 | libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx alias |
Ulrich Drepper | b4a16cf | 2011-10-02 08:33:19 -0400 | [diff] [blame] | 455 | for elf_getshstrndx and deprecate original names. Sun screwed up |
| 456 | their implementation and asked for a solution. |
Ulrich Drepper | f189493 | 2009-06-13 15:55:42 -0700 | [diff] [blame] | 457 | |
Ulrich Drepper | 70c442c | 2009-07-08 00:53:24 -0700 | [diff] [blame] | 458 | libebl: Add support for STB_GNU_UNIQUE. |
| 459 | |
Ulrich Drepper | 96d950e | 2009-07-14 10:42:01 -0700 | [diff] [blame] | 460 | elflint: Add support for STB_GNU_UNIQUE. |
| 461 | |
Roland McGrath | 5dbccdb | 2009-06-28 14:48:02 -0700 | [diff] [blame] | 462 | readelf: Add -N option, speeds up DWARF printing without address->name lookups. |
| 463 | |
Roland McGrath | 409fe10 | 2009-07-23 11:32:47 -0700 | [diff] [blame] | 464 | libdw: Add support for decoding DWARF CFI into location description form. |
| 465 | Handle some new DWARF 3 expression operations previously omitted. |
| 466 | Basic handling of some new encodings slated for DWARF 4. |
| 467 | |
Roland McGrath | 54eb890 | 2009-04-14 03:18:10 -0700 | [diff] [blame] | 468 | Version 0.141: |
| 469 | |
Roland McGrath | eb9ba47 | 2009-04-14 18:44:45 -0700 | [diff] [blame] | 470 | libebl: sparc backend fixes; |
| 471 | some more arm backend support |
Roland McGrath | d86e183 | 2009-04-20 00:49:33 -0700 | [diff] [blame] | 472 | |
Roland McGrath | 54eb890 | 2009-04-14 03:18:10 -0700 | [diff] [blame] | 473 | libdwfl: fix dwfl_module_build_id for prelinked DSO case; |
| 474 | fixes in core file support; |
| 475 | dwfl_module_getsym interface improved for non-address symbols |
Roland McGrath | d86e183 | 2009-04-20 00:49:33 -0700 | [diff] [blame] | 476 | |
Roland McGrath | 54eb890 | 2009-04-14 03:18:10 -0700 | [diff] [blame] | 477 | strip: fix infinite loop on strange inputs with -f |
| 478 | |
Roland McGrath | d86e183 | 2009-04-20 00:49:33 -0700 | [diff] [blame] | 479 | addr2line: take -j/--section=NAME option for binutils compatibility |
| 480 | (same effect as '(NAME)0x123' syntax already supported) |
| 481 | |
Ulrich Drepper | 8a3b0fa | 2009-02-16 11:02:37 -0800 | [diff] [blame] | 482 | Version 0.140: |
| 483 | |
| 484 | libelf: Fix regression in creation of section header |
| 485 | |
| 486 | libdwfl: Less strict behavior if DWARF reader ist just used to display data |
| 487 | |
Ulrich Drepper | 3bf5759 | 2009-01-01 18:52:05 -0800 | [diff] [blame] | 488 | Version 0.139: |
| 489 | |
| 490 | libcpu: Add Intel SSE4 disassembler support |
| 491 | |
Ulrich Drepper | 05d2b20 | 2009-01-16 17:58:54 -0800 | [diff] [blame] | 492 | readelf: Implement call frame information and exception handling dumping. |
Ulrich Drepper | b4a16cf | 2011-10-02 08:33:19 -0400 | [diff] [blame] | 493 | Add -e option. Enable it implicitly for -a. |
Ulrich Drepper | ac194d0 | 2009-01-06 00:30:01 -0800 | [diff] [blame] | 494 | |
Ulrich Drepper | 3a52c7a | 2009-01-16 21:11:49 -0800 | [diff] [blame] | 495 | elflint: Check PT_GNU_EH_FRAME program header entry. |
| 496 | |
Roland McGrath | d666b00 | 2009-01-06 02:14:26 -0800 | [diff] [blame] | 497 | libdwfl: Support automatic gzip/bzip2 decompression of ELF files. |
| 498 | |
Roland McGrath | d8ca9bd | 2008-12-24 01:09:18 -0800 | [diff] [blame] | 499 | Version 0.138: |
| 500 | |
| 501 | Install <elfutils/version.h> header file for applications to use in source |
| 502 | version compatibility checks. |
| 503 | |
| 504 | libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM |
| 505 | |
| 506 | libcpu: disassembler fixes |
| 507 | |
| 508 | libdwfl: bug fixes |
| 509 | |
| 510 | libelf: bug fixes |
| 511 | |
| 512 | nm: bug fixes for handling corrupt input files |
| 513 | |
Ulrich Drepper | bb48a27 | 2008-08-27 03:01:47 +0000 | [diff] [blame] | 514 | Version 0.137: |
| 515 | |
| 516 | Minor fixes for unreleased 0.136 release. |
| 517 | |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame] | 518 | Version 0.136: |
| 519 | |
| 520 | libdwfl: bug fixes; new "segment" interfaces; |
| 521 | all the libdwfl-based tools now support --core=COREFILE option |
| 522 | |
Roland McGrath | b37d253 | 2008-05-07 18:38:35 +0000 | [diff] [blame] | 523 | Version 0.135: |
| 524 | |
| 525 | libdwfl: bug fixes |
| 526 | |
| 527 | strip: changed handling of ET_REL files wrt symbol tables and relocs |
| 528 | |
Roland McGrath | 60982e6 | 2008-04-05 00:40:51 +0000 | [diff] [blame] | 529 | Version 0.134: |
| 530 | |
| 531 | elflint: backend improvements for sparc, alpha |
| 532 | |
| 533 | libdwfl, libelf: bug fixes |
| 534 | |
Roland McGrath | 47c5c35 | 2008-02-29 10:17:16 +0000 | [diff] [blame] | 535 | Version 0.133: |
| 536 | |
| 537 | readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A) |
| 538 | |
| 539 | readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV |
| 540 | |
| 541 | libdwfl: bug fixes and optimization in relocation handling |
| 542 | |
| 543 | elfcmp: bug fix for non-allocated section handling |
| 544 | |
Ulrich Drepper | 1c5928d | 2008-03-01 18:34:56 +0000 | [diff] [blame] | 545 | ld: implement newer features of binutils linker. |
| 546 | |
Ulrich Drepper | 28a0c61 | 2008-01-21 18:57:48 +0000 | [diff] [blame] | 547 | Version 0.132: |
| 548 | |
| 549 | libcpu: Implement x86 and x86-64 disassembler. |
| 550 | libasm: Add interface for disassembler. |
| 551 | |
| 552 | all programs: add debugging of branch prediction. |
| 553 | |
| 554 | libelf: new function elf_scnshndx. |
| 555 | |
Roland McGrath | 478a960 | 2007-11-08 00:59:30 +0000 | [diff] [blame] | 556 | Version 0.131: |
| 557 | |
| 558 | libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated; |
| 559 | bug fixes for oddly-formatted DWARF |
| 560 | |
| 561 | libdwfl: bug fixes in offline archive support, symbol table handling; |
| 562 | apply partial relocations for dwfl_module_address_section on ET_REL |
| 563 | |
| 564 | libebl: powerpc backend support for Altivec registers |
| 565 | |
Roland McGrath | c76f0b0 | 2007-09-27 07:31:33 +0000 | [diff] [blame] | 566 | Version 0.130: |
| 567 | |
| 568 | readelf: -p option can take an argument like -x for one section, |
Roland McGrath | 59ea7f3 | 2007-10-04 08:50:09 +0000 | [diff] [blame] | 569 | or no argument (as before) for all SHF_STRINGS sections; |
Ulrich Drepper | b597dfa | 2007-10-16 05:21:27 +0000 | [diff] [blame] | 570 | new option --archive-index (or -c); |
| 571 | improved -n output for core files, on many machines |
Roland McGrath | 59ea7f3 | 2007-10-04 08:50:09 +0000 | [diff] [blame] | 572 | |
| 573 | libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk; |
| 574 | new functions gelf_getnote, gelf_getauxv, gelf_update_auxv |
| 575 | |
| 576 | readelf, elflint: handle SHT_NOTE sections without requiring phdrs |
| 577 | |
Ulrich Drepper | b597dfa | 2007-10-16 05:21:27 +0000 | [diff] [blame] | 578 | elflint: stricter checks on debug sections |
| 579 | |
Roland McGrath | 59ea7f3 | 2007-10-04 08:50:09 +0000 | [diff] [blame] | 580 | libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debuginfo, |
| 581 | dwfl_module_build_id, dwfl_module_report_build_id; |
| 582 | support dynamic symbol tables found via phdrs; |
| 583 | dwfl_standard_find_debuginfo now uses build IDs when available |
| 584 | |
| 585 | unstrip: new option --list (or -n) |
Roland McGrath | c76f0b0 | 2007-09-27 07:31:33 +0000 | [diff] [blame] | 586 | |
Ulrich Drepper | b597dfa | 2007-10-16 05:21:27 +0000 | [diff] [blame] | 587 | libebl: backend improvements for sparc, alpha, powerpc |
| 588 | |
Roland McGrath | 60fc84c | 2007-08-03 21:59:15 +0000 | [diff] [blame] | 589 | Version 0.129: |
| 590 | |
| 591 | readelf: new options --hex-dump (or -x), --strings (or -p) |
| 592 | |
| 593 | addr2line: new option --symbols (or -S) |
| 594 | |
Roland McGrath | 4be1524 | 2007-04-25 03:09:33 +0000 | [diff] [blame] | 595 | Version 0.128: |
| 596 | |
| 597 | new program: unstrip |
| 598 | |
| 599 | elfcmp: new option --hash-inexact |
| 600 | |
Ulrich Drepper | a1090f8 | 2007-03-30 19:16:14 +0000 | [diff] [blame] | 601 | Version 0.127: |
Ulrich Drepper | 6258e74 | 2007-03-13 06:22:40 +0000 | [diff] [blame] | 602 | |
Roland McGrath | 43da989 | 2007-04-16 23:13:37 +0000 | [diff] [blame] | 603 | libdw: new function dwarf_getsrcdirs |
| 604 | |
Ulrich Drepper | f527aa8 | 2007-04-19 04:15:00 +0000 | [diff] [blame] | 605 | libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add, |
| 606 | dwfl_module_address_section |
Ulrich Drepper | 6258e74 | 2007-03-13 06:22:40 +0000 | [diff] [blame] | 607 | |
Ulrich Drepper | ce0bdb6 | 2007-02-05 07:13:52 +0000 | [diff] [blame] | 608 | Version 0.126: |
| 609 | |
| 610 | new program: ar |
| 611 | |
Ulrich Drepper | 56bc0b8 | 2006-12-18 22:38:08 +0000 | [diff] [blame] | 612 | Version 0.125: |
| 613 | |
| 614 | elflint: Compare DT_GNU_HASH tests. |
| 615 | |
| 616 | move archives into -static RPMs |
| 617 | |
| 618 | libelf, elflint: better support for core file handling |
| 619 | |
Roland McGrath | c373d85 | 2006-10-10 00:25:21 +0000 | [diff] [blame] | 620 | Version 0.124: |
| 621 | |
| 622 | libebl: sparc backend support for return value location |
| 623 | |
| 624 | libebl, libdwfl: backend register name support extended with more info |
| 625 | |
| 626 | libelf, libdw: bug fixes for unaligned accesses on machines that care |
| 627 | |
| 628 | readelf, elflint: trivial bugs fixed |
| 629 | |
Roland McGrath | 1dee360 | 2006-08-15 01:57:03 +0000 | [diff] [blame] | 630 | Version 0.123: |
| 631 | |
| 632 | libebl: Backend build fixes, thanks to Stepan Kasal. |
| 633 | |
| 634 | libebl: ia64 backend support for register names, return value location |
| 635 | |
| 636 | libdwfl: Handle truncated linux kernel module section names. |
| 637 | |
| 638 | libdwfl: Look for linux kernel "vmlinux" files with ".debug" suffix. |
| 639 | |
| 640 | elflint: Fix checks to permit --hash-style=gnu format. |
| 641 | |
Ulrich Drepper | 28ed895 | 2006-07-07 03:43:47 +0000 | [diff] [blame] | 642 | Version 0.122: |
| 643 | |
Ulrich Drepper | cc41562 | 2006-07-12 19:42:23 +0000 | [diff] [blame] | 644 | libebl: add function to test for relative relocation |
Ulrich Drepper | 28ed895 | 2006-07-07 03:43:47 +0000 | [diff] [blame] | 645 | |
| 646 | elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks |
| 647 | |
| 648 | elflint, readelf: add support for DT_GNU_HASH |
| 649 | libelf: add elf_gnu_hash |
| 650 | |
| 651 | elflint, readelf: add support for 64-bit SysV-style hash tables |
| 652 | |
Ulrich Drepper | cc41562 | 2006-07-12 19:42:23 +0000 | [diff] [blame] | 653 | libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym. |
| 654 | |
Ulrich Drepper | d9a8712 | 2006-05-28 08:00:33 +0000 | [diff] [blame] | 655 | Version 0.121: |
| 656 | |
| 657 | libelf: bug fixes for rewriting existing files when using mmap. |
| 658 | |
| 659 | make all installed headers usable in C++ code. |
| 660 | |
| 661 | readelf: better output format. |
| 662 | |
Ulrich Drepper | 6ca4600 | 2006-06-12 22:40:23 +0000 | [diff] [blame] | 663 | elflint: fix tests of dynamic section content. |
| 664 | |
| 665 | ld: Implement --as-needed, --execstack, PT_GNU_STACK. Many small patches. |
| 666 | |
Ulrich Drepper | d9a8712 | 2006-05-28 08:00:33 +0000 | [diff] [blame] | 667 | libdw, libdwfl: handle files without aranges info. |
| 668 | |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 669 | Version 0.120: |
| 670 | |
| 671 | Bug fixes. |
| 672 | |
| 673 | dwarf.h updated for DWARF 3.0 final specification. |
| 674 | |
| 675 | libdwfl: New function dwfl_version. |
| 676 | |
Ulrich Drepper | 82c345d | 2006-04-04 22:07:54 +0000 | [diff] [blame] | 677 | The license is now GPL for most files. The libelf, libebl, libdw, |
| 678 | and libdwfl libraries have additional exceptions. Add reference to |
| 679 | OIN. |
| 680 | |
tailor | 808b412 | 2006-01-13 18:50:48 +0000 | [diff] [blame] | 681 | Version 0.119: |
| 682 | |
| 683 | bug fixes |
| 684 | |
Ulrich Drepper | 607e054 | 2005-12-04 15:51:06 +0000 | [diff] [blame] | 685 | Version 0.118: |
| 686 | |
| 687 | elflint: more tests. |
| 688 | |
Roland McGrath | 994b489 | 2005-12-05 22:46:21 +0000 | [diff] [blame] | 689 | libdwfl: New function dwfl_module_register_names. |
| 690 | |
| 691 | libebl: New backend hook for register names. |
| 692 | |
Roland McGrath | 37ecca7 | 2005-11-18 01:42:03 +0000 | [diff] [blame] | 693 | Version 0.117: |
| 694 | |
| 695 | libdwfl: New function dwfl_module_return_value_location. |
| 696 | |
| 697 | libebl: Backend improvements for several CPUs. |
| 698 | |
Roland McGrath | 07d4f2f | 2005-10-28 06:56:24 +0000 | [diff] [blame] | 699 | Version 0.116: |
| 700 | |
| 701 | libdw: New functions dwarf_ranges, dwarf_entrypc, dwarf_diecu, |
Roland McGrath | 6724c90 | 2005-10-28 07:07:19 +0000 | [diff] [blame] | 702 | dwarf_entry_breakpoints. Removed Dwarf_Func type and functions |
| 703 | dwarf_func_name, dwarf_func_lowpc, dwarf_func_highpc, |
| 704 | dwarf_func_entrypc, dwarf_func_die; dwarf_getfuncs callback now uses |
| 705 | Dwarf_Die, and dwarf_func_file, dwarf_func_line, dwarf_func_col |
| 706 | replaced by dwarf_decl_file, dwarf_decl_line, dwarf_decl_column; |
| 707 | dwarf_func_inline, dwarf_func_inline_instances now take Dwarf_Die. |
| 708 | Type Dwarf_Loc renamed to Dwarf_Op; dwarf_getloclist, |
| 709 | dwarf_addrloclists renamed dwarf_getlocation, dwarf_getlocation_addr. |
Roland McGrath | 07d4f2f | 2005-10-28 06:56:24 +0000 | [diff] [blame] | 710 | |
Roland McGrath | c94e47d | 2005-08-27 10:37:20 +0000 | [diff] [blame] | 711 | Version 0.115: |
| 712 | |
Ulrich Drepper | fbe998a | 2005-08-29 16:27:10 +0000 | [diff] [blame] | 713 | libelf: speed-ups of non-mmap reading. |
| 714 | |
| 715 | strings: New program. |
| 716 | |
| 717 | Implement --enable-gcov option for configure. |
| 718 | |
Roland McGrath | c94e47d | 2005-08-27 10:37:20 +0000 | [diff] [blame] | 719 | libdw: New function dwarf_getscopes_die. |
| 720 | |
Ulrich Drepper | 5d83229 | 2005-08-15 21:36:27 +0000 | [diff] [blame] | 721 | Version 0.114: |
| 722 | |
| 723 | libelf: new function elf_getaroff |
| 724 | |
Roland McGrath | a5c2643 | 2005-08-18 23:41:56 +0000 | [diff] [blame] | 725 | libdw: Added dwarf_func_die, dwarf_func_inline, dwarf_func_inline_instances. |
| 726 | |
Roland McGrath | 7c77729 | 2005-08-24 18:53:53 +0000 | [diff] [blame] | 727 | libdwfl: New functions dwfl_report_offline, dwfl_offline_section_address, |
| 728 | dwfl_linux_kernel_report_offline. |
| 729 | |
Ulrich Drepper | 5d83229 | 2005-08-15 21:36:27 +0000 | [diff] [blame] | 730 | ranlib: new program |
| 731 | |
Ulrich Drepper | 637963b | 2005-08-07 05:33:07 +0000 | [diff] [blame] | 732 | Version 0.113: |
| 733 | |
| 734 | elflint: relax a bit. Allow version definitions for defined symbols against |
| 735 | DSO versions also for symbols in nobits sections. Allow .rodata section |
| 736 | to have STRINGS and MERGE flag set. |
| 737 | |
Roland McGrath | 1c83bf1 | 2005-08-11 07:03:55 +0000 | [diff] [blame] | 738 | strip: add some more compatibility with binutils. |
| 739 | |
Ulrich Drepper | c911c9e | 2005-08-02 16:07:42 +0000 | [diff] [blame] | 740 | Version 0.112: |
| 741 | |
| 742 | elfcmp: some more relaxation. |
| 743 | |
Ulrich Drepper | dbace23 | 2005-08-06 01:37:23 +0000 | [diff] [blame] | 744 | elflint: many more tests, especially regarding to symbol versioning. |
Ulrich Drepper | 41de488 | 2005-08-03 00:02:56 +0000 | [diff] [blame] | 745 | |
| 746 | libelf: Add elfXX_offscn and gelf_offscn. |
| 747 | |
Ulrich Drepper | a38998e | 2005-08-03 02:05:39 +0000 | [diff] [blame] | 748 | libasm: asm_begin interface changes. |
| 749 | |
| 750 | libebl: Add three new interfaces to directly access machine, class, and |
| 751 | data encoding information. |
| 752 | |
Ulrich Drepper | 8a68774 | 2005-08-03 02:24:12 +0000 | [diff] [blame] | 753 | objdump: New program. Just the beginning. |
| 754 | |
Ulrich Drepper | 7018915 | 2005-07-28 21:31:36 +0000 | [diff] [blame] | 755 | Version 0.111: |
| 756 | |
| 757 | libdw: now contains all of libdwfl. The latter is not installed anymore. |
| 758 | |
| 759 | elfcmp: little usability tweak, name and index of differing section is printed. |
| 760 | |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 761 | Version 0.110: |
| 762 | |
Roland McGrath | 1c83bf1 | 2005-08-11 07:03:55 +0000 | [diff] [blame] | 763 | libelf: fix a number of problems with elf_update |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 764 | |
| 765 | elfcmp: fix a few bugs. Compare gaps. |
| 766 | |
| 767 | Fix a few PLT problems and mudflap build issues. |
| 768 | |
| 769 | libebl: Don't expose Ebl structure definition in libebl.h. It's now private. |
| 770 | |
| 771 | Version 0.109: |
| 772 | |
| 773 | libebl: Check for matching modules. |
| 774 | |
| 775 | elflint: Check that copy relocations only happen for OBJECT or NOTYPE symbols. |
| 776 | |
| 777 | elfcmp: New program. |
| 778 | |
| 779 | libdwfl: New library. |
| 780 | |
| 781 | Version 0.108: |
| 782 | |
| 783 | strip: fix bug introduced in last change |
| 784 | |
| 785 | libdw: records returned by dwarf_getsrclines are now sorted by address |
| 786 | |
| 787 | Version 0.107: |
| 788 | |
| 789 | readelf: improve DWARF output format |
| 790 | |
| 791 | strip: support Linux kernel modules |
| 792 | |
| 793 | Version 0.106: |
| 794 | |
| 795 | libdw: Updated dwarf.h from DWARF3 spec |
| 796 | libdw: add new funtions dwarf_func_entrypc, dwarf_func_file, dwarf_func_line, |
| 797 | dwarf_func_col, dwarf_getsrc_file |
| 798 | |
| 799 | Version 0.105: |
| 800 | |
| 801 | addr2line: New program |
| 802 | |
| 803 | libdw: add new functions: dwarf_addrdie, dwarf_macro_*, dwarf_getfuncs, |
| 804 | dwarf_func_*. |
| 805 | |
| 806 | findtextrel: use dwarf_addrdie |
| 807 | |
| 808 | Version 0.104: |
| 809 | |
| 810 | findtextrel: New program. |
| 811 | |
| 812 | Version 0.103: |
| 813 | |
| 814 | libdw: Fix using libdw.h with gcc < 4 and C++ code. Compiler bug. |
| 815 | |
| 816 | Version 0.102: |
| 817 | |
| 818 | More Makefile and spec file cleanups. |
| 819 | |
| 820 | Version 0.101: |
| 821 | |
| 822 | Remove most gettext autoconf handling. |
| 823 | |
| 824 | Add more warnings |
| 825 | |
| 826 | Fix resulting problems. One actual bug found and fixed this way |
| 827 | |
| 828 | Version 0.100: |
| 829 | |
| 830 | libebl: Fix x86-64 relocations. |
| 831 | |
| 832 | Add -Wunused -Wextra warnings. |
| 833 | |
| 834 | Some cleanups resulting from those additional warnings. |
| 835 | |
| 836 | Lots of Makefile cleanup. |
| 837 | |
| 838 | Version 0.99: |
| 839 | |
| 840 | libelf: add gelf_checksum prototype to <libelf.h> |
| 841 | |
| 842 | libelf: fix elf*_checksum handling of NOBITS sections |
| 843 | |
| 844 | Finish mudflap support. |
| 845 | |
| 846 | Fix three bugs found by mudflap. |
| 847 | |
| 848 | ld: add as_needed support |
| 849 | |
| 850 | Version 0.98: |
| 851 | |
| 852 | readelf: in section to segment mapping, indicate read-only sections. |
| 853 | |
| 854 | elflint: more relaxation for GNU ld |
| 855 | |
| 856 | Version 0.97: |
| 857 | |
| 858 | Fix compiling with gcc 4.0. |
| 859 | Some tests called elflint without appropriate LD_LIBRARY_PATH. |
| 860 | |
| 861 | Version 0.96: |
| 862 | |
| 863 | Fix support for platforms with lib64. |
| 864 | |
| 865 | Version 0.95: |
| 866 | |
| 867 | libebl: add ppc and ppc64 support |
| 868 | |
| 869 | readelf: fix minimal memory leak. |
| 870 | |
| 871 | Add support to compile with mudflap. |
| 872 | |
| 873 | Modernize configure.ac. Move scripts in config subdir. |
| 874 | |
| 875 | Modernize *-po directory infrastructure. |
| 876 | |
| 877 | libelf: Add gelf_getlib and gelf_update_lib |
| 878 | |
| 879 | readelf: print liblist sections |
| 880 | |
| 881 | Version 0.94: |
| 882 | |
| 883 | Fix some minimal build problems. |
| 884 | |
| 885 | Version 0.93: |
| 886 | |
| 887 | ibdw: tons of new functionality and bug fixes. Several interface changes. |
| 888 | |
| 889 | readelf: use libdw now. |
| 890 | |
| 891 | libdwarf: removed completely. |
| 892 | |
| 893 | Version 0.92: |
| 894 | |
| 895 | configuration changes. |
| 896 | |
| 897 | Version 0.91: |
| 898 | |
| 899 | libdw: fix memory handling. Implement source line handling. |
| 900 | nm: use libdw instead of libdwarf. |
| 901 | libelf: change to GPL from OSL1 for now. |
| 902 | |
| 903 | Version 0.90: |
| 904 | |
| 905 | libebl: Recognize a few more section types and dynamic tags and return |
| 906 | approriate strings. |
| 907 | |
| 908 | Version 0.89: |
| 909 | |
| 910 | strip: fix overwriting of symbol table in input file. |
| 911 | |
| 912 | Version 0.88: |
| 913 | |
| 914 | libebl: Add some ia64 bits. |
| 915 | |
| 916 | Version 0.87: |
| 917 | |
| 918 | Bug fixes for big endian and some 64-bit machines. |
| 919 | |
| 920 | Version 0.86: |
| 921 | |
| 922 | strip: fix handling of Alpha and s390x which use incorrect hash bucket sizes. |
| 923 | |
| 924 | ld: tons of changes, moving towards usability. |
| 925 | |
| 926 | Version 0.85: |
| 927 | |
| 928 | strip: update section group symbol index if the associated symbol table changed |
| 929 | |
| 930 | libelf: fix two problems with generating output not via mmap |
| 931 | |
| 932 | elflint: add probably 10-15 more tests |
| 933 | libebl: add support for some of the new tests |
| 934 | |
| 935 | ld: gazillion changes |
| 936 | |
| 937 | Version 0.84: |
| 938 | |
| 939 | elflint: deal with .rel.dyn section. Fix a problem with rela platforms. |
| 940 | Handle PT_GNU_STACK. Change to write messages to stdout. |
| 941 | |
| 942 | readelf: fix a problem with version information in the symbol table output. |
| 943 | |
| 944 | strip: update all version symbol table entries |
| 945 | |
| 946 | Version 0.83: |
| 947 | |
| 948 | size: fix a warning |
| 949 | |
| 950 | strip: last changed caused problems when the symbol table is before the |
| 951 | relocation section. Fixed. This fix also improved the asymptotic |
| 952 | behavior if many symbol table sections are present. |
| 953 | |
| 954 | Version 0.82: |
| 955 | |
| 956 | Run strip tests with the correct libelf and libebl. |
| 957 | |
| 958 | libelf: fix bug in verneed byte order changing code. |
| 959 | |
| 960 | Version 0.81: |
| 961 | |
| 962 | strip: Remove unused symbol table entries. This might require updating |
| 963 | various other sections. |
| 964 | |
| 965 | Version 0.80: |
| 966 | |
| 967 | Fix some libelf problems with ET_REL files. |
| 968 | |
| 969 | Version 0.79: |
| 970 | |
| 971 | More warning changes, mainly by jbj. |
| 972 | |
| 973 | libdw: yet more new code. dwarf_child and dwarf_sibling should now actually |
| 974 | work. |
| 975 | |
| 976 | Version 0.78: |
| 977 | |
| 978 | libdw: 10+ new functions. get-pubnames2 works now fully. Almost all the |
| 979 | code needed for nm is in place. |
| 980 | |
| 981 | Version 0.77: |
| 982 | |
| 983 | cleanups to compile cleanly with gcc 3.3 and -Werror. |
| 984 | |
| 985 | libdw: some new code. |
| 986 | |
| 987 | Version 0.76: |
| 988 | |
| 989 | libebl: Fix last patch to recognize relocation sections. We must not |
| 990 | use the name. |
| 991 | |
| 992 | Version 0.75: |
| 993 | |
| 994 | libebl: .debug_ranges is a DWARF 3 debug section |
| 995 | libebl: recognize relocation sections for debug section |
| 996 | Patches by Jakub Jelinek. |
| 997 | |
| 998 | Version 0.74: |
| 999 | |
| 1000 | Cleanups and more SPARC support by Tom Callaway <tcallaway@redhat.com>. |
| 1001 | |
| 1002 | Version 0.73: |
| 1003 | |
| 1004 | 64-bit cleanups for the programs. |
| 1005 | |
| 1006 | Version 0.72: |
| 1007 | |
| 1008 | libelf: and yet more fun with endian tranformation at output time. |
| 1009 | |
| 1010 | Version 0.71: |
| 1011 | |
| 1012 | libelf: more fun with endian tranformation at output time. Add test for it. |
| 1013 | |
| 1014 | Version 0.70: |
| 1015 | |
| 1016 | libelf: Two little bugs left from previous patch to handle section output |
| 1017 | order. |
| 1018 | |
| 1019 | libelf: add unlikely in some more places. |
| 1020 | |
| 1021 | Version 0.69: |
| 1022 | |
| 1023 | libelf: fix output routines to handle case where section indeces and |
| 1024 | ordre in the output file don't match correctly. Patch by Jakub. |
| 1025 | |
| 1026 | elflint: fix test of note section content for 64-bit platforms and files |
| 1027 | with different byte order. |
| 1028 | |
| 1029 | Version 0.68: |
| 1030 | |
| 1031 | libebl: Fix SH_ENTSIZE_HASH definition (patch by Jakub) |
| 1032 | |
| 1033 | Version 0.67: |
| 1034 | |
| 1035 | libelf: correct mistake in error string handling. |
| 1036 | |
| 1037 | libelf: Implement ELF_F_PERMISSIVE. |
| 1038 | strip: Implement --permissive option. |
| 1039 | |
| 1040 | Version 0.66: |
| 1041 | |
| 1042 | strip: Implement -g option. |
| 1043 | |
| 1044 | libelf: Handle broken hash table entry sizes. |
| 1045 | |
| 1046 | libebl: New function ebl_debugscn_p. Use it where appropriate. |
| 1047 | |
| 1048 | Version 0.65: |
| 1049 | |
| 1050 | libelf: Use correct file size for NOBITS section with ELF_F_LAYOUT set |
| 1051 | |
| 1052 | Version 0.64: |
| 1053 | |
| 1054 | libelf: Make error handling more robust. |
| 1055 | libelf: Use TLS in error handler if configured with --enable-tls |
| 1056 | |
| 1057 | tests: input files are now distributed, not uuencoded in the shell scripts |
| 1058 | |
| 1059 | libdw: implement error handling, dwarf_get_pubnames |
| 1060 | |
| 1061 | Version 0.63: |
| 1062 | |
| 1063 | Build (incomplete) libdw. |
| 1064 | |
| 1065 | Version 0.62: |
| 1066 | |
| 1067 | Get rid of libtool. |
| 1068 | |
| 1069 | Version 0.61: |
| 1070 | |
| 1071 | Fix URL of OSL. |
| 1072 | |
| 1073 | Version 0.60: |
| 1074 | |
| 1075 | libebl: Handle .gnu.warning.* sections correctly. |
| 1076 | |
| 1077 | size: Implement -t option. |
| 1078 | |
| 1079 | libebl: Add IA-64 support. |
| 1080 | libebl: Update SH relocations. |
| 1081 | libebl: Add Alpha support. |
| 1082 | libebl: Add Arm support. |
| 1083 | libebl: Add support for all currently known architecture to the loader. |
| 1084 | |
| 1085 | Version 0.59: |
| 1086 | |
| 1087 | nm: Implement -S option. Correct portable output format. Implement -s option. |
| 1088 | |
| 1089 | libelf: Take offset of archive into account in elf_rand. |
| 1090 | |
| 1091 | Version 0.58: |
| 1092 | |
| 1093 | strip: fix handling of ET_REL files. |
| 1094 | Add tests for strip. |
| 1095 | |
| 1096 | Version 0.57: |
| 1097 | |
| 1098 | strip: respect layout of input file |
| 1099 | |
| 1100 | Version 0.56: |
| 1101 | |
| 1102 | strip: handle files with large number of sections. |
| 1103 | |
| 1104 | Version 0.55: |
| 1105 | |
| 1106 | libelf: quite a few bug fixes by Alex Larsson. |
| 1107 | |
| 1108 | strip: implement -f option to place stripped sections into a separate |
| 1109 | file. By Alex Larsson. |
| 1110 | |
| 1111 | Version 0.54: |
| 1112 | |
| 1113 | strip: don't let STT_SECTION symbols keeps sections from being removed |
| 1114 | |
| 1115 | elflint: local symbols are allowed in .dynsym |
| 1116 | elflint: special case .rel.dyn a bit |
| 1117 | |
| 1118 | Version 0.53: |
| 1119 | |
| 1120 | elflint: check types and flags of special sections defined in gABI |
| 1121 | |
| 1122 | libebl: add x86-64 support |
| 1123 | |
| 1124 | Version 0.52: |
| 1125 | |
| 1126 | Start improvement of debug info handling in nm. |
| 1127 | |
| 1128 | libasm: implement asm_adduleb128 and asm_addsleb128 and a test for them |
| 1129 | |
| 1130 | Version 0.51: |
| 1131 | |
| 1132 | Fix build on 64-bit platforms. |
| 1133 | |
| 1134 | Version 0.50: |
| 1135 | |
| 1136 | nm: print file/line number also for local symbols |
| 1137 | |
| 1138 | use versions scripts not libtool's useless -export-symbols option |
| 1139 | |
| 1140 | Version 0.49: |
| 1141 | |
| 1142 | Update to autoconf 2.54 and automake 1.7. |
| 1143 | |
| 1144 | elflint: check note sections |
| 1145 | |
| 1146 | libdwarf: a number of bug fixes |
| 1147 | |
| 1148 | readelf: print .debug_info section content |
| 1149 | |
| 1150 | dwarf.h: Update from draft 7 |
| 1151 | |
| 1152 | Version 0.48: |
| 1153 | |
| 1154 | libcpu: beginning |
| 1155 | |
| 1156 | libelf: new function to read parts of the ELF file |
| 1157 | |
| 1158 | libebl: support for note section handling |
| 1159 | |
| 1160 | readelf: dump note sections |
| 1161 | |
| 1162 | Version 0.47: |
| 1163 | |
| 1164 | libelf: fix little new section-handling related bugs in elf_getshstrndx |
| 1165 | and elf_nextscn |
| 1166 | |
| 1167 | elflint: tests for mandatory content of dynamic section |
| 1168 | |
| 1169 | libasm: better handling of absolute symbols |
| 1170 | |
| 1171 | Version 0.46: |
| 1172 | |
| 1173 | libasm: rewrite to store Elf_Scn* instead of indices |
| 1174 | |
| 1175 | nm: finish many-section support |
| 1176 | |
| 1177 | nm: use debug in to print file/line info in sysv format |
| 1178 | |
| 1179 | libdwarf: fix a few bugs in DIE handling |
| 1180 | |
| 1181 | Version 0.45: |
| 1182 | |
| 1183 | libelf: major rewrite to keep Elf_Scn references valid until elf_end |
| 1184 | |
| 1185 | Version 0.44: |
| 1186 | |
| 1187 | libasm: Add support for bss, ABS, and COM sections. |
| 1188 | |
| 1189 | libebl: ebl_section_name takes now two index arguments to distinguish |
| 1190 | between special sections and extended sections |
| 1191 | |
| 1192 | Version 0.43: |
| 1193 | |
| 1194 | General: fix a few problem gcc 3.1 had with the code. |
| 1195 | |
| 1196 | libelf: implement {gelf,elf32,elf64}_checksum |
| 1197 | |
| 1198 | libelf: optimze DSO: fewer relocations, fewer PLTs |
| 1199 | |
| 1200 | add msg_tst test |
| 1201 | |
| 1202 | ld: use correct section header string table index; write correct index |
| 1203 | |
| 1204 | add dependencies for *.sym files |
| 1205 | |
| 1206 | Version 0.42: |
| 1207 | |
| 1208 | libelf: add elf_getshnum and elf_getshstrndx |
| 1209 | |
| 1210 | libebl: update section type name function |
| 1211 | |
| 1212 | elflint: tons of fixes wrt large number of sections. New tests in this area. |
| 1213 | Same amount of other bug fixes. |
| 1214 | |
| 1215 | size, strip, nm: better support for large number of sections. Including |
| 1216 | using correct section header string table |
| 1217 | |
| 1218 | libasm: correctly create data structures for large number of sections |
| 1219 | |
| 1220 | new tests asm-tst4 and asm-tst5 to check large number of sections |
| 1221 | |
| 1222 | libasm: implement section group generation |
| 1223 | |
| 1224 | elflint: more tests on section groups. Improve performance on existing |
| 1225 | section group tests |
| 1226 | |
| 1227 | Version 0.41: |
| 1228 | |
| 1229 | ld: add undefined symbols to dynamic symbol table if --export-dynamic is |
| 1230 | not given |
| 1231 | |
| 1232 | ld: fix value of e_entry |
| 1233 | |
| 1234 | Version 0.40: |
| 1235 | |
| 1236 | elflint: print section names in error messages |
| 1237 | |
| 1238 | elflint: mustn't warn about multiple DT_NULL |
| 1239 | |
| 1240 | ld: don't emit all symbols if --export-dynamic is not given |
| 1241 | |
| 1242 | ld: correct compute symbol address in output file (section index was off by 1) |
| 1243 | |
| 1244 | ld: generate correct version info in dynsym without --export-dynamic and |
| 1245 | in symtab |
| 1246 | |
| 1247 | Version 0.39: |
| 1248 | |
| 1249 | Fix check of various e_*size entries in elflint. |
| 1250 | |
| 1251 | Handle text output in asm_newsym. |
| 1252 | |
| 1253 | Finish checks in asm-tst3. |
| 1254 | |
| 1255 | Version 0.38: |
| 1256 | |
| 1257 | Update to autoconf 2.53, automake 1.6, gettext 0.11+. |
| 1258 | |
| 1259 | Introduce *.sym files to restrict export from DSOs. |
| 1260 | |
| 1261 | Use attribute_hidden and internal_function to optimize DSO code. |
| 1262 | |
| 1263 | Add TLS definitions in elf.h and handle them in readelf. |
| 1264 | |
| 1265 | Fix bug in verdef section generation in ld. |
| 1266 | |
| 1267 | Add initial libasm code. |
| 1268 | |
| 1269 | Version 0.37: |
| 1270 | |
| 1271 | Implement better hash size optimization heuristic in ld. It uses a formula |
| 1272 | taking number of tests into account. |
| 1273 | |
| 1274 | Lots of small bug fixes. |
| 1275 | |
| 1276 | Improve readelf output format. Respect various sh_link/sh_info values. |
| 1277 | Correctly print versioning information for symbol tables. |
| 1278 | |
| 1279 | Version 0.36: |
| 1280 | |
| 1281 | Implement preprocessing of linker script. Recognize -z combreloc. |
| 1282 | |
| 1283 | Version 0.35: |
| 1284 | |
| 1285 | Implement -z ignore|record for ld. |
| 1286 | |
| 1287 | Implement creating of .gnu.version_r and .gnu.version sections. The |
| 1288 | .gnu.version does not yet contain correct info for defined and versioned |
| 1289 | symbols (means .gnu.version_d is not yet implemented). |
| 1290 | |
| 1291 | Implement gelf_update_* functions to create versioning data. |
| 1292 | |
| 1293 | Version 0.34: |
| 1294 | |
| 1295 | Add DT_RUNPATH/DT_RPATH entries to dynamic section. Create .plt and |
| 1296 | .rel.plt sections (completely). Add support for all four PLT related |
| 1297 | dynamic section entries. Add callback function for PLT creation. |
| 1298 | |
| 1299 | More tests in elflint. Add support for very strict checking which for |
| 1300 | now flags level 2 (deprecated features) usage. |
| 1301 | |
| 1302 | Version 0.33: |
| 1303 | |
| 1304 | Create dynamic symbol table, dynamic string table, and hash table to ld. |
| 1305 | |
| 1306 | Add hash table histogram support to readelf. |
| 1307 | |
| 1308 | Version 0.32: |
| 1309 | |
| 1310 | more work on elflint |
| 1311 | |
| 1312 | ld now creates the dynamic section and references it. Start adding entries |
| 1313 | to dynamic section. |
| 1314 | |
| 1315 | Version 0.31: |
| 1316 | |
| 1317 | Start implementing elflint. |
| 1318 | |
| 1319 | Version 0.30: |
| 1320 | |
| 1321 | Fix handling of NOBITS sections in elf_getdata. |
| 1322 | |
| 1323 | Start implementing generation of executables and DSOs in ld. |
| 1324 | Generation of program header mostly done. Address computation done. |
| 1325 | Extension of linker script syntax. |
| 1326 | |
| 1327 | Various cleanups. |
| 1328 | |
| 1329 | Implement section group handling in readelf. |
| 1330 | |
| 1331 | Version 0.29: |
| 1332 | |
| 1333 | Implement section groups. This involved a lot of code moving. The |
| 1334 | new code is entirely untested since gas/gcc are currently not able to |
| 1335 | create section groups. ld works fine on files without section groups. |
| 1336 | |
| 1337 | Version 0.28: |
| 1338 | |
| 1339 | Fix problem with adding more section in elf_newscn. The section pointers |
| 1340 | for the data buffers wasn't adjusted. |
| 1341 | |
| 1342 | Fix elf_getdata with nonzero second parameter. Correctly handle creation |
| 1343 | of internal data buffer for machines without unaligned access. |
| 1344 | |
| 1345 | Version 0.27: |
| 1346 | |
| 1347 | Start adding support to selectively add sections. Includes support for |
| 1348 | section groups. |
| 1349 | Add --gc-sections/--no-gc-sections options. |
| 1350 | Add general section merging support. |
| 1351 | |
| 1352 | Fix a bug in section group support in strip. |
| 1353 | |
| 1354 | Fix some potential problems with hash value in dynamic hash implementation. |
| 1355 | |
| 1356 | Version 0.26: |
| 1357 | |
| 1358 | section merging works in ld. |
| 1359 | |
| 1360 | Version 0.25: |
| 1361 | |
| 1362 | Actually create data structures from version map file and use it to hide |
| 1363 | symbols in ld. |
| 1364 | |
| 1365 | Implement -s -s for ld. |
| 1366 | |
| 1367 | Version 0.24: |
| 1368 | |
| 1369 | Improve relocation table output in readelf. Avoid some crashes. |
| 1370 | Finish many section handling in readelf. |
| 1371 | |
| 1372 | Finish: finish implementation of ld -r. At least some simple tests pass. |
| 1373 | |
| 1374 | Version 0.23: |
| 1375 | |
| 1376 | Fix a number of errors in ELF_C_WRITE handling. |
| 1377 | |
| 1378 | Almost finished implementation of ld -r. The data sections are all copied. |
| 1379 | Handling of symbol tables is missing. |
| 1380 | |
| 1381 | Version 0.22: |
| 1382 | |
| 1383 | Handle DSO and archive input files correctly if -r option is given. |
| 1384 | |
| 1385 | Gracefully deal with no phdr in new file in libelf. |
| 1386 | Fix various small error handling problems. |
| 1387 | Don't mmap file for output unless the command says so. |
| 1388 | |
| 1389 | Add code to create ELF section header table to ld finalize routines. |
| 1390 | |
| 1391 | Version 0.21: |
| 1392 | |
| 1393 | Fix some problems with recursive handling of archives in libelf. |
| 1394 | |
| 1395 | Improve messages printed by nm. |
| 1396 | |
| 1397 | Add symbol binding name handling to libebl. Fix section name handling in |
| 1398 | libebl. |
| 1399 | |
| 1400 | readelf and nm use more libebl functions. |
| 1401 | |
| 1402 | Handle XINDEX correctly in nm and string. |
| 1403 | |
| 1404 | Add first machine ld backend library (i386). |
| 1405 | Use it. Recognize -r and --shared. Avoid using -lxxx parameters for -r. |
| 1406 | Create ELF header in output file. Change mode of output file according to |
| 1407 | output file type. Reorganize callback initialization in ld. |
| 1408 | |
| 1409 | Version 0.20: |
| 1410 | |
| 1411 | Fix some memory leaks in libelf. |
| 1412 | |
| 1413 | Version 0.19: |
| 1414 | |
| 1415 | Implement reading version script. Both inside linker scripts and via the |
| 1416 | --version-script command line parameter. Uses the same code. |
| 1417 | What remains to be done is to implement a data structure which allows |
| 1418 | efficient matching against the version names to decide which pattern |
| 1419 | matches. |
| 1420 | |
| 1421 | Beginning of output generation and output writing functions. |
| 1422 | |
| 1423 | Version 0.18: |
| 1424 | |
| 1425 | Finish implementation for DSO input file handling. Implement rpath, runpath, |
| 1426 | and LD_LIBRARY_PATH handling. |
| 1427 | |
| 1428 | Version 0.17: |
| 1429 | |
| 1430 | make handling of e_shnum overflow in libelf standard conforming |
| 1431 | |
| 1432 | ld now actually can handle DSOs in linker scripts. Handling of DT_RUNPATH, |
| 1433 | DT_RPATH, -rpath, -rpath-link still remains to be implemented. |
| 1434 | |
| 1435 | fix handling of -L parameters. Make actual use of the default_paths element. |
| 1436 | |
| 1437 | make re-definition of symbols in and from DSO compatible with existing linker |
| 1438 | |
| 1439 | Version 0.16: |
| 1440 | |
| 1441 | more work on assigning input sections to output sections. |
| 1442 | |
| 1443 | Add gelf_xlatetof and gelf_xlatetom which were accidently left out. |
| 1444 | |
| 1445 | Fix memory handling of section headers. |
| 1446 | |
| 1447 | Version 0.15: |
| 1448 | |
| 1449 | Add many-section support to ld. Add various new command line parameters. |
| 1450 | Allow pagesize to be specified in linker script or on the command line. |
| 1451 | Collect input sections in list for the output section according to the rules |
| 1452 | specified in the linker script. |
| 1453 | |
| 1454 | Version 0.14: |
| 1455 | |
| 1456 | Fix some problems in the internal list handling which had the result |
| 1457 | that we didn't look for some of the unresolved symbols. |
| 1458 | |
| 1459 | Free some memory if we know we don't need it anymore. |
| 1460 | |
| 1461 | Optimize the list of unresolved symbols. Throw out symbols which are |
| 1462 | meanwhile resolved. |
| 1463 | |
| 1464 | Version 0.13: |
| 1465 | |
| 1466 | Got file reading correct now. The files are all read while parsing |
| 1467 | the parameters. No creating of data structures to describe the linker |
| 1468 | command line. The symbol table is built up while reading the files. |
| 1469 | DSOs are handled now. -( -) handling is optimized. |
| 1470 | |
| 1471 | Version 0.12: |
| 1472 | |
| 1473 | Linker read linker scripts everywhere. Handles --whole-archive. Recognizes |
| 1474 | --dynamic and --static. Collects defined and undefined symbols. Recognizes |
| 1475 | conflicts. |
| 1476 | |
| 1477 | libebl now defines functions to call the callbacks. Add generic name handling |
| 1478 | in these new functions. Remove the code from readelf and call the new |
| 1479 | functions. |
| 1480 | |
| 1481 | Version 0.11: |
| 1482 | |
| 1483 | Start of linker. Basic argument parsing, finding of input files, |
| 1484 | linker script reading. |
| 1485 | |
| 1486 | Version 0.10: |
| 1487 | |
| 1488 | Implement dwarf_get_fde_n(), dwarf_get_abbrev(), dwarf_get_abbrev_tag(), |
| 1489 | dwarf_get_abbrev_code(), dwarf_get_abbrev_children_flag(), |
| 1490 | dwarf_get_abbrev_entry(), dwarf_get_fde_at_pc(), and tests for it. |
| 1491 | |
| 1492 | Version 0.9: |
| 1493 | |
| 1494 | Implement dwarf_get_fde_list_eh(), dwarf_get_cie_of_fde(), |
| 1495 | dwarf_get_fde_range(), dwarf_get_cie_info(), dwarf_get_fde_instr_bytes(), |
| 1496 | and tests for them. |
| 1497 | |
| 1498 | Version 0.8: |
| 1499 | |
| 1500 | Make handling of binaries in other byte order work and add tests for it. |
| 1501 | |
| 1502 | Version 0.7: |
| 1503 | |
| 1504 | Implement dwarf_get_aranges(), dwarf_get_arange(), dwarf_get_cu_die_offset(), |
| 1505 | dwarf_get_arange_info(), and tests for them. |
| 1506 | |
| 1507 | Version 0.6: |
| 1508 | |
| 1509 | Implement dwarf_get_global(), dwarf_globname(), dwarf_global_die_offset(), |
| 1510 | dwarf_global_cu_offset(), dwarf_global_name_offsets(), and tests for them |
| 1511 | |
| 1512 | Version 0.5: |
| 1513 | |
| 1514 | Implemented dwarf_srclines(), dwarf_srcfiles(), dwarf_linebeginstatement(), |
| 1515 | dwarf_lineendsequence(), dwarf_lineno(), dwarf_lineaddr(), dwarf_lineoff(), |
| 1516 | dwarf_linesrc(), dwarf_lineblock(), dwarf_lineprologueend(), |
| 1517 | dwarf_lineepiloguebegin(), and tests for them. |
| 1518 | |
| 1519 | Version 0.4: |
| 1520 | |
| 1521 | Implemented dwarf_loclist(). |
| 1522 | |
| 1523 | Version 0.3: |
| 1524 | |
| 1525 | Implemented dwarf_dieoffset(), dwarf_die_CU_offset(), dwarf_diename() and |
| 1526 | tests. |
| 1527 | |
| 1528 | Implemented dwarf_attrlist(), dwarf_hasattr(), dwarf_attr(), dwarf_lowpc(), |
| 1529 | dwarf_highpc(), dwarf_bytesize(), dwarf_bitsize(), dwarf_bitoffset(), |
| 1530 | dwarf_srclang(), dwarf_arrayorder(), dwarf_hasform(), dwarf_whatform(), |
| 1531 | dwarf_whatattr(), dwarf_formref(), dwarf_global_formref(), dwarf_formaddr(), |
| 1532 | dwarf_formflag(), dwarf_formudata(), dwarf_formsdata(), dwarf_formblock, |
| 1533 | dwarf_formstring() and tests for them. |
| 1534 | |
| 1535 | Version 0.2: |
| 1536 | |
| 1537 | Implemented dwarf_offdie()), dwarf_tag(), dwarf_dieoffset(), |
| 1538 | dwarf_die_CU_offset(), dwarf_diename() and tests for them. |
| 1539 | |
| 1540 | Version 0.1: |
| 1541 | |
| 1542 | First libdwarf functions work. |
| 1543 | |
| 1544 | Version 0.0: |
| 1545 | |
| 1546 | libelf and parts of libebl are done. |