Skip to content

Commit 3dca446

Browse files
Aleksei Voitylovgnu-andrew
Aleksei Voitylov
authored andcommittedJul 15, 2022
8285407: Improve Xalan supports
Reviewed-by: mbalao, andrew Backport-of: fd6385d8c20379c1139f64f5c90d331ad9631097
1 parent 1f50bcc commit 3dca446

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed
 

‎jaxp/src/com/sun/org/apache/bcel/internal/classfile/ConstantPool.java

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
* reserved comment block
3-
* DO NOT REMOVE OR ALTER!
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
43
*/
54
/*
65
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -23,6 +22,7 @@
2322

2423

2524
import com.sun.org.apache.bcel.internal.Constants;
25+
import com.sun.org.apache.bcel.internal.generic.ConstantPoolGen;
2626
import java.io.*;
2727

2828
/**
@@ -36,6 +36,7 @@
3636
* @see Constant
3737
* @see com.sun.org.apache.bcel.internal.generic.ConstantPoolGen
3838
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
39+
* @LastModified: May 2022
3940
*/
4041
public class ConstantPool implements Cloneable, Node, Serializable {
4142
private int constant_pool_count;
@@ -190,9 +191,16 @@ public String constantToString(int index, byte tag)
190191
*/
191192
public void dump(DataOutputStream file) throws IOException
192193
{
193-
file.writeShort(constant_pool_count);
194+
/*
195+
* Constants over the size of the constant pool shall not be written out.
196+
* This is a redundant measure as the ConstantPoolGen should have already
197+
* reported an error back in the situation.
198+
*/
199+
int size = constant_pool_count < ConstantPoolGen.CONSTANT_POOL_SIZE - 1 ?
200+
constant_pool_count : ConstantPoolGen.CONSTANT_POOL_SIZE - 1;
194201

195-
for(int i=1; i < constant_pool_count; i++)
202+
file.writeShort(size);
203+
for(int i=1; i < size; i++)
196204
if(constant_pool[i] != null)
197205
constant_pool[i].dump(file);
198206
}

‎jaxp/src/com/sun/org/apache/bcel/internal/generic/ConstantPoolGen.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
* reserved comment block
3-
* DO NOT REMOVE OR ALTER!
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
43
*/
54
/*
65
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -38,8 +37,10 @@
3837
*
3938
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
4039
* @see Constant
40+
* @LastModified: May 2022
4141
*/
4242
public class ConstantPoolGen implements java.io.Serializable {
43+
public static final int CONSTANT_POOL_SIZE = 65536;
4344
protected int size = 1024; // Inital size, sufficient in most cases
4445
protected Constant[] constants = new Constant[size];
4546
protected int index = 1; // First entry (0) used by JVM
@@ -61,7 +62,7 @@ private static class Index implements java.io.Serializable {
6162
*/
6263
public ConstantPoolGen(Constant[] cs) {
6364
if(cs.length > size) {
64-
size = cs.length;
65+
size = Math.min(cs.length, CONSTANT_POOL_SIZE);
6566
constants = new Constant[size];
6667
}
6768

@@ -134,10 +135,19 @@ public ConstantPoolGen() {}
134135
/** Resize internal array of constants.
135136
*/
136137
protected void adjustSize() {
138+
// 3 extra spaces are needed as some entries may take 3 slots
139+
if (index + 3 >= CONSTANT_POOL_SIZE) {
140+
throw new RuntimeException("The number of constants " + (index + 3) +
141+
" is over the size of the constant pool: " +
142+
(CONSTANT_POOL_SIZE - 1));
143+
}
144+
137145
if(index + 3 >= size) {
138146
Constant[] cs = constants;
139147

140148
size *= 2;
149+
// the constant array shall not exceed the size of the constant pool
150+
size = Math.min(size, CONSTANT_POOL_SIZE);
141151
constants = new Constant[size];
142152
System.arraycopy(cs, 0, constants, 0, index);
143153
}

0 commit comments

Comments
 (0)
Please sign in to comment.