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