gzip: fdatasync output dir before unlinking
[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(fileno(stdout));
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(fileno((FILE *)(decompress ? stdin : stdout))))) {
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(fileno(stdin));
705     }
706     if (!test && !list && (!decompress || !ascii)) {
707         SET_BINARY_MODE(fileno(stdout));
708     }
709     strcpy(ifname, "stdin");
710     strcpy(ofname, "stdout");
711
712     /* Get the file's time stamp and size.  */
713     if (fstat (fileno (stdin), &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 = fileno(stdin);
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)(fileno(stdin), fileno(stdout)) != OK) return;
748
749         if (input_eof ())
750           break;
751
752         method = get_method(ifd);
753         if (method < 0) return; /* error message already emitted */
754         bytes_out = 0;            /* required for length check */
755     }
756
757     if (verbose) {
758         if (test) {
759             fprintf(stderr, " OK\n");
760
761         } else if (!decompress) {
762             display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
763             fprintf(stderr, "\n");
764 #ifdef DISPLAY_STDIN_RATIO
765         } else {
766             display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
767             fprintf(stderr, "\n");
768 #endif
769         }
770     }
771 }
772
773 static char const dot = '.';
774
775 /* True if the cached directory for calls to openat etc. is DIR, with
776    length DIRLEN.  DIR need not be null-terminated.  DIRLEN must be
777    less than MAX_PATH_LEN.  */
778 static bool
779 atdir_eq (char const *dir, ptrdiff_t dirlen)
780 {
781   if (dirlen == 0)
782     dir = &dot, dirlen = 1;
783   return memcmp (dfname, dir, dirlen) == 0 && !dfname[dirlen];
784 }
785
786 /* Set the directory used for calls to openat etc. to be the directory
787    DIR, with length DIRLEN.  DIR need not be null-terminated.
788    DIRLEN must be less than MAX_PATH_LEN.  Return a file descriptor for
789    the directory, or -1 if one could not be obtained.  */
790 static int
791 atdir_set (char const *dir, ptrdiff_t dirlen)
792 {
793   /* Don't bother opening directories on older systems that
794      lack openat and unlinkat.  It's not worth the porting hassle.  */
795   #if HAVE_OPENAT && HAVE_UNLINKAT
796     enum { try_opening_directories = true };
797   #else
798     enum { try_opening_directories = false };
799   #endif
800
801   if (try_opening_directories && ! atdir_eq (dir, dirlen))
802     {
803       if (0 <= dfd)
804         close (dfd);
805       if (dirlen == 0)
806         dir = &dot, dirlen = 1;
807       memcpy (dfname, dir, dirlen);
808       dfname[dirlen] = '\0';
809       dfd = open (dfname, O_SEARCH | O_DIRECTORY);
810     }
811
812   return dfd;
813 }
814
815 /* ========================================================================
816  * Compress or decompress the given file
817  */
818 local void treat_file(iname)
819     char *iname;
820 {
821     /* Accept "-" as synonym for stdin */
822     if (strequ(iname, "-")) {
823         int cflag = to_stdout;
824         treat_stdin();
825         to_stdout = cflag;
826         return;
827     }
828
829     /* Check if the input file is present, set ifname and istat: */
830     ifd = open_input_file (iname, &istat);
831     if (ifd < 0)
832       return;
833
834     /* If the input name is that of a directory, recurse or ignore: */
835     if (S_ISDIR(istat.st_mode)) {
836 #if ! NO_DIR
837         if (recursive) {
838             treat_dir (ifd, iname);
839             /* Warning: ifname is now garbage */
840             return;
841         }
842 #endif
843         close (ifd);
844         WARN ((stderr, "%s: %s is a directory -- ignored\n",
845                program_name, ifname));
846         return;
847     }
848
849     if (! to_stdout)
850       {
851         if (! S_ISREG (istat.st_mode))
852           {
853             WARN ((stderr,
854                    "%s: %s is not a directory or a regular file - ignored\n",
855                    program_name, ifname));
856             close (ifd);
857             return;
858           }
859         if (istat.st_mode & S_ISUID)
860           {
861             WARN ((stderr, "%s: %s is set-user-ID on execution - ignored\n",
862                    program_name, ifname));
863             close (ifd);
864             return;
865           }
866         if (istat.st_mode & S_ISGID)
867           {
868             WARN ((stderr, "%s: %s is set-group-ID on execution - ignored\n",
869                    program_name, ifname));
870             close (ifd);
871             return;
872           }
873
874         if (! force)
875           {
876             if (istat.st_mode & S_ISVTX)
877               {
878                 WARN ((stderr,
879                        "%s: %s has the sticky bit set - file ignored\n",
880                        program_name, ifname));
881                 close (ifd);
882                 return;
883               }
884             if (2 <= istat.st_nlink)
885               {
886                 WARN ((stderr, "%s: %s has %lu other link%c -- unchanged\n",
887                        program_name, ifname,
888                        (unsigned long int) istat.st_nlink - 1,
889                        istat.st_nlink == 2 ? ' ' : 's'));
890                 close (ifd);
891                 return;
892               }
893           }
894       }
895
896     ifile_size = S_ISREG (istat.st_mode) ? istat.st_size : -1;
897     time_stamp.tv_nsec = -1;
898     if (!no_time || list)
899       time_stamp = get_stat_mtime (&istat);
900
901     /* Generate output file name. For -r and (-t or -l), skip files
902      * without a valid gzip suffix (check done in make_ofname).
903      */
904     if (to_stdout && !list && !test) {
905         strcpy(ofname, "stdout");
906
907     } else if (make_ofname() != OK) {
908         close (ifd);
909         return;
910     }
911
912     clear_bufs(); /* clear input and output buffers */
913     part_nb = 0;
914
915     if (decompress) {
916         method = get_method(ifd); /* updates ofname if original given */
917         if (method < 0) {
918             close(ifd);
919             return;               /* error message already emitted */
920         }
921     }
922     if (list) {
923         do_list(ifd, method);
924         if (close (ifd) != 0)
925           read_error ();
926         return;
927     }
928
929     /* If compressing to a file, check if ofname is not ambiguous
930      * because the operating system truncates names. Otherwise, generate
931      * a new ofname and save the original name in the compressed file.
932      */
933     if (to_stdout) {
934         ofd = fileno(stdout);
935         /* Keep remove_ofname_fd negative.  */
936     } else {
937         if (create_outfile() != OK) return;
938
939         if (!decompress && save_orig_name && !verbose && !quiet) {
940             fprintf(stderr, "%s: %s compressed to %s\n",
941                     program_name, ifname, ofname);
942         }
943     }
944     /* Keep the name even if not truncated except with --no-name: */
945     if (!save_orig_name) save_orig_name = !no_name;
946
947     if (verbose) {
948         fprintf(stderr, "%s:\t", ifname);
949     }
950
951     /* Actually do the compression/decompression. Loop over zipped members.
952      */
953     for (;;) {
954         if ((*work)(ifd, ofd) != OK) {
955             method = -1; /* force cleanup */
956             break;
957         }
958
959         if (input_eof ())
960           break;
961
962         method = get_method(ifd);
963         if (method < 0) break;    /* error message already emitted */
964         bytes_out = 0;            /* required for length check */
965     }
966
967     if (close (ifd) != 0)
968       read_error ();
969
970     if (!to_stdout)
971       {
972         copy_stat (&istat);
973
974         /* If KEEP, transfer output data to the output file's storage device.
975            Otherwise, if the system crashed now the user might lose
976            both input and output data.  See: Pillai TS et al.  All
977            file systems are not created equal: on the complexity of
978            crafting crash-consistent applications. OSDI'14. 2014:433-48.
979            https://www.usenix.org/conference/osdi14/technical-sessions/presentation/pillai  */
980         if ((!keep
981              && ((0 <= dfd && fdatasync (dfd) != 0 && errno != EINVAL)
982                  || (fsync (ofd) != 0 && errno != EINVAL)))
983             || close (ofd) != 0)
984           write_error ();
985
986         if (!keep)
987           {
988             sigset_t oldset;
989             int unlink_errno;
990             char *ifbase = last_component (ifname);
991             int ufd = atdir_eq (ifname, ifbase - ifname) ? dfd : -1;
992             int res;
993
994             sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
995             remove_ofname_fd = -1;
996             res = ufd < 0 ? xunlink (ifname) : unlinkat (ufd, ifbase, 0);
997             unlink_errno = res == 0 ? 0 : errno;
998             sigprocmask (SIG_SETMASK, &oldset, NULL);
999
1000             if (unlink_errno)
1001               {
1002                 WARN ((stderr, "%s: ", program_name));
1003                 if (!quiet)
1004                   {
1005                     errno = unlink_errno;
1006                     perror (ifname);
1007                   }
1008               }
1009           }
1010       }
1011
1012     if (method == -1) {
1013         if (!to_stdout)
1014           remove_output_file ();
1015         return;
1016     }
1017
1018     /* Display statistics */
1019     if(verbose) {
1020         if (test) {
1021             fprintf(stderr, " OK");
1022         } else if (decompress) {
1023             display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out,stderr);
1024         } else {
1025             display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr);
1026         }
1027         if (!test && !to_stdout)
1028           fprintf(stderr, " -- %s %s", keep ? "created" : "replaced with",
1029                   ofname);
1030         fprintf(stderr, "\n");
1031     }
1032 }
1033
1034 /* ========================================================================
1035  * Create the output file. Return OK or ERROR.
1036  * Try several times if necessary to avoid truncating the z_suffix. For
1037  * example, do not create a compressed file of name "1234567890123."
1038  * Sets save_orig_name to true if the file name has been truncated.
1039  * IN assertions: the input file has already been open (ifd is set) and
1040  *   ofname has already been updated if there was an original name.
1041  * OUT assertions: ifd and ofd are closed in case of error.
1042  */
1043 local int create_outfile()
1044 {
1045   int name_shortened = 0;
1046   int flags = (O_WRONLY | O_CREAT | O_EXCL
1047                | (ascii && decompress ? 0 : O_BINARY));
1048   char const *base = ofname;
1049   int atfd = AT_FDCWD;
1050
1051   if (!keep)
1052     {
1053       char const *b = last_component (ofname);
1054       int f = atdir_set (ofname, b - ofname);
1055       if (0 <= f)
1056         {
1057           base = b;
1058           atfd = f;
1059         }
1060     }
1061
1062   for (;;)
1063     {
1064       int open_errno;
1065       sigset_t oldset;
1066
1067       sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1068       remove_ofname_fd = ofd = openat (atfd, base, flags, S_IRUSR | S_IWUSR);
1069       open_errno = errno;
1070       sigprocmask (SIG_SETMASK, &oldset, NULL);
1071
1072       if (0 <= ofd)
1073         break;
1074
1075       switch (open_errno)
1076         {
1077 #ifdef ENAMETOOLONG
1078         case ENAMETOOLONG:
1079           shorten_name (ofname);
1080           name_shortened = 1;
1081           break;
1082 #endif
1083
1084         case EEXIST:
1085           if (check_ofname () != OK)
1086             {
1087               close (ifd);
1088               return ERROR;
1089             }
1090           break;
1091
1092         default:
1093           progerror (ofname);
1094           close (ifd);
1095           return ERROR;
1096         }
1097     }
1098
1099   if (name_shortened && decompress)
1100     {
1101       /* name might be too long if an original name was saved */
1102       WARN ((stderr, "%s: %s: warning, name truncated\n",
1103              program_name, ofname));
1104     }
1105
1106   return OK;
1107 }
1108
1109 /* ========================================================================
1110  * Return a pointer to the 'z' suffix of a file name, or NULL. For all
1111  * systems, ".gz", ".z", ".Z", ".taz", ".tgz", "-gz", "-z" and "_z" are
1112  * accepted suffixes, in addition to the value of the --suffix option.
1113  * ".tgz" is a useful convention for tar.z files on systems limited
1114  * to 3 characters extensions. On such systems, ".?z" and ".??z" are
1115  * also accepted suffixes. For Unix, we do not want to accept any
1116  * .??z suffix as indicating a compressed file; some people use .xyz
1117  * to denote volume data.
1118  *   On systems allowing multiple versions of the same file (such as VMS),
1119  * this function removes any version suffix in the given name.
1120  */
1121 local char *get_suffix(name)
1122     char *name;
1123 {
1124     int nlen, slen;
1125     char suffix[MAX_SUFFIX+3]; /* last chars of name, forced to lower case */
1126     static char const *known_suffixes[] =
1127        {NULL, ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z",
1128 #ifdef MAX_EXT_CHARS
1129           "z",
1130 #endif
1131         NULL, NULL};
1132     char const **suf;
1133     bool suffix_of_builtin = false;
1134
1135     /* Normally put Z_SUFFIX at the start of KNOWN_SUFFIXES, but if it
1136        is a suffix of one of them, put it at the end.  */
1137     for (suf = known_suffixes + 1; *suf; suf++)
1138       {
1139         size_t suflen = strlen (*suf);
1140         if (z_len < suflen && strequ (z_suffix, *suf + suflen - z_len))
1141           {
1142             suffix_of_builtin = true;
1143             break;
1144           }
1145       }
1146     known_suffixes[suffix_of_builtin
1147                    ? sizeof known_suffixes / sizeof *known_suffixes - 2
1148                    : 0] = z_suffix;
1149     suf = known_suffixes + suffix_of_builtin;
1150
1151 #ifdef SUFFIX_SEP
1152     /* strip a version number from the file name */
1153     {
1154         char *v = strrchr(name, SUFFIX_SEP);
1155         if (v != NULL) *v = '\0';
1156     }
1157 #endif
1158     nlen = strlen(name);
1159     if (nlen <= MAX_SUFFIX+2) {
1160         strcpy(suffix, name);
1161     } else {
1162         strcpy(suffix, name+nlen-MAX_SUFFIX-2);
1163     }
1164     strlwr(suffix);
1165     slen = strlen(suffix);
1166     do {
1167        int s = strlen(*suf);
1168        if (slen > s && suffix[slen-s-1] != PATH_SEP
1169            && strequ(suffix + slen - s, *suf)) {
1170            return name+nlen-s;
1171        }
1172     } while (*++suf != NULL);
1173
1174     return NULL;
1175 }
1176
1177
1178 /* Open file NAME with the given flags and store its status
1179    into *ST.  Return a file descriptor to the newly opened file, or -1
1180    (setting errno) on failure.  */
1181 static int
1182 open_and_stat (char *name, int flags, struct stat *st)
1183 {
1184   int fd;
1185   int atfd = AT_FDCWD;
1186   char const *base = name;
1187
1188   /* Refuse to follow symbolic links unless -c or -f.  */
1189   if (!to_stdout && !force)
1190     {
1191       if (HAVE_WORKING_O_NOFOLLOW)
1192         flags |= O_NOFOLLOW;
1193       else
1194         {
1195 #if HAVE_LSTAT || defined lstat
1196           if (lstat (name, st) != 0)
1197             return -1;
1198           else if (S_ISLNK (st->st_mode))
1199             {
1200               errno = ELOOP;
1201               return -1;
1202             }
1203 #endif
1204         }
1205     }
1206
1207   if (!keep)
1208     {
1209       char const *b = last_component (name);
1210       int f = atdir_set (name, b - name);
1211       if (0 <= f)
1212         {
1213           base = b;
1214           atfd = f;
1215         }
1216     }
1217
1218   fd = openat (atfd, base, flags);
1219   if (0 <= fd && fstat (fd, st) != 0)
1220     {
1221       int e = errno;
1222       close (fd);
1223       errno = e;
1224       return -1;
1225     }
1226   return fd;
1227 }
1228
1229
1230 /* ========================================================================
1231  * Set ifname to the input file name (with a suffix appended if necessary)
1232  * and istat to its stats. For decompression, if no file exists with the
1233  * original name, try adding successively z_suffix, .gz, .z, -z and .Z.
1234  * For MSDOS, we try only z_suffix and z.
1235  * Return an open file descriptor or -1.
1236  */
1237 static int
1238 open_input_file (iname, sbuf)
1239     char *iname;
1240     struct stat *sbuf;
1241 {
1242     int ilen;  /* strlen(ifname) */
1243     int z_suffix_errno = 0;
1244     static char const *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL};
1245     char const **suf = suffixes;
1246     char const *s;
1247 #ifdef NO_MULTIPLE_DOTS
1248     char *dot; /* pointer to ifname extension, or NULL */
1249 #endif
1250     int fd;
1251     int open_flags = (O_RDONLY | O_NONBLOCK | O_NOCTTY
1252                       | (ascii && !decompress ? 0 : O_BINARY));
1253
1254     *suf = z_suffix;
1255
1256     if (sizeof ifname - 1 <= strlen (iname))
1257         goto name_too_long;
1258
1259     strcpy(ifname, iname);
1260
1261     /* If input file exists, return OK. */
1262     fd = open_and_stat (ifname, open_flags, sbuf);
1263     if (0 <= fd)
1264       return fd;
1265
1266     if (!decompress || errno != ENOENT) {
1267         progerror(ifname);
1268         return -1;
1269     }
1270     /* file.ext doesn't exist, try adding a suffix (after removing any
1271      * version number for VMS).
1272      */
1273     s = get_suffix(ifname);
1274     if (s != NULL) {
1275         progerror(ifname); /* ifname already has z suffix and does not exist */
1276         return -1;
1277     }
1278 #ifdef NO_MULTIPLE_DOTS
1279     dot = strrchr(ifname, '.');
1280     if (dot == NULL) {
1281         strcat(ifname, ".");
1282         dot = strrchr(ifname, '.');
1283     }
1284 #endif
1285     ilen = strlen(ifname);
1286     if (strequ(z_suffix, ".gz")) suf++;
1287
1288     /* Search for all suffixes */
1289     do {
1290         char const *s0 = s = *suf;
1291         strcpy (ifname, iname);
1292 #ifdef NO_MULTIPLE_DOTS
1293         if (*s == '.') s++;
1294         if (*dot == '\0') strcpy (dot, ".");
1295 #endif
1296 #ifdef MAX_EXT_CHARS
1297         if (MAX_EXT_CHARS < strlen (s) + strlen (dot + 1))
1298           dot[MAX_EXT_CHARS + 1 - strlen (s)] = '\0';
1299 #endif
1300         if (sizeof ifname <= ilen + strlen (s))
1301           goto name_too_long;
1302         strcat(ifname, s);
1303         fd = open_and_stat (ifname, open_flags, sbuf);
1304         if (0 <= fd)
1305           return fd;
1306         if (errno != ENOENT)
1307           {
1308             progerror (ifname);
1309             return -1;
1310           }
1311         if (strequ (s0, z_suffix))
1312           z_suffix_errno = errno;
1313     } while (*++suf != NULL);
1314
1315     /* No suffix found, complain using z_suffix: */
1316     strcpy(ifname, iname);
1317 #ifdef NO_MULTIPLE_DOTS
1318     if (*dot == '\0') strcpy(dot, ".");
1319 #endif
1320 #ifdef MAX_EXT_CHARS
1321     if (MAX_EXT_CHARS < z_len + strlen (dot + 1))
1322       dot[MAX_EXT_CHARS + 1 - z_len] = '\0';
1323 #endif
1324     strcat(ifname, z_suffix);
1325     errno = z_suffix_errno;
1326     progerror(ifname);
1327     return -1;
1328
1329  name_too_long:
1330     fprintf (stderr, "%s: %s: file name too long\n", program_name, iname);
1331     exit_code = ERROR;
1332     return -1;
1333 }
1334
1335 /* ========================================================================
1336  * Generate ofname given ifname. Return OK, or WARNING if file must be skipped.
1337  * Sets save_orig_name to true if the file name has been truncated.
1338  */
1339 local int make_ofname()
1340 {
1341     char *suff;            /* ofname z suffix */
1342
1343     strcpy(ofname, ifname);
1344     /* strip a version number if any and get the gzip suffix if present: */
1345     suff = get_suffix(ofname);
1346
1347     if (decompress) {
1348         if (suff == NULL) {
1349             /* With -t or -l, try all files (even without .gz suffix)
1350              * except with -r (behave as with just -dr).
1351              */
1352             if (!recursive && (list || test)) return OK;
1353
1354             /* Avoid annoying messages with -r */
1355             if (verbose || (!recursive && !quiet)) {
1356                 WARN((stderr,"%s: %s: unknown suffix -- ignored\n",
1357                       program_name, ifname));
1358             }
1359             return WARNING;
1360         }
1361         /* Make a special case for .tgz and .taz: */
1362         strlwr(suff);
1363         if (strequ(suff, ".tgz") || strequ(suff, ".taz")) {
1364             strcpy(suff, ".tar");
1365         } else {
1366             *suff = '\0'; /* strip the z suffix */
1367         }
1368         /* ofname might be changed later if infile contains an original name */
1369
1370     } else if (suff && ! force) {
1371         /* Avoid annoying messages with -r (see treat_dir()) */
1372         if (verbose || (!recursive && !quiet)) {
1373             /* Don't use WARN, as it affects exit status.  */
1374             fprintf (stderr, "%s: %s already has %s suffix -- unchanged\n",
1375                      program_name, ifname, suff);
1376         }
1377         return WARNING;
1378     } else {
1379         save_orig_name = 0;
1380
1381 #ifdef NO_MULTIPLE_DOTS
1382         suff = strrchr(ofname, '.');
1383         if (suff == NULL) {
1384             if (sizeof ofname <= strlen (ofname) + 1)
1385                 goto name_too_long;
1386             strcat(ofname, ".");
1387 #  ifdef MAX_EXT_CHARS
1388             if (strequ(z_suffix, "z")) {
1389                 if (sizeof ofname <= strlen (ofname) + 2)
1390                     goto name_too_long;
1391                 strcat(ofname, "gz"); /* enough room */
1392                 return OK;
1393             }
1394         /* On the Atari and some versions of MSDOS,
1395          * ENAMETOOLONG does not work correctly.  So we
1396          * must truncate here.
1397          */
1398         } else if (strlen(suff)-1 + z_len > MAX_SUFFIX) {
1399             suff[MAX_SUFFIX+1-z_len] = '\0';
1400             save_orig_name = 1;
1401 #  endif
1402         }
1403 #endif /* NO_MULTIPLE_DOTS */
1404         if (sizeof ofname <= strlen (ofname) + z_len)
1405             goto name_too_long;
1406         strcat(ofname, z_suffix);
1407
1408     } /* decompress ? */
1409     return OK;
1410
1411  name_too_long:
1412     WARN ((stderr, "%s: %s: file name too long\n", program_name, ifname));
1413     return WARNING;
1414 }
1415
1416 /* Discard NBYTES input bytes from the input, or up through the next
1417    zero byte if NBYTES == (size_t) -1.  If FLAGS say that the header
1418    CRC should be computed, update the CRC accordingly.  */
1419 static void
1420 discard_input_bytes (nbytes, flags)
1421     size_t nbytes;
1422     unsigned int flags;
1423 {
1424   while (nbytes != 0)
1425     {
1426       uch c = get_byte ();
1427       if (flags & HEADER_CRC)
1428         updcrc (&c, 1);
1429       if (nbytes != (size_t) -1)
1430         nbytes--;
1431       else if (! c)
1432         break;
1433     }
1434 }
1435
1436 /* ========================================================================
1437  * Check the magic number of the input file and update ofname if an
1438  * original name was given and to_stdout is not set.
1439  * Return the compression method, -1 for error, -2 for warning.
1440  * Set inptr to the offset of the next byte to be processed.
1441  * Updates time_stamp if there is one and --no-time is not used.
1442  * This function may be called repeatedly for an input file consisting
1443  * of several contiguous gzip'ed members.
1444  * IN assertions: there is at least one remaining compressed member.
1445  *   If the member is a zip file, it must be the only one.
1446  */
1447 local int get_method(in)
1448     int in;        /* input file descriptor */
1449 {
1450     uch flags;     /* compression flags */
1451     uch magic[10]; /* magic header */
1452     int imagic0;   /* first magic byte or EOF */
1453     int imagic1;   /* like magic[1], but can represent EOF */
1454     ulg stamp;     /* time stamp */
1455
1456     /* If --force and --stdout, zcat == cat, so do not complain about
1457      * premature end of file: use try_byte instead of get_byte.
1458      */
1459     if (force && to_stdout) {
1460         imagic0 = try_byte();
1461         magic[0] = imagic0;
1462         imagic1 = try_byte ();
1463         magic[1] = imagic1;
1464         /* If try_byte returned EOF, magic[1] == (char) EOF.  */
1465     } else {
1466         magic[0] = get_byte ();
1467         imagic0 = 0;
1468         if (magic[0]) {
1469             magic[1] = get_byte ();
1470             imagic1 = 0; /* avoid lint warning */
1471         } else {
1472             imagic1 = try_byte ();
1473             magic[1] = imagic1;
1474         }
1475     }
1476     method = -1;                 /* unknown yet */
1477     part_nb++;                   /* number of parts in gzip file */
1478     header_bytes = 0;
1479     last_member = RECORD_IO;
1480     /* assume multiple members in gzip file except for record oriented I/O */
1481
1482     if (memcmp(magic, GZIP_MAGIC, 2) == 0
1483         || memcmp(magic, OLD_GZIP_MAGIC, 2) == 0) {
1484
1485         method = (int)get_byte();
1486         if (method != DEFLATED) {
1487             fprintf(stderr,
1488                     "%s: %s: unknown method %d -- not supported\n",
1489                     program_name, ifname, method);
1490             exit_code = ERROR;
1491             return -1;
1492         }
1493         work = unzip;
1494         flags  = (uch)get_byte();
1495
1496         if ((flags & ENCRYPTED) != 0) {
1497             fprintf(stderr,
1498                     "%s: %s is encrypted -- not supported\n",
1499                     program_name, ifname);
1500             exit_code = ERROR;
1501             return -1;
1502         }
1503         if ((flags & RESERVED) != 0) {
1504             fprintf(stderr,
1505                     "%s: %s has flags 0x%x -- not supported\n",
1506                     program_name, ifname, flags);
1507             exit_code = ERROR;
1508             if (force <= 1) return -1;
1509         }
1510         stamp  = (ulg)get_byte();
1511         stamp |= ((ulg)get_byte()) << 8;
1512         stamp |= ((ulg)get_byte()) << 16;
1513         stamp |= ((ulg)get_byte()) << 24;
1514         if (stamp != 0 && !no_time)
1515           {
1516             time_stamp.tv_sec = stamp;
1517             time_stamp.tv_nsec = 0;
1518           }
1519
1520         magic[8] = get_byte ();  /* Ignore extra flags.  */
1521         magic[9] = get_byte ();  /* Ignore OS type.  */
1522
1523         if (flags & HEADER_CRC)
1524           {
1525             magic[2] = DEFLATED;
1526             magic[3] = flags;
1527             magic[4] = stamp & 0xff;
1528             magic[5] = (stamp >> 8) & 0xff;
1529             magic[6] = (stamp >> 16) & 0xff;
1530             magic[7] = stamp >> 24;
1531             updcrc (NULL, 0);
1532             updcrc (magic, 10);
1533           }
1534
1535         if ((flags & EXTRA_FIELD) != 0) {
1536             uch lenbuf[2];
1537             unsigned int len = lenbuf[0] = get_byte ();
1538             len |= (lenbuf[1] = get_byte ()) << 8;
1539             if (verbose) {
1540                 fprintf(stderr,"%s: %s: extra field of %u bytes ignored\n",
1541                         program_name, ifname, len);
1542             }
1543             if (flags & HEADER_CRC)
1544               updcrc (lenbuf, 2);
1545             discard_input_bytes (len, flags);
1546         }
1547
1548         /* Get original file name if it was truncated */
1549         if ((flags & ORIG_NAME) != 0) {
1550             if (no_name || (to_stdout && !list) || part_nb > 1) {
1551                 /* Discard the old name */
1552                 discard_input_bytes (-1, flags);
1553             } else {
1554                 /* Copy the base name. Keep a directory prefix intact. */
1555                 char *p = gzip_base_name (ofname);
1556                 char *base = p;
1557                 for (;;) {
1558                     *p = (char) get_byte ();
1559                     if (*p++ == '\0') break;
1560                     if (p >= ofname+sizeof(ofname)) {
1561                         gzip_error ("corrupted input -- file name too large");
1562                     }
1563                 }
1564                 if (flags & HEADER_CRC)
1565                   updcrc ((uch *) base, p - base);
1566                 p = gzip_base_name (base);
1567                 memmove (base, p, strlen (p) + 1);
1568                 /* If necessary, adapt the name to local OS conventions: */
1569                 if (!list) {
1570                    MAKE_LEGAL_NAME(base);
1571                    if (base) list=0; /* avoid warning about unused variable */
1572                 }
1573             } /* no_name || to_stdout */
1574         } /* ORIG_NAME */
1575
1576         /* Discard file comment if any */
1577         if ((flags & COMMENT) != 0) {
1578             discard_input_bytes (-1, flags);
1579         }
1580
1581         if (flags & HEADER_CRC)
1582           {
1583             unsigned int crc16 = updcrc (magic, 0) & 0xffff;
1584             unsigned int header16 = get_byte ();
1585             header16 |= ((unsigned int) get_byte ()) << 8;
1586             if (header16 != crc16)
1587               {
1588                 fprintf (stderr,
1589                          "%s: %s: header checksum 0x%04x != computed checksum 0x%04x\n",
1590                          program_name, ifname, header16, crc16);
1591                 exit_code = ERROR;
1592                 if (force <= 1)
1593                   return -1;
1594               }
1595           }
1596
1597         if (part_nb == 1) {
1598             header_bytes = inptr + 2*4; /* include crc and size */
1599         }
1600
1601     } else if (memcmp(magic, PKZIP_MAGIC, 2) == 0 && inptr == 2
1602             && memcmp((char*)inbuf, PKZIP_MAGIC, 4) == 0) {
1603         /* To simplify the code, we support a zip file when alone only.
1604          * We are thus guaranteed that the entire local header fits in inbuf.
1605          */
1606         inptr = 0;
1607         work = unzip;
1608         if (check_zipfile(in) != OK) return -1;
1609         /* check_zipfile may get ofname from the local header */
1610         last_member = 1;
1611
1612     } else if (memcmp(magic, PACK_MAGIC, 2) == 0) {
1613         work = unpack;
1614         method = PACKED;
1615
1616     } else if (memcmp(magic, LZW_MAGIC, 2) == 0) {
1617         work = unlzw;
1618         method = COMPRESSED;
1619         last_member = 1;
1620
1621     } else if (memcmp(magic, LZH_MAGIC, 2) == 0) {
1622         work = unlzh;
1623         method = LZHED;
1624         last_member = 1;
1625
1626     } else if (force && to_stdout && !list) { /* pass input unchanged */
1627         method = STORED;
1628         work = copy;
1629         if (imagic1 != EOF)
1630             inptr--;
1631         last_member = 1;
1632         if (imagic0 != EOF) {
1633             write_buf(fileno(stdout), magic, 1);
1634             bytes_out++;
1635         }
1636     }
1637     if (method >= 0) return method;
1638
1639     if (part_nb == 1) {
1640         fprintf (stderr, "\n%s: %s: not in gzip format\n",
1641                  program_name, ifname);
1642         exit_code = ERROR;
1643         return -1;
1644     } else {
1645         if (magic[0] == 0)
1646           {
1647             int inbyte;
1648             for (inbyte = imagic1;  inbyte == 0;  inbyte = try_byte ())
1649               continue;
1650             if (inbyte == EOF)
1651               {
1652                 if (verbose)
1653                   WARN ((stderr, "\n%s: %s: decompression OK, trailing zero bytes ignored\n",
1654                          program_name, ifname));
1655                 return -3;
1656               }
1657           }
1658
1659         WARN((stderr, "\n%s: %s: decompression OK, trailing garbage ignored\n",
1660               program_name, ifname));
1661         return -2;
1662     }
1663 }
1664
1665 /* ========================================================================
1666  * Display the characteristics of the compressed file.
1667  * If the given method is < 0, display the accumulated totals.
1668  * IN assertions: time_stamp, header_bytes and ifile_size are initialized.
1669  */
1670 local void do_list(ifd, method)
1671     int ifd;     /* input file descriptor */
1672     int method;  /* compression method */
1673 {
1674     ulg crc;  /* original crc */
1675     static int first_time = 1;
1676     static char const *const methods[MAX_METHODS] = {
1677         "store",  /* 0 */
1678         "compr",  /* 1 */
1679         "pack ",  /* 2 */
1680         "lzh  ",  /* 3 */
1681         "", "", "", "", /* 4 to 7 reserved */
1682         "defla"}; /* 8 */
1683     int positive_off_t_width = 1;
1684     off_t o;
1685
1686     for (o = OFF_T_MAX;  9 < o;  o /= 10) {
1687         positive_off_t_width++;
1688     }
1689
1690     if (first_time && method >= 0) {
1691         first_time = 0;
1692         if (verbose)  {
1693             printf("method  crc     date  time  ");
1694         }
1695         if (!quiet) {
1696             printf("%*.*s %*.*s  ratio uncompressed_name\n",
1697                    positive_off_t_width, positive_off_t_width, "compressed",
1698                    positive_off_t_width, positive_off_t_width, "uncompressed");
1699         }
1700     } else if (method < 0) {
1701         if (total_in <= 0 || total_out <= 0) return;
1702         if (verbose) {
1703             printf("                            ");
1704         }
1705         if (verbose || !quiet) {
1706             fprint_off(stdout, total_in, positive_off_t_width);
1707             printf(" ");
1708             fprint_off(stdout, total_out, positive_off_t_width);
1709             printf(" ");
1710         }
1711         display_ratio(total_out-(total_in-header_bytes), total_out, stdout);
1712         /* header_bytes is not meaningful but used to ensure the same
1713          * ratio if there is a single file.
1714          */
1715         printf(" (totals)\n");
1716         return;
1717     }
1718     crc = (ulg)~0; /* unknown */
1719     bytes_out = -1L;
1720     bytes_in = ifile_size;
1721
1722     if (!RECORD_IO && method == DEFLATED && !last_member) {
1723         /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files.
1724          * If the lseek fails, we could use read() to get to the end, but
1725          * --list is used to get quick results.
1726          * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if
1727          * you are not concerned about speed.
1728          */
1729         bytes_in = lseek(ifd, (off_t)(-8), SEEK_END);
1730         if (bytes_in != -1L) {
1731             uch buf[8];
1732             bytes_in += 8L;
1733             if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) {
1734                 read_error();
1735             }
1736             crc       = LG(buf);
1737             bytes_out = LG(buf+4);
1738         }
1739     }
1740
1741     if (verbose)
1742       {
1743         struct tm *tm = localtime (&time_stamp.tv_sec);
1744         printf ("%5s %08lx ", methods[method], crc);
1745         if (tm)
1746           printf ("%s%3d %02d:%02d ",
1747                   ("Jan\0Feb\0Mar\0Apr\0May\0Jun\0Jul\0Aug\0Sep\0Oct\0Nov\0Dec"
1748                    + 4 * tm->tm_mon),
1749                   tm->tm_mday, tm->tm_hour, tm->tm_min);
1750         else
1751           printf ("??? ?? ??:?? ");
1752       }
1753     fprint_off(stdout, bytes_in, positive_off_t_width);
1754     printf(" ");
1755     fprint_off(stdout, bytes_out, positive_off_t_width);
1756     printf(" ");
1757     if (bytes_in  == -1L) {
1758         total_in = -1L;
1759         bytes_in = bytes_out = header_bytes = 0;
1760     } else if (total_in >= 0) {
1761         total_in  += bytes_in;
1762     }
1763     if (bytes_out == -1L) {
1764         total_out = -1L;
1765         bytes_in = bytes_out = header_bytes = 0;
1766     } else if (total_out >= 0) {
1767         total_out += bytes_out;
1768     }
1769     display_ratio(bytes_out-(bytes_in-header_bytes), bytes_out, stdout);
1770     printf(" %s\n", ofname);
1771 }
1772
1773 /* ========================================================================
1774  * Shorten the given name by one character, or replace a .tar extension
1775  * with .tgz. Truncate the last part of the name which is longer than
1776  * MIN_PART characters: 1234.678.012.gz -> 123.678.012.gz. If the name
1777  * has only parts shorter than MIN_PART truncate the longest part.
1778  * For decompression, just remove the last character of the name.
1779  *
1780  * IN assertion: for compression, the suffix of the given name is z_suffix.
1781  */
1782 local void shorten_name(name)
1783     char *name;
1784 {
1785     int len;                 /* length of name without z_suffix */
1786     char *trunc = NULL;      /* character to be truncated */
1787     int plen;                /* current part length */
1788     int min_part = MIN_PART; /* current minimum part length */
1789     char *p;
1790
1791     len = strlen(name);
1792     if (decompress) {
1793         if (len <= 1)
1794           gzip_error ("name too short");
1795         name[len-1] = '\0';
1796         return;
1797     }
1798     p = get_suffix(name);
1799     if (! p)
1800       gzip_error ("can't recover suffix\n");
1801     *p = '\0';
1802     save_orig_name = 1;
1803
1804     /* compress 1234567890.tar to 1234567890.tgz */
1805     if (len > 4 && strequ(p-4, ".tar")) {
1806         strcpy(p-4, ".tgz");
1807         return;
1808     }
1809     /* Try keeping short extensions intact:
1810      * 1234.678.012.gz -> 123.678.012.gz
1811      */
1812     do {
1813         p = strrchr(name, PATH_SEP);
1814         p = p ? p+1 : name;
1815         while (*p) {
1816             plen = strcspn(p, PART_SEP);
1817             p += plen;
1818             if (plen > min_part) trunc = p-1;
1819             if (*p) p++;
1820         }
1821     } while (trunc == NULL && --min_part != 0);
1822
1823     if (trunc != NULL) {
1824         do {
1825             trunc[0] = trunc[1];
1826         } while (*trunc++);
1827         trunc--;
1828     } else {
1829         trunc = strrchr(name, PART_SEP[0]);
1830         if (!trunc)
1831           gzip_error ("internal error in shorten_name");
1832         if (trunc[1] == '\0') trunc--; /* force truncation */
1833     }
1834     strcpy(trunc, z_suffix);
1835 }
1836
1837 /* ========================================================================
1838  * The compressed file already exists, so ask for confirmation.
1839  * Return ERROR if the file must be skipped.
1840  */
1841 local int check_ofname()
1842 {
1843     /* Ask permission to overwrite the existing file */
1844     if (!force) {
1845         int ok = 0;
1846         fprintf (stderr, "%s: %s already exists;", program_name, ofname);
1847         if (foreground && (presume_input_tty || isatty(fileno(stdin)))) {
1848             fprintf(stderr, " do you wish to overwrite (y or n)? ");
1849             fflush(stderr);
1850             ok = yesno();
1851         }
1852         if (!ok) {
1853             fprintf(stderr, "\tnot overwritten\n");
1854             if (exit_code == OK) exit_code = WARNING;
1855             return ERROR;
1856         }
1857     }
1858     if (xunlink (ofname)) {
1859         progerror(ofname);
1860         return ERROR;
1861     }
1862     return OK;
1863 }
1864
1865 /* Change the owner and group of a file.  FD is a file descriptor for
1866    the file and NAME its name.  Change it to user UID and to group GID.
1867    If UID or GID is -1, though, do not change the corresponding user
1868    or group.  */
1869 static void
1870 do_chown (int fd, char const *name, uid_t uid, gid_t gid)
1871 {
1872 #ifndef NO_CHOWN
1873 # if HAVE_FCHOWN
1874   ignore_value (fchown (fd, uid, gid));
1875 # else
1876   ignore_value (chown (name, uid, gid));
1877 # endif
1878 #endif
1879 }
1880
1881 /* ========================================================================
1882  * Copy modes, times, ownership from input file to output file.
1883  * IN assertion: to_stdout is false.
1884  */
1885 local void copy_stat(ifstat)
1886     struct stat *ifstat;
1887 {
1888     mode_t mode = ifstat->st_mode & S_IRWXUGO;
1889     int r;
1890
1891 #ifndef NO_UTIME
1892     struct timespec timespec[2];
1893     timespec[0] = get_stat_atime (ifstat);
1894     timespec[1] = get_stat_mtime (ifstat);
1895
1896     if (decompress && 0 <= time_stamp.tv_nsec
1897         && ! (timespec[1].tv_sec == time_stamp.tv_sec
1898               && timespec[1].tv_nsec == time_stamp.tv_nsec))
1899       {
1900         timespec[1] = time_stamp;
1901         if (verbose > 1) {
1902             fprintf(stderr, "%s: time stamp restored\n", ofname);
1903         }
1904       }
1905
1906     if (fdutimens (ofd, ofname, timespec) != 0)
1907       {
1908         int e = errno;
1909         WARN ((stderr, "%s: ", program_name));
1910         if (!quiet)
1911           {
1912             errno = e;
1913             perror (ofname);
1914           }
1915       }
1916 #endif
1917
1918     /* Change the group first, then the permissions, then the owner.
1919        That way, the permissions will be correct on systems that allow
1920        users to give away files, without introducing a security hole.
1921        Security depends on permissions not containing the setuid or
1922        setgid bits.  */
1923
1924     do_chown (ofd, ofname, -1, ifstat->st_gid);
1925
1926 #if HAVE_FCHMOD
1927     r = fchmod (ofd, mode);
1928 #else
1929     r = chmod (ofname, mode);
1930 #endif
1931     if (r != 0) {
1932         int e = errno;
1933         WARN ((stderr, "%s: ", program_name));
1934         if (!quiet) {
1935             errno = e;
1936             perror(ofname);
1937         }
1938     }
1939
1940     do_chown (ofd, ofname, ifstat->st_uid, -1);
1941 }
1942
1943 #if ! NO_DIR
1944
1945 /* ========================================================================
1946  * Recurse through the given directory.
1947  */
1948 local void treat_dir (fd, dir)
1949     int fd;
1950     char *dir;
1951 {
1952     DIR      *dirp;
1953     char     nbuf[MAX_PATH_LEN];
1954     char *entries;
1955     char const *entry;
1956     size_t entrylen;
1957
1958     dirp = fdopendir (fd);
1959
1960     if (dirp == NULL) {
1961         progerror(dir);
1962         close (fd);
1963         return ;
1964     }
1965
1966     entries = streamsavedir (dirp, SAVEDIR_SORT_NONE);
1967     if (! entries)
1968       progerror (dir);
1969     if (closedir (dirp) != 0)
1970       progerror (dir);
1971     if (! entries)
1972       return;
1973
1974     for (entry = entries; *entry; entry += entrylen + 1) {
1975         size_t len = strlen (dir);
1976         entrylen = strlen (entry);
1977         if (strequ (entry, ".") || strequ (entry, ".."))
1978           continue;
1979         if (len + entrylen < MAX_PATH_LEN - 2) {
1980             strcpy(nbuf,dir);
1981             if (len != 0 /* dir = "" means current dir on Amiga */
1982 #ifdef PATH_SEP2
1983                 && dir[len-1] != PATH_SEP2
1984 #endif
1985 #ifdef PATH_SEP3
1986                 && dir[len-1] != PATH_SEP3
1987 #endif
1988             ) {
1989                 nbuf[len++] = PATH_SEP;
1990             }
1991             strcpy (nbuf + len, entry);
1992             treat_file(nbuf);
1993         } else {
1994             fprintf(stderr,"%s: %s/%s: pathname too long\n",
1995                     program_name, dir, entry);
1996             exit_code = ERROR;
1997         }
1998     }
1999     free (entries);
2000 }
2001 #endif /* ! NO_DIR */
2002
2003 /* Make sure signals get handled properly.  */
2004
2005 static void
2006 install_signal_handlers ()
2007 {
2008   int nsigs = sizeof handled_sig / sizeof handled_sig[0];
2009   int i;
2010
2011 #if SA_NOCLDSTOP
2012   struct sigaction act;
2013
2014   sigemptyset (&caught_signals);
2015   for (i = 0; i < nsigs; i++)
2016     {
2017       sigaction (handled_sig[i], NULL, &act);
2018       if (act.sa_handler != SIG_IGN)
2019         sigaddset (&caught_signals, handled_sig[i]);
2020     }
2021
2022   act.sa_handler = abort_gzip_signal;
2023   act.sa_mask = caught_signals;
2024   act.sa_flags = 0;
2025
2026   for (i = 0; i < nsigs; i++)
2027     if (sigismember (&caught_signals, handled_sig[i]))
2028       {
2029         if (i == 0)
2030           foreground = 1;
2031         sigaction (handled_sig[i], &act, NULL);
2032       }
2033 #else
2034   for (i = 0; i < nsigs; i++)
2035     if (signal (handled_sig[i], SIG_IGN) != SIG_IGN)
2036       {
2037         if (i == 0)
2038           foreground = 1;
2039         signal (handled_sig[i], abort_gzip_signal);
2040         siginterrupt (handled_sig[i], 1);
2041       }
2042 #endif
2043 }
2044
2045 /* ========================================================================
2046  * Free all dynamically allocated variables and exit with the given code.
2047  */
2048 local void do_exit(exitcode)
2049     int exitcode;
2050 {
2051     static int in_exit = 0;
2052
2053     if (in_exit) exit(exitcode);
2054     in_exit = 1;
2055     free(env);
2056     env  = NULL;
2057     FREE(inbuf);
2058     FREE(outbuf);
2059     FREE(d_buf);
2060     FREE(window);
2061 #ifndef MAXSEG_64K
2062     FREE(tab_prefix);
2063 #else
2064     FREE(tab_prefix0);
2065     FREE(tab_prefix1);
2066 #endif
2067     exit(exitcode);
2068 }
2069
2070 /* ========================================================================
2071  * Close and unlink the output file.
2072  */
2073 static void
2074 remove_output_file ()
2075 {
2076   int fd;
2077   sigset_t oldset;
2078
2079   sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
2080   fd = remove_ofname_fd;
2081   if (0 <= fd)
2082     {
2083       remove_ofname_fd = -1;
2084       close (fd);
2085       xunlink (ofname);
2086     }
2087   sigprocmask (SIG_SETMASK, &oldset, NULL);
2088 }
2089
2090 /* ========================================================================
2091  * Error handler.
2092  */
2093 void
2094 abort_gzip ()
2095 {
2096    remove_output_file ();
2097    do_exit(ERROR);
2098 }
2099
2100 /* ========================================================================
2101  * Signal handler.
2102  */
2103 static RETSIGTYPE
2104 abort_gzip_signal (sig)
2105      int sig;
2106 {
2107   if (! SA_NOCLDSTOP)
2108     signal (sig, SIG_IGN);
2109    remove_output_file ();
2110    if (sig == exiting_signal)
2111      _exit (WARNING);
2112    signal (sig, SIG_DFL);
2113    raise (sig);
2114 }