forked from elfutils/elfutils-mirror
elfutils is a collection of utilities and libraries to read, create and modify ELF binary files, find and handle DWARF debug data, symbols, thread state and stacktraces for processes and core files on GNU/Linux.
https://elfutils.org
Currently gelf_getmove does not distinguish between ELFCLASS32 and ELFCLASS64 binaries. This is assumes that Elf32_Move and Elf64_Move structs are the same size. This assumption is false since the m_info and m_poffset fields have type uint32_t for Elf32_Move but uint64_t for Elf64_Move. Fix this by handling ELFCLASS32 and ELFCLASS64 cases separately when copying Elfxx_Move fields to dst. Signed-off-by: Aaron Merey <amerey@redhat.com> |
||
|---|---|---|
| .forgejo/workflows | ||
| backends | ||
| config | ||
| debuginfod | ||
| doc | ||
| lib | ||
| libasm | ||
| libcpu | ||
| libdw | ||
| libdwelf | ||
| libdwfl | ||
| libdwfl_stacktrace | ||
| libebl | ||
| libelf | ||
| m4 | ||
| po | ||
| src | ||
| tests | ||
| .gitignore | ||
| .mailmap | ||
| AUTHORS | ||
| AUTHORS.sh | ||
| ChangeLog | ||
| CONDUCT | ||
| configure.ac | ||
| CONTRIBUTING | ||
| COPYING | ||
| COPYING-GPLV2 | ||
| COPYING-LGPLV3 | ||
| GPG-KEY | ||
| Makefile.am | ||
| NEWS | ||
| NOTES | ||
| README | ||
| SECURITY | ||
| THANKS | ||
| TODO | ||
The elfutils project provides libraries and tools for ELF files and DWARF data. The project home is http://elfutils.org/ Releases are published at ftp://sourceware.org/pub/elfutils/ Which can also be found at https://sourceware.org/elfutils/ftp/ To build a release do: ./configure && make && make check Please check the configure summary to make sure all recommended features are enabled. There should be no failures after make check. Please reports bugs at https://sourceware.org/bugzilla/ The current elfutils source code can be checked out with git clone git://sourceware.org/git/elfutils.git To build a git checkout do: autoreconf -i -f && \ ./configure --enable-maintainer-mode && \ make && make check The developer mailinglist to send patches to is elfutils-devel@sourceware.org. https://sourceware.org/ml/elfutils-devel/ To subscribe send an email to elfutils-devel-subscribe@sourceware.org Or use the form at https://sourceware.org/mailman/listinfo/elfutils-devel See the CONTRIBUTING file for how to propose patches to the code. See the NOTES files for some design decisions and notes. See the SECURITY file for defining and handling security-sensitive bugs.