#include "config.h"
#include "compat.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _WIN32
#include <fcntl.h>
#ifndef STDIN_FILENO
#define STDIN_FILENO _fileno(stdin)
#endif
#endif
#ifndef HAVE_GETOPT
#include "getopt.h"
#endif
extern int optopt;
#include "zip.h"
typedef struct dispatch_table_s {
const char *cmdline_name;
int argument_count;
const char *arg_names;
const char *description;
int (*function)(char *argv[]);
} dispatch_table_t;
static zip_flags_t get_flags(const char *arg);
static zip_int32_t get_compression_method(const char *arg);
static zip_uint16_t get_encryption_method(const char *arg);
static void hexdump(const zip_uint8_t *data, zip_uint16_t len);
static int parse_archive_flag(const char* arg);
int ziptool_post_close(const char *archive);
static const char* decode_filename(const char* name);
static const char* encode_filename(const char* name);
#ifndef FOR_REGRESS
#define OPTIONS_REGRESS ""
#define USAGE_REGRESS ""
#endif
zip_t *za, *z_in[16];
unsigned int z_in_count;
zip_flags_t stat_flags;
int hex_encoded_filenames = 0;
static int
cat_impl_backend(zip_uint64_t idx, zip_uint64_t start, zip_uint64_t len, FILE *out) {
zip_error_t error;
zip_source_t *src;
zip_int64_t n;
char buf[8192];
zip_error_init(&error);
if (len == 0) {
struct zip_stat sb;
if (zip_stat_index(za, idx, stat_flags, &sb) < 0) {
fprintf(stderr, "zip_stat_index failed on '%" PRIu64 "' failed: %s\n", idx, zip_strerror(za));
return -1;
}
if (!(sb.valid & ZIP_STAT_SIZE)) {
fprintf(stderr, "can't cat file at index '%" PRIu64 "' with unknown size\n", idx);
return -1;
}
len = sb.size;
}
if ((src = zip_source_zip_file_create(za, idx, 0, start, len, NULL, &error)) == NULL) {
fprintf(stderr, "can't open file at index '%" PRIu64 "': %s\n", idx, zip_error_strerror(&error));
zip_error_fini(&error);
return -1;
}
zip_error_fini(&error);
if (zip_source_open(src) < 0) {
fprintf(stderr, "can't open file at index '%" PRIu64 "': %s\n", idx, zip_error_strerror(zip_source_error(src)));
zip_source_free(src);
return -1;
}
while ((n = zip_source_read(src, buf, sizeof(buf))) > 0) {
if (fwrite(buf, (size_t)n, 1, out) != 1) {
fprintf(stderr, "can't write file contents: %s\n", strerror(errno));
zip_source_free(src);
return -1;
}
}
if (n == -1) {
fprintf(stderr, "can't read file at index '%" PRIu64 "': %s\n", idx, zip_error_strerror(zip_source_error(src)));
zip_source_free(src);
return -1;
}
if (zip_source_close(src) < 0) {
fprintf(stderr, "can't close file at index '%" PRIu64 "': %s\n", idx, zip_error_strerror(zip_source_error(src)));
zip_source_free(src);
return -1;
}
zip_source_free(src);
return 0;
}
static int
cat_impl(zip_uint64_t idx, zip_uint64_t start, zip_uint64_t len) {
#ifdef _WIN32
setmode(fileno(stdout), _O_BINARY);
#endif
return cat_impl_backend(idx, start, len, stdout);
}
static int
add(char *argv[]) {
zip_source_t *zs;
if ((zs = zip_source_buffer(za, argv[1], strlen(argv[1]), 0)) == NULL) {
fprintf(stderr, "can't create zip_source from buffer: %s\n", zip_strerror(za));
return -1;
}
if (zip_file_add(za, decode_filename(argv[0]), zs, 0) == -1) {
zip_source_free(zs);
fprintf(stderr, "can't add file '%s': %s\n", argv[0], zip_strerror(za));
return -1;
}
return 0;
}
static int
add_dir(char *argv[]) {
if (zip_dir_add(za, decode_filename(argv[0]), 0) < 0) {
fprintf(stderr, "can't add directory '%s': %s\n", argv[0], zip_strerror(za));
return -1;
}
return 0;
}
static int
add_file(char *argv[]) {
zip_source_t *zs;
zip_uint64_t start = strtoull(argv[2], NULL, 10);
zip_int64_t len = strtoll(argv[3], NULL, 10);
if (strcmp(argv[1], "/dev/stdin") == 0) {
if ((zs = zip_source_filep(za, stdin, start, len)) == NULL) {
fprintf(stderr, "can't create zip_source from stdin: %s\n", zip_strerror(za));
return -1;
}
}
else {
if ((zs = zip_source_file(za, argv[1], start, len)) == NULL) {
fprintf(stderr, "can't create zip_source from file: %s\n", zip_strerror(za));
return -1;
}
}
if (zip_file_add(za, decode_filename(argv[0]), zs, 0) == -1) {
zip_source_free(zs);
fprintf(stderr, "can't add file '%s': %s\n", argv[0], zip_strerror(za));
return -1;
}
return 0;
}
static int
add_from_zip(char *argv[]) {
zip_uint64_t idx, start;
zip_int64_t len;
int err;
zip_source_t *zs;
zip_flags_t flags = 0;
idx = strtoull(argv[2], NULL, 10);
start = strtoull(argv[3], NULL, 10);
len = strtoll(argv[4], NULL, 10);
if ((z_in[z_in_count] = zip_open(argv[1], ZIP_CHECKCONS, &err)) == NULL) {
zip_error_t error;
zip_error_init_with_code(&error, err);
fprintf(stderr, "can't open zip archive '%s': %s\n", argv[1], zip_error_strerror(&error));
zip_error_fini(&error);
return -1;
}
if (start == 0 && len == -1) {
flags = ZIP_FL_COMPRESSED;
}
if ((zs = zip_source_zip_file(za, z_in[z_in_count], idx, flags, start, len, NULL)) == NULL) {
fprintf(stderr, "error creating file source from '%s' index '%" PRIu64 "': %s\n", argv[1], idx, zip_strerror(za));
zip_close(z_in[z_in_count]);
return -1;
}
if (zip_file_add(za, decode_filename(argv[0]), zs, 0) == -1) {
fprintf(stderr, "can't add file '%s': %s\n", argv[0], zip_strerror(za));
zip_source_free(zs);
zip_close(z_in[z_in_count]);
return -1;
}
z_in_count++;
return 0;
}
static int
cat(char *argv[]) {
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
return cat_impl(idx, 0, 0);
}
static int
cat_partial(char *argv[]) {
zip_uint64_t idx;
zip_uint64_t start;
zip_uint64_t len;
idx = strtoull(argv[0], NULL, 10);
start = strtoull(argv[1], NULL, 10);
len = strtoull(argv[2], NULL, 10);
return cat_impl(idx, start, len);
}
static int
count_extra(char *argv[]) {
zip_int16_t count;
zip_uint64_t idx;
zip_flags_t ceflags = 0;
idx = strtoull(argv[0], NULL, 10);
ceflags = get_flags(argv[1]);
if ((count = zip_file_extra_fields_count(za, idx, ceflags)) < 0) {
fprintf(stderr, "can't get extra field count for file at index '%" PRIu64 "': %s\n", idx, zip_strerror(za));
return -1;
}
else {
printf("Extra field count: %d\n", count);
}
return 0;
}
static int
count_extra_by_id(char *argv[]) {
zip_int16_t count;
zip_uint16_t eid;
zip_flags_t ceflags = 0;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eid = (zip_uint16_t)strtoull(argv[1], NULL, 10);
ceflags = get_flags(argv[2]);
if ((count = zip_file_extra_fields_count_by_id(za, idx, eid, ceflags)) < 0) {
fprintf(stderr, "can't get extra field count for file at index '%" PRIu64 "' and for id '%d': %s\n", idx, eid, zip_strerror(za));
return -1;
}
else {
printf("Extra field count: %d\n", count);
}
return 0;
}
static int delete (char *argv[]) {
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
if (zip_delete(za, idx) < 0) {
fprintf(stderr, "can't delete file at index '%" PRIu64 "': %s\n", idx, zip_strerror(za));
return -1;
}
return 0;
}
static int
delete_extra(char *argv[]) {
zip_flags_t geflags;
zip_uint16_t eid;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eid = (zip_uint16_t)strtoull(argv[1], NULL, 10);
geflags = get_flags(argv[2]);
if ((zip_file_extra_field_delete(za, idx, eid, geflags)) < 0) {
fprintf(stderr, "can't delete extra field data for file at index '%" PRIu64 "', extra field id '%d': %s\n", idx, eid, zip_strerror(za));
return -1;
}
return 0;
}
static int
delete_extra_by_id(char *argv[]) {
zip_flags_t geflags;
zip_uint16_t eid, eidx;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eid = (zip_uint16_t)strtoull(argv[1], NULL, 10);
eidx = (zip_uint16_t)strtoull(argv[2], NULL, 10);
geflags = get_flags(argv[3]);
if ((zip_file_extra_field_delete_by_id(za, idx, eid, eidx, geflags)) < 0) {
fprintf(stderr, "can't delete extra field data for file at index '%" PRIu64 "', extra field id '%d', extra field idx '%d': %s\n", idx, eid, eidx, zip_strerror(za));
return -1;
}
return 0;
}
static int
get_archive_comment(char *argv[]) {
const char *comment;
int len;
if ((comment = zip_get_archive_comment(za, &len, 0)) == NULL || len == 0)
printf("No archive comment\n");
else
printf("Archive comment: %.*s\n", len, encode_filename(comment));
return 0;
}
static int
get_archive_flag(char *argv[]) {
int flag = parse_archive_flag(argv[0]);
if (flag < 0) {
fprintf(stderr, "invalid archive flag '%s'\n", argv[0]);
return -1;
}
printf("%d\n", zip_get_archive_flag(za, flag, 0));
return 0;
}
static int
get_extra(char *argv[]) {
zip_flags_t geflags;
zip_uint16_t id, eidx, eflen;
const zip_uint8_t *efdata;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eidx = (zip_uint16_t)strtoull(argv[1], NULL, 10);
geflags = get_flags(argv[2]);
if ((efdata = zip_file_extra_field_get(za, idx, eidx, &id, &eflen, geflags)) == NULL) {
fprintf(stderr, "can't get extra field data for file at index %" PRIu64 ", extra field %d, flags %u: %s\n", idx, eidx, geflags, zip_strerror(za));
return -1;
}
printf("Extra field 0x%04x: len %d", id, eflen);
if (eflen > 0) {
printf(", data ");
hexdump(efdata, eflen);
}
printf("\n");
return 0;
}
static int
get_extra_by_id(char *argv[]) {
zip_flags_t geflags;
zip_uint16_t eid, eidx, eflen;
const zip_uint8_t *efdata;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eid = (zip_uint16_t)strtoull(argv[1], NULL, 10);
eidx = (zip_uint16_t)strtoull(argv[2], NULL, 10);
geflags = get_flags(argv[3]);
if ((efdata = zip_file_extra_field_get_by_id(za, idx, eid, eidx, &eflen, geflags)) == NULL) {
fprintf(stderr, "can't get extra field data for file at index %" PRIu64 ", extra field id %d, ef index %d, flags %u: %s\n", idx, eid, eidx, geflags, zip_strerror(za));
return -1;
}
printf("Extra field 0x%04x: len %d", eid, eflen);
if (eflen > 0) {
printf(", data ");
hexdump(efdata, eflen);
}
printf("\n");
return 0;
}
static int
get_file_comment(char *argv[]) {
const char *comment;
zip_uint32_t len;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
if ((comment = zip_file_get_comment(za, idx, &len, 0)) == NULL) {
fprintf(stderr, "can't get comment for '%s': %s\n", zip_get_name(za, idx, 0), zip_strerror(za));
return -1;
}
else if (len == 0)
printf("No comment for '%s'\n", zip_get_name(za, idx, 0));
else
printf("File comment for '%s': %.*s\n", zip_get_name(za, idx, 0), (int)len, comment);
return 0;
}
static int
get_num_entries(char *argv[]) {
zip_int64_t count;
zip_flags_t flags;
flags = get_flags(argv[0]);
count = zip_get_num_entries(za, flags);
printf("%" PRId64 " entr%s in archive\n", count, count == 1 ? "y" : "ies");
return 0;
}
static int
name_locate(char *argv[]) {
zip_flags_t flags;
zip_int64_t idx;
flags = get_flags(argv[1]);
if ((idx = zip_name_locate(za, decode_filename(argv[0]), flags)) < 0) {
fprintf(stderr, "can't find entry with name '%s' using flags '%s'\n", argv[0], argv[1]);
}
else {
printf("name '%s' using flags '%s' found at index %" PRId64 "\n", argv[0], argv[1], idx);
}
return 0;
}
struct progress_userdata_s {
double percentage;
double limit;
};
struct progress_userdata_s progress_userdata;
static void
progress_callback(zip_t *archive, double percentage, void *ud) {
printf("%.1f%% done\n", percentage * 100);
progress_userdata.percentage = percentage;
}
static int
print_progress(char *argv[]) {
zip_register_progress_callback_with_state(za, 0.001, progress_callback, NULL, NULL);
return 0;
}
static int
zrename(char *argv[]) {
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
if (zip_file_rename(za, idx, decode_filename(argv[1]), 0) < 0) {
fprintf(stderr, "can't rename file at index '%" PRIu64 "' to '%s': %s\n", idx, argv[1], zip_strerror(za));
return -1;
}
return 0;
}
static int
replace_file_contents(char *argv[]) {
const char *content;
zip_source_t *s;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
content = argv[1];
if ((s = zip_source_buffer(za, content, strlen(content), 0)) == NULL || zip_file_replace(za, idx, s, 0) < 0) {
zip_source_free(s);
fprintf(stderr, "error replacing file data: %s\n", zip_strerror(za));
return -1;
}
return 0;
}
static int
set_extra(char *argv[]) {
zip_flags_t geflags;
zip_uint16_t eid, eidx;
const zip_uint8_t *efdata;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
eid = (zip_uint16_t)strtoull(argv[1], NULL, 10);
eidx = (zip_uint16_t)strtoull(argv[2], NULL, 10);
geflags = get_flags(argv[3]);
efdata = (zip_uint8_t *)argv[4];
if ((zip_file_extra_field_set(za, idx, eid, eidx, efdata, (zip_uint16_t)strlen((const char *)efdata), geflags)) < 0) {
fprintf(stderr, "can't set extra field data for file at index '%" PRIu64 "', extra field id '%d', index '%d': %s\n", idx, eid, eidx, zip_strerror(za));
return -1;
}
return 0;
}
static int
set_archive_comment(char *argv[]) {
if (zip_set_archive_comment(za, argv[0], (zip_uint16_t)strlen(argv[0])) < 0) {
fprintf(stderr, "can't set archive comment to '%s': %s\n", argv[0], zip_strerror(za));
return -1;
}
return 0;
}
static int
set_archive_flag(char *argv[]) {
int flag = parse_archive_flag(argv[0]);
if (flag < 0) {
fprintf(stderr, "invalid archive flag '%s'\n", argv[0]);
return -1;
}
int value = strcasecmp(argv[1], "1") == 0 || strcasecmp(argv[1], "true") == 0 || strcasecmp(argv[1], "yes") == 0;
if (zip_set_archive_flag(za, flag, value) < 0) {
fprintf(stderr, "can't set archive flag '%s' to %d: %s\n", argv[0], value, zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_comment(char *argv[]) {
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
if (zip_file_set_comment(za, idx, argv[1], (zip_uint16_t)strlen(argv[1]), 0) < 0) {
fprintf(stderr, "can't set file comment at index '%" PRIu64 "' to '%s': %s\n", idx, argv[1], zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_compression(char *argv[]) {
zip_int32_t method;
zip_uint32_t flags;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
method = get_compression_method(argv[1]);
flags = (zip_uint32_t)strtoull(argv[2], NULL, 10);
if (zip_set_file_compression(za, idx, method, flags) < 0) {
fprintf(stderr, "can't set file compression method at index '%" PRIu64 "' to '%s', flags '%" PRIu32 "': %s\n", idx, argv[1], flags, zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_encryption(char *argv[]) {
zip_uint16_t method;
zip_uint64_t idx;
char *password;
idx = strtoull(argv[0], NULL, 10);
method = get_encryption_method(argv[1]);
password = argv[2];
if (strlen(password) == 0) {
password = NULL;
}
if (zip_file_set_encryption(za, idx, method, password) < 0) {
fprintf(stderr, "can't set file encryption method at index '%" PRIu64 "' to '%s': %s\n", idx, argv[1], zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_dostime(char *argv[]) {
zip_uint16_t dostime, dosdate;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
dostime = (zip_uint16_t)strtoull(argv[1], NULL, 10);
dosdate = (zip_uint16_t)strtoull(argv[2], NULL, 10);
if (zip_file_set_dostime(za, idx, dostime, dosdate, 0) < 0) {
fprintf(stderr, "can't set file dostime at index '%" PRIu64 "' to '%d'/'%d': %s\n", idx, (int)dostime, (int)dosdate, zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_mtime(char *argv[]) {
time_t mtime;
zip_uint64_t idx;
idx = strtoull(argv[0], NULL, 10);
mtime = (time_t)strtoull(argv[1], NULL, 10);
if (zip_file_set_mtime(za, idx, mtime, 0) < 0) {
fprintf(stderr, "can't set file mtime at index '%" PRIu64 "' to '%lld': %s\n", idx, (long long)mtime, zip_strerror(za));
return -1;
}
return 0;
}
static int
set_file_mtime_all(char *argv[]) {
time_t mtime;
zip_int64_t num_entries;
zip_uint64_t idx;
mtime = (time_t)strtoull(argv[0], NULL, 10);
if ((num_entries = zip_get_num_entries(za, 0)) < 0) {
fprintf(stderr, "can't get number of entries: %s\n", zip_strerror(za));
return -1;
}
for (idx = 0; idx < (zip_uint64_t)num_entries; idx++) {
if (zip_file_set_mtime(za, idx, mtime, 0) < 0) {
fprintf(stderr, "can't set file mtime at index '%" PRIu64 "' to '%lld': %s\n", idx, (long long)mtime, zip_strerror(za));
return -1;
}
}
return 0;
}
static int
set_password(char *argv[]) {
if (zip_set_default_password(za, argv[0]) < 0) {
fprintf(stderr, "can't set default password to '%s'\n", argv[0]);
return -1;
}
return 0;
}
static int
zstat(char *argv[]) {
zip_uint64_t idx;
char buf[100];
struct zip_stat sb;
idx = strtoull(argv[0], NULL, 10);
if (zip_stat_index(za, idx, stat_flags, &sb) < 0) {
fprintf(stderr, "zip_stat_index failed on '%" PRIu64 "' failed: %s\n", idx, zip_strerror(za));
return -1;
}
if (sb.valid & ZIP_STAT_NAME)
printf("name: '%s'\n", encode_filename(sb.name));
if (sb.valid & ZIP_STAT_INDEX)
printf("index: '%" PRIu64 "'\n", sb.index);
if (sb.valid & ZIP_STAT_SIZE)
printf("size: '%" PRIu64 "'\n", sb.size);
if (sb.valid & ZIP_STAT_COMP_SIZE)
printf("compressed size: '%" PRIu64 "'\n", sb.comp_size);
if (sb.valid & ZIP_STAT_MTIME) {
struct tm *tpm;
struct tm tm;
tpm = zip_localtime(&sb.mtime, &tm);
if (tpm == NULL) {
printf("mtime: <not valid>\n");
}
else {
strftime(buf, sizeof(buf), "%a %b %d %Y %H:%M:%S", tpm);
printf("mtime: '%s'\n", buf);
}
}
if (sb.valid & ZIP_STAT_CRC)
printf("crc: '%0x'\n", sb.crc);
if (sb.valid & ZIP_STAT_COMP_METHOD)
printf("compression method: '%d'\n", sb.comp_method);
if (sb.valid & ZIP_STAT_ENCRYPTION_METHOD)
printf("encryption method: '%d'\n", sb.encryption_method);
if (sb.valid & ZIP_STAT_FLAGS)
printf("flags: '%ld'\n", (long)sb.flags);
printf("\n");
return 0;
}
static int parse_archive_flag(const char* arg) {
if (strcasecmp(arg, "rdonly") == 0) {
return ZIP_AFL_RDONLY;
}
else if (strcasecmp(arg, "is-torrentzip") == 0) {
return ZIP_AFL_IS_TORRENTZIP;
}
else if (strcasecmp(arg, "want-torrentzip") == 0) {
return ZIP_AFL_WANT_TORRENTZIP;
}
else if (strcasecmp(arg, "create-or-keep-file-for-empty-archive") == 0) {
return ZIP_AFL_CREATE_OR_KEEP_FILE_FOR_EMPTY_ARCHIVE;
}
return -1;
}
static zip_flags_t
get_flags(const char *arg) {
zip_flags_t flags = 0;
if (strchr(arg, 'C') != NULL)
flags |= ZIP_FL_NOCASE;
if (strchr(arg, 'c') != NULL)
flags |= ZIP_FL_CENTRAL;
if (strchr(arg, 'd') != NULL)
flags |= ZIP_FL_NODIR;
if (strchr(arg, 'l') != NULL)
flags |= ZIP_FL_LOCAL;
if (strchr(arg, 'u') != NULL)
flags |= ZIP_FL_UNCHANGED;
if (strchr(arg, '8') != NULL)
flags |= ZIP_FL_ENC_UTF_8;
if (strchr(arg, '4') != NULL)
flags |= ZIP_FL_ENC_CP437;
if (strchr(arg, 'r') != NULL)
flags |= ZIP_FL_ENC_RAW;
if (strchr(arg, 's') != NULL)
flags |= ZIP_FL_ENC_STRICT;
return flags;
}
static zip_int32_t
get_compression_method(const char *arg) {
if (strcasecmp(arg, "default") == 0)
return ZIP_CM_DEFAULT;
else if (strcasecmp(arg, "store") == 0)
return ZIP_CM_STORE;
else if (strcasecmp(arg, "deflate") == 0)
return ZIP_CM_DEFLATE;
#if defined(HAVE_LIBBZ2)
else if (strcasecmp(arg, "bzip2") == 0)
return ZIP_CM_BZIP2;
#endif
#if defined(HAVE_LIBLZMA)
else if (strcasecmp(arg, "lzma") == 0)
return ZIP_CM_LZMA;
else if (strcasecmp(arg, "xz") == 0)
return ZIP_CM_XZ;
#endif
#if defined(HAVE_LIBZSTD)
else if (strcasecmp(arg, "zstd") == 0)
return ZIP_CM_ZSTD;
#endif
else if (strcasecmp(arg, "unknown") == 0)
return 100;
return 0;
}
static zip_uint16_t
get_encryption_method(const char *arg) {
if (strcasecmp(arg, "none") == 0)
return ZIP_EM_NONE;
else if (strcasecmp(arg, "PKWARE") == 0)
return ZIP_EM_TRAD_PKWARE;
else if (strcasecmp(arg, "AES-128") == 0)
return ZIP_EM_AES_128;
else if (strcasecmp(arg, "AES-192") == 0)
return ZIP_EM_AES_192;
else if (strcasecmp(arg, "AES-256") == 0)
return ZIP_EM_AES_256;
else if (strcasecmp(arg, "unknown") == 0)
return 100;
return (zip_uint16_t)-1;
}
static void
hexdump(const zip_uint8_t *data, zip_uint16_t len) {
zip_uint16_t i;
if (len <= 0)
return;
printf("0x");
for (i = 0; i < len; i++)
printf("%02x", data[i]);
}
static zip_t *
read_from_file(const char *archive, int flags, zip_error_t *error, zip_uint64_t offset, zip_uint64_t length) {
zip_t *zaa;
zip_source_t *source;
int err;
if (offset == 0 && length == 0) {
if (strcmp(archive, "/dev/stdin") == 0) {
zaa = zip_fdopen(STDIN_FILENO, flags & ~ZIP_CREATE, &err);
}
else {
zaa = zip_open(archive, flags, &err);
}
if (zaa == NULL) {
zip_error_set(error, err, errno);
return NULL;
}
}
else {
if (length > ZIP_INT64_MAX) {
zip_error_set(error, ZIP_ER_INVAL, 0);
return NULL;
}
if ((source = zip_source_file_create(archive, offset, (zip_int64_t)length, error)) == NULL || (zaa = zip_open_from_source(source, flags, error)) == NULL) {
zip_source_free(source);
return NULL;
}
}
return zaa;
}
dispatch_table_t dispatch_table[] = {{"add", 2, "name content", "add file called name using content", add},
{"add_dir", 1, "name", "add directory", add_dir},
{"add_file", 4, "name file_to_add offset len", "add file to archive, len bytes starting from offset", add_file},
{"add_from_zip", 5, "name archivename index offset len", "add file from another archive, len bytes starting from offset", add_from_zip},
{"cat", 1, "index", "output file contents to stdout", cat},
{"cat_partial", 3, "index start length", "output partial file contents to stdout", cat_partial},
{"count_extra", 2, "index flags", "show number of extra fields for archive entry", count_extra},
{"count_extra_by_id", 3, "index extra_id flags", "show number of extra fields of type extra_id for archive entry", count_extra_by_id},
{"delete", 1, "index", "remove entry", delete},
{"delete_extra", 3, "index extra_idx flags", "remove extra field", delete_extra},
{"delete_extra_by_id", 4, "index extra_id extra_index flags", "remove extra field of type extra_id", delete_extra_by_id},
{"get_archive_comment", 0, "", "show archive comment", get_archive_comment},
{"get_archive_flag", 1, "flag", "show archive flag", get_archive_flag},
{"get_extra", 3, "index extra_index flags", "show extra field", get_extra},
{"get_extra_by_id", 4, "index extra_id extra_index flags", "show extra field of type extra_id", get_extra_by_id},
{"get_file_comment", 1, "index", "get file comment", get_file_comment},
{"get_num_entries", 1, "flags", "get number of entries in archive", get_num_entries},
{"name_locate", 2, "name flags", "find entry in archive", name_locate},
{"print_progress", 0, "", "print progress during zip_close()", print_progress},
{"rename", 2, "index name", "rename entry", zrename},
{"replace_file_contents", 2, "index data", "replace entry with data", replace_file_contents},
{"set_archive_comment", 1, "comment", "set archive comment", set_archive_comment},
{"set_archive_flag", 2, "flag", "set archive flag", set_archive_flag},
{"set_extra", 5, "index extra_id extra_index flags value", "set extra field", set_extra},
{"set_file_comment", 2, "index comment", "set file comment", set_file_comment},
{"set_file_compression", 3, "index method compression_flags", "set file compression method", set_file_compression},
{"set_file_dostime", 3, "index time date", "set file modification time and date (DOS format)", set_file_dostime},
{"set_file_encryption", 3, "index method password", "set file encryption method", set_file_encryption},
{"set_file_mtime", 2, "index timestamp", "set file modification time", set_file_mtime},
{"set_file_mtime_all", 1, "timestamp", "set file modification time for all files", set_file_mtime_all},
{"set_password", 1, "password", "set default password for encryption", set_password},
{"stat", 1, "index", "print information about entry", zstat}
#ifdef DISPATCH_REGRESS
,
DISPATCH_REGRESS
#endif
};
static int
dispatch(int argc, char *argv[]) {
unsigned int i;
for (i = 0; i < sizeof(dispatch_table) / sizeof(dispatch_table_t); i++) {
if (strcmp(dispatch_table[i].cmdline_name, argv[0]) == 0) {
argc--;
argv++;
if (argc < dispatch_table[i].argument_count) {
fprintf(stderr, "not enough arguments for command '%s': %d available, %d needed\n", dispatch_table[i].cmdline_name, argc, dispatch_table[i].argument_count);
return -1;
}
if (dispatch_table[i].function(argv) == 0)
return 1 + dispatch_table[i].argument_count;
return -1;
}
}
fprintf(stderr, "unknown command '%s'\n", argv[0]);
return -1;
}
static void
usage(const char *progname, const char *reason) {
unsigned int i;
FILE *out;
if (reason == NULL)
out = stdout;
else
out = stderr;
fprintf(out, "usage: %s [-ceghnrst]" USAGE_REGRESS " [-l len] [-o offset] archive command1 [args] [command2 [args] ...]\n", progname);
if (reason != NULL) {
fprintf(out, "%s\n", reason);
exit(1);
}
fprintf(out, "\nSupported options are:\n"
"\t-c\t\tcheck consistency\n"
"\t-e\t\terror if archive already exists (only useful with -n)\n"
#ifdef FOR_REGRESS
"\t-F size\t\tfragment size for in memory archive\n"
#endif
"\t-g\t\tguess file name encoding (for stat)\n"
#ifdef FOR_REGRESS
"\t-H\t\twrite files with holes compactly\n"
#endif
"\t-h\t\tdisplay this usage\n"
"\t-l len\t\tonly use len bytes of file\n"
#ifdef FOR_REGRESS
"\t-m\t\tread archive into memory, and modify there; write out at end\n"
#endif
"\t-n\t\tcreate archive if it doesn't exist\n"
"\t-o offset\tstart reading file at offset\n"
"\t-r\t\tprint raw file name encoding without translation (for stat)\n"
"\t-s\t\tfollow file name convention strictly (for stat)\n"
"\t-t\t\tdisregard current archive contents, if any\n");
fprintf(out, "\nSupported commands and arguments are:\n");
for (i = 0; i < sizeof(dispatch_table) / sizeof(dispatch_table_t); i++) {
fprintf(out, "\t%s %s\n\t %s\n\n", dispatch_table[i].cmdline_name, dispatch_table[i].arg_names, dispatch_table[i].description);
}
fprintf(out, "\nSupported flags are:\n"
"\t0\t(no flags)\n"
"\t4\tZIP_FL_ENC_CP437\n"
"\t8\tZIP_FL_ENC_UTF_8\n"
"\tC\tZIP_FL_NOCASE\n"
"\tc\tZIP_FL_CENTRAL\n"
"\td\tZIP_FL_NODIR\n"
"\tl\tZIP_FL_LOCAL\n"
"\tr\tZIP_FL_ENC_RAW\n"
"\ts\tZIP_FL_ENC_STRICT\n"
"\tu\tZIP_FL_UNCHANGED\n");
fprintf(out, "\nSupported archive flags are:\n"
"\tcreate-or-keep-empty-file-for-archive\n"
"\tis-torrentzip\n"
"\trdonly\n"
"\twant-torrentzip\n");
fprintf(out, "\nSupported compression methods are:\n"
"\tdefault\n");
if (zip_compression_method_supported(ZIP_CM_BZIP2, 1)) {
fprintf(out, "\tbzip2\n");
}
fprintf(out, "\tdeflate\n"
"\tstore\n");
if (zip_compression_method_supported(ZIP_CM_XZ, 1)) {
fprintf(out, "\txz\n");
}
if (zip_compression_method_supported(ZIP_CM_ZSTD, 1)) {
fprintf(out, "\tzstd\n");
}
fprintf(out, "\nSupported encryption methods are:\n"
"\tnone\n");
if (zip_encryption_method_supported(ZIP_EM_AES_128, 1)) {
fprintf(out, "\tAES-128\n");
}
if (zip_encryption_method_supported(ZIP_EM_AES_192, 1)) {
fprintf(out, "\tAES-192\n");
}
if (zip_encryption_method_supported(ZIP_EM_AES_256, 1)) {
fprintf(out, "\tAES-256\n");
}
fprintf(out, "\tPKWARE\n");
fprintf(out, "\nThe index is zero-based.\n");
exit(0);
}
#ifndef FOR_REGRESS
#define ziptool_open read_from_file
int
ziptool_post_close(const char *archive) {
return 0;
}
#endif
int
main(int argc, char *argv[]) {
const char *archive;
unsigned int i;
int c, arg, err, flags;
const char *prg;
zip_uint64_t len = 0, offset = 0;
zip_error_t error;
flags = 0;
prg = argv[0];
while ((c = getopt(argc, argv, "ceghl:no:rst" OPTIONS_REGRESS)) != -1) {
switch (c) {
case 'c':
flags |= ZIP_CHECKCONS;
break;
case 'e':
flags |= ZIP_EXCL;
break;
case 'g':
stat_flags = ZIP_FL_ENC_GUESS;
break;
case 'h':
usage(prg, NULL);
break;
case 'l':
len = strtoull(optarg, NULL, 10);
break;
case 'n':
flags |= ZIP_CREATE;
break;
case 'o':
offset = strtoull(optarg, NULL, 10);
break;
case 'r':
stat_flags = ZIP_FL_ENC_RAW;
break;
case 's':
stat_flags = ZIP_FL_ENC_STRICT;
break;
case 't':
flags |= ZIP_TRUNCATE;
break;
#ifdef GETOPT_REGRESS
GETOPT_REGRESS
#endif
default: {
char reason[128];
snprintf(reason, sizeof(reason), "invalid option -%c", optopt);
usage(prg, reason);
}
}
}
if (optind >= argc - 1)
usage(prg, "too few arguments");
arg = optind;
archive = argv[arg++];
if (flags == 0)
flags = ZIP_CREATE;
zip_error_init(&error);
za = ziptool_open(archive, flags, &error, offset, len);
if (za == NULL) {
fprintf(stderr, "can't open zip archive '%s': %s\n", archive, zip_error_strerror(&error));
zip_error_fini(&error);
return 1;
}
zip_error_fini(&error);
#ifdef REGRESS_PREPARE_ARGS
REGRESS_PREPARE_ARGS
#endif
err = 0;
while (arg < argc) {
int ret;
ret = dispatch(argc - arg, argv + arg);
if (ret > 0) {
arg += ret;
}
else {
err = 1;
break;
}
}
#ifdef PRECLOSE_REGRESS
PRECLOSE_REGRESS;
#endif
if (zip_close(za) == -1) {
fprintf(stderr, "can't close zip archive '%s': %s\n", archive, zip_strerror(za));
return 1;
}
if (ziptool_post_close(archive) < 0) {
err = 1;
}
for (i = 0; i < z_in_count; i++) {
if (zip_close(z_in[i]) < 0) {
err = 1;
}
}
return err;
}
#define BIN2HEX(n) ((n) >= 10 ? (n) + 'a' - 10 : (n) + '0')
#define HEX2BIN(c) (((c) >= '0' && (c) <= '9') ? (c) - '0' : ((c) >= 'A' && (c) <= 'F') ? (c) - 'A' + 10 : (c) - 'a' + 10)
#define FILENAME_BUFFER_LENGTH (2 * 64 * 1024)
static char filename_buffer[FILENAME_BUFFER_LENGTH + 1];
static const char* encode_filename(const char* name) {
char *t = filename_buffer;
if (!hex_encoded_filenames) {
const char* s = name;
if (strlen(name) > FILENAME_BUFFER_LENGTH) {
fprintf(stderr, "internal buffer limit reached, increase buffer size\n");
exit(1);
}
while (*s != '\0') {
if (s[0] == '\r' && s[1] == '\n') {
s++;
continue;
}
*(t++) = *(s++);
}
}
else {
const unsigned char *s = (const unsigned char *)name;
if (strlen(name) > FILENAME_BUFFER_LENGTH / 2) {
fprintf(stderr, "internal buffer limit reached, increase buffer size\n");
exit(1);
}
while (*s != '\0') {
*(t++) = BIN2HEX(*s >> 4);
*(t++) = BIN2HEX(*s & 0xf);
s += 1;
}
}
*t = '\0';
return filename_buffer;
}
static const char* decode_filename(const char* name) {
if (!hex_encoded_filenames) {
return name;
}
if (strlen(name) > FILENAME_BUFFER_LENGTH * 2) {
fprintf(stderr, "internal buffer limit reached, increase buffer size\n");
exit(1);
}
unsigned char *t = (unsigned char*)filename_buffer;
const char *s = name;
while (*s != '\0') {
*(t++) = (HEX2BIN(s[0]) << 4) | HEX2BIN(s[1]);
s += 2;
}
*t = '\0';
return filename_buffer;
}