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