You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Stefan Bodewig (JIRA)" <ji...@apache.org> on 2010/02/12 11:12:28 UTC

[jira] Resolved: (COMPRESS-96) Corrupt zip files can cause infinite loop

     [ https://issues.apache.org/jira/browse/COMPRESS-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Bodewig resolved COMPRESS-96.
------------------------------------

       Resolution: Duplicate
    Fix Version/s: 1.1

duplicate of COMPRESS-87

> Corrupt zip files can cause infinite loop
> -----------------------------------------
>
>                 Key: COMPRESS-96
>                 URL: https://issues.apache.org/jira/browse/COMPRESS-96
>             Project: Commons Compress
>          Issue Type: Bug
>    Affects Versions: 1.0
>         Environment: OS/X java 1.6
>            Reporter: Matthew Bellew
>            Priority: Critical
>             Fix For: 1.1
>
>
> I have a corrupt .zip file (in my Download directory) that causes ZipArchiveInputStream to enter an infinite loop on the second call to getEntry().  This was discovered while testing a Tika/Lucene based search application.  Obviously, it would be preferable to detect and throw an exception.  The short explanation is that closeEntry() calls skip(Long.MAX_VALUE).  skip() calls read() which returns 0 and inf.finished() remains false, so no progress is made and skip() spins.
> If it helps, entry.getSize() returns -1 for the first entry.  I can provide the file to repro (775800 bytes).
> UPDATE: I just hit he same error scanning a truncated commons-compress-1.0-bin.zip (437687 bytes) with this code.
> package main;
> import org.apache.commons.compress.archivers.ArchiveEntry;
> import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream;
> import java.io.File;
> import java.io.FileInputStream;
> import java.io.IOException;
> public class Main
> {
>     public static void main(String[] args) throws IOException
>     {
>         File f = new File(args[0]);
>         FileInputStream fis = new FileInputStream(f);
>         ZipArchiveInputStream zip = new ZipArchiveInputStream(fis);
>         ArchiveEntry entry;
>         entry = zip.getNextEntry();
>         while (null != entry)
>         {
>             if (entry.isDirectory())
>                 System.out.printf("%s/\n", entry.getName());
>             else
>                 System.out.printf("%s %d\n", entry.getName(), entry.getSize());
>             entry = zip.getNextEntry();
>         }
>         System.out.print("DONE\n");
>     }
> }
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.