forked from OSchip/llvm-project
[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:
parent
1ad085b808
commit
cbf651f739
|
@ -50,6 +50,8 @@ struct DWARFFormParams {
|
|||
}
|
||||
llvm_unreachable("Invalid Format value");
|
||||
}
|
||||
|
||||
explicit operator bool() const { return Version && AddrSize; }
|
||||
};
|
||||
|
||||
class DWARFFormValue {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
return Params.AddrSize;
|
||||
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");
|
||||
return Params.getRefAddrByteSize();
|
||||
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");
|
||||
return Params.getDwarfOffsetByteSize();
|
||||
if (Params)
|
||||
return Params.getDwarfOffsetByteSize();
|
||||
return None;
|
||||
|
||||
case DW_FORM_data8:
|
||||
case DW_FORM_ref8:
|
||||
|
|
Binary file not shown.
|
@ -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
|
Loading…
Reference in New Issue