]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/xinstall/xinstall.c
MFV r301238:
[FreeBSD/FreeBSD.git] / usr.bin / xinstall / xinstall.c
1 /*
2  * Copyright (c) 2012, 2013 SRI International
3  * Copyright (c) 1987, 1993
4  *      The Regents of the University of California.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. Neither the name of the University nor the names of its contributors
15  *    may be used to endorse or promote products derived from this software
16  *    without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30
31 #ifndef lint
32 static const char copyright[] =
33 "@(#) Copyright (c) 1987, 1993\n\
34         The Regents of the University of California.  All rights reserved.\n";
35 #endif /* not lint */
36
37 #if 0
38 #ifndef lint
39 static char sccsid[] = "@(#)xinstall.c  8.1 (Berkeley) 7/21/93";
40 #endif /* not lint */
41 #endif
42
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/param.h>
47 #include <sys/mman.h>
48 #include <sys/mount.h>
49 #include <sys/stat.h>
50 #include <sys/time.h>
51 #include <sys/wait.h>
52
53 #include <err.h>
54 #include <errno.h>
55 #include <fcntl.h>
56 #include <grp.h>
57 #include <libgen.h>
58 #include <md5.h>
59 #include <paths.h>
60 #include <pwd.h>
61 #include <ripemd.h>
62 #include <sha.h>
63 #include <sha256.h>
64 #include <sha512.h>
65 #include <spawn.h>
66 #include <stdint.h>
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <string.h>
70 #include <sysexits.h>
71 #include <unistd.h>
72 #include <vis.h>
73
74 #include "mtree.h"
75
76 #define MAX_CMP_SIZE    (16 * 1024 * 1024)
77
78 #define LN_ABSOLUTE     0x01
79 #define LN_RELATIVE     0x02
80 #define LN_HARD         0x04
81 #define LN_SYMBOLIC     0x08
82 #define LN_MIXED        0x10
83
84 #define DIRECTORY       0x01            /* Tell install it's a directory. */
85 #define SETFLAGS        0x02            /* Tell install to set flags. */
86 #define NOCHANGEBITS    (UF_IMMUTABLE | UF_APPEND | SF_IMMUTABLE | SF_APPEND)
87 #define BACKUP_SUFFIX   ".old"
88
89 typedef union {
90         MD5_CTX         MD5;
91         RIPEMD160_CTX   RIPEMD160;
92         SHA1_CTX        SHA1;
93         SHA256_CTX      SHA256;
94         SHA512_CTX      SHA512;
95 }       DIGEST_CTX;
96
97 static enum {
98         DIGEST_NONE = 0,
99         DIGEST_MD5,
100         DIGEST_RIPEMD160,
101         DIGEST_SHA1,
102         DIGEST_SHA256,
103         DIGEST_SHA512,
104 } digesttype = DIGEST_NONE;
105
106 extern char **environ;
107
108 static gid_t gid;
109 static uid_t uid;
110 static int dobackup, docompare, dodir, dolink, dopreserve, dostrip, dounpriv,
111     safecopy, verbose;
112 static int haveopt_f, haveopt_g, haveopt_m, haveopt_o;
113 static mode_t mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
114 static FILE *metafp;
115 static const char *group, *owner;
116 static const char *suffix = BACKUP_SUFFIX;
117 static char *destdir, *digest, *fflags, *metafile, *tags;
118
119 static int      compare(int, const char *, size_t, int, const char *, size_t,
120                     char **);
121 static char     *copy(int, const char *, int, const char *, off_t);
122 static int      create_newfile(const char *, int, struct stat *);
123 static int      create_tempfile(const char *, char *, size_t);
124 static char     *quiet_mktemp(char *template);
125 static char     *digest_file(const char *);
126 static void     digest_init(DIGEST_CTX *);
127 static void     digest_update(DIGEST_CTX *, const char *, size_t);
128 static char     *digest_end(DIGEST_CTX *, char *);
129 static int      do_link(const char *, const char *, const struct stat *);
130 static void     do_symlink(const char *, const char *, const struct stat *);
131 static void     makelink(const char *, const char *, const struct stat *);
132 static void     install(const char *, const char *, u_long, u_int);
133 static void     install_dir(char *);
134 static void     metadata_log(const char *, const char *, struct timeval *,
135                     const char *, const char *, off_t);
136 static int      parseid(const char *, id_t *);
137 static void     strip(const char *);
138 static int      trymmap(int);
139 static void     usage(void);
140
141 int
142 main(int argc, char *argv[])
143 {
144         struct stat from_sb, to_sb;
145         mode_t *set;
146         u_long fset;
147         int ch, no_target;
148         u_int iflags;
149         char *p;
150         const char *to_name;
151
152         iflags = 0;
153         group = owner = NULL;
154         while ((ch = getopt(argc, argv, "B:bCcD:df:g:h:l:M:m:N:o:pSsT:Uv")) !=
155              -1)
156                 switch((char)ch) {
157                 case 'B':
158                         suffix = optarg;
159                         /* FALLTHROUGH */
160                 case 'b':
161                         dobackup = 1;
162                         break;
163                 case 'C':
164                         docompare = 1;
165                         break;
166                 case 'c':
167                         /* For backwards compatibility. */
168                         break;
169                 case 'D':
170                         destdir = optarg;
171                         break;
172                 case 'd':
173                         dodir = 1;
174                         break;
175                 case 'f':
176                         haveopt_f = 1;
177                         fflags = optarg;
178                         break;
179                 case 'g':
180                         haveopt_g = 1;
181                         group = optarg;
182                         break;
183                 case 'h':
184                         digest = optarg;
185                         break;
186                 case 'l':
187                         for (p = optarg; *p != '\0'; p++)
188                                 switch (*p) {
189                                 case 's':
190                                         dolink &= ~(LN_HARD|LN_MIXED);
191                                         dolink |= LN_SYMBOLIC;
192                                         break;
193                                 case 'h':
194                                         dolink &= ~(LN_SYMBOLIC|LN_MIXED);
195                                         dolink |= LN_HARD;
196                                         break;
197                                 case 'm':
198                                         dolink &= ~(LN_SYMBOLIC|LN_HARD);
199                                         dolink |= LN_MIXED;
200                                         break;
201                                 case 'a':
202                                         dolink &= ~LN_RELATIVE;
203                                         dolink |= LN_ABSOLUTE;
204                                         break;
205                                 case 'r':
206                                         dolink &= ~LN_ABSOLUTE;
207                                         dolink |= LN_RELATIVE;
208                                         break;
209                                 default:
210                                         errx(1, "%c: invalid link type", *p);
211                                         /* NOTREACHED */
212                                 }
213                         break;
214                 case 'M':
215                         metafile = optarg;
216                         break;
217                 case 'm':
218                         haveopt_m = 1;
219                         if (!(set = setmode(optarg)))
220                                 errx(EX_USAGE, "invalid file mode: %s",
221                                      optarg);
222                         mode = getmode(set, 0);
223                         free(set);
224                         break;
225                 case 'N':
226                         if (!setup_getid(optarg))
227                                 err(EX_OSERR, "Unable to use user and group "
228                                     "databases in `%s'", optarg);
229                         break;
230                 case 'o':
231                         haveopt_o = 1;
232                         owner = optarg;
233                         break;
234                 case 'p':
235                         docompare = dopreserve = 1;
236                         break;
237                 case 'S':
238                         safecopy = 1;
239                         break;
240                 case 's':
241                         dostrip = 1;
242                         break;
243                 case 'T':
244                         tags = optarg;
245                         break;
246                 case 'U':
247                         dounpriv = 1;
248                         break;
249                 case 'v':
250                         verbose = 1;
251                         break;
252                 case '?':
253                 default:
254                         usage();
255                 }
256         argc -= optind;
257         argv += optind;
258
259         /* some options make no sense when creating directories */
260         if (dostrip && dodir) {
261                 warnx("-d and -s may not be specified together");
262                 usage();
263         }
264
265         if (getenv("DONTSTRIP") != NULL) {
266                 warnx("DONTSTRIP set - will not strip installed binaries");
267                 dostrip = 0;
268         }
269
270         /* must have at least two arguments, except when creating directories */
271         if (argc == 0 || (argc == 1 && !dodir))
272                 usage();
273
274         if (digest != NULL) {
275                 if (strcmp(digest, "none") == 0) {
276                         digesttype = DIGEST_NONE;
277                 } else if (strcmp(digest, "md5") == 0) {
278                        digesttype = DIGEST_MD5;
279                 } else if (strcmp(digest, "rmd160") == 0) {
280                         digesttype = DIGEST_RIPEMD160;
281                 } else if (strcmp(digest, "sha1") == 0) {
282                         digesttype = DIGEST_SHA1;
283                 } else if (strcmp(digest, "sha256") == 0) {
284                         digesttype = DIGEST_SHA256;
285                 } else if (strcmp(digest, "sha512") == 0) {
286                         digesttype = DIGEST_SHA512;
287                 } else {
288                         warnx("unknown digest `%s'", digest);
289                         usage();
290                 }
291         }
292
293         /* need to make a temp copy so we can compare stripped version */
294         if (docompare && dostrip)
295                 safecopy = 1;
296
297         /* get group and owner id's */
298         if (group != NULL && !dounpriv) {
299                 if (gid_from_group(group, &gid) == -1) {
300                         id_t id;
301                         if (!parseid(group, &id))
302                                 errx(1, "unknown group %s", group);
303                         gid = id;
304                 }
305         } else
306                 gid = (gid_t)-1;
307
308         if (owner != NULL && !dounpriv) {
309                 if (uid_from_user(owner, &uid) == -1) {
310                         id_t id;
311                         if (!parseid(owner, &id))
312                                 errx(1, "unknown user %s", owner);
313                         uid = id;
314                 }
315         } else
316                 uid = (uid_t)-1;
317
318         if (fflags != NULL && !dounpriv) {
319                 if (strtofflags(&fflags, &fset, NULL))
320                         errx(EX_USAGE, "%s: invalid flag", fflags);
321                 iflags |= SETFLAGS;
322         }
323
324         if (metafile != NULL) {
325                 if ((metafp = fopen(metafile, "a")) == NULL)
326                         warn("open %s", metafile);
327         } else
328                 digesttype = DIGEST_NONE;
329
330         if (dodir) {
331                 for (; *argv != NULL; ++argv)
332                         install_dir(*argv);
333                 exit(EX_OK);
334                 /* NOTREACHED */
335         }
336
337         to_name = argv[argc - 1];
338         no_target = stat(to_name, &to_sb);
339         if (!no_target && S_ISDIR(to_sb.st_mode)) {
340                 if (dolink & LN_SYMBOLIC) {
341                         if (lstat(to_name, &to_sb) != 0)
342                                 err(EX_OSERR, "%s vanished", to_name);
343                         if (S_ISLNK(to_sb.st_mode)) {
344                                 if (argc != 2) {
345                                         errno = ENOTDIR;
346                                         err(EX_USAGE, "%s", to_name);
347                                 }
348                                 install(*argv, to_name, fset, iflags);
349                                 exit(EX_OK);
350                         }
351                 }
352                 for (; *argv != to_name; ++argv)
353                         install(*argv, to_name, fset, iflags | DIRECTORY);
354                 exit(EX_OK);
355                 /* NOTREACHED */
356         }
357
358         /* can't do file1 file2 directory/file */
359         if (argc != 2) {
360                 if (no_target)
361                         warnx("target directory `%s' does not exist", 
362                             argv[argc - 1]);
363                 else
364                         warnx("target `%s' is not a directory",
365                             argv[argc - 1]);
366                 usage();
367         }
368
369         if (!no_target && !dolink) {
370                 if (stat(*argv, &from_sb))
371                         err(EX_OSERR, "%s", *argv);
372                 if (!S_ISREG(to_sb.st_mode)) {
373                         errno = EFTYPE;
374                         err(EX_OSERR, "%s", to_name);
375                 }
376                 if (to_sb.st_dev == from_sb.st_dev &&
377                     to_sb.st_ino == from_sb.st_ino)
378                         errx(EX_USAGE, 
379                             "%s and %s are the same file", *argv, to_name);
380         }
381         install(*argv, to_name, fset, iflags);
382         exit(EX_OK);
383         /* NOTREACHED */
384 }
385
386 static char *
387 digest_file(const char *name)
388 {
389
390         switch (digesttype) {
391         case DIGEST_MD5:
392                 return (MD5File(name, NULL));
393         case DIGEST_RIPEMD160:
394                 return (RIPEMD160_File(name, NULL));
395         case DIGEST_SHA1:
396                 return (SHA1_File(name, NULL));
397         case DIGEST_SHA256:
398                 return (SHA256_File(name, NULL));
399         case DIGEST_SHA512:
400                 return (SHA512_File(name, NULL));
401         default:
402                 return (NULL);
403         }
404 }
405
406 static void
407 digest_init(DIGEST_CTX *c)
408 {
409
410         switch (digesttype) {
411         case DIGEST_NONE:
412                 break;
413         case DIGEST_MD5:
414                 MD5Init(&(c->MD5));
415                 break;
416         case DIGEST_RIPEMD160:
417                 RIPEMD160_Init(&(c->RIPEMD160));
418                 break;
419         case DIGEST_SHA1:
420                 SHA1_Init(&(c->SHA1));
421                 break;
422         case DIGEST_SHA256:
423                 SHA256_Init(&(c->SHA256));
424                 break;
425         case DIGEST_SHA512:
426                 SHA512_Init(&(c->SHA512));
427                 break;
428         }
429 }
430
431 static void
432 digest_update(DIGEST_CTX *c, const char *data, size_t len)
433 {
434
435         switch (digesttype) {
436         case DIGEST_NONE:
437                 break;
438         case DIGEST_MD5:
439                 MD5Update(&(c->MD5), data, len);
440                 break;
441         case DIGEST_RIPEMD160:
442                 RIPEMD160_Update(&(c->RIPEMD160), data, len);
443                 break;
444         case DIGEST_SHA1:
445                 SHA1_Update(&(c->SHA1), data, len);
446                 break;
447         case DIGEST_SHA256:
448                 SHA256_Update(&(c->SHA256), data, len);
449                 break;
450         case DIGEST_SHA512:
451                 SHA512_Update(&(c->SHA512), data, len);
452                 break;
453         }
454 }
455
456 static char *
457 digest_end(DIGEST_CTX *c, char *buf)
458 {
459
460         switch (digesttype) {
461         case DIGEST_MD5:
462                 return (MD5End(&(c->MD5), buf));
463         case DIGEST_RIPEMD160:
464                 return (RIPEMD160_End(&(c->RIPEMD160), buf));
465         case DIGEST_SHA1:
466                 return (SHA1_End(&(c->SHA1), buf));
467         case DIGEST_SHA256:
468                 return (SHA256_End(&(c->SHA256), buf));
469         case DIGEST_SHA512:
470                 return (SHA512_End(&(c->SHA512), buf));
471         default:
472                 return (NULL);
473         }
474 }
475
476 /*
477  * parseid --
478  *      parse uid or gid from arg into id, returning non-zero if successful
479  */
480 static int
481 parseid(const char *name, id_t *id)
482 {
483         char    *ep;
484         errno = 0;
485         *id = (id_t)strtoul(name, &ep, 10);
486         if (errno || *ep != '\0')
487                 return (0);
488         return (1);
489 }
490
491 /*
492  * quiet_mktemp --
493  *      mktemp implementation used mkstemp to avoid mktemp warnings.  We
494  *      really do need mktemp semantics here as we will be creating a link.
495  */
496 static char *
497 quiet_mktemp(char *template)
498 {
499         int fd;
500
501         if ((fd = mkstemp(template)) == -1)
502                 return (NULL);
503         close (fd);
504         if (unlink(template) == -1)
505                 err(EX_OSERR, "unlink %s", template);
506         return (template);
507 }
508
509 /*
510  * do_link --
511  *      make a hard link, obeying dorename if set
512  *      return -1 on failure
513  */
514 static int
515 do_link(const char *from_name, const char *to_name,
516     const struct stat *target_sb)
517 {
518         char tmpl[MAXPATHLEN];
519         int ret;
520
521         if (safecopy && target_sb != NULL) {
522                 (void)snprintf(tmpl, sizeof(tmpl), "%s.inst.XXXXXX", to_name);
523                 /* This usage is safe. */
524                 if (quiet_mktemp(tmpl) == NULL)
525                         err(EX_OSERR, "%s: mktemp", tmpl);
526                 ret = link(from_name, tmpl);
527                 if (ret == 0) {
528                         if (target_sb->st_mode & S_IFDIR && rmdir(to_name) ==
529                             -1) {
530                                 unlink(tmpl);
531                                 err(EX_OSERR, "%s", to_name);
532                         }
533                         if (target_sb->st_flags & NOCHANGEBITS)
534                                 (void)chflags(to_name, target_sb->st_flags &
535                                      ~NOCHANGEBITS);
536                         unlink(to_name);
537                         ret = rename(tmpl, to_name);
538                         /*
539                          * If rename has posix semantics, then the temporary
540                          * file may still exist when from_name and to_name point
541                          * to the same file, so unlink it unconditionally.
542                          */
543                         (void)unlink(tmpl);
544                 }
545                 return (ret);
546         } else
547                 return (link(from_name, to_name));
548 }
549
550 /*
551  * do_symlink --
552  *      Make a symbolic link, obeying dorename if set. Exit on failure.
553  */
554 static void
555 do_symlink(const char *from_name, const char *to_name,
556     const struct stat *target_sb)
557 {
558         char tmpl[MAXPATHLEN];
559
560         if (safecopy && target_sb != NULL) {
561                 (void)snprintf(tmpl, sizeof(tmpl), "%s.inst.XXXXXX", to_name);
562                 /* This usage is safe. */
563                 if (quiet_mktemp(tmpl) == NULL)
564                         err(EX_OSERR, "%s: mktemp", tmpl);
565
566                 if (symlink(from_name, tmpl) == -1)
567                         err(EX_OSERR, "symlink %s -> %s", from_name, tmpl);
568
569                 if (target_sb->st_mode & S_IFDIR && rmdir(to_name) == -1) {
570                         (void)unlink(tmpl);
571                         err(EX_OSERR, "%s", to_name);
572                 }
573                 if (target_sb->st_flags & NOCHANGEBITS)
574                         (void)chflags(to_name, target_sb->st_flags &
575                              ~NOCHANGEBITS);
576                 unlink(to_name);
577
578                 if (rename(tmpl, to_name) == -1) {
579                         /* Remove temporary link before exiting. */
580                         (void)unlink(tmpl);
581                         err(EX_OSERR, "%s: rename", to_name);
582                 }
583         } else {
584                 if (symlink(from_name, to_name) == -1)
585                         err(EX_OSERR, "symlink %s -> %s", from_name, to_name);
586         }
587 }
588
589 /*
590  * makelink --
591  *      make a link from source to destination
592  */
593 static void
594 makelink(const char *from_name, const char *to_name,
595     const struct stat *target_sb)
596 {
597         char    src[MAXPATHLEN], dst[MAXPATHLEN], lnk[MAXPATHLEN];
598         struct stat     to_sb;
599
600         /* Try hard links first. */
601         if (dolink & (LN_HARD|LN_MIXED)) {
602                 if (do_link(from_name, to_name, target_sb) == -1) {
603                         if ((dolink & LN_HARD) || errno != EXDEV)
604                                 err(EX_OSERR, "link %s -> %s", from_name, to_name);
605                 } else {
606                         if (stat(to_name, &to_sb))
607                                 err(EX_OSERR, "%s: stat", to_name);
608                         if (S_ISREG(to_sb.st_mode)) {
609                                 /*
610                                  * XXX: hard links to anything other than
611                                  * plain files are not metalogged
612                                  */
613                                 int omode;
614                                 const char *oowner, *ogroup;
615                                 char *offlags;
616                                 char *dres;
617
618                                 /*
619                                  * XXX: use underlying perms, unless
620                                  * overridden on command line.
621                                  */
622                                 omode = mode;
623                                 if (!haveopt_m)
624                                         mode = (to_sb.st_mode & 0777);
625                                 oowner = owner;
626                                 if (!haveopt_o)
627                                         owner = NULL;
628                                 ogroup = group;
629                                 if (!haveopt_g)
630                                         group = NULL;
631                                 offlags = fflags;
632                                 if (!haveopt_f)
633                                         fflags = NULL;
634                                 dres = digest_file(from_name);
635                                 metadata_log(to_name, "file", NULL, NULL,
636                                     dres, to_sb.st_size);
637                                 free(dres);
638                                 mode = omode;
639                                 owner = oowner;
640                                 group = ogroup;
641                                 fflags = offlags;
642                         }
643                         return;
644                 }
645         }
646
647         /* Symbolic links. */
648         if (dolink & LN_ABSOLUTE) {
649                 /* Convert source path to absolute. */
650                 if (realpath(from_name, src) == NULL)
651                         err(EX_OSERR, "%s: realpath", from_name);
652                 do_symlink(src, to_name, target_sb);
653                 /* XXX: src may point outside of destdir */
654                 metadata_log(to_name, "link", NULL, src, NULL, 0);
655                 return;
656         }
657
658         if (dolink & LN_RELATIVE) {
659                 char *cp, *d, *s;
660
661                 if (*from_name != '/') {
662                         /* this is already a relative link */
663                         do_symlink(from_name, to_name, target_sb);
664                         /* XXX: from_name may point outside of destdir. */
665                         metadata_log(to_name, "link", NULL, from_name, NULL, 0);
666                         return;
667                 }
668
669                 /* Resolve pathnames. */
670                 if (realpath(from_name, src) == NULL)
671                         err(EX_OSERR, "%s: realpath", from_name);
672
673                 /*
674                  * The last component of to_name may be a symlink,
675                  * so use realpath to resolve only the directory.
676                  */
677                 cp = dirname(to_name);
678                 if (realpath(cp, dst) == NULL)
679                         err(EX_OSERR, "%s: realpath", cp);
680                 /* .. and add the last component. */
681                 if (strcmp(dst, "/") != 0) {
682                         if (strlcat(dst, "/", sizeof(dst)) > sizeof(dst))
683                                 errx(1, "resolved pathname too long");
684                 }
685                 cp = basename(to_name);
686                 if (strlcat(dst, cp, sizeof(dst)) > sizeof(dst))
687                         errx(1, "resolved pathname too long");
688
689                 /* Trim common path components. */
690                 for (s = src, d = dst; *s == *d; s++, d++)
691                         continue;
692                 while (*s != '/')
693                         s--, d--;
694
695                 /* Count the number of directories we need to backtrack. */
696                 for (++d, lnk[0] = '\0'; *d; d++)
697                         if (*d == '/')
698                                 (void)strlcat(lnk, "../", sizeof(lnk));
699
700                 (void)strlcat(lnk, ++s, sizeof(lnk));
701
702                 do_symlink(lnk, to_name, target_sb);
703                 /* XXX: Link may point outside of destdir. */
704                 metadata_log(to_name, "link", NULL, lnk, NULL, 0);
705                 return;
706         }
707
708         /*
709          * If absolute or relative was not specified, try the names the
710          * user provided.
711          */
712         do_symlink(from_name, to_name, target_sb);
713         /* XXX: from_name may point outside of destdir. */
714         metadata_log(to_name, "link", NULL, from_name, NULL, 0);
715 }
716
717 /*
718  * install --
719  *      build a path name and install the file
720  */
721 static void
722 install(const char *from_name, const char *to_name, u_long fset, u_int flags)
723 {
724         struct stat from_sb, temp_sb, to_sb;
725         struct timeval tvb[2];
726         int devnull, files_match, from_fd, serrno, target;
727         int tempcopy, temp_fd, to_fd;
728         char backup[MAXPATHLEN], *p, pathbuf[MAXPATHLEN], tempfile[MAXPATHLEN];
729         char *digestresult;
730
731         files_match = 0;
732         from_fd = -1;
733         to_fd = -1;
734
735         /* If try to install NULL file to a directory, fails. */
736         if (flags & DIRECTORY || strcmp(from_name, _PATH_DEVNULL)) {
737                 if (!dolink) {
738                         if (stat(from_name, &from_sb))
739                                 err(EX_OSERR, "%s", from_name);
740                         if (!S_ISREG(from_sb.st_mode)) {
741                                 errno = EFTYPE;
742                                 err(EX_OSERR, "%s", from_name);
743                         }
744                 }
745                 /* Build the target path. */
746                 if (flags & DIRECTORY) {
747                         (void)snprintf(pathbuf, sizeof(pathbuf), "%s/%s",
748                             to_name,
749                             (p = strrchr(from_name, '/')) ? ++p : from_name);
750                         to_name = pathbuf;
751                 }
752                 devnull = 0;
753         } else {
754                 devnull = 1;
755         }
756
757         target = (lstat(to_name, &to_sb) == 0);
758
759         if (dolink) {
760                 if (target && !safecopy) {
761                         if (to_sb.st_mode & S_IFDIR && rmdir(to_name) == -1)
762                                 err(EX_OSERR, "%s", to_name);
763                         if (to_sb.st_flags & NOCHANGEBITS)
764                                 (void)chflags(to_name,
765                                     to_sb.st_flags & ~NOCHANGEBITS);
766                         unlink(to_name);
767                 }
768                 makelink(from_name, to_name, target ? &to_sb : NULL);
769                 return;
770         }
771
772         if (target && !S_ISREG(to_sb.st_mode) && !S_ISLNK(to_sb.st_mode)) {
773                 errno = EFTYPE;
774                 warn("%s", to_name);
775                 return;
776         }
777
778         /* Only copy safe if the target exists. */
779         tempcopy = safecopy && target;
780
781         if (!devnull && (from_fd = open(from_name, O_RDONLY, 0)) < 0)
782                 err(EX_OSERR, "%s", from_name);
783
784         /* If we don't strip, we can compare first. */
785         if (docompare && !dostrip && target && S_ISREG(to_sb.st_mode)) {
786                 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
787                         err(EX_OSERR, "%s", to_name);
788                 if (devnull)
789                         files_match = to_sb.st_size == 0;
790                 else
791                         files_match = !(compare(from_fd, from_name,
792                             (size_t)from_sb.st_size, to_fd,
793                             to_name, (size_t)to_sb.st_size, &digestresult));
794
795                 /* Close "to" file unless we match. */
796                 if (!files_match)
797                         (void)close(to_fd);
798         }
799
800         if (!files_match) {
801                 if (tempcopy) {
802                         to_fd = create_tempfile(to_name, tempfile,
803                             sizeof(tempfile));
804                         if (to_fd < 0)
805                                 err(EX_OSERR, "%s", tempfile);
806                 } else {
807                         if ((to_fd = create_newfile(to_name, target,
808                             &to_sb)) < 0)
809                                 err(EX_OSERR, "%s", to_name);
810                         if (verbose)
811                                 (void)printf("install: %s -> %s\n",
812                                     from_name, to_name);
813                 }
814                 if (!devnull)
815                         digestresult = copy(from_fd, from_name, to_fd,
816                              tempcopy ? tempfile : to_name, from_sb.st_size);
817                 else
818                         digestresult = NULL;
819         }
820
821         if (dostrip) {
822                 strip(tempcopy ? tempfile : to_name);
823
824                 /*
825                  * Re-open our fd on the target, in case we used a strip
826                  * that does not work in-place -- like GNU binutils strip.
827                  */
828                 close(to_fd);
829                 to_fd = open(tempcopy ? tempfile : to_name, O_RDONLY, 0);
830                 if (to_fd < 0)
831                         err(EX_OSERR, "stripping %s", to_name);
832         }
833
834         /*
835          * Compare the stripped temp file with the target.
836          */
837         if (docompare && dostrip && target && S_ISREG(to_sb.st_mode)) {
838                 temp_fd = to_fd;
839
840                 /* Re-open to_fd using the real target name. */
841                 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
842                         err(EX_OSERR, "%s", to_name);
843
844                 if (fstat(temp_fd, &temp_sb)) {
845                         serrno = errno;
846                         (void)unlink(tempfile);
847                         errno = serrno;
848                         err(EX_OSERR, "%s", tempfile);
849                 }
850
851                 if (compare(temp_fd, tempfile, (size_t)temp_sb.st_size, to_fd,
852                             to_name, (size_t)to_sb.st_size, &digestresult)
853                             == 0) {
854                         /*
855                          * If target has more than one link we need to
856                          * replace it in order to snap the extra links.
857                          * Need to preserve target file times, though.
858                          */
859                         if (to_sb.st_nlink != 1) {
860                                 tvb[0].tv_sec = to_sb.st_atime;
861                                 tvb[0].tv_usec = 0;
862                                 tvb[1].tv_sec = to_sb.st_mtime;
863                                 tvb[1].tv_usec = 0;
864                                 (void)utimes(tempfile, tvb);
865                         } else {
866                                 files_match = 1;
867                                 (void)unlink(tempfile);
868                         }
869                         (void) close(temp_fd);
870                 }
871         } else if (dostrip)
872                 digestresult = digest_file(tempfile);
873
874         /*
875          * Move the new file into place if doing a safe copy
876          * and the files are different (or just not compared).
877          */
878         if (tempcopy && !files_match) {
879                 /* Try to turn off the immutable bits. */
880                 if (to_sb.st_flags & NOCHANGEBITS)
881                         (void)chflags(to_name, to_sb.st_flags & ~NOCHANGEBITS);
882                 if (dobackup) {
883                         if ((size_t)snprintf(backup, MAXPATHLEN, "%s%s", to_name,
884                             suffix) != strlen(to_name) + strlen(suffix)) {
885                                 unlink(tempfile);
886                                 errx(EX_OSERR, "%s: backup filename too long",
887                                     to_name);
888                         }
889                         if (verbose)
890                                 (void)printf("install: %s -> %s\n", to_name, backup);
891                         if (rename(to_name, backup) < 0) {
892                                 serrno = errno;
893                                 unlink(tempfile);
894                                 errno = serrno;
895                                 err(EX_OSERR, "rename: %s to %s", to_name,
896                                      backup);
897                         }
898                 }
899                 if (verbose)
900                         (void)printf("install: %s -> %s\n", from_name, to_name);
901                 if (rename(tempfile, to_name) < 0) {
902                         serrno = errno;
903                         unlink(tempfile);
904                         errno = serrno;
905                         err(EX_OSERR, "rename: %s to %s",
906                             tempfile, to_name);
907                 }
908
909                 /* Re-open to_fd so we aren't hosed by the rename(2). */
910                 (void) close(to_fd);
911                 if ((to_fd = open(to_name, O_RDONLY, 0)) < 0)
912                         err(EX_OSERR, "%s", to_name);
913         }
914
915         /*
916          * Preserve the timestamp of the source file if necessary.
917          */
918         if (dopreserve && !files_match && !devnull) {
919                 tvb[0].tv_sec = from_sb.st_atime;
920                 tvb[0].tv_usec = 0;
921                 tvb[1].tv_sec = from_sb.st_mtime;
922                 tvb[1].tv_usec = 0;
923                 (void)utimes(to_name, tvb);
924         }
925
926         if (fstat(to_fd, &to_sb) == -1) {
927                 serrno = errno;
928                 (void)unlink(to_name);
929                 errno = serrno;
930                 err(EX_OSERR, "%s", to_name);
931         }
932
933         /*
934          * Set owner, group, mode for target; do the chown first,
935          * chown may lose the setuid bits.
936          */
937         if (!dounpriv && ((gid != (gid_t)-1 && gid != to_sb.st_gid) ||
938             (uid != (uid_t)-1 && uid != to_sb.st_uid) ||
939             (mode != (to_sb.st_mode & ALLPERMS)))) {
940                 /* Try to turn off the immutable bits. */
941                 if (to_sb.st_flags & NOCHANGEBITS)
942                         (void)fchflags(to_fd, to_sb.st_flags & ~NOCHANGEBITS);
943         }
944
945         if (!dounpriv & 
946             (gid != (gid_t)-1 && gid != to_sb.st_gid) ||
947             (uid != (uid_t)-1 && uid != to_sb.st_uid))
948                 if (fchown(to_fd, uid, gid) == -1) {
949                         serrno = errno;
950                         (void)unlink(to_name);
951                         errno = serrno;
952                         err(EX_OSERR,"%s: chown/chgrp", to_name);
953                 }
954
955         if (mode != (to_sb.st_mode & ALLPERMS)) {
956                 if (fchmod(to_fd,
957                      dounpriv ? mode & (S_IRWXU|S_IRWXG|S_IRWXO) : mode)) {
958                         serrno = errno;
959                         (void)unlink(to_name);
960                         errno = serrno;
961                         err(EX_OSERR, "%s: chmod", to_name);
962                 }
963         }
964
965         /*
966          * If provided a set of flags, set them, otherwise, preserve the
967          * flags, except for the dump flag.
968          * NFS does not support flags.  Ignore EOPNOTSUPP flags if we're just
969          * trying to turn off UF_NODUMP.  If we're trying to set real flags,
970          * then warn if the fs doesn't support it, otherwise fail.
971          */
972         if (!dounpriv & !devnull && (flags & SETFLAGS ||
973             (from_sb.st_flags & ~UF_NODUMP) != to_sb.st_flags) &&
974             fchflags(to_fd,
975             flags & SETFLAGS ? fset : from_sb.st_flags & ~UF_NODUMP)) {
976                 if (flags & SETFLAGS) {
977                         if (errno == EOPNOTSUPP)
978                                 warn("%s: chflags", to_name);
979                         else {
980                                 serrno = errno;
981                                 (void)unlink(to_name);
982                                 errno = serrno;
983                                 err(EX_OSERR, "%s: chflags", to_name);
984                         }
985                 }
986         }
987
988         (void)close(to_fd);
989         if (!devnull)
990                 (void)close(from_fd);
991
992         metadata_log(to_name, "file", tvb, NULL, digestresult, to_sb.st_size);
993         free(digestresult);
994 }
995
996 /*
997  * compare --
998  *      compare two files; non-zero means files differ
999  */
1000 static int
1001 compare(int from_fd, const char *from_name __unused, size_t from_len,
1002         int to_fd, const char *to_name __unused, size_t to_len,
1003         char **dresp)
1004 {
1005         char *p, *q;
1006         int rv;
1007         int done_compare;
1008         DIGEST_CTX ctx;
1009
1010         rv = 0;
1011         if (from_len != to_len)
1012                 return 1;
1013
1014         if (from_len <= MAX_CMP_SIZE) {
1015                 if (dresp != NULL)
1016                         digest_init(&ctx);
1017                 done_compare = 0;
1018                 if (trymmap(from_fd) && trymmap(to_fd)) {
1019                         p = mmap(NULL, from_len, PROT_READ, MAP_SHARED,
1020                             from_fd, (off_t)0);
1021                         if (p == MAP_FAILED)
1022                                 goto out;
1023                         q = mmap(NULL, from_len, PROT_READ, MAP_SHARED,
1024                             to_fd, (off_t)0);
1025                         if (q == MAP_FAILED) {
1026                                 munmap(p, from_len);
1027                                 goto out;
1028                         }
1029
1030                         rv = memcmp(p, q, from_len);
1031                         if (dresp != NULL)
1032                                 digest_update(&ctx, p, from_len);
1033                         munmap(p, from_len);
1034                         munmap(q, from_len);
1035                         done_compare = 1;
1036                 }
1037         out:
1038                 if (!done_compare) {
1039                         char buf1[MAXBSIZE];
1040                         char buf2[MAXBSIZE];
1041                         int n1, n2;
1042
1043                         rv = 0;
1044                         lseek(from_fd, 0, SEEK_SET);
1045                         lseek(to_fd, 0, SEEK_SET);
1046                         while (rv == 0) {
1047                                 n1 = read(from_fd, buf1, sizeof(buf1));
1048                                 if (n1 == 0)
1049                                         break;          /* EOF */
1050                                 else if (n1 > 0) {
1051                                         n2 = read(to_fd, buf2, n1);
1052                                         if (n2 == n1)
1053                                                 rv = memcmp(buf1, buf2, n1);
1054                                         else
1055                                                 rv = 1; /* out of sync */
1056                                 } else
1057                                         rv = 1;         /* read failure */
1058                                 digest_update(&ctx, buf1, n1);
1059                         }
1060                         lseek(from_fd, 0, SEEK_SET);
1061                         lseek(to_fd, 0, SEEK_SET);
1062                 }
1063         } else
1064                 rv = 1; /* don't bother in this case */
1065
1066         if (dresp != NULL) {
1067                 if (rv == 0)
1068                         *dresp = digest_end(&ctx, NULL);
1069                 else
1070                         (void)digest_end(&ctx, NULL);
1071         }
1072
1073         return rv;
1074 }
1075
1076 /*
1077  * create_tempfile --
1078  *      create a temporary file based on path and open it
1079  */
1080 static int
1081 create_tempfile(const char *path, char *temp, size_t tsize)
1082 {
1083         char *p;
1084
1085         (void)strncpy(temp, path, tsize);
1086         temp[tsize - 1] = '\0';
1087         if ((p = strrchr(temp, '/')) != NULL)
1088                 p++;
1089         else
1090                 p = temp;
1091         (void)strncpy(p, "INS@XXXX", &temp[tsize - 1] - p);
1092         temp[tsize - 1] = '\0';
1093         return (mkstemp(temp));
1094 }
1095
1096 /*
1097  * create_newfile --
1098  *      create a new file, overwriting an existing one if necessary
1099  */
1100 static int
1101 create_newfile(const char *path, int target, struct stat *sbp)
1102 {
1103         char backup[MAXPATHLEN];
1104         int saved_errno = 0;
1105         int newfd;
1106
1107         if (target) {
1108                 /*
1109                  * Unlink now... avoid ETXTBSY errors later.  Try to turn
1110                  * off the append/immutable bits -- if we fail, go ahead,
1111                  * it might work.
1112                  */
1113                 if (sbp->st_flags & NOCHANGEBITS)
1114                         (void)chflags(path, sbp->st_flags & ~NOCHANGEBITS);
1115
1116                 if (dobackup) {
1117                         if ((size_t)snprintf(backup, MAXPATHLEN, "%s%s",
1118                             path, suffix) != strlen(path) + strlen(suffix))
1119                                 errx(EX_OSERR, "%s: backup filename too long",
1120                                     path);
1121                         (void)snprintf(backup, MAXPATHLEN, "%s%s",
1122                             path, suffix);
1123                         if (verbose)
1124                                 (void)printf("install: %s -> %s\n",
1125                                     path, backup);
1126                         if (rename(path, backup) < 0)
1127                                 err(EX_OSERR, "rename: %s to %s", path, backup);
1128                 } else
1129                         if (unlink(path) < 0)
1130                                 saved_errno = errno;
1131         }
1132
1133         newfd = open(path, O_CREAT | O_RDWR | O_TRUNC, S_IRUSR | S_IWUSR);
1134         if (newfd < 0 && saved_errno != 0)
1135                 errno = saved_errno;
1136         return newfd;
1137 }
1138
1139 /*
1140  * copy --
1141  *      copy from one file to another
1142  */
1143 static char *
1144 copy(int from_fd, const char *from_name, int to_fd, const char *to_name,
1145     off_t size)
1146 {
1147         int nr, nw;
1148         int serrno;
1149         char *p;
1150         char buf[MAXBSIZE];
1151         int done_copy;
1152         DIGEST_CTX ctx;
1153
1154         /* Rewind file descriptors. */
1155         if (lseek(from_fd, (off_t)0, SEEK_SET) == (off_t)-1)
1156                 err(EX_OSERR, "lseek: %s", from_name);
1157         if (lseek(to_fd, (off_t)0, SEEK_SET) == (off_t)-1)
1158                 err(EX_OSERR, "lseek: %s", to_name);
1159
1160         digest_init(&ctx);
1161
1162         /*
1163          * Mmap and write if less than 8M (the limit is so we don't totally
1164          * trash memory on big files.  This is really a minor hack, but it
1165          * wins some CPU back.
1166          */
1167         done_copy = 0;
1168         if (size <= 8 * 1048576 && trymmap(from_fd) &&
1169             (p = mmap(NULL, (size_t)size, PROT_READ, MAP_SHARED,
1170                     from_fd, (off_t)0)) != MAP_FAILED) {
1171                 nw = write(to_fd, p, size);
1172                 if (nw != size) {
1173                         serrno = errno;
1174                         (void)unlink(to_name);
1175                         if (nw >= 0) {
1176                                 errx(EX_OSERR,
1177      "short write to %s: %jd bytes written, %jd bytes asked to write",
1178                                     to_name, (uintmax_t)nw, (uintmax_t)size);
1179                         } else {
1180                                 errno = serrno;
1181                                 err(EX_OSERR, "%s", to_name);
1182                         }
1183                 }
1184                 digest_update(&ctx, p, size);
1185                 (void)munmap(p, size);
1186                 done_copy = 1;
1187         }
1188         if (!done_copy) {
1189                 while ((nr = read(from_fd, buf, sizeof(buf))) > 0) {
1190                         if ((nw = write(to_fd, buf, nr)) != nr) {
1191                                 serrno = errno;
1192                                 (void)unlink(to_name);
1193                                 if (nw >= 0) {
1194                                         errx(EX_OSERR,
1195      "short write to %s: %jd bytes written, %jd bytes asked to write",
1196                                             to_name, (uintmax_t)nw,
1197                                             (uintmax_t)size);
1198                                 } else {
1199                                         errno = serrno;
1200                                         err(EX_OSERR, "%s", to_name);
1201                                 }
1202                         }
1203                         digest_update(&ctx, buf, nr);
1204                 }
1205                 if (nr != 0) {
1206                         serrno = errno;
1207                         (void)unlink(to_name);
1208                         errno = serrno;
1209                         err(EX_OSERR, "%s", from_name);
1210                 }
1211         }
1212         return (digest_end(&ctx, NULL));
1213 }
1214
1215 /*
1216  * strip --
1217  *      use strip(1) to strip the target file
1218  */
1219 static void
1220 strip(const char *to_name)
1221 {
1222         const char *stripbin;
1223         const char *args[3];
1224         pid_t pid;
1225         int error, status;
1226
1227         stripbin = getenv("STRIPBIN");
1228         if (stripbin == NULL)
1229                 stripbin = "strip";
1230         args[0] = stripbin;
1231         args[1] = to_name;
1232         args[2] = NULL;
1233         error = posix_spawnp(&pid, stripbin, NULL, NULL,
1234             __DECONST(char **, args), environ);
1235         if (error != 0) {
1236                 (void)unlink(to_name);
1237                 errc(error == EAGAIN || error == EPROCLIM || error == ENOMEM ?
1238                     EX_TEMPFAIL : EX_OSERR, error, "spawn %s", stripbin);
1239         }
1240         if (waitpid(pid, &status, 0) == -1) {
1241                 error = errno;
1242                 (void)unlink(to_name);
1243                 errc(EX_SOFTWARE, error, "wait");
1244                 /* NOTREACHED */
1245         }
1246         if (status != 0) {
1247                 (void)unlink(to_name);
1248                 errx(EX_SOFTWARE, "strip command %s failed on %s",
1249                     stripbin, to_name);
1250         }
1251 }
1252
1253 /*
1254  * install_dir --
1255  *      build directory hierarchy
1256  */
1257 static void
1258 install_dir(char *path)
1259 {
1260         char *p;
1261         struct stat sb;
1262         int ch;
1263
1264         for (p = path;; ++p)
1265                 if (!*p || (p != path && *p  == '/')) {
1266                         ch = *p;
1267                         *p = '\0';
1268 again:
1269                         if (stat(path, &sb) < 0) {
1270                                 if (errno != ENOENT)
1271                                         err(EX_OSERR, "stat %s", path);
1272                                 if (mkdir(path, 0755) < 0) {
1273                                         if (errno == EEXIST)
1274                                                 goto again;
1275                                         err(EX_OSERR, "mkdir %s", path);
1276                                 }
1277                                 if (verbose)
1278                                         (void)printf("install: mkdir %s\n",
1279                                             path);
1280                         } else if (!S_ISDIR(sb.st_mode))
1281                                 errx(EX_OSERR, "%s exists but is not a directory", path);
1282                         if (!(*p = ch))
1283                                 break;
1284                 }
1285
1286         if (!dounpriv) {
1287                 if ((gid != (gid_t)-1 || uid != (uid_t)-1) &&
1288                     chown(path, uid, gid))
1289                         warn("chown %u:%u %s", uid, gid, path);
1290                 /* XXXBED: should we do the chmod in the dounpriv case? */
1291                 if (chmod(path, mode))
1292                         warn("chmod %o %s", mode, path);
1293         }
1294         metadata_log(path, "dir", NULL, NULL, NULL, 0);
1295 }
1296
1297 /*
1298  * metadata_log --
1299  *      if metafp is not NULL, output mtree(8) full path name and settings to
1300  *      metafp, to allow permissions to be set correctly by other tools,
1301  *      or to allow integrity checks to be performed.
1302  */
1303 static void
1304 metadata_log(const char *path, const char *type, struct timeval *tv,
1305         const char *slink, const char *digestresult, off_t size)
1306 {
1307         static const char extra[] = { ' ', '\t', '\n', '\\', '#', '\0' };
1308         const char *p;
1309         char *buf;
1310         size_t destlen;
1311         struct flock metalog_lock;
1312
1313         if (!metafp)    
1314                 return;
1315         /* Buffer for strsvis(3). */
1316         buf = (char *)malloc(4 * strlen(path) + 1);
1317         if (buf == NULL) {
1318                 warnx("%s", strerror(ENOMEM));
1319                 return;
1320         }
1321
1322         /* Lock log file. */
1323         metalog_lock.l_start = 0;
1324         metalog_lock.l_len = 0;
1325         metalog_lock.l_whence = SEEK_SET;
1326         metalog_lock.l_type = F_WRLCK;
1327         if (fcntl(fileno(metafp), F_SETLKW, &metalog_lock) == -1) {
1328                 warn("can't lock %s", metafile);
1329                 free(buf);
1330                 return;
1331         }
1332
1333         /* Remove destdir. */
1334         p = path;
1335         if (destdir) {
1336                 destlen = strlen(destdir);
1337                 if (strncmp(p, destdir, destlen) == 0 &&
1338                     (p[destlen] == '/' || p[destlen] == '\0'))
1339                         p += destlen;
1340         }
1341         while (*p && *p == '/')
1342                 p++;
1343         strsvis(buf, p, VIS_OCTAL, extra);
1344         p = buf;
1345         /* Print details. */
1346         fprintf(metafp, ".%s%s type=%s", *p ? "/" : "", p, type);
1347         if (owner)
1348                 fprintf(metafp, " uname=%s", owner);
1349         if (group)
1350                 fprintf(metafp, " gname=%s", group);
1351         fprintf(metafp, " mode=%#o", mode);
1352         if (slink) {
1353                 strsvis(buf, slink, VIS_CSTYLE, extra); /* encode link */
1354                 fprintf(metafp, " link=%s", buf);
1355         }
1356         if (*type == 'f') /* type=file */
1357                 fprintf(metafp, " size=%lld", (long long)size);
1358         if (tv != NULL && dopreserve)
1359                 fprintf(metafp, " time=%lld.%ld",
1360                         (long long)tv[1].tv_sec, (long)tv[1].tv_usec);
1361         if (digestresult && digest)
1362                 fprintf(metafp, " %s=%s", digest, digestresult);
1363         if (fflags)
1364                 fprintf(metafp, " flags=%s", fflags);
1365         if (tags)
1366                 fprintf(metafp, " tags=%s", tags);
1367         fputc('\n', metafp);
1368         /* Flush line. */
1369         fflush(metafp);
1370
1371         /* Unlock log file. */
1372         metalog_lock.l_type = F_UNLCK;
1373         if (fcntl(fileno(metafp), F_SETLKW, &metalog_lock) == -1)
1374                 warn("can't unlock %s", metafile);
1375         free(buf);
1376 }
1377
1378 /*
1379  * usage --
1380  *      print a usage message and die
1381  */
1382 static void
1383 usage(void)
1384 {
1385         (void)fprintf(stderr,
1386 "usage: install [-bCcpSsUv] [-f flags] [-g group] [-m mode] [-o owner]\n"
1387 "               [-M log] [-D dest] [-h hash] [-T tags]\n"
1388 "               [-B suffix] [-l linkflags] [-N dbdir]\n"
1389 "               file1 file2\n"
1390 "       install [-bCcpSsUv] [-f flags] [-g group] [-m mode] [-o owner]\n"
1391 "               [-M log] [-D dest] [-h hash] [-T tags]\n"
1392 "               [-B suffix] [-l linkflags] [-N dbdir]\n"
1393 "               file1 ... fileN directory\n"
1394 "       install -dU [-vU] [-g group] [-m mode] [-N dbdir] [-o owner]\n"
1395 "               [-M log] [-D dest] [-h hash] [-T tags]\n"
1396 "               directory ...\n");
1397         exit(EX_USAGE);
1398         /* NOTREACHED */
1399 }
1400
1401 /*
1402  * trymmap --
1403  *      return true (1) if mmap should be tried, false (0) if not.
1404  */
1405 static int
1406 trymmap(int fd)
1407 {
1408 /*
1409  * The ifdef is for bootstrapping - f_fstypename doesn't exist in
1410  * pre-Lite2-merge systems.
1411  */
1412 #ifdef MFSNAMELEN
1413         struct statfs stfs;
1414
1415         if (fstatfs(fd, &stfs) != 0)
1416                 return (0);
1417         if (strcmp(stfs.f_fstypename, "ufs") == 0 ||
1418             strcmp(stfs.f_fstypename, "cd9660") == 0)
1419                 return (1);
1420 #endif
1421         return (0);
1422 }