diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-12 16:40:21 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-12 16:40:21 +0000 |
commit | 5a65413c042e2538eda94b2efebd1bf4680ca986 (patch) | |
tree | 21295b2a49dd8d1f3a1f7348f2536d1eefe4c3a4 /libbb | |
parent | 47fd219c956d1963fca0ba73ff7b21b1273977a7 (diff) | |
download | busybox-5a65413c042e2538eda94b2efebd1bf4680ca986.tar.gz |
Updates, fixes for handling contents, verbose extract.
More updates to come
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/untar.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/libbb/untar.c b/libbb/untar.c index 11c55df7c..d3e424e25 100644 --- a/libbb/untar.c +++ b/libbb/untar.c @@ -57,6 +57,7 @@ extern int untar(FILE *src_tar_file, int untar_function, char *base_path) char *dir = NULL; if (ferror(src_tar_file) || feof(src_tar_file)) { + perror_msg("untar: "); break; } @@ -100,7 +101,6 @@ extern int untar(FILE *src_tar_file, int untar_function, char *base_path) if (size % 512 != 0) { next_header_offset += (512 - size % 512); } - /* * seek to start of control file, return length * @@ -139,25 +139,24 @@ extern int untar(FILE *src_tar_file, int untar_function, char *base_path) * supposed to be a directory, and fall through */ if (raw_tar_header.name[strlen(raw_tar_header.name)-1] != '/') { - switch (untar_function) { - case (extract_extract): { - FILE *dst_file = wfopen(dir, "w"); - copy_file_chunk(src_tar_file, dst_file, size); - fclose(dst_file); - } + if (untar_function & (extract_extract | extract_verbose_extract | extract_control)) { + FILE *dst_file = wfopen(dir, "w"); + copy_file_chunk(src_tar_file, dst_file, (unsigned long long) size); + uncompressed_count += size; + fclose(dst_file); + } + while (uncompressed_count < next_header_offset) { + if (fgetc(src_tar_file) == EOF) { + perror_msg("untar"); break; - default: { - int remaining = size; - while (remaining-- > 0) { - fgetc(src_tar_file); - } - } + } + uncompressed_count++; } uncompressed_count += size; break; } case '5': - if (untar_function & extract_extract) { + if (untar_function & (extract_extract | extract_verbose_extract | extract_control)) { if (create_path(dir, mode) != TRUE) { free(dir); perror_msg("%s: Cannot mkdir", raw_tar_header.name); @@ -166,7 +165,7 @@ extern int untar(FILE *src_tar_file, int untar_function, char *base_path) } break; case '1': - if (untar_function & extract_extract) { + if (untar_function & (extract_extract | extract_verbose_extract | extract_control)) { if (link(raw_tar_header.linkname, raw_tar_header.name) < 0) { free(dir); perror_msg("%s: Cannot create hard link to '%s'", raw_tar_header.name, raw_tar_header.linkname); @@ -175,7 +174,7 @@ extern int untar(FILE *src_tar_file, int untar_function, char *base_path) } break; case '2': - if (untar_function & extract_extract) { + if (untar_function & (extract_extract | extract_verbose_extract | extract_control)) { if (symlink(raw_tar_header.linkname, raw_tar_header.name) < 0) { free(dir); perror_msg("%s: Cannot create symlink to '%s'", raw_tar_header.name, raw_tar_header.linkname); |