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