Home | History | Annotate | Line # | Download | only in mount_ntfs
mount_ntfs.c revision 1.14
      1 /* $NetBSD: mount_ntfs.c,v 1.14 2006/03/21 21:11:41 christos Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1994 Christopher G. Demetriou
      5  * Copyright (c) 1999 Semen Ustimenko
      6  * All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. All advertising materials mentioning features or use of this software
     17  *    must display the following acknowledgement:
     18  *      This product includes software developed by Christopher G. Demetriou.
     19  * 4. The name of the author may not be used to endorse or promote products
     20  *    derived from this software without specific prior written permission
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  *
     33  * Id: mount_ntfs.c,v 1.1.1.1 1999/02/03 03:51:19 semenu Exp
     34  */
     35 
     36 #include <sys/cdefs.h>
     37 #ifndef lint
     38 __RCSID("$NetBSD: mount_ntfs.c,v 1.14 2006/03/21 21:11:41 christos Exp $");
     39 #endif
     40 
     41 #include <sys/cdefs.h>
     42 #include <sys/param.h>
     43 #include <sys/mount.h>
     44 #include <sys/stat.h>
     45 #include <ntfs/ntfsmount.h>
     46 #include <ctype.h>
     47 #include <err.h>
     48 #include <grp.h>
     49 #include <pwd.h>
     50 #include <stdio.h>
     51 #include <stdlib.h>
     52 #include <string.h>
     53 #include <sysexits.h>
     54 #include <unistd.h>
     55 #include <util.h>
     56 
     57 #include <mntopts.h>
     58 #include <fattr.h>
     59 
     60 static const struct mntopt mopts[] = {
     61 	MOPT_STDOPTS,
     62 	MOPT_GETARGS,
     63 	{ NULL }
     64 };
     65 
     66 static void	usage(void) __attribute__((__noreturn__));
     67 int mount_ntfs(int argc, char **argv);
     68 
     69 #ifndef MOUNT_NOMAIN
     70 int
     71 main(int argc, char **argv)
     72 {
     73 	return mount_ntfs(argc, argv);
     74 }
     75 #endif
     76 
     77 int
     78 mount_ntfs(int argc, char **argv)
     79 {
     80 	struct ntfs_args args;
     81 	struct stat sb;
     82 	int c, mntflags, set_gid, set_uid, set_mask;
     83 	char *dev, *dir, canon_dev[MAXPATHLEN], canon_dir[MAXPATHLEN];
     84 	mntoptparse_t mp;
     85 
     86 	mntflags = set_gid = set_uid = set_mask = 0;
     87 	(void)memset(&args, '\0', sizeof(args));
     88 
     89 	while ((c = getopt(argc, argv, "aiu:g:m:o:")) !=  -1) {
     90 		switch (c) {
     91 		case 'u':
     92 			args.uid = a_uid(optarg);
     93 			set_uid = 1;
     94 			break;
     95 		case 'g':
     96 			args.gid = a_gid(optarg);
     97 			set_gid = 1;
     98 			break;
     99 		case 'm':
    100 			args.mode = a_mask(optarg);
    101 			set_mask = 1;
    102 			break;
    103 		case 'i':
    104 			args.flag |= NTFS_MFLAG_CASEINS;
    105 			break;
    106 		case 'a':
    107 			args.flag |= NTFS_MFLAG_ALLNAMES;
    108 			break;
    109 		case 'o':
    110 			mp = getmntopts(optarg, mopts, &mntflags, 0);
    111 			if (mp == NULL)
    112 				err(1, "getmntopts");
    113 			freemntopts(mp);
    114 			break;
    115 		case '?':
    116 		default:
    117 			usage();
    118 			break;
    119 		}
    120 	}
    121 
    122 	if (optind + 2 != argc)
    123 		usage();
    124 
    125 	dev = argv[optind];
    126 	dir = argv[optind + 1];
    127 
    128 	if (realpath(dev, canon_dev) == NULL)        /* Check device path */
    129 		err(1, "realpath %s", dev);
    130 	if (strncmp(dev, canon_dev, MAXPATHLEN)) {
    131 		warnx("\"%s\" is a relative path.", dev);
    132 		dev = canon_dev;
    133 		warnx("using \"%s\" instead.", dev);
    134 	}
    135 
    136 	if (realpath(dir, canon_dir) == NULL)        /* Check mounton path */
    137 		err(1, "realpath %s", dir);
    138 	if (strncmp(dir, canon_dir, MAXPATHLEN)) {
    139 		warnx("\"%s\" is a relative path.", dir);
    140 		dir = canon_dir;
    141 		warnx("using \"%s\" instead.", dir);
    142 	}
    143 
    144 	args.fspec = dev;
    145 	if (!set_gid || !set_uid || !set_mask) {
    146 		if (stat(dir, &sb) == -1)
    147 			err(EX_OSERR, "stat %s", dir);
    148 
    149 		if (!set_uid)
    150 			args.uid = sb.st_uid;
    151 		if (!set_gid)
    152 			args.gid = sb.st_gid;
    153 		if (!set_mask)
    154 			args.mode = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
    155 	}
    156 
    157 	if (mount(MOUNT_NTFS, dir, mntflags, &args) < 0)
    158 		err(EX_OSERR, "%s on %s", dev, dir);
    159 
    160 	if (mntflags & MNT_GETARGS) {
    161 		char buf[1024];
    162 		(void)snprintb(buf, sizeof(buf), NTFS_MFLAG_BITS, args.flag);
    163 		printf("uid=%d, gid=%d, mode=0%o, flags=%s\n", args.uid,
    164 		    args.gid, args.mode, buf);
    165 	}
    166 	exit (0);
    167 }
    168 
    169 static void
    170 usage(void)
    171 {
    172 	fprintf(stderr, "usage: mount_ntfs [-a] [-i] [-u user] [-g group] [-m mask] bdev dir\n");
    173 	exit(EX_USAGE);
    174 }
    175