1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[DebugInfo] Don't crash when given invalid DWARFv5 line table prologue.

This patch replaces an assertion with an explicit check for the validity
of the FORM parameters. The assertion was triggered when the DWARFv5
line table contained a zero address size.

This fixes OSS-Fuzz Issue 4644
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4644

Differential revision: https://reviews.llvm.org/D41615

llvm-svn: 321863
This commit is contained in:
Jonas Devlieghere 2018-01-05 10:03:02 +00:00
parent a5a9c614d3
commit b32cea3c45
5 changed files with 17 additions and 7 deletions

View File

@ -50,6 +50,8 @@ struct DWARFFormParams {
}
llvm_unreachable("Invalid Format value");
}
explicit operator bool() const { return Version && AddrSize; }
};
class DWARFFormValue {

View File

@ -268,7 +268,7 @@ bool DWARFDebugLine::Prologue::parse(const DWARFDataExtractor &DebugLineData,
if (getVersion() >= 5) {
if (!parseV5DirFileTables(DebugLineData, OffsetPtr, EndPrologueOffset,
getFormParams(), U, HasMD5, IncludeDirectories,
FormParams, U, HasMD5, IncludeDirectories,
FileNames)) {
fprintf(stderr,
"warning: parsing line table prologue at 0x%8.8" PRIx64

View File

@ -64,8 +64,9 @@ DWARFFormValue::getFixedByteSize(dwarf::Form Form,
const DWARFFormParams Params) {
switch (Form) {
case DW_FORM_addr:
assert(Params.Version && Params.AddrSize && "Invalid Params for form");
if (Params)
return Params.AddrSize;
return None;
case DW_FORM_block: // ULEB128 length L followed by L bytes.
case DW_FORM_block1: // 1 byte length L followed by L bytes.
@ -86,8 +87,9 @@ DWARFFormValue::getFixedByteSize(dwarf::Form Form,
return None;
case DW_FORM_ref_addr:
assert(Params.Version && Params.AddrSize && "Invalid Params for form");
if (Params)
return Params.getRefAddrByteSize();
return None;
case DW_FORM_flag:
case DW_FORM_data1:
@ -118,8 +120,9 @@ DWARFFormValue::getFixedByteSize(dwarf::Form Form,
case DW_FORM_line_strp:
case DW_FORM_sec_offset:
case DW_FORM_strp_sup:
assert(Params.Version && Params.AddrSize && "Invalid Params for form");
if (Params)
return Params.getDwarfOffsetByteSize();
return None;
case DW_FORM_data8:
case DW_FORM_ref8:

Binary file not shown.

View File

@ -0,0 +1,5 @@
Verify that dwarfdump doesn't crash on invalid line table prologue.
OSS-Fuzz Issue 4644 (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=4644)
RUN: llvm-dwarfdump --verbose %p/Inputs/invalid.linetable 2>&1 | FileCheck %s --check-prefix=INVALID-LINE-TABLE
INVALID-LINE-TABLE: invalid directory or file table description