Home | History | Annotate | Line # | Download | only in xinstall
xinstall.c revision 1.7
      1  1.7  jtc /*	$NetBSD: xinstall.c,v 1.7 1994/12/20 01:24:38 jtc Exp $	*/
      2  1.5  jtc 
      3  1.1  cgd /*
      4  1.5  jtc  * Copyright (c) 1987, 1993
      5  1.5  jtc  *	The Regents of the University of California.  All rights reserved.
      6  1.1  cgd  *
      7  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      8  1.1  cgd  * modification, are permitted provided that the following conditions
      9  1.1  cgd  * are met:
     10  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
     11  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     12  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     15  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1  cgd  *    must display the following acknowledgement:
     17  1.1  cgd  *	This product includes software developed by the University of
     18  1.1  cgd  *	California, Berkeley and its contributors.
     19  1.1  cgd  * 4. Neither the name of the University nor the names of its contributors
     20  1.1  cgd  *    may be used to endorse or promote products derived from this software
     21  1.1  cgd  *    without specific prior written permission.
     22  1.1  cgd  *
     23  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1  cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1  cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1  cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1  cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1  cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1  cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1  cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1  cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1  cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1  cgd  * SUCH DAMAGE.
     34  1.1  cgd  */
     35  1.1  cgd 
     36  1.1  cgd #ifndef lint
     37  1.5  jtc static char copyright[] =
     38  1.5  jtc "@(#) Copyright (c) 1987, 1993\n\
     39  1.5  jtc 	The Regents of the University of California.  All rights reserved.\n";
     40  1.1  cgd #endif /* not lint */
     41  1.1  cgd 
     42  1.1  cgd #ifndef lint
     43  1.5  jtc #if 0
     44  1.5  jtc static char sccsid[] = "@(#)xinstall.c	8.1 (Berkeley) 7/21/93";
     45  1.5  jtc #endif
     46  1.7  jtc static char rcsid[] = "$NetBSD: xinstall.c,v 1.7 1994/12/20 01:24:38 jtc Exp $";
     47  1.1  cgd #endif /* not lint */
     48  1.1  cgd 
     49  1.1  cgd #include <sys/param.h>
     50  1.5  jtc #include <sys/wait.h>
     51  1.5  jtc #include <sys/mman.h>
     52  1.1  cgd #include <sys/stat.h>
     53  1.5  jtc 
     54  1.5  jtc #include <ctype.h>
     55  1.5  jtc #include <errno.h>
     56  1.5  jtc #include <fcntl.h>
     57  1.1  cgd #include <grp.h>
     58  1.5  jtc #include <paths.h>
     59  1.1  cgd #include <pwd.h>
     60  1.1  cgd #include <stdio.h>
     61  1.5  jtc #include <stdlib.h>
     62  1.5  jtc #include <string.h>
     63  1.5  jtc #include <unistd.h>
     64  1.5  jtc #include <err.h>
     65  1.5  jtc 
     66  1.1  cgd #include "pathnames.h"
     67  1.1  cgd 
     68  1.5  jtc struct passwd *pp;
     69  1.5  jtc struct group *gp;
     70  1.5  jtc int docopy, dodir, dostrip;
     71  1.5  jtc int mode = S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
     72  1.5  jtc char *group, *owner, pathbuf[MAXPATHLEN];
     73  1.5  jtc 
     74  1.5  jtc #define	DIRECTORY	0x01		/* Tell install it's a directory. */
     75  1.5  jtc #define	SETFLAGS	0x02		/* Tell install to set flags. */
     76  1.5  jtc 
     77  1.5  jtc void	copy __P((int, char *, int, char *, off_t));
     78  1.5  jtc void	install __P((char *, char *, u_long, u_int));
     79  1.7  jtc void	install_dir __P((char *));
     80  1.5  jtc u_long	string_to_flags __P((char **, u_long *, u_long *));
     81  1.5  jtc void	strip __P((char *));
     82  1.5  jtc void	usage __P((void));
     83  1.1  cgd 
     84  1.5  jtc int
     85  1.1  cgd main(argc, argv)
     86  1.1  cgd 	int argc;
     87  1.5  jtc 	char *argv[];
     88  1.1  cgd {
     89  1.1  cgd 	struct stat from_sb, to_sb;
     90  1.5  jtc 	mode_t *set;
     91  1.5  jtc 	u_long fset;
     92  1.5  jtc 	u_int iflags;
     93  1.1  cgd 	int ch, no_target;
     94  1.5  jtc 	char *flags, *to_name;
     95  1.1  cgd 
     96  1.5  jtc 	iflags = 0;
     97  1.5  jtc 	while ((ch = getopt(argc, argv, "cf:g:m:o:sd")) != EOF)
     98  1.1  cgd 		switch((char)ch) {
     99  1.1  cgd 		case 'c':
    100  1.1  cgd 			docopy = 1;
    101  1.1  cgd 			break;
    102  1.5  jtc 		case 'f':
    103  1.5  jtc 			flags = optarg;
    104  1.5  jtc 			if (string_to_flags(&flags, &fset, NULL))
    105  1.5  jtc 				errx(1, "%s: invalid flag", flags);
    106  1.5  jtc 			iflags |= SETFLAGS;
    107  1.5  jtc 			break;
    108  1.1  cgd 		case 'g':
    109  1.1  cgd 			group = optarg;
    110  1.1  cgd 			break;
    111  1.1  cgd 		case 'm':
    112  1.5  jtc 			if (!(set = setmode(optarg)))
    113  1.5  jtc 				errx(1, "%s: invalid file mode", optarg);
    114  1.1  cgd 			mode = getmode(set, 0);
    115  1.1  cgd 			break;
    116  1.1  cgd 		case 'o':
    117  1.1  cgd 			owner = optarg;
    118  1.1  cgd 			break;
    119  1.1  cgd 		case 's':
    120  1.1  cgd 			dostrip = 1;
    121  1.1  cgd 			break;
    122  1.2  jtc 		case 'd':
    123  1.2  jtc 			dodir = 1;
    124  1.2  jtc 			break;
    125  1.1  cgd 		case '?':
    126  1.1  cgd 		default:
    127  1.1  cgd 			usage();
    128  1.1  cgd 		}
    129  1.1  cgd 	argc -= optind;
    130  1.1  cgd 	argv += optind;
    131  1.2  jtc 
    132  1.2  jtc 	/* copy and strip options make no sense when creating directories */
    133  1.2  jtc 	if ((docopy || dostrip) && dodir)
    134  1.2  jtc 		usage();
    135  1.2  jtc 
    136  1.2  jtc 	/* must have at least two arguments, except when creating directories */
    137  1.2  jtc 	if (argc < 2 && !dodir)
    138  1.1  cgd 		usage();
    139  1.1  cgd 
    140  1.1  cgd 	/* get group and owner id's */
    141  1.5  jtc 	if (group && !(gp = getgrnam(group)))
    142  1.5  jtc 		errx(1, "unknown group %s", group);
    143  1.5  jtc 	if (owner && !(pp = getpwnam(owner)))
    144  1.5  jtc 		errx(1, "unknown user %s", owner);
    145  1.1  cgd 
    146  1.2  jtc 	if (dodir) {
    147  1.2  jtc 		for (; *argv != NULL; ++argv)
    148  1.5  jtc 			install_dir(*argv);
    149  1.2  jtc 		exit (0);
    150  1.2  jtc 		/* NOTREACHED */
    151  1.5  jtc 	}
    152  1.2  jtc 
    153  1.1  cgd 	no_target = stat(to_name = argv[argc - 1], &to_sb);
    154  1.2  jtc 	if (!no_target && S_ISDIR(to_sb.st_mode)) {
    155  1.1  cgd 		for (; *argv != to_name; ++argv)
    156  1.5  jtc 			install(*argv, to_name, fset, iflags | DIRECTORY);
    157  1.1  cgd 		exit(0);
    158  1.1  cgd 	}
    159  1.1  cgd 
    160  1.1  cgd 	/* can't do file1 file2 directory/file */
    161  1.1  cgd 	if (argc != 2)
    162  1.1  cgd 		usage();
    163  1.1  cgd 
    164  1.1  cgd 	if (!no_target) {
    165  1.5  jtc 		if (stat(*argv, &from_sb))
    166  1.5  jtc 			err(1, "%s", *argv);
    167  1.5  jtc 		if (!S_ISREG(to_sb.st_mode))
    168  1.5  jtc 			errx(1, "%s: %s", to_name, strerror(EFTYPE));
    169  1.5  jtc 		if (to_sb.st_dev == from_sb.st_dev &&
    170  1.5  jtc 		    to_sb.st_ino == from_sb.st_ino)
    171  1.5  jtc 			errx(1, "%s and %s are the same file", *argv, to_name);
    172  1.5  jtc 		/*
    173  1.5  jtc 		 * Unlink now... avoid ETXTBSY errors later.  Try and turn
    174  1.5  jtc 		 * off the append/immutable bits -- if we fail, go ahead,
    175  1.5  jtc 		 * it might work.
    176  1.5  jtc 		 */
    177  1.5  jtc #define	NOCHANGEBITS	(UF_IMMUTABLE | UF_APPEND | SF_IMMUTABLE | SF_APPEND)
    178  1.5  jtc 		if (to_sb.st_flags & NOCHANGEBITS)
    179  1.5  jtc 			(void)chflags(to_name,
    180  1.5  jtc 			    to_sb.st_flags & ~(NOCHANGEBITS));
    181  1.1  cgd 		(void)unlink(to_name);
    182  1.1  cgd 	}
    183  1.5  jtc 	install(*argv, to_name, fset, iflags);
    184  1.1  cgd 	exit(0);
    185  1.1  cgd }
    186  1.1  cgd 
    187  1.1  cgd /*
    188  1.1  cgd  * install --
    189  1.1  cgd  *	build a path name and install the file
    190  1.1  cgd  */
    191  1.5  jtc void
    192  1.5  jtc install(from_name, to_name, fset, flags)
    193  1.1  cgd 	char *from_name, *to_name;
    194  1.5  jtc 	u_long fset;
    195  1.5  jtc 	u_int flags;
    196  1.1  cgd {
    197  1.5  jtc 	struct stat from_sb, to_sb;
    198  1.5  jtc 	int devnull, from_fd, to_fd, serrno;
    199  1.5  jtc 	char *p;
    200  1.5  jtc 
    201  1.5  jtc 	/* If try to install NULL file to a directory, fails. */
    202  1.5  jtc 	if (flags & DIRECTORY || strcmp(from_name, _PATH_DEVNULL)) {
    203  1.5  jtc 		if (stat(from_name, &from_sb))
    204  1.5  jtc 			err(1, "%s", from_name);
    205  1.5  jtc 		if (!S_ISREG(from_sb.st_mode))
    206  1.5  jtc 			errx(1, "%s: %s", from_name, strerror(EFTYPE));
    207  1.5  jtc 		/* Build the target path. */
    208  1.5  jtc 		if (flags & DIRECTORY) {
    209  1.5  jtc 			(void)snprintf(pathbuf, sizeof(pathbuf), "%s/%s",
    210  1.5  jtc 			    to_name,
    211  1.5  jtc 			    (p = rindex(from_name, '/')) ? ++p : from_name);
    212  1.1  cgd 			to_name = pathbuf;
    213  1.1  cgd 		}
    214  1.1  cgd 		devnull = 0;
    215  1.5  jtc 	} else {
    216  1.5  jtc 		from_sb.st_flags = 0;	/* XXX */
    217  1.1  cgd 		devnull = 1;
    218  1.5  jtc 	}
    219  1.1  cgd 
    220  1.5  jtc 	/*
    221  1.5  jtc 	 * Unlink now... avoid ETXTBSY errors later.  Try and turn
    222  1.5  jtc 	 * off the append/immutable bits -- if we fail, go ahead,
    223  1.5  jtc 	 * it might work.
    224  1.5  jtc 	 */
    225  1.5  jtc 	if (stat(to_name, &to_sb) == 0 &&
    226  1.5  jtc 	    to_sb.st_flags & (NOCHANGEBITS))
    227  1.5  jtc 		(void)chflags(to_name, to_sb.st_flags & ~(NOCHANGEBITS));
    228  1.1  cgd 	(void)unlink(to_name);
    229  1.1  cgd 
    230  1.5  jtc 	/* Create target. */
    231  1.5  jtc 	if ((to_fd = open(to_name,
    232  1.5  jtc 	    O_CREAT | O_WRONLY | O_TRUNC, S_IRUSR | S_IWUSR)) < 0)
    233  1.5  jtc 		err(1, "%s", to_name);
    234  1.1  cgd 	if (!devnull) {
    235  1.1  cgd 		if ((from_fd = open(from_name, O_RDONLY, 0)) < 0) {
    236  1.1  cgd 			(void)unlink(to_name);
    237  1.5  jtc 			err(1, "%s", from_name);
    238  1.1  cgd 		}
    239  1.5  jtc 		copy(from_fd, from_name, to_fd, to_name, from_sb.st_size);
    240  1.1  cgd 		(void)close(from_fd);
    241  1.1  cgd 	}
    242  1.1  cgd 	if (dostrip)
    243  1.1  cgd 		strip(to_name);
    244  1.1  cgd 	/*
    245  1.5  jtc 	 * Set owner, group, mode for target; do the chown first,
    246  1.1  cgd 	 * chown may lose the setuid bits.
    247  1.1  cgd 	 */
    248  1.1  cgd 	if ((group || owner) &&
    249  1.5  jtc 	    fchown(to_fd, owner ? pp->pw_uid : -1, group ? gp->gr_gid : -1)) {
    250  1.5  jtc 		serrno = errno;
    251  1.5  jtc 		(void)unlink(to_name);
    252  1.5  jtc 		errx(1, "%s: chown/chgrp: %s", to_name, strerror(serrno));
    253  1.1  cgd 	}
    254  1.5  jtc 	if (fchmod(to_fd, mode)) {
    255  1.5  jtc 		serrno = errno;
    256  1.5  jtc 		(void)unlink(to_name);
    257  1.5  jtc 		errx(1, "%s: chmod: %s", to_name, strerror(serrno));
    258  1.5  jtc 	}
    259  1.5  jtc 
    260  1.5  jtc 	/*
    261  1.5  jtc 	 * If provided a set of flags, set them, otherwise, preserve the
    262  1.5  jtc 	 * flags, except for the dump flag.
    263  1.5  jtc 	 */
    264  1.5  jtc 	if (fchflags(to_fd,
    265  1.5  jtc 	    flags & SETFLAGS ? fset : from_sb.st_flags & ~UF_NODUMP)) {
    266  1.5  jtc 		serrno = errno;
    267  1.5  jtc 		(void)unlink(to_name);
    268  1.5  jtc 		errx(1, "%s: chflags: %s", to_name, strerror(serrno));
    269  1.5  jtc 	}
    270  1.5  jtc 
    271  1.1  cgd 	(void)close(to_fd);
    272  1.5  jtc 	if (!docopy && !devnull && unlink(from_name))
    273  1.5  jtc 		err(1, "%s", from_name);
    274  1.1  cgd }
    275  1.1  cgd 
    276  1.1  cgd /*
    277  1.1  cgd  * copy --
    278  1.1  cgd  *	copy from one file to another
    279  1.1  cgd  */
    280  1.5  jtc void
    281  1.5  jtc copy(from_fd, from_name, to_fd, to_name, size)
    282  1.1  cgd 	register int from_fd, to_fd;
    283  1.1  cgd 	char *from_name, *to_name;
    284  1.5  jtc 	off_t size;
    285  1.1  cgd {
    286  1.5  jtc 	register int nr, nw;
    287  1.5  jtc 	int serrno;
    288  1.5  jtc 	char *p, buf[MAXBSIZE];
    289  1.1  cgd 
    290  1.5  jtc 	/*
    291  1.5  jtc 	 * Mmap and write if less than 8M (the limit is so we don't totally
    292  1.5  jtc 	 * trash memory on big files.  This is really a minor hack, but it
    293  1.5  jtc 	 * wins some CPU back.
    294  1.5  jtc 	 */
    295  1.5  jtc 	if (size <= 8 * 1048576) {
    296  1.5  jtc 		if ((p = mmap(NULL, (size_t)size, PROT_READ,
    297  1.5  jtc 		    0, from_fd, (off_t)0)) == (char *)-1)
    298  1.5  jtc 			err(1, "%s", from_name);
    299  1.5  jtc 		if (write(to_fd, p, size) != size)
    300  1.5  jtc 			err(1, "%s", to_name);
    301  1.5  jtc 	} else {
    302  1.5  jtc 		while ((nr = read(from_fd, buf, sizeof(buf))) > 0)
    303  1.5  jtc 			if ((nw = write(to_fd, buf, nr)) != nr) {
    304  1.5  jtc 				serrno = errno;
    305  1.5  jtc 				(void)unlink(to_name);
    306  1.5  jtc 				errx(1, "%s: %s",
    307  1.5  jtc 				    to_name, strerror(nw > 0 ? EIO : serrno));
    308  1.5  jtc 			}
    309  1.5  jtc 		if (nr != 0) {
    310  1.5  jtc 			serrno = errno;
    311  1.5  jtc 			(void)unlink(to_name);
    312  1.5  jtc 			errx(1, "%s: %s", from_name, strerror(serrno));
    313  1.1  cgd 		}
    314  1.1  cgd 	}
    315  1.1  cgd }
    316  1.1  cgd 
    317  1.1  cgd /*
    318  1.1  cgd  * strip --
    319  1.1  cgd  *	use strip(1) to strip the target file
    320  1.1  cgd  */
    321  1.5  jtc void
    322  1.1  cgd strip(to_name)
    323  1.1  cgd 	char *to_name;
    324  1.1  cgd {
    325  1.5  jtc 	int serrno, status;
    326  1.1  cgd 
    327  1.1  cgd 	switch (vfork()) {
    328  1.1  cgd 	case -1:
    329  1.5  jtc 		serrno = errno;
    330  1.5  jtc 		(void)unlink(to_name);
    331  1.5  jtc 		errx(1, "forks: %s", strerror(errno));
    332  1.1  cgd 	case 0:
    333  1.5  jtc 		execl(_PATH_STRIP, "strip", to_name, NULL);
    334  1.5  jtc 		err(1, "%s", _PATH_STRIP);
    335  1.1  cgd 	default:
    336  1.1  cgd 		if (wait(&status) == -1 || status)
    337  1.5  jtc 			(void)unlink(to_name);
    338  1.1  cgd 	}
    339  1.1  cgd }
    340  1.1  cgd 
    341  1.1  cgd /*
    342  1.5  jtc  * install_dir --
    343  1.2  jtc  *	build directory heirarchy
    344  1.2  jtc  */
    345  1.7  jtc void
    346  1.5  jtc install_dir(path)
    347  1.2  jtc         char *path;
    348  1.2  jtc {
    349  1.2  jtc         register char *p;
    350  1.2  jtc         struct stat sb;
    351  1.4  cgd         int ch;
    352  1.2  jtc 
    353  1.4  cgd         for (p = path;; ++p)
    354  1.4  cgd                 if (!*p || (p != path && *p  == '/')) {
    355  1.2  jtc                         ch = *p;
    356  1.2  jtc                         *p = '\0';
    357  1.2  jtc                         if (stat(path, &sb)) {
    358  1.2  jtc                                 if (errno != ENOENT || mkdir(path, 0777) < 0) {
    359  1.7  jtc 					err(1, "%s", path);
    360  1.7  jtc 					/* NOTREACHED */
    361  1.2  jtc                                 }
    362  1.2  jtc                         }
    363  1.2  jtc                         if (!(*p = ch))
    364  1.4  cgd 				break;
    365  1.2  jtc                 }
    366  1.2  jtc 
    367  1.2  jtc 	if ((group || owner) &&
    368  1.2  jtc             chown(path, owner ? pp->pw_uid : -1, group ? gp->gr_gid : -1) ||
    369  1.2  jtc             chmod(path, mode)) {
    370  1.5  jtc                 warn("%s", path);
    371  1.2  jtc         }
    372  1.2  jtc }
    373  1.2  jtc 
    374  1.2  jtc /*
    375  1.1  cgd  * usage --
    376  1.1  cgd  *	print a usage message and die
    377  1.1  cgd  */
    378  1.5  jtc void
    379  1.1  cgd usage()
    380  1.1  cgd {
    381  1.2  jtc 	(void)fprintf(stderr, "\
    382  1.5  jtc usage: install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 file2\n\
    383  1.5  jtc        install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 ... fileN directory\n\
    384  1.2  jtc        install  -d   [-g group] [-m mode] [-o owner] directory ...\n");
    385  1.6  jtc 	exit(1);
    386  1.1  cgd }
    387