]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/compress/compress.c
Merge clang trunk r338150, and resolve conflicts.
[FreeBSD/FreeBSD.git] / usr.bin / compress / compress.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
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 #ifndef lint
33 static const char copyright[] =
34 "@(#) Copyright (c) 1992, 1993\n\
35         The Regents of the University of California.  All rights reserved.\n";
36 #endif
37
38 #if 0
39 #ifndef lint
40 static char sccsid[] = "@(#)compress.c  8.2 (Berkeley) 1/7/94";
41 #endif
42 #endif
43
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46
47 #include <sys/param.h>
48 #include <sys/stat.h>
49 #include <sys/time.h>
50
51 #include <err.h>
52 #include <errno.h>
53 #include <fcntl.h>
54 #include <stdarg.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <unistd.h>
59
60 #include "zopen.h"
61
62 static void     compress(const char *, const char *, int);
63 static void     cwarn(const char *, ...) __printflike(1, 2);
64 static void     cwarnx(const char *, ...) __printflike(1, 2);
65 static void     decompress(const char *, const char *, int);
66 static int      permission(const char *);
67 static void     setfile(const char *, struct stat *);
68 static void     usage(int);
69
70 static int eval, force, verbose;
71
72 int
73 main(int argc, char *argv[])
74 {
75         enum {COMPRESS, DECOMPRESS} style;
76         size_t len;
77         int bits, cat, ch;
78         char *p, newname[MAXPATHLEN];
79
80         cat = 0;
81         if ((p = strrchr(argv[0], '/')) == NULL)
82                 p = argv[0];
83         else
84                 ++p;
85         if (!strcmp(p, "uncompress"))
86                 style = DECOMPRESS;
87         else if (!strcmp(p, "compress"))
88                 style = COMPRESS;
89         else if (!strcmp(p, "zcat")) {
90                 cat = 1;
91                 style = DECOMPRESS;
92         } else
93                 errx(1, "unknown program name");
94
95         bits = 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                         (void)compress("/dev/stdin", "/dev/stdout", bits);
126                         break;
127                 case DECOMPRESS:
128                         (void)decompress("/dev/stdin", "/dev/stdout", bits);
129                         break;
130                 }
131                 exit (eval);
132         }
133
134         if (cat == 1 && style == COMPRESS && argc > 1)
135                 errx(1, "the -c option permits only a single file argument");
136
137         for (; *argv; ++argv)
138                 switch(style) {
139                 case COMPRESS:
140                         if (strcmp(*argv, "-") == 0) {
141                                 compress("/dev/stdin", "/dev/stdout", bits);
142                                 break;
143                         } else if (cat) {
144                                 compress(*argv, "/dev/stdout", bits);
145                                 break;
146                         }
147                         if ((p = strrchr(*argv, '.')) != NULL &&
148                             !strcmp(p, ".Z")) {
149                                 cwarnx("%s: name already has trailing .Z",
150                                     *argv);
151                                 break;
152                         }
153                         len = strlen(*argv);
154                         if (len > sizeof(newname) - 3) {
155                                 cwarnx("%s: name too long", *argv);
156                                 break;
157                         }
158                         memmove(newname, *argv, len);
159                         newname[len] = '.';
160                         newname[len + 1] = 'Z';
161                         newname[len + 2] = '\0';
162                         compress(*argv, newname, bits);
163                         break;
164                 case DECOMPRESS:
165                         if (strcmp(*argv, "-") == 0) {
166                                 decompress("/dev/stdin", "/dev/stdout", bits);
167                                 break;
168                         }
169                         len = strlen(*argv);
170                         if ((p = strrchr(*argv, '.')) == NULL ||
171                             strcmp(p, ".Z")) {
172                                 if (len > sizeof(newname) - 3) {
173                                         cwarnx("%s: name too long", *argv);
174                                         break;
175                                 }
176                                 memmove(newname, *argv, len);
177                                 newname[len] = '.';
178                                 newname[len + 1] = 'Z';
179                                 newname[len + 2] = '\0';
180                                 decompress(newname,
181                                     cat ? "/dev/stdout" : *argv, bits);
182                         } else {
183                                 if (len - 2 > sizeof(newname) - 1) {
184                                         cwarnx("%s: name too long", *argv);
185                                         break;
186                                 }
187                                 memmove(newname, *argv, len - 2);
188                                 newname[len - 2] = '\0';
189                                 decompress(*argv,
190                                     cat ? "/dev/stdout" : newname, bits);
191                         }
192                         break;
193                 }
194         exit (eval);
195 }
196
197 static void
198 compress(const char *in, const char *out, int bits)
199 {
200         size_t nr;
201         struct stat isb, sb;
202         FILE *ifp, *ofp;
203         int exists, isreg, oreg;
204         u_char buf[1024];
205
206         exists = !stat(out, &sb);
207         if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
208                 return;
209         isreg = oreg = !exists || S_ISREG(sb.st_mode);
210
211         ifp = ofp = NULL;
212         if ((ifp = fopen(in, "r")) == NULL) {
213                 cwarn("%s", in);
214                 return;
215         }
216         if (stat(in, &isb)) {           /* DON'T FSTAT! */
217                 cwarn("%s", in);
218                 goto err;
219         }
220         if (!S_ISREG(isb.st_mode))
221                 isreg = 0;
222
223         if ((ofp = zopen(out, "w", bits)) == NULL) {
224                 cwarn("%s", out);
225                 goto err;
226         }
227         while ((nr = fread(buf, 1, sizeof(buf), ifp)) != 0)
228                 if (fwrite(buf, 1, nr, ofp) != nr) {
229                         cwarn("%s", out);
230                         goto err;
231                 }
232
233         if (ferror(ifp) || fclose(ifp)) {
234                 cwarn("%s", in);
235                 goto err;
236         }
237         ifp = NULL;
238
239         if (fclose(ofp)) {
240                 cwarn("%s", out);
241                 goto err;
242         }
243         ofp = NULL;
244
245         if (isreg) {
246                 if (stat(out, &sb)) {
247                         cwarn("%s", out);
248                         goto err;
249                 }
250
251                 if (!force && sb.st_size >= isb.st_size) {
252                         if (verbose)
253                 (void)fprintf(stderr, "%s: file would grow; left unmodified\n",
254                     in);
255                         eval = 2;
256                         if (unlink(out))
257                                 cwarn("%s", out);
258                         goto err;
259                 }
260
261                 setfile(out, &isb);
262
263                 if (unlink(in))
264                         cwarn("%s", in);
265
266                 if (verbose) {
267                         (void)fprintf(stderr, "%s: ", out);
268                         if (isb.st_size > sb.st_size)
269                                 (void)fprintf(stderr, "%.0f%% compression\n",
270                                     ((float)sb.st_size / isb.st_size) * 100.0);
271                         else
272                                 (void)fprintf(stderr, "%.0f%% expansion\n",
273                                     ((float)isb.st_size / sb.st_size) * 100.0);
274                 }
275         }
276         return;
277
278 err:    if (ofp) {
279                 if (oreg)
280                         (void)unlink(out);
281                 (void)fclose(ofp);
282         }
283         if (ifp)
284                 (void)fclose(ifp);
285 }
286
287 static void
288 decompress(const char *in, const char *out, int bits)
289 {
290         size_t nr;
291         struct stat sb;
292         FILE *ifp, *ofp;
293         int exists, isreg, oreg;
294         u_char buf[1024];
295
296         exists = !stat(out, &sb);
297         if (!force && exists && S_ISREG(sb.st_mode) && !permission(out))
298                 return;
299         isreg = oreg = !exists || S_ISREG(sb.st_mode);
300
301         ifp = ofp = NULL;
302         if ((ifp = zopen(in, "r", bits)) == NULL) {
303                 cwarn("%s", in);
304                 return;
305         }
306         if (stat(in, &sb)) {
307                 cwarn("%s", in);
308                 goto err;
309         }
310         if (!S_ISREG(sb.st_mode))
311                 isreg = 0;
312
313         /*
314          * Try to read the first few uncompressed bytes from the input file
315          * before blindly truncating the output file.
316          */
317         if ((nr = fread(buf, 1, sizeof(buf), ifp)) == 0) {
318                 cwarn("%s", in);
319                 (void)fclose(ifp);
320                 return;
321         }
322         if ((ofp = fopen(out, "w")) == NULL ||
323             (nr != 0 && fwrite(buf, 1, nr, ofp) != nr)) {
324                 cwarn("%s", out);
325                 (void)fclose(ifp);
326                 return;
327         }
328
329         while ((nr = fread(buf, 1, sizeof(buf), ifp)) != 0)
330                 if (fwrite(buf, 1, nr, ofp) != nr) {
331                         cwarn("%s", out);
332                         goto err;
333                 }
334
335         if (ferror(ifp) || fclose(ifp)) {
336                 cwarn("%s", in);
337                 goto err;
338         }
339         ifp = NULL;
340
341         if (fclose(ofp)) {
342                 cwarn("%s", out);
343                 goto err;
344         }
345
346         if (isreg) {
347                 setfile(out, &sb);
348
349                 if (unlink(in))
350                         cwarn("%s", in);
351         }
352         return;
353
354 err:    if (ofp) {
355                 if (oreg)
356                         (void)unlink(out);
357                 (void)fclose(ofp);
358         }
359         if (ifp)
360                 (void)fclose(ifp);
361 }
362
363 static void
364 setfile(const char *name, struct stat *fs)
365 {
366         static struct timespec tspec[2];
367
368         fs->st_mode &= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
369
370         tspec[0] = fs->st_atim;
371         tspec[1] = fs->st_mtim;
372         if (utimensat(AT_FDCWD, name, tspec, 0))
373                 cwarn("utimensat: %s", name);
374
375         /*
376          * Changing the ownership probably won't succeed, unless we're root
377          * or POSIX_CHOWN_RESTRICTED is not set.  Set uid/gid before setting
378          * the mode; current BSD behavior is to remove all setuid bits on
379          * chown.  If chown fails, lose setuid/setgid bits.
380          */
381         if (chown(name, fs->st_uid, fs->st_gid)) {
382                 if (errno != EPERM)
383                         cwarn("chown: %s", name);
384                 fs->st_mode &= ~(S_ISUID|S_ISGID);
385         }
386         if (chmod(name, fs->st_mode) && errno != EOPNOTSUPP)
387                 cwarn("chmod: %s", name);
388
389         if (chflags(name, fs->st_flags) && errno != EOPNOTSUPP)
390                 cwarn("chflags: %s", name);
391 }
392
393 static int
394 permission(const char *fname)
395 {
396         int ch, first;
397
398         if (!isatty(fileno(stderr)))
399                 return (0);
400         (void)fprintf(stderr, "overwrite %s? ", fname);
401         first = ch = getchar();
402         while (ch != '\n' && ch != EOF)
403                 ch = getchar();
404         return (first == 'y');
405 }
406
407 static void
408 usage(int iscompress)
409 {
410         if (iscompress)
411                 (void)fprintf(stderr,
412                     "usage: compress [-cfv] [-b bits] [file ...]\n");
413         else
414                 (void)fprintf(stderr,
415                     "usage: uncompress [-c] [-b bits] [file ...]\n");
416         exit(1);
417 }
418
419 static void
420 cwarnx(const char *fmt, ...)
421 {
422         va_list ap;
423
424         va_start(ap, fmt);
425         vwarnx(fmt, ap);
426         va_end(ap);
427         eval = 1;
428 }
429
430 static void
431 cwarn(const char *fmt, ...)
432 {
433         va_list ap;
434
435         va_start(ap, fmt);
436         vwarn(fmt, ap);
437         va_end(ap);
438         eval = 1;
439 }