2011-08-29 18:34:58 +04:00
|
|
|
/* $NetBSD: mount_fdesc.c,v 1.26 2011/08/29 14:35:00 joerg Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1993-03-28 07:19:38 +04:00
|
|
|
/*
|
1994-06-08 22:57:30 +04:00
|
|
|
* Copyright (c) 1992, 1993, 1994
|
1994-01-12 22:01:12 +03:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-28 07:19:38 +04:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 14:04:22 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1990, 1992 Jan-Simon Pendry
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1993-03-28 07:19:38 +04:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1994-01-12 22:01:12 +03:00
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
1993-03-28 07:19:38 +04:00
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-09-15 08:36:07 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-06-08 22:57:30 +04:00
|
|
|
#ifndef lint
|
2008-07-20 05:20:21 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1992, 1993, 1994\
|
|
|
|
The Regents of the University of California. All rights reserved.");
|
1994-06-08 22:57:30 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-18 17:54:19 +03:00
|
|
|
#if 0
|
1997-09-16 16:26:56 +04:00
|
|
|
static char sccsid[] = "@(#)mount_fdesc.c 8.3 (Berkeley) 4/26/95";
|
1995-03-18 17:54:19 +03:00
|
|
|
#else
|
2011-08-29 18:34:58 +04:00
|
|
|
__RCSID("$NetBSD: mount_fdesc.c,v 1.26 2011/08/29 14:35:00 joerg Exp $");
|
1995-03-18 17:54:19 +03:00
|
|
|
#endif
|
1994-06-08 22:57:30 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1994-01-12 22:01:12 +03:00
|
|
|
#include <sys/param.h>
|
1993-03-28 07:19:38 +04:00
|
|
|
#include <sys/mount.h>
|
|
|
|
|
1994-06-08 22:57:30 +04:00
|
|
|
#include <err.h>
|
1994-01-12 22:01:12 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1993-03-28 07:19:38 +04:00
|
|
|
|
2003-03-22 14:15:45 +03:00
|
|
|
#include <mntopts.h>
|
1994-06-08 22:57:30 +04:00
|
|
|
|
2009-07-31 18:58:21 +04:00
|
|
|
#include "mount_fdesc.h"
|
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static const struct mntopt mopts[] = {
|
1994-06-08 22:57:30 +04:00
|
|
|
MOPT_STDOPTS,
|
2002-09-21 22:43:31 +04:00
|
|
|
MOPT_GETARGS,
|
2006-10-16 07:37:42 +04:00
|
|
|
MOPT_NULL,
|
1994-06-08 22:57:30 +04:00
|
|
|
};
|
|
|
|
|
2011-08-29 18:34:58 +04:00
|
|
|
__dead static void usage(void);
|
2005-02-05 17:47:18 +03:00
|
|
|
int mount_fdesc(int argc, char **argv);
|
1993-03-28 07:19:38 +04:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
#ifndef MOUNT_NOMAIN
|
1994-01-12 22:01:12 +03:00
|
|
|
int
|
2005-02-05 17:47:18 +03:00
|
|
|
main(int argc, char **argv)
|
2000-10-30 23:56:57 +03:00
|
|
|
{
|
|
|
|
return mount_fdesc(argc, argv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-07-31 18:58:21 +04:00
|
|
|
void
|
|
|
|
mount_fdesc_parseargs(int argc, char *argv[], void *dummy, int *mntflags,
|
|
|
|
char *canon_dev, char *canon_dir)
|
1994-01-12 22:01:12 +03:00
|
|
|
{
|
2009-07-31 18:58:21 +04:00
|
|
|
int ch;
|
2006-03-22 00:11:41 +03:00
|
|
|
mntoptparse_t mp;
|
1993-03-28 07:19:38 +04:00
|
|
|
|
2009-07-31 18:58:21 +04:00
|
|
|
*mntflags = 0;
|
1997-09-15 08:36:07 +04:00
|
|
|
while ((ch = getopt(argc, argv, "o:")) != -1)
|
1994-06-08 22:57:30 +04:00
|
|
|
switch (ch) {
|
|
|
|
case 'o':
|
2009-07-31 18:58:21 +04:00
|
|
|
mp = getmntopts(optarg, mopts, mntflags, 0);
|
2006-03-22 00:11:41 +03:00
|
|
|
if (mp == NULL)
|
|
|
|
err(1, "getmntopts");
|
|
|
|
freemntopts(mp);
|
1994-01-12 22:01:12 +03:00
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
1993-03-28 07:19:38 +04:00
|
|
|
|
1994-01-12 22:01:12 +03:00
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
1993-03-28 07:19:38 +04:00
|
|
|
|
2009-07-31 18:56:11 +04:00
|
|
|
/* getargs is a NULL op and kernel would return EINVAL */
|
2009-07-31 18:58:21 +04:00
|
|
|
if (*mntflags & MNT_GETARGS)
|
2009-07-31 18:56:11 +04:00
|
|
|
exit(0);
|
|
|
|
|
2010-03-31 17:10:10 +04:00
|
|
|
strlcpy(canon_dev, argv[0], MAXPATHLEN);
|
2005-01-31 08:19:18 +03:00
|
|
|
if (realpath(argv[1], canon_dir) == NULL) /* Check mounton path */
|
|
|
|
err(1, "realpath %s", argv[1]);
|
|
|
|
if (strncmp(argv[1], canon_dir, MAXPATHLEN)) {
|
|
|
|
warnx("\"%s\" is a relative path.", argv[1]);
|
|
|
|
warnx("using \"%s\" instead.", canon_dir);
|
|
|
|
}
|
2009-07-31 18:58:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mount_fdesc(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int mntflags;
|
|
|
|
char canon_dev[MAXPATHLEN], canon_dir[MAXPATHLEN];
|
2005-01-31 08:19:18 +03:00
|
|
|
|
2009-07-31 18:58:21 +04:00
|
|
|
mount_fdesc_parseargs(argc, argv, NULL, &mntflags,
|
|
|
|
canon_dev, canon_dir);
|
2007-07-16 21:06:52 +04:00
|
|
|
if (mount(MOUNT_FDESC, canon_dir, mntflags, NULL, 0) == -1)
|
2009-07-31 18:58:21 +04:00
|
|
|
err(1, "fdesc on %s", canon_dir);
|
1993-03-28 07:19:38 +04:00
|
|
|
exit(0);
|
|
|
|
}
|
1994-01-12 22:01:12 +03:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static void
|
2005-02-05 17:47:18 +03:00
|
|
|
usage(void)
|
1994-01-12 22:01:12 +03:00
|
|
|
{
|
|
|
|
(void)fprintf(stderr,
|
1994-06-08 22:57:30 +04:00
|
|
|
"usage: mount_fdesc [-o options] fdesc mount_point\n");
|
1994-01-12 22:01:12 +03:00
|
|
|
exit(1);
|
|
|
|
}
|