summaryrefslogtreecommitdiff
path: root/archive-tar.c
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2013-01-05 22:49:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-06 06:56:36 (GMT)
commit22f0dcd9634a818a0c83f23ea1a48f2d620c0546 (patch)
tree3fd71ef3c913ba2d46573ed5d2402d9a0ea1a6c0 /archive-tar.c
parent828ea97de486c1693d6e4f2c7347acb50235a85d (diff)
downloadgit-22f0dcd9634a818a0c83f23ea1a48f2d620c0546.zip
git-22f0dcd9634a818a0c83f23ea1a48f2d620c0546.tar.gz
git-22f0dcd9634a818a0c83f23ea1a48f2d620c0546.tar.bz2
archive-tar: split long paths more carefully
The name field of a tar header has a size of 100 characters. This limit was extended long ago in a backward compatible way by providing the additional prefix field, which can hold 155 additional characters. The actual path is constructed at extraction time by concatenating the prefix field, a slash and the name field. get_path_prefix() is used to determine which slash in the path is used as the cutting point and thus which part of it is placed into the field prefix and which into the field name. It tries to cram as much into the prefix field as possible. (And only if we can't fit a path into the provided 255 characters we use a pax extended header to store it.) If a path is longer than 100 but shorter than 156 characters and ends with a slash (i.e. is for a directory) then get_path_prefix() puts the whole path in the prefix field and leaves the name field empty. GNU tar reconstructs the path without complaint, but the tar included with NetBSD 6 does not: It reports the header to be invalid. For compatibility with this version of tar, make sure to never leave the name field empty. In order to do that, trim the trailing slash from the part considered as possible prefix, if it exists -- that way the last path component (or more, but not less) will end up in the name field. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive-tar.c')
-rw-r--r--archive-tar.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/archive-tar.c b/archive-tar.c
index 20af005..9d4eec2 100644
--- a/archive-tar.c
+++ b/archive-tar.c
@@ -115,6 +115,8 @@ static unsigned int ustar_header_chksum(const struct ustar_header *header)
static size_t get_path_prefix(const char *path, size_t pathlen, size_t maxlen)
{
size_t i = pathlen;
+ if (i > 1 && path[i - 1] == '/')
+ i--;
if (i > maxlen)
i = maxlen;
do {