Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
/* $NetBSD: mount_msdos.c,v 1.37 2005/09/23 12:10:35 jmmv Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1993-04-09 23:24:39 +04:00
|
|
|
/*
|
1994-04-07 06:31:20 +04:00
|
|
|
* Copyright (c) 1994 Christopher G. Demetriou
|
|
|
|
* All rights reserved.
|
2000-06-14 21:24:02 +04:00
|
|
|
*
|
1994-04-07 06:31:20 +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
|
2003-02-14 19:21:47 +03:00
|
|
|
* NetBSD Project. See http://www.NetBSD.org/ for
|
2000-06-14 21:24:02 +04:00
|
|
|
* information about NetBSD.
|
1994-04-07 06:31:20 +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-04-07 06:31:20 +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>>
|
1993-04-09 23:24:39 +04:00
|
|
|
*/
|
1993-08-02 21:48:44 +04:00
|
|
|
|
1997-09-15 09:05:41 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-08-02 21:48:44 +04:00
|
|
|
#ifndef lint
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
__RCSID("$NetBSD: mount_msdos.c,v 1.37 2005/09/23 12:10:35 jmmv Exp $");
|
1993-08-02 21:48:44 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1994-04-08 05:26:59 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-04-08 05:40:51 +04:00
|
|
|
#include <sys/param.h>
|
1993-04-09 23:24:39 +04:00
|
|
|
#include <sys/mount.h>
|
1994-04-08 05:26:59 +04:00
|
|
|
#include <sys/stat.h>
|
1998-03-01 05:20:01 +03:00
|
|
|
#include <msdosfs/msdosfsmount.h>
|
1994-04-08 05:26:59 +04:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
1994-04-07 06:31:20 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2003-09-08 02:09:11 +04:00
|
|
|
#include <time.h>
|
1994-04-08 05:40:51 +04:00
|
|
|
#include <unistd.h>
|
2002-09-21 22:43:31 +04:00
|
|
|
#include <util.h>
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2003-03-22 14:15:45 +03:00
|
|
|
#include <mntopts.h>
|
2000-10-30 23:56:57 +03:00
|
|
|
#include <fattr.h>
|
1994-07-17 01:32:06 +04:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static const struct mntopt mopts[] = {
|
1994-07-17 01:32:06 +04:00
|
|
|
MOPT_STDOPTS,
|
2000-03-27 13:33:22 +04:00
|
|
|
MOPT_ASYNC,
|
|
|
|
MOPT_SYNC,
|
1996-10-24 04:12:50 +04:00
|
|
|
MOPT_UPDATE,
|
2003-08-02 15:42:20 +04:00
|
|
|
MOPT_GETARGS,
|
1994-07-17 01:32:06 +04:00
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2005-02-05 17:55:44 +03:00
|
|
|
int mount_msdos(int argc, char **argv);
|
|
|
|
static void usage(void) __attribute__((__noreturn__));
|
1994-07-17 01:32:06 +04:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
#ifndef MOUNT_NOMAIN
|
1993-04-09 23:24:39 +04:00
|
|
|
int
|
2005-02-05 17:55:44 +03:00
|
|
|
main(int argc, char **argv)
|
2000-10-30 23:56:57 +03:00
|
|
|
{
|
|
|
|
return mount_msdos(argc, argv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
2005-02-05 17:55:44 +03:00
|
|
|
mount_msdos(int argc, char **argv)
|
1993-04-09 23:24:39 +04:00
|
|
|
{
|
1993-08-14 15:05:26 +04:00
|
|
|
struct msdosfs_args args;
|
1994-04-08 05:26:59 +04:00
|
|
|
struct stat sb;
|
2003-09-08 02:09:11 +04:00
|
|
|
int c, mntflags, set_gid, set_uid, set_mask, set_dirmask, set_gmtoff;
|
2005-01-31 08:19:18 +03:00
|
|
|
char *dev, *dir, canon_dev[MAXPATHLEN], canon_dir[MAXPATHLEN];
|
2003-09-08 02:09:11 +04:00
|
|
|
time_t now;
|
|
|
|
struct tm *tm;
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2003-09-08 02:09:11 +04:00
|
|
|
mntflags = set_gid = set_uid = set_mask = set_dirmask = set_gmtoff = 0;
|
1994-04-08 05:26:59 +04:00
|
|
|
(void)memset(&args, '\0', sizeof(args));
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2003-09-08 02:09:11 +04:00
|
|
|
while ((c = getopt(argc, argv, "Gsl9u:g:m:M:o:t:")) != -1) {
|
1993-04-09 23:24:39 +04:00
|
|
|
switch (c) {
|
1996-01-20 00:14:43 +03:00
|
|
|
case 'G':
|
|
|
|
args.flags |= MSDOSFSMNT_GEMDOSFS;
|
|
|
|
break;
|
1995-10-15 18:34:19 +03:00
|
|
|
case 's':
|
|
|
|
args.flags |= MSDOSFSMNT_SHORTNAME;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
args.flags |= MSDOSFSMNT_LONGNAME;
|
|
|
|
break;
|
|
|
|
case '9':
|
|
|
|
args.flags |= MSDOSFSMNT_NOWIN95;
|
|
|
|
break;
|
1994-04-08 05:26:59 +04:00
|
|
|
case 'u':
|
|
|
|
args.uid = a_uid(optarg);
|
|
|
|
set_uid = 1;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
args.gid = a_gid(optarg);
|
|
|
|
set_gid = 1;
|
1993-04-09 23:24:39 +04:00
|
|
|
break;
|
1994-04-08 05:26:59 +04:00
|
|
|
case 'm':
|
|
|
|
args.mask = a_mask(optarg);
|
|
|
|
set_mask = 1;
|
|
|
|
break;
|
2003-08-02 15:41:19 +04:00
|
|
|
case 'M':
|
|
|
|
args.dirmask = a_mask(optarg);
|
|
|
|
set_dirmask = 1;
|
|
|
|
break;
|
1994-07-17 01:32:06 +04:00
|
|
|
case 'o':
|
1997-09-16 16:24:18 +04:00
|
|
|
getmntopts(optarg, mopts, &mntflags, 0);
|
1994-07-17 01:32:06 +04:00
|
|
|
break;
|
2003-09-08 02:09:11 +04:00
|
|
|
case 't':
|
|
|
|
args.gmtoff = atoi(optarg);
|
|
|
|
set_gmtoff = 1;
|
|
|
|
break;
|
1994-04-08 05:26:59 +04:00
|
|
|
case '?':
|
1993-04-09 23:24:39 +04:00
|
|
|
default:
|
1994-04-08 05:26:59 +04:00
|
|
|
usage();
|
|
|
|
break;
|
1993-04-09 23:24:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind + 2 != argc)
|
1994-04-08 05:26:59 +04:00
|
|
|
usage();
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2003-08-02 15:41:19 +04:00
|
|
|
if (set_mask && !set_dirmask) {
|
|
|
|
args.dirmask = args.mask;
|
|
|
|
set_dirmask = 1;
|
|
|
|
} else if (set_dirmask && !set_mask) {
|
|
|
|
args.mask = args.dirmask;
|
|
|
|
set_mask = 1;
|
|
|
|
}
|
|
|
|
|
1993-04-09 23:24:39 +04:00
|
|
|
dev = argv[optind];
|
|
|
|
dir = argv[optind + 1];
|
2005-01-31 08:19:18 +03:00
|
|
|
|
|
|
|
if (realpath(dev, canon_dev) == NULL) /* Check device path */
|
|
|
|
err(1, "realpath %s", dev);
|
|
|
|
if (strncmp(dev, canon_dev, MAXPATHLEN)) {
|
|
|
|
warnx("\"%s\" is a relative path.", dev);
|
|
|
|
dev = canon_dev;
|
|
|
|
warnx("using \"%s\" instead.", dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (realpath(dir, canon_dir) == NULL) /* Check mounton path */
|
|
|
|
err(1, "realpath %s", dir);
|
|
|
|
if (strncmp(dir, canon_dir, MAXPATHLEN)) {
|
1994-04-08 05:40:51 +04:00
|
|
|
warnx("\"%s\" is a relative path.", dir);
|
2005-01-31 08:19:18 +03:00
|
|
|
dir = canon_dir;
|
1994-04-08 05:40:51 +04:00
|
|
|
warnx("using \"%s\" instead.", dir);
|
|
|
|
}
|
1993-04-09 23:24:39 +04:00
|
|
|
|
|
|
|
args.fspec = dev;
|
1994-04-08 05:26:59 +04:00
|
|
|
if (!set_gid || !set_uid || !set_mask) {
|
|
|
|
if (stat(dir, &sb) == -1)
|
|
|
|
err(1, "stat %s", dir);
|
1993-04-09 23:24:39 +04:00
|
|
|
|
1994-04-08 05:26:59 +04:00
|
|
|
if (!set_uid)
|
|
|
|
args.uid = sb.st_uid;
|
|
|
|
if (!set_gid)
|
|
|
|
args.gid = sb.st_gid;
|
2003-08-02 15:41:19 +04:00
|
|
|
if (!set_mask) {
|
|
|
|
args.mask = args.dirmask =
|
|
|
|
sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
|
|
|
|
}
|
1993-04-09 23:24:39 +04:00
|
|
|
}
|
2003-09-08 02:09:11 +04:00
|
|
|
|
|
|
|
if (!set_gmtoff) {
|
|
|
|
/* use user's time zone as default */
|
|
|
|
time(&now);
|
|
|
|
tm = localtime(&now);
|
|
|
|
args.gmtoff = tm->tm_gmtoff;
|
|
|
|
|
|
|
|
}
|
2003-08-02 15:41:19 +04:00
|
|
|
args.flags |= MSDOSFSMNT_VERSIONED;
|
|
|
|
args.version = MSDOSFSMNT_VERSION;
|
1993-04-09 23:24:39 +04:00
|
|
|
|
1994-07-17 01:32:06 +04:00
|
|
|
if (mount(MOUNT_MSDOS, dir, mntflags, &args) < 0)
|
1999-06-25 23:28:35 +04:00
|
|
|
err(1, "%s on %s", dev, dir);
|
1994-04-08 05:26:59 +04:00
|
|
|
|
2002-09-21 22:43:31 +04:00
|
|
|
if (mntflags & MNT_GETARGS) {
|
|
|
|
char buf[1024];
|
|
|
|
(void)snprintb(buf, sizeof(buf), MSDOSFSMNT_BITS, args.flags);
|
2003-08-02 15:41:19 +04:00
|
|
|
printf("uid=%d, gid=%d, mask=0%o, dirmask=0%o, flags=%s\n",
|
|
|
|
args.uid, args.gid, args.mask, args.dirmask, buf);
|
2002-09-21 22:43:31 +04:00
|
|
|
}
|
|
|
|
|
1993-04-09 23:24:39 +04:00
|
|
|
exit (0);
|
|
|
|
}
|
1994-04-08 05:26:59 +04:00
|
|
|
|
2000-10-30 23:56:57 +03:00
|
|
|
static void
|
2005-02-05 17:55:44 +03:00
|
|
|
usage(void)
|
1994-04-08 05:26:59 +04:00
|
|
|
{
|
1995-01-18 11:35:42 +03:00
|
|
|
|
2004-01-06 02:27:16 +03:00
|
|
|
fprintf(stderr, "usage: mount_msdos [-9Gls] [-g gid] [-M mask] [-m mask] [-o options]\n"
|
2003-09-08 11:21:59 +04:00
|
|
|
"\t[-t gmtoff] [-u uid] special node\n");
|
1994-04-08 05:26:59 +04:00
|
|
|
exit(1);
|
|
|
|
}
|