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)
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.",
38 /* Compress files with zip algorithm and 'compress' interface.
39 * See help() function below for all options.
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.
58 #include <sys/types.h>
69 #include "fcntl-safer.h"
71 #include "stat-time.h"
87 #if defined STDC_HEADERS || defined HAVE_STDLIB_H
98 # ifndef _D_EXACT_NAMLEN
99 # define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
104 # define CLOSEDIR(d) (closedir(d), 0)
106 # define CLOSEDIR(d) closedir(d)
110 # include <utimens.h>
113 #define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
116 # define MAX_PATH_LEN 1024 /* max pathname length */
128 off_t lseek
OF((int fd
, off_t offset
, int whence
));
132 #define OFF_T_MIN (~ (off_t) 0 << (sizeof (off_t) * CHAR_BIT - 1))
136 #define OFF_T_MAX (~ (off_t) 0 - OFF_T_MIN)
139 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
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 */
150 #ifndef HAVE_WORKING_O_NOFOLLOW
151 # define HAVE_WORKING_O_NOFOLLOW 0
155 # define ELOOP EINVAL
158 /* Separator for file name parts (see shorten_name()) */
159 #ifdef NO_MULTIPLE_DOTS
160 # define PART_SEP "-"
162 # define PART_SEP "."
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
);
172 DECLARE(ush
, tab_prefix
, 1L<<BITS
);
174 DECLARE(ush
, tab_prefix0
, 1L<<(BITS
-1));
175 DECLARE(ush
, tab_prefix1
, 1L<<(BITS
-1));
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. */
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) */
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 */
313 local
void treat_dir
OF((int fd
, char *dir
));
316 #define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
321 fprintf (stderr
, "Try `%s --help' for more information.\n",
326 /* ======================================================================== */
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.",
335 " -a, --ascii ascii text; convert end-of-line using local conventions",
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",
346 " -m, --no-time do not save or restore the original modification time",
347 " -M, --time save or restore the original modification time",
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",
353 " -r, --recursive operate recursively on directories",
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",
362 " -Z, --lzw produce output compatible with old compress",
363 " -b, --bits=BITS max number of bits per code (implies -Z)",
366 "With no FILE, or when FILE is -, read standard input.",
368 "Report bugs to <bug-gzip@gnu.org>.",
372 printf ("Usage: %s [OPTION]... [FILE]...\n", program_name
);
373 while (*p
) printf ("%s\n", *p
++);
376 /* ======================================================================== */
379 char **p
= license_msg
;
381 printf ("%s %s\n", program_name
, VERSION
);
382 while (*p
) printf ("%s\n", *p
++);
385 /* ======================================================================== */
390 printf ("Written by Jean-loup Gailly.\n");
393 local
void progerror (string
)
397 fprintf (stderr
, "%s: ", program_name
);
403 /* ======================================================================== */
404 int main (argc
, 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
;
428 # define GNU_STANDARD 1
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 */
441 else if (strequ (program_name
+ 1, "cat") /* zcat, pcat, gcat */
442 || strequ (program_name
, "gzcat")) /* gzcat */
443 decompress
= to_stdout
= 1;
447 z_len
= strlen(z_suffix
);
449 while ((optc
= getopt_long (argc
, argv
, "ab:cdfhH?lLmMnNqrS:tvVZ123456789",
450 longopts
, (int *)0)) != -1) {
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",
465 to_stdout
= 1; break;
467 decompress
= 1; break;
471 help(); do_exit(OK
); break;
473 list
= decompress
= to_stdout
= 1; break;
475 license(); do_exit(OK
); break;
476 case 'm': /* undocumented, may change later */
478 case 'M': /* undocumented, may change later */
481 no_name
= no_time
= 1; break;
483 no_name
= no_time
= 0; break;
485 quiet
= 1; verbose
= 0; break;
488 fprintf (stderr
, "%s: -r not supported on this system\n",
496 #ifdef NO_MULTIPLE_DOTS
497 if (*optarg
== '.') optarg
++;
499 z_len
= strlen(optarg
);
503 test
= decompress
= to_stdout
= 1;
506 verbose
++; quiet
= 0; break;
508 version(); do_exit(OK
); break;
513 fprintf(stderr
, "%s: -Z not supported in this version\n",
518 case '1': case '2': case '3': case '4':
519 case '5': case '6': case '7': case '8': case '9':
523 /* Error message already emitted by getopt_long. */
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
;
538 if (ascii
&& !quiet
) {
539 fprintf(stderr
, "%s: option --ascii ignored on this system\n",
543 if ((z_len
== 0 && !decompress
) || z_len
> MAX_SUFFIX
) {
544 fprintf(stderr
, "%s: incorrect suffix '%s'\n",
545 program_name
, z_suffix
);
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
);
556 ALLOC(ush
, tab_prefix
, 1L<<BITS
);
558 ALLOC(ush
, tab_prefix0
, 1L<<(BITS
-1));
559 ALLOC(ush
, tab_prefix1
, 1L<<(BITS
-1));
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 */
576 if (list
&& !quiet
&& file_count
> 1) {
577 do_list(-1, -1); /* print totals */
580 return exit_code
; /* just to avoid lint warning */
583 /* Return nonzero when at end of file on input. */
587 if (!decompress
|| last_member
)
592 if (insize
!= INBUFSIZ
|| fill_inbuf (1) == EOF
)
595 /* Unget the char that fill_inbuf got. */
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.
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
);
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");
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 */
654 method
= get_method(ifd
);
656 do_exit(exit_code
); /* error message already emitted */
660 do_list(ifd
, method
);
664 /* Actually do the compression/decompression. Loop over zipped members.
667 if ((*work
)(fileno(stdin
), fileno(stdout
)) != OK
) return;
672 method
= get_method(ifd
);
673 if (method
< 0) return; /* error message already emitted */
674 bytes_out
= 0; /* required for length check */
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
686 display_ratio(bytes_out
-(bytes_in
-header_bytes
), bytes_out
,stderr
);
687 fprintf(stderr
, "\n");
693 /* ========================================================================
694 * Compress or decompress the given file
696 local
void treat_file(iname
)
699 /* Accept "-" as synonym for stdin */
700 if (strequ(iname
, "-")) {
701 int cflag
= to_stdout
;
707 /* Check if the input file is present, set ifname and istat: */
708 ifd
= open_input_file (iname
, &istat
);
712 /* If the input name is that of a directory, recurse or ignore: */
713 if (S_ISDIR(istat
.st_mode
)) {
716 treat_dir (ifd
, iname
);
717 /* Warning: ifname is now garbage */
722 WARN ((stderr
, "%s: %s is a directory -- ignored\n",
723 program_name
, ifname
));
729 if (! S_ISREG (istat
.st_mode
))
732 "%s: %s is not a directory or a regular file - ignored\n",
733 program_name
, ifname
));
737 if (istat
.st_mode
& S_ISUID
)
739 WARN ((stderr
, "%s: %s is set-user-ID on execution - ignored\n",
740 program_name
, ifname
));
744 if (istat
.st_mode
& S_ISGID
)
746 WARN ((stderr
, "%s: %s is set-group-ID on execution - ignored\n",
747 program_name
, ifname
));
754 if (istat
.st_mode
& S_ISVTX
)
757 "%s: %s has the sticky bit set - file ignored\n",
758 program_name
, ifname
));
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'));
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
) {
790 clear_bufs(); /* clear input and output buffers */
794 method
= get_method(ifd
); /* updates ofname if original given */
797 return; /* error message already emitted */
801 do_list(ifd
, method
);
802 if (close (ifd
) != 0)
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.
812 ofd
= fileno(stdout
);
813 /* Keep remove_ofname_fd negative. */
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
;
826 fprintf(stderr
, "%s:\t", ifname
);
829 /* Actually do the compression/decompression. Loop over zipped members.
832 if ((*work
)(ifd
, ofd
) != OK
) {
833 method
= -1; /* force cleanup */
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)
854 if (close (ofd
) != 0)
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
);
864 WARN ((stderr
, "%s: ", program_name
));
867 errno
= unlink_errno
;
875 remove_output_file ();
879 /* Display statistics */
882 fprintf(stderr
, " OK");
883 } else if (decompress
) {
884 display_ratio(bytes_out
-(bytes_in
-header_bytes
), bytes_out
,stderr
);
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
));
915 sigprocmask (SIG_BLOCK
, &caught_signals
, &oldset
);
916 remove_ofname_fd
= ofd
= OPEN (ofname
, flags
, RW_USER
);
918 sigprocmask (SIG_SETMASK
, &oldset
, NULL
);
927 shorten_name (ofname
);
933 if (check_ofname () != OK
)
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
));
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
)
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",
980 char **suf
= known_suffixes
;
983 if (strequ(z_suffix
, "z")) suf
++; /* check long suffixes first */
986 /* strip a version number from the file name */
988 char *v
= strrchr(name
, SUFFIX_SEP
);
989 if (v
!= NULL
) *v
= '\0';
993 if (nlen
<= MAX_SUFFIX
+2) {
994 strcpy(suffix
, name
);
996 strcpy(suffix
, name
+nlen
-MAX_SUFFIX
-2);
999 slen
= strlen(suffix
);
1001 int s
= strlen(*suf
);
1002 if (slen
> s
&& suffix
[slen
-s
-1] != PATH_SEP
1003 && strequ(suffix
+ slen
- s
, *suf
)) {
1006 } while (*++suf
!= 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. */
1016 open_and_stat (char *name
, int flags
, mode_t mode
, struct stat
*st
)
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
;
1027 #if HAVE_LSTAT || defined lstat
1028 if (lstat (name
, st
) != 0)
1030 else if (S_ISLNK (st
->st_mode
))
1039 fd
= OPEN (name
, flags
, mode
);
1040 if (0 <= fd
&& fstat (fd
, st
) != 0)
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.
1059 open_input_file (iname
, 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
;
1068 #ifdef NO_MULTIPLE_DOTS
1069 char *dot
; /* pointer to ifname extension, or NULL */
1072 int open_flags
= (O_RDONLY
| O_NONBLOCK
| O_NOCTTY
1073 | (ascii
&& !decompress
? 0 : O_BINARY
));
1077 if (sizeof ifname
- 1 <= strlen (iname
))
1080 strcpy(ifname
, iname
);
1082 /* If input file exists, return OK. */
1083 fd
= open_and_stat (ifname
, open_flags
, RW_USER
, sbuf
);
1087 if (!decompress
|| errno
!= ENOENT
) {
1091 /* file.ext doesn't exist, try adding a suffix (after removing any
1092 * version number for VMS).
1094 s
= get_suffix(ifname
);
1096 progerror(ifname
); /* ifname already has z suffix and does not exist */
1099 #ifdef NO_MULTIPLE_DOTS
1100 dot
= strrchr(ifname
, '.');
1102 strcat(ifname
, ".");
1103 dot
= strrchr(ifname
, '.');
1106 ilen
= strlen(ifname
);
1107 if (strequ(z_suffix
, ".gz")) suf
++;
1109 /* Search for all suffixes */
1111 char *s0
= s
= *suf
;
1112 strcpy (ifname
, iname
);
1113 #ifdef NO_MULTIPLE_DOTS
1115 if (*dot
== '\0') strcpy (dot
, ".");
1117 #ifdef MAX_EXT_CHARS
1118 if (MAX_EXT_CHARS
< strlen (s
) + strlen (dot
+ 1))
1119 dot
[MAX_EXT_CHARS
+ 1 - strlen (s
)] = '\0';
1121 if (sizeof ifname
<= ilen
+ strlen (s
))
1124 fd
= open_and_stat (ifname
, open_flags
, RW_USER
, sbuf
);
1127 if (errno
!= ENOENT
)
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
, ".");
1141 #ifdef MAX_EXT_CHARS
1142 if (MAX_EXT_CHARS
< z_len
+ strlen (dot
+ 1))
1143 dot
[MAX_EXT_CHARS
+ 1 - z_len
] = '\0';
1145 strcat(ifname
, z_suffix
);
1146 errno
= z_suffix_errno
;
1151 fprintf (stderr
, "%s: %s: file name too long\n", program_name
, iname
);
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
);
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
));
1182 /* Make a special case for .tgz and .taz: */
1184 if (strequ(suff
, ".tgz") || strequ(suff
, ".taz")) {
1185 strcpy(suff
, ".tar");
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
);
1202 #ifdef NO_MULTIPLE_DOTS
1203 suff
= strrchr(ofname
, '.');
1205 if (sizeof ofname
<= strlen (ofname
) + 1)
1207 strcat(ofname
, ".");
1208 # ifdef MAX_EXT_CHARS
1209 if (strequ(z_suffix
, "z")) {
1210 if (sizeof ofname
<= strlen (ofname
) + 2)
1212 strcat(ofname
, "gz"); /* enough room */
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';
1224 #endif /* NO_MULTIPLE_DOTS */
1225 if (sizeof ofname
<= strlen (ofname
) + z_len
)
1227 strcat(ofname
, z_suffix
);
1229 } /* decompress ? */
1233 WARN ((stderr
, "%s: %s: file name too long\n", program_name
, ifname
));
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. */
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 */
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
) {
1282 "%s: %s: unknown method %d -- not supported\n",
1283 program_name
, ifname
, method
);
1288 flags
= (uch
)get_byte();
1290 if ((flags
& ENCRYPTED
) != 0) {
1292 "%s: %s is encrypted -- not supported\n",
1293 program_name
, ifname
);
1297 if ((flags
& CONTINUATION
) != 0) {
1299 "%s: %s is a multi-part gzip file -- not supported\n",
1300 program_name
, ifname
);
1302 if (force
<= 1) return -1;
1304 if ((flags
& RESERVED
) != 0) {
1306 "%s: %s has flags 0x%x -- not supported\n",
1307 program_name
, ifname
, flags
);
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;
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;
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);
1349 /* Copy the base name. Keep a directory prefix intact. */
1350 char *p
= gzip_base_name (ofname
);
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: */
1363 MAKE_LEGAL_NAME(base
);
1364 if (base
) list
=0; /* avoid warning about unused variable */
1366 } /* no_name || to_stdout */
1369 /* Discard file comment if any */
1370 if ((flags
& COMMENT
) != 0) {
1371 while (get_char() != 0) /* null */ ;
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.
1384 if (check_zipfile(in
) != OK
) return -1;
1385 /* check_zipfile may get ofname from the local header */
1388 } else if (memcmp(magic
, PACK_MAGIC
, 2) == 0) {
1392 } else if (memcmp(magic
, LZW_MAGIC
, 2) == 0) {
1394 method
= COMPRESSED
;
1397 } else if (memcmp(magic
, LZH_MAGIC
, 2) == 0) {
1402 } else if (force
&& to_stdout
&& !list
) { /* pass input unchanged */
1408 if (method
>= 0) return method
;
1411 fprintf (stderr
, "\n%s: %s: not in gzip format\n",
1412 program_name
, ifname
);
1419 for (inbyte
= imagic1
; inbyte
== 0; inbyte
= try_byte ())
1424 WARN ((stderr
, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1425 program_name
, ifname
));
1430 WARN((stderr
, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1431 program_name
, ifname
));
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
] = {
1452 "", "", "", "", /* 4 to 7 reserved */
1454 int positive_off_t_width
= 1;
1457 for (o
= OFF_T_MAX
; 9 < o
; o
/= 10) {
1458 positive_off_t_width
++;
1461 if (first_time
&& method
>= 0) {
1464 printf("method crc date time ");
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;
1476 if (verbose
|| !quiet
) {
1477 fprint_off(stdout
, total_in
, positive_off_t_width
);
1479 fprint_off(stdout
, total_out
, positive_off_t_width
);
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");
1489 crc
= (ulg
)~0; /* unknown */
1491 bytes_in
= ifile_size
;
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) {
1505 if (read(ifd
, (char*)buf
, sizeof(buf
)) != sizeof(buf
)) {
1509 bytes_out
= LG(buf
+4);
1512 #endif /* RECORD_IO */
1515 struct tm
*tm
= localtime (&time_stamp
.tv_sec
);
1516 printf ("%5s %08lx ", methods
[method
], crc
);
1518 printf ("%s%3d %02d:%02d ",
1519 ("Jan\0Feb\0Mar\0Apr\0May\0Jun\0Jul\0Aug\0Sep\0Oct\0Nov\0Dec"
1521 tm
->tm_mday
, tm
->tm_hour
, tm
->tm_min
);
1523 printf ("??? ?? ??:?? ");
1525 fprint_off(stdout
, bytes_in
, positive_off_t_width
);
1527 fprint_off(stdout
, bytes_out
, positive_off_t_width
);
1529 if (bytes_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) {
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
)
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 */
1566 gzip_error ("name too short");
1570 p
= get_suffix(name
);
1572 gzip_error ("can't recover suffix\n");
1576 /* compress 1234567890.tar to 1234567890.tgz */
1577 if (len
> 4 && strequ(p
-4, ".tar")) {
1578 strcpy(p
-4, ".tgz");
1581 /* Try keeping short extensions intact:
1582 * 1234.678.012.gz -> 123.678.012.gz
1585 p
= strrchr(name
, PATH_SEP
);
1588 plen
= strcspn(p
, PART_SEP
);
1590 if (plen
> min_part
) trunc
= p
-1;
1593 } while (trunc
== NULL
&& --min_part
!= 0);
1595 if (trunc
!= NULL
) {
1597 trunc
[0] = trunc
[1];
1601 trunc
= strrchr(name
, PART_SEP
[0]);
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 */
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)? ");
1625 fprintf(stderr
, "\tnot overwritten\n");
1626 if (exit_code
== OK
) exit_code
= WARNING
;
1630 if (xunlink (ofname
)) {
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
;
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
;
1659 fprintf(stderr
, "%s: time stamp restored\n", ofname
);
1663 if (gl_futimens (ofd
, ofname
, timespec
) != 0)
1666 WARN ((stderr
, "%s: ", program_name
));
1677 fchown (ofd
, ifstat
->st_uid
, ifstat
->st_gid
); /* Copy ownership */
1679 chown(ofname
, ifstat
->st_uid
, ifstat
->st_gid
); /* Copy ownership */
1683 /* Copy the protection modes */
1685 r
= fchmod (ofd
, mode
);
1687 r
= chmod (ofname
, mode
);
1691 WARN ((stderr
, "%s: ", program_name
));
1701 /* ========================================================================
1702 * Recurse through the given directory. This code is taken from ncompress.
1704 local
void treat_dir (fd
, dir
)
1710 char nbuf
[MAX_PATH_LEN
];
1714 dirp
= fdopendir (fd
);
1717 dirp
= opendir(dir
);
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
,"..")) {
1749 if (len
+ _D_EXACT_NAMLEN (dp
) + 1 < MAX_PATH_LEN
- 1) {
1751 if (len
!= 0 /* dir = "" means current dir on Amiga */
1753 && dir
[len
-1] != PATH_SEP2
1756 && dir
[len
-1] != PATH_SEP3
1759 nbuf
[len
++] = PATH_SEP
;
1761 strcpy(nbuf
+len
, dp
->d_name
);
1764 fprintf(stderr
,"%s: %s/%s: pathname too long\n",
1765 program_name
, dir
, dp
->d_name
);
1771 if (CLOSEDIR(dirp
) != 0)
1774 #endif /* ! NO_DIR */
1776 /* Make sure signals get handled properly. */
1779 install_signal_handlers ()
1781 int nsigs
= sizeof handled_sig
/ sizeof handled_sig
[0];
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
;
1799 for (i
= 0; i
< nsigs
; i
++)
1800 if (sigismember (&caught_signals
, handled_sig
[i
]))
1804 sigaction (handled_sig
[i
], &act
, NULL
);
1807 for (i
= 0; i
< nsigs
; i
++)
1808 if (signal (handled_sig
[i
], SIG_IGN
) != SIG_IGN
)
1812 signal (handled_sig
[i
], abort_gzip_signal
);
1813 siginterrupt (handled_sig
[i
], 1);
1818 /* ========================================================================
1819 * Free all dynamically allocated variables and exit with the given code.
1821 local
void do_exit(exitcode
)
1824 static int in_exit
= 0;
1826 if (in_exit
) exit(exitcode
);
1845 /* ========================================================================
1846 * Close and unlink the output file.
1849 remove_output_file ()
1854 sigprocmask (SIG_BLOCK
, &caught_signals
, &oldset
);
1855 fd
= remove_ofname_fd
;
1858 remove_ofname_fd
= -1;
1862 sigprocmask (SIG_SETMASK
, &oldset
, NULL
);
1865 /* ========================================================================
1871 remove_output_file ();
1875 /* ========================================================================
1879 abort_gzip_signal (sig
)
1883 signal (sig
, SIG_IGN
);
1884 remove_output_file ();
1885 if (sig
== exiting_signal
)
1887 signal (sig
, SIG_DFL
);