2008-08-06 00:57:45 +04:00
|
|
|
/* $NetBSD: mount_msdos.c,v 1.46 2008/08/05 20:57:45 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
|
2008-08-06 00:57:45 +04:00
|
|
|
__RCSID("$NetBSD: mount_msdos.c,v 1.46 2008/08/05 20:57:45 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>
|
1994-07-17 01:32:06 +04:00
|
|
|
|
2008-08-06 00:57:45 +04:00
|
|
|
#include "mountprog.h"
|
2008-07-29 20:05:05 +04:00
|
|
|
#include "mount_msdos.h"
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2007-12-15 22:44:37 +03:00
|
|
|
static void usage(void) __dead;
|
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
|
|
|
{
|
2008-07-29 20:05:05 +04:00
|
|
|
|
|
|
|
setprogname(argv[0]);
|
2000-10-30 23:56:57 +03:00
|
|
|
return mount_msdos(argc, argv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-07-29 20:05:05 +04:00
|
|
|
void
|
|
|
|
mount_msdos_parseargs(int argc, char **argv,
|
|
|
|
struct msdosfs_args *args, int *mntflags,
|
|
|
|
char *canon_dev, char *canon_dir)
|
1993-04-09 23:24:39 +04:00
|
|
|
{
|
1994-04-08 05:26:59 +04:00
|
|
|
struct stat sb;
|
2008-07-29 20:05:05 +04:00
|
|
|
int c, set_gid, set_uid, set_mask, set_dirmask, set_gmtoff;
|
|
|
|
char *dev, *dir;
|
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
|
|
|
|
2008-07-29 20:05:05 +04:00
|
|
|
*mntflags = set_gid = set_uid = set_mask = set_dirmask = set_gmtoff = 0;
|
|
|
|
(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':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->flags |= MSDOSFSMNT_GEMDOSFS;
|
1996-01-20 00:14:43 +03:00
|
|
|
break;
|
1995-10-15 18:34:19 +03:00
|
|
|
case 's':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->flags |= MSDOSFSMNT_SHORTNAME;
|
1995-10-15 18:34:19 +03:00
|
|
|
break;
|
|
|
|
case 'l':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->flags |= MSDOSFSMNT_LONGNAME;
|
1995-10-15 18:34:19 +03:00
|
|
|
break;
|
|
|
|
case '9':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->flags |= MSDOSFSMNT_NOWIN95;
|
1995-10-15 18:34:19 +03:00
|
|
|
break;
|
1994-04-08 05:26:59 +04:00
|
|
|
case 'u':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->uid = a_uid(optarg);
|
1994-04-08 05:26:59 +04:00
|
|
|
set_uid = 1;
|
|
|
|
break;
|
|
|
|
case 'g':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->gid = a_gid(optarg);
|
1994-04-08 05:26:59 +04:00
|
|
|
set_gid = 1;
|
1993-04-09 23:24:39 +04:00
|
|
|
break;
|
1994-04-08 05:26:59 +04:00
|
|
|
case 'm':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->mask = a_mask(optarg);
|
1994-04-08 05:26:59 +04:00
|
|
|
set_mask = 1;
|
|
|
|
break;
|
2003-08-02 15:41:19 +04:00
|
|
|
case 'M':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->dirmask = a_mask(optarg);
|
2003-08-02 15:41:19 +04:00
|
|
|
set_dirmask = 1;
|
|
|
|
break;
|
1994-07-17 01:32:06 +04:00
|
|
|
case 'o':
|
2008-07-29 20:05:05 +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-07-17 01:32:06 +04:00
|
|
|
break;
|
2003-09-08 02:09:11 +04:00
|
|
|
case 't':
|
2008-07-29 20:05:05 +04:00
|
|
|
args->gmtoff = atoi(optarg);
|
2003-09-08 02:09:11 +04:00
|
|
|
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) {
|
2008-07-29 20:05:05 +04:00
|
|
|
args->dirmask = args->mask;
|
2003-08-02 15:41:19 +04:00
|
|
|
set_dirmask = 1;
|
|
|
|
} else if (set_dirmask && !set_mask) {
|
2008-07-29 20:05:05 +04:00
|
|
|
args->mask = args->dirmask;
|
2003-08-02 15:41:19 +04:00
|
|
|
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
|
|
|
|
2008-08-06 00:57:45 +04:00
|
|
|
pathadj(dev, canon_dev);
|
|
|
|
pathadj(dir, canon_dir);
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2008-07-29 20:05:05 +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)
|
2008-07-29 20:05:05 +04:00
|
|
|
args->uid = sb.st_uid;
|
1994-04-08 05:26:59 +04:00
|
|
|
if (!set_gid)
|
2008-07-29 20:05:05 +04:00
|
|
|
args->gid = sb.st_gid;
|
2003-08-02 15:41:19 +04:00
|
|
|
if (!set_mask) {
|
2008-07-29 20:05:05 +04:00
|
|
|
args->mask = args->dirmask =
|
2003-08-02 15:41:19 +04:00
|
|
|
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);
|
2008-07-29 20:05:05 +04:00
|
|
|
args->gmtoff = tm->tm_gmtoff;
|
2003-09-08 02:09:11 +04:00
|
|
|
|
|
|
|
}
|
2008-07-29 20:05:05 +04:00
|
|
|
args->flags |= MSDOSFSMNT_VERSIONED;
|
|
|
|
args->version = MSDOSFSMNT_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mount_msdos(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct msdosfs_args args;
|
|
|
|
char canon_dev[MAXPATHLEN], canon_dir[MAXPATHLEN];
|
|
|
|
int mntflags;
|
|
|
|
|
|
|
|
mount_msdos_parseargs(argc, argv, &args, &mntflags,
|
|
|
|
canon_dev, canon_dir);
|
1993-04-09 23:24:39 +04:00
|
|
|
|
2008-07-29 20:05:05 +04:00
|
|
|
if (mount(MOUNT_MSDOS, canon_dir, mntflags, &args, sizeof args) == -1)
|
|
|
|
err(1, "%s on %s", canon_dev, canon_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
|
|
|
|
2008-07-29 20:05:05 +04:00
|
|
|
fprintf(stderr, "usage: %s [-9Gls] [-g gid] [-M mask] [-m mask] "
|
|
|
|
"[-o options]\n\t[-t gmtoff] [-u uid] special mountpath\n",
|
|
|
|
getprogname());
|
1994-04-08 05:26:59 +04:00
|
|
|
exit(1);
|
|
|
|
}
|