compress.c revision 1.22 1 /* $NetBSD: compress.c,v 1.22 2006/04/05 20:24:38 dsl Exp $ */
2
3 /*-
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 #include <sys/cdefs.h>
33 #ifndef lint
34 __COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
35 The Regents of the University of California. All rights reserved.\n");
36 #endif /* not lint */
37
38 #ifndef lint
39 #if 0
40 static char sccsid[] = "@(#)compress.c 8.2 (Berkeley) 1/7/94";
41 #else
42 __RCSID("$NetBSD: compress.c,v 1.22 2006/04/05 20:24:38 dsl Exp $");
43 #endif
44 #endif /* not lint */
45
46 #include <sys/param.h>
47 #include <sys/time.h>
48 #include <sys/stat.h>
49
50 #include <err.h>
51 #include <errno.h>
52 #include <stdarg.h>
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <unistd.h>
57
58 void compress(char *, char *, int);
59 void cwarn(const char *, ...) __attribute__((__format__(__printf__,1,2)));
60 void cwarnx(const char *, ...) __attribute__((__format__(__printf__,1,2)));
61 void decompress(char *, char *, int);
62 int permission(char *);
63 void setfile(char *, struct stat *);
64 void usage(int);
65
66 int main(int, char *[]);
67 extern FILE *zopen(const char *fname, const char *mode, int bits);
68
69 int eval, force, verbose;
70 int isstdout, isstdin;
71
72 int
73 main(int argc, char **argv)
74 {
75 enum {COMPRESS, DECOMPRESS} style = COMPRESS;
76 size_t len;
77 int bits, cat, ch;
78 char *p, newname[MAXPATHLEN];
79
80 if ((p = strrchr(argv[0], '/')) == NULL)
81 p = argv[0];
82 else
83 ++p;
84 if (!strcmp(p, "uncompress"))
85 style = DECOMPRESS;
86 else if (!strcmp(p, "compress"))
87 style = COMPRESS;
88 else if (!strcmp(p, "zcat")) {
89 style = DECOMPRESS;
90 cat = 1;
91 }
92 else
93 errx(1, "unknown program name");
94
95 bits = cat = 0;
96 while ((ch = getopt(argc, argv, "b:cdfv")) != -1)
97 switch(ch) {
98 case 'b':
99 bits = strtol(optarg, &p, 10);
100 if (*p)
101 errx(1, "illegal bit count -- %s", optarg);
102 break;
103 case 'c':
104 cat = 1;
105 break;
106 case 'd': /* Backward compatible. */
107 style = DECOMPRESS;
108 break;
109 case 'f':
110 force = 1;
111 break;
112 case 'v':
113 verbose = 1;
114 break;
115 case '?':
116 default:
117 usage(style == COMPRESS);
118 }
119 argc -= optind;
120 argv += optind;
121
122 if (argc == 0) {
123 switch(style) {
124 case COMPRESS:
125 isstdout = 1;
126 isstdin = 1;
127 (void)compress("/dev/stdin", "/dev/stdout", bits);
128 break;
129 case DECOMPRESS:
130 isstdout = 1;
131 isstdin = 1;
132 (void)decompress("/dev/stdin", "/dev/stdout", bits);
133 break;
134 }
135 exit (eval);
136 }
137
138 if (cat == 1 && argc > 1)
139 errx(1, "the -c option permits only a single file argument");
140
141 for (; *argv; ++argv) {
142 isstdout = 0;
143 switch(style) {
144 case COMPRESS:
145 if (cat) {
146 isstdout = 1;
147 compress(*argv, "/dev/stdout", bits);
148 break;
149 }
150 if ((p = strrchr(*argv, '.')) != NULL &&
151 !strcmp(p, ".Z")) {
152 cwarnx("%s: name already has trailing .Z",
153 *argv);
154 break;
155 }
156 len = strlen(*argv);
157 if (len > sizeof(newname) - 3) {
158 cwarnx("%s: name too long", *argv);
159 break;
160 }
161 memmove(newname, *argv, len);
162 newname[len] = '.';
163 newname[len + 1] = 'Z';
164 newname[len + 2] = '\0';
165 compress(*argv, newname, bits);
166 break;
167 case DECOMPRESS:
168 len = strlen(*argv);
169 if ((p = strrchr(*argv, '.')) == NULL ||
170 strcmp(p, ".Z")) {
171 if (len > sizeof(newname) - 3) {
172 cwarnx("%s: name too long", *argv);
173 break;
174 }
175 memmove(newname, *argv, len);
176 newname[len] = '.';
177 newname[len + 1] = 'Z';
178 newname[len + 2] = '\0';
179 decompress(newname,
180 cat ? "/dev/stdout" : *argv, bits);
181 if (cat)
182 isstdout = 1;
183 } else {
184 if (len - 2 > sizeof(newname) - 1) {
185 cwarnx("%s: name too long", *argv);
186 break;
187 }
188 memmove(newname, *argv, len - 2);
189 newname[len - 2] = '\0';
190 decompress(*argv,
191 cat ? "/dev/stdout" : newname, bits);
192 if (cat)
193 isstdout = 1;
194 }
195 break;
196 }
197 }
198 exit (eval);
199 }
200
201 void
202 compress(char *in, char *out, int bits)
203 {
204 int nr;
205 struct stat isb, sb;
206 FILE *ifp, *ofp;
207 int exists, isreg, oreg;
208 u_char buf[BUFSIZ];
209
210 if (!isstdout) {
211 exists = !stat(out, &sb);
212 if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
213 return;
214 oreg = !exists || S_ISREG(sb.st_mode);
215 } else
216 oreg = 0;
217
218 ifp = ofp = NULL;
219 if ((ifp = fopen(in, "r")) == NULL) {
220 cwarn("%s", in);
221 return;
222 }
223
224 if (!isstdin) {
225 if (stat(in, &isb)) { /* DON'T FSTAT! */
226 cwarn("%s", in);
227 goto err;
228 }
229 if (!S_ISREG(isb.st_mode))
230 isreg = 0;
231 else
232 isreg = 1;
233 } else
234 isreg = 0;
235
236 if ((ofp = zopen(out, "w", bits)) == NULL) {
237 cwarn("%s", out);
238 goto err;
239 }
240 oreg <<= 1;
241 while ((nr = fread(buf, 1, sizeof(buf), ifp)) != 0)
242 if (fwrite(buf, 1, nr, ofp) != nr) {
243 cwarn("%s", out);
244 goto err;
245 }
246
247 if (ferror(ifp) || fclose(ifp)) {
248 cwarn("%s", in);
249 goto err;
250 }
251 ifp = NULL;
252
253 if (fclose(ofp)) {
254 cwarn("%s", out);
255 ofp = NULL;
256 goto err;
257 }
258 ofp = NULL;
259
260 if (isreg && oreg) {
261 if (stat(out, &sb)) {
262 cwarn("%s", out);
263 goto err;
264 }
265
266 if (!force && sb.st_size >= isb.st_size) {
267 if (verbose)
268 (void)printf("%s: file would grow; left unmodified\n", in);
269 goto err;
270 }
271
272 setfile(out, &isb);
273
274 if (unlink(in))
275 cwarn("%s", in);
276
277 if (verbose) {
278 (void)printf("%s: ", out);
279 if (isb.st_size > sb.st_size)
280 (void)printf("%.0f%% compression\n",
281 ((double)sb.st_size / isb.st_size) * 100.0);
282 else
283 (void)printf("%.0f%% expansion\n",
284 ((double)isb.st_size / sb.st_size) * 100.0);
285 }
286 }
287 return;
288
289 err: if (ofp)
290 (void)fclose(ofp);
291 if (oreg == 2)
292 (void)unlink(out);
293 if (ifp)
294 (void)fclose(ifp);
295 }
296
297 void
298 decompress(char *in, char *out, int bits)
299 {
300 int nr;
301 struct stat sb;
302 FILE *ifp, *ofp;
303 int exists, isreg, oreg;
304 u_char buf[BUFSIZ];
305
306 if (!isstdout) {
307 exists = !stat(out, &sb);
308 if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
309 return;
310 oreg = !exists || S_ISREG(sb.st_mode);
311 } else
312 oreg = 0;
313
314 ifp = ofp = NULL;
315 if ((ofp = fopen(out, "w")) == NULL) {
316 cwarn("%s", out);
317 return;
318 }
319
320 if ((ifp = zopen(in, "r", bits)) == NULL) {
321 cwarn("%s", in);
322 goto err;
323 }
324 if (!isstdin) {
325 if (stat(in, &sb)) {
326 cwarn("%s", in);
327 goto err;
328 }
329 if (!S_ISREG(sb.st_mode))
330 isreg = 0;
331 else
332 isreg = 1;
333 } else
334 isreg = 0;
335
336 oreg <<= 1;
337 while ((nr = fread(buf, 1, sizeof(buf), ifp)) != 0)
338 if (fwrite(buf, 1, nr, ofp) != nr) {
339 cwarn("%s", out);
340 goto err;
341 }
342
343 if (ferror(ifp)) {
344 cwarn("%s", in);
345 goto err;
346 }
347 if (fclose(ifp)) {
348 ifp = NULL;
349 cwarn("%s", in);
350 goto err;
351 }
352 ifp = NULL;
353
354 if (fclose(ofp)) {
355 ofp = NULL;
356 cwarn("%s", out);
357 goto err;
358 }
359
360 if (isreg && oreg) {
361 setfile(out, &sb);
362
363 if (unlink(in))
364 cwarn("%s", in);
365 }
366 return;
367
368 err: if (ofp)
369 (void)fclose(ofp);
370 if (oreg == 2)
371 (void)unlink(out);
372 if (ifp)
373 (void)fclose(ifp);
374 }
375
376 void
377 setfile(char *name, struct stat *fs)
378 {
379 static struct timeval tv[2];
380
381 fs->st_mode &= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
382
383 TIMESPEC_TO_TIMEVAL(&tv[0], &fs->st_atimespec);
384 TIMESPEC_TO_TIMEVAL(&tv[1], &fs->st_mtimespec);
385 if (utimes(name, tv))
386 cwarn("utimes: %s", name);
387
388 /*
389 * Changing the ownership probably won't succeed, unless we're root
390 * or POSIX_CHOWN_RESTRICTED is not set. Set uid/gid before setting
391 * the mode; current BSD behavior is to remove all setuid bits on
392 * chown. If chown fails, lose setuid/setgid bits.
393 */
394 if (chown(name, fs->st_uid, fs->st_gid)) {
395 if (errno != EPERM)
396 cwarn("chown: %s", name);
397 fs->st_mode &= ~(S_ISUID|S_ISGID);
398 }
399 if (chmod(name, fs->st_mode))
400 cwarn("chown: %s", name);
401
402 /*
403 * Restore the file's flags. However, do this only if the original
404 * file had any flags set; this avoids a warning on file-systems that
405 * do not support flags.
406 */
407 if (fs->st_flags != 0 && chflags(name, fs->st_flags))
408 cwarn("chflags: %s", name);
409 }
410
411 int
412 permission(char *fname)
413 {
414 int ch, first;
415
416 if (!isatty(fileno(stderr)))
417 return (0);
418 (void)fprintf(stderr, "overwrite %s? ", fname);
419 first = ch = getchar();
420 while (ch != '\n' && ch != EOF)
421 ch = getchar();
422 return (first == 'y');
423 }
424
425 void
426 usage(int iscompress)
427 {
428 if (iscompress)
429 (void)fprintf(stderr,
430 "usage: compress [-cdfv] [-b bits] [file ...]\n");
431 else
432 (void)fprintf(stderr,
433 "usage: uncompress [-cdfv] [-b bits] [file ...]\n");
434 exit(1);
435 }
436
437 void
438 cwarnx(const char *fmt, ...)
439 {
440 va_list ap;
441
442 va_start(ap, fmt);
443 vwarnx(fmt, ap);
444 va_end(ap);
445 eval = 1;
446 }
447
448 void
449 cwarn(const char *fmt, ...)
450 {
451 va_list ap;
452
453 va_start(ap, fmt);
454 vwarn(fmt, ap);
455 va_end(ap);
456 eval = 1;
457 }
458