Skip to content

Commit 3c86642

Browse files
committed
[Bitstream] Reject implausibly large reservations
If we're trying to reserve more memory than bits in the stream, reject this early to avoid OOM.
1 parent b880455 commit 3c86642

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

llvm/include/llvm/Bitstream/BitstreamReader.h

+7
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,13 @@ class SimpleBitstreamCursor {
299299

300300
/// Skip to the end of the file.
301301
void skipToEnd() { NextChar = BitcodeBytes.size(); }
302+
303+
/// Check whether a reservation of Size elements is plausible.
304+
bool isSizePlausible(size_t Size) const {
305+
// Don't allow reserving more elements than the number of bits, assuming
306+
// at least one bit is needed to encode an element.
307+
return Size < BitcodeBytes.size() * 8;
308+
}
302309
};
303310

304311
/// When advancing through a bitstream cursor, each advance can discover a few

llvm/lib/Bitstream/Reader/BitstreamReader.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ Expected<unsigned> BitstreamCursor::readRecord(unsigned AbbrevID,
222222
if (!MaybeNumElts)
223223
return MaybeNumElts.takeError();
224224
uint32_t NumElts = MaybeNumElts.get();
225+
if (!isSizePlausible(NumElts))
226+
return error("Size is not plausible");
225227
Vals.reserve(Vals.size() + NumElts);
226228

227229
for (unsigned i = 0; i != NumElts; ++i)
@@ -275,6 +277,8 @@ Expected<unsigned> BitstreamCursor::readRecord(unsigned AbbrevID,
275277
if (!MaybeNumElts)
276278
return MaybeNumElts.takeError();
277279
uint32_t NumElts = MaybeNumElts.get();
280+
if (!isSizePlausible(NumElts))
281+
return error("Size is not plausible");
278282
Vals.reserve(Vals.size() + NumElts);
279283

280284
// Get the element encoding.
20 Bytes
Binary file not shown.

llvm/test/Bitcode/invalid.test

+5
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,8 @@ RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-number.bc 2>&1 | \
251251
RUN: FileCheck --check-prefix=INVALID-ABBREV-NUMBER %s
252252

253253
INVALID-ABBREV-NUMBER: Invalid abbrev number
254+
255+
RUN: not llvm-dis -disable-output %p/Inputs/size-not-plausible.bc 2>&1 | \
256+
RUN: FileCheck --check-prefix=SIZE-NOT-PLAUSIBLE %s
257+
258+
SIZE-NOT-PLAUSIBLE: Size is not plausible

0 commit comments

Comments
 (0)