]>
git.saurik.com Git - apple/file_cmds.git/blob - compress/compress.c
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/cdefs.h>
32 __used
static const char copyright
[] =
33 "@(#) Copyright (c) 1992, 1993\n\
34 The Regents of the University of California. All rights reserved.\n";
39 static char sccsid
[] = "@(#)compress.c 8.2 (Berkeley) 1/7/94";
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD: src/usr.bin/compress/compress.c,v 1.23 2010/12/11 08:32:16 joel Exp $");
46 #include <sys/param.h>
60 void compress(const char *, const char *, int);
61 void cwarn(const char *, ...) __printflike(1, 2);
62 void cwarnx(const char *, ...) __printflike(1, 2);
63 void decompress(const char *, const char *, int);
64 int permission(const char *);
65 void setfile(const char *, struct stat
*);
68 int eval
, force
, verbose
, cat
;
71 main(int argc
, char *argv
[])
73 enum {COMPRESS
, DECOMPRESS
} style
;
76 char *p
, newname
[MAXPATHLEN
];
81 if ((p
= rindex(argv
[0], '/')) == NULL
)
85 if (!strcmp(p
, "uncompress"))
87 else if (!strcmp(p
, "compress"))
89 else if (!strcmp(p
, "zcat")) {
93 errx(1, "unknown program name");
96 while ((ch
= getopt(argc
, argv
, "b:cdfv")) != -1)
99 bits
= strtol(optarg
, &p
, 10);
101 errx(1, "illegal bit count -- %s", optarg
);
106 case 'd': /* Backward compatible. */
117 usage(style
== COMPRESS
);
126 (void)compress("/dev/stdin", "/dev/stdout", bits
);
129 (void)decompress("/dev/stdin", "/dev/stdout", bits
);
135 if (cat
== 1 && argc
> 1)
136 errx(1, "the -c option permits only a single file argument");
138 for (; *argv
; ++argv
)
141 if (strcmp(*argv
, "-") == 0) {
143 compress("/dev/stdin", "/dev/stdout", bits
);
146 compress(*argv
, "/dev/stdout", bits
);
149 if ((p
= rindex(*argv
, '.')) != NULL
&&
151 cwarnx("%s: name already has trailing .Z",
156 if (len
> sizeof(newname
) - 3) {
157 cwarnx("%s: name too long", *argv
);
160 memmove(newname
, *argv
, len
);
162 newname
[len
+ 1] = 'Z';
163 newname
[len
+ 2] = '\0';
164 compress(*argv
, newname
, bits
);
167 if (strcmp(*argv
, "-") == 0) {
169 decompress("/dev/stdin", "/dev/stdout", bits
);
173 if ((p
= rindex(*argv
, '.')) == NULL
||
175 if (len
> sizeof(newname
) - 3) {
176 cwarnx("%s: name too long", *argv
);
179 memmove(newname
, *argv
, len
);
181 newname
[len
+ 1] = 'Z';
182 newname
[len
+ 2] = '\0';
184 cat
? "/dev/stdout" : *argv
, bits
);
186 if (len
- 2 > sizeof(newname
) - 1) {
187 cwarnx("%s: name too long", *argv
);
190 memmove(newname
, *argv
, len
- 2);
191 newname
[len
- 2] = '\0';
193 cat
? "/dev/stdout" : newname
, bits
);
201 compress(const char *in
, const char *out
, int bits
)
205 FILE *ifp
= NULL
, *ofp
= NULL
;
206 int exists
, isreg
, oreg
;
209 exists
= !stat(out
, &sb
);
210 if (!force
&& exists
&& S_ISREG(sb
.st_mode
) && !cat
&& !permission(out
)) {
211 cwarnx("%s already exists", out
);
214 isreg
= oreg
= !exists
|| S_ISREG(sb
.st_mode
);
216 if ((ifp
= fopen(in
, "r")) == NULL
) {
220 if (stat(in
, &isb
)) { /* DON'T FSTAT! */
224 if (!S_ISREG(isb
.st_mode
))
227 if ((ofp
= zopen(out
, "w", bits
)) == NULL
) {
231 while ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) != 0)
232 if (fwrite(buf
, 1, nr
, ofp
) != nr
) {
237 if (ferror(ifp
) || fclose(ifp
)) {
250 if (stat(out
, &sb
)) {
255 if (!force
&& sb
.st_size
>= isb
.st_size
) {
257 (void)fprintf(stderr
, "%s: file would grow; left unmodified\n",
271 (void)fprintf(stderr
, "%s: ", out
);
272 if (isb
.st_size
> sb
.st_size
)
273 (void)fprintf(stderr
, "%.0f%% compression\n",
274 ((float)sb
.st_size
/ isb
.st_size
) * 100.0);
276 (void)fprintf(stderr
, "%.0f%% expansion\n",
277 ((float)isb
.st_size
/ sb
.st_size
) * 100.0);
292 decompress(const char *in
, const char *out
, int bits
)
297 int exists
, isreg
, oreg
;
300 exists
= !stat(out
, &sb
);
301 if (!force
&& exists
&& S_ISREG(sb
.st_mode
) && !cat
&& !permission(out
)) {
302 cwarnx("%s already exists", out
);
305 isreg
= oreg
= !exists
|| S_ISREG(sb
.st_mode
);
308 if ((ifp
= zopen(in
, "r", bits
)) == NULL
) {
316 if (!S_ISREG(sb
.st_mode
))
320 * Try to read the first few uncompressed bytes from the input file
321 * before blindly truncating the output file.
323 if ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) == 0) {
328 if ((ofp
= fopen(out
, "w")) == NULL
||
329 (nr
!= 0 && fwrite(buf
, 1, nr
, ofp
) != nr
)) {
335 while ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) != 0)
336 if (fwrite(buf
, 1, nr
, ofp
) != nr
) {
341 if (ferror(ifp
) || fclose(ifp
)) {
358 struct stat isb
= sb
;
360 (void)fprintf(stderr
, "%s: ", out
);
361 if (isb
.st_size
> sb
.st_size
)
362 (void)fprintf(stderr
, "%.0f%% compression\n",
363 ((float)sb
.st_size
/ isb
.st_size
) * 100.0);
365 (void)fprintf(stderr
, "%.0f%% expansion\n",
366 ((float)isb
.st_size
/ sb
.st_size
) * 100.0);
381 setfile(const char *name
, struct stat
*fs
)
383 static struct timeval tv
[2];
385 fs
->st_mode
&= S_ISUID
|S_ISGID
|S_IRWXU
|S_IRWXG
|S_IRWXO
;
387 TIMESPEC_TO_TIMEVAL(&tv
[0], &fs
->st_atimespec
);
388 TIMESPEC_TO_TIMEVAL(&tv
[1], &fs
->st_mtimespec
);
389 if (utimes(name
, tv
))
390 cwarn("utimes: %s", name
);
393 * Changing the ownership probably won't succeed, unless we're root
394 * or POSIX_CHOWN_RESTRICTED is not set. Set uid/gid before setting
395 * the mode; current BSD behavior is to remove all setuid bits on
396 * chown. If chown fails, lose setuid/setgid bits.
398 if (chown(name
, fs
->st_uid
, fs
->st_gid
)) {
400 cwarn("chown: %s", name
);
401 fs
->st_mode
&= ~(S_ISUID
|S_ISGID
);
403 if (chmod(name
, fs
->st_mode
) && errno
!= ENOTSUP
)
404 cwarn("chmod: %s", name
);
406 if (chflags(name
, fs
->st_flags
) && errno
!= ENOTSUP
)
407 cwarn("chflags: %s", name
);
411 permission(const char *fname
)
415 if (!isatty(fileno(stderr
)))
417 (void)fprintf(stderr
, "overwrite %s? ", fname
);
418 first
= ch
= getchar();
419 while (ch
!= '\n' && ch
!= EOF
)
421 return (first
== 'y');
425 usage(int iscompress
)
428 (void)fprintf(stderr
,
429 "usage: compress [-cfv] [-b bits] [file ...]\n");
431 (void)fprintf(stderr
,
432 "usage: uncompress [-cfv] [-b bits] [file ...]\n");
437 cwarnx(const char *fmt
, ...)
448 cwarn(const char *fmt
, ...)