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