2 * Copyright (c) 1987, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1987, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)xinstall.c 8.1 (Berkeley) 7/21/93
35 * $FreeBSD: src/usr.bin/xinstall/xinstall.c,v 1.38.2.8 2002/08/07 16:29:48 ru Exp $
36 * $DragonFly: src/usr.bin/xinstall/xinstall.c,v 1.7 2008/11/12 00:16:46 dillon Exp $
39 #include <sys/param.h>
41 #include <sys/mount.h>
59 #include "pathnames.h"
61 /* Bootstrap aid - this doesn't exist in most older releases */
63 #define MAP_FAILED ((void *)-1) /* from <sys/mman.h> */
66 #define UF_NOHISTORY 0
69 #define MAX_CMP_SIZE (16 * 1024 * 1024)
71 #define DIRECTORY 0x01 /* Tell install it's a directory. */
72 #define SETFLAGS 0x02 /* Tell install to set flags. */
73 #define NOCHANGEBITS (UF_IMMUTABLE | UF_APPEND | SF_IMMUTABLE | SF_APPEND)
74 #define BACKUP_SUFFIX ".old"
80 int dobackup
, docompare
, dodir
, dopreserve
, dostrip
, nommap
, safecopy
, verbose
;
81 mode_t mode
= S_IRWXU
| S_IRGRP
| S_IXGRP
| S_IROTH
| S_IXOTH
;
82 const char *suffix
= BACKUP_SUFFIX
;
84 static int file_getgroup(const char *etcdir
, const char *group
, gid_t
*gid
);
85 static int file_getowner(const char *etcdir
, const char *owner
, uid_t
*uid
);
87 void copy(int, const char *, int, const char *, off_t
);
88 int compare(int, const char *, size_t, int, const char *, size_t);
89 int create_newfile(const char *, int, struct stat
*);
90 int create_tempfile(const char *, char *, size_t);
91 void install(const char *, const char *, u_long
, u_long
, u_int
);
92 void install_dir(char *);
93 u_long
numeric_id(const char *, const char *);
94 void strip(const char *);
99 main(int argc
, char **argv
)
101 struct stat from_sb
, to_sb
;
109 const char *group
, *owner
, *to_name
;
118 while ((ch
= getopt(argc
, argv
, "L:B:bCcdf:g:lMm:o:pSsv")) != -1)
133 /* For backwards compatibility. */
140 if (strtofflags(&flags
, &fset
, &fclr
))
141 errx(EX_USAGE
, "%s: invalid flag", flags
);
154 if (!(set
= setmode(optarg
)))
155 errx(EX_USAGE
, "invalid file mode: %s",
157 mode
= getmode(set
, 0);
164 docompare
= dopreserve
= 1;
182 /* some options make no sense when creating directories */
183 if (dostrip
&& dodir
)
186 /* must have at least two arguments, except when creating directories */
187 if (argc
< 2 && !dodir
)
190 /* need to make a temp copy so we can compare stripped version */
191 if (docompare
&& dostrip
)
194 /* no etcdir specified, always try the system */
200 /* get group and owner id's */
202 if (etcdir
&& file_getgroup(etcdir
, group
, &gid
)) {
204 } else if (trysys
&& (gp
= getgrnam(group
)) != NULL
) {
207 gid
= (gid_t
)numeric_id(group
, "group");
212 if (etcdir
&& file_getowner(etcdir
, owner
, &uid
)) {
214 } else if (trysys
&& (pp
= getpwnam(owner
)) != NULL
) {
217 uid
= (uid_t
)numeric_id(owner
, "user");
222 for (; *argv
!= NULL
; ++argv
)
228 no_target
= stat(to_name
= argv
[argc
- 1], &to_sb
);
229 if (!no_target
&& S_ISDIR(to_sb
.st_mode
)) {
230 for (; *argv
!= to_name
; ++argv
)
231 install(*argv
, to_name
, fset
, fclr
, iflags
| DIRECTORY
);
236 /* can't do file1 file2 directory/file */
241 if (stat(*argv
, &from_sb
))
242 err(EX_OSERR
, "%s", *argv
);
243 if (!S_ISREG(to_sb
.st_mode
)) {
245 err(EX_OSERR
, "%s", to_name
);
247 if (to_sb
.st_dev
== from_sb
.st_dev
&&
248 to_sb
.st_ino
== from_sb
.st_ino
)
250 "%s and %s are the same file", *argv
, to_name
);
252 install(*argv
, to_name
, fset
, fclr
, iflags
);
258 numeric_id(const char *name
, const char *type
)
265 * We know that uid_t's and gid_t's are unsigned longs.
268 val
= strtoul(name
, &ep
, 10);
270 err(EX_NOUSER
, "%s", name
);
272 errx(EX_NOUSER
, "unknown %s %s", type
, name
);
278 file_getgroup(const char *etcdir
, const char *group
, gid_t
*gid
)
287 grlen
= strlen(group
);
289 if (asprintf(&path
, "%s/group", etcdir
) < 0)
290 errx(EX_OSERR
, "asprintf()");
291 if ((fp
= fopen(path
, "r")) != NULL
) {
292 while ((ptr
= fgetln(fp
, &len
)) != NULL
&& len
) {
294 if ((scan
= strchr(ptr
, ':')) == NULL
)
296 if (scan
- ptr
!= grlen
)
298 if (strncmp(ptr
, group
, grlen
) != 0)
300 if ((scan
= strchr(scan
+ 1, ':')) == NULL
)
302 *gid
= strtoul(scan
+ 1, NULL
, 10);
308 return((*gid
== (gid_t
)-1) ? 0 : 1);
313 file_getowner(const char *etcdir
, const char *owner
, uid_t
*uid
)
322 owner_len
= strlen(owner
);
324 if (asprintf(&path
, "%s/master.passwd", etcdir
) < 0)
325 errx(EX_OSERR
, "asprintf()");
326 if ((fp
= fopen(path
, "r")) != NULL
) {
327 while ((ptr
= fgetln(fp
, &len
)) != NULL
&& len
) {
329 if ((scan
= strchr(ptr
, ':')) == NULL
)
331 if (scan
- ptr
!= owner_len
)
333 if (strncmp(ptr
, owner
, owner_len
) != 0)
335 if ((scan
= strchr(scan
+ 1, ':')) == NULL
)
337 *uid
= strtoul(scan
+ 1, NULL
, 10);
343 return((*uid
== (uid_t
)-1) ? 0 : 1);
348 * build a path name and install the file
351 install(const char *from_name
, const char *to_name
, u_long fset
, u_long fclr
,
354 struct stat from_sb
, temp_sb
, to_sb
;
356 int devnull
, files_match
, from_fd
, serrno
, target
;
357 int tempcopy
, temp_fd
, to_fd
;
359 char backup
[MAXPATHLEN
], *p
, pathbuf
[MAXPATHLEN
], tempfile
[MAXPATHLEN
];
363 /* If try to install NULL file to a directory, fails. */
364 if (flags
& DIRECTORY
|| strcmp(from_name
, _PATH_DEVNULL
)) {
365 if (stat(from_name
, &from_sb
))
366 err(EX_OSERR
, "%s", from_name
);
367 if (!S_ISREG(from_sb
.st_mode
)) {
369 err(EX_OSERR
, "%s", from_name
);
371 /* Build the target path. */
372 if (flags
& DIRECTORY
) {
373 snprintf(pathbuf
, sizeof(pathbuf
), "%s/%s",
375 (p
= strrchr(from_name
, '/')) ? ++p
: from_name
);
383 target
= stat(to_name
, &to_sb
) == 0;
385 /* Only install to regular files. */
386 if (target
&& !S_ISREG(to_sb
.st_mode
)) {
392 /* Only copy safe if the target exists. */
393 tempcopy
= safecopy
&& target
;
395 if (!devnull
&& (from_fd
= open(from_name
, O_RDONLY
, 0)) < 0)
396 err(EX_OSERR
, "%s", from_name
);
398 /* If we don't strip, we can compare first. */
399 if (docompare
&& !dostrip
&& target
) {
400 if ((to_fd
= open(to_name
, O_RDONLY
, 0)) < 0)
401 err(EX_OSERR
, "%s", to_name
);
403 files_match
= to_sb
.st_size
== 0;
405 files_match
= !(compare(from_fd
, from_name
,
406 (size_t)from_sb
.st_size
, to_fd
,
407 to_name
, (size_t)to_sb
.st_size
));
409 /* Close "to" file unless we match. */
416 to_fd
= create_tempfile(to_name
, tempfile
,
419 err(EX_OSERR
, "%s", tempfile
);
421 if ((to_fd
= create_newfile(to_name
, target
,
423 err(EX_OSERR
, "%s", to_name
);
425 printf("install: %s -> %s\n",
429 copy(from_fd
, from_name
, to_fd
,
430 tempcopy
? tempfile
: to_name
, from_sb
.st_size
);
434 strip(tempcopy
? tempfile
: to_name
);
437 * Re-open our fd on the target, in case we used a strip
438 * that does not work in-place -- like GNU binutils strip.
441 to_fd
= open(tempcopy
? tempfile
: to_name
, O_RDONLY
, 0);
443 err(EX_OSERR
, "stripping %s", to_name
);
447 * Compare the stripped temp file with the target.
449 if (docompare
&& dostrip
&& target
) {
452 /* Re-open to_fd using the real target name. */
453 if ((to_fd
= open(to_name
, O_RDONLY
, 0)) < 0)
454 err(EX_OSERR
, "%s", to_name
);
456 if (fstat(temp_fd
, &temp_sb
)) {
460 err(EX_OSERR
, "%s", tempfile
);
463 if (compare(temp_fd
, tempfile
, (size_t)temp_sb
.st_size
, to_fd
,
464 to_name
, (size_t)to_sb
.st_size
) == 0) {
466 * If target has more than one link we need to
467 * replace it in order to snap the extra links.
468 * Need to preserve target file times, though.
470 if (to_sb
.st_nlink
!= 1) {
471 utb
.actime
= to_sb
.st_atime
;
472 utb
.modtime
= to_sb
.st_mtime
;
473 utime(tempfile
, &utb
);
483 * Move the new file into place if doing a safe copy
484 * and the files are different (or just not compared).
486 if (tempcopy
&& !files_match
) {
487 /* Try to turn off the immutable bits. */
488 if (to_sb
.st_flags
& NOCHANGEBITS
)
489 chflags(to_name
, to_sb
.st_flags
& ~NOCHANGEBITS
);
491 if ((size_t)snprintf(backup
, MAXPATHLEN
, "%s%s", to_name
,
492 suffix
) != strlen(to_name
) + strlen(suffix
)) {
494 errx(EX_OSERR
, "%s: backup filename too long",
498 printf("install: %s -> %s\n", to_name
, backup
);
499 if (rename(to_name
, backup
) < 0) {
503 err(EX_OSERR
, "rename: %s to %s", to_name
,
508 printf("install: %s -> %s\n", from_name
, to_name
);
509 if (rename(tempfile
, to_name
) < 0) {
513 err(EX_OSERR
, "rename: %s to %s",
517 /* Re-open to_fd so we aren't hosed by the rename(2). */
519 if ((to_fd
= open(to_name
, O_RDONLY
, 0)) < 0)
520 err(EX_OSERR
, "%s", to_name
);
524 * Preserve the timestamp of the source file if necessary.
526 if (dopreserve
&& !files_match
&& !devnull
) {
527 utb
.actime
= from_sb
.st_atime
;
528 utb
.modtime
= from_sb
.st_mtime
;
529 utime(to_name
, &utb
);
532 if (fstat(to_fd
, &to_sb
) == -1) {
536 err(EX_OSERR
, "%s", to_name
);
540 * Set owner, group, mode for target; do the chown first,
541 * chown may lose the setuid bits.
543 if ((gid
!= (gid_t
)-1 && gid
!= to_sb
.st_gid
) ||
544 (uid
!= (uid_t
)-1 && uid
!= to_sb
.st_uid
) ||
545 (mode
!= to_sb
.st_mode
)) {
546 /* Try to turn off the immutable bits. */
547 if (to_sb
.st_flags
& NOCHANGEBITS
)
548 fchflags(to_fd
, to_sb
.st_flags
& ~NOCHANGEBITS
);
551 if ((gid
!= (gid_t
)-1 && gid
!= to_sb
.st_gid
) ||
552 (uid
!= (uid_t
)-1 && uid
!= to_sb
.st_uid
))
553 if (fchown(to_fd
, uid
, gid
) == -1) {
557 err(EX_OSERR
,"%s: chown/chgrp", to_name
);
560 if (mode
!= to_sb
.st_mode
)
561 if (fchmod(to_fd
, mode
)) {
565 err(EX_OSERR
, "%s: chmod", to_name
);
569 * If provided a set of flags, set them, otherwise, preserve the
570 * flags, except for the dump and history flags. The dump flag
571 * is left clear on the target while the history flag from when
572 * the target was created (which is inherited from the target's
573 * parent directory) is retained.
575 if (flags
& SETFLAGS
) {
576 nfset
= (to_sb
.st_flags
| fset
) & ~fclr
;
578 nfset
= from_sb
.st_flags
& ~(UF_NODUMP
| UF_NOHISTORY
) |
579 (to_sb
.st_flags
& UF_NOHISTORY
);
583 * NFS does not support flags. Ignore EOPNOTSUPP flags if we're just
584 * trying to turn off UF_NODUMP. If we're trying to set real flags,
585 * then warn if the the fs doesn't support it, otherwise fail.
587 if (!devnull
&& fchflags(to_fd
, nfset
)) {
588 if (flags
& SETFLAGS
) {
589 if (errno
== EOPNOTSUPP
)
590 warn("%s: chflags", to_name
);
595 err(EX_OSERR
, "%s: chflags", to_name
);
607 * compare two files; non-zero means files differ
610 compare(int from_fd
, const char *from_name __unused
, size_t from_len
,
611 int to_fd
, const char *to_name __unused
, size_t to_len
)
618 if (from_len
!= to_len
)
621 if (from_len
<= MAX_CMP_SIZE
) {
623 if (trymmap(from_fd
) && trymmap(to_fd
)) {
624 p
= mmap(NULL
, from_len
, PROT_READ
, MAP_SHARED
, from_fd
, (off_t
)0);
625 if (p
== (char *)MAP_FAILED
)
627 q
= mmap(NULL
, from_len
, PROT_READ
, MAP_SHARED
, to_fd
, (off_t
)0);
628 if (q
== (char *)MAP_FAILED
) {
633 rv
= memcmp(p
, q
, from_len
);
645 lseek(from_fd
, 0, SEEK_SET
);
646 lseek(to_fd
, 0, SEEK_SET
);
648 n1
= read(from_fd
, buf1
, sizeof(buf1
));
652 n2
= read(to_fd
, buf2
, n1
);
654 rv
= memcmp(buf1
, buf2
, n1
);
656 rv
= 1; /* out of sync */
658 rv
= 1; /* read failure */
660 lseek(from_fd
, 0, SEEK_SET
);
661 lseek(to_fd
, 0, SEEK_SET
);
664 rv
= 1; /* don't bother in this case */
671 * create a temporary file based on path and open it
674 create_tempfile(const char *path
, char *temp
, size_t tsize
)
678 strncpy(temp
, path
, tsize
);
679 temp
[tsize
- 1] = '\0';
680 if ((p
= strrchr(temp
, '/')) != NULL
)
684 strncpy(p
, "INS@XXXX", &temp
[tsize
- 1] - p
);
685 temp
[tsize
- 1] = '\0';
686 return (mkstemp(temp
));
691 * create a new file, overwriting an existing one if necessary
694 create_newfile(const char *path
, int target
, struct stat
*sbp
)
696 char backup
[MAXPATHLEN
];
700 * Unlink now... avoid ETXTBSY errors later. Try to turn
701 * off the append/immutable bits -- if we fail, go ahead,
704 if (sbp
->st_flags
& NOCHANGEBITS
)
705 chflags(path
, sbp
->st_flags
& ~NOCHANGEBITS
);
708 if ((size_t)snprintf(backup
, MAXPATHLEN
, "%s%s",
709 path
, suffix
) != strlen(path
) + strlen(suffix
))
710 errx(EX_OSERR
, "%s: backup filename too long",
712 snprintf(backup
, MAXPATHLEN
, "%s%s",
715 printf("install: %s -> %s\n",
717 if (rename(path
, backup
) < 0)
718 err(EX_OSERR
, "rename: %s to %s", path
, backup
);
723 return (open(path
, O_CREAT
| O_RDWR
| O_TRUNC
, S_IRUSR
| S_IWUSR
));
728 * copy from one file to another
731 copy(int from_fd
, const char *from_name
, int to_fd
,
732 const char *to_name
, off_t size
)
736 char *p
, buf
[MAXBSIZE
];
739 /* Rewind file descriptors. */
740 if (lseek(from_fd
, (off_t
)0, SEEK_SET
) == (off_t
)-1)
741 err(EX_OSERR
, "lseek: %s", from_name
);
742 if (lseek(to_fd
, (off_t
)0, SEEK_SET
) == (off_t
)-1)
743 err(EX_OSERR
, "lseek: %s", to_name
);
746 * Mmap and write if less than 8M (the limit is so we don't totally
747 * trash memory on big files. This is really a minor hack, but it
748 * wins some CPU back.
751 if (size
<= 8 * 1048576 && trymmap(from_fd
) &&
752 (p
= mmap(NULL
, (size_t)size
, PROT_READ
, MAP_SHARED
,
753 from_fd
, (off_t
)0)) != (char *)MAP_FAILED
) {
754 if ((nw
= write(to_fd
, p
, size
)) != size
) {
757 errno
= nw
> 0 ? EIO
: serrno
;
758 err(EX_OSERR
, "%s", to_name
);
763 while ((nr
= read(from_fd
, buf
, sizeof(buf
))) > 0)
764 if ((nw
= write(to_fd
, buf
, nr
)) != nr
) {
767 errno
= nw
> 0 ? EIO
: serrno
;
768 err(EX_OSERR
, "%s", to_name
);
774 err(EX_OSERR
, "%s", from_name
);
781 * use strip(1) to strip the target file
784 strip(const char *to_name
)
786 const char *stripbin
;
794 err(EX_TEMPFAIL
, "fork");
796 stripbin
= getenv("STRIPBIN");
797 if (stripbin
== NULL
)
799 execlp(stripbin
, stripbin
, to_name
, (char *)NULL
);
800 err(EX_OSERR
, "exec(%s)", stripbin
);
802 if (wait(&status
) == -1 || status
) {
805 errc(EX_SOFTWARE
, serrno
, "wait");
813 * build directory hierarchy
816 install_dir(char *path
)
823 if (!*p
|| (p
!= path
&& *p
== '/')) {
826 if (stat(path
, &sb
)) {
827 if (errno
!= ENOENT
|| mkdir(path
, 0755) < 0) {
828 err(EX_OSERR
, "mkdir %s", path
);
831 printf("install: mkdir %s\n",
833 } else if (!S_ISDIR(sb
.st_mode
))
834 errx(EX_OSERR
, "%s exists but is not a directory", path
);
839 if ((gid
!= (gid_t
)-1 || uid
!= (uid_t
)-1) && chown(path
, uid
, gid
))
840 warn("chown %u:%u %s", uid
, gid
, path
);
841 if (chmod(path
, mode
))
842 warn("chmod %o %s", mode
, path
);
847 * print a usage message and die
853 usage: install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode]\n\
854 [-o owner] file1 file2\n\
855 install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode]\n\
856 [-o owner] file1 ... fileN directory\n\
857 install -d [-v] [-g group] [-m mode] [-o owner] directory ...\n");
864 * return true (1) if mmap should be tried, false (0) if not.
870 * The ifdef is for bootstrapping - f_fstypename doesn't exist in
871 * pre-Lite2-merge systems.
876 if (nommap
|| fstatfs(fd
, &stfs
) != 0)
878 if (strcmp(stfs
.f_fstypename
, "ufs") == 0 ||
879 strcmp(stfs
.f_fstypename
, "cd9660") == 0)