2007-07-16 21:06:52 +04:00
|
|
|
/* $NetBSD: mount_msdos.c,v 1.43 2007/07/16 17:06:53 pooka 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
|
2007-07-16 21:06:52 +04:00
|
|
|
__RCSID("$NetBSD: mount_msdos.c,v 1.43 2007/07/16 17:06:53 pooka Exp $");
|
1993-08-02 21:48:44 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
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 <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,
|
2006-10-16 07:37:42 +04:00
|
|
|
MOPT_NULL,
|
1994-07-17 01:32:06 +04:00
|
|
|
};
|
|
|
|
|
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;
|
2006-03-22 00:11:41 +03:00
|
|
|
mntoptparse_t mp;
|
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':
|
2006-03-22 00:11:41 +03:00
|
|
|
mp = getmntopts(optarg, mopts, &mntflags, 0);
|
|
|
|
if (mp == NULL)
|
|
|
|
err(1, "getmntopts");
|
|
|
|
freemntopts(mp);
|
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
|
|
|
|
2007-07-16 21:06:52 +04:00
|
|
|
if (mount(MOUNT_MSDOS, dir, mntflags, &args, sizeof args) == -1)
|
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);
|
|
|
|
}
|