File tree 4 files changed +14
-1
lines changed
src/jdk.jfr/share/classes/jdk/jfr/internal
4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ final class MetadataReader {
66
66
public MetadataReader (RecordingInput input ) throws IOException {
67
67
this .input = input ;
68
68
int size = input .readInt ();
69
+ input .require (size , "Metadata string pool size %d exceeds available data" );
69
70
this .pool = new ArrayList <>(size );
70
71
StringParser p = new StringParser (null , false );
71
72
for (int i = 0 ; i < size ; i ++) {
Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ public ArrayParser(Parser elementParser) {
296
296
@ Override
297
297
public Object parse (RecordingInput input ) throws IOException {
298
298
final int size = input .readInt ();
299
+ input .require (size , "Array size %d exceeds available data" );
299
300
final Object [] array = new Object [size ];
300
301
for (int i = 0 ; i < size ; i ++) {
301
302
array [i ] = elementParser .parse (input );
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -418,6 +418,15 @@ public String getFilename() {
418
418
return filename ;
419
419
}
420
420
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
+
421
430
// Purpose of this method is to reuse block cache from a
422
431
// previous RecordingInput
423
432
public void setFile (Path path ) throws IOException {
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ private static final class CharsetParser extends Parser {
70
70
@ Override
71
71
public Object parse (RecordingInput input ) throws IOException {
72
72
int size = input .readInt ();
73
+ input .require (size , "String size %d exceeds available data" );
73
74
ensureSize (size );
74
75
if (lastSize == size ) {
75
76
boolean equalsLastString = true ;
@@ -115,6 +116,7 @@ private static final class CharArrayParser extends Parser {
115
116
@ Override
116
117
public Object parse (RecordingInput input ) throws IOException {
117
118
int size = input .readInt ();
119
+ input .require (size , "String size %d exceeds available data" );
118
120
ensureSize (size );
119
121
if (lastSize == size ) {
120
122
boolean equalsLastString = true ;
You can’t perform that action at this time.
0 commit comments