Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 49291200BDF for ; Sun, 18 Dec 2016 13:54:00 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 36374160B30; Sun, 18 Dec 2016 12:54:00 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7FA77160B12 for ; Sun, 18 Dec 2016 13:53:59 +0100 (CET) Received: (qmail 78836 invoked by uid 500); 18 Dec 2016 12:53:58 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 78825 invoked by uid 99); 18 Dec 2016 12:53:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Dec 2016 12:53:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 745E92C03DF for ; Sun, 18 Dec 2016 12:53:58 +0000 (UTC) Date: Sun, 18 Dec 2016 12:53:58 +0000 (UTC) From: "Stefan Bodewig (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (COMPRESS-376) decompressConcatenated improvement MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 18 Dec 2016 12:54:00 -0000 [ https://issues.apache.org/jira/browse/COMPRESS-376?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15758792#comment-15758792 ] Stefan Bodewig commented on COMPRESS-376: ----------------------------------------- [~jgustie] I've pushed a unit test in git branch COMPRESS-376 and it passes. It seems I need something more sophisticated than just adding zeros at the end of a valid tgz ({{COMPRESS-376.tar.gz}} is {{bla.tar}} gzipped and padded to 2k). > decompressConcatenated improvement > ---------------------------------- > > Key: COMPRESS-376 > URL: https://issues.apache.org/jira/browse/COMPRESS-376 > Project: Commons Compress > Issue Type: Improvement > Components: Compressors > Reporter: Jeremy Gustie > > First the problem I am seeing: in general I am always setting {{decompressConcatenated}} to {{true}}, most of the time this works fine. However, it seems like some versions of Python tarfile will pad a compressed TAR file with null bytes. The null bytes are recognized as garbage, causing decompression to fail. Unfortunately this failure occurs while filling a buffer for data used to read the final entry in the TAR file causing {{TarArchiveInputStream.getNextEntry}} to fail before the last entry can be returned. > There are a couple of potential solutions I can see: > 1. The easiest thing to do we be to special case the null padding and just terminate without failing (in the {{GzipCompressorInputStream.init}} method, this amounts to adding a check for {{magic0 == 0 && (magic1 == 0 || magic1 == -1)}} and returning {{false}}). Perhaps draining the underlying stream to ensure that the remaining bytes are all null could reduce the likelihood of a false positive recognizing the padding. > 2. Change {{decompressConcatenated}} to a tri-state value (maybe add an extra {{ignoreGarbage}} flag) to suppress the failure; basically concatenated streams would be decompressed only if the appropriate magic is found. This has API impact but completely preserves backwards compatibility. > 3. Finally, deferring the failure to the next read attempt may also be a viable solution that nearly preserves backwards compatibility. As I mentioned before, the "Garbage after..." error occurs while reading the final entry in a TAR file: if the current read (which contains all of the final data from the compression stream) were allowed to complete normally, the downstream consumer might also complete normally; the next attempt to read (the garbage past the end of the compression stream) would be the read that fails with the "Garbage after..." error. This gives the downstream code the best opportunity to both process the full compression stream and receive the unexpected garbage failure. > I was mostly looking at the {{GzipCompressorInputStream}}, I suspect similar changes would be needed in the other decompress-concatenated compressor streams. -- This message was sent by Atlassian JIRA (v6.3.4#6332)