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