forked from OSchip/llvm-project
Verify sizes when trying to read a BitcodeAbbrevOp
Summary: Make sure the abbrev operands are valid and that we can read/skip them afterwards. Bug found with AFL fuzz. Reviewers: rafael Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D9030 llvm-svn: 235595
This commit is contained in:
parent
9316d89d55
commit
ee48feadfd
|
@ -198,6 +198,8 @@ class BitstreamCursor {
|
|||
|
||||
|
||||
public:
|
||||
static const size_t MaxChunkSize = sizeof(word_t) * 8;
|
||||
|
||||
BitstreamCursor() { init(nullptr); }
|
||||
|
||||
explicit BitstreamCursor(BitstreamReader &R) { init(&R); }
|
||||
|
@ -335,7 +337,7 @@ public:
|
|||
}
|
||||
|
||||
word_t Read(unsigned NumBits) {
|
||||
static const unsigned BitsInWord = sizeof(word_t) * 8;
|
||||
static const unsigned BitsInWord = MaxChunkSize;
|
||||
|
||||
assert(NumBits && NumBits <= BitsInWord &&
|
||||
"Cannot return zero or more than BitsInWord bits!");
|
||||
|
|
|
@ -60,8 +60,10 @@ static uint64_t readAbbreviatedField(BitstreamCursor &Cursor,
|
|||
case BitCodeAbbrevOp::Blob:
|
||||
llvm_unreachable("Should not reach here");
|
||||
case BitCodeAbbrevOp::Fixed:
|
||||
assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
|
||||
return Cursor.Read((unsigned)Op.getEncodingData());
|
||||
case BitCodeAbbrevOp::VBR:
|
||||
assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
|
||||
return Cursor.ReadVBR64((unsigned)Op.getEncodingData());
|
||||
case BitCodeAbbrevOp::Char6:
|
||||
return BitCodeAbbrevOp::DecodeChar6(Cursor.Read(6));
|
||||
|
@ -79,9 +81,11 @@ static void skipAbbreviatedField(BitstreamCursor &Cursor,
|
|||
case BitCodeAbbrevOp::Blob:
|
||||
llvm_unreachable("Should not reach here");
|
||||
case BitCodeAbbrevOp::Fixed:
|
||||
assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
|
||||
Cursor.Read((unsigned)Op.getEncodingData());
|
||||
break;
|
||||
case BitCodeAbbrevOp::VBR:
|
||||
assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
|
||||
Cursor.ReadVBR64((unsigned)Op.getEncodingData());
|
||||
break;
|
||||
case BitCodeAbbrevOp::Char6:
|
||||
|
@ -264,6 +268,11 @@ void BitstreamCursor::ReadAbbrevRecord() {
|
|||
continue;
|
||||
}
|
||||
|
||||
if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
|
||||
Data > MaxChunkSize)
|
||||
report_fatal_error(
|
||||
"Fixed or VBR abbrev record with size > MaxChunkData");
|
||||
|
||||
Abbv->Add(BitCodeAbbrevOp(E, Data));
|
||||
} else
|
||||
Abbv->Add(BitCodeAbbrevOp(E));
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -66,3 +66,10 @@ RUN: not llvm-dis -disable-output %p/Inputs/invalid-fp-shift.bc 2>&1 | \
|
|||
RUN: FileCheck --check-prefix=FP-SHIFT %s
|
||||
|
||||
FP-SHIFT: Invalid record
|
||||
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-vbr-size-too-big.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=HUGE-ABBREV-OP %s
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-fixed-size-too-big.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=HUGE-ABBREV-OP %s
|
||||
|
||||
HUGE-ABBREV-OP: Fixed or VBR abbrev record with size > MaxChunkData
|
||||
|
|
Loading…
Reference in New Issue