version 1.3.13
[gzip.git] / gzip.c
blob8543128a909e4b156ecc4a14e979c8be21101137
1 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
3 Copyright (C) 1999, 2001-2002, 2006-2007, 2009 Free Software Foundation,
4 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 *license_msg[] = {
32 "Copyright (C) 2007 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 <sys/stat.h>
62 #include <errno.h>
64 #include "closein.h"
65 #include "tailor.h"
66 #include "gzip.h"
67 #include "lzw.h"
68 #include "revision.h"
70 #include "fcntl-safer.h"
71 #include "getopt.h"
72 #include "stat-time.h"
74 /* configuration */
76 #ifdef HAVE_FCNTL_H
77 # include <fcntl.h>
78 #endif
80 #ifdef HAVE_LIMITS_H
81 # include <limits.h>
82 #endif
84 #ifdef HAVE_UNISTD_H
85 # include <unistd.h>
86 #endif
88 #if defined STDC_HEADERS || defined HAVE_STDLIB_H
89 # include <stdlib.h>
90 #else
91 extern int errno;
92 #endif
94 #ifndef NO_DIR
95 # define NO_DIR 0
96 #endif
97 #if !NO_DIR
98 # include <dirent.h>
99 # ifndef _D_EXACT_NAMLEN
100 # define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
101 # endif
102 #endif
104 #ifdef CLOSEDIR_VOID
105 # define CLOSEDIR(d) (closedir(d), 0)
106 #else
107 # define CLOSEDIR(d) closedir(d)
108 #endif
110 #ifndef NO_UTIME
111 # include <utimens.h>
112 #endif
114 #define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
116 #ifndef MAX_PATH_LEN
117 # define MAX_PATH_LEN 1024 /* max pathname length */
118 #endif
120 #ifndef SEEK_END
121 # define SEEK_END 2
122 #endif
124 #ifndef CHAR_BIT
125 # define CHAR_BIT 8
126 #endif
128 #ifdef off_t
129 off_t lseek OF((int fd, off_t offset, int whence));
130 #endif
132 #ifndef OFF_T_MIN
133 #define OFF_T_MIN (~ (off_t) 0 << (sizeof (off_t) * CHAR_BIT - 1))
134 #endif
136 #ifndef OFF_T_MAX
137 #define OFF_T_MAX (~ (off_t) 0 - OFF_T_MIN)
138 #endif
140 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
141 present. */
142 #ifndef SA_NOCLDSTOP
143 # define SA_NOCLDSTOP 0
144 # define sigprocmask(how, set, oset) /* empty */
145 # define sigset_t int
146 # if ! HAVE_SIGINTERRUPT
147 # define siginterrupt(sig, flag) /* empty */
148 # endif
149 #endif
151 #ifndef HAVE_WORKING_O_NOFOLLOW
152 # define HAVE_WORKING_O_NOFOLLOW 0
153 #endif
155 #ifndef ELOOP
156 # define ELOOP EINVAL
157 #endif
159 /* Separator for file name parts (see shorten_name()) */
160 #ifdef NO_MULTIPLE_DOTS
161 # define PART_SEP "-"
162 #else
163 # define PART_SEP "."
164 #endif
166 /* global buffers */
168 DECLARE(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
169 DECLARE(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
170 DECLARE(ush, d_buf, DIST_BUFSIZE);
171 DECLARE(uch, window, 2L*WSIZE);
172 #ifndef MAXSEG_64K
173 DECLARE(ush, tab_prefix, 1L<<BITS);
174 #else
175 DECLARE(ush, tab_prefix0, 1L<<(BITS-1));
176 DECLARE(ush, tab_prefix1, 1L<<(BITS-1));
177 #endif
179 /* local variables */
181 int ascii = 0; /* convert end-of-lines to local OS conventions */
182 int to_stdout = 0; /* output to stdout (-c) */
183 int decompress = 0; /* decompress (-d) */
184 int force = 0; /* don't ask questions, compress links (-f) */
185 int no_name = -1; /* don't save or restore the original file name */
186 int no_time = -1; /* don't save or restore the original file time */
187 int recursive = 0; /* recurse through directories (-r) */
188 int list = 0; /* list the file contents (-l) */
189 int verbose = 0; /* be verbose (-v) */
190 int quiet = 0; /* be very quiet (-q) */
191 int do_lzw = 0; /* generate output compatible with old compress (-Z) */
192 int test = 0; /* test .gz file integrity */
193 int foreground = 0; /* set if program run in foreground */
194 char *program_name; /* program name */
195 int maxbits = BITS; /* max bits per code for LZW */
196 int method = DEFLATED;/* compression method */
197 int level = 6; /* compression level */
198 int exit_code = OK; /* program exit code */
199 int save_orig_name; /* set if original name must be saved */
200 int last_member; /* set for .zip and .Z files */
201 int part_nb; /* number of parts in .gz file */
202 struct timespec time_stamp; /* original time stamp (modification time) */
203 off_t ifile_size; /* input file size, -1 for devices (debug only) */
204 char *env; /* contents of GZIP env variable */
205 char **args = NULL; /* argv pointer if GZIP env variable defined */
206 char *z_suffix; /* default suffix (can be set with --suffix) */
207 size_t z_len; /* strlen(z_suffix) */
209 /* The set of signals that are caught. */
210 static sigset_t caught_signals;
212 /* If nonzero then exit with status WARNING, rather than with the usual
213 signal status, on receipt of a signal with this value. This
214 suppresses a "Broken Pipe" message with some shells. */
215 static int volatile exiting_signal;
217 /* If nonnegative, close this file descriptor and unlink ofname on error. */
218 static int volatile remove_ofname_fd = -1;
220 off_t bytes_in; /* number of input bytes */
221 off_t bytes_out; /* number of output bytes */
222 off_t total_in; /* input bytes for all files */
223 off_t total_out; /* output bytes for all files */
224 char ifname[MAX_PATH_LEN]; /* input file name */
225 char ofname[MAX_PATH_LEN]; /* output file name */
226 struct stat istat; /* status for input file */
227 int ifd; /* input file descriptor */
228 int ofd; /* output file descriptor */
229 unsigned insize; /* valid bytes in inbuf */
230 unsigned inptr; /* index of next byte to be processed in inbuf */
231 unsigned outcnt; /* bytes in output buffer */
233 static int handled_sig[] =
235 /* SIGINT must be first, as 'foreground' depends on it. */
236 SIGINT
238 #ifdef SIGHUP
239 , SIGHUP
240 #endif
241 #ifdef SIGPIPE
242 , SIGPIPE
243 #else
244 # define SIGPIPE 0
245 #endif
246 #ifdef SIGTERM
247 , SIGTERM
248 #endif
249 #ifdef SIGXCPU
250 , SIGXCPU
251 #endif
252 #ifdef SIGXFSZ
253 , SIGXFSZ
254 #endif
257 struct option longopts[] =
259 /* { name has_arg *flag val } */
260 {"ascii", 0, 0, 'a'}, /* ascii text mode */
261 {"to-stdout", 0, 0, 'c'}, /* write output on standard output */
262 {"stdout", 0, 0, 'c'}, /* write output on standard output */
263 {"decompress", 0, 0, 'd'}, /* decompress */
264 {"uncompress", 0, 0, 'd'}, /* decompress */
265 /* {"encrypt", 0, 0, 'e'}, encrypt */
266 {"force", 0, 0, 'f'}, /* force overwrite of output file */
267 {"help", 0, 0, 'h'}, /* give help */
268 /* {"pkzip", 0, 0, 'k'}, force output in pkzip format */
269 {"list", 0, 0, 'l'}, /* list .gz file contents */
270 {"license", 0, 0, 'L'}, /* display software license */
271 {"no-name", 0, 0, 'n'}, /* don't save or restore original name & time */
272 {"name", 0, 0, 'N'}, /* save or restore original name & time */
273 {"quiet", 0, 0, 'q'}, /* quiet mode */
274 {"silent", 0, 0, 'q'}, /* quiet mode */
275 {"recursive", 0, 0, 'r'}, /* recurse through directories */
276 {"suffix", 1, 0, 'S'}, /* use given suffix instead of .gz */
277 {"test", 0, 0, 't'}, /* test compressed file integrity */
278 {"no-time", 0, 0, 'T'}, /* don't save or restore the time stamp */
279 {"verbose", 0, 0, 'v'}, /* verbose mode */
280 {"version", 0, 0, 'V'}, /* display version number */
281 {"fast", 0, 0, '1'}, /* compress faster */
282 {"best", 0, 0, '9'}, /* compress better */
283 {"lzw", 0, 0, 'Z'}, /* make output compatible with old compress */
284 {"bits", 1, 0, 'b'}, /* max number of bits per code (implies -Z) */
285 { 0, 0, 0, 0 }
288 /* local functions */
290 local void try_help OF((void)) ATTRIBUTE_NORETURN;
291 local void help OF((void));
292 local void license OF((void));
293 local void version OF((void));
294 local int input_eof OF((void));
295 local void treat_stdin OF((void));
296 local void treat_file OF((char *iname));
297 local int create_outfile OF((void));
298 local char *get_suffix OF((char *name));
299 local int open_input_file OF((char *iname, struct stat *sbuf));
300 local int make_ofname OF((void));
301 local void shorten_name OF((char *name));
302 local int get_method OF((int in));
303 local void do_list OF((int ifd, int method));
304 local int check_ofname OF((void));
305 local void copy_stat OF((struct stat *ifstat));
306 local void install_signal_handlers OF((void));
307 local void remove_output_file OF((void));
308 local RETSIGTYPE abort_gzip_signal OF((int));
309 local void do_exit OF((int exitcode)) ATTRIBUTE_NORETURN;
310 int main OF((int argc, char **argv));
311 int (*work) OF((int infile, int outfile)) = zip; /* function to call */
313 #if ! NO_DIR
314 local void treat_dir OF((int fd, char *dir));
315 #endif
317 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
319 static void
320 try_help ()
322 fprintf (stderr, "Try `%s --help' for more information.\n",
323 program_name);
324 do_exit (ERROR);
327 /* ======================================================================== */
328 local void help()
330 static char *help_msg[] = {
331 "Compress or uncompress FILEs (by default, compress FILES in-place).",
333 "Mandatory arguments to long options are mandatory for short options too.",
335 #if O_BINARY
336 " -a, --ascii ascii text; convert end-of-line using local conventions",
337 #endif
338 " -c, --stdout write on standard output, keep original files unchanged",
339 " -d, --decompress decompress",
340 /* -e, --encrypt encrypt */
341 " -f, --force force overwrite of output file and compress links",
342 " -h, --help give this help",
343 /* -k, --pkzip force output in pkzip format */
344 " -l, --list list compressed file contents",
345 " -L, --license display software license",
346 #ifdef UNDOCUMENTED
347 " -m, --no-time do not save or restore the original modification time",
348 " -M, --time save or restore the original modification time",
349 #endif
350 " -n, --no-name do not save or restore the original name and time stamp",
351 " -N, --name save or restore the original name and time stamp",
352 " -q, --quiet suppress all warnings",
353 #if ! NO_DIR
354 " -r, --recursive operate recursively on directories",
355 #endif
356 " -S, --suffix=SUF use suffix SUF on compressed files",
357 " -t, --test test compressed file integrity",
358 " -v, --verbose verbose mode",
359 " -V, --version display version number",
360 " -1, --fast compress faster",
361 " -9, --best compress better",
362 #ifdef LZW
363 " -Z, --lzw produce output compatible with old compress",
364 " -b, --bits=BITS max number of bits per code (implies -Z)",
365 #endif
367 "With no FILE, or when FILE is -, read standard input.",
369 "Report bugs to <bug-gzip@gnu.org>.",
371 char **p = help_msg;
373 printf ("Usage: %s [OPTION]... [FILE]...\n", program_name);
374 while (*p) printf ("%s\n", *p++);
377 /* ======================================================================== */
378 local void license()
380 char **p = license_msg;
382 printf ("%s %s\n", program_name, VERSION);
383 while (*p) printf ("%s\n", *p++);
386 /* ======================================================================== */
387 local void version()
389 license ();
390 printf ("\n");
391 printf ("Written by Jean-loup Gailly.\n");
394 local void progerror (string)
395 char *string;
397 int e = errno;
398 fprintf (stderr, "%s: ", program_name);
399 errno = e;
400 perror(string);
401 exit_code = ERROR;
404 /* ======================================================================== */
405 int main (argc, argv)
406 int argc;
407 char **argv;
409 int file_count; /* number of files to process */
410 size_t proglen; /* length of program_name */
411 int optc; /* current option */
413 EXPAND(argc, argv); /* wild card expansion if necessary */
415 program_name = gzip_base_name (argv[0]);
416 proglen = strlen (program_name);
418 atexit (close_stdin);
420 /* Suppress .exe for MSDOS, OS/2 and VMS: */
421 if (4 < proglen && strequ (program_name + proglen - 4, ".exe"))
422 program_name[proglen - 4] = '\0';
424 /* Add options in GZIP environment variable if there is one */
425 env = add_envopt(&argc, &argv, OPTIONS_VAR);
426 if (env != NULL) args = argv;
428 #ifndef GNU_STANDARD
429 # define GNU_STANDARD 1
430 #endif
431 #if !GNU_STANDARD
432 /* For compatibility with old compress, use program name as an option.
433 * Unless you compile with -DGNU_STANDARD=0, this program will behave as
434 * gzip even if it is invoked under the name gunzip or zcat.
436 * Systems which do not support links can still use -d or -dc.
437 * Ignore an .exe extension for MSDOS, OS/2 and VMS.
439 if (strncmp (program_name, "un", 2) == 0 /* ungzip, uncompress */
440 || strncmp (program_name, "gun", 3) == 0) /* gunzip */
441 decompress = 1;
442 else if (strequ (program_name + 1, "cat") /* zcat, pcat, gcat */
443 || strequ (program_name, "gzcat")) /* gzcat */
444 decompress = to_stdout = 1;
445 #endif
447 z_suffix = Z_SUFFIX;
448 z_len = strlen(z_suffix);
450 while ((optc = getopt_long (argc, argv, "ab:cdfhH?lLmMnNqrS:tvVZ123456789",
451 longopts, (int *)0)) != -1) {
452 switch (optc) {
453 case 'a':
454 ascii = 1; break;
455 case 'b':
456 maxbits = atoi(optarg);
457 for (; *optarg; optarg++)
458 if (! ('0' <= *optarg && *optarg <= '9'))
460 fprintf (stderr, "%s: -b operand is not an integer\n",
461 program_name);
462 try_help ();
464 break;
465 case 'c':
466 to_stdout = 1; break;
467 case 'd':
468 decompress = 1; break;
469 case 'f':
470 force++; break;
471 case 'h': case 'H':
472 help(); do_exit(OK); break;
473 case 'l':
474 list = decompress = to_stdout = 1; break;
475 case 'L':
476 license(); do_exit(OK); break;
477 case 'm': /* undocumented, may change later */
478 no_time = 1; break;
479 case 'M': /* undocumented, may change later */
480 no_time = 0; break;
481 case 'n':
482 no_name = no_time = 1; break;
483 case 'N':
484 no_name = no_time = 0; break;
485 case 'q':
486 quiet = 1; verbose = 0; break;
487 case 'r':
488 #if NO_DIR
489 fprintf (stderr, "%s: -r not supported on this system\n",
490 program_name);
491 try_help ();
492 #else
493 recursive = 1;
494 #endif
495 break;
496 case 'S':
497 #ifdef NO_MULTIPLE_DOTS
498 if (*optarg == '.') optarg++;
499 #endif
500 z_len = strlen(optarg);
501 z_suffix = optarg;
502 break;
503 case 't':
504 test = decompress = to_stdout = 1;
505 break;
506 case 'v':
507 verbose++; quiet = 0; break;
508 case 'V':
509 version(); do_exit(OK); break;
510 case 'Z':
511 #ifdef LZW
512 do_lzw = 1; break;
513 #else
514 fprintf(stderr, "%s: -Z not supported in this version\n",
515 program_name);
516 try_help ();
517 break;
518 #endif
519 case '1': case '2': case '3': case '4':
520 case '5': case '6': case '7': case '8': case '9':
521 level = optc - '0';
522 break;
523 default:
524 /* Error message already emitted by getopt_long. */
525 try_help ();
527 } /* loop on all arguments */
529 /* By default, save name and timestamp on compression but do not
530 * restore them on decompression.
532 if (no_time < 0) no_time = decompress;
533 if (no_name < 0) no_name = decompress;
535 file_count = argc - optind;
537 #if O_BINARY
538 #else
539 if (ascii && !quiet) {
540 fprintf(stderr, "%s: option --ascii ignored on this system\n",
541 program_name);
543 #endif
544 if ((z_len == 0 && !decompress) || z_len > MAX_SUFFIX) {
545 fprintf(stderr, "%s: incorrect suffix '%s'\n",
546 program_name, z_suffix);
547 do_exit(ERROR);
549 if (do_lzw && !decompress) work = lzw;
551 /* Allocate all global buffers (for DYN_ALLOC option) */
552 ALLOC(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
553 ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
554 ALLOC(ush, d_buf, DIST_BUFSIZE);
555 ALLOC(uch, window, 2L*WSIZE);
556 #ifndef MAXSEG_64K
557 ALLOC(ush, tab_prefix, 1L<<BITS);
558 #else
559 ALLOC(ush, tab_prefix0, 1L<<(BITS-1));
560 ALLOC(ush, tab_prefix1, 1L<<(BITS-1));
561 #endif
563 exiting_signal = quiet ? SIGPIPE : 0;
564 install_signal_handlers ();
566 /* And get to work */
567 if (file_count != 0) {
568 if (to_stdout && !test && !list && (!decompress || !ascii)) {
569 SET_BINARY_MODE(fileno(stdout));
571 while (optind < argc) {
572 treat_file(argv[optind++]);
574 } else { /* Standard input */
575 treat_stdin();
577 if (list && !quiet && file_count > 1) {
578 do_list(-1, -1); /* print totals */
580 do_exit(exit_code);
581 return exit_code; /* just to avoid lint warning */
584 /* Return nonzero when at end of file on input. */
585 local int
586 input_eof ()
588 if (!decompress || last_member)
589 return 1;
591 if (inptr == insize)
593 if (insize != INBUFSIZ || fill_inbuf (1) == EOF)
594 return 1;
596 /* Unget the char that fill_inbuf got. */
597 inptr = 0;
600 return 0;
603 /* ========================================================================
604 * Compress or decompress stdin
606 local void treat_stdin()
608 if (!force && !list &&
609 isatty(fileno((FILE *)(decompress ? stdin : stdout)))) {
610 /* Do not send compressed data to the terminal or read it from
611 * the terminal. We get here when user invoked the program
612 * without parameters, so be helpful. According to the GNU standards:
614 * If there is one behavior you think is most useful when the output
615 * is to a terminal, and another that you think is most useful when
616 * the output is a file or a pipe, then it is usually best to make
617 * the default behavior the one that is useful with output to a
618 * terminal, and have an option for the other behavior.
620 * Here we use the --force option to get the other behavior.
622 fprintf(stderr,
623 "%s: compressed data not %s a terminal. Use -f to force %scompression.\n",
624 program_name, decompress ? "read from" : "written to",
625 decompress ? "de" : "");
626 fprintf (stderr, "For help, type: %s -h\n", program_name);
627 do_exit(ERROR);
630 if (decompress || !ascii) {
631 SET_BINARY_MODE(fileno(stdin));
633 if (!test && !list && (!decompress || !ascii)) {
634 SET_BINARY_MODE(fileno(stdout));
636 strcpy(ifname, "stdin");
637 strcpy(ofname, "stdout");
639 /* Get the file's time stamp and size. */
640 if (fstat (fileno (stdin), &istat) != 0)
642 progerror ("standard input");
643 do_exit (ERROR);
645 ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
646 time_stamp.tv_nsec = -1;
647 if (!no_time || list)
648 time_stamp = get_stat_mtime (&istat);
650 clear_bufs(); /* clear input and output buffers */
651 to_stdout = 1;
652 part_nb = 0;
653 ifd = fileno(stdin);
655 if (decompress) {
656 method = get_method(ifd);
657 if (method < 0) {
658 do_exit(exit_code); /* error message already emitted */
661 if (list) {
662 do_list(ifd, method);
663 return;
666 /* Actually do the compression/decompression. Loop over zipped members.
668 for (;;) {
669 if ((*work)(fileno(stdin), fileno(stdout)) != OK) return;
671 if (input_eof ())
672 break;
674 method = get_method(ifd);
675 if (method < 0) return; /* error message already emitted */
676 bytes_out = 0; /* required for length check */
679 if (verbose) {
680 if (test) {
681 fprintf(stderr, " OK\n");
683 } else if (!decompress) {
684 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
685 fprintf(stderr, "\n");
686 #ifdef DISPLAY_STDIN_RATIO
687 } else {
688 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
689 fprintf(stderr, "\n");
690 #endif
695 /* ========================================================================
696 * Compress or decompress the given file
698 local void treat_file(iname)
699 char *iname;
701 /* Accept "-" as synonym for stdin */
702 if (strequ(iname, "-")) {
703 int cflag = to_stdout;
704 treat_stdin();
705 to_stdout = cflag;
706 return;
709 /* Check if the input file is present, set ifname and istat: */
710 ifd = open_input_file (iname, &istat);
711 if (ifd < 0)
712 return;
714 /* If the input name is that of a directory, recurse or ignore: */
715 if (S_ISDIR(istat.st_mode)) {
716 #if ! NO_DIR
717 if (recursive) {
718 treat_dir (ifd, iname);
719 /* Warning: ifname is now garbage */
720 return;
722 #endif
723 close (ifd);
724 WARN ((stderr, "%s: %s is a directory -- ignored\n",
725 program_name, ifname));
726 return;
729 if (! to_stdout)
731 if (! S_ISREG (istat.st_mode))
733 WARN ((stderr,
734 "%s: %s is not a directory or a regular file - ignored\n",
735 program_name, ifname));
736 close (ifd);
737 return;
739 if (istat.st_mode & S_ISUID)
741 WARN ((stderr, "%s: %s is set-user-ID on execution - ignored\n",
742 program_name, ifname));
743 close (ifd);
744 return;
746 if (istat.st_mode & S_ISGID)
748 WARN ((stderr, "%s: %s is set-group-ID on execution - ignored\n",
749 program_name, ifname));
750 close (ifd);
751 return;
754 if (! force)
756 if (istat.st_mode & S_ISVTX)
758 WARN ((stderr,
759 "%s: %s has the sticky bit set - file ignored\n",
760 program_name, ifname));
761 close (ifd);
762 return;
764 if (2 <= istat.st_nlink)
766 WARN ((stderr, "%s: %s has %lu other link%c -- unchanged\n",
767 program_name, ifname,
768 (unsigned long int) istat.st_nlink - 1,
769 istat.st_nlink == 2 ? ' ' : 's'));
770 close (ifd);
771 return;
776 ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
777 time_stamp.tv_nsec = -1;
778 if (!no_time || list)
779 time_stamp = get_stat_mtime (&istat);
781 /* Generate output file name. For -r and (-t or -l), skip files
782 * without a valid gzip suffix (check done in make_ofname).
784 if (to_stdout && !list && !test) {
785 strcpy(ofname, "stdout");
787 } else if (make_ofname() != OK) {
788 close (ifd);
789 return;
792 clear_bufs(); /* clear input and output buffers */
793 part_nb = 0;
795 if (decompress) {
796 method = get_method(ifd); /* updates ofname if original given */
797 if (method < 0) {
798 close(ifd);
799 return; /* error message already emitted */
802 if (list) {
803 do_list(ifd, method);
804 if (close (ifd) != 0)
805 read_error ();
806 return;
809 /* If compressing to a file, check if ofname is not ambiguous
810 * because the operating system truncates names. Otherwise, generate
811 * a new ofname and save the original name in the compressed file.
813 if (to_stdout) {
814 ofd = fileno(stdout);
815 /* Keep remove_ofname_fd negative. */
816 } else {
817 if (create_outfile() != OK) return;
819 if (!decompress && save_orig_name && !verbose && !quiet) {
820 fprintf(stderr, "%s: %s compressed to %s\n",
821 program_name, ifname, ofname);
824 /* Keep the name even if not truncated except with --no-name: */
825 if (!save_orig_name) save_orig_name = !no_name;
827 if (verbose) {
828 fprintf(stderr, "%s:\t", ifname);
831 /* Actually do the compression/decompression. Loop over zipped members.
833 for (;;) {
834 if ((*work)(ifd, ofd) != OK) {
835 method = -1; /* force cleanup */
836 break;
839 if (input_eof ())
840 break;
842 method = get_method(ifd);
843 if (method < 0) break; /* error message already emitted */
844 bytes_out = 0; /* required for length check */
847 if (close (ifd) != 0)
848 read_error ();
850 if (!to_stdout)
852 sigset_t oldset;
853 int unlink_errno;
855 copy_stat (&istat);
856 if (close (ofd) != 0)
857 write_error ();
859 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
860 remove_ofname_fd = -1;
861 unlink_errno = xunlink (ifname) == 0 ? 0 : errno;
862 sigprocmask (SIG_SETMASK, &oldset, NULL);
864 if (unlink_errno)
866 WARN ((stderr, "%s: ", program_name));
867 if (!quiet)
869 errno = unlink_errno;
870 perror (ifname);
875 if (method == -1) {
876 if (!to_stdout)
877 remove_output_file ();
878 return;
881 /* Display statistics */
882 if(verbose) {
883 if (test) {
884 fprintf(stderr, " OK");
885 } else if (decompress) {
886 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
887 } else {
888 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
890 if (!test && !to_stdout) {
891 fprintf(stderr, " -- replaced with %s", ofname);
893 fprintf(stderr, "\n");
897 /* ========================================================================
898 * Create the output file. Return OK or ERROR.
899 * Try several times if necessary to avoid truncating the z_suffix. For
900 * example, do not create a compressed file of name "1234567890123."
901 * Sets save_orig_name to true if the file name has been truncated.
902 * IN assertions: the input file has already been open (ifd is set) and
903 * ofname has already been updated if there was an original name.
904 * OUT assertions: ifd and ofd are closed in case of error.
906 local int create_outfile()
908 int name_shortened = 0;
909 int flags = (O_WRONLY | O_CREAT | O_EXCL
910 | (ascii && decompress ? 0 : O_BINARY));
912 for (;;)
914 int open_errno;
915 sigset_t oldset;
917 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
918 remove_ofname_fd = ofd = OPEN (ofname, flags, RW_USER);
919 open_errno = errno;
920 sigprocmask (SIG_SETMASK, &oldset, NULL);
922 if (0 <= ofd)
923 break;
925 switch (open_errno)
927 #ifdef ENAMETOOLONG
928 case ENAMETOOLONG:
929 shorten_name (ofname);
930 name_shortened = 1;
931 break;
932 #endif
934 case EEXIST:
935 if (check_ofname () != OK)
937 close (ifd);
938 return ERROR;
940 break;
942 default:
943 progerror (ofname);
944 close (ifd);
945 return ERROR;
949 if (name_shortened && decompress)
951 /* name might be too long if an original name was saved */
952 WARN ((stderr, "%s: %s: warning, name truncated\n",
953 program_name, ofname));
956 return OK;
959 /* ========================================================================
960 * Return a pointer to the 'z' suffix of a file name, or NULL. For all
961 * systems, ".gz", ".z", ".Z", ".taz", ".tgz", "-gz", "-z" and "_z" are
962 * accepted suffixes, in addition to the value of the --suffix option.
963 * ".tgz" is a useful convention for tar.z files on systems limited
964 * to 3 characters extensions. On such systems, ".?z" and ".??z" are
965 * also accepted suffixes. For Unix, we do not want to accept any
966 * .??z suffix as indicating a compressed file; some people use .xyz
967 * to denote volume data.
968 * On systems allowing multiple versions of the same file (such as VMS),
969 * this function removes any version suffix in the given name.
971 local char *get_suffix(name)
972 char *name;
974 int nlen, slen;
975 char suffix[MAX_SUFFIX+3]; /* last chars of name, forced to lower case */
976 static char *known_suffixes[] =
977 {NULL, ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z",
978 #ifdef MAX_EXT_CHARS
979 "z",
980 #endif
981 NULL};
982 char **suf = known_suffixes;
984 *suf = z_suffix;
985 if (strequ(z_suffix, "z")) suf++; /* check long suffixes first */
987 #ifdef SUFFIX_SEP
988 /* strip a version number from the file name */
990 char *v = strrchr(name, SUFFIX_SEP);
991 if (v != NULL) *v = '\0';
993 #endif
994 nlen = strlen(name);
995 if (nlen <= MAX_SUFFIX+2) {
996 strcpy(suffix, name);
997 } else {
998 strcpy(suffix, name+nlen-MAX_SUFFIX-2);
1000 strlwr(suffix);
1001 slen = strlen(suffix);
1002 do {
1003 int s = strlen(*suf);
1004 if (slen > s && suffix[slen-s-1] != PATH_SEP
1005 && strequ(suffix + slen - s, *suf)) {
1006 return name+nlen-s;
1008 } while (*++suf != NULL);
1010 return NULL;
1014 /* Open file NAME with the given flags and mode and store its status
1015 into *ST. Return a file descriptor to the newly opened file, or -1
1016 (setting errno) on failure. */
1017 static int
1018 open_and_stat (char *name, int flags, mode_t mode, struct stat *st)
1020 int fd;
1022 /* Refuse to follow symbolic links unless -c or -f. */
1023 if (!to_stdout && !force)
1025 if (HAVE_WORKING_O_NOFOLLOW)
1026 flags |= O_NOFOLLOW;
1027 else
1029 #if HAVE_LSTAT || defined lstat
1030 if (lstat (name, st) != 0)
1031 return -1;
1032 else if (S_ISLNK (st->st_mode))
1034 errno = ELOOP;
1035 return -1;
1037 #endif
1041 fd = OPEN (name, flags, mode);
1042 if (0 <= fd && fstat (fd, st) != 0)
1044 int e = errno;
1045 close (fd);
1046 errno = e;
1047 return -1;
1049 return fd;
1053 /* ========================================================================
1054 * Set ifname to the input file name (with a suffix appended if necessary)
1055 * and istat to its stats. For decompression, if no file exists with the
1056 * original name, try adding successively z_suffix, .gz, .z, -z and .Z.
1057 * For MSDOS, we try only z_suffix and z.
1058 * Return an open file descriptor or -1.
1060 static int
1061 open_input_file (iname, sbuf)
1062 char *iname;
1063 struct stat *sbuf;
1065 int ilen; /* strlen(ifname) */
1066 int z_suffix_errno = 0;
1067 static char *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL};
1068 char **suf = suffixes;
1069 char *s;
1070 #ifdef NO_MULTIPLE_DOTS
1071 char *dot; /* pointer to ifname extension, or NULL */
1072 #endif
1073 int fd;
1074 int open_flags = (O_RDONLY | O_NONBLOCK | O_NOCTTY
1075 | (ascii && !decompress ? 0 : O_BINARY));
1077 *suf = z_suffix;
1079 if (sizeof ifname - 1 <= strlen (iname))
1080 goto name_too_long;
1082 strcpy(ifname, iname);
1084 /* If input file exists, return OK. */
1085 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1086 if (0 <= fd)
1087 return fd;
1089 if (!decompress || errno != ENOENT) {
1090 progerror(ifname);
1091 return -1;
1093 /* file.ext doesn't exist, try adding a suffix (after removing any
1094 * version number for VMS).
1096 s = get_suffix(ifname);
1097 if (s != NULL) {
1098 progerror(ifname); /* ifname already has z suffix and does not exist */
1099 return -1;
1101 #ifdef NO_MULTIPLE_DOTS
1102 dot = strrchr(ifname, '.');
1103 if (dot == NULL) {
1104 strcat(ifname, ".");
1105 dot = strrchr(ifname, '.');
1107 #endif
1108 ilen = strlen(ifname);
1109 if (strequ(z_suffix, ".gz")) suf++;
1111 /* Search for all suffixes */
1112 do {
1113 char *s0 = s = *suf;
1114 strcpy (ifname, iname);
1115 #ifdef NO_MULTIPLE_DOTS
1116 if (*s == '.') s++;
1117 if (*dot == '\0') strcpy (dot, ".");
1118 #endif
1119 #ifdef MAX_EXT_CHARS
1120 if (MAX_EXT_CHARS < strlen (s) + strlen (dot + 1))
1121 dot[MAX_EXT_CHARS + 1 - strlen (s)] = '\0';
1122 #endif
1123 if (sizeof ifname <= ilen + strlen (s))
1124 goto name_too_long;
1125 strcat(ifname, s);
1126 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1127 if (0 <= fd)
1128 return fd;
1129 if (errno != ENOENT)
1131 progerror (ifname);
1132 return -1;
1134 if (strequ (s0, z_suffix))
1135 z_suffix_errno = errno;
1136 } while (*++suf != NULL);
1138 /* No suffix found, complain using z_suffix: */
1139 strcpy(ifname, iname);
1140 #ifdef NO_MULTIPLE_DOTS
1141 if (*dot == '\0') strcpy(dot, ".");
1142 #endif
1143 #ifdef MAX_EXT_CHARS
1144 if (MAX_EXT_CHARS < z_len + strlen (dot + 1))
1145 dot[MAX_EXT_CHARS + 1 - z_len] = '\0';
1146 #endif
1147 strcat(ifname, z_suffix);
1148 errno = z_suffix_errno;
1149 progerror(ifname);
1150 return -1;
1152 name_too_long:
1153 fprintf (stderr, "%s: %s: file name too long\n", program_name, iname);
1154 exit_code = ERROR;
1155 return -1;
1158 /* ========================================================================
1159 * Generate ofname given ifname. Return OK, or WARNING if file must be skipped.
1160 * Sets save_orig_name to true if the file name has been truncated.
1162 local int make_ofname()
1164 char *suff; /* ofname z suffix */
1166 strcpy(ofname, ifname);
1167 /* strip a version number if any and get the gzip suffix if present: */
1168 suff = get_suffix(ofname);
1170 if (decompress) {
1171 if (suff == NULL) {
1172 /* With -t or -l, try all files (even without .gz suffix)
1173 * except with -r (behave as with just -dr).
1175 if (!recursive && (list || test)) return OK;
1177 /* Avoid annoying messages with -r */
1178 if (verbose || (!recursive && !quiet)) {
1179 WARN((stderr,"%s: %s: unknown suffix -- ignored\n",
1180 program_name, ifname));
1182 return WARNING;
1184 /* Make a special case for .tgz and .taz: */
1185 strlwr(suff);
1186 if (strequ(suff, ".tgz") || strequ(suff, ".taz")) {
1187 strcpy(suff, ".tar");
1188 } else {
1189 *suff = '\0'; /* strip the z suffix */
1191 /* ofname might be changed later if infile contains an original name */
1193 } else if (suff && ! force) {
1194 /* Avoid annoying messages with -r (see treat_dir()) */
1195 if (verbose || (!recursive && !quiet)) {
1196 /* Don't use WARN, as it affects exit status. */
1197 fprintf (stderr, "%s: %s already has %s suffix -- unchanged\n",
1198 program_name, ifname, suff);
1200 return WARNING;
1201 } else {
1202 save_orig_name = 0;
1204 #ifdef NO_MULTIPLE_DOTS
1205 suff = strrchr(ofname, '.');
1206 if (suff == NULL) {
1207 if (sizeof ofname <= strlen (ofname) + 1)
1208 goto name_too_long;
1209 strcat(ofname, ".");
1210 # ifdef MAX_EXT_CHARS
1211 if (strequ(z_suffix, "z")) {
1212 if (sizeof ofname <= strlen (ofname) + 2)
1213 goto name_too_long;
1214 strcat(ofname, "gz"); /* enough room */
1215 return OK;
1217 /* On the Atari and some versions of MSDOS,
1218 * ENAMETOOLONG does not work correctly. So we
1219 * must truncate here.
1221 } else if (strlen(suff)-1 + z_len > MAX_SUFFIX) {
1222 suff[MAX_SUFFIX+1-z_len] = '\0';
1223 save_orig_name = 1;
1224 # endif
1226 #endif /* NO_MULTIPLE_DOTS */
1227 if (sizeof ofname <= strlen (ofname) + z_len)
1228 goto name_too_long;
1229 strcat(ofname, z_suffix);
1231 } /* decompress ? */
1232 return OK;
1234 name_too_long:
1235 WARN ((stderr, "%s: %s: file name too long\n", program_name, ifname));
1236 return WARNING;
1240 /* ========================================================================
1241 * Check the magic number of the input file and update ofname if an
1242 * original name was given and to_stdout is not set.
1243 * Return the compression method, -1 for error, -2 for warning.
1244 * Set inptr to the offset of the next byte to be processed.
1245 * Updates time_stamp if there is one and --no-time is not used.
1246 * This function may be called repeatedly for an input file consisting
1247 * of several contiguous gzip'ed members.
1248 * IN assertions: there is at least one remaining compressed member.
1249 * If the member is a zip file, it must be the only one.
1251 local int get_method(in)
1252 int in; /* input file descriptor */
1254 uch flags; /* compression flags */
1255 char magic[2]; /* magic header */
1256 int imagic1; /* like magic[1], but can represent EOF */
1257 ulg stamp; /* time stamp */
1259 /* If --force and --stdout, zcat == cat, so do not complain about
1260 * premature end of file: use try_byte instead of get_byte.
1262 if (force && to_stdout) {
1263 magic[0] = (char)try_byte();
1264 imagic1 = try_byte ();
1265 magic[1] = (char) imagic1;
1266 /* If try_byte returned EOF, magic[1] == (char) EOF. */
1267 } else {
1268 magic[0] = (char)get_byte();
1269 magic[1] = (char)get_byte();
1270 imagic1 = 0; /* avoid lint warning */
1272 method = -1; /* unknown yet */
1273 part_nb++; /* number of parts in gzip file */
1274 header_bytes = 0;
1275 last_member = RECORD_IO;
1276 /* assume multiple members in gzip file except for record oriented I/O */
1278 if (memcmp(magic, GZIP_MAGIC, 2) == 0
1279 || memcmp(magic, OLD_GZIP_MAGIC, 2) == 0) {
1281 method = (int)get_byte();
1282 if (method != DEFLATED) {
1283 fprintf(stderr,
1284 "%s: %s: unknown method %d -- not supported\n",
1285 program_name, ifname, method);
1286 exit_code = ERROR;
1287 return -1;
1289 work = unzip;
1290 flags = (uch)get_byte();
1292 if ((flags & ENCRYPTED) != 0) {
1293 fprintf(stderr,
1294 "%s: %s is encrypted -- not supported\n",
1295 program_name, ifname);
1296 exit_code = ERROR;
1297 return -1;
1299 if ((flags & CONTINUATION) != 0) {
1300 fprintf(stderr,
1301 "%s: %s is a multi-part gzip file -- not supported\n",
1302 program_name, ifname);
1303 exit_code = ERROR;
1304 if (force <= 1) return -1;
1306 if ((flags & RESERVED) != 0) {
1307 fprintf(stderr,
1308 "%s: %s has flags 0x%x -- not supported\n",
1309 program_name, ifname, flags);
1310 exit_code = ERROR;
1311 if (force <= 1) return -1;
1313 stamp = (ulg)get_byte();
1314 stamp |= ((ulg)get_byte()) << 8;
1315 stamp |= ((ulg)get_byte()) << 16;
1316 stamp |= ((ulg)get_byte()) << 24;
1317 if (stamp != 0 && !no_time)
1319 time_stamp.tv_sec = stamp;
1320 time_stamp.tv_nsec = 0;
1323 (void)get_byte(); /* Ignore extra flags for the moment */
1324 (void)get_byte(); /* Ignore OS type for the moment */
1326 if ((flags & CONTINUATION) != 0) {
1327 unsigned part = (unsigned)get_byte();
1328 part |= ((unsigned)get_byte())<<8;
1329 if (verbose) {
1330 fprintf(stderr,"%s: %s: part number %u\n",
1331 program_name, ifname, part);
1334 if ((flags & EXTRA_FIELD) != 0) {
1335 unsigned len = (unsigned)get_byte();
1336 len |= ((unsigned)get_byte())<<8;
1337 if (verbose) {
1338 fprintf(stderr,"%s: %s: extra field of %u bytes ignored\n",
1339 program_name, ifname, len);
1341 while (len--) (void)get_byte();
1344 /* Get original file name if it was truncated */
1345 if ((flags & ORIG_NAME) != 0) {
1346 if (no_name || (to_stdout && !list) || part_nb > 1) {
1347 /* Discard the old name */
1348 char c; /* dummy used for NeXTstep 3.0 cc optimizer bug */
1349 do {c=get_byte();} while (c != 0);
1350 } else {
1351 /* Copy the base name. Keep a directory prefix intact. */
1352 char *p = gzip_base_name (ofname);
1353 char *base = p;
1354 for (;;) {
1355 *p = (char)get_char();
1356 if (*p++ == '\0') break;
1357 if (p >= ofname+sizeof(ofname)) {
1358 gzip_error ("corrupted input -- file name too large");
1361 p = gzip_base_name (base);
1362 memmove (base, p, strlen (p) + 1);
1363 /* If necessary, adapt the name to local OS conventions: */
1364 if (!list) {
1365 MAKE_LEGAL_NAME(base);
1366 if (base) list=0; /* avoid warning about unused variable */
1368 } /* no_name || to_stdout */
1369 } /* ORIG_NAME */
1371 /* Discard file comment if any */
1372 if ((flags & COMMENT) != 0) {
1373 while (get_char() != 0) /* null */ ;
1375 if (part_nb == 1) {
1376 header_bytes = inptr + 2*sizeof(long); /* include crc and size */
1379 } else if (memcmp(magic, PKZIP_MAGIC, 2) == 0 && inptr == 2
1380 && memcmp((char*)inbuf, PKZIP_MAGIC, 4) == 0) {
1381 /* To simplify the code, we support a zip file when alone only.
1382 * We are thus guaranteed that the entire local header fits in inbuf.
1384 inptr = 0;
1385 work = unzip;
1386 if (check_zipfile(in) != OK) return -1;
1387 /* check_zipfile may get ofname from the local header */
1388 last_member = 1;
1390 } else if (memcmp(magic, PACK_MAGIC, 2) == 0) {
1391 work = unpack;
1392 method = PACKED;
1394 } else if (memcmp(magic, LZW_MAGIC, 2) == 0) {
1395 work = unlzw;
1396 method = COMPRESSED;
1397 last_member = 1;
1399 } else if (memcmp(magic, LZH_MAGIC, 2) == 0) {
1400 work = unlzh;
1401 method = LZHED;
1402 last_member = 1;
1404 } else if (force && to_stdout && !list) { /* pass input unchanged */
1405 method = STORED;
1406 work = copy;
1407 inptr = 0;
1408 last_member = 1;
1410 if (method >= 0) return method;
1412 if (part_nb == 1) {
1413 fprintf (stderr, "\n%s: %s: not in gzip format\n",
1414 program_name, ifname);
1415 exit_code = ERROR;
1416 return -1;
1417 } else {
1418 if (magic[0] == 0)
1420 int inbyte;
1421 for (inbyte = imagic1; inbyte == 0; inbyte = try_byte ())
1422 continue;
1423 if (inbyte == EOF)
1425 if (verbose)
1426 WARN ((stderr, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1427 program_name, ifname));
1428 return -3;
1432 WARN((stderr, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1433 program_name, ifname));
1434 return -2;
1438 /* ========================================================================
1439 * Display the characteristics of the compressed file.
1440 * If the given method is < 0, display the accumulated totals.
1441 * IN assertions: time_stamp, header_bytes and ifile_size are initialized.
1443 local void do_list(ifd, method)
1444 int ifd; /* input file descriptor */
1445 int method; /* compression method */
1447 ulg crc; /* original crc */
1448 static int first_time = 1;
1449 static char* methods[MAX_METHODS] = {
1450 "store", /* 0 */
1451 "compr", /* 1 */
1452 "pack ", /* 2 */
1453 "lzh ", /* 3 */
1454 "", "", "", "", /* 4 to 7 reserved */
1455 "defla"}; /* 8 */
1456 int positive_off_t_width = 1;
1457 off_t o;
1459 for (o = OFF_T_MAX; 9 < o; o /= 10) {
1460 positive_off_t_width++;
1463 if (first_time && method >= 0) {
1464 first_time = 0;
1465 if (verbose) {
1466 printf("method crc date time ");
1468 if (!quiet) {
1469 printf("%*.*s %*.*s ratio uncompressed_name\n",
1470 positive_off_t_width, positive_off_t_width, "compressed",
1471 positive_off_t_width, positive_off_t_width, "uncompressed");
1473 } else if (method < 0) {
1474 if (total_in <= 0 || total_out <= 0) return;
1475 if (verbose) {
1476 printf(" ");
1478 if (verbose || !quiet) {
1479 fprint_off(stdout, total_in, positive_off_t_width);
1480 printf(" ");
1481 fprint_off(stdout, total_out, positive_off_t_width);
1482 printf(" ");
1484 display_ratio(total_out-(total_in-header_bytes), total_out, stdout);
1485 /* header_bytes is not meaningful but used to ensure the same
1486 * ratio if there is a single file.
1488 printf(" (totals)\n");
1489 return;
1491 crc = (ulg)~0; /* unknown */
1492 bytes_out = -1L;
1493 bytes_in = ifile_size;
1495 #if RECORD_IO == 0
1496 if (method == DEFLATED && !last_member) {
1497 /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files.
1498 * If the lseek fails, we could use read() to get to the end, but
1499 * --list is used to get quick results.
1500 * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if
1501 * you are not concerned about speed.
1503 bytes_in = lseek(ifd, (off_t)(-8), SEEK_END);
1504 if (bytes_in != -1L) {
1505 uch buf[8];
1506 bytes_in += 8L;
1507 if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) {
1508 read_error();
1510 crc = LG(buf);
1511 bytes_out = LG(buf+4);
1514 #endif /* RECORD_IO */
1515 if (verbose)
1517 struct tm *tm = localtime (&time_stamp.tv_sec);
1518 printf ("%5s %08lx ", methods[method], crc);
1519 if (tm)
1520 printf ("%s%3d %02d:%02d ",
1521 ("Jan\0Feb\0Mar\0Apr\0May\0Jun\0Jul\0Aug\0Sep\0Oct\0Nov\0Dec"
1522 + 4 * tm->tm_mon),
1523 tm->tm_mday, tm->tm_hour, tm->tm_min);
1524 else
1525 printf ("??? ?? ??:?? ");
1527 fprint_off(stdout, bytes_in, positive_off_t_width);
1528 printf(" ");
1529 fprint_off(stdout, bytes_out, positive_off_t_width);
1530 printf(" ");
1531 if (bytes_in == -1L) {
1532 total_in = -1L;
1533 bytes_in = bytes_out = header_bytes = 0;
1534 } else if (total_in >= 0) {
1535 total_in += bytes_in;
1537 if (bytes_out == -1L) {
1538 total_out = -1L;
1539 bytes_in = bytes_out = header_bytes = 0;
1540 } else if (total_out >= 0) {
1541 total_out += bytes_out;
1543 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out, stdout);
1544 printf(" %s\n", ofname);
1547 /* ========================================================================
1548 * Shorten the given name by one character, or replace a .tar extension
1549 * with .tgz. Truncate the last part of the name which is longer than
1550 * MIN_PART characters: 1234.678.012.gz -> 123.678.012.gz. If the name
1551 * has only parts shorter than MIN_PART truncate the longest part.
1552 * For decompression, just remove the last character of the name.
1554 * IN assertion: for compression, the suffix of the given name is z_suffix.
1556 local void shorten_name(name)
1557 char *name;
1559 int len; /* length of name without z_suffix */
1560 char *trunc = NULL; /* character to be truncated */
1561 int plen; /* current part length */
1562 int min_part = MIN_PART; /* current minimum part length */
1563 char *p;
1565 len = strlen(name);
1566 if (decompress) {
1567 if (len <= 1)
1568 gzip_error ("name too short");
1569 name[len-1] = '\0';
1570 return;
1572 p = get_suffix(name);
1573 if (! p)
1574 gzip_error ("can't recover suffix\n");
1575 *p = '\0';
1576 save_orig_name = 1;
1578 /* compress 1234567890.tar to 1234567890.tgz */
1579 if (len > 4 && strequ(p-4, ".tar")) {
1580 strcpy(p-4, ".tgz");
1581 return;
1583 /* Try keeping short extensions intact:
1584 * 1234.678.012.gz -> 123.678.012.gz
1586 do {
1587 p = strrchr(name, PATH_SEP);
1588 p = p ? p+1 : name;
1589 while (*p) {
1590 plen = strcspn(p, PART_SEP);
1591 p += plen;
1592 if (plen > min_part) trunc = p-1;
1593 if (*p) p++;
1595 } while (trunc == NULL && --min_part != 0);
1597 if (trunc != NULL) {
1598 do {
1599 trunc[0] = trunc[1];
1600 } while (*trunc++);
1601 trunc--;
1602 } else {
1603 trunc = strrchr(name, PART_SEP[0]);
1604 if (!trunc)
1605 gzip_error ("internal error in shorten_name");
1606 if (trunc[1] == '\0') trunc--; /* force truncation */
1608 strcpy(trunc, z_suffix);
1611 /* ========================================================================
1612 * The compressed file already exists, so ask for confirmation.
1613 * Return ERROR if the file must be skipped.
1615 local int check_ofname()
1617 /* Ask permission to overwrite the existing file */
1618 if (!force) {
1619 int ok = 0;
1620 fprintf (stderr, "%s: %s already exists;", program_name, ofname);
1621 if (foreground && isatty(fileno(stdin))) {
1622 fprintf(stderr, " do you wish to overwrite (y or n)? ");
1623 fflush(stderr);
1624 ok = yesno();
1626 if (!ok) {
1627 fprintf(stderr, "\tnot overwritten\n");
1628 if (exit_code == OK) exit_code = WARNING;
1629 return ERROR;
1632 if (xunlink (ofname)) {
1633 progerror(ofname);
1634 return ERROR;
1636 return OK;
1640 /* ========================================================================
1641 * Copy modes, times, ownership from input file to output file.
1642 * IN assertion: to_stdout is false.
1644 local void copy_stat(ifstat)
1645 struct stat *ifstat;
1647 mode_t mode = ifstat->st_mode & S_IRWXUGO;
1648 int r;
1650 #ifndef NO_UTIME
1651 struct timespec timespec[2];
1652 timespec[0] = get_stat_atime (ifstat);
1653 timespec[1] = get_stat_mtime (ifstat);
1655 if (decompress && 0 <= time_stamp.tv_nsec
1656 && ! (timespec[1].tv_sec == time_stamp.tv_sec
1657 && timespec[1].tv_nsec == time_stamp.tv_nsec))
1659 timespec[1] = time_stamp;
1660 if (verbose > 1) {
1661 fprintf(stderr, "%s: time stamp restored\n", ofname);
1665 if (gl_futimens (ofd, ofname, timespec) != 0)
1667 int e = errno;
1668 WARN ((stderr, "%s: ", program_name));
1669 if (!quiet)
1671 errno = e;
1672 perror (ofname);
1675 #endif
1677 #ifndef NO_CHOWN
1678 # if HAVE_FCHOWN
1679 fchown (ofd, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */
1680 # elif HAVE_CHOWN
1681 chown(ofname, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */
1682 # endif
1683 #endif
1685 /* Copy the protection modes */
1686 #if HAVE_FCHMOD
1687 r = fchmod (ofd, mode);
1688 #else
1689 r = chmod (ofname, mode);
1690 #endif
1691 if (r != 0) {
1692 int e = errno;
1693 WARN ((stderr, "%s: ", program_name));
1694 if (!quiet) {
1695 errno = e;
1696 perror(ofname);
1701 #if ! NO_DIR
1703 /* ========================================================================
1704 * Recurse through the given directory. This code is taken from ncompress.
1706 local void treat_dir (fd, dir)
1707 int fd;
1708 char *dir;
1710 struct dirent *dp;
1711 DIR *dirp;
1712 char nbuf[MAX_PATH_LEN];
1713 int len;
1715 #if HAVE_FDOPENDIR
1716 dirp = fdopendir (fd);
1717 #else
1718 close (fd);
1719 dirp = opendir(dir);
1720 #endif
1722 if (dirp == NULL) {
1723 progerror(dir);
1724 #if HAVE_FDOPENDIR
1725 close (fd);
1726 #endif
1727 return ;
1730 ** WARNING: the following algorithm could occasionally cause
1731 ** compress to produce error warnings of the form "<filename>.gz
1732 ** already has .gz suffix - ignored". This occurs when the
1733 ** .gz output file is inserted into the directory below
1734 ** readdir's current pointer.
1735 ** These warnings are harmless but annoying, so they are suppressed
1736 ** with option -r (except when -v is on). An alternative
1737 ** to allowing this would be to store the entire directory
1738 ** list in memory, then compress the entries in the stored
1739 ** list. Given the depth-first recursive algorithm used here,
1740 ** this could use up a tremendous amount of memory. I don't
1741 ** think it's worth it. -- Dave Mack
1742 ** (An other alternative might be two passes to avoid depth-first.)
1745 while ((errno = 0, dp = readdir(dirp)) != NULL) {
1747 if (strequ(dp->d_name,".") || strequ(dp->d_name,"..")) {
1748 continue;
1750 len = strlen(dir);
1751 if (len + _D_EXACT_NAMLEN (dp) + 1 < MAX_PATH_LEN - 1) {
1752 strcpy(nbuf,dir);
1753 if (len != 0 /* dir = "" means current dir on Amiga */
1754 #ifdef PATH_SEP2
1755 && dir[len-1] != PATH_SEP2
1756 #endif
1757 #ifdef PATH_SEP3
1758 && dir[len-1] != PATH_SEP3
1759 #endif
1761 nbuf[len++] = PATH_SEP;
1763 strcpy(nbuf+len, dp->d_name);
1764 treat_file(nbuf);
1765 } else {
1766 fprintf(stderr,"%s: %s/%s: pathname too long\n",
1767 program_name, dir, dp->d_name);
1768 exit_code = ERROR;
1771 if (errno != 0)
1772 progerror(dir);
1773 if (CLOSEDIR(dirp) != 0)
1774 progerror(dir);
1776 #endif /* ! NO_DIR */
1778 /* Make sure signals get handled properly. */
1780 static void
1781 install_signal_handlers ()
1783 int nsigs = sizeof handled_sig / sizeof handled_sig[0];
1784 int i;
1786 #if SA_NOCLDSTOP
1787 struct sigaction act;
1789 sigemptyset (&caught_signals);
1790 for (i = 0; i < nsigs; i++)
1792 sigaction (handled_sig[i], NULL, &act);
1793 if (act.sa_handler != SIG_IGN)
1794 sigaddset (&caught_signals, handled_sig[i]);
1797 act.sa_handler = abort_gzip_signal;
1798 act.sa_mask = caught_signals;
1799 act.sa_flags = 0;
1801 for (i = 0; i < nsigs; i++)
1802 if (sigismember (&caught_signals, handled_sig[i]))
1804 if (i == 0)
1805 foreground = 1;
1806 sigaction (handled_sig[i], &act, NULL);
1808 #else
1809 for (i = 0; i < nsigs; i++)
1810 if (signal (handled_sig[i], SIG_IGN) != SIG_IGN)
1812 if (i == 0)
1813 foreground = 1;
1814 signal (handled_sig[i], abort_gzip_signal);
1815 siginterrupt (handled_sig[i], 1);
1817 #endif
1820 /* ========================================================================
1821 * Free all dynamically allocated variables and exit with the given code.
1823 local void do_exit(exitcode)
1824 int exitcode;
1826 static int in_exit = 0;
1828 if (in_exit) exit(exitcode);
1829 in_exit = 1;
1830 free(env);
1831 env = NULL;
1832 free(args);
1833 args = NULL;
1834 FREE(inbuf);
1835 FREE(outbuf);
1836 FREE(d_buf);
1837 FREE(window);
1838 #ifndef MAXSEG_64K
1839 FREE(tab_prefix);
1840 #else
1841 FREE(tab_prefix0);
1842 FREE(tab_prefix1);
1843 #endif
1844 exit(exitcode);
1847 /* ========================================================================
1848 * Close and unlink the output file.
1850 static void
1851 remove_output_file ()
1853 int fd;
1854 sigset_t oldset;
1856 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1857 fd = remove_ofname_fd;
1858 if (0 <= fd)
1860 remove_ofname_fd = -1;
1861 close (fd);
1862 xunlink (ofname);
1864 sigprocmask (SIG_SETMASK, &oldset, NULL);
1867 /* ========================================================================
1868 * Error handler.
1870 void
1871 abort_gzip ()
1873 remove_output_file ();
1874 do_exit(ERROR);
1877 /* ========================================================================
1878 * Signal handler.
1880 static RETSIGTYPE
1881 abort_gzip_signal (sig)
1882 int sig;
1884 if (! SA_NOCLDSTOP)
1885 signal (sig, SIG_IGN);
1886 remove_output_file ();
1887 if (sig == exiting_signal)
1888 _exit (WARNING);
1889 signal (sig, SIG_DFL);
1890 raise (sig);