From ec7bd62201a8c1a7e222b52c3ab39e3f33d6fc2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 30 Jun 2008 17:11:27 +0000 Subject: Quick shot at implementing -t (test). Requested by: ache MFC after: 2 weeks --- usr.bin/unzip/unzip.c | 46 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) (limited to 'usr.bin/unzip') diff --git a/usr.bin/unzip/unzip.c b/usr.bin/unzip/unzip.c index 9b83099eea1f..16373f51a1db 100644 --- a/usr.bin/unzip/unzip.c +++ b/usr.bin/unzip/unzip.c @@ -58,6 +58,7 @@ static int l_opt; /* list */ static int n_opt; /* never overwrite */ static int o_opt; /* always overwrite */ static int q_opt; /* quiet */ +static int t_opt; /* test */ static int u_opt; /* update */ /* time when unzip started */ @@ -69,6 +70,9 @@ static int unzip_debug; /* running on tty? */ static int tty; +/* error flag for -t */ +static int test_failed; + /* convenience macro */ /* XXX should differentiate between ARCHIVE_{WARN,FAIL,RETRY} */ #define ac(call) \ @@ -331,7 +335,7 @@ make_dir(const char *path, int mode) * Ensure that all directories leading up to (but not including) the * specified path exist. * - * XXX inefficient. + * XXX inefficient + modifies the file in-place */ static void make_parent(char *path) @@ -625,6 +629,32 @@ list(struct archive *a, struct archive_entry *e) ac(archive_read_data_skip(a)); } +/* + * Extract to memory to check CRC + */ +static void +test(struct archive *a, struct archive_entry *e) +{ + ssize_t len; + + if (S_ISDIR(archive_entry_filetype(e))) + return; + + info("%s ", archive_entry_pathname(e)); + while ((len = archive_read_data(a, buffer, sizeof buffer)) > 0) + /* nothing */; + if (len < 0) { + info("%s\n", archive_error_string(a)); + ++test_failed; + } else { + info("OK\n"); + } + + /* shouldn't be necessary, but it doesn't hurt */ + ac(archive_read_data_skip(a)); +} + + /* * Main loop: open the zipfile, iterate over its contents and decide what * to do with each entry. @@ -648,7 +678,9 @@ unzip(const char *fn) if (ret == ARCHIVE_EOF) break; ac(ret); - if (l_opt) + if (t_opt) + test(a, e); + else if (l_opt) list(a, e); else extract(a, e); @@ -658,13 +690,16 @@ unzip(const char *fn) (void)archive_read_finish(a); if (close(fd) != 0) error("%s", fn); + + if (t_opt && test_failed) + errorx("%d checksum error(s) found.", test_failed); } static void usage(void) { - fprintf(stderr, "usage: unzip [-ajLlnoqu] [-d dir] zipfile\n"); + fprintf(stderr, "usage: unzip [-ajLlnoqtu] [-d dir] zipfile\n"); exit(1); } @@ -674,7 +709,7 @@ getopts(int argc, char *argv[]) int opt; optreset = optind = 1; - while ((opt = getopt(argc, argv, "ad:jLlnoqux:")) != -1) + while ((opt = getopt(argc, argv, "ad:jLlnoqtux:")) != -1) switch (opt) { case 'a': a_opt = 1; @@ -700,6 +735,9 @@ getopts(int argc, char *argv[]) case 'q': q_opt = 1; break; + case 't': + t_opt = 1; + break; case 'u': u_opt = 1; break; -- cgit v1.2.3