mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
651 lines
22 KiB
C
651 lines
22 KiB
C
/*
|
|
Copyright (C) 2006-2011 Con Kolivas
|
|
Copyright (C) 2011 Peter Hyman
|
|
Copyright (C) 1998-2003 Andrew Tridgell
|
|
|
|
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 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/* lrzip compression - main program */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
#ifdef HAVE_CTYPE_H
|
|
# include <ctype.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
# include <sys/resource.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
# include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_STAT_H
|
|
# include <sys/stat.h>
|
|
#endif
|
|
|
|
#include <termios.h>
|
|
#ifdef HAVE_ENDIAN_H
|
|
# include <endian.h>
|
|
#elif HAVE_SYS_ENDIAN_H
|
|
# include <sys/endian.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
# include <arpa/inet.h>
|
|
#endif
|
|
|
|
#include "liblrzip.h"
|
|
#include "rzip.h"
|
|
#include "lrzip.h"
|
|
#include "util.h"
|
|
#include "stream.h"
|
|
|
|
/* needed for CRC routines */
|
|
#include "lzma/C/7zCrc.h"
|
|
|
|
/* Macros for testing parameters */
|
|
#define isparameter( parmstring, value ) (!strcasecmp( parmstring, value ))
|
|
#define iscaseparameter( parmvalue, value ) (!strcmp( parmvalue, value ))
|
|
|
|
static rzip_control controlstaticvariablehaha, *control;
|
|
|
|
static void usage(void)
|
|
{
|
|
print_output("lrzip version %s\n", PACKAGE_VERSION);
|
|
print_output("Copyright (C) Con Kolivas 2006-2011\n");
|
|
print_output("Based on rzip ");
|
|
print_output("Copyright (C) Andrew Tridgell 1998-2003\n\n");
|
|
print_output("Usage: lrzip [options] <file...>\n");
|
|
print_output("General options:\n");
|
|
print_output(" -c check integrity of file written on decompression\n");
|
|
print_output(" -d decompress\n");
|
|
print_output(" -e password protected sha512/aes128 encryption on compression\n");
|
|
print_output(" -h|-? show help\n");
|
|
print_output(" -H display md5 hash integrity information\n");
|
|
print_output(" -i show compressed file information\n");
|
|
print_output(" -q don't show compression progress\n");
|
|
print_output(" -t test compressed file integrity\n");
|
|
print_output(" -v[v] Increase verbosity\n");
|
|
print_output(" -V show version\n");
|
|
print_output("Options affecting output:\n");
|
|
print_output(" -D delete existing files\n");
|
|
print_output(" -f force overwrite of any existing files\n");
|
|
print_output(" -k keep broken or damaged output files\n");
|
|
print_output(" -o filename specify the output file name and/or path\n");
|
|
print_output(" -O directory specify the output directory when -o is not used\n");
|
|
print_output(" -S suffix specify compressed suffix (default '.lrz')\n");
|
|
print_output("Options affecting compression:\n");
|
|
print_output(" -b bzip2 compression\n");
|
|
print_output(" -g gzip compression using zlib\n");
|
|
print_output(" -l lzo compression (ultra fast)\n");
|
|
print_output(" -n no backend compression - prepare for other compressor\n");
|
|
print_output(" -z zpaq compression (best, extreme compression, extremely slow)\n");
|
|
print_output("Low level options:\n");
|
|
print_output(" -L level set lzma/bzip2/gzip compression level (1-9, default 7)\n");
|
|
print_output(" -N value Set nice value to value (default 19)\n");
|
|
print_output(" -p value Set processor count to override number of threads\n");
|
|
print_output(" -T Disable LZO compressibility testing\n");
|
|
print_output(" -U Use unlimited window size beyond ramsize (potentially much slower)\n");
|
|
print_output(" -w size maximum compression window in hundreds of MB\n");
|
|
print_output(" default chosen by heuristic dependent on ram and chosen compression\n");
|
|
print_output("\nLRZIP=NOCONFIG environment variable setting can be used to bypass lrzip.conf.\n");
|
|
print_output("TMP environment variable will be used for storage of temporary files when needed.\n");
|
|
print_output("TMPDIR may also be stored in lrzip.conf file.\n");
|
|
print_output("\nIf no filenames or \"-\" is specified, stdin/out will be used.\n");
|
|
|
|
}
|
|
|
|
static void sighandler(int sig __UNUSED__)
|
|
{
|
|
struct termios termios_p;
|
|
|
|
/* Make sure we haven't died after disabling stdin echo */
|
|
tcgetattr(fileno(stdin), &termios_p);
|
|
termios_p.c_lflag |= ECHO;
|
|
tcsetattr(fileno(stdin), 0, &termios_p);
|
|
|
|
unlink_files(control);
|
|
exit(0);
|
|
}
|
|
|
|
static void show_summary(void)
|
|
{
|
|
/* OK, if verbosity set, print summary of options selected */
|
|
if (!INFO) {
|
|
if (!TEST_ONLY)
|
|
print_verbose("The following options are in effect for this %s.\n",
|
|
DECOMPRESS ? "DECOMPRESSION" : "COMPRESSION");
|
|
print_verbose("Threading is %s. Number of CPUs detected: %d\n", control->threads > 1? "ENABLED" : "DISABLED",
|
|
control->threads);
|
|
print_verbose("Detected %lld bytes ram\n", control->ramsize);
|
|
print_verbose("Compression level %d\n", control->compression_level);
|
|
print_verbose("Nice Value: %d\n", control->nice_val);
|
|
print_verbose("Show Progress\n");
|
|
print_maxverbose("Max ");
|
|
print_verbose("Verbose\n");
|
|
if (FORCE_REPLACE)
|
|
print_verbose("Overwrite Files\n");
|
|
if (!KEEP_FILES)
|
|
print_verbose("Remove input files on completion\n");
|
|
if (control->outdir)
|
|
print_verbose("Output Directory Specified: %s\n", control->outdir);
|
|
else if (control->outname)
|
|
print_verbose("Output Filename Specified: %s\n", control->outname);
|
|
if (TEST_ONLY)
|
|
print_verbose("Test file integrity\n");
|
|
if (control->tmpdir)
|
|
print_verbose("Temporary Directory set as: %s\n", control->tmpdir);
|
|
|
|
/* show compression options */
|
|
if (!DECOMPRESS && !TEST_ONLY) {
|
|
print_verbose("Compression mode is: ");
|
|
if (LZMA_COMPRESS)
|
|
print_verbose("LZMA. LZO Compressibility testing %s\n", (LZO_TEST? "enabled" : "disabled"));
|
|
else if (LZO_COMPRESS)
|
|
print_verbose("LZO\n");
|
|
else if (BZIP2_COMPRESS)
|
|
print_verbose("BZIP2. LZO Compressibility testing %s\n", (LZO_TEST? "enabled" : "disabled"));
|
|
else if (ZLIB_COMPRESS)
|
|
print_verbose("GZIP\n");
|
|
else if (ZPAQ_COMPRESS)
|
|
print_verbose("ZPAQ. LZO Compressibility testing %s\n", (LZO_TEST? "enabled" : "disabled"));
|
|
else if (NO_COMPRESS)
|
|
print_verbose("RZIP pre-processing only\n");
|
|
if (control->window)
|
|
print_verbose("Compression Window: %lld = %lldMB\n", control->window, control->window * 100ull);
|
|
/* show heuristically computed window size */
|
|
if (!control->window && !UNLIMITED) {
|
|
i64 temp_chunk, temp_window;
|
|
|
|
if (STDOUT || STDIN)
|
|
temp_chunk = control->maxram;
|
|
else
|
|
temp_chunk = control->ramsize * 2 / 3;
|
|
temp_window = temp_chunk / (100 * 1024 * 1024);
|
|
print_verbose("Heuristically Computed Compression Window: %lld = %lldMB\n", temp_window, temp_window * 100ull);
|
|
}
|
|
if (UNLIMITED)
|
|
print_verbose("Using Unlimited Window size\n");
|
|
}
|
|
if (!DECOMPRESS && !TEST_ONLY)
|
|
print_maxverbose("Storage time in seconds %lld\n", control->secs);
|
|
if (ENCRYPT)
|
|
print_maxverbose("Encryption hash loops %lld\n", control->encloops);
|
|
}
|
|
}
|
|
|
|
static void read_config(rzip_control *control)
|
|
{
|
|
/* check for lrzip.conf in ., $HOME/.lrzip and /etc/lrzip */
|
|
char *HOME, *homeconf;
|
|
char *parametervalue;
|
|
char *parameter;
|
|
char *line;
|
|
FILE *fp;
|
|
|
|
line = malloc(255);
|
|
homeconf = malloc(255);
|
|
if (line == NULL || homeconf == NULL)
|
|
fatal(control, "Fatal Memory Error in read_config");
|
|
|
|
fp = fopen("lrzip.conf", "r");
|
|
if (fp)
|
|
fprintf(control->msgout, "Using configuration file ./lrzip.conf\n");
|
|
if (fp == NULL) {
|
|
fp = fopen("/etc/lrzip/lrzip.conf", "r");
|
|
if (fp)
|
|
fprintf(control->msgout, "Using configuration file /etc/lrzip/lrzip.conf\n");
|
|
}
|
|
if (fp == NULL) {
|
|
HOME=getenv("HOME");
|
|
if (HOME) {
|
|
strcpy(homeconf, HOME);
|
|
strcat(homeconf,"/.lrzip/lrzip.conf");
|
|
fp = fopen(homeconf, "r");
|
|
if (fp)
|
|
fprintf(control->msgout, "Using configuration file %s\n", homeconf);
|
|
}
|
|
}
|
|
if (fp == NULL)
|
|
goto out;
|
|
|
|
/* if we get here, we have a file. read until no more. */
|
|
|
|
while ((fgets(line, 255, fp)) != NULL) {
|
|
if (strlen(line))
|
|
line[strlen(line) - 1] = '\0';
|
|
parameter = strtok(line, " =");
|
|
if (parameter == NULL)
|
|
continue;
|
|
/* skip if whitespace or # */
|
|
if (isspace(*parameter))
|
|
continue;
|
|
if (*parameter == '#')
|
|
continue;
|
|
|
|
parametervalue = strtok(NULL, " =");
|
|
if (parametervalue == NULL)
|
|
continue;
|
|
|
|
/* have valid parameter line, now assign to control */
|
|
|
|
if (isparameter(parameter, "window"))
|
|
control->window = atoi(parametervalue);
|
|
else if (isparameter(parameter, "unlimited")) {
|
|
if (isparameter(parametervalue, "yes"))
|
|
control->flags |= FLAG_UNLIMITED;
|
|
} else if (isparameter(parameter, "compressionlevel")) {
|
|
control->compression_level = atoi(parametervalue);
|
|
if ( control->compression_level < 1 || control->compression_level > 9 )
|
|
failure(control, "CONF.FILE error. Compression Level must between 1 and 9");
|
|
} else if (isparameter(parameter, "compressionmethod")) {
|
|
/* valid are rzip, gzip, bzip2, lzo, lzma (default), and zpaq */
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "CONF.FILE error. Can only specify one compression method");
|
|
if (isparameter(parametervalue, "bzip2"))
|
|
control->flags |= FLAG_BZIP2_COMPRESS;
|
|
else if (isparameter(parametervalue, "gzip"))
|
|
control->flags |= FLAG_ZLIB_COMPRESS;
|
|
else if (isparameter(parametervalue, "lzo"))
|
|
control->flags |= FLAG_LZO_COMPRESS;
|
|
else if (isparameter(parametervalue, "rzip"))
|
|
control->flags |= FLAG_NO_COMPRESS;
|
|
else if (isparameter(parametervalue, "zpaq"))
|
|
control->flags |= FLAG_ZPAQ_COMPRESS;
|
|
else if (!isparameter(parametervalue, "lzma")) /* oops, not lzma! */
|
|
failure(control, "CONF.FILE error. Invalid compression method %s specified\n",parametervalue);
|
|
} else if (isparameter(parameter, "lzotest")) {
|
|
/* default is yes */
|
|
if (isparameter(parametervalue, "no"))
|
|
control->flags &= ~FLAG_THRESHOLD;
|
|
} else if (isparameter(parameter, "hashcheck")) {
|
|
if (isparameter(parametervalue, "yes")) {
|
|
control->flags |= FLAG_CHECK;
|
|
control->flags |= FLAG_HASH;
|
|
}
|
|
} else if (isparameter(parameter, "showhash")) {
|
|
if (isparameter(parametervalue, "yes"))
|
|
control->flags |= FLAG_HASH;
|
|
} else if (isparameter(parameter, "outputdirectory")) {
|
|
control->outdir = malloc(strlen(parametervalue) + 2);
|
|
if (!control->outdir)
|
|
fatal(control, "Fatal Memory Error in read_config");
|
|
strcpy(control->outdir, parametervalue);
|
|
if (strcmp(parametervalue + strlen(parametervalue) - 1, "/"))
|
|
strcat(control->outdir, "/");
|
|
} else if (isparameter(parameter,"verbosity")) {
|
|
if (control->flags & FLAG_VERBOSE)
|
|
failure(control, "CONF.FILE error. Verbosity already defined.");
|
|
if (isparameter(parametervalue, "yes"))
|
|
control->flags |= FLAG_VERBOSITY;
|
|
else if (isparameter(parametervalue,"max"))
|
|
control->flags |= FLAG_VERBOSITY_MAX;
|
|
else /* oops, unrecognized value */
|
|
print_err("lrzip.conf: Unrecognized verbosity value %s. Ignored.\n", parametervalue);
|
|
} else if (isparameter(parameter, "showprogress")) {
|
|
/* Yes by default */
|
|
if (isparameter(parametervalue, "NO"))
|
|
control->flags &= ~FLAG_SHOW_PROGRESS;
|
|
} else if (isparameter(parameter,"nice")) {
|
|
control->nice_val = atoi(parametervalue);
|
|
if (control->nice_val < -20 || control->nice_val > 19)
|
|
failure(control, "CONF.FILE error. Nice must be between -20 and 19");
|
|
} else if (isparameter(parameter, "keepbroken")) {
|
|
if (isparameter(parametervalue, "yes" ))
|
|
control->flags |= FLAG_KEEP_BROKEN;
|
|
} else if (iscaseparameter(parameter, "DELETEFILES")) {
|
|
/* delete files must be case sensitive */
|
|
if (iscaseparameter(parametervalue, "YES"))
|
|
control->flags &= ~FLAG_KEEP_FILES;
|
|
} else if (iscaseparameter(parameter, "REPLACEFILE")) {
|
|
/* replace lrzip file must be case sensitive */
|
|
if (iscaseparameter(parametervalue, "YES"))
|
|
control->flags |= FLAG_FORCE_REPLACE;
|
|
} else if (isparameter(parameter, "tmpdir")) {
|
|
control->tmpdir = realloc(NULL, strlen(parametervalue) + 2);
|
|
if (!control->tmpdir)
|
|
fatal(control, "Fatal Memory Error in read_config");
|
|
strcpy(control->tmpdir, parametervalue);
|
|
if (strcmp(parametervalue + strlen(parametervalue) - 1, "/"))
|
|
strcat(control->tmpdir, "/");
|
|
} else if (isparameter(parameter, "encrypt")) {
|
|
if (isparameter(parameter, "YES"))
|
|
control->flags |= FLAG_ENCRYPT;
|
|
} else
|
|
/* oops, we have an invalid parameter, display */
|
|
print_err("lrzip.conf: Unrecognized parameter value, %s = %s. Continuing.\n",\
|
|
parameter, parametervalue);
|
|
}
|
|
|
|
if (unlikely(fclose(fp)))
|
|
fatal(control, "Failed to fclose fp in read_config\n");
|
|
out:
|
|
/* clean up */
|
|
free(line);
|
|
free(homeconf);
|
|
|
|
/* fprintf(stderr, "\nWindow = %d \
|
|
\nCompression Level = %d \
|
|
\nThreshold = %1.2f \
|
|
\nOutput Directory = %s \
|
|
\nFlags = %d\n", control->window,control->compression_level, control->threshold, control->outdir, control->flags);
|
|
*/
|
|
}
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct timeval start_time, end_time;
|
|
struct sigaction handler;
|
|
double seconds,total_time; // for timers
|
|
int c, i;
|
|
int hours,minutes;
|
|
extern int optind;
|
|
char *eptr; /* for environment */
|
|
|
|
control = &controlstaticvariablehaha;
|
|
|
|
initialize_control(control);
|
|
|
|
if (strstr(argv[0], "lrunzip"))
|
|
control->flags |= FLAG_DECOMPRESS;
|
|
else if (strstr(argv[0], "lrzcat"))
|
|
control->flags |= FLAG_DECOMPRESS | FLAG_STDOUT;
|
|
|
|
/* generate crc table */
|
|
CrcGenerateTable();
|
|
|
|
/* Get Preloaded Defaults from lrzip.conf
|
|
* Look in ., $HOME/.lrzip/, /etc/lrzip.
|
|
* If LRZIP=NOCONFIG is set, then ignore config
|
|
*/
|
|
eptr = getenv("LRZIP");
|
|
if (eptr == NULL)
|
|
read_config(control);
|
|
else if (!strstr(eptr,"NOCONFIG"))
|
|
read_config(control);
|
|
|
|
while ((c = getopt(argc, argv, "bcdDefghHiklL:nN:o:O:p:qS:tTUvVw:z?")) != -1) {
|
|
switch (c) {
|
|
case 'b':
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "Can only use one of -l, -b, -g, -z or -n\n");
|
|
control->flags |= FLAG_BZIP2_COMPRESS;
|
|
break;
|
|
case 'c':
|
|
control->flags |= FLAG_CHECK;
|
|
control->flags |= FLAG_HASH;
|
|
break;
|
|
case 'd':
|
|
control->flags |= FLAG_DECOMPRESS;
|
|
break;
|
|
case 'D':
|
|
control->flags &= ~FLAG_KEEP_FILES;
|
|
break;
|
|
case 'e':
|
|
control->flags |= FLAG_ENCRYPT;
|
|
break;
|
|
case 'f':
|
|
control->flags |= FLAG_FORCE_REPLACE;
|
|
break;
|
|
case 'g':
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "Can only use one of -l, -b, -g, -z or -n\n");
|
|
control->flags |= FLAG_ZLIB_COMPRESS;
|
|
break;
|
|
case 'h':
|
|
case '?':
|
|
usage();
|
|
return -1;
|
|
case 'H':
|
|
control->flags |= FLAG_HASH;
|
|
break;
|
|
case 'i':
|
|
control->flags |= FLAG_INFO;
|
|
break;
|
|
case 'k':
|
|
control->flags |= FLAG_KEEP_BROKEN;
|
|
break;
|
|
case 'l':
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "Can only use one of -l, -b, -g, -z or -n\n");
|
|
control->flags |= FLAG_LZO_COMPRESS;
|
|
break;
|
|
case 'L':
|
|
control->compression_level = atoi(optarg);
|
|
if (control->compression_level < 1 || control->compression_level > 9)
|
|
failure(control, "Invalid compression level (must be 1-9)\n");
|
|
break;
|
|
case 'n':
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "Can only use one of -l, -b, -g, -z or -n\n");
|
|
control->flags |= FLAG_NO_COMPRESS;
|
|
break;
|
|
case 'N':
|
|
control->nice_val = atoi(optarg);
|
|
if (control->nice_val < -20 || control->nice_val > 19)
|
|
failure(control, "Invalid nice value (must be -20..19)\n");
|
|
break;
|
|
case 'o':
|
|
if (control->outdir)
|
|
failure(control, "Cannot have -o and -O together\n");
|
|
if (unlikely(STDOUT))
|
|
failure(control, "Cannot specify an output filename when outputting to stdout\n");
|
|
control->outname = optarg;
|
|
control->suffix = "";
|
|
break;
|
|
case 'O':
|
|
if (control->outname) /* can't mix -o and -O */
|
|
failure(control, "Cannot have options -o and -O together\n");
|
|
if (unlikely(STDOUT))
|
|
failure(control, "Cannot specify an output directory when outputting to stdout\n");
|
|
control->outdir = malloc(strlen(optarg) + 2);
|
|
if (control->outdir == NULL)
|
|
fatal(control, "Failed to allocate for outdir\n");
|
|
strcpy(control->outdir,optarg);
|
|
if (strcmp(optarg+strlen(optarg) - 1, "/")) /* need a trailing slash */
|
|
strcat(control->outdir, "/");
|
|
break;
|
|
case 'p':
|
|
control->threads = atoi(optarg);
|
|
if (control->threads < 1)
|
|
failure(control, "Must have at least one thread\n");
|
|
break;
|
|
case 'q':
|
|
control->flags &= ~FLAG_SHOW_PROGRESS;
|
|
break;
|
|
case 'S':
|
|
if (control->outname)
|
|
failure(control, "Specified output filename already, can't specify an extension.\n");
|
|
if (unlikely(STDOUT))
|
|
failure(control, "Cannot specify a filename suffix when outputting to stdout\n");
|
|
control->suffix = optarg;
|
|
break;
|
|
case 't':
|
|
if (control->outname)
|
|
failure(control, "Cannot specify an output file name when just testing.\n");
|
|
if (!KEEP_FILES)
|
|
failure(control, "Doubt that you want to delete a file when just testing.\n");
|
|
control->flags |= FLAG_TEST_ONLY;
|
|
break;
|
|
case 'T':
|
|
control->flags &= ~FLAG_THRESHOLD;
|
|
break;
|
|
case 'U':
|
|
control->flags |= FLAG_UNLIMITED;
|
|
break;
|
|
case 'v':
|
|
/* set verbosity flag */
|
|
if (!(control->flags & FLAG_VERBOSITY) && !(control->flags & FLAG_VERBOSITY_MAX))
|
|
control->flags |= FLAG_VERBOSITY;
|
|
else if ((control->flags & FLAG_VERBOSITY)) {
|
|
control->flags &= ~FLAG_VERBOSITY;
|
|
control->flags |= FLAG_VERBOSITY_MAX;
|
|
}
|
|
break;
|
|
case 'V':
|
|
print_output("lrzip version %s\n", PACKAGE_VERSION);
|
|
exit(0);
|
|
break;
|
|
case 'w':
|
|
control->window = atol(optarg);
|
|
break;
|
|
case 'z':
|
|
if (control->flags & FLAG_NOT_LZMA)
|
|
failure(control, "Can only use one of -l, -b, -g, -z or -n\n");
|
|
control->flags |= FLAG_ZPAQ_COMPRESS;
|
|
break;
|
|
}
|
|
}
|
|
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
if (control->outname && argc > 1)
|
|
failure(control, "Cannot specify output filename with more than 1 file\n");
|
|
|
|
if (VERBOSE && !SHOW_PROGRESS) {
|
|
print_err("Cannot have -v and -q options. -v wins.\n");
|
|
control->flags |= FLAG_SHOW_PROGRESS;
|
|
}
|
|
|
|
if (UNLIMITED && control->window) {
|
|
print_err("If -U used, cannot specify a window size with -w.\n");
|
|
control->window = 0;
|
|
}
|
|
|
|
if (argc < 1)
|
|
control->flags |= FLAG_STDIN;
|
|
|
|
if (UNLIMITED && STDIN) {
|
|
print_err("Cannot have -U and stdin, unlimited mode disabled.\n");
|
|
control->flags &= ~FLAG_UNLIMITED;
|
|
}
|
|
|
|
setup_overhead(control);
|
|
|
|
/* Set the main nice value to half that of the backend threads since
|
|
* the rzip stage is usually the rate limiting step */
|
|
if (control->nice_val > 0 && !NO_COMPRESS) {
|
|
if (unlikely(setpriority(PRIO_PROCESS, 0, control->nice_val / 2) == -1))
|
|
print_err("Warning, unable to set nice value\n");
|
|
} else {
|
|
if (unlikely(setpriority(PRIO_PROCESS, 0, control->nice_val) == -1))
|
|
print_err("Warning, unable to set nice value\n");
|
|
}
|
|
|
|
/* One extra iteration for the case of no parameters means we will default to stdin/out */
|
|
for (i = 0; i <= argc; i++) {
|
|
if (i < argc)
|
|
control->infile = argv[i];
|
|
else if (!(i == 0 && STDIN))
|
|
break;
|
|
if (control->infile) {
|
|
if ((strcmp(control->infile, "-") == 0))
|
|
control->flags |= FLAG_STDIN;
|
|
else {
|
|
struct stat infile_stat;
|
|
|
|
stat(control->infile, &infile_stat);
|
|
if (unlikely(S_ISDIR(infile_stat.st_mode)))
|
|
failure(control, "lrzip only works directly on FILES.\n"
|
|
"Use lrztar or pipe through tar for compressing directories.\n");
|
|
}
|
|
}
|
|
|
|
if (INFO && STDIN)
|
|
failure(control, "Will not get file info from STDIN\n");
|
|
|
|
if (control->outname && (strcmp(control->outname, "-") == 0)) {
|
|
control->flags |= FLAG_STDOUT;
|
|
control->msgout = stderr;
|
|
register_outputfile(control, control->msgout);
|
|
}
|
|
|
|
/* If no output filename is specified, and we're using stdin,
|
|
* use stdout */
|
|
if (!control->outname && STDIN) {
|
|
control->flags |= FLAG_STDOUT;
|
|
control->msgout = stderr;
|
|
register_outputfile(control, control->msgout);
|
|
}
|
|
|
|
if (!STDOUT) {
|
|
control->msgout = stdout;
|
|
register_outputfile(control, control->msgout);
|
|
}
|
|
/* Implement signal handler only once flags are set */
|
|
handler.sa_handler = &sighandler;
|
|
sigaction(SIGTERM, &handler, 0);
|
|
sigaction(SIGINT, &handler, 0);
|
|
|
|
if (!FORCE_REPLACE) {
|
|
if (STDIN && isatty(fileno((FILE *)stdin))) {
|
|
print_err("Will not read stdin from a terminal. Use -f to override.\n");
|
|
usage();
|
|
exit (1);
|
|
}
|
|
if (!TEST_ONLY && STDOUT && isatty(fileno((FILE *)stdout))) {
|
|
print_err("Will not write stdout to a terminal. Use -f to override.\n");
|
|
usage();
|
|
exit (1);
|
|
}
|
|
}
|
|
|
|
if (CHECK_FILE) {
|
|
if (!DECOMPRESS) {
|
|
print_err("Can only check file written on decompression.\n");
|
|
control->flags &= ~FLAG_CHECK;
|
|
} else if (STDOUT) {
|
|
print_err("Can't check file written when writing to stdout. Checking disabled.\n");
|
|
control->flags &= ~FLAG_CHECK;
|
|
}
|
|
}
|
|
|
|
setup_ram(control);
|
|
show_summary();
|
|
|
|
gettimeofday(&start_time, NULL);
|
|
|
|
if (unlikely(STDIN && ENCRYPT))
|
|
failure(control, "Unable to work from STDIN while reading password\n");
|
|
|
|
if (DECOMPRESS || TEST_ONLY)
|
|
decompress_file(control);
|
|
else if (INFO)
|
|
get_fileinfo(control);
|
|
else
|
|
compress_file(control);
|
|
|
|
/* compute total time */
|
|
gettimeofday(&end_time, NULL);
|
|
total_time = (end_time.tv_sec + (double)end_time.tv_usec / 1000000) -
|
|
(start_time.tv_sec + (double)start_time.tv_usec / 1000000);
|
|
hours = (int)total_time / 3600;
|
|
minutes = (int)(total_time / 60) % 60;
|
|
seconds = total_time - hours * 3600 - minutes * 60;
|
|
if (!INFO)
|
|
print_progress("Total time: %02d:%02d:%05.2f\n", hours, minutes, seconds);
|
|
}
|
|
|
|
return 0;
|
|
}
|