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