2001-02-23 00:34:57 +03:00
|
|
|
/* $NetBSD: mount_ados.c,v 1.13 2001/02/22 21:34:57 is Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1994-06-03 04:33:10 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Christopher G. Demetriou
|
|
|
|
* All rights reserved.
|
2000-06-14 21:24:02 +04:00
|
|
|
*
|
1994-06-03 04:33:10 +04:00
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
2000-06-14 21:24:02 +04:00
|
|
|
* This product includes software developed for the
|
|
|
|
* NetBSD Project. See http://www.netbsd.org/ for
|
|
|
|
* information about NetBSD.
|
1994-06-03 04:33:10 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
2000-06-14 21:24:02 +04:00
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
1994-06-03 04:33:10 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
2000-06-14 21:24:02 +04:00
|
|
|
*
|
|
|
|
* <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
|
1994-06-03 04:33:10 +04:00
|
|
|
*/
|
|
|
|
|
1997-09-15 08:15:03 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-06-03 04:33:10 +04:00
|
|
|
#ifndef lint
|
2001-02-23 00:34:57 +03:00
|
|
|
__RCSID("$NetBSD: mount_ados.c,v 1.13 2001/02/22 21:34:57 is Exp $");
|
1994-06-03 04:33:10 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#include <adosfs/adosfs.h>
|
|
|
|
|
1995-01-18 11:37:48 +03:00
|
|
|
#include "mntopts.h"
|
2001-02-23 00:34:57 +03:00
|
|
|
#include <errno.h>
|
2000-10-30 23:56:57 +03:00
|
|
|
#include <fattr.h>
|
1995-01-18 11:37:48 +03:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static const struct mntopt mopts[] = {
|
1995-01-18 11:37:48 +03:00
|
|
|
MOPT_STDOPTS,
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
1997-09-15 08:15:03 +04:00
|
|
|
int main __P((int, char *[]));
|
2000-10-30 23:56:57 +03:00
|
|
|
int mount_ados __P((int argc, char **argv));
|
|
|
|
static void usage __P((void));
|
1995-01-18 11:37:48 +03:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
#ifndef MOUNT_NOMAIN
|
1994-06-03 04:33:10 +04:00
|
|
|
int
|
2000-10-30 23:56:57 +03:00
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
return mount_ados(argc, argv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
mount_ados(argc, argv)
|
1994-06-03 04:33:10 +04:00
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
struct adosfs_args args;
|
|
|
|
struct stat sb;
|
1995-01-18 11:37:48 +03:00
|
|
|
int c, mntflags, set_gid, set_uid, set_mask;
|
1994-06-03 04:33:10 +04:00
|
|
|
char *dev, *dir, ndir[MAXPATHLEN+1];
|
|
|
|
|
1995-01-18 11:37:48 +03:00
|
|
|
mntflags = set_gid = set_uid = set_mask = 0;
|
1994-06-03 04:33:10 +04:00
|
|
|
(void)memset(&args, '\0', sizeof(args));
|
|
|
|
|
1997-09-15 08:15:03 +04:00
|
|
|
while ((c = getopt(argc, argv, "u:g:m:o:")) != -1) {
|
1994-06-03 04:33:10 +04:00
|
|
|
switch (c) {
|
|
|
|
case 'u':
|
|
|
|
args.uid = a_uid(optarg);
|
|
|
|
set_uid = 1;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
args.gid = a_gid(optarg);
|
|
|
|
set_gid = 1;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
args.mask = a_mask(optarg);
|
|
|
|
set_mask = 1;
|
|
|
|
break;
|
1995-01-18 11:37:48 +03:00
|
|
|
case 'o':
|
1997-09-16 16:23:34 +04:00
|
|
|
getmntopts(optarg, mopts, &mntflags, 0);
|
1995-01-18 11:37:48 +03:00
|
|
|
break;
|
1994-06-03 04:33:10 +04:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind + 2 != argc)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
dev = argv[optind];
|
|
|
|
dir = argv[optind + 1];
|
|
|
|
if (dir[0] != '/') {
|
|
|
|
warnx("\"%s\" is a relative path.", dir);
|
|
|
|
if (getcwd(ndir, sizeof(ndir)) == NULL)
|
|
|
|
err(1, "getcwd");
|
|
|
|
strncat(ndir, "/", sizeof(ndir) - strlen(ndir) - 1);
|
|
|
|
strncat(ndir, dir, sizeof(ndir) - strlen(ndir) - 1);
|
|
|
|
dir = ndir;
|
|
|
|
warnx("using \"%s\" instead.", dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
args.fspec = dev;
|
1995-01-18 11:37:48 +03:00
|
|
|
args.export.ex_root = -2; /* unchecked anyway on DOS fs */
|
|
|
|
if (mntflags & MNT_RDONLY)
|
|
|
|
args.export.ex_flags = MNT_EXRDONLY;
|
|
|
|
else
|
|
|
|
args.export.ex_flags = 0;
|
1994-06-03 04:33:10 +04:00
|
|
|
if (!set_gid || !set_uid || !set_mask) {
|
|
|
|
if (stat(dir, &sb) == -1)
|
|
|
|
err(1, "stat %s", dir);
|
|
|
|
|
|
|
|
if (!set_uid)
|
|
|
|
args.uid = sb.st_uid;
|
|
|
|
if (!set_gid)
|
|
|
|
args.gid = sb.st_gid;
|
|
|
|
if (!set_mask)
|
|
|
|
args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
|
|
|
|
}
|
|
|
|
|
2001-02-23 00:34:57 +03:00
|
|
|
if (mount(MOUNT_ADOSFS, dir, mntflags, &args) >= 0)
|
|
|
|
exit (0);
|
|
|
|
|
|
|
|
if (errno != EROFS)
|
1999-06-25 23:28:35 +04:00
|
|
|
err(1, "%s on %s", dev, dir);
|
1994-06-03 04:33:10 +04:00
|
|
|
|
2001-02-23 00:34:57 +03:00
|
|
|
mntflags |= MNT_RDONLY;
|
|
|
|
args.export.ex_flags = MNT_EXRDONLY;
|
|
|
|
|
|
|
|
if (mount(MOUNT_ADOSFS, dir, mntflags, &args) >= 0)
|
|
|
|
exit (0);
|
|
|
|
|
|
|
|
err(1, "%s on %s", dev, dir);
|
1994-06-03 04:33:10 +04:00
|
|
|
}
|
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static void
|
1994-06-03 04:33:10 +04:00
|
|
|
usage()
|
|
|
|
{
|
1994-07-30 23:04:01 +04:00
|
|
|
|
1995-01-18 11:37:48 +03:00
|
|
|
fprintf(stderr, "usage: mount_ados [-o options] [-u user] [-g group] [-m mask] bdev dir\n");
|
1994-07-30 23:04:01 +04:00
|
|
|
exit(1);
|
|
|
|
}
|