]>
git.saurik.com Git - apple/file_cmds.git/blob - compress/compress.c
8db68e6116b030be1713f6feb6e19ba8214d6bbf
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
31 static const char copyright
[] =
32 "@(#) Copyright (c) 1992, 1993\n\
33 The Regents of the University of California. All rights reserved.\n";
38 static char sccsid
[] = "@(#)compress.c 8.2 (Berkeley) 1/7/94";
42 #include <sys/cdefs.h>
43 __FBSDID("$FreeBSD: src/usr.bin/compress/compress.c,v 1.23 2010/12/11 08:32:16 joel Exp $");
45 #include <sys/param.h>
59 void compress(const char *, const char *, int);
60 void cwarn(const char *, ...) __printflike(1, 2);
61 void cwarnx(const char *, ...) __printflike(1, 2);
62 void decompress(const char *, const char *, int);
63 int permission(const char *);
64 void setfile(const char *, struct stat
*);
67 int eval
, force
, verbose
, cat
;
70 main(int argc
, char *argv
[])
72 enum {COMPRESS
, DECOMPRESS
} style
;
75 char *p
, newname
[MAXPATHLEN
];
80 if ((p
= rindex(argv
[0], '/')) == NULL
)
84 if (!strcmp(p
, "uncompress"))
86 else if (!strcmp(p
, "compress"))
88 else if (!strcmp(p
, "zcat")) {
92 errx(1, "unknown program name");
95 while ((ch
= getopt(argc
, argv
, "b:cdfv")) != -1)
98 bits
= strtol(optarg
, &p
, 10);
100 errx(1, "illegal bit count -- %s", optarg
);
105 case 'd': /* Backward compatible. */
116 usage(style
== COMPRESS
);
125 (void)compress("/dev/stdin", "/dev/stdout", bits
);
128 (void)decompress("/dev/stdin", "/dev/stdout", bits
);
134 if (cat
== 1 && argc
> 1)
135 errx(1, "the -c option permits only a single file argument");
137 for (; *argv
; ++argv
)
140 if (strcmp(*argv
, "-") == 0) {
142 compress("/dev/stdin", "/dev/stdout", bits
);
145 compress(*argv
, "/dev/stdout", bits
);
148 if ((p
= rindex(*argv
, '.')) != NULL
&&
150 cwarnx("%s: name already has trailing .Z",
155 if (len
> sizeof(newname
) - 3) {
156 cwarnx("%s: name too long", *argv
);
159 memmove(newname
, *argv
, len
);
161 newname
[len
+ 1] = 'Z';
162 newname
[len
+ 2] = '\0';
163 compress(*argv
, newname
, bits
);
166 if (strcmp(*argv
, "-") == 0) {
168 decompress("/dev/stdin", "/dev/stdout", bits
);
172 if ((p
= rindex(*argv
, '.')) == NULL
||
174 if (len
> sizeof(newname
) - 3) {
175 cwarnx("%s: name too long", *argv
);
178 memmove(newname
, *argv
, len
);
180 newname
[len
+ 1] = 'Z';
181 newname
[len
+ 2] = '\0';
183 cat
? "/dev/stdout" : *argv
, bits
);
185 if (len
- 2 > sizeof(newname
) - 1) {
186 cwarnx("%s: name too long", *argv
);
189 memmove(newname
, *argv
, len
- 2);
190 newname
[len
- 2] = '\0';
192 cat
? "/dev/stdout" : newname
, bits
);
200 compress(const char *in
, const char *out
, int bits
)
204 FILE *ifp
= NULL
, *ofp
= NULL
;
205 int exists
, isreg
, oreg
;
208 exists
= !stat(out
, &sb
);
209 if (!force
&& exists
&& S_ISREG(sb
.st_mode
) && !cat
&& !permission(out
)) {
210 cwarnx("%s already exists", out
);
213 isreg
= oreg
= !exists
|| S_ISREG(sb
.st_mode
);
215 if ((ifp
= fopen(in
, "r")) == NULL
) {
219 if (stat(in
, &isb
)) { /* DON'T FSTAT! */
223 if (!S_ISREG(isb
.st_mode
))
226 if ((ofp
= zopen(out
, "w", bits
)) == NULL
) {
230 while ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) != 0)
231 if (fwrite(buf
, 1, nr
, ofp
) != nr
) {
236 if (ferror(ifp
) || fclose(ifp
)) {
249 if (stat(out
, &sb
)) {
254 if (!force
&& sb
.st_size
>= isb
.st_size
) {
256 (void)fprintf(stderr
, "%s: file would grow; left unmodified\n",
270 (void)fprintf(stderr
, "%s: ", out
);
271 if (isb
.st_size
> sb
.st_size
)
272 (void)fprintf(stderr
, "%.0f%% compression\n",
273 ((float)sb
.st_size
/ isb
.st_size
) * 100.0);
275 (void)fprintf(stderr
, "%.0f%% expansion\n",
276 ((float)isb
.st_size
/ sb
.st_size
) * 100.0);
291 decompress(const char *in
, const char *out
, int bits
)
296 int exists
, isreg
, oreg
;
299 exists
= !stat(out
, &sb
);
300 if (!force
&& exists
&& S_ISREG(sb
.st_mode
) && !cat
&& !permission(out
)) {
301 cwarnx("%s already exists", out
);
304 isreg
= oreg
= !exists
|| S_ISREG(sb
.st_mode
);
307 if ((ifp
= zopen(in
, "r", bits
)) == NULL
) {
315 if (!S_ISREG(sb
.st_mode
))
319 * Try to read the first few uncompressed bytes from the input file
320 * before blindly truncating the output file.
322 if ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) == 0) {
327 if ((ofp
= fopen(out
, "w")) == NULL
||
328 (nr
!= 0 && fwrite(buf
, 1, nr
, ofp
) != nr
)) {
334 while ((nr
= fread(buf
, 1, sizeof(buf
), ifp
)) != 0)
335 if (fwrite(buf
, 1, nr
, ofp
) != nr
) {
340 if (ferror(ifp
) || fclose(ifp
)) {
357 struct stat isb
= sb
;
359 (void)fprintf(stderr
, "%s: ", out
);
360 if (isb
.st_size
> sb
.st_size
)
361 (void)fprintf(stderr
, "%.0f%% compression\n",
362 ((float)sb
.st_size
/ isb
.st_size
) * 100.0);
364 (void)fprintf(stderr
, "%.0f%% expansion\n",
365 ((float)isb
.st_size
/ sb
.st_size
) * 100.0);
380 setfile(const char *name
, struct stat
*fs
)
382 static struct timeval tv
[2];
384 fs
->st_mode
&= S_ISUID
|S_ISGID
|S_IRWXU
|S_IRWXG
|S_IRWXO
;
386 TIMESPEC_TO_TIMEVAL(&tv
[0], &fs
->st_atimespec
);
387 TIMESPEC_TO_TIMEVAL(&tv
[1], &fs
->st_mtimespec
);
388 if (utimes(name
, tv
))
389 cwarn("utimes: %s", name
);
392 * Changing the ownership probably won't succeed, unless we're root
393 * or POSIX_CHOWN_RESTRICTED is not set. Set uid/gid before setting
394 * the mode; current BSD behavior is to remove all setuid bits on
395 * chown. If chown fails, lose setuid/setgid bits.
397 if (chown(name
, fs
->st_uid
, fs
->st_gid
)) {
399 cwarn("chown: %s", name
);
400 fs
->st_mode
&= ~(S_ISUID
|S_ISGID
);
402 if (chmod(name
, fs
->st_mode
) && errno
!= ENOTSUP
)
403 cwarn("chmod: %s", name
);
405 if (chflags(name
, fs
->st_flags
) && errno
!= ENOTSUP
)
406 cwarn("chflags: %s", name
);
410 permission(const char *fname
)
414 if (!isatty(fileno(stderr
)))
416 (void)fprintf(stderr
, "overwrite %s? ", fname
);
417 first
= ch
= getchar();
418 while (ch
!= '\n' && ch
!= EOF
)
420 return (first
== 'y');
424 usage(int iscompress
)
427 (void)fprintf(stderr
,
428 "usage: compress [-cfv] [-b bits] [file ...]\n");
430 (void)fprintf(stderr
,
431 "usage: uncompress [-cfv] [-b bits] [file ...]\n");
436 cwarnx(const char *fmt
, ...)
447 cwarn(const char *fmt
, ...)