maint: remove RCS $Id$ variables and comments
[gzip.git] / gzip.c
blobebf87df8c3e738e6890a75e0fd4fc0aa7b7dd31c
1 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
3 Copyright (C) 1999, 2001, 2002, 2006, 2007 Free Software Foundation, Inc.
4 Copyright (C) 1992-1993 Jean-loup Gailly
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.
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.
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. */
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.
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.
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};
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.
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.
53 * For the meaning of all compilation flags, see comments in Makefile.in.
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>
63 #include "closein.h"
64 #include "tailor.h"
65 #include "gzip.h"
66 #include "lzw.h"
67 #include "revision.h"
69 #include "fcntl-safer.h"
70 #include "getopt.h"
71 #include "stat-time.h"
73 /* configuration */
75 #ifdef HAVE_FCNTL_H
76 # include <fcntl.h>
77 #endif
79 #ifdef HAVE_LIMITS_H
80 # include <limits.h>
81 #endif
83 #ifdef HAVE_UNISTD_H
84 # include <unistd.h>
85 #endif
87 #if defined STDC_HEADERS || defined HAVE_STDLIB_H
88 # include <stdlib.h>
89 #else
90 extern int errno;
91 #endif
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
103 #ifdef CLOSEDIR_VOID
104 # define CLOSEDIR(d) (closedir(d), 0)
105 #else
106 # define CLOSEDIR(d) closedir(d)
107 #endif
109 #ifndef NO_UTIME
110 # include <utimens.h>
111 #endif
113 #define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
115 #ifndef MAX_PATH_LEN
116 # define MAX_PATH_LEN 1024 /* max pathname length */
117 #endif
119 #ifndef SEEK_END
120 # define SEEK_END 2
121 #endif
123 #ifndef CHAR_BIT
124 # define CHAR_BIT 8
125 #endif
127 #ifdef off_t
128 off_t lseek OF((int fd, off_t offset, int whence));
129 #endif
131 #ifndef OFF_T_MIN
132 #define OFF_T_MIN (~ (off_t) 0 << (sizeof (off_t) * CHAR_BIT - 1))
133 #endif
135 #ifndef OFF_T_MAX
136 #define OFF_T_MAX (~ (off_t) 0 - OFF_T_MIN)
137 #endif
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
150 #ifndef HAVE_WORKING_O_NOFOLLOW
151 # define HAVE_WORKING_O_NOFOLLOW 0
152 #endif
154 #ifndef ELOOP
155 # define ELOOP EINVAL
156 #endif
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
165 /* global buffers */
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
178 /* local variables */
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) */
208 /* The set of signals that are caught. */
209 static sigset_t caught_signals;
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;
216 /* If nonnegative, close this file descriptor and unlink ofname on error. */
217 static int volatile remove_ofname_fd = -1;
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 */
232 static int handled_sig[] =
234 /* SIGINT must be first, as 'foreground' depends on it. */
235 SIGINT
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
256 struct option longopts[] =
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 }
287 /* local functions */
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 */
312 #if ! NO_DIR
313 local void treat_dir OF((int fd, char *dir));
314 #endif
316 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
318 static void
319 try_help ()
321 fprintf (stderr, "Try `%s --help' for more information.\n",
322 program_name);
323 do_exit (ERROR);
326 /* ======================================================================== */
327 local void help()
329 static char *help_msg[] = {
330 "Compress or uncompress FILEs (by default, compress FILES in-place).",
332 "Mandatory arguments to long options are mandatory for short options too.",
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
366 "With no FILE, or when FILE is -, read standard input.",
368 "Report bugs to <bug-gzip@gnu.org>.",
370 char **p = help_msg;
372 printf ("Usage: %s [OPTION]... [FILE]...\n", program_name);
373 while (*p) printf ("%s\n", *p++);
376 /* ======================================================================== */
377 local void license()
379 char **p = license_msg;
381 printf ("%s %s\n", program_name, VERSION);
382 while (*p) printf ("%s\n", *p++);
385 /* ======================================================================== */
386 local void version()
388 license ();
389 printf ("\n");
390 printf ("Written by Jean-loup Gailly.\n");
393 local void progerror (string)
394 char *string;
396 int e = errno;
397 fprintf (stderr, "%s: ", program_name);
398 errno = e;
399 perror(string);
400 exit_code = ERROR;
403 /* ======================================================================== */
404 int main (argc, argv)
405 int argc;
406 char **argv;
408 int file_count; /* number of files to process */
409 size_t proglen; /* length of program_name */
410 int optc; /* current option */
412 EXPAND(argc, argv); /* wild card expansion if necessary */
414 program_name = gzip_base_name (argv[0]);
415 proglen = strlen (program_name);
417 atexit (close_stdin);
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';
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;
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.
435 * Systems which do not support links can still use -d or -dc.
436 * Ignore an .exe extension for MSDOS, OS/2 and VMS.
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
446 z_suffix = Z_SUFFIX;
447 z_len = strlen(z_suffix);
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'))
459 fprintf (stderr, "%s: -b operand is not an integer\n",
460 program_name);
461 try_help ();
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 ();
526 } /* loop on all arguments */
528 /* By default, save name and timestamp on compression but do not
529 * restore them on decompression.
531 if (no_time < 0) no_time = decompress;
532 if (no_name < 0) no_name = decompress;
534 file_count = argc - optind;
536 #if O_BINARY
537 #else
538 if (ascii && !quiet) {
539 fprintf(stderr, "%s: option --ascii ignored on this system\n",
540 program_name);
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);
548 if (do_lzw && !decompress) work = lzw;
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
562 exiting_signal = quiet ? SIGPIPE : 0;
563 install_signal_handlers ();
565 /* And get to work */
566 if (file_count != 0) {
567 if (to_stdout && !test && !list && (!decompress || !ascii)) {
568 SET_BINARY_MODE(fileno(stdout));
570 while (optind < argc) {
571 treat_file(argv[optind++]);
573 } else { /* Standard input */
574 treat_stdin();
576 if (list && !quiet && file_count > 1) {
577 do_list(-1, -1); /* print totals */
579 do_exit(exit_code);
580 return exit_code; /* just to avoid lint warning */
583 /* Return nonzero when at end of file on input. */
584 local int
585 input_eof ()
587 if (!decompress || last_member)
588 return 1;
590 if (inptr == insize)
592 if (insize != INBUFSIZ || fill_inbuf (1) == EOF)
593 return 1;
595 /* Unget the char that fill_inbuf got. */
596 inptr = 0;
599 return 0;
602 /* ========================================================================
603 * Compress or decompress stdin
605 local void treat_stdin()
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:
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.
619 * Here we use the --force option to get the other behavior.
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);
629 if (decompress || !ascii) {
630 SET_BINARY_MODE(fileno(stdin));
632 if (!test && !list && (!decompress || !ascii)) {
633 SET_BINARY_MODE(fileno(stdout));
635 strcpy(ifname, "stdin");
636 strcpy(ofname, "stdout");
638 /* Get the file's time stamp and size. */
639 if (fstat (fileno (stdin), &istat) != 0)
641 progerror ("standard input");
642 do_exit (ERROR);
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);
649 clear_bufs(); /* clear input and output buffers */
650 to_stdout = 1;
651 part_nb = 0;
653 if (decompress) {
654 method = get_method(ifd);
655 if (method < 0) {
656 do_exit(exit_code); /* error message already emitted */
659 if (list) {
660 do_list(ifd, method);
661 return;
664 /* Actually do the compression/decompression. Loop over zipped members.
666 for (;;) {
667 if ((*work)(fileno(stdin), fileno(stdout)) != OK) return;
669 if (input_eof ())
670 break;
672 method = get_method(ifd);
673 if (method < 0) return; /* error message already emitted */
674 bytes_out = 0; /* required for length check */
677 if (verbose) {
678 if (test) {
679 fprintf(stderr, " OK\n");
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
693 /* ========================================================================
694 * Compress or decompress the given file
696 local void treat_file(iname)
697 char *iname;
699 /* Accept "-" as synonym for stdin */
700 if (strequ(iname, "-")) {
701 int cflag = to_stdout;
702 treat_stdin();
703 to_stdout = cflag;
704 return;
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;
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;
720 #endif
721 close (ifd);
722 WARN ((stderr, "%s: %s is a directory -- ignored\n",
723 program_name, ifname));
724 return;
727 if (! to_stdout)
729 if (! S_ISREG (istat.st_mode))
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;
737 if (istat.st_mode & S_ISUID)
739 WARN ((stderr, "%s: %s is set-user-ID on execution - ignored\n",
740 program_name, ifname));
741 close (ifd);
742 return;
744 if (istat.st_mode & S_ISGID)
746 WARN ((stderr, "%s: %s is set-group-ID on execution - ignored\n",
747 program_name, ifname));
748 close (ifd);
749 return;
752 if (! force)
754 if (istat.st_mode & S_ISVTX)
756 WARN ((stderr,
757 "%s: %s has the sticky bit set - file ignored\n",
758 program_name, ifname));
759 close (ifd);
760 return;
762 if (2 <= istat.st_nlink)
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;
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);
779 /* Generate output file name. For -r and (-t or -l), skip files
780 * without a valid gzip suffix (check done in make_ofname).
782 if (to_stdout && !list && !test) {
783 strcpy(ofname, "stdout");
785 } else if (make_ofname() != OK) {
786 close (ifd);
787 return;
790 clear_bufs(); /* clear input and output buffers */
791 part_nb = 0;
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 */
800 if (list) {
801 do_list(ifd, method);
802 if (close (ifd) != 0)
803 read_error ();
804 return;
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.
811 if (to_stdout) {
812 ofd = fileno(stdout);
813 /* Keep remove_ofname_fd negative. */
814 } else {
815 if (create_outfile() != OK) return;
817 if (!decompress && save_orig_name && !verbose && !quiet) {
818 fprintf(stderr, "%s: %s compressed to %s\n",
819 program_name, ifname, ofname);
822 /* Keep the name even if not truncated except with --no-name: */
823 if (!save_orig_name) save_orig_name = !no_name;
825 if (verbose) {
826 fprintf(stderr, "%s:\t", ifname);
829 /* Actually do the compression/decompression. Loop over zipped members.
831 for (;;) {
832 if ((*work)(ifd, ofd) != OK) {
833 method = -1; /* force cleanup */
834 break;
837 if (input_eof ())
838 break;
840 method = get_method(ifd);
841 if (method < 0) break; /* error message already emitted */
842 bytes_out = 0; /* required for length check */
845 if (close (ifd) != 0)
846 read_error ();
848 if (!to_stdout)
850 sigset_t oldset;
851 int unlink_errno;
853 copy_stat (&istat);
854 if (close (ofd) != 0)
855 write_error ();
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);
862 if (unlink_errno)
864 WARN ((stderr, "%s: ", program_name));
865 if (!quiet)
867 errno = unlink_errno;
868 perror (ifname);
873 if (method == -1) {
874 if (!to_stdout)
875 remove_output_file ();
876 return;
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);
888 if (!test && !to_stdout) {
889 fprintf(stderr, " -- replaced with %s", ofname);
891 fprintf(stderr, "\n");
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.
904 local int create_outfile()
906 int name_shortened = 0;
907 int flags = (O_WRONLY | O_CREAT | O_EXCL
908 | (ascii && decompress ? 0 : O_BINARY));
910 for (;;)
912 int open_errno;
913 sigset_t oldset;
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);
920 if (0 <= ofd)
921 break;
923 switch (open_errno)
925 #ifdef ENAMETOOLONG
926 case ENAMETOOLONG:
927 shorten_name (ofname);
928 name_shortened = 1;
929 break;
930 #endif
932 case EEXIST:
933 if (check_ofname () != OK)
935 close (ifd);
936 return ERROR;
938 break;
940 default:
941 progerror (ofname);
942 close (ifd);
943 return ERROR;
947 if (name_shortened && decompress)
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));
954 return OK;
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.
969 local char *get_suffix(name)
970 char *name;
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;
982 *suf = z_suffix;
983 if (strequ(z_suffix, "z")) suf++; /* check long suffixes first */
985 #ifdef SUFFIX_SEP
986 /* strip a version number from the file name */
988 char *v = strrchr(name, SUFFIX_SEP);
989 if (v != NULL) *v = '\0';
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);
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;
1006 } while (*++suf != NULL);
1008 return NULL;
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)
1018 int fd;
1020 /* Refuse to follow symbolic links unless -c or -f. */
1021 if (!to_stdout && !force)
1023 if (HAVE_WORKING_O_NOFOLLOW)
1024 flags |= O_NOFOLLOW;
1025 else
1027 #if HAVE_LSTAT || defined lstat
1028 if (lstat (name, st) != 0)
1029 return -1;
1030 else if (S_ISLNK (st->st_mode))
1032 errno = ELOOP;
1033 return -1;
1035 #endif
1039 fd = OPEN (name, flags, mode);
1040 if (0 <= fd && fstat (fd, st) != 0)
1042 int e = errno;
1043 close (fd);
1044 errno = e;
1045 return -1;
1047 return fd;
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.
1058 static int
1059 open_input_file (iname, sbuf)
1060 char *iname;
1061 struct stat *sbuf;
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));
1075 *suf = z_suffix;
1077 if (sizeof ifname - 1 <= strlen (iname))
1078 goto name_too_long;
1080 strcpy(ifname, iname);
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;
1087 if (!decompress || errno != ENOENT) {
1088 progerror(ifname);
1089 return -1;
1091 /* file.ext doesn't exist, try adding a suffix (after removing any
1092 * version number for VMS).
1094 s = get_suffix(ifname);
1095 if (s != NULL) {
1096 progerror(ifname); /* ifname already has z suffix and does not exist */
1097 return -1;
1099 #ifdef NO_MULTIPLE_DOTS
1100 dot = strrchr(ifname, '.');
1101 if (dot == NULL) {
1102 strcat(ifname, ".");
1103 dot = strrchr(ifname, '.');
1105 #endif
1106 ilen = strlen(ifname);
1107 if (strequ(z_suffix, ".gz")) suf++;
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)
1129 progerror (ifname);
1130 return -1;
1132 if (strequ (s0, z_suffix))
1133 z_suffix_errno = errno;
1134 } while (*++suf != NULL);
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;
1150 name_too_long:
1151 fprintf (stderr, "%s: %s: file name too long\n", program_name, iname);
1152 exit_code = ERROR;
1153 return -1;
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.
1160 local int make_ofname()
1162 char *suff; /* ofname z suffix */
1164 strcpy(ofname, ifname);
1165 /* strip a version number if any and get the gzip suffix if present: */
1166 suff = get_suffix(ofname);
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).
1173 if (!recursive && (list || test)) return OK;
1175 /* Avoid annoying messages with -r */
1176 if (verbose || (!recursive && !quiet)) {
1177 WARN((stderr,"%s: %s: unknown suffix -- ignored\n",
1178 program_name, ifname));
1180 return WARNING;
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 */
1189 /* ofname might be changed later if infile contains an original name */
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);
1198 return WARNING;
1199 } else {
1200 save_orig_name = 0;
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;
1215 /* On the Atari and some versions of MSDOS,
1216 * ENAMETOOLONG does not work correctly. So we
1217 * must truncate here.
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
1224 #endif /* NO_MULTIPLE_DOTS */
1225 if (sizeof ofname <= strlen (ofname) + z_len)
1226 goto name_too_long;
1227 strcat(ofname, z_suffix);
1229 } /* decompress ? */
1230 return OK;
1232 name_too_long:
1233 WARN ((stderr, "%s: %s: file name too long\n", program_name, ifname));
1234 return WARNING;
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.
1249 local int get_method(in)
1250 int in; /* input file descriptor */
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 */
1257 /* If --force and --stdout, zcat == cat, so do not complain about
1258 * premature end of file: use try_byte instead of get_byte.
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 */
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 */
1276 if (memcmp(magic, GZIP_MAGIC, 2) == 0
1277 || memcmp(magic, OLD_GZIP_MAGIC, 2) == 0) {
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;
1287 work = unzip;
1288 flags = (uch)get_byte();
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;
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;
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;
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)
1317 time_stamp.tv_sec = stamp;
1318 time_stamp.tv_nsec = 0;
1321 (void)get_byte(); /* Ignore extra flags for the moment */
1322 (void)get_byte(); /* Ignore OS type for the moment */
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);
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);
1339 while (len--) (void)get_byte();
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");
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 */
1366 } /* no_name || to_stdout */
1367 } /* ORIG_NAME */
1369 /* Discard file comment if any */
1370 if ((flags & COMMENT) != 0) {
1371 while (get_char() != 0) /* null */ ;
1373 if (part_nb == 1) {
1374 header_bytes = inptr + 2*sizeof(long); /* include crc and size */
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.
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;
1388 } else if (memcmp(magic, PACK_MAGIC, 2) == 0) {
1389 work = unpack;
1390 method = PACKED;
1392 } else if (memcmp(magic, LZW_MAGIC, 2) == 0) {
1393 work = unlzw;
1394 method = COMPRESSED;
1395 last_member = 1;
1397 } else if (memcmp(magic, LZH_MAGIC, 2) == 0) {
1398 work = unlzh;
1399 method = LZHED;
1400 last_member = 1;
1402 } else if (force && to_stdout && !list) { /* pass input unchanged */
1403 method = STORED;
1404 work = copy;
1405 inptr = 0;
1406 last_member = 1;
1408 if (method >= 0) return method;
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)
1418 int inbyte;
1419 for (inbyte = imagic1; inbyte == 0; inbyte = try_byte ())
1420 continue;
1421 if (inbyte == EOF)
1423 if (verbose)
1424 WARN ((stderr, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1425 program_name, ifname));
1426 return -3;
1430 WARN((stderr, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1431 program_name, ifname));
1432 return -2;
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.
1441 local void do_list(ifd, method)
1442 int ifd; /* input file descriptor */
1443 int method; /* compression method */
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;
1457 for (o = OFF_T_MAX; 9 < o; o /= 10) {
1458 positive_off_t_width++;
1461 if (first_time && method >= 0) {
1462 first_time = 0;
1463 if (verbose) {
1464 printf("method crc date time ");
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");
1471 } else if (method < 0) {
1472 if (total_in <= 0 || total_out <= 0) return;
1473 if (verbose) {
1474 printf(" ");
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(" ");
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.
1486 printf(" (totals)\n");
1487 return;
1489 crc = (ulg)~0; /* unknown */
1490 bytes_out = -1L;
1491 bytes_in = ifile_size;
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.
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();
1508 crc = LG(buf);
1509 bytes_out = LG(buf+4);
1512 #endif /* RECORD_IO */
1513 if (verbose)
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 ("??? ?? ??:?? ");
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;
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;
1541 display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out, stdout);
1542 printf(" %s\n", ofname);
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.
1552 * IN assertion: for compression, the suffix of the given name is z_suffix.
1554 local void shorten_name(name)
1555 char *name;
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;
1563 len = strlen(name);
1564 if (decompress) {
1565 if (len <= 1)
1566 gzip_error ("name too short");
1567 name[len-1] = '\0';
1568 return;
1570 p = get_suffix(name);
1571 if (! p)
1572 gzip_error ("can't recover suffix\n");
1573 *p = '\0';
1574 save_orig_name = 1;
1576 /* compress 1234567890.tar to 1234567890.tgz */
1577 if (len > 4 && strequ(p-4, ".tar")) {
1578 strcpy(p-4, ".tgz");
1579 return;
1581 /* Try keeping short extensions intact:
1582 * 1234.678.012.gz -> 123.678.012.gz
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++;
1593 } while (trunc == NULL && --min_part != 0);
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 */
1606 strcpy(trunc, z_suffix);
1609 /* ========================================================================
1610 * The compressed file already exists, so ask for confirmation.
1611 * Return ERROR if the file must be skipped.
1613 local int check_ofname()
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();
1624 if (!ok) {
1625 fprintf(stderr, "\tnot overwritten\n");
1626 if (exit_code == OK) exit_code = WARNING;
1627 return ERROR;
1630 if (xunlink (ofname)) {
1631 progerror(ofname);
1632 return ERROR;
1634 return OK;
1638 /* ========================================================================
1639 * Copy modes, times, ownership from input file to output file.
1640 * IN assertion: to_stdout is false.
1642 local void copy_stat(ifstat)
1643 struct stat *ifstat;
1645 mode_t mode = ifstat->st_mode & S_IRWXUGO;
1646 int r;
1648 #ifndef NO_UTIME
1649 struct timespec timespec[2];
1650 timespec[0] = get_stat_atime (ifstat);
1651 timespec[1] = get_stat_mtime (ifstat);
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))
1657 timespec[1] = time_stamp;
1658 if (verbose > 1) {
1659 fprintf(stderr, "%s: time stamp restored\n", ofname);
1663 if (gl_futimens (ofd, ofname, timespec) != 0)
1665 int e = errno;
1666 WARN ((stderr, "%s: ", program_name));
1667 if (!quiet)
1669 errno = e;
1670 perror (ofname);
1673 #endif
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
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);
1699 #if ! NO_DIR
1701 /* ========================================================================
1702 * Recurse through the given directory. This code is taken from ncompress.
1704 local void treat_dir (fd, dir)
1705 int fd;
1706 char *dir;
1708 struct dirent *dp;
1709 DIR *dirp;
1710 char nbuf[MAX_PATH_LEN];
1711 int len;
1713 #if HAVE_FDOPENDIR
1714 dirp = fdopendir (fd);
1715 #else
1716 close (fd);
1717 dirp = opendir(dir);
1718 #endif
1720 if (dirp == NULL) {
1721 progerror(dir);
1722 #if HAVE_FDOPENDIR
1723 close (fd);
1724 #endif
1725 return ;
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.)
1743 while ((errno = 0, dp = readdir(dirp)) != NULL) {
1745 if (strequ(dp->d_name,".") || strequ(dp->d_name,"..")) {
1746 continue;
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
1759 nbuf[len++] = PATH_SEP;
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;
1769 if (errno != 0)
1770 progerror(dir);
1771 if (CLOSEDIR(dirp) != 0)
1772 progerror(dir);
1774 #endif /* ! NO_DIR */
1776 /* Make sure signals get handled properly. */
1778 static void
1779 install_signal_handlers ()
1781 int nsigs = sizeof handled_sig / sizeof handled_sig[0];
1782 int i;
1784 #if SA_NOCLDSTOP
1785 struct sigaction act;
1787 sigemptyset (&caught_signals);
1788 for (i = 0; i < nsigs; i++)
1790 sigaction (handled_sig[i], NULL, &act);
1791 if (act.sa_handler != SIG_IGN)
1792 sigaddset (&caught_signals, handled_sig[i]);
1795 act.sa_handler = abort_gzip_signal;
1796 act.sa_mask = caught_signals;
1797 act.sa_flags = 0;
1799 for (i = 0; i < nsigs; i++)
1800 if (sigismember (&caught_signals, handled_sig[i]))
1802 if (i == 0)
1803 foreground = 1;
1804 sigaction (handled_sig[i], &act, NULL);
1806 #else
1807 for (i = 0; i < nsigs; i++)
1808 if (signal (handled_sig[i], SIG_IGN) != SIG_IGN)
1810 if (i == 0)
1811 foreground = 1;
1812 signal (handled_sig[i], abort_gzip_signal);
1813 siginterrupt (handled_sig[i], 1);
1815 #endif
1818 /* ========================================================================
1819 * Free all dynamically allocated variables and exit with the given code.
1821 local void do_exit(exitcode)
1822 int exitcode;
1824 static int in_exit = 0;
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);
1845 /* ========================================================================
1846 * Close and unlink the output file.
1848 static void
1849 remove_output_file ()
1851 int fd;
1852 sigset_t oldset;
1854 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1855 fd = remove_ofname_fd;
1856 if (0 <= fd)
1858 remove_ofname_fd = -1;
1859 close (fd);
1860 xunlink (ofname);
1862 sigprocmask (SIG_SETMASK, &oldset, NULL);
1865 /* ========================================================================
1866 * Error handler.
1868 void
1869 abort_gzip ()
1871 remove_output_file ();
1872 do_exit(ERROR);
1875 /* ========================================================================
1876 * Signal handler.
1878 static RETSIGTYPE
1879 abort_gzip_signal (sig)
1880 int sig;
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);