From 8d338173a4668740b1ab4a40d1d26cd25402e406 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 23 Sep 2009 17:16:37 +0200 Subject: tar: accept spaces at the end of header fields (compat) Signed-off-by: Denys Vlasenko --- archival/libunarchive/get_header_tar.c | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'archival/libunarchive/get_header_tar.c') diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c index 71e08bf7d..b8d7648ec 100644 --- a/archival/libunarchive/get_header_tar.c +++ b/archival/libunarchive/get_header_tar.c @@ -87,11 +87,13 @@ static unsigned long long getOctal(char *str, int len) { unsigned long long v; /* NB: leading spaces are allowed. Using strtoull to handle that. - * The downside is that we accept e.g. "-123" too :) + * The downside is that we accept e.g. "-123" too :( */ str[len] = '\0'; v = strtoull(str, &str, 8); - if (*str && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY || *str != ' ')) + /* std: "Each numeric field is terminated by one or more + * or NUL characters". We must support ' '! */ + if (*str != '\0' && *str != ' ') bb_error_msg_and_die("corrupted octal value in tar header"); return v; } @@ -262,20 +264,20 @@ char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) sum_s += ((signed char*)&tar)[i]; #endif } -#if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY - sum = strtoul(tar.chksum, &cp, 8); - if ((*cp && *cp != ' ') - || (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) - ) { - bb_error_msg_and_die("invalid tar header checksum"); - } -#else /* This field does not need special treatment (getOctal) */ + { + char *endp; /* gcc likes temp var for &endp */ + sum = strtoul(tar.chksum, &endp, 8); + if ((*endp != '\0' && *endp != ' ') + || (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) + ) { + bb_error_msg_and_die("invalid tar header checksum"); + } + } sum = xstrtoul(tar.chksum, 8); if (sum_u != sum IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum)) { bb_error_msg_and_die("invalid tar header checksum"); } -#endif /* 0 is reserved for high perf file, treat as normal file */ if (!tar.typeflag) tar.typeflag = '0'; -- cgit v1.2.3