]> git.ipfire.org Git - thirdparty/elfutils.git/commit
libelf: Fix some 32bit offset/size issues that break updating 4G+ files.
authorMark Wielaard <mark@klomp.org>
Sun, 24 Feb 2019 22:51:16 +0000 (23:51 +0100)
committerMark Wielaard <mark@klomp.org>
Fri, 28 Jun 2019 21:14:27 +0000 (23:14 +0200)
commita46200f630b9908085d60883398f1b27aa25bc57
tree225224d69017d619c072c2da6b6b7fd1f735fa12
parentac9e5349dd662289485e67403be943a4ec78cd4d
libelf: Fix some 32bit offset/size issues that break updating 4G+ files.

Some years ago, in commit b1d0b0fc "libelf: Use int64_t for offsets in
libelf.h", we changed the public interface to use 64bit offsets/sizes.
This wasn't really a API change, before we relied on loff_t always
being 64bits on all platforms.

We didn't change the implementation to use the int64_t type though.
That was a little confusing, since the function definitions used a
different type, int64_t, from the function implementations, off_t.
Since we always build with _FILE_OFFSET_BITS=64 this should be fine.
But it was a bit sloppy and confusing.

Worse is that we got the translation of offset/sizes wrong in a
couple of places when translating to ELF types. In various places
we would use Elf32_Word or Elf64_Word. But both are 32bit (unsigned)
types! As is GElf_Word. Elf32_Off is 32bits and Elf64_Off is 64bits.
But we were not using those consistently.

This patch introduces comments for the usage of [G]Elf(32|64)Word in
libelf that are correct. And introduces Elf(32|64)_SizeWord in
elf32_updatenull.c where we want to make a difference between sizes
and offsets (the ELF variants are both unsigned, while int64_t/loff_t
is signed).

It also includes a new run-large-elf-file.sh test that creates a
large ELF files (one 64bit, little endian, rel and another big endian,
non-rel) and runs eu-strip, eu-elflint, eu-unstrip and eu-elfcmp.
Before this patch, that test case fails and creates corrupt ELF files.

The test is guarded by some checks that try to make sure there is
enough disk space and memory available on the machine. The test is
skipped otherwise.

Signed-off-by: Mark Wielaard <mark@klomp.org>
15 files changed:
libelf/ChangeLog
libelf/common.h
libelf/elf32_newphdr.c
libelf/elf32_updatefile.c
libelf/elf32_updatenull.c
libelf/elf_begin.c
libelf/elf_getaroff.c
libelf/elf_getbase.c
libelf/elf_getdata_rawchunk.c
libelf/elf_update.c
libelf/libelfP.h
tests/ChangeLog
tests/Makefile.am
tests/addsections.c
tests/run-large-elf-file.sh [new file with mode: 0755]