Home | History | Annotate | Line # | Download | only in mount_union
mount_union.c revision 1.12
      1 /*	$NetBSD: mount_union.c,v 1.12 2003/08/07 10:04:33 agc Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1992, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software donated to Berkeley by
      8  * Jan-Simon Pendry.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  */
     34 
     35 #include <sys/cdefs.h>
     36 #ifndef lint
     37 __COPYRIGHT("@(#) Copyright (c) 1992, 1993, 1994\n\
     38 	The Regents of the University of California.  All rights reserved.\n");
     39 #endif /* not lint */
     40 
     41 #ifndef lint
     42 #if 0
     43 static char sccsid[] = "@(#)mount_union.c	8.6 (Berkeley) 4/26/95";
     44 #else
     45 __RCSID("$NetBSD: mount_union.c,v 1.12 2003/08/07 10:04:33 agc Exp $");
     46 #endif
     47 #endif /* not lint */
     48 
     49 #include <sys/param.h>
     50 #include <sys/mount.h>
     51 
     52 #include <miscfs/union/union.h>
     53 
     54 #include <err.h>
     55 #include <stdio.h>
     56 #include <stdlib.h>
     57 #include <string.h>
     58 #include <unistd.h>
     59 #include <util.h>
     60 
     61 #include <mntopts.h>
     62 
     63 static const struct mntopt mopts[] = {
     64 	MOPT_STDOPTS,
     65 	MOPT_GETARGS,
     66 	{ NULL }
     67 };
     68 
     69 int	main __P((int, char *[]));
     70 int	mount_union __P((int argc, char **argv));
     71 static int	subdir __P((const char *, const char *));
     72 static void	usage __P((void));
     73 
     74 #ifndef MOUNT_NOMAIN
     75 int
     76 main(argc, argv)
     77 	int argc;
     78 	char **argv;
     79 {
     80 	return mount_union(argc, argv);
     81 }
     82 #endif
     83 
     84 int
     85 mount_union(argc, argv)
     86 	int argc;
     87 	char *argv[];
     88 {
     89 	struct union_args args;
     90 	int ch, mntflags;
     91 	char target[MAXPATHLEN];
     92 
     93 	mntflags = 0;
     94 	args.mntflags = UNMNT_ABOVE;
     95 	while ((ch = getopt(argc, argv, "bo:r")) != -1)
     96 		switch (ch) {
     97 		case 'b':
     98 			args.mntflags &= ~UNMNT_OPMASK;
     99 			args.mntflags |= UNMNT_BELOW;
    100 			break;
    101 		case 'o':
    102 			getmntopts(optarg, mopts, &mntflags, 0);
    103 			break;
    104 		case 'r':
    105 			args.mntflags &= ~UNMNT_OPMASK;
    106 			args.mntflags |= UNMNT_REPLACE;
    107 			break;
    108 		case '?':
    109 		default:
    110 			usage();
    111 			/* NOTREACHED */
    112 		}
    113 	argc -= optind;
    114 	argv += optind;
    115 
    116 	if (argc != 2)
    117 		usage();
    118 
    119 	if (realpath(argv[0], target) == 0)
    120 		err(1, "%s", target);
    121 
    122 	if (subdir(target, argv[1]) || subdir(argv[1], target))
    123 		errx(1, "%s (%s) and %s are not distinct paths",
    124 		    argv[0], target, argv[1]);
    125 
    126 	args.target = target;
    127 
    128 	if (mount(MOUNT_UNION, argv[1], mntflags, &args))
    129 		err(1, "%s on %s", target, argv[1]);
    130 	if (mntflags & MNT_GETARGS) {
    131 		char buf[1024];
    132 		(void)snprintb(buf, sizeof(buf), UNMNT_BITS, args.mntflags);
    133 		printf("flags=%s\n", buf);
    134 	}
    135 	exit(0);
    136 }
    137 
    138 static int
    139 subdir(p, dir)
    140 	const char *p;
    141 	const char *dir;
    142 {
    143 	int l;
    144 
    145 	l = strlen(dir);
    146 	if (l <= 1)
    147 		return (1);
    148 
    149 	if ((strncmp(p, dir, l) == 0) && (p[l] == '/' || p[l] == '\0'))
    150 		return (1);
    151 
    152 	return (0);
    153 }
    154 
    155 static void
    156 usage()
    157 {
    158 	(void)fprintf(stderr,
    159 		"usage: mount_union [-br] [-o options] target_fs mount_point\n");
    160 	exit(1);
    161 }
    162