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