Skip to content

Commit 4d4ba81

Browse files
egahlinslowhog
authored andcommittedApr 19, 2022
8272594: Better record of recordings
Reviewed-by: mgronlun, rhalade, mschoene
1 parent e7cc235 commit 4d4ba81

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataReader.java

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ final class MetadataReader {
6666
public MetadataReader(RecordingInput input) throws IOException {
6767
this.input = input;
6868
int size = input.readInt();
69+
input.require(size, "Metadata string pool size %d exceeds available data" );
6970
this.pool = new ArrayList<>(size);
7071
StringParser p = new StringParser(null, false);
7172
for (int i = 0; i < size; i++) {

‎src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/ParserFactory.java

+1
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ public ArrayParser(Parser elementParser) {
296296
@Override
297297
public Object parse(RecordingInput input) throws IOException {
298298
final int size = input.readInt();
299+
input.require(size, "Array size %d exceeds available data" );
299300
final Object[] array = new Object[size];
300301
for (int i = 0; i < size; i++) {
301302
array[i] = elementParser.parse(input);

‎src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/RecordingInput.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -418,6 +418,15 @@ public String getFilename() {
418418
return filename;
419419
}
420420

421+
// Purpose of this method is to prevent OOM by sanity check
422+
// the minimum required number of bytes against what is available in
423+
// segment/chunk/file
424+
public void require(int minimumBytes, String errorMessage) throws IOException {
425+
if (position + minimumBytes > size) {
426+
throw new IOException(String.format(errorMessage, minimumBytes));
427+
}
428+
}
429+
421430
// Purpose of this method is to reuse block cache from a
422431
// previous RecordingInput
423432
public void setFile(Path path) throws IOException {

‎src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/StringParser.java

+2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ private static final class CharsetParser extends Parser {
7070
@Override
7171
public Object parse(RecordingInput input) throws IOException {
7272
int size = input.readInt();
73+
input.require(size, "String size %d exceeds available data");
7374
ensureSize(size);
7475
if (lastSize == size) {
7576
boolean equalsLastString = true;
@@ -115,6 +116,7 @@ private static final class CharArrayParser extends Parser {
115116
@Override
116117
public Object parse(RecordingInput input) throws IOException {
117118
int size = input.readInt();
119+
input.require(size, "String size %d exceeds available data");
118120
ensureSize(size);
119121
if (lastSize == size) {
120122
boolean equalsLastString = true;

0 commit comments

Comments
 (0)
Please sign in to comment.