EXCLUDED.put("clusterfuzz-testcase-minimized-POIFuzzer-6411649193738240.ppt", FileNotFoundException.class);
EXCLUDED.put("clusterfuzz-testcase-minimized-POIHSLFFuzzer-4838893004128256.ppt", FileNotFoundException.class);
EXCLUDED.put("clusterfuzz-testcase-minimized-POIHSLFFuzzer-4624961081573376.ppt", FileNotFoundException.class);
+ EXCLUDED.put("clusterfuzz-testcase-minimized-POIHSLFFuzzer-5018229722382336.ppt", RuntimeException.class);
}
public static Stream<Arguments> files() {
return fillFields(data, pOffset, recordFactory, 0);
}
- private int fillFields(byte[] data, int pOffset, EscherRecordFactory recordFactory, int nesting) {
+ int fillFields(byte[] data, int pOffset, EscherRecordFactory recordFactory, int nesting) {
if (nesting > MAX_NESTED_CHILD_NODES) {
throw new IllegalStateException("Had more than the limit of " + MAX_NESTED_CHILD_NODES + " nested child notes");
}
final int childBytesWritten;
if (child instanceof EscherContainerRecord) {
childBytesWritten = ((EscherContainerRecord)child).fillFields(data, offset, recordFactory, nesting + 1);
+ } else if (child instanceof UnknownEscherRecord) {
+ childBytesWritten = ((UnknownEscherRecord)child).fillFields(data, offset, recordFactory, nesting + 1);
} else {
childBytesWritten = child.fillFields(data, offset, recordFactory);
}
* we do not explicitly support.
*/
public final class UnknownEscherRecord extends EscherRecord {
-
//arbitrarily selected; may need to increase
private static final int DEFAULT_MAX_RECORD_LENGTH = 100_000_000;
private static int MAX_RECORD_LENGTH = DEFAULT_MAX_RECORD_LENGTH;
private static final byte[] NO_BYTES = new byte[0];
+ private static final int MAX_NESTED_CHILD_NODES = 1000;
+
/** The data for this record not including the 8 byte header */
private byte[] thedata = NO_BYTES;
private final List<EscherRecord> _childRecords = new ArrayList<>();
@Override
public int fillFields(byte[] data, int offset, EscherRecordFactory recordFactory) {
+ return fillFields(data, offset, recordFactory, 0);
+ }
+
+ int fillFields(byte[] data, int offset, EscherRecordFactory recordFactory, int nesting) {
+ if (nesting > MAX_NESTED_CHILD_NODES) {
+ throw new IllegalStateException("Had more than the limit of " + MAX_NESTED_CHILD_NODES + " nested child notes");
+ }
+
int bytesRemaining = readHeader( data, offset );
/*
* Have a check between available bytes and bytesRemaining,
bytesWritten += 8;
while ( bytesRemaining > 0 ) {
EscherRecord child = recordFactory.createRecord( data, offset );
- int childBytesWritten = child.fillFields( data, offset, recordFactory );
+ final int childBytesWritten;
+
+ if (child instanceof EscherContainerRecord) {
+ childBytesWritten = ((EscherContainerRecord)child).fillFields(data, offset, recordFactory, nesting + 1);
+ } else {
+ childBytesWritten = child.fillFields(data, offset, recordFactory);
+ }
bytesWritten += childBytesWritten;
offset += childBytesWritten;
bytesRemaining -= childBytesWritten;