Skip to content

Commit

Permalink
Remove support for duplicate file entries
Browse files Browse the repository at this point in the history
Bug: 8219321
Change-Id: Ibc56bea753917c38e1bb20df48aa45fdff39d364
  • Loading branch information
gcondra authored and hyperb1iss committed Jul 7, 2013
1 parent 8a22bed commit fe70e69
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
5 changes: 4 additions & 1 deletion luni/src/main/java/java/util/zip/ZipFile.java
Expand Up @@ -363,7 +363,10 @@ private void readCentralDir() throws IOException {
byte[] hdrBuf = new byte[CENHDR]; // Reuse the same buffer for each entry.
for (int i = 0; i < numEntries; ++i) {
ZipEntry newEntry = new ZipEntry(hdrBuf, bin);
mEntries.put(newEntry.getName(), newEntry);
String entryName = newEntry.getName();
if (mEntries.put(entryName, newEntry) != null) {
throw new ZipException("Duplicate entry name: " + entryName);
}
}
}

Expand Down
64 changes: 64 additions & 0 deletions luni/src/test/java/libcore/java/util/zip/ZipFileTest.java
Expand Up @@ -17,9 +17,11 @@
package libcore.java.util.zip;

import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
Expand All @@ -30,6 +32,7 @@
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;
import junit.framework.TestCase;
import libcore.io.IoUtils;

public final class ZipFileTest extends TestCase {

Expand All @@ -54,6 +57,67 @@ public void testInflatingFilesRequiringZipRefill() throws IOException {
zipFile.close();
}

private static void replaceBytes(byte[] original, byte[] replacement, byte[] buffer) {
// Gotcha here: original and replacement must be the same length
assertEquals(original.length, replacement.length);
boolean found;
for(int i=0; i < buffer.length - original.length; i++) {
found = false;
if (buffer[i] == original[0]) {
found = true;
for (int j=0; j < original.length; j++) {
if (buffer[i+j] != original[j]) {
found = false;
break;
}
}
}
if (found) {
for (int j=0; j < original.length; j++) {
buffer[i+j] = replacement[j];
}
}
}
}

/**
* Make sure we don't fail silently for duplicate entries.
* b/8219321
*/
public void testDuplicateEntries() throws IOException {
String entryName = "test_file_name1";
String tmpName = "test_file_name2";

// create the template data
ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
ZipOutputStream out = new ZipOutputStream(bytesOut);
ZipEntry ze1 = new ZipEntry(tmpName);
out.putNextEntry(ze1);
out.closeEntry();
ZipEntry ze2 = new ZipEntry(entryName);
out.putNextEntry(ze2);
out.closeEntry();
out.close();

// replace the bytes we don't like
byte[] buf = bytesOut.toByteArray();
replaceBytes(tmpName.getBytes(), entryName.getBytes(), buf);

// write the result to a file
File badZip = File.createTempFile("badzip", "zip");
badZip.deleteOnExit();
FileOutputStream outstream = new FileOutputStream(badZip);
outstream.write(buf);
outstream.close();

// see if we can still handle it
try {
ZipFile bad = new ZipFile(badZip);
fail();
} catch (ZipException expected) {
}
}

public void testInflatingStreamsRequiringZipRefill() throws IOException {
int originalSize = 1024 * 1024;
byte[] readBuffer = new byte[8192];
Expand Down

0 comments on commit fe70e69

Please sign in to comment.