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