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