[
https://issues.apache.org/jira/browse/COMPRESS-421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16193823#comment-16193823
]
ASF GitHub Bot commented on COMPRESS-421:
-----------------------------------------
GitHub user rspilker opened a pull request:
https://github.com/apache/commons-compress/pull/53
Let parseName stop at first NUL
Fixes COMPRESS-421
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/rspilker/commons-compress patch-1
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/commons-compress/pull/53.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #53
----
commit 321aac3f6f053431416af3b1f644bf4bebd6bebc
Author: Roel Spilker <[email protected]>
Date: 2017-10-05T22:07:21Z
Let parseName stop at first NUL
Fixes COMPRESS-421
----
> TarUtils.parseName does not follow the spec
> -------------------------------------------
>
> Key: COMPRESS-421
> URL: https://issues.apache.org/jira/browse/COMPRESS-421
> Project: Commons Compress
> Issue Type: Bug
> Components: Archivers
> Affects Versions: 1.4, 1.14
> Reporter: Roel Spilker
> Priority: Minor
> Attachments: foo.tar.gz
>
>
> TarUtils.parseName does not stop at the first NUL byte, resulting in
> non-empty strings where they should be empty.
> This manifests if the tar file contains a star_header struct instead of a
> posix_header as defined in
> https://www.gnu.org/software/tar/manual/html_node/Standard.html
> The javadoc on parseName states "Parse an entry name from a buffer. Parsing
> stops when a NUL is found or the buffer length is reached."
> However, the implementation starts at the end of the buffer and stops when
> the first non-NUL is found.
> The solution is to replace:
> {code:java}
> int len = length;
> for (; len > 0; len--) {
> if (buffer[offset + len - 1] != 0) {
> break;
> }
> }
> {code}
> by
> {code:java}
> int len = 0;
> for (int i = offset; buffer[i] != 0 && len < length; i++, len++);
> {code}
> This has been introduce in commit
> https://git-wip-us.apache.org/repos/asf?p=commons-compress.git;a=commitdiff;h=69ceb4e14feb6273c06c1e35ba116b6783bb3278
>
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)