Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8321802: (zipfs) Add validation of incorrect LOC signature in ZipFileSystem #17059

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystem.java
Original file line number Diff line number Diff line change
@@ -2573,7 +2573,10 @@ private void initDataPos() throws IOException {
pos = -pos + locpos;
byte[] buf = new byte[LOCHDR];
if (readNBytesAt(buf, 0, buf.length, pos) != LOCHDR) {
throw new ZipException("invalid loc " + pos + " for entry reading");
throw new ZipException("invalid LOC " + pos + " for entry reading");
}
if (LOCSIG(buf) != LOCSIG) {
throw new ZipException("invalid LOC header (bad signature)");
}
pos += LOCHDR + LOCNAM(buf) + LOCEXT(buf);
}
12 changes: 11 additions & 1 deletion test/jdk/jdk/nio/zipfs/CorruptedZipFilesTest.java
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
*/

/* @test
* @bug 8316141
* @bug 8316141 8321802
* @summary test for correct detection and reporting of corrupted zip files
* @run junit CorruptedZipFilesTest
*/
@@ -287,6 +287,16 @@ public void unsupportedCompressionMethod() throws IOException {
assertZipException(".*unsupported compression method.*");
}

/*
* A ZipException is thrown when a LOC header has an unexpected signature
*/
@Test
public void invalidLOCSignature() throws IOException {
int existingSignature = buffer.getInt(locpos);
buffer.putInt(locpos, existingSignature +1);
assertZipException(".*bad signature.*");
}

/*
* Assert that opening a ZIP file and consuming the entry's
* InputStream using the ZipFile API fails with a ZipException