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