maint: update existing copyright year lists to include 2009
[gzip.git] / gzip.c
blobfc2e7dcfa51c4a5013be40c6a52fac508cf674b0
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;
654 if (decompress) {
655 method = get_method(ifd);
656 if (method < 0) {
657 do_exit(exit_code); /* error message already emitted */
660 if (list) {
661 do_list(ifd, method);
662 return;
665 /* Actually do the compression/decompression. Loop over zipped members.
667 for (;;) {
668 if ((*work)(fileno(stdin), fileno(stdout)) != OK) return;
670 if (input_eof ())
671 break;
673 method = get_method(ifd);
674 if (method < 0) return; /* error message already emitted */
675 bytes_out = 0; /* required for length check */
678 if (verbose) {
679 if (test) {
680 fprintf(stderr, " OK\n");
682 } else if (!decompress) {
683 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
684 fprintf(stderr, "\n");
685 #ifdef DISPLAY_STDIN_RATIO
686 } else {
687 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
688 fprintf(stderr, "\n");
689 #endif
694 /* ========================================================================
695 * Compress or decompress the given file
697 local void treat_file(iname)
698 char *iname;
700 /* Accept "-" as synonym for stdin */
701 if (strequ(iname, "-")) {
702 int cflag = to_stdout;
703 treat_stdin();
704 to_stdout = cflag;
705 return;
708 /* Check if the input file is present, set ifname and istat: */
709 ifd = open_input_file (iname, &istat);
710 if (ifd < 0)
711 return;
713 /* If the input name is that of a directory, recurse or ignore: */
714 if (S_ISDIR(istat.st_mode)) {
715 #if ! NO_DIR
716 if (recursive) {
717 treat_dir (ifd, iname);
718 /* Warning: ifname is now garbage */
719 return;
721 #endif
722 close (ifd);
723 WARN ((stderr, "%s: %s is a directory -- ignored\n",
724 program_name, ifname));
725 return;
728 if (! to_stdout)
730 if (! S_ISREG (istat.st_mode))
732 WARN ((stderr,
733 "%s: %s is not a directory or a regular file - ignored\n",
734 program_name, ifname));
735 close (ifd);
736 return;
738 if (istat.st_mode & S_ISUID)
740 WARN ((stderr, "%s: %s is set-user-ID on execution - ignored\n",
741 program_name, ifname));
742 close (ifd);
743 return;
745 if (istat.st_mode & S_ISGID)
747 WARN ((stderr, "%s: %s is set-group-ID on execution - ignored\n",
748 program_name, ifname));
749 close (ifd);
750 return;
753 if (! force)
755 if (istat.st_mode & S_ISVTX)
757 WARN ((stderr,
758 "%s: %s has the sticky bit set - file ignored\n",
759 program_name, ifname));
760 close (ifd);
761 return;
763 if (2 <= istat.st_nlink)
765 WARN ((stderr, "%s: %s has %lu other link%c -- unchanged\n",
766 program_name, ifname,
767 (unsigned long int) istat.st_nlink - 1,
768 istat.st_nlink == 2 ? ' ' : 's'));
769 close (ifd);
770 return;
775 ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
776 time_stamp.tv_nsec = -1;
777 if (!no_time || list)
778 time_stamp = get_stat_mtime (&istat);
780 /* Generate output file name. For -r and (-t or -l), skip files
781 * without a valid gzip suffix (check done in make_ofname).
783 if (to_stdout && !list && !test) {
784 strcpy(ofname, "stdout");
786 } else if (make_ofname() != OK) {
787 close (ifd);
788 return;
791 clear_bufs(); /* clear input and output buffers */
792 part_nb = 0;
794 if (decompress) {
795 method = get_method(ifd); /* updates ofname if original given */
796 if (method < 0) {
797 close(ifd);
798 return; /* error message already emitted */
801 if (list) {
802 do_list(ifd, method);
803 if (close (ifd) != 0)
804 read_error ();
805 return;
808 /* If compressing to a file, check if ofname is not ambiguous
809 * because the operating system truncates names. Otherwise, generate
810 * a new ofname and save the original name in the compressed file.
812 if (to_stdout) {
813 ofd = fileno(stdout);
814 /* Keep remove_ofname_fd negative. */
815 } else {
816 if (create_outfile() != OK) return;
818 if (!decompress && save_orig_name && !verbose && !quiet) {
819 fprintf(stderr, "%s: %s compressed to %s\n",
820 program_name, ifname, ofname);
823 /* Keep the name even if not truncated except with --no-name: */
824 if (!save_orig_name) save_orig_name = !no_name;
826 if (verbose) {
827 fprintf(stderr, "%s:\t", ifname);
830 /* Actually do the compression/decompression. Loop over zipped members.
832 for (;;) {
833 if ((*work)(ifd, ofd) != OK) {
834 method = -1; /* force cleanup */
835 break;
838 if (input_eof ())
839 break;
841 method = get_method(ifd);
842 if (method < 0) break; /* error message already emitted */
843 bytes_out = 0; /* required for length check */
846 if (close (ifd) != 0)
847 read_error ();
849 if (!to_stdout)
851 sigset_t oldset;
852 int unlink_errno;
854 copy_stat (&istat);
855 if (close (ofd) != 0)
856 write_error ();
858 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
859 remove_ofname_fd = -1;
860 unlink_errno = xunlink (ifname) == 0 ? 0 : errno;
861 sigprocmask (SIG_SETMASK, &oldset, NULL);
863 if (unlink_errno)
865 WARN ((stderr, "%s: ", program_name));
866 if (!quiet)
868 errno = unlink_errno;
869 perror (ifname);
874 if (method == -1) {
875 if (!to_stdout)
876 remove_output_file ();
877 return;
880 /* Display statistics */
881 if(verbose) {
882 if (test) {
883 fprintf(stderr, " OK");
884 } else if (decompress) {
885 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
886 } else {
887 display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
889 if (!test && !to_stdout) {
890 fprintf(stderr, " -- replaced with %s", ofname);
892 fprintf(stderr, "\n");
896 /* ========================================================================
897 * Create the output file. Return OK or ERROR.
898 * Try several times if necessary to avoid truncating the z_suffix. For
899 * example, do not create a compressed file of name "1234567890123."
900 * Sets save_orig_name to true if the file name has been truncated.
901 * IN assertions: the input file has already been open (ifd is set) and
902 * ofname has already been updated if there was an original name.
903 * OUT assertions: ifd and ofd are closed in case of error.
905 local int create_outfile()
907 int name_shortened = 0;
908 int flags = (O_WRONLY | O_CREAT | O_EXCL
909 | (ascii && decompress ? 0 : O_BINARY));
911 for (;;)
913 int open_errno;
914 sigset_t oldset;
916 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
917 remove_ofname_fd = ofd = OPEN (ofname, flags, RW_USER);
918 open_errno = errno;
919 sigprocmask (SIG_SETMASK, &oldset, NULL);
921 if (0 <= ofd)
922 break;
924 switch (open_errno)
926 #ifdef ENAMETOOLONG
927 case ENAMETOOLONG:
928 shorten_name (ofname);
929 name_shortened = 1;
930 break;
931 #endif
933 case EEXIST:
934 if (check_ofname () != OK)
936 close (ifd);
937 return ERROR;
939 break;
941 default:
942 progerror (ofname);
943 close (ifd);
944 return ERROR;
948 if (name_shortened && decompress)
950 /* name might be too long if an original name was saved */
951 WARN ((stderr, "%s: %s: warning, name truncated\n",
952 program_name, ofname));
955 return OK;
958 /* ========================================================================
959 * Return a pointer to the 'z' suffix of a file name, or NULL. For all
960 * systems, ".gz", ".z", ".Z", ".taz", ".tgz", "-gz", "-z" and "_z" are
961 * accepted suffixes, in addition to the value of the --suffix option.
962 * ".tgz" is a useful convention for tar.z files on systems limited
963 * to 3 characters extensions. On such systems, ".?z" and ".??z" are
964 * also accepted suffixes. For Unix, we do not want to accept any
965 * .??z suffix as indicating a compressed file; some people use .xyz
966 * to denote volume data.
967 * On systems allowing multiple versions of the same file (such as VMS),
968 * this function removes any version suffix in the given name.
970 local char *get_suffix(name)
971 char *name;
973 int nlen, slen;
974 char suffix[MAX_SUFFIX+3]; /* last chars of name, forced to lower case */
975 static char *known_suffixes[] =
976 {NULL, ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z",
977 #ifdef MAX_EXT_CHARS
978 "z",
979 #endif
980 NULL};
981 char **suf = known_suffixes;
983 *suf = z_suffix;
984 if (strequ(z_suffix, "z")) suf++; /* check long suffixes first */
986 #ifdef SUFFIX_SEP
987 /* strip a version number from the file name */
989 char *v = strrchr(name, SUFFIX_SEP);
990 if (v != NULL) *v = '\0';
992 #endif
993 nlen = strlen(name);
994 if (nlen <= MAX_SUFFIX+2) {
995 strcpy(suffix, name);
996 } else {
997 strcpy(suffix, name+nlen-MAX_SUFFIX-2);
999 strlwr(suffix);
1000 slen = strlen(suffix);
1001 do {
1002 int s = strlen(*suf);
1003 if (slen > s && suffix[slen-s-1] != PATH_SEP
1004 && strequ(suffix + slen - s, *suf)) {
1005 return name+nlen-s;
1007 } while (*++suf != NULL);
1009 return NULL;
1013 /* Open file NAME with the given flags and mode and store its status
1014 into *ST. Return a file descriptor to the newly opened file, or -1
1015 (setting errno) on failure. */
1016 static int
1017 open_and_stat (char *name, int flags, mode_t mode, struct stat *st)
1019 int fd;
1021 /* Refuse to follow symbolic links unless -c or -f. */
1022 if (!to_stdout && !force)
1024 if (HAVE_WORKING_O_NOFOLLOW)
1025 flags |= O_NOFOLLOW;
1026 else
1028 #if HAVE_LSTAT || defined lstat
1029 if (lstat (name, st) != 0)
1030 return -1;
1031 else if (S_ISLNK (st->st_mode))
1033 errno = ELOOP;
1034 return -1;
1036 #endif
1040 fd = OPEN (name, flags, mode);
1041 if (0 <= fd && fstat (fd, st) != 0)
1043 int e = errno;
1044 close (fd);
1045 errno = e;
1046 return -1;
1048 return fd;
1052 /* ========================================================================
1053 * Set ifname to the input file name (with a suffix appended if necessary)
1054 * and istat to its stats. For decompression, if no file exists with the
1055 * original name, try adding successively z_suffix, .gz, .z, -z and .Z.
1056 * For MSDOS, we try only z_suffix and z.
1057 * Return an open file descriptor or -1.
1059 static int
1060 open_input_file (iname, sbuf)
1061 char *iname;
1062 struct stat *sbuf;
1064 int ilen; /* strlen(ifname) */
1065 int z_suffix_errno = 0;
1066 static char *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL};
1067 char **suf = suffixes;
1068 char *s;
1069 #ifdef NO_MULTIPLE_DOTS
1070 char *dot; /* pointer to ifname extension, or NULL */
1071 #endif
1072 int fd;
1073 int open_flags = (O_RDONLY | O_NONBLOCK | O_NOCTTY
1074 | (ascii && !decompress ? 0 : O_BINARY));
1076 *suf = z_suffix;
1078 if (sizeof ifname - 1 <= strlen (iname))
1079 goto name_too_long;
1081 strcpy(ifname, iname);
1083 /* If input file exists, return OK. */
1084 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1085 if (0 <= fd)
1086 return fd;
1088 if (!decompress || errno != ENOENT) {
1089 progerror(ifname);
1090 return -1;
1092 /* file.ext doesn't exist, try adding a suffix (after removing any
1093 * version number for VMS).
1095 s = get_suffix(ifname);
1096 if (s != NULL) {
1097 progerror(ifname); /* ifname already has z suffix and does not exist */
1098 return -1;
1100 #ifdef NO_MULTIPLE_DOTS
1101 dot = strrchr(ifname, '.');
1102 if (dot == NULL) {
1103 strcat(ifname, ".");
1104 dot = strrchr(ifname, '.');
1106 #endif
1107 ilen = strlen(ifname);
1108 if (strequ(z_suffix, ".gz")) suf++;
1110 /* Search for all suffixes */
1111 do {
1112 char *s0 = s = *suf;
1113 strcpy (ifname, iname);
1114 #ifdef NO_MULTIPLE_DOTS
1115 if (*s == '.') s++;
1116 if (*dot == '\0') strcpy (dot, ".");
1117 #endif
1118 #ifdef MAX_EXT_CHARS
1119 if (MAX_EXT_CHARS < strlen (s) + strlen (dot + 1))
1120 dot[MAX_EXT_CHARS + 1 - strlen (s)] = '\0';
1121 #endif
1122 if (sizeof ifname <= ilen + strlen (s))
1123 goto name_too_long;
1124 strcat(ifname, s);
1125 fd = open_and_stat (ifname, open_flags, RW_USER, sbuf);
1126 if (0 <= fd)
1127 return fd;
1128 if (errno != ENOENT)
1130 progerror (ifname);
1131 return -1;
1133 if (strequ (s0, z_suffix))
1134 z_suffix_errno = errno;
1135 } while (*++suf != NULL);
1137 /* No suffix found, complain using z_suffix: */
1138 strcpy(ifname, iname);
1139 #ifdef NO_MULTIPLE_DOTS
1140 if (*dot == '\0') strcpy(dot, ".");
1141 #endif
1142 #ifdef MAX_EXT_CHARS
1143 if (MAX_EXT_CHARS < z_len + strlen (dot + 1))
1144 dot[MAX_EXT_CHARS + 1 - z_len] = '\0';
1145 #endif
1146 strcat(ifname, z_suffix);
1147 errno = z_suffix_errno;
1148 progerror(ifname);
1149 return -1;
1151 name_too_long:
1152 fprintf (stderr, "%s: %s: file name too long\n", program_name, iname);
1153 exit_code = ERROR;
1154 return -1;
1157 /* ========================================================================
1158 * Generate ofname given ifname. Return OK, or WARNING if file must be skipped.
1159 * Sets save_orig_name to true if the file name has been truncated.
1161 local int make_ofname()
1163 char *suff; /* ofname z suffix */
1165 strcpy(ofname, ifname);
1166 /* strip a version number if any and get the gzip suffix if present: */
1167 suff = get_suffix(ofname);
1169 if (decompress) {
1170 if (suff == NULL) {
1171 /* With -t or -l, try all files (even without .gz suffix)
1172 * except with -r (behave as with just -dr).
1174 if (!recursive && (list || test)) return OK;
1176 /* Avoid annoying messages with -r */
1177 if (verbose || (!recursive && !quiet)) {
1178 WARN((stderr,"%s: %s: unknown suffix -- ignored\n",
1179 program_name, ifname));
1181 return WARNING;
1183 /* Make a special case for .tgz and .taz: */
1184 strlwr(suff);
1185 if (strequ(suff, ".tgz") || strequ(suff, ".taz")) {
1186 strcpy(suff, ".tar");
1187 } else {
1188 *suff = '\0'; /* strip the z suffix */
1190 /* ofname might be changed later if infile contains an original name */
1192 } else if (suff && ! force) {
1193 /* Avoid annoying messages with -r (see treat_dir()) */
1194 if (verbose || (!recursive && !quiet)) {
1195 /* Don't use WARN, as it affects exit status. */
1196 fprintf (stderr, "%s: %s already has %s suffix -- unchanged\n",
1197 program_name, ifname, suff);
1199 return WARNING;
1200 } else {
1201 save_orig_name = 0;
1203 #ifdef NO_MULTIPLE_DOTS
1204 suff = strrchr(ofname, '.');
1205 if (suff == NULL) {
1206 if (sizeof ofname <= strlen (ofname) + 1)
1207 goto name_too_long;
1208 strcat(ofname, ".");
1209 # ifdef MAX_EXT_CHARS
1210 if (strequ(z_suffix, "z")) {
1211 if (sizeof ofname <= strlen (ofname) + 2)
1212 goto name_too_long;
1213 strcat(ofname, "gz"); /* enough room */
1214 return OK;
1216 /* On the Atari and some versions of MSDOS,
1217 * ENAMETOOLONG does not work correctly. So we
1218 * must truncate here.
1220 } else if (strlen(suff)-1 + z_len > MAX_SUFFIX) {
1221 suff[MAX_SUFFIX+1-z_len] = '\0';
1222 save_orig_name = 1;
1223 # endif
1225 #endif /* NO_MULTIPLE_DOTS */
1226 if (sizeof ofname <= strlen (ofname) + z_len)
1227 goto name_too_long;
1228 strcat(ofname, z_suffix);
1230 } /* decompress ? */
1231 return OK;
1233 name_too_long:
1234 WARN ((stderr, "%s: %s: file name too long\n", program_name, ifname));
1235 return WARNING;
1239 /* ========================================================================
1240 * Check the magic number of the input file and update ofname if an
1241 * original name was given and to_stdout is not set.
1242 * Return the compression method, -1 for error, -2 for warning.
1243 * Set inptr to the offset of the next byte to be processed.
1244 * Updates time_stamp if there is one and --no-time is not used.
1245 * This function may be called repeatedly for an input file consisting
1246 * of several contiguous gzip'ed members.
1247 * IN assertions: there is at least one remaining compressed member.
1248 * If the member is a zip file, it must be the only one.
1250 local int get_method(in)
1251 int in; /* input file descriptor */
1253 uch flags; /* compression flags */
1254 char magic[2]; /* magic header */
1255 int imagic1; /* like magic[1], but can represent EOF */
1256 ulg stamp; /* time stamp */
1258 /* If --force and --stdout, zcat == cat, so do not complain about
1259 * premature end of file: use try_byte instead of get_byte.
1261 if (force && to_stdout) {
1262 magic[0] = (char)try_byte();
1263 imagic1 = try_byte ();
1264 magic[1] = (char) imagic1;
1265 /* If try_byte returned EOF, magic[1] == (char) EOF. */
1266 } else {
1267 magic[0] = (char)get_byte();
1268 magic[1] = (char)get_byte();
1269 imagic1 = 0; /* avoid lint warning */
1271 method = -1; /* unknown yet */
1272 part_nb++; /* number of parts in gzip file */
1273 header_bytes = 0;
1274 last_member = RECORD_IO;
1275 /* assume multiple members in gzip file except for record oriented I/O */
1277 if (memcmp(magic, GZIP_MAGIC, 2) == 0
1278 || memcmp(magic, OLD_GZIP_MAGIC, 2) == 0) {
1280 method = (int)get_byte();
1281 if (method != DEFLATED) {
1282 fprintf(stderr,
1283 "%s: %s: unknown method %d -- not supported\n",
1284 program_name, ifname, method);
1285 exit_code = ERROR;
1286 return -1;
1288 work = unzip;
1289 flags = (uch)get_byte();
1291 if ((flags & ENCRYPTED) != 0) {
1292 fprintf(stderr,
1293 "%s: %s is encrypted -- not supported\n",
1294 program_name, ifname);
1295 exit_code = ERROR;
1296 return -1;
1298 if ((flags & CONTINUATION) != 0) {
1299 fprintf(stderr,
1300 "%s: %s is a multi-part gzip file -- not supported\n",
1301 program_name, ifname);
1302 exit_code = ERROR;
1303 if (force <= 1) return -1;
1305 if ((flags & RESERVED) != 0) {
1306 fprintf(stderr,
1307 "%s: %s has flags 0x%x -- not supported\n",
1308 program_name, ifname, flags);
1309 exit_code = ERROR;
1310 if (force <= 1) return -1;
1312 stamp = (ulg)get_byte();
1313 stamp |= ((ulg)get_byte()) << 8;
1314 stamp |= ((ulg)get_byte()) << 16;
1315 stamp |= ((ulg)get_byte()) << 24;
1316 if (stamp != 0 && !no_time)
1318 time_stamp.tv_sec = stamp;
1319 time_stamp.tv_nsec = 0;
1322 (void)get_byte(); /* Ignore extra flags for the moment */
1323 (void)get_byte(); /* Ignore OS type for the moment */
1325 if ((flags & CONTINUATION) != 0) {
1326 unsigned part = (unsigned)get_byte();
1327 part |= ((unsigned)get_byte())<<8;
1328 if (verbose) {
1329 fprintf(stderr,"%s: %s: part number %u\n",
1330 program_name, ifname, part);
1333 if ((flags & EXTRA_FIELD) != 0) {
1334 unsigned len = (unsigned)get_byte();
1335 len |= ((unsigned)get_byte())<<8;
1336 if (verbose) {
1337 fprintf(stderr,"%s: %s: extra field of %u bytes ignored\n",
1338 program_name, ifname, len);
1340 while (len--) (void)get_byte();
1343 /* Get original file name if it was truncated */
1344 if ((flags & ORIG_NAME) != 0) {
1345 if (no_name || (to_stdout && !list) || part_nb > 1) {
1346 /* Discard the old name */
1347 char c; /* dummy used for NeXTstep 3.0 cc optimizer bug */
1348 do {c=get_byte();} while (c != 0);
1349 } else {
1350 /* Copy the base name. Keep a directory prefix intact. */
1351 char *p = gzip_base_name (ofname);
1352 char *base = p;
1353 for (;;) {
1354 *p = (char)get_char();
1355 if (*p++ == '\0') break;
1356 if (p >= ofname+sizeof(ofname)) {
1357 gzip_error ("corrupted input -- file name too large");
1360 p = gzip_base_name (base);
1361 memmove (base, p, strlen (p) + 1);
1362 /* If necessary, adapt the name to local OS conventions: */
1363 if (!list) {
1364 MAKE_LEGAL_NAME(base);
1365 if (base) list=0; /* avoid warning about unused variable */
1367 } /* no_name || to_stdout */
1368 } /* ORIG_NAME */
1370 /* Discard file comment if any */
1371 if ((flags & COMMENT) != 0) {
1372 while (get_char() != 0) /* null */ ;
1374 if (part_nb == 1) {
1375 header_bytes = inptr + 2*sizeof(long); /* include crc and size */
1378 } else if (memcmp(magic, PKZIP_MAGIC, 2) == 0 && inptr == 2
1379 && memcmp((char*)inbuf, PKZIP_MAGIC, 4) == 0) {
1380 /* To simplify the code, we support a zip file when alone only.
1381 * We are thus guaranteed that the entire local header fits in inbuf.
1383 inptr = 0;
1384 work = unzip;
1385 if (check_zipfile(in) != OK) return -1;
1386 /* check_zipfile may get ofname from the local header */
1387 last_member = 1;
1389 } else if (memcmp(magic, PACK_MAGIC, 2) == 0) {
1390 work = unpack;
1391 method = PACKED;
1393 } else if (memcmp(magic, LZW_MAGIC, 2) == 0) {
1394 work = unlzw;
1395 method = COMPRESSED;
1396 last_member = 1;
1398 } else if (memcmp(magic, LZH_MAGIC, 2) == 0) {
1399 work = unlzh;
1400 method = LZHED;
1401 last_member = 1;
1403 } else if (force && to_stdout && !list) { /* pass input unchanged */
1404 method = STORED;
1405 work = copy;
1406 inptr = 0;
1407 last_member = 1;
1409 if (method >= 0) return method;
1411 if (part_nb == 1) {
1412 fprintf (stderr, "\n%s: %s: not in gzip format\n",
1413 program_name, ifname);
1414 exit_code = ERROR;
1415 return -1;
1416 } else {
1417 if (magic[0] == 0)
1419 int inbyte;
1420 for (inbyte = imagic1; inbyte == 0; inbyte = try_byte ())
1421 continue;
1422 if (inbyte == EOF)
1424 if (verbose)
1425 WARN ((stderr, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1426 program_name, ifname));
1427 return -3;
1431 WARN((stderr, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1432 program_name, ifname));
1433 return -2;
1437 /* ========================================================================
1438 * Display the characteristics of the compressed file.
1439 * If the given method is < 0, display the accumulated totals.
1440 * IN assertions: time_stamp, header_bytes and ifile_size are initialized.
1442 local void do_list(ifd, method)
1443 int ifd; /* input file descriptor */
1444 int method; /* compression method */
1446 ulg crc; /* original crc */
1447 static int first_time = 1;
1448 static char* methods[MAX_METHODS] = {
1449 "store", /* 0 */
1450 "compr", /* 1 */
1451 "pack ", /* 2 */
1452 "lzh ", /* 3 */
1453 "", "", "", "", /* 4 to 7 reserved */
1454 "defla"}; /* 8 */
1455 int positive_off_t_width = 1;
1456 off_t o;
1458 for (o = OFF_T_MAX; 9 < o; o /= 10) {
1459 positive_off_t_width++;
1462 if (first_time && method >= 0) {
1463 first_time = 0;
1464 if (verbose) {
1465 printf("method crc date time ");
1467 if (!quiet) {
1468 printf("%*.*s %*.*s ratio uncompressed_name\n",
1469 positive_off_t_width, positive_off_t_width, "compressed",
1470 positive_off_t_width, positive_off_t_width, "uncompressed");
1472 } else if (method < 0) {
1473 if (total_in <= 0 || total_out <= 0) return;
1474 if (verbose) {
1475 printf(" ");
1477 if (verbose || !quiet) {
1478 fprint_off(stdout, total_in, positive_off_t_width);
1479 printf(" ");
1480 fprint_off(stdout, total_out, positive_off_t_width);
1481 printf(" ");
1483 display_ratio(total_out-(total_in-header_bytes), total_out, stdout);
1484 /* header_bytes is not meaningful but used to ensure the same
1485 * ratio if there is a single file.
1487 printf(" (totals)\n");
1488 return;
1490 crc = (ulg)~0; /* unknown */
1491 bytes_out = -1L;
1492 bytes_in = ifile_size;
1494 #if RECORD_IO == 0
1495 if (method == DEFLATED && !last_member) {
1496 /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files.
1497 * If the lseek fails, we could use read() to get to the end, but
1498 * --list is used to get quick results.
1499 * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if
1500 * you are not concerned about speed.
1502 bytes_in = lseek(ifd, (off_t)(-8), SEEK_END);
1503 if (bytes_in != -1L) {
1504 uch buf[8];
1505 bytes_in += 8L;
1506 if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) {
1507 read_error();
1509 crc = LG(buf);
1510 bytes_out = LG(buf+4);
1513 #endif /* RECORD_IO */
1514 if (verbose)
1516 struct tm *tm = localtime (&time_stamp.tv_sec);
1517 printf ("%5s %08lx ", methods[method], crc);
1518 if (tm)
1519 printf ("%s%3d %02d:%02d ",
1520 ("Jan\0Feb\0Mar\0Apr\0May\0Jun\0Jul\0Aug\0Sep\0Oct\0Nov\0Dec"
1521 + 4 * tm->tm_mon),
1522 tm->tm_mday, tm->tm_hour, tm->tm_min);
1523 else
1524 printf ("??? ?? ??:?? ");
1526 fprint_off(stdout, bytes_in, positive_off_t_width);
1527 printf(" ");
1528 fprint_off(stdout, bytes_out, positive_off_t_width);
1529 printf(" ");
1530 if (bytes_in == -1L) {
1531 total_in = -1L;
1532 bytes_in = bytes_out = header_bytes = 0;
1533 } else if (total_in >= 0) {
1534 total_in += bytes_in;
1536 if (bytes_out == -1L) {
1537 total_out = -1L;
1538 bytes_in = bytes_out = header_bytes = 0;
1539 } else if (total_out >= 0) {
1540 total_out += bytes_out;
1542 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out, stdout);
1543 printf(" %s\n", ofname);
1546 /* ========================================================================
1547 * Shorten the given name by one character, or replace a .tar extension
1548 * with .tgz. Truncate the last part of the name which is longer than
1549 * MIN_PART characters: 1234.678.012.gz -> 123.678.012.gz. If the name
1550 * has only parts shorter than MIN_PART truncate the longest part.
1551 * For decompression, just remove the last character of the name.
1553 * IN assertion: for compression, the suffix of the given name is z_suffix.
1555 local void shorten_name(name)
1556 char *name;
1558 int len; /* length of name without z_suffix */
1559 char *trunc = NULL; /* character to be truncated */
1560 int plen; /* current part length */
1561 int min_part = MIN_PART; /* current minimum part length */
1562 char *p;
1564 len = strlen(name);
1565 if (decompress) {
1566 if (len <= 1)
1567 gzip_error ("name too short");
1568 name[len-1] = '\0';
1569 return;
1571 p = get_suffix(name);
1572 if (! p)
1573 gzip_error ("can't recover suffix\n");
1574 *p = '\0';
1575 save_orig_name = 1;
1577 /* compress 1234567890.tar to 1234567890.tgz */
1578 if (len > 4 && strequ(p-4, ".tar")) {
1579 strcpy(p-4, ".tgz");
1580 return;
1582 /* Try keeping short extensions intact:
1583 * 1234.678.012.gz -> 123.678.012.gz
1585 do {
1586 p = strrchr(name, PATH_SEP);
1587 p = p ? p+1 : name;
1588 while (*p) {
1589 plen = strcspn(p, PART_SEP);
1590 p += plen;
1591 if (plen > min_part) trunc = p-1;
1592 if (*p) p++;
1594 } while (trunc == NULL && --min_part != 0);
1596 if (trunc != NULL) {
1597 do {
1598 trunc[0] = trunc[1];
1599 } while (*trunc++);
1600 trunc--;
1601 } else {
1602 trunc = strrchr(name, PART_SEP[0]);
1603 if (!trunc)
1604 gzip_error ("internal error in shorten_name");
1605 if (trunc[1] == '\0') trunc--; /* force truncation */
1607 strcpy(trunc, z_suffix);
1610 /* ========================================================================
1611 * The compressed file already exists, so ask for confirmation.
1612 * Return ERROR if the file must be skipped.
1614 local int check_ofname()
1616 /* Ask permission to overwrite the existing file */
1617 if (!force) {
1618 int ok = 0;
1619 fprintf (stderr, "%s: %s already exists;", program_name, ofname);
1620 if (foreground && isatty(fileno(stdin))) {
1621 fprintf(stderr, " do you wish to overwrite (y or n)? ");
1622 fflush(stderr);
1623 ok = yesno();
1625 if (!ok) {
1626 fprintf(stderr, "\tnot overwritten\n");
1627 if (exit_code == OK) exit_code = WARNING;
1628 return ERROR;
1631 if (xunlink (ofname)) {
1632 progerror(ofname);
1633 return ERROR;
1635 return OK;
1639 /* ========================================================================
1640 * Copy modes, times, ownership from input file to output file.
1641 * IN assertion: to_stdout is false.
1643 local void copy_stat(ifstat)
1644 struct stat *ifstat;
1646 mode_t mode = ifstat->st_mode & S_IRWXUGO;
1647 int r;
1649 #ifndef NO_UTIME
1650 struct timespec timespec[2];
1651 timespec[0] = get_stat_atime (ifstat);
1652 timespec[1] = get_stat_mtime (ifstat);
1654 if (decompress && 0 <= time_stamp.tv_nsec
1655 && ! (timespec[1].tv_sec == time_stamp.tv_sec
1656 && timespec[1].tv_nsec == time_stamp.tv_nsec))
1658 timespec[1] = time_stamp;
1659 if (verbose > 1) {
1660 fprintf(stderr, "%s: time stamp restored\n", ofname);
1664 if (gl_futimens (ofd, ofname, timespec) != 0)
1666 int e = errno;
1667 WARN ((stderr, "%s: ", program_name));
1668 if (!quiet)
1670 errno = e;
1671 perror (ofname);
1674 #endif
1676 #ifndef NO_CHOWN
1677 # if HAVE_FCHOWN
1678 fchown (ofd, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */
1679 # elif HAVE_CHOWN
1680 chown(ofname, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */
1681 # endif
1682 #endif
1684 /* Copy the protection modes */
1685 #if HAVE_FCHMOD
1686 r = fchmod (ofd, mode);
1687 #else
1688 r = chmod (ofname, mode);
1689 #endif
1690 if (r != 0) {
1691 int e = errno;
1692 WARN ((stderr, "%s: ", program_name));
1693 if (!quiet) {
1694 errno = e;
1695 perror(ofname);
1700 #if ! NO_DIR
1702 /* ========================================================================
1703 * Recurse through the given directory. This code is taken from ncompress.
1705 local void treat_dir (fd, dir)
1706 int fd;
1707 char *dir;
1709 struct dirent *dp;
1710 DIR *dirp;
1711 char nbuf[MAX_PATH_LEN];
1712 int len;
1714 #if HAVE_FDOPENDIR
1715 dirp = fdopendir (fd);
1716 #else
1717 close (fd);
1718 dirp = opendir(dir);
1719 #endif
1721 if (dirp == NULL) {
1722 progerror(dir);
1723 #if HAVE_FDOPENDIR
1724 close (fd);
1725 #endif
1726 return ;
1729 ** WARNING: the following algorithm could occasionally cause
1730 ** compress to produce error warnings of the form "<filename>.gz
1731 ** already has .gz suffix - ignored". This occurs when the
1732 ** .gz output file is inserted into the directory below
1733 ** readdir's current pointer.
1734 ** These warnings are harmless but annoying, so they are suppressed
1735 ** with option -r (except when -v is on). An alternative
1736 ** to allowing this would be to store the entire directory
1737 ** list in memory, then compress the entries in the stored
1738 ** list. Given the depth-first recursive algorithm used here,
1739 ** this could use up a tremendous amount of memory. I don't
1740 ** think it's worth it. -- Dave Mack
1741 ** (An other alternative might be two passes to avoid depth-first.)
1744 while ((errno = 0, dp = readdir(dirp)) != NULL) {
1746 if (strequ(dp->d_name,".") || strequ(dp->d_name,"..")) {
1747 continue;
1749 len = strlen(dir);
1750 if (len + _D_EXACT_NAMLEN (dp) + 1 < MAX_PATH_LEN - 1) {
1751 strcpy(nbuf,dir);
1752 if (len != 0 /* dir = "" means current dir on Amiga */
1753 #ifdef PATH_SEP2
1754 && dir[len-1] != PATH_SEP2
1755 #endif
1756 #ifdef PATH_SEP3
1757 && dir[len-1] != PATH_SEP3
1758 #endif
1760 nbuf[len++] = PATH_SEP;
1762 strcpy(nbuf+len, dp->d_name);
1763 treat_file(nbuf);
1764 } else {
1765 fprintf(stderr,"%s: %s/%s: pathname too long\n",
1766 program_name, dir, dp->d_name);
1767 exit_code = ERROR;
1770 if (errno != 0)
1771 progerror(dir);
1772 if (CLOSEDIR(dirp) != 0)
1773 progerror(dir);
1775 #endif /* ! NO_DIR */
1777 /* Make sure signals get handled properly. */
1779 static void
1780 install_signal_handlers ()
1782 int nsigs = sizeof handled_sig / sizeof handled_sig[0];
1783 int i;
1785 #if SA_NOCLDSTOP
1786 struct sigaction act;
1788 sigemptyset (&caught_signals);
1789 for (i = 0; i < nsigs; i++)
1791 sigaction (handled_sig[i], NULL, &act);
1792 if (act.sa_handler != SIG_IGN)
1793 sigaddset (&caught_signals, handled_sig[i]);
1796 act.sa_handler = abort_gzip_signal;
1797 act.sa_mask = caught_signals;
1798 act.sa_flags = 0;
1800 for (i = 0; i < nsigs; i++)
1801 if (sigismember (&caught_signals, handled_sig[i]))
1803 if (i == 0)
1804 foreground = 1;
1805 sigaction (handled_sig[i], &act, NULL);
1807 #else
1808 for (i = 0; i < nsigs; i++)
1809 if (signal (handled_sig[i], SIG_IGN) != SIG_IGN)
1811 if (i == 0)
1812 foreground = 1;
1813 signal (handled_sig[i], abort_gzip_signal);
1814 siginterrupt (handled_sig[i], 1);
1816 #endif
1819 /* ========================================================================
1820 * Free all dynamically allocated variables and exit with the given code.
1822 local void do_exit(exitcode)
1823 int exitcode;
1825 static int in_exit = 0;
1827 if (in_exit) exit(exitcode);
1828 in_exit = 1;
1829 free(env);
1830 env = NULL;
1831 free(args);
1832 args = NULL;
1833 FREE(inbuf);
1834 FREE(outbuf);
1835 FREE(d_buf);
1836 FREE(window);
1837 #ifndef MAXSEG_64K
1838 FREE(tab_prefix);
1839 #else
1840 FREE(tab_prefix0);
1841 FREE(tab_prefix1);
1842 #endif
1843 exit(exitcode);
1846 /* ========================================================================
1847 * Close and unlink the output file.
1849 static void
1850 remove_output_file ()
1852 int fd;
1853 sigset_t oldset;
1855 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1856 fd = remove_ofname_fd;
1857 if (0 <= fd)
1859 remove_ofname_fd = -1;
1860 close (fd);
1861 xunlink (ofname);
1863 sigprocmask (SIG_SETMASK, &oldset, NULL);
1866 /* ========================================================================
1867 * Error handler.
1869 void
1870 abort_gzip ()
1872 remove_output_file ();
1873 do_exit(ERROR);
1876 /* ========================================================================
1877 * Signal handler.
1879 static RETSIGTYPE
1880 abort_gzip_signal (sig)
1881 int sig;
1883 if (! SA_NOCLDSTOP)
1884 signal (sig, SIG_IGN);
1885 remove_output_file ();
1886 if (sig == exiting_signal)
1887 _exit (WARNING);
1888 signal (sig, SIG_DFL);
1889 raise (sig);