Home | History | Annotate | Line # | Download | only in mount_null
mount_null.c revision 1.11
      1 /*	$NetBSD: mount_null.c,v 1.11 2003/08/07 10:04:29 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_null.c	8.6 (Berkeley) 4/26/95";
     44 #else
     45 __RCSID("$NetBSD: mount_null.c,v 1.11 2003/08/07 10:04:29 agc Exp $");
     46 #endif
     47 #endif /* not lint */
     48 
     49 #include <sys/param.h>
     50 #include <sys/mount.h>
     51 #include <miscfs/nullfs/null.h>
     52 
     53 #include <err.h>
     54 #include <stdio.h>
     55 #include <unistd.h>
     56 #include <stdlib.h>
     57 #include <string.h>
     58 
     59 #include <mntopts.h>
     60 
     61 static const struct mntopt mopts[] = {
     62 	MOPT_STDOPTS,
     63 	MOPT_GETARGS,
     64 	{ NULL }
     65 };
     66 
     67 int	main __P((int, char *[]));
     68 int	mount_null __P((int argc, char **argv));
     69 static int	subdir __P((const char *, const char *));
     70 static void	usage __P((void));
     71 
     72 #ifndef MOUNT_NOMAIN
     73 int
     74 main(argc, argv)
     75 	int argc;
     76 	char **argv;
     77 {
     78 	return mount_null(argc, argv);
     79 }
     80 #endif
     81 
     82 int
     83 mount_null(argc, argv)
     84 	int argc;
     85 	char *argv[];
     86 {
     87 	struct null_args args;
     88 	int ch, mntflags;
     89 	char target[MAXPATHLEN];
     90 
     91 	mntflags = 0;
     92 	while ((ch = getopt(argc, argv, "o:")) != -1)
     93 		switch(ch) {
     94 		case 'o':
     95 			getmntopts(optarg, mopts, &mntflags, 0);
     96 			break;
     97 		case '?':
     98 		default:
     99 			usage();
    100 		}
    101 	argc -= optind;
    102 	argv += optind;
    103 
    104 	if (argc != 2)
    105 		usage();
    106 
    107 	if (realpath(argv[0], target) == 0)
    108 		err(1, "%s", target);
    109 
    110 	if (subdir(target, argv[1]) || subdir(argv[1], target))
    111 		errx(1, "%s (%s) and %s are not distinct paths",
    112 		    argv[0], target, argv[1]);
    113 
    114 	args.la.target = target;
    115 
    116 	if (mount(MOUNT_NULL, argv[1], mntflags, &args))
    117 		err(1, "%s on %s", target, argv[1]);
    118 	exit(0);
    119 }
    120 
    121 static int
    122 subdir(p, dir)
    123 	const char *p;
    124 	const char *dir;
    125 {
    126 	int l;
    127 
    128 	l = strlen(dir);
    129 	if (l <= 1)
    130 		return (1);
    131 
    132 	if ((strncmp(p, dir, l) == 0) && (p[l] == '/' || p[l] == '\0'))
    133 		return (1);
    134 
    135 	return (0);
    136 }
    137 
    138 static void
    139 usage()
    140 {
    141 	(void)fprintf(stderr,
    142 		"usage: mount_null [-o options] target_fs mount_point\n");
    143 	exit(1);
    144 }
    145