maint: avoid "make syntax-check" failure
[gzip.git] / gzip.c
blobb454e6d28d6b26afca01e4c1086aacc797b482e9
1 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
3 Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2011 Free Software
4 Foundation, Inc.
5 Copyright (C) 1992-1993 Jean-loup Gailly
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
22 * The unzip code was written and put in the public domain by Mark Adler.
23 * Portions of the lzw code are derived from the public domain 'compress'
24 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
25 * Ken Turkowski, Dave Mack and Peter Jannesen.
27 * See the license_msg below and the file COPYING for the software license.
28 * See the file algorithm.doc for the compression algorithms and file formats.
31 static char const *const license_msg[] = {
32 "Copyright (C) 2007, 2010, 2011 Free Software Foundation, Inc.",
33 "Copyright (C) 1993 Jean-loup Gailly.",
34 "This is free software. You may redistribute copies of it under the terms of",
35 "the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.",
36 "There is NO WARRANTY, to the extent permitted by law.",
37 0};
39 /* Compress files with zip algorithm and 'compress' interface.
40 * See help() function below for all options.
41 * Outputs:
42 * file.gz: compressed file with same mode, owner, and utimes
43 * or stdout with -c option or if stdin used as input.
44 * If the output file name had to be truncated, the original name is kept
45 * in the compressed file.
46 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
48 * Using gz on MSDOS would create too many file name conflicts. For
49 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
50 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
51 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
52 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
54 * For the meaning of all compilation flags, see comments in Makefile.in.
57 #include <config.h>
58 #include <ctype.h>
59 #include <sys/types.h>
60 #include <signal.h>
61 #include <stdbool.h>
62 #include <sys/stat.h>
63 #include <errno.h>
65 #include "closein.h"
66 #include "tailor.h"
67 #include "gzip.h"
68 #include "lzw.h"
69 #include "revision.h"
70 #include "timespec.h"
72 #include "fcntl-safer.h"
73 #include "getopt.h"
74 #include "ignore-value.h"
75 #include "stat-time.h"
76 #include "version.h"
78 /* configuration */
80 #include <fcntl.h>
81 #include <limits.h>
82 #include <unistd.h>
83 #include <stdlib.h>
84 #include <errno.h>
86 #ifndef NO_DIR
87 # define NO_DIR 0
88 #endif
89 #if !NO_DIR
90 # include <dirent.h>
91 # ifndef _D_EXACT_NAMLEN
92 # define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
93 # endif
94 #endif
96 #ifdef CLOSEDIR_VOID
97 # define CLOSEDIR(d) (closedir(d), 0)
98 #else
99 # define CLOSEDIR(d) closedir(d)
100 #endif
102 #ifndef NO_UTIME
103 # include <utimens.h>
104 #endif
106 #define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
108 #ifndef MAX_PATH_LEN
109 # define MAX_PATH_LEN 1024 /* max pathname length */
110 #endif
112 #ifndef SEEK_END
113 # define SEEK_END 2
114 #endif
116 #ifndef CHAR_BIT
117 # define CHAR_BIT 8
118 #endif
120 #ifdef off_t
121 off_t lseek (int fd, off_t offset, int whence);
122 #endif
124 #ifndef OFF_T_MIN
125 #define OFF_T_MIN (~ (off_t) 0 << (sizeof (off_t) * CHAR_BIT - 1))
126 #endif
128 #ifndef OFF_T_MAX
129 #define OFF_T_MAX (~ (off_t) 0 - OFF_T_MIN)
130 #endif
132 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
133 present. */
134 #ifndef SA_NOCLDSTOP
135 # define SA_NOCLDSTOP 0
136 # define sigprocmask(how, set, oset) /* empty */
137 # define sigset_t int
138 # if ! HAVE_SIGINTERRUPT
139 # define siginterrupt(sig, flag) /* empty */
140 # endif
141 #endif
143 #ifndef HAVE_WORKING_O_NOFOLLOW
144 # define HAVE_WORKING_O_NOFOLLOW 0
145 #endif
147 /* Separator for file name parts (see shorten_name()) */
148 #ifdef NO_MULTIPLE_DOTS
149 # define PART_SEP "-"
150 #else
151 # define PART_SEP "."
152 #endif
154 /* global buffers */
156 DECLARE(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
157 DECLARE(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
158 DECLARE(ush, d_buf, DIST_BUFSIZE);
159 DECLARE(uch, window, 2L*WSIZE);
160 #ifndef MAXSEG_64K
161 DECLARE(ush, tab_prefix, 1L<<BITS);
162 #else
163 DECLARE(ush, tab_prefix0, 1L<<(BITS-1));
164 DECLARE(ush, tab_prefix1, 1L<<(BITS-1));
165 #endif
167 /* local variables */
169 /* If true, pretend that standard input is a tty. This option
170 is deliberately not documented, and only for testing. */
171 static bool presume_input_tty;
173 static int ascii = 0; /* convert end-of-lines to local OS conventions */
174 int to_stdout = 0; /* output to stdout (-c) */
175 static int decompress = 0; /* decompress (-d) */
176 static int force = 0; /* don't ask questions, compress links (-f) */
177 static int no_name = -1; /* don't save or restore the original file name */
178 static int no_time = -1; /* don't save or restore the original file time */
179 static int recursive = 0; /* recurse through directories (-r) */
180 static int list = 0; /* list the file contents (-l) */
181 int verbose = 0; /* be verbose (-v) */
182 int quiet = 0; /* be very quiet (-q) */
183 static int do_lzw = 0; /* generate output compatible with old compress (-Z) */
184 int test = 0; /* test .gz file integrity */
185 static int foreground = 0; /* set if program run in foreground */
186 char *program_name; /* program name */
187 int maxbits = BITS; /* max bits per code for LZW */
188 int method = DEFLATED;/* compression method */
189 int level = 6; /* compression level */
190 int exit_code = OK; /* program exit code */
191 int save_orig_name; /* set if original name must be saved */
192 static int last_member; /* set for .zip and .Z files */
193 static int part_nb; /* number of parts in .gz file */
194 struct timespec time_stamp; /* original time stamp (modification time) */
195 off_t ifile_size; /* input file size, -1 for devices (debug only) */
196 static char *env; /* contents of GZIP env variable */
197 static char **args = NULL; /* argv pointer if GZIP env variable defined */
198 static char const *z_suffix; /* default suffix (can be set with --suffix) */
199 static size_t z_len; /* strlen(z_suffix) */
201 /* The set of signals that are caught. */
202 static sigset_t caught_signals;
204 /* If nonzero then exit with status WARNING, rather than with the usual
205 signal status, on receipt of a signal with this value. This
206 suppresses a "Broken Pipe" message with some shells. */
207 static int volatile exiting_signal;
209 /* If nonnegative, close this file descriptor and unlink ofname on error. */
210 static int volatile remove_ofname_fd = -1;
212 off_t bytes_in; /* number of input bytes */
213 off_t bytes_out; /* number of output bytes */
214 static off_t total_in; /* input bytes for all files */
215 static off_t total_out; /* output bytes for all files */
216 char ifname[MAX_PATH_LEN]; /* input file name */
217 char ofname[MAX_PATH_LEN]; /* output file name */
218 static struct stat istat; /* status for input file */
219 int ifd; /* input file descriptor */
220 int ofd; /* output file descriptor */
221 unsigned insize; /* valid bytes in inbuf */
222 unsigned inptr; /* index of next byte to be processed in inbuf */
223 unsigned outcnt; /* bytes in output buffer */
225 static int handled_sig[] =
227 /* SIGINT must be first, as 'foreground' depends on it. */
228 SIGINT
230 #ifdef SIGHUP
231 , SIGHUP
232 #endif
233 , SIGPIPE
234 #ifdef SIGTERM
235 , SIGTERM
236 #endif
237 #ifdef SIGXCPU
238 , SIGXCPU
239 #endif
240 #ifdef SIGXFSZ
241 , SIGXFSZ
242 #endif
245 /* For long options that have no equivalent short option, use a
246 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
247 enum
249 PRESUME_INPUT_TTY_OPTION = CHAR_MAX + 1
252 static const struct option longopts[] =
254 /* { name has_arg *flag val } */
255 {"ascii", 0, 0, 'a'}, /* ascii text mode */
256 {"to-stdout", 0, 0, 'c'}, /* write output on standard output */
257 {"stdout", 0, 0, 'c'}, /* write output on standard output */
258 {"decompress", 0, 0, 'd'}, /* decompress */
259 {"uncompress", 0, 0, 'd'}, /* decompress */
260 /* {"encrypt", 0, 0, 'e'}, encrypt */
261 {"force", 0, 0, 'f'}, /* force overwrite of output file */
262 {"help", 0, 0, 'h'}, /* give help */
263 /* {"pkzip", 0, 0, 'k'}, force output in pkzip format */
264 {"list", 0, 0, 'l'}, /* list .gz file contents */
265 {"license", 0, 0, 'L'}, /* display software license */
266 {"no-name", 0, 0, 'n'}, /* don't save or restore original name & time */
267 {"name", 0, 0, 'N'}, /* save or restore original name & time */
268 {"-presume-input-tty", no_argument, NULL, PRESUME_INPUT_TTY_OPTION},
269 {"quiet", 0, 0, 'q'}, /* quiet mode */
270 {"silent", 0, 0, 'q'}, /* quiet mode */
271 {"recursive", 0, 0, 'r'}, /* recurse through directories */
272 {"suffix", 1, 0, 'S'}, /* use given suffix instead of .gz */
273 {"test", 0, 0, 't'}, /* test compressed file integrity */
274 {"no-time", 0, 0, 'T'}, /* don't save or restore the time stamp */
275 {"verbose", 0, 0, 'v'}, /* verbose mode */
276 {"version", 0, 0, 'V'}, /* display version number */
277 {"fast", 0, 0, '1'}, /* compress faster */
278 {"best", 0, 0, '9'}, /* compress better */
279 {"lzw", 0, 0, 'Z'}, /* make output compatible with old compress */
280 {"bits", 1, 0, 'b'}, /* max number of bits per code (implies -Z) */
282 { 0, 0, 0, 0 }
285 /* local functions */
287 local void try_help (void) ATTRIBUTE_NORETURN;
288 local void help (void);
289 local void license (void);
290 local void version (void);
291 local int input_eof (void);
292 local void treat_stdin (void);
293 local void treat_file (char *iname);
294 local int create_outfile (void);
295 local char *get_suffix (char *name);
296 local int open_input_file (char *iname, struct stat *sbuf);
297 local void discard_input_bytes (size_t nbytes, unsigned int flags);
298 local int make_ofname (void);
299 local void shorten_name (char *name);
300 local int get_method (int in);
301 local void do_list (int ifd, int method);
302 local int check_ofname (void);
303 local void copy_stat (struct stat *ifstat);
304 local void install_signal_handlers (void);
305 local void remove_output_file (void);
306 local RETSIGTYPE abort_gzip_signal (int);
307 local void do_exit (int exitcode) ATTRIBUTE_NORETURN;
308 int main (int argc, char **argv);
309 static int (*work) (int infile, int outfile) = zip; /* function to call */
311 #if ! NO_DIR
312 local void treat_dir (int fd, char *dir);
313 #endif
315 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
317 static void
318 try_help ()
320 fprintf (stderr, "Try `%s --help' for more information.\n",
321 program_name);
322 do_exit (ERROR);
325 /* ======================================================================== */
326 local void help()
328 static char const* const help_msg[] = {
329 "Compress or uncompress FILEs (by default, compress FILES in-place).",
331 "Mandatory arguments to long options are mandatory for short options too.",
333 #if O_BINARY
334 " -a, --ascii ascii text; convert end-of-line using local conventions",
335 #endif
336 " -c, --stdout write on standard output, keep original files unchanged",
337 " -d, --decompress decompress",
338 /* -e, --encrypt encrypt */
339 " -f, --force force overwrite of output file and compress links",
340 " -h, --help give this help",
341 /* -k, --pkzip force output in pkzip format */
342 " -l, --list list compressed file contents",
343 " -L, --license display software license",
344 #ifdef UNDOCUMENTED
345 " -m, --no-time do not save or restore the original modification time",
346 " -M, --time save or restore the original modification time",
347 #endif
348 " -n, --no-name do not save or restore the original name and time stamp",
349 " -N, --name save or restore the original name and time stamp",
350 " -q, --quiet suppress all warnings",
351 #if ! NO_DIR
352 " -r, --recursive operate recursively on directories",
353 #endif
354 " -S, --suffix=SUF use suffix SUF on compressed files",
355 " -t, --test test compressed file integrity",
356 " -v, --verbose verbose mode",
357 " -V, --version display version number",
358 " -1, --fast compress faster",
359 " -9, --best compress better",
360 #ifdef LZW
361 " -Z, --lzw produce output compatible with old compress",
362 " -b, --bits=BITS max number of bits per code (implies -Z)",
363 #endif
365 "With no FILE, or when FILE is -, read standard input.",
367 "Report bugs to <bug-gzip@gnu.org>.",
369 char const *const *p = help_msg;
371 printf ("Usage: %s [OPTION]... [FILE]...\n", program_name);
372 while (*p) printf ("%s\n", *p++);
375 /* ======================================================================== */
376 local void license()
378 char const *const *p = license_msg;
380 printf ("%s %s\n", program_name, Version);
381 while (*p) printf ("%s\n", *p++);
384 /* ======================================================================== */
385 local void version()
387 license ();
388 printf ("\n");
389 printf ("Written by Jean-loup Gailly.\n");
392 local void progerror (char const *string)
394 int e = errno;
395 fprintf (stderr, "%s: ", program_name);
396 errno = e;
397 perror(string);
398 exit_code = ERROR;
401 /* ======================================================================== */
402 int main (int argc, char **argv)
404 int file_count; /* number of files to process */
405 size_t proglen; /* length of program_name */
406 int optc; /* current option */
408 EXPAND(argc, argv); /* wild card expansion if necessary */
410 program_name = gzip_base_name (argv[0]);
411 proglen = strlen (program_name);
413 atexit (close_stdin);
415 /* Suppress .exe for MSDOS, OS/2 and VMS: */
416 if (4 < proglen && strequ (program_name + proglen - 4, ".exe"))
417 program_name[proglen - 4] = '\0';
419 /* Add options in GZIP environment variable if there is one */
420 env = add_envopt(&argc, &argv, OPTIONS_VAR);
421 if (env != NULL) args = argv;
423 #ifndef GNU_STANDARD
424 # define GNU_STANDARD 1
425 #endif
426 #if !GNU_STANDARD
427 /* For compatibility with old compress, use program name as an option.
428 * Unless you compile with -DGNU_STANDARD=0, this program will behave as
429 * gzip even if it is invoked under the name gunzip or zcat.
431 * Systems which do not support links can still use -d or -dc.
432 * Ignore an .exe extension for MSDOS, OS/2 and VMS.
434 if (strncmp (program_name, "un", 2) == 0 /* ungzip, uncompress */
435 || strncmp (program_name, "gun", 3) == 0) /* gunzip */
436 decompress = 1;
437 else if (strequ (program_name + 1, "cat") /* zcat, pcat, gcat */
438 || strequ (program_name, "gzcat")) /* gzcat */
439 decompress = to_stdout = 1;
440 #endif
442 z_suffix = Z_SUFFIX;
443 z_len = strlen(z_suffix);
445 while ((optc = getopt_long (argc, argv, "ab:cdfhH?lLmMnNqrS:tvVZ123456789",
446 longopts, (int *)0)) != -1) {
447 switch (optc) {
448 case 'a':
449 ascii = 1; break;
450 case 'b':
451 maxbits = atoi(optarg);
452 for (; *optarg; optarg++)
453 if (! ('0' <= *optarg && *optarg <= '9'))
455 fprintf (stderr, "%s: -b operand is not an integer\n",
456 program_name);
457 try_help ();
459 break;
460 case 'c':
461 to_stdout = 1; break;
462 case 'd':
463 decompress = 1; break;
464 case 'f':
465 force++; break;
466 case 'h': case 'H':
467 help(); do_exit(OK); break;
468 case 'l':
469 list = decompress = to_stdout = 1; break;
470 case 'L':
471 license(); do_exit(OK); break;
472 case 'm': /* undocumented, may change later */
473 no_time = 1; break;
474 case 'M': /* undocumented, may change later */
475 no_time = 0; break;
476 case 'n':
477 no_name = no_time = 1; break;
478 case 'N':
479 no_name = no_time = 0; break;
480 case PRESUME_INPUT_TTY_OPTION:
481 presume_input_tty = true; break;
482 case 'q':
483 quiet = 1; verbose = 0; break;
484 case 'r':
485 #if NO_DIR
486 fprintf (stderr, "%s: -r not supported on this system\n",
487 program_name);
488 try_help ();
489 #else
490 recursive = 1;
491 #endif
492 break;
493 case 'S':
494 #ifdef NO_MULTIPLE_DOTS
495 if (*optarg == '.') optarg++;
496 #endif
497 z_len = strlen(optarg);
498 z_suffix = optarg;
499 break;
500 case 't':
501 test = decompress = to_stdout = 1;
502 break;
503 case 'v':
504 verbose++; quiet = 0; break;
505 case 'V':
506 version(); do_exit(OK); break;
507 case 'Z':
508 #ifdef LZW
509 do_lzw = 1; break;
510 #else
511 fprintf(stderr, "%s: -Z not supported in this version\n",
512 program_name);
513 try_help ();
514 break;
515 #endif
516 case '1': case '2': case '3': case '4':
517 case '5': case '6': case '7': case '8': case '9':
518 level = optc - '0';
519 break;
520 default:
521 /* Error message already emitted by getopt_long. */
522 try_help ();
524 } /* loop on all arguments */
526 /* By default, save name and timestamp on compression but do not
527 * restore them on decompression.
529 if (no_time < 0) no_time = decompress;
530 if (no_name < 0) no_name = decompress;
532 file_count = argc - optind;
534 #if O_BINARY
535 #else
536 if (ascii && !quiet) {
537 fprintf(stderr, "%s: option --ascii ignored on this system\n",
538 program_name);
540 #endif
541 if (z_len == 0 || z_len > MAX_SUFFIX) {
542 fprintf(stderr, "%s: invalid suffix '%s'\n", program_name, z_suffix);
543 do_exit(ERROR);
546 if (do_lzw && !decompress) work = lzw;
548 /* Allocate all global buffers (for DYN_ALLOC option) */
549 ALLOC(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
550 ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
551 ALLOC(ush, d_buf, DIST_BUFSIZE);
552 ALLOC(uch, window, 2L*WSIZE);
553 #ifndef MAXSEG_64K
554 ALLOC(ush, tab_prefix, 1L<<BITS);
555 #else
556 ALLOC(ush, tab_prefix0, 1L<<(BITS-1));
557 ALLOC(ush, tab_prefix1, 1L<<(BITS-1));
558 #endif
560 exiting_signal = quiet ? SIGPIPE : 0;
561 install_signal_handlers ();
563 /* And get to work */
564 if (file_count != 0) {
565 if (to_stdout && !test && !list && (!decompress || !ascii)) {
566 SET_BINARY_MODE(fileno(stdout));
568 while (optind < argc) {
569 treat_file(argv[optind++]);
571 } else { /* Standard input */
572 treat_stdin();
574 if (list && !quiet && file_count > 1) {
575 do_list(-1, -1); /* print totals */
577 do_exit(exit_code);
578 return exit_code; /* just to avoid lint warning */
581 /* Return nonzero when at end of file on input. */
582 local int
583 input_eof ()
585 if (!decompress || last_member)
586 return 1;
588 if (inptr == insize)
590 if (insize != INBUFSIZ || fill_inbuf (1) == EOF)
591 return 1;
593 /* Unget the char that fill_inbuf got. */
594 inptr = 0;
597 return 0;
600 /* ========================================================================
601 * Compress or decompress stdin
603 local void treat_stdin()
605 if (!force && !list
606 && (presume_input_tty
607 || isatty(fileno((FILE *)(decompress ? stdin : stdout))))) {
608 /* Do not send compressed data to the terminal or read it from
609 * the terminal. We get here when user invoked the program
610 * without parameters, so be helpful. According to the GNU standards:
612 * If there is one behavior you think is most useful when the output
613 * is to a terminal, and another that you think is most useful when
614 * the output is a file or a pipe, then it is usually best to make
615 * the default behavior the one that is useful with output to a
616 * terminal, and have an option for the other behavior.
618 * Here we use the --force option to get the other behavior.
620 if (! quiet)
621 fprintf (stderr,
622 ("%s: compressed data not %s a terminal."
623 " Use -f to force %scompression.\n"
624 "For help, type: %s -h\n"),
625 program_name,
626 decompress ? "read from" : "written to",
627 decompress ? "de" : "",
628 program_name);
629 do_exit(ERROR);
632 if (decompress || !ascii) {
633 SET_BINARY_MODE(fileno(stdin));
635 if (!test && !list && (!decompress || !ascii)) {
636 SET_BINARY_MODE(fileno(stdout));
638 strcpy(ifname, "stdin");
639 strcpy(ofname, "stdout");
641 /* Get the file's time stamp and size. */
642 if (fstat (fileno (stdin), &istat) != 0)
644 progerror ("standard input");
645 do_exit (ERROR);
647 ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
648 time_stamp.tv_nsec = -1;
649 if (!no_time || list)
651 if (S_ISREG (istat.st_mode))
652 time_stamp = get_stat_mtime (&istat);
653 else
654 gettime (&time_stamp);
657 clear_bufs(); /* clear input and output buffers */
658 to_stdout = 1;
659 part_nb = 0;
660 ifd = fileno(stdin);
662 if (decompress) {
663 method = get_method(ifd);
664 if (method < 0) {
665 do_exit(exit_code); /* error message already emitted */
668 if (list) {
669 do_list(ifd, method);
670 return;
673 /* Actually do the compression/decompression. Loop over zipped members.
675 for (;;) {
676 if ((*work)(fileno(stdin), fileno(stdout)) != OK) return;
678 if (input_eof ())
679 break;
681 method = get_method(ifd);
682 if (method < 0) return; /* error message already emitted */
683 bytes_out = 0; /* required for length check */
686 if (verbose) {
687 if (test) {
688 fprintf(stderr, " OK\n");
690 } else if (!decompress) {
691 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
692 fprintf(stderr, "\n");
693 #ifdef DISPLAY_STDIN_RATIO
694 } else {
695 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
696 fprintf(stderr, "\n");
697 #endif
702 /* ========================================================================
703 * Compress or decompress the given file
705 local void treat_file(iname)
706 char *iname;
708 /* Accept "-" as synonym for stdin */
709 if (strequ(iname, "-")) {
710 int cflag = to_stdout;
711 treat_stdin();
712 to_stdout = cflag;
713 return;
716 /* Check if the input file is present, set ifname and istat: */
717 ifd = open_input_file (iname, &istat);
718 if (ifd < 0)
719 return;
721 /* If the input name is that of a directory, recurse or ignore: */
722 if (S_ISDIR(istat.st_mode)) {
723 #if ! NO_DIR
724 if (recursive) {
725 treat_dir (ifd, iname);
726 /* Warning: ifname is now garbage */
727 return;
729 #endif
730 close (ifd);
731 WARN ((stderr, "%s: %s is a directory -- ignored\n",
732 program_name, ifname));
733 return;
736 if (! to_stdout)
738 if (! S_ISREG (istat.st_mode))
740 WARN ((stderr,
741 "%s: %s is not a directory or a regular file - ignored\n",
742 program_name, ifname));
743 close (ifd);
744 return;
746 if (istat.st_mode & S_ISUID)
748 WARN ((stderr, "%s: %s is set-user-ID on execution - ignored\n",
749 program_name, ifname));
750 close (ifd);
751 return;
753 if (istat.st_mode & S_ISGID)
755 WARN ((stderr, "%s: %s is set-group-ID on execution - ignored\n",
756 program_name, ifname));
757 close (ifd);
758 return;
761 if (! force)
763 if (istat.st_mode & S_ISVTX)
765 WARN ((stderr,
766 "%s: %s has the sticky bit set - file ignored\n",
767 program_name, ifname));
768 close (ifd);
769 return;
771 if (2 <= istat.st_nlink)
773 WARN ((stderr, "%s: %s has %lu other link%c -- unchanged\n",
774 program_name, ifname,
775 (unsigned long int) istat.st_nlink - 1,
776 istat.st_nlink == 2 ? ' ' : 's'));
777 close (ifd);
778 return;
783 ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
784 time_stamp.tv_nsec = -1;
785 if (!no_time || list)
786 time_stamp = get_stat_mtime (&istat);
788 /* Generate output file name. For -r and (-t or -l), skip files
789 * without a valid gzip suffix (check done in make_ofname).
791 if (to_stdout && !list && !test) {
792 strcpy(ofname, "stdout");
794 } else if (make_ofname() != OK) {
795 close (ifd);
796 return;
799 clear_bufs(); /* clear input and output buffers */
800 part_nb = 0;
802 if (decompress) {
803 method = get_method(ifd); /* updates ofname if original given */
804 if (method < 0) {
805 close(ifd);
806 return; /* error message already emitted */
809 if (list) {
810 do_list(ifd, method);
811 if (close (ifd) != 0)
812 read_error ();
813 return;
816 /* If compressing to a file, check if ofname is not ambiguous
817 * because the operating system truncates names. Otherwise, generate
818 * a new ofname and save the original name in the compressed file.
820 if (to_stdout) {
821 ofd = fileno(stdout);
822 /* Keep remove_ofname_fd negative. */
823 } else {
824 if (create_outfile() != OK) return;
826 if (!decompress && save_orig_name && !verbose && !quiet) {
827 fprintf(stderr, "%s: %s compressed to %s\n",
828 program_name, ifname, ofname);
831 /* Keep the name even if not truncated except with --no-name: */
832 if (!save_orig_name) save_orig_name = !no_name;
834 if (verbose) {
835 fprintf(stderr, "%s:\t", ifname);
838 /* Actually do the compression/decompression. Loop over zipped members.
840 for (;;) {
841 if ((*work)(ifd, ofd) != OK) {
842 method = -1; /* force cleanup */
843 break;
846 if (input_eof ())
847 break;
849 method = get_method(ifd);
850 if (method < 0) break; /* error message already emitted */
851 bytes_out = 0; /* required for length check */
854 if (close (ifd) != 0)
855 read_error ();
857 if (!to_stdout)
859 sigset_t oldset;
860 int unlink_errno;
862 copy_stat (&istat);
863 if (close (ofd) != 0)
864 write_error ();
866 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
867 remove_ofname_fd = -1;
868 unlink_errno = xunlink (ifname) == 0 ? 0 : errno;
869 sigprocmask (SIG_SETMASK, &oldset, NULL);
871 if (unlink_errno)
873 WARN ((stderr, "%s: ", program_name));
874 if (!quiet)
876 errno = unlink_errno;
877 perror (ifname);
882 if (method == -1) {
883 if (!to_stdout)
884 remove_output_file ();
885 return;
888 /* Display statistics */
889 if(verbose) {
890 if (test) {
891 fprintf(stderr, " OK");
892 } else if (decompress) {
893 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
894 } else {
895 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
897 if (!test && !to_stdout) {
898 fprintf(stderr, " -- replaced with %s", ofname);
900 fprintf(stderr, "\n");
904 /* ========================================================================
905 * Create the output file. Return OK or ERROR.
906 * Try several times if necessary to avoid truncating the z_suffix. For
907 * example, do not create a compressed file of name "1234567890123."
908 * Sets save_orig_name to true if the file name has been truncated.
909 * IN assertions: the input file has already been open (ifd is set) and
910 * ofname has already been updated if there was an original name.
911 * OUT assertions: ifd and ofd are closed in case of error.
913 local int create_outfile()
915 int name_shortened = 0;
916 int flags = (O_WRONLY | O_CREAT | O_EXCL
917 | (ascii && decompress ? 0 : O_BINARY));
919 for (;;)
921 int open_errno;
922 sigset_t oldset;
924 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
925 remove_ofname_fd = ofd = OPEN (ofname, flags, RW_USER);
926 open_errno = errno;
927 sigprocmask (SIG_SETMASK, &oldset, NULL);
929 if (0 <= ofd)
930 break;
932 switch (open_errno)
934 #ifdef ENAMETOOLONG
935 case ENAMETOOLONG:
936 shorten_name (ofname);
937 name_shortened = 1;
938 break;
939 #endif
941 case EEXIST:
942 if (check_ofname () != OK)
944 close (ifd);
945 return ERROR;
947 break;
949 default:
950 progerror (ofname);
951 close (ifd);
952 return ERROR;
956 if (name_shortened && decompress)
958 /* name might be too long if an original name was saved */
959 WARN ((stderr, "%s: %s: warning, name truncated\n",
960 program_name, ofname));
963 return OK;
966 /* ========================================================================
967 * Return a pointer to the 'z' suffix of a file name, or NULL. For all
968 * systems, ".gz", ".z", ".Z", ".taz", ".tgz", "-gz", "-z" and "_z" are
969 * accepted suffixes, in addition to the value of the --suffix option.
970 * ".tgz" is a useful convention for tar.z files on systems limited
971 * to 3 characters extensions. On such systems, ".?z" and ".??z" are
972 * also accepted suffixes. For Unix, we do not want to accept any
973 * .??z suffix as indicating a compressed file; some people use .xyz
974 * to denote volume data.
975 * On systems allowing multiple versions of the same file (such as VMS),
976 * this function removes any version suffix in the given name.
978 local char *get_suffix(name)
979 char *name;
981 int nlen, slen;
982 char suffix[MAX_SUFFIX+3]; /* last chars of name, forced to lower case */
983 static char const *known_suffixes[] =
984 {NULL, ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z",
985 #ifdef MAX_EXT_CHARS
986 "z",
987 #endif
988 NULL};
989 char const **suf = known_suffixes;
991 *suf = z_suffix;
992 if (strequ(z_suffix, "z")) suf++; /* check long suffixes first */
994 #ifdef SUFFIX_SEP
995 /* strip a version number from the file name */
997 char *v = strrchr(name, SUFFIX_SEP);
998 if (v != NULL) *v = '\0';
1000 #endif
1001 nlen = strlen(name);
1002 if (nlen <= MAX_SUFFIX+2) {
1003 strcpy(suffix, name);
1004 } else {
1005 strcpy(suffix, name+nlen-MAX_SUFFIX-2);
1007 strlwr(suffix);
1008 slen = strlen(suffix);
1009 do {
1010 int s = strlen(*suf);
1011 if (slen > s && suffix[slen-s-1] != PATH_SEP
1012 && strequ(suffix + slen - s, *suf)) {
1013 return name+nlen-s;
1015 } while (*++suf != NULL);
1017 return NULL;
1021 /* Open file NAME with the given flags and mode and store its status
1022 into *ST. Return a file descriptor to the newly opened file, or -1
1023 (setting errno) on failure. */
1024 static int
1025 open_and_stat (char *name, int flags, mode_t mode, struct stat *st)
1027 int fd;
1029 /* Refuse to follow symbolic links unless -c or -f. */
1030 if (!to_stdout && !force)
1032 if (HAVE_WORKING_O_NOFOLLOW)
1033 flags |= O_NOFOLLOW;
1034 else
1036 #if HAVE_LSTAT || defined lstat
1037 if (lstat (name, st) != 0)
1038 return -1;
1039 else if (S_ISLNK (st->st_mode))
1041 errno = ELOOP;
1042 return -1;
1044 #endif
1048 fd = OPEN (name, flags, mode);
1049 if (0 <= fd && fstat (fd, st) != 0)
1051 int e = errno;
1052 close (fd);
1053 errno = e;
1054 return -1;
1056 return fd;
1060 /* ========================================================================
1061 * Set ifname to the input file name (with a suffix appended if necessary)
1062 * and istat to its stats. For decompression, if no file exists with the
1063 * original name, try adding successively z_suffix, .gz, .z, -z and .Z.
1064 * For MSDOS, we try only z_suffix and z.
1065 * Return an open file descriptor or -1.
1067 static int
1068 open_input_file (iname, sbuf)
1069 char *iname;
1070 struct stat *sbuf;
1072 int ilen; /* strlen(ifname) */
1073 int z_suffix_errno = 0;
1074 static char const *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL};
1075 char const **suf = suffixes;
1076 char const *s;
1077 #ifdef NO_MULTIPLE_DOTS
1078 char *dot; /* pointer to ifname extension, or NULL */
1079 #endif
1080 int fd;
1081 int open_flags = (O_RDONLY | O_NONBLOCK | O_NOCTTY
1082 | (ascii && !decompress ? 0 : O_BINARY));
1084 *suf = z_suffix;
1086 if (sizeof ifname - 1 <= strlen (iname))
1087 goto name_too_long;
1089 strcpy(ifname, iname);
1091 /* If input file exists, return OK. */
1092 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1093 if (0 <= fd)
1094 return fd;
1096 if (!decompress || errno != ENOENT) {
1097 progerror(ifname);
1098 return -1;
1100 /* file.ext doesn't exist, try adding a suffix (after removing any
1101 * version number for VMS).
1103 s = get_suffix(ifname);
1104 if (s != NULL) {
1105 progerror(ifname); /* ifname already has z suffix and does not exist */
1106 return -1;
1108 #ifdef NO_MULTIPLE_DOTS
1109 dot = strrchr(ifname, '.');
1110 if (dot == NULL) {
1111 strcat(ifname, ".");
1112 dot = strrchr(ifname, '.');
1114 #endif
1115 ilen = strlen(ifname);
1116 if (strequ(z_suffix, ".gz")) suf++;
1118 /* Search for all suffixes */
1119 do {
1120 char const *s0 = s = *suf;
1121 strcpy (ifname, iname);
1122 #ifdef NO_MULTIPLE_DOTS
1123 if (*s == '.') s++;
1124 if (*dot == '\0') strcpy (dot, ".");
1125 #endif
1126 #ifdef MAX_EXT_CHARS
1127 if (MAX_EXT_CHARS < strlen (s) + strlen (dot + 1))
1128 dot[MAX_EXT_CHARS + 1 - strlen (s)] = '\0';
1129 #endif
1130 if (sizeof ifname <= ilen + strlen (s))
1131 goto name_too_long;
1132 strcat(ifname, s);
1133 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1134 if (0 <= fd)
1135 return fd;
1136 if (errno != ENOENT)
1138 progerror (ifname);
1139 return -1;
1141 if (strequ (s0, z_suffix))
1142 z_suffix_errno = errno;
1143 } while (*++suf != NULL);
1145 /* No suffix found, complain using z_suffix: */
1146 strcpy(ifname, iname);
1147 #ifdef NO_MULTIPLE_DOTS
1148 if (*dot == '\0') strcpy(dot, ".");
1149 #endif
1150 #ifdef MAX_EXT_CHARS
1151 if (MAX_EXT_CHARS < z_len + strlen (dot + 1))
1152 dot[MAX_EXT_CHARS + 1 - z_len] = '\0';
1153 #endif
1154 strcat(ifname, z_suffix);
1155 errno = z_suffix_errno;
1156 progerror(ifname);
1157 return -1;
1159 name_too_long:
1160 fprintf (stderr, "%s: %s: file name too long\n", program_name, iname);
1161 exit_code = ERROR;
1162 return -1;
1165 /* ========================================================================
1166 * Generate ofname given ifname. Return OK, or WARNING if file must be skipped.
1167 * Sets save_orig_name to true if the file name has been truncated.
1169 local int make_ofname()
1171 char *suff; /* ofname z suffix */
1173 strcpy(ofname, ifname);
1174 /* strip a version number if any and get the gzip suffix if present: */
1175 suff = get_suffix(ofname);
1177 if (decompress) {
1178 if (suff == NULL) {
1179 /* With -t or -l, try all files (even without .gz suffix)
1180 * except with -r (behave as with just -dr).
1182 if (!recursive && (list || test)) return OK;
1184 /* Avoid annoying messages with -r */
1185 if (verbose || (!recursive && !quiet)) {
1186 WARN((stderr,"%s: %s: unknown suffix -- ignored\n",
1187 program_name, ifname));
1189 return WARNING;
1191 /* Make a special case for .tgz and .taz: */
1192 strlwr(suff);
1193 if (strequ(suff, ".tgz") || strequ(suff, ".taz")) {
1194 strcpy(suff, ".tar");
1195 } else {
1196 *suff = '\0'; /* strip the z suffix */
1198 /* ofname might be changed later if infile contains an original name */
1200 } else if (suff && ! force) {
1201 /* Avoid annoying messages with -r (see treat_dir()) */
1202 if (verbose || (!recursive && !quiet)) {
1203 /* Don't use WARN, as it affects exit status. */
1204 fprintf (stderr, "%s: %s already has %s suffix -- unchanged\n",
1205 program_name, ifname, suff);
1207 return WARNING;
1208 } else {
1209 save_orig_name = 0;
1211 #ifdef NO_MULTIPLE_DOTS
1212 suff = strrchr(ofname, '.');
1213 if (suff == NULL) {
1214 if (sizeof ofname <= strlen (ofname) + 1)
1215 goto name_too_long;
1216 strcat(ofname, ".");
1217 # ifdef MAX_EXT_CHARS
1218 if (strequ(z_suffix, "z")) {
1219 if (sizeof ofname <= strlen (ofname) + 2)
1220 goto name_too_long;
1221 strcat(ofname, "gz"); /* enough room */
1222 return OK;
1224 /* On the Atari and some versions of MSDOS,
1225 * ENAMETOOLONG does not work correctly. So we
1226 * must truncate here.
1228 } else if (strlen(suff)-1 + z_len > MAX_SUFFIX) {
1229 suff[MAX_SUFFIX+1-z_len] = '\0';
1230 save_orig_name = 1;
1231 # endif
1233 #endif /* NO_MULTIPLE_DOTS */
1234 if (sizeof ofname <= strlen (ofname) + z_len)
1235 goto name_too_long;
1236 strcat(ofname, z_suffix);
1238 } /* decompress ? */
1239 return OK;
1241 name_too_long:
1242 WARN ((stderr, "%s: %s: file name too long\n", program_name, ifname));
1243 return WARNING;
1246 /* Discard NBYTES input bytes from the input, or up through the next
1247 zero byte if NBYTES == (size_t) -1. If FLAGS say that the header
1248 CRC should be computed, update the CRC accordingly. */
1249 static void
1250 discard_input_bytes (nbytes, flags)
1251 size_t nbytes;
1252 unsigned int flags;
1254 while (nbytes != 0)
1256 uch c = get_byte ();
1257 if (flags & HEADER_CRC)
1258 updcrc (&c, 1);
1259 if (nbytes != (size_t) -1)
1260 nbytes--;
1261 else if (! c)
1262 break;
1266 /* ========================================================================
1267 * Check the magic number of the input file and update ofname if an
1268 * original name was given and to_stdout is not set.
1269 * Return the compression method, -1 for error, -2 for warning.
1270 * Set inptr to the offset of the next byte to be processed.
1271 * Updates time_stamp if there is one and --no-time is not used.
1272 * This function may be called repeatedly for an input file consisting
1273 * of several contiguous gzip'ed members.
1274 * IN assertions: there is at least one remaining compressed member.
1275 * If the member is a zip file, it must be the only one.
1277 local int get_method(in)
1278 int in; /* input file descriptor */
1280 uch flags; /* compression flags */
1281 uch magic[10]; /* magic header */
1282 int imagic0; /* first magic byte or EOF */
1283 int imagic1; /* like magic[1], but can represent EOF */
1284 ulg stamp; /* time stamp */
1286 /* If --force and --stdout, zcat == cat, so do not complain about
1287 * premature end of file: use try_byte instead of get_byte.
1289 if (force && to_stdout) {
1290 imagic0 = try_byte();
1291 magic[0] = imagic0;
1292 imagic1 = try_byte ();
1293 magic[1] = imagic1;
1294 /* If try_byte returned EOF, magic[1] == (char) EOF. */
1295 } else {
1296 magic[0] = get_byte ();
1297 imagic0 = 0;
1298 if (magic[0]) {
1299 magic[1] = get_byte ();
1300 imagic1 = 0; /* avoid lint warning */
1301 } else {
1302 imagic1 = try_byte ();
1303 magic[1] = imagic1;
1306 method = -1; /* unknown yet */
1307 part_nb++; /* number of parts in gzip file */
1308 header_bytes = 0;
1309 last_member = RECORD_IO;
1310 /* assume multiple members in gzip file except for record oriented I/O */
1312 if (memcmp(magic, GZIP_MAGIC, 2) == 0
1313 || memcmp(magic, OLD_GZIP_MAGIC, 2) == 0) {
1315 method = (int)get_byte();
1316 if (method != DEFLATED) {
1317 fprintf(stderr,
1318 "%s: %s: unknown method %d -- not supported\n",
1319 program_name, ifname, method);
1320 exit_code = ERROR;
1321 return -1;
1323 work = unzip;
1324 flags = (uch)get_byte();
1326 if ((flags & ENCRYPTED) != 0) {
1327 fprintf(stderr,
1328 "%s: %s is encrypted -- not supported\n",
1329 program_name, ifname);
1330 exit_code = ERROR;
1331 return -1;
1333 if ((flags & RESERVED) != 0) {
1334 fprintf(stderr,
1335 "%s: %s has flags 0x%x -- not supported\n",
1336 program_name, ifname, flags);
1337 exit_code = ERROR;
1338 if (force <= 1) return -1;
1340 stamp = (ulg)get_byte();
1341 stamp |= ((ulg)get_byte()) << 8;
1342 stamp |= ((ulg)get_byte()) << 16;
1343 stamp |= ((ulg)get_byte()) << 24;
1344 if (stamp != 0 && !no_time)
1346 time_stamp.tv_sec = stamp;
1347 time_stamp.tv_nsec = 0;
1350 magic[8] = get_byte (); /* Ignore extra flags. */
1351 magic[9] = get_byte (); /* Ignore OS type. */
1353 if (flags & HEADER_CRC)
1355 magic[2] = DEFLATED;
1356 magic[3] = flags;
1357 magic[4] = stamp & 0xff;
1358 magic[5] = (stamp >> 8) & 0xff;
1359 magic[6] = (stamp >> 16) & 0xff;
1360 magic[7] = stamp >> 24;
1361 updcrc (NULL, 0);
1362 updcrc (magic, 10);
1365 if ((flags & EXTRA_FIELD) != 0) {
1366 uch lenbuf[2];
1367 unsigned int len = lenbuf[0] = get_byte ();
1368 len |= (lenbuf[1] = get_byte ()) << 8;
1369 if (verbose) {
1370 fprintf(stderr,"%s: %s: extra field of %u bytes ignored\n",
1371 program_name, ifname, len);
1373 if (flags & HEADER_CRC)
1374 updcrc (lenbuf, 2);
1375 discard_input_bytes (len, flags);
1378 /* Get original file name if it was truncated */
1379 if ((flags & ORIG_NAME) != 0) {
1380 if (no_name || (to_stdout && !list) || part_nb > 1) {
1381 /* Discard the old name */
1382 discard_input_bytes (-1, flags);
1383 } else {
1384 /* Copy the base name. Keep a directory prefix intact. */
1385 char *p = gzip_base_name (ofname);
1386 char *base = p;
1387 for (;;) {
1388 *p = (char) get_byte ();
1389 if (*p++ == '\0') break;
1390 if (p >= ofname+sizeof(ofname)) {
1391 gzip_error ("corrupted input -- file name too large");
1394 if (flags & HEADER_CRC)
1395 updcrc ((uch *) base, p - base);
1396 p = gzip_base_name (base);
1397 memmove (base, p, strlen (p) + 1);
1398 /* If necessary, adapt the name to local OS conventions: */
1399 if (!list) {
1400 MAKE_LEGAL_NAME(base);
1401 if (base) list=0; /* avoid warning about unused variable */
1403 } /* no_name || to_stdout */
1404 } /* ORIG_NAME */
1406 /* Discard file comment if any */
1407 if ((flags & COMMENT) != 0) {
1408 discard_input_bytes (-1, flags);
1411 if (flags & HEADER_CRC)
1413 unsigned int crc16 = updcrc (magic, 0) & 0xffff;
1414 unsigned int header16 = get_byte ();
1415 header16 |= ((unsigned int) get_byte ()) << 8;
1416 if (header16 != crc16)
1418 fprintf (stderr,
1419 "%s: %s: header checksum 0x%04x != computed checksum 0x%04x\n",
1420 program_name, ifname, header16, crc16);
1421 exit_code = ERROR;
1422 if (force <= 1)
1423 return -1;
1427 if (part_nb == 1) {
1428 header_bytes = inptr + 2*4; /* include crc and size */
1431 } else if (memcmp(magic, PKZIP_MAGIC, 2) == 0 && inptr == 2
1432 && memcmp((char*)inbuf, PKZIP_MAGIC, 4) == 0) {
1433 /* To simplify the code, we support a zip file when alone only.
1434 * We are thus guaranteed that the entire local header fits in inbuf.
1436 inptr = 0;
1437 work = unzip;
1438 if (check_zipfile(in) != OK) return -1;
1439 /* check_zipfile may get ofname from the local header */
1440 last_member = 1;
1442 } else if (memcmp(magic, PACK_MAGIC, 2) == 0) {
1443 work = unpack;
1444 method = PACKED;
1446 } else if (memcmp(magic, LZW_MAGIC, 2) == 0) {
1447 work = unlzw;
1448 method = COMPRESSED;
1449 last_member = 1;
1451 } else if (memcmp(magic, LZH_MAGIC, 2) == 0) {
1452 work = unlzh;
1453 method = LZHED;
1454 last_member = 1;
1456 } else if (force && to_stdout && !list) { /* pass input unchanged */
1457 method = STORED;
1458 work = copy;
1459 if (imagic1 != EOF)
1460 inptr--;
1461 last_member = 1;
1462 if (imagic0 != EOF) {
1463 write_buf(fileno(stdout), magic, 1);
1464 bytes_out++;
1467 if (method >= 0) return method;
1469 if (part_nb == 1) {
1470 fprintf (stderr, "\n%s: %s: not in gzip format\n",
1471 program_name, ifname);
1472 exit_code = ERROR;
1473 return -1;
1474 } else {
1475 if (magic[0] == 0)
1477 int inbyte;
1478 for (inbyte = imagic1; inbyte == 0; inbyte = try_byte ())
1479 continue;
1480 if (inbyte == EOF)
1482 if (verbose)
1483 WARN ((stderr, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1484 program_name, ifname));
1485 return -3;
1489 WARN((stderr, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1490 program_name, ifname));
1491 return -2;
1495 /* ========================================================================
1496 * Display the characteristics of the compressed file.
1497 * If the given method is < 0, display the accumulated totals.
1498 * IN assertions: time_stamp, header_bytes and ifile_size are initialized.
1500 local void do_list(ifd, method)
1501 int ifd; /* input file descriptor */
1502 int method; /* compression method */
1504 ulg crc; /* original crc */
1505 static int first_time = 1;
1506 static char const *const methods[MAX_METHODS] = {
1507 "store", /* 0 */
1508 "compr", /* 1 */
1509 "pack ", /* 2 */
1510 "lzh ", /* 3 */
1511 "", "", "", "", /* 4 to 7 reserved */
1512 "defla"}; /* 8 */
1513 int positive_off_t_width = 1;
1514 off_t o;
1516 for (o = OFF_T_MAX; 9 < o; o /= 10) {
1517 positive_off_t_width++;
1520 if (first_time && method >= 0) {
1521 first_time = 0;
1522 if (verbose) {
1523 printf("method crc date time ");
1525 if (!quiet) {
1526 printf("%*.*s %*.*s ratio uncompressed_name\n",
1527 positive_off_t_width, positive_off_t_width, "compressed",
1528 positive_off_t_width, positive_off_t_width, "uncompressed");
1530 } else if (method < 0) {
1531 if (total_in <= 0 || total_out <= 0) return;
1532 if (verbose) {
1533 printf(" ");
1535 if (verbose || !quiet) {
1536 fprint_off(stdout, total_in, positive_off_t_width);
1537 printf(" ");
1538 fprint_off(stdout, total_out, positive_off_t_width);
1539 printf(" ");
1541 display_ratio(total_out-(total_in-header_bytes), total_out, stdout);
1542 /* header_bytes is not meaningful but used to ensure the same
1543 * ratio if there is a single file.
1545 printf(" (totals)\n");
1546 return;
1548 crc = (ulg)~0; /* unknown */
1549 bytes_out = -1L;
1550 bytes_in = ifile_size;
1552 if (!RECORD_IO && method == DEFLATED && !last_member) {
1553 /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files.
1554 * If the lseek fails, we could use read() to get to the end, but
1555 * --list is used to get quick results.
1556 * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if
1557 * you are not concerned about speed.
1559 bytes_in = lseek(ifd, (off_t)(-8), SEEK_END);
1560 if (bytes_in != -1L) {
1561 uch buf[8];
1562 bytes_in += 8L;
1563 if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) {
1564 read_error();
1566 crc = LG(buf);
1567 bytes_out = LG(buf+4);
1571 if (verbose)
1573 struct tm *tm = localtime (&time_stamp.tv_sec);
1574 printf ("%5s %08lx ", methods[method], crc);
1575 if (tm)
1576 printf ("%s%3d %02d:%02d ",
1577 ("Jan\0Feb\0Mar\0Apr\0May\0Jun\0Jul\0Aug\0Sep\0Oct\0Nov\0Dec"
1578 + 4 * tm->tm_mon),
1579 tm->tm_mday, tm->tm_hour, tm->tm_min);
1580 else
1581 printf ("??? ?? ??:?? ");
1583 fprint_off(stdout, bytes_in, positive_off_t_width);
1584 printf(" ");
1585 fprint_off(stdout, bytes_out, positive_off_t_width);
1586 printf(" ");
1587 if (bytes_in == -1L) {
1588 total_in = -1L;
1589 bytes_in = bytes_out = header_bytes = 0;
1590 } else if (total_in >= 0) {
1591 total_in += bytes_in;
1593 if (bytes_out == -1L) {
1594 total_out = -1L;
1595 bytes_in = bytes_out = header_bytes = 0;
1596 } else if (total_out >= 0) {
1597 total_out += bytes_out;
1599 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out, stdout);
1600 printf(" %s\n", ofname);
1603 /* ========================================================================
1604 * Shorten the given name by one character, or replace a .tar extension
1605 * with .tgz. Truncate the last part of the name which is longer than
1606 * MIN_PART characters: 1234.678.012.gz -> 123.678.012.gz. If the name
1607 * has only parts shorter than MIN_PART truncate the longest part.
1608 * For decompression, just remove the last character of the name.
1610 * IN assertion: for compression, the suffix of the given name is z_suffix.
1612 local void shorten_name(name)
1613 char *name;
1615 int len; /* length of name without z_suffix */
1616 char *trunc = NULL; /* character to be truncated */
1617 int plen; /* current part length */
1618 int min_part = MIN_PART; /* current minimum part length */
1619 char *p;
1621 len = strlen(name);
1622 if (decompress) {
1623 if (len <= 1)
1624 gzip_error ("name too short");
1625 name[len-1] = '\0';
1626 return;
1628 p = get_suffix(name);
1629 if (! p)
1630 gzip_error ("can't recover suffix\n");
1631 *p = '\0';
1632 save_orig_name = 1;
1634 /* compress 1234567890.tar to 1234567890.tgz */
1635 if (len > 4 && strequ(p-4, ".tar")) {
1636 strcpy(p-4, ".tgz");
1637 return;
1639 /* Try keeping short extensions intact:
1640 * 1234.678.012.gz -> 123.678.012.gz
1642 do {
1643 p = strrchr(name, PATH_SEP);
1644 p = p ? p+1 : name;
1645 while (*p) {
1646 plen = strcspn(p, PART_SEP);
1647 p += plen;
1648 if (plen > min_part) trunc = p-1;
1649 if (*p) p++;
1651 } while (trunc == NULL && --min_part != 0);
1653 if (trunc != NULL) {
1654 do {
1655 trunc[0] = trunc[1];
1656 } while (*trunc++);
1657 trunc--;
1658 } else {
1659 trunc = strrchr(name, PART_SEP[0]);
1660 if (!trunc)
1661 gzip_error ("internal error in shorten_name");
1662 if (trunc[1] == '\0') trunc--; /* force truncation */
1664 strcpy(trunc, z_suffix);
1667 /* ========================================================================
1668 * The compressed file already exists, so ask for confirmation.
1669 * Return ERROR if the file must be skipped.
1671 local int check_ofname()
1673 /* Ask permission to overwrite the existing file */
1674 if (!force) {
1675 int ok = 0;
1676 fprintf (stderr, "%s: %s already exists;", program_name, ofname);
1677 if (foreground && (presume_input_tty || isatty(fileno(stdin)))) {
1678 fprintf(stderr, " do you wish to overwrite (y or n)? ");
1679 fflush(stderr);
1680 ok = yesno();
1682 if (!ok) {
1683 fprintf(stderr, "\tnot overwritten\n");
1684 if (exit_code == OK) exit_code = WARNING;
1685 return ERROR;
1688 if (xunlink (ofname)) {
1689 progerror(ofname);
1690 return ERROR;
1692 return OK;
1696 /* ========================================================================
1697 * Copy modes, times, ownership from input file to output file.
1698 * IN assertion: to_stdout is false.
1700 local void copy_stat(ifstat)
1701 struct stat *ifstat;
1703 mode_t mode = ifstat->st_mode & S_IRWXUGO;
1704 int r;
1706 #ifndef NO_UTIME
1707 struct timespec timespec[2];
1708 timespec[0] = get_stat_atime (ifstat);
1709 timespec[1] = get_stat_mtime (ifstat);
1711 if (decompress && 0 <= time_stamp.tv_nsec
1712 && ! (timespec[1].tv_sec == time_stamp.tv_sec
1713 && timespec[1].tv_nsec == time_stamp.tv_nsec))
1715 timespec[1] = time_stamp;
1716 if (verbose > 1) {
1717 fprintf(stderr, "%s: time stamp restored\n", ofname);
1721 if (fdutimens (ofd, ofname, timespec) != 0)
1723 int e = errno;
1724 WARN ((stderr, "%s: ", program_name));
1725 if (!quiet)
1727 errno = e;
1728 perror (ofname);
1731 #endif
1733 #ifndef NO_CHOWN
1734 /* Copy ownership */
1735 # if HAVE_FCHOWN
1736 ignore_value (fchown (ofd, ifstat->st_uid, ifstat->st_gid));
1737 # elif HAVE_CHOWN
1738 ignore_value (chown (ofname, ifstat->st_uid, ifstat->st_gid));
1739 # endif
1740 #endif
1742 /* Copy the protection modes */
1743 #if HAVE_FCHMOD
1744 r = fchmod (ofd, mode);
1745 #else
1746 r = chmod (ofname, mode);
1747 #endif
1748 if (r != 0) {
1749 int e = errno;
1750 WARN ((stderr, "%s: ", program_name));
1751 if (!quiet) {
1752 errno = e;
1753 perror(ofname);
1758 #if ! NO_DIR
1760 /* ========================================================================
1761 * Recurse through the given directory. This code is taken from ncompress.
1763 local void treat_dir (fd, dir)
1764 int fd;
1765 char *dir;
1767 struct dirent *dp;
1768 DIR *dirp;
1769 char nbuf[MAX_PATH_LEN];
1770 int len;
1772 dirp = fdopendir (fd);
1774 if (dirp == NULL) {
1775 progerror(dir);
1776 close (fd);
1777 return ;
1780 ** WARNING: the following algorithm could occasionally cause
1781 ** compress to produce error warnings of the form "<filename>.gz
1782 ** already has .gz suffix - ignored". This occurs when the
1783 ** .gz output file is inserted into the directory below
1784 ** readdir's current pointer.
1785 ** These warnings are harmless but annoying, so they are suppressed
1786 ** with option -r (except when -v is on). An alternative
1787 ** to allowing this would be to store the entire directory
1788 ** list in memory, then compress the entries in the stored
1789 ** list. Given the depth-first recursive algorithm used here,
1790 ** this could use up a tremendous amount of memory. I don't
1791 ** think it's worth it. -- Dave Mack
1792 ** (An other alternative might be two passes to avoid depth-first.)
1795 while ((errno = 0, dp = readdir(dirp)) != NULL) {
1797 if (strequ(dp->d_name,".") || strequ(dp->d_name,"..")) {
1798 continue;
1800 len = strlen(dir);
1801 if (len + _D_EXACT_NAMLEN (dp) + 1 < MAX_PATH_LEN - 1) {
1802 strcpy(nbuf,dir);
1803 if (len != 0 /* dir = "" means current dir on Amiga */
1804 #ifdef PATH_SEP2
1805 && dir[len-1] != PATH_SEP2
1806 #endif
1807 #ifdef PATH_SEP3
1808 && dir[len-1] != PATH_SEP3
1809 #endif
1811 nbuf[len++] = PATH_SEP;
1813 strcpy(nbuf+len, dp->d_name);
1814 treat_file(nbuf);
1815 } else {
1816 fprintf(stderr,"%s: %s/%s: pathname too long\n",
1817 program_name, dir, dp->d_name);
1818 exit_code = ERROR;
1821 if (errno != 0)
1822 progerror(dir);
1823 if (CLOSEDIR(dirp) != 0)
1824 progerror(dir);
1826 #endif /* ! NO_DIR */
1828 /* Make sure signals get handled properly. */
1830 static void
1831 install_signal_handlers ()
1833 int nsigs = sizeof handled_sig / sizeof handled_sig[0];
1834 int i;
1836 #if SA_NOCLDSTOP
1837 struct sigaction act;
1839 sigemptyset (&caught_signals);
1840 for (i = 0; i < nsigs; i++)
1842 sigaction (handled_sig[i], NULL, &act);
1843 if (act.sa_handler != SIG_IGN)
1844 sigaddset (&caught_signals, handled_sig[i]);
1847 act.sa_handler = abort_gzip_signal;
1848 act.sa_mask = caught_signals;
1849 act.sa_flags = 0;
1851 for (i = 0; i < nsigs; i++)
1852 if (sigismember (&caught_signals, handled_sig[i]))
1854 if (i == 0)
1855 foreground = 1;
1856 sigaction (handled_sig[i], &act, NULL);
1858 #else
1859 for (i = 0; i < nsigs; i++)
1860 if (signal (handled_sig[i], SIG_IGN) != SIG_IGN)
1862 if (i == 0)
1863 foreground = 1;
1864 signal (handled_sig[i], abort_gzip_signal);
1865 siginterrupt (handled_sig[i], 1);
1867 #endif
1870 /* ========================================================================
1871 * Free all dynamically allocated variables and exit with the given code.
1873 local void do_exit(exitcode)
1874 int exitcode;
1876 static int in_exit = 0;
1878 if (in_exit) exit(exitcode);
1879 in_exit = 1;
1880 free(env);
1881 env = NULL;
1882 free(args);
1883 args = NULL;
1884 FREE(inbuf);
1885 FREE(outbuf);
1886 FREE(d_buf);
1887 FREE(window);
1888 #ifndef MAXSEG_64K
1889 FREE(tab_prefix);
1890 #else
1891 FREE(tab_prefix0);
1892 FREE(tab_prefix1);
1893 #endif
1894 exit(exitcode);
1897 /* ========================================================================
1898 * Close and unlink the output file.
1900 static void
1901 remove_output_file ()
1903 int fd;
1904 sigset_t oldset;
1906 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1907 fd = remove_ofname_fd;
1908 if (0 <= fd)
1910 remove_ofname_fd = -1;
1911 close (fd);
1912 xunlink (ofname);
1914 sigprocmask (SIG_SETMASK, &oldset, NULL);
1917 /* ========================================================================
1918 * Error handler.
1920 void
1921 abort_gzip ()
1923 remove_output_file ();
1924 do_exit(ERROR);
1927 /* ========================================================================
1928 * Signal handler.
1930 static RETSIGTYPE
1931 abort_gzip_signal (sig)
1932 int sig;
1934 if (! SA_NOCLDSTOP)
1935 signal (sig, SIG_IGN);
1936 remove_output_file ();
1937 if (sig == exiting_signal)
1938 _exit (WARNING);
1939 signal (sig, SIG_DFL);
1940 raise (sig);