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