diff options
author | Fangrui Song <maskray@google.com> | 2020-05-03 21:54:28 -0700 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2020-05-03 22:06:33 -0700 |
commit | 8e7ae355ba97d6ac0020e11a0efeddc454b9f933 (patch) | |
tree | bcfadbac412e012e9ab6c30dfe5d790389581e77 /llvm/tools/llvm-objcopy | |
parent | d4d4c6bf834142326301a743d2939e868d9f0f0f (diff) | |
download | bcm5719-llvm-8e7ae355ba97d6ac0020e11a0efeddc454b9f933.tar.gz bcm5719-llvm-8e7ae355ba97d6ac0020e11a0efeddc454b9f933.zip |
[llvm-objcopy] Avoid invalid Sec.Offset after D79229
To avoid undefined behavior caught by -fsanitize=undefined on binary-paddr.test
void SectionWriter::visit(const Section &Sec) {
if (Sec.Type != SHT_NOBITS)
// Sec.Contents is empty while Sec.Offset may be out of bound
llvm::copy(Sec.Contents, Out.getBufferStart() + Sec.Offset);
}
(cherry picked from commit 762fb1c40eea6878c2d6a1f0f1fc7915c8747981)
Diffstat (limited to 'llvm/tools/llvm-objcopy')
-rw-r--r-- | llvm/tools/llvm-objcopy/ELF/Object.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/llvm-objcopy/ELF/Object.cpp b/llvm/tools/llvm-objcopy/ELF/Object.cpp index 98f72959ae5..5e5ed95de74 100644 --- a/llvm/tools/llvm-objcopy/ELF/Object.cpp +++ b/llvm/tools/llvm-objcopy/ELF/Object.cpp @@ -2271,11 +2271,11 @@ Error BinaryWriter::finalize() { // layoutSections, because we want to truncate the last segment to the end of // its last non-empty section, to match GNU objcopy's behaviour. TotalSize = 0; - for (SectionBase &Sec : Obj.allocSections()) { - Sec.Offset = Sec.Addr - MinAddr; - if (Sec.Type != SHT_NOBITS && Sec.Size > 0) + for (SectionBase &Sec : Obj.allocSections()) + if (Sec.Type != SHT_NOBITS && Sec.Size > 0) { + Sec.Offset = Sec.Addr - MinAddr; TotalSize = std::max(TotalSize, Sec.Offset + Sec.Size); - } + } if (Error E = Buf.allocate(TotalSize)) return E; |