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