-
Bug
-
Resolution: Fixed
-
P3
-
6u7
-
b62
-
generic
-
solaris_10
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2165811 | 6u10 | Sean Coffey | P3 | Closed | Fixed | b31 |
JDK-2212169 | 5.0u33 | Sean Coffey | P4 | Closed | Fixed | b08 |
Here is a small testcase that uses java.util.zip.Deflater
//****************************************************
import java.util.Random;
import java.util.zip.Deflater;
public class TestDeflater {
public static void main(String[] args) {
int max_byte_length = 200000000;
byte[] inputData = new byte[max_byte_length];
Random random = new Random();
random.nextBytes(inputData);
System.out.println("dataSize:" + inputData.length);
Deflater compressor = new Deflater(Deflater.BEST_COMPRESSION);
compressor.setInput(inputData);
compressor.finish();
byte[] tempBuf = new byte[inputData.length];
int compressedLength = compressor.deflate(tempBuf);
System.out.println("compressedSize:" + compressedLength);
System.out.println("finishedFlag:"+compressor.finished());
compressor.end();
}
}
//****************************************************
This is how it works normally:
$ java TestDeflater
dataSize:200000000
compressedSize:200000000
finishedFlag:false
However, if either virtual memory (swap space) is scarce or the Java
process is about to hit the (4GB on Solaris32 / 2GB on Windows/Linux)
process size limit, then we will see this:
$ ulimit -d 100000 //simulating low memory condition
$ java TestDeflater
dataSize:200000000
compressedSize:0 <<<<<
finishedFlag:false
The expected behaviour should be to throw an OOME instead.
//****************************************************
import java.util.Random;
import java.util.zip.Deflater;
public class TestDeflater {
public static void main(String[] args) {
int max_byte_length = 200000000;
byte[] inputData = new byte[max_byte_length];
Random random = new Random();
random.nextBytes(inputData);
System.out.println("dataSize:" + inputData.length);
Deflater compressor = new Deflater(Deflater.BEST_COMPRESSION);
compressor.setInput(inputData);
compressor.finish();
byte[] tempBuf = new byte[inputData.length];
int compressedLength = compressor.deflate(tempBuf);
System.out.println("compressedSize:" + compressedLength);
System.out.println("finishedFlag:"+compressor.finished());
compressor.end();
}
}
//****************************************************
This is how it works normally:
$ java TestDeflater
dataSize:200000000
compressedSize:200000000
finishedFlag:false
However, if either virtual memory (swap space) is scarce or the Java
process is about to hit the (4GB on Solaris32 / 2GB on Windows/Linux)
process size limit, then we will see this:
$ ulimit -d 100000 //simulating low memory condition
$ java TestDeflater
dataSize:200000000
compressedSize:0 <<<<<
finishedFlag:false
The expected behaviour should be to throw an OOME instead.
- backported by
-
JDK-2165811 Wrong error handling in Java_java_util_zip_Deflater_deflateBytes leads to size 0 if compress fails
-
- Closed
-
-
JDK-2212169 Wrong error handling in Java_java_util_zip_Deflater_deflateBytes leads to size 0 if compress fails
-
- Closed
-