file_cmds-188.tar.gz
[apple/file_cmds.git] / install / xinstall.c
1 /*
2 * Copyright (c) 1987, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1987, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93";
43 #endif
44 static const char rcsid[] =
45 "$FreeBSD: src/usr.bin/xinstall/xinstall.c,v 1.43 2001/05/30 07:08:49 ru Exp $";
46 #endif /* not lint */
47
48 #include <sys/param.h>
49 #include <sys/wait.h>
50 #include <sys/mman.h>
51 #include <sys/stat.h>
52 #include <sys/mount.h>
53
54 #include <ctype.h>
55 #include <err.h>
56 #include <errno.h>
57 #include <fcntl.h>
58 #include <grp.h>
59 #include <paths.h>
60 #include <pwd.h>
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <unistd.h>
65 #include <sysexits.h>
66 #include <utime.h>
67
68 #ifdef __APPLE__
69 #include <copyfile.h>
70 #endif /* __APPLE__ */
71
72 #include "pathnames.h"
73
74 /* Bootstrap aid - this doesn't exist in most older releases */
75 #ifndef MAP_FAILED
76 #define MAP_FAILED ((void *)-1) /* from <sys/mman.h> */
77 #endif
78
79 #define DIRECTORY 0x01 /* Tell install it's a directory. */
80 #define SETFLAGS 0x02 /* Tell install to set flags. */
81 #define NOCHANGEBITS (UF_IMMUTABLE | UF_APPEND | SF_IMMUTABLE | SF_APPEND)
82 #define BACKUP_SUFFIX ".old"
83
84 struct passwd *pp;
85 struct group *gp;
86 gid_t gid;
87 uid_t uid;
88 int dobackup, docompare, dodir, dopreserve, dostrip, nommap, safecopy, verbose;
89 mode_t mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
90 char *suffix = BACKUP_SUFFIX;
91
92 void copy __P((int, char *, int, char *, off_t));
93 int compare __P((int, const char *, size_t, int, const char *, size_t));
94 int create_newfile __P((char *, int, struct stat *));
95 int create_tempfile __P((char *, char *, size_t));
96 void install __P((char *, char *, u_long, u_int));
97 void install_dir __P((char *));
98 u_long numeric_id __P((char *, char *));
99 void strip __P((char *));
100 int trymmap __P((int));
101 void usage __P((void));
102
103 int
104 main(argc, argv)
105 int argc;
106 char *argv[];
107 {
108 struct stat from_sb, to_sb;
109 mode_t *set;
110 u_long fset;
111 int ch, no_target;
112 u_int iflags;
113 char *flags, *group, *owner, *to_name;
114
115 iflags = 0;
116 group = owner = NULL;
117 while ((ch = getopt(argc, argv, "B:bCcdf:g:Mm:o:pSsv")) != -1)
118 switch((char)ch) {
119 case 'B':
120 suffix = optarg;
121 /* FALLTHROUGH */
122 case 'b':
123 dobackup = 1;
124 break;
125 case 'C':
126 docompare = 1;
127 break;
128 case 'c':
129 /* For backwards compatibility. */
130 break;
131 case 'd':
132 dodir = 1;
133 break;
134 case 'f':
135 flags = optarg;
136 if (strtofflags(&flags, &fset, NULL))
137 errx(EX_USAGE, "%s: invalid flag", flags);
138 iflags |= SETFLAGS;
139 break;
140 case 'g':
141 group = optarg;
142 break;
143 case 'M':
144 nommap = 1;
145 break;
146 case 'm':
147 if (!(set = setmode(optarg)))
148 errx(EX_USAGE, "invalid file mode: %s",
149 optarg);
150 mode = getmode(set, 0);
151 free(set);
152 break;
153 case 'o':
154 owner = optarg;
155 break;
156 case 'p':
157 docompare = dopreserve = 1;
158 break;
159 case 'S':
160 safecopy = 1;
161 break;
162 case 's':
163 dostrip = 1;
164 break;
165 case 'v':
166 verbose = 1;
167 break;
168 case '?':
169 default:
170 usage();
171 }
172 argc -= optind;
173 argv += optind;
174
175 /* some options make no sense when creating directories */
176 if ((safecopy || dostrip) && dodir)
177 usage();
178
179 /*
180 * Older versions allowed -d -C combo. Issue a warning
181 * for now, but turn this into an error before 4.5-RELEASE.
182 */
183 if (docompare && dodir)
184 warnx("the -d and -C options may not be specified together");
185
186 /* must have at least two arguments, except when creating directories */
187 if (argc < 2 && !dodir)
188 usage();
189
190 /* need to make a temp copy so we can compare stripped version */
191 if (docompare && dostrip)
192 safecopy = 1;
193
194 /* get group and owner id's */
195 if (group != NULL) {
196 if ((gp = getgrnam(group)) != NULL)
197 gid = gp->gr_gid;
198 else
199 gid = (uid_t)numeric_id(group, "group");
200 } else
201 gid = (gid_t)-1;
202
203 if (owner != NULL) {
204 if ((pp = getpwnam(owner)) != NULL)
205 uid = pp->pw_uid;
206 else
207 uid = (uid_t)numeric_id(owner, "user");
208 } else
209 uid = (uid_t)-1;
210
211 if (dodir) {
212 for (; *argv != NULL; ++argv)
213 install_dir(*argv);
214 exit(EX_OK);
215 /* NOTREACHED */
216 }
217
218 no_target = stat(to_name = argv[argc - 1], &to_sb);
219 if (!no_target && S_ISDIR(to_sb.st_mode)) {
220 for (; *argv != to_name; ++argv)
221 install(*argv, to_name, fset, iflags | DIRECTORY);
222 exit(EX_OK);
223 /* NOTREACHED */
224 }
225
226 /* can't do file1 file2 directory/file */
227 if (argc != 2)
228 usage();
229
230 if (!no_target) {
231 if (stat(*argv, &from_sb))
232 err(EX_OSERR, "%s", *argv);
233 if (!S_ISREG(to_sb.st_mode)) {
234 errno = EFTYPE;
235 err(EX_OSERR, "%s", to_name);
236 }
237 if (to_sb.st_dev == from_sb.st_dev &&
238 to_sb.st_ino == from_sb.st_ino)
239 errx(EX_USAGE,
240 "%s and %s are the same file", *argv, to_name);
241 }
242 install(*argv, to_name, fset, iflags);
243 exit(EX_OK);
244 /* NOTREACHED */
245 }
246
247 u_long
248 numeric_id(name, type)
249 char *name, *type;
250 {
251 u_long val;
252 char *ep;
253
254 /*
255 * XXX
256 * We know that uid_t's and gid_t's are unsigned longs.
257 */
258 errno = 0;
259 val = strtoul(name, &ep, 10);
260 if (errno)
261 err(EX_NOUSER, "%s", name);
262 if (*ep != '\0')
263 errx(EX_NOUSER, "unknown %s %s", type, name);
264 return (val);
265 }
266
267 /*
268 * install --
269 * build a path name and install the file
270 */
271 void
272 install(from_name, to_name, fset, flags)
273 char *from_name, *to_name;
274 u_long fset;
275 u_int flags;
276 {
277 struct stat from_sb, temp_sb, to_sb;
278 struct utimbuf utb;
279 int devnull, files_match, from_fd=0, serrno, target;
280 int tempcopy, temp_fd, to_fd=0;
281 char backup[MAXPATHLEN], *p, pathbuf[MAXPATHLEN], tempfile[MAXPATHLEN];
282
283 files_match = 0;
284
285 /* If try to install NULL file to a directory, fails. */
286 if (flags & DIRECTORY || strcmp(from_name, _PATH_DEVNULL)) {
287 if (stat(from_name, &from_sb))
288 err(EX_OSERR, "%s", from_name);
289 if (!S_ISREG(from_sb.st_mode)) {
290 errno = EFTYPE;
291 err(EX_OSERR, "%s", from_name);
292 }
293 /* Build the target path. */
294 if (flags & DIRECTORY) {
295 (void)snprintf(pathbuf, sizeof(pathbuf), "%s/%s",
296 to_name,
297 (p = strrchr(from_name, '/')) ? ++p : from_name);
298 to_name = pathbuf;
299 }
300 devnull = 0;
301 } else {
302 devnull = 1;
303 }
304
305 target = stat(to_name, &to_sb) == 0;
306
307 /* Only install to regular files. */
308 if (target && !S_ISREG(to_sb.st_mode)) {
309 errno = EFTYPE;
310 warn("%s", to_name);
311 return;
312 }
313
314 /* Only copy safe if the target exists. */
315 tempcopy = safecopy && target;
316
317 if (!devnull && (from_fd = open(from_name, O_RDONLY, 0)) < 0)
318 err(EX_OSERR, "%s", from_name);
319
320 /* If we don't strip, we can compare first. */
321 if (docompare && !dostrip && target) {
322 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
323 err(EX_OSERR, "%s", to_name);
324 if (devnull)
325 files_match = to_sb.st_size == 0;
326 else
327 files_match = !(compare(from_fd, from_name,
328 (size_t)from_sb.st_size, to_fd,
329 to_name, (size_t)to_sb.st_size));
330
331 /* Close "to" file unless we match. */
332 if (!files_match)
333 (void)close(to_fd);
334 }
335
336 if (!files_match) {
337 if (tempcopy) {
338 to_fd = create_tempfile(to_name, tempfile,
339 sizeof(tempfile));
340 if (to_fd < 0)
341 err(EX_OSERR, "%s", tempfile);
342 } else {
343 if ((to_fd = create_newfile(to_name, target,
344 &to_sb)) < 0)
345 err(EX_OSERR, "%s", to_name);
346 if (verbose)
347 (void)printf("install: %s -> %s\n",
348 from_name, to_name);
349 }
350 if (!devnull)
351 copy(from_fd, from_name, to_fd,
352 tempcopy ? tempfile : to_name, from_sb.st_size);
353 }
354
355 if (dostrip) {
356 strip(tempcopy ? tempfile : to_name);
357
358 /*
359 * Re-open our fd on the target, in case we used a strip
360 * that does not work in-place -- like GNU binutils strip.
361 */
362 close(to_fd);
363 to_fd = open(tempcopy ? tempfile : to_name, O_RDONLY, 0);
364 if (to_fd < 0)
365 err(EX_OSERR, "stripping %s", to_name);
366 }
367
368 /*
369 * Compare the stripped temp file with the target.
370 */
371 if (docompare && dostrip && target) {
372 temp_fd = to_fd;
373
374 /* Re-open to_fd using the real target name. */
375 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
376 err(EX_OSERR, "%s", to_name);
377
378 if (fstat(temp_fd, &temp_sb)) {
379 serrno = errno;
380 (void)unlink(tempfile);
381 errno = serrno;
382 err(EX_OSERR, "%s", tempfile);
383 }
384
385 if (compare(temp_fd, tempfile, (size_t)temp_sb.st_size, to_fd,
386 to_name, (size_t)to_sb.st_size) == 0) {
387 /*
388 * If target has more than one link we need to
389 * replace it in order to snap the extra links.
390 * Need to preserve target file times, though.
391 */
392 if (to_sb.st_nlink != 1) {
393 utb.actime = to_sb.st_atime;
394 utb.modtime = to_sb.st_mtime;
395 (void)utime(tempfile, &utb);
396 } else {
397 files_match = 1;
398 (void)unlink(tempfile);
399 }
400 (void) close(temp_fd);
401 }
402 }
403
404 /*
405 * Move the new file into place if doing a safe copy
406 * and the files are different (or just not compared).
407 */
408 if (tempcopy && !files_match) {
409 /* Try to turn off the immutable bits. */
410 if (to_sb.st_flags & NOCHANGEBITS)
411 (void)chflags(to_name, to_sb.st_flags & ~NOCHANGEBITS);
412 if (dobackup) {
413 if (snprintf(backup, MAXPATHLEN, "%s%s", to_name,
414 suffix) != strlen(to_name) + strlen(suffix)) {
415 unlink(tempfile);
416 errx(EX_OSERR, "%s: backup filename too long",
417 to_name);
418 }
419 if (verbose)
420 (void)printf("install: %s -> %s\n", to_name, backup);
421 if (rename(to_name, backup) < 0) {
422 serrno = errno;
423 unlink(tempfile);
424 errno = serrno;
425 err(EX_OSERR, "rename: %s to %s", to_name,
426 backup);
427 }
428 }
429 if (verbose)
430 (void)printf("install: %s -> %s\n", from_name, to_name);
431 if (rename(tempfile, to_name) < 0) {
432 serrno = errno;
433 unlink(tempfile);
434 errno = serrno;
435 err(EX_OSERR, "rename: %s to %s",
436 tempfile, to_name);
437 }
438
439 /* Re-open to_fd so we aren't hosed by the rename(2). */
440 (void) close(to_fd);
441 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
442 err(EX_OSERR, "%s", to_name);
443 }
444
445 #ifdef __APPLE__
446 /* in case mtime is modified */
447 if (!devnull && (S_ISLNK(from_sb.st_mode) || S_ISREG(from_sb.st_mode)) &&
448 fcopyfile(from_fd, to_fd, NULL, COPYFILE_XATTR) < 0) {
449 warn("%s: unable to copy extended attributes from %s", to_name, from_name);
450 }
451 #endif /* __APPLE__ */
452 /*
453 * Preserve the timestamp of the source file if necessary.
454 */
455 if (dopreserve && !files_match && !devnull) {
456 utb.actime = from_sb.st_atime;
457 utb.modtime = from_sb.st_mtime;
458 (void)utime(to_name, &utb);
459 }
460
461 if (fstat(to_fd, &to_sb) == -1) {
462 serrno = errno;
463 (void)unlink(to_name);
464 errno = serrno;
465 err(EX_OSERR, "%s", to_name);
466 }
467
468 /*
469 * Set owner, group, mode for target; do the chown first,
470 * chown may lose the setuid bits.
471 */
472 if ((gid != (gid_t)-1 && gid != to_sb.st_gid) ||
473 (uid != (uid_t)-1 && uid != to_sb.st_uid) ||
474 (mode != to_sb.st_mode)) {
475 /* Try to turn off the immutable bits. */
476 if (to_sb.st_flags & NOCHANGEBITS)
477 (void)fchflags(to_fd, to_sb.st_flags & ~NOCHANGEBITS);
478 }
479
480 if ((gid != (gid_t)-1 && gid != to_sb.st_gid) ||
481 (uid != (uid_t)-1 && uid != to_sb.st_uid))
482 if (fchown(to_fd, uid, gid) == -1) {
483 serrno = errno;
484 (void)unlink(to_name);
485 errno = serrno;
486 err(EX_OSERR,"%s: chown/chgrp", to_name);
487 }
488
489 if (mode != to_sb.st_mode)
490 if (fchmod(to_fd, mode)) {
491 serrno = errno;
492 (void)unlink(to_name);
493 errno = serrno;
494 err(EX_OSERR, "%s: chmod", to_name);
495 }
496
497 /*
498 * If provided a set of flags, set them, otherwise, preserve the
499 * flags, except for the dump flag.
500 * NFS does not support flags. Ignore ENOTSUP flags if we're just
501 * trying to turn off UF_NODUMP. If we're trying to set real flags,
502 * then warn if the the fs doesn't support it, otherwise fail.
503 */
504 if (!devnull && fchflags(to_fd,
505 flags & SETFLAGS ? fset : from_sb.st_flags & ~UF_NODUMP)) {
506 if (flags & SETFLAGS) {
507 if (errno == ENOTSUP)
508 warn("%s: chflags", to_name);
509 else {
510 serrno = errno;
511 (void)unlink(to_name);
512 errno = serrno;
513 err(EX_OSERR, "%s: chflags", to_name);
514 }
515 }
516 }
517 #ifdef __APPLE__
518 /* the ACL could prevent credential/permission system calls later on... */
519 if (!devnull && (S_ISLNK(from_sb.st_mode) || S_ISREG(from_sb.st_mode)) &&
520 (fcopyfile(from_fd, to_fd, NULL, COPYFILE_ACL) < 0)) {
521 warn("%s: unable to copy ACL from %s", to_name, from_name);
522 }
523 #endif /* __APPLE__ */
524
525 (void)close(to_fd);
526 if (!devnull)
527 (void)close(from_fd);
528 }
529 #if TARGET_OS_EMBEDDED
530 #define BUFFER_SIZE 128*1024
531 #else /* !TARGET_OS_EMBEDDED */
532 #define BUFFER_SIZE MAXBSIZE
533 #endif /* TARGET_OS_EMBEDDED */
534 /*
535 * compare --
536 * compare two files; non-zero means files differ
537 */
538 int
539 compare(int from_fd, const char *from_name, size_t from_len,
540 int to_fd, const char *to_name, size_t to_len)
541 {
542 char *p, *q;
543 int rv;
544 int done_compare;
545
546 rv = 0;
547 if (from_len != to_len)
548 return 1;
549
550 if (from_len <= 8 * 1024 * 1024) {
551 done_compare = 0;
552 if (trymmap(from_fd) && trymmap(to_fd)) {
553 p = mmap(NULL, from_len, PROT_READ, MAP_SHARED, from_fd, (off_t)0);
554 if (p == (char *)MAP_FAILED)
555 goto out;
556 q = mmap(NULL, from_len, PROT_READ, MAP_SHARED, to_fd, (off_t)0);
557 if (q == (char *)MAP_FAILED) {
558 munmap(p, from_len);
559 goto out;
560 }
561
562 rv = memcmp(p, q, from_len);
563 munmap(p, from_len);
564 munmap(q, from_len);
565 done_compare = 1;
566 }
567 out:
568 if (!done_compare) {
569 char buf1[BUFFER_SIZE];
570 char buf2[BUFFER_SIZE];
571 int n1, n2;
572
573 rv = 0;
574 lseek(from_fd, 0, SEEK_SET);
575 lseek(to_fd, 0, SEEK_SET);
576 while (rv == 0) {
577 n1 = read(from_fd, buf1, sizeof(buf1));
578 if (n1 == 0)
579 break; /* EOF */
580 else if (n1 > 0) {
581 n2 = read(to_fd, buf2, n1);
582 if (n2 == n1)
583 rv = memcmp(buf1, buf2, n1);
584 else
585 rv = 1; /* out of sync */
586 } else
587 rv = 1; /* read failure */
588 }
589 lseek(from_fd, 0, SEEK_SET);
590 lseek(to_fd, 0, SEEK_SET);
591 }
592 } else
593 rv = 1; /* don't bother in this case */
594
595 return rv;
596 }
597
598 /*
599 * create_tempfile --
600 * create a temporary file based on path and open it
601 */
602 int
603 create_tempfile(path, temp, tsize)
604 char *path;
605 char *temp;
606 size_t tsize;
607 {
608 char *p;
609
610 (void)strncpy(temp, path, tsize);
611 temp[tsize - 1] = '\0';
612 if ((p = strrchr(temp, '/')) != NULL)
613 p++;
614 else
615 p = temp;
616 (void)strncpy(p, "INS@XXXX", &temp[tsize - 1] - p);
617 temp[tsize - 1] = '\0';
618 return (mkstemp(temp));
619 }
620
621 /*
622 * create_newfile --
623 * create a new file, overwriting an existing one if necessary
624 */
625 int
626 create_newfile(path, target, sbp)
627 char *path;
628 int target;
629 struct stat *sbp;
630 {
631 char backup[MAXPATHLEN];
632
633 if (target) {
634 /*
635 * Unlink now... avoid ETXTBSY errors later. Try to turn
636 * off the append/immutable bits -- if we fail, go ahead,
637 * it might work.
638 */
639 if (sbp->st_flags & NOCHANGEBITS)
640 (void)chflags(path, sbp->st_flags & ~NOCHANGEBITS);
641
642 if (dobackup) {
643 if (snprintf(backup, MAXPATHLEN, "%s%s",
644 path, suffix) != strlen(path) + strlen(suffix))
645 errx(EX_OSERR, "%s: backup filename too long",
646 path);
647 (void)snprintf(backup, MAXPATHLEN, "%s%s",
648 path, suffix);
649 if (verbose)
650 (void)printf("install: %s -> %s\n",
651 path, backup);
652 if (rename(path, backup) < 0)
653 err(EX_OSERR, "rename: %s to %s", path, backup);
654 } else
655 (void)unlink(path);
656 }
657
658 return (open(path, O_CREAT | O_RDWR | O_TRUNC, S_IRUSR | S_IWUSR));
659 }
660
661 /*
662 * copy --
663 * copy from one file to another
664 */
665 void
666 copy(from_fd, from_name, to_fd, to_name, size)
667 register int from_fd, to_fd;
668 char *from_name, *to_name;
669 off_t size;
670 {
671 register int nr, nw;
672 int serrno;
673 char *p, buf[BUFFER_SIZE];
674 int done_copy;
675
676 /* Rewind file descriptors. */
677 if (lseek(from_fd, (off_t)0, SEEK_SET) == (off_t)-1)
678 err(EX_OSERR, "lseek: %s", from_name);
679 if (lseek(to_fd, (off_t)0, SEEK_SET) == (off_t)-1)
680 err(EX_OSERR, "lseek: %s", to_name);
681
682 /*
683 * Mmap and write if less than 8M (the limit is so we don't totally
684 * trash memory on big files. This is really a minor hack, but it
685 * wins some CPU back.
686 */
687 done_copy = 0;
688 if (size <= 8 * 1048576 && trymmap(from_fd) &&
689 (p = mmap(NULL, (size_t)size, PROT_READ, MAP_SHARED,
690 from_fd, (off_t)0)) != (char *)MAP_FAILED) {
691 if ((nw = write(to_fd, p, size)) != size) {
692 serrno = errno;
693 (void)unlink(to_name);
694 errno = nw > 0 ? EIO : serrno;
695 err(EX_OSERR, "%s", to_name);
696 }
697 done_copy = 1;
698 }
699 if (!done_copy) {
700 while ((nr = read(from_fd, buf, sizeof(buf))) > 0)
701 if ((nw = write(to_fd, buf, nr)) != nr) {
702 serrno = errno;
703 (void)unlink(to_name);
704 errno = nw > 0 ? EIO : serrno;
705 err(EX_OSERR, "%s", to_name);
706 }
707 if (nr != 0) {
708 serrno = errno;
709 (void)unlink(to_name);
710 errno = serrno;
711 err(EX_OSERR, "%s", from_name);
712 }
713 }
714 }
715
716 /*
717 * strip --
718 * use strip(1) to strip the target file
719 */
720 void
721 strip(to_name)
722 char *to_name;
723 {
724 int serrno, status;
725
726 switch (fork()) {
727 case -1:
728 serrno = errno;
729 (void)unlink(to_name);
730 errno = serrno;
731 err(EX_TEMPFAIL, "fork");
732 case 0:
733 execlp("strip", "strip", "-", to_name, NULL);
734 err(EX_OSERR, "exec(strip)");
735 default:
736 if (wait(&status) == -1 || status) {
737 (void)unlink(to_name);
738 exit(EX_SOFTWARE);
739 /* NOTREACHED */
740 }
741 }
742 }
743
744 /*
745 * install_dir --
746 * build directory heirarchy
747 */
748 void
749 install_dir(path)
750 char *path;
751 {
752 register char *p;
753 struct stat sb;
754 int ch;
755
756 for (p = path;; ++p)
757 if (!*p || (p != path && *p == '/')) {
758 ch = *p;
759 *p = '\0';
760 if (stat(path, &sb)) {
761 if (errno != ENOENT || mkdir(path, 0755) < 0) {
762 err(EX_OSERR, "mkdir %s", path);
763 /* NOTREACHED */
764 } else if (verbose)
765 (void)printf("install: mkdir %s\n",
766 path);
767 } else if (!S_ISDIR(sb.st_mode))
768 errx(EX_OSERR, "%s exists but is not a directory", path);
769 if (!(*p = ch))
770 break;
771 }
772
773 if ((gid != (gid_t)-1 || uid != (uid_t)-1) && chown(path, uid, gid))
774 warn("chown %u:%u %s", uid, gid, path);
775 if (chmod(path, mode))
776 warn("chmod %o %s", mode, path);
777 }
778
779 /*
780 * usage --
781 * print a usage message and die
782 */
783 void
784 usage()
785 {
786 (void)fprintf(stderr, "\
787 usage: install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode]\n\
788 [-o owner] file1 file2\n\
789 install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode]\n\
790 [-o owner] file1 ... fileN directory\n\
791 install -d [-v] [-g group] [-m mode] [-o owner] directory ...\n");
792 exit(EX_USAGE);
793 /* NOTREACHED */
794 }
795
796 /*
797 * trymmap --
798 * return true (1) if mmap should be tried, false (0) if not.
799 */
800 int
801 trymmap(fd)
802 int fd;
803 {
804 /*
805 * The ifdef is for bootstrapping - f_fstypename doesn't exist in
806 * pre-Lite2-merge systems.
807 */
808 #ifdef MFSNAMELEN
809 struct statfs stfs;
810
811 if (nommap || fstatfs(fd, &stfs) != 0)
812 return (0);
813 if (strcmp(stfs.f_fstypename, "ufs") == 0 ||
814 strcmp(stfs.f_fstypename, "cd9660") == 0)
815 return (1);
816 #endif
817 return (0);
818 }