X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gzip.c;h=b867350f08ef11bc43ee344a64f2091c52b9dbe8;hb=5e7660c3dbe55d8580d9a79a1e71f25359ecf252;hp=b45fc88fa442f927192568cee8ba442ad6453ef4;hpb=47dc1883f1f730f9576ae0e6090ead01732ff4ff;p=debian%2Fgzip diff --git a/gzip.c b/gzip.c index b45fc88..b867350 100644 --- a/gzip.c +++ b/gzip.c @@ -1,11 +1,12 @@ /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface - Copyright (C) 1999, 2001, 2002, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2010 Free Software + Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -27,7 +28,7 @@ * See the file algorithm.doc for the compression algorithms and file formats. */ -static char *license_msg[] = { +static char const *const license_msg[] = { "Copyright (C) 2007 Free Software Foundation, Inc.", "Copyright (C) 1993 Jean-loup Gailly.", "This is free software. You may redistribute copies of it under the terms of", @@ -53,10 +54,6 @@ static char *license_msg[] = { * For the meaning of all compilation flags, see comments in Makefile.in. */ -#ifdef RCSID -static char rcsid[] = "$Id: gzip.c,v 1.16 2007/03/20 05:09:51 eggert Exp $"; -#endif - #include #include #include @@ -64,6 +61,7 @@ static char rcsid[] = "$Id: gzip.c,v 1.16 2007/03/20 05:09:51 eggert Exp $"; #include #include +#include "closein.h" #include "tailor.h" #include "gzip.h" #include "lzw.h" @@ -71,27 +69,16 @@ static char rcsid[] = "$Id: gzip.c,v 1.16 2007/03/20 05:09:51 eggert Exp $"; #include "fcntl-safer.h" #include "getopt.h" +#include "ignore-value.h" #include "stat-time.h" /* configuration */ -#ifdef HAVE_FCNTL_H -# include -#endif - -#ifdef HAVE_LIMITS_H -# include -#endif - -#ifdef HAVE_UNISTD_H -# include -#endif - -#if defined STDC_HEADERS || defined HAVE_STDLIB_H -# include -#else - extern int errno; -#endif +#include +#include +#include +#include +#include #ifndef NO_DIR # define NO_DIR 0 @@ -205,7 +192,7 @@ struct timespec time_stamp; /* original time stamp (modification time) */ off_t ifile_size; /* input file size, -1 for devices (debug only) */ char *env; /* contents of GZIP env variable */ char **args = NULL; /* argv pointer if GZIP env variable defined */ -char *z_suffix; /* default suffix (can be set with --suffix) */ +char const *z_suffix; /* default suffix (can be set with --suffix) */ size_t z_len; /* strlen(z_suffix) */ /* The set of signals that are caught. */ @@ -331,7 +318,7 @@ try_help () /* ======================================================================== */ local void help() { - static char *help_msg[] = { + static char const* const help_msg[] = { "Compress or uncompress FILEs (by default, compress FILES in-place).", "", "Mandatory arguments to long options are mandatory for short options too.", @@ -367,13 +354,13 @@ local void help() " -Z, --lzw produce output compatible with old compress", " -b, --bits=BITS max number of bits per code (implies -Z)", #endif - " --rsyncable Make rsync-friendly archive", + " --rsyncable Make rsync-friendly archive", "", "With no FILE, or when FILE is -, read standard input.", "", "Report bugs to .", 0}; - char **p = help_msg; + char const *const *p = help_msg; printf ("Usage: %s [OPTION]... [FILE]...\n", program_name); while (*p) printf ("%s\n", *p++); @@ -382,7 +369,7 @@ local void help() /* ======================================================================== */ local void license() { - char **p = license_msg; + char const *const *p = license_msg; printf ("%s %s\n", program_name, VERSION); while (*p) printf ("%s\n", *p++); @@ -396,8 +383,7 @@ local void version() printf ("Written by Jean-loup Gailly.\n"); } -local void progerror (string) - char *string; +local void progerror (char const *string) { int e = errno; fprintf (stderr, "%s: ", program_name); @@ -407,9 +393,7 @@ local void progerror (string) } /* ======================================================================== */ -int main (argc, argv) - int argc; - char **argv; +int main (int argc, char **argv) { int file_count; /* number of files to process */ size_t proglen; /* length of program_name */ @@ -420,6 +404,8 @@ int main (argc, argv) program_name = gzip_base_name (argv[0]); proglen = strlen (program_name); + atexit (close_stdin); + /* Suppress .exe for MSDOS, OS/2 and VMS: */ if (4 < proglen && strequ (program_name + proglen - 4, ".exe")) program_name[proglen - 4] = '\0'; @@ -495,7 +481,8 @@ int main (argc, argv) #else recursive = 1; #endif - case 'R': + break; + case 'R': rsync = 1; break; case 'S': @@ -655,6 +642,7 @@ local void treat_stdin() clear_bufs(); /* clear input and output buffers */ to_stdout = 1; part_nb = 0; + ifd = fileno(stdin); if (decompress) { method = get_method(ifd); @@ -977,13 +965,13 @@ local char *get_suffix(name) { int nlen, slen; char suffix[MAX_SUFFIX+3]; /* last chars of name, forced to lower case */ - static char *known_suffixes[] = + static char const *known_suffixes[] = {NULL, ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z", #ifdef MAX_EXT_CHARS "z", #endif NULL}; - char **suf = known_suffixes; + char const **suf = known_suffixes; *suf = z_suffix; if (strequ(z_suffix, "z")) suf++; /* check long suffixes first */ @@ -1068,9 +1056,9 @@ open_input_file (iname, sbuf) { int ilen; /* strlen(ifname) */ int z_suffix_errno = 0; - static char *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL}; - char **suf = suffixes; - char *s; + static char const *suffixes[] = {NULL, ".gz", ".z", "-z", ".Z", NULL}; + char const **suf = suffixes; + char const *s; #ifdef NO_MULTIPLE_DOTS char *dot; /* pointer to ifname extension, or NULL */ #endif @@ -1114,7 +1102,7 @@ open_input_file (iname, sbuf) /* Search for all suffixes */ do { - char *s0 = s = *suf; + char const *s0 = s = *suf; strcpy (ifname, iname); #ifdef NO_MULTIPLE_DOTS if (*s == '.') s++; @@ -1194,7 +1182,7 @@ local int make_ofname() } /* ofname might be changed later if infile contains an original name */ - } else if (suff != NULL) { + } else if (suff && ! force) { /* Avoid annoying messages with -r (see treat_dir()) */ if (verbose || (!recursive && !quiet)) { /* Don't use WARN, as it affects exit status. */ @@ -1270,8 +1258,13 @@ local int get_method(in) /* If try_byte returned EOF, magic[1] == (char) EOF. */ } else { magic[0] = (char)get_byte(); - magic[1] = (char)get_byte(); - imagic1 = 0; /* avoid lint warning */ + if (magic[0]) { + magic[1] = (char)get_byte(); + imagic1 = 0; /* avoid lint warning */ + } else { + imagic1 = try_byte (); + magic[1] = (char) imagic1; + } } method = -1; /* unknown yet */ part_nb++; /* number of parts in gzip file */ @@ -1450,7 +1443,7 @@ local void do_list(ifd, method) { ulg crc; /* original crc */ static int first_time = 1; - static char* methods[MAX_METHODS] = { + static char const *const methods[MAX_METHODS] = { "store", /* 0 */ "compr", /* 1 */ "pack ", /* 2 */ @@ -1666,7 +1659,7 @@ local void copy_stat(ifstat) } } - if (gz_futimens (ofd, ofname, timespec) != 0) + if (gl_futimens (ofd, ofname, timespec) != 0) { int e = errno; WARN ((stderr, "%s: ", program_name)); @@ -1679,10 +1672,11 @@ local void copy_stat(ifstat) #endif #ifndef NO_CHOWN + /* Copy ownership */ # if HAVE_FCHOWN - fchown (ofd, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */ + ignore_value (fchown (ofd, ifstat->st_uid, ifstat->st_gid)); # elif HAVE_CHOWN - chown(ofname, ifstat->st_uid, ifstat->st_gid); /* Copy ownership */ + ignore_value (chown (ofname, ifstat->st_uid, ifstat->st_gid)); # endif #endif @@ -1716,18 +1710,11 @@ local void treat_dir (fd, dir) char nbuf[MAX_PATH_LEN]; int len; -#if HAVE_FDOPENDIR dirp = fdopendir (fd); -#else - close (fd); - dirp = opendir(dir); -#endif if (dirp == NULL) { progerror(dir); -#if HAVE_FDOPENDIR close (fd); -#endif return ; } /* @@ -1831,8 +1818,10 @@ local void do_exit(exitcode) if (in_exit) exit(exitcode); in_exit = 1; - if (env != NULL) free(env), env = NULL; - if (args != NULL) free((char*)args), args = NULL; + free(env); + env = NULL; + free(args); + args = NULL; FREE(inbuf); FREE(outbuf); FREE(d_buf);