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