Home | History | Annotate | Line # | Download | only in msdosfs
msdosfs_vfsops.c revision 1.114
      1 /*	$NetBSD: msdosfs_vfsops.c,v 1.114 2014/07/16 20:09:00 maxv Exp $	*/
      2 
      3 /*-
      4  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
      5  * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
      6  * All rights reserved.
      7  * Original code by Paul Popelka (paulp (at) uts.amdahl.com) (see below).
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product includes software developed by TooLs GmbH.
     20  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     21  *    derived from this software without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     27  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     28  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     29  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     30  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     31  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     32  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  */
     34 /*
     35  * Written by Paul Popelka (paulp (at) uts.amdahl.com)
     36  *
     37  * You can do anything you want with this software, just don't say you wrote
     38  * it, and don't remove this notice.
     39  *
     40  * This software is provided "as is".
     41  *
     42  * The author supplies this software to be publicly redistributed on the
     43  * understanding that the author is not responsible for the correct
     44  * functioning of this software in any circumstances and is not liable for
     45  * any damages caused by this software.
     46  *
     47  * October 1992
     48  */
     49 
     50 #include <sys/cdefs.h>
     51 __KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.114 2014/07/16 20:09:00 maxv Exp $");
     52 
     53 #if defined(_KERNEL_OPT)
     54 #include "opt_compat_netbsd.h"
     55 #endif
     56 
     57 #include <sys/param.h>
     58 #include <sys/systm.h>
     59 #include <sys/sysctl.h>
     60 #include <sys/namei.h>
     61 #include <sys/proc.h>
     62 #include <sys/kernel.h>
     63 #include <sys/vnode.h>
     64 #include <miscfs/genfs/genfs.h>
     65 #include <miscfs/specfs/specdev.h> /* XXX */	/* defines v_rdev */
     66 #include <sys/mount.h>
     67 #include <sys/buf.h>
     68 #include <sys/file.h>
     69 #include <sys/device.h>
     70 #include <sys/disklabel.h>
     71 #include <sys/disk.h>
     72 #include <sys/fstrans.h>
     73 #include <sys/ioctl.h>
     74 #include <sys/malloc.h>
     75 #include <sys/dirent.h>
     76 #include <sys/stat.h>
     77 #include <sys/conf.h>
     78 #include <sys/kauth.h>
     79 #include <sys/module.h>
     80 
     81 #include <fs/msdosfs/bpb.h>
     82 #include <fs/msdosfs/bootsect.h>
     83 #include <fs/msdosfs/direntry.h>
     84 #include <fs/msdosfs/denode.h>
     85 #include <fs/msdosfs/msdosfsmount.h>
     86 #include <fs/msdosfs/fat.h>
     87 
     88 MODULE(MODULE_CLASS_VFS, msdos, NULL);
     89 
     90 #ifdef MSDOSFS_DEBUG
     91 #define DPRINTF(a) uprintf a
     92 #else
     93 #define DPRINTF(a)
     94 #endif
     95 
     96 #define GEMDOSFS_BSIZE	512
     97 
     98 #define MSDOSFS_NAMEMAX(pmp) \
     99 	(pmp)->pm_flags & MSDOSFSMNT_LONGNAME ? WIN_MAXLEN : 12
    100 
    101 int msdosfs_mountfs(struct vnode *, struct mount *, struct lwp *,
    102     struct msdosfs_args *);
    103 
    104 static int update_mp(struct mount *, struct msdosfs_args *);
    105 
    106 MALLOC_JUSTDEFINE(M_MSDOSFSMNT, "MSDOSFS mount", "MSDOS FS mount structure");
    107 MALLOC_JUSTDEFINE(M_MSDOSFSFAT, "MSDOSFS FAT", "MSDOS FS FAT table");
    108 MALLOC_JUSTDEFINE(M_MSDOSFSTMP, "MSDOSFS temp", "MSDOS FS temp. structures");
    109 
    110 static struct sysctllog *msdosfs_sysctl_log;
    111 
    112 extern const struct vnodeopv_desc msdosfs_vnodeop_opv_desc;
    113 
    114 const struct vnodeopv_desc * const msdosfs_vnodeopv_descs[] = {
    115 	&msdosfs_vnodeop_opv_desc,
    116 	NULL,
    117 };
    118 
    119 struct vfsops msdosfs_vfsops = {
    120 	.vfs_name = MOUNT_MSDOS,
    121 	.vfs_min_mount_data = sizeof (struct msdosfs_args),
    122 	.vfs_mount = msdosfs_mount,
    123 	.vfs_start = msdosfs_start,
    124 	.vfs_unmount = msdosfs_unmount,
    125 	.vfs_root = msdosfs_root,
    126 	.vfs_quotactl = (void *)eopnotsupp,
    127 	.vfs_statvfs = msdosfs_statvfs,
    128 	.vfs_sync = msdosfs_sync,
    129 	.vfs_vget = msdosfs_vget,
    130 	.vfs_loadvnode = msdosfs_loadvnode,
    131 	.vfs_fhtovp = msdosfs_fhtovp,
    132 	.vfs_vptofh = msdosfs_vptofh,
    133 	.vfs_init = msdosfs_init,
    134 	.vfs_reinit = msdosfs_reinit,
    135 	.vfs_done = msdosfs_done,
    136 	.vfs_mountroot = msdosfs_mountroot,
    137 	.vfs_snapshot = (void *)eopnotsupp,
    138 	.vfs_extattrctl = vfs_stdextattrctl,
    139 	.vfs_suspendctl = msdosfs_suspendctl,
    140 	.vfs_renamelock_enter = genfs_renamelock_enter,
    141 	.vfs_renamelock_exit = genfs_renamelock_exit,
    142 	.vfs_fsync = (void *)eopnotsupp,
    143 	.vfs_opv_descs = msdosfs_vnodeopv_descs
    144 };
    145 
    146 static int
    147 msdos_modcmd(modcmd_t cmd, void *arg)
    148 {
    149 	int error;
    150 
    151 	switch (cmd) {
    152 	case MODULE_CMD_INIT:
    153 		error = vfs_attach(&msdosfs_vfsops);
    154 		if (error != 0)
    155 			break;
    156 		sysctl_createv(&msdosfs_sysctl_log, 0, NULL, NULL,
    157 			       CTLFLAG_PERMANENT,
    158 			       CTLTYPE_NODE, "msdosfs",
    159 			       SYSCTL_DESCR("MS-DOS file system"),
    160 			       NULL, 0, NULL, 0,
    161 			       CTL_VFS, 4, CTL_EOL);
    162 		/*
    163 		 * XXX the "4" above could be dynamic, thereby eliminating one
    164 		 * more instance of the "number to vfs" mapping problem, but
    165 		 * "4" is the order as taken from sys/mount.h
    166 		 */
    167 		break;
    168 	case MODULE_CMD_FINI:
    169 		error = vfs_detach(&msdosfs_vfsops);
    170 		if (error != 0)
    171 			break;
    172 		sysctl_teardown(&msdosfs_sysctl_log);
    173 		break;
    174 	default:
    175 		error = ENOTTY;
    176 		break;
    177 	}
    178 
    179 	return (error);
    180 }
    181 
    182 static int
    183 update_mp(struct mount *mp, struct msdosfs_args *argp)
    184 {
    185 	struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
    186 	int error;
    187 
    188 	pmp->pm_gid = argp->gid;
    189 	pmp->pm_uid = argp->uid;
    190 	pmp->pm_mask = argp->mask & ALLPERMS;
    191 	pmp->pm_dirmask = argp->dirmask & ALLPERMS;
    192 	pmp->pm_gmtoff = argp->gmtoff;
    193 	pmp->pm_flags |= argp->flags & MSDOSFSMNT_MNTOPT;
    194 
    195 	/*
    196 	 * GEMDOS knows nothing about win95 long filenames
    197 	 */
    198 	if (pmp->pm_flags & MSDOSFSMNT_GEMDOSFS)
    199 		pmp->pm_flags |= MSDOSFSMNT_NOWIN95;
    200 
    201 	if (pmp->pm_flags & MSDOSFSMNT_NOWIN95)
    202 		pmp->pm_flags |= MSDOSFSMNT_SHORTNAME;
    203 	else if (!(pmp->pm_flags &
    204 	    (MSDOSFSMNT_SHORTNAME | MSDOSFSMNT_LONGNAME))) {
    205 		struct vnode *rtvp;
    206 
    207 		/*
    208 		 * Try to divine whether to support Win'95 long filenames
    209 		 */
    210 		if (FAT32(pmp))
    211 			pmp->pm_flags |= MSDOSFSMNT_LONGNAME;
    212 		else {
    213 			if ((error = msdosfs_root(mp, &rtvp)) != 0)
    214 				return error;
    215 			pmp->pm_flags |= findwin95(VTODE(rtvp))
    216 				? MSDOSFSMNT_LONGNAME
    217 					: MSDOSFSMNT_SHORTNAME;
    218 			vput(rtvp);
    219 		}
    220 	}
    221 
    222 	mp->mnt_stat.f_namemax = MSDOSFS_NAMEMAX(pmp);
    223 
    224 	return 0;
    225 }
    226 
    227 int
    228 msdosfs_mountroot(void)
    229 {
    230 	struct mount *mp;
    231 	struct lwp *l = curlwp;	/* XXX */
    232 	int error;
    233 	struct msdosfs_args args;
    234 
    235 	if (device_class(root_device) != DV_DISK)
    236 		return (ENODEV);
    237 
    238 	if ((error = vfs_rootmountalloc(MOUNT_MSDOS, "root_device", &mp))) {
    239 		vrele(rootvp);
    240 		return (error);
    241 	}
    242 
    243 	args.flags = MSDOSFSMNT_VERSIONED;
    244 	args.uid = 0;
    245 	args.gid = 0;
    246 	args.mask = 0777;
    247 	args.version = MSDOSFSMNT_VERSION;
    248 	args.dirmask = 0777;
    249 
    250 	if ((error = msdosfs_mountfs(rootvp, mp, l, &args)) != 0) {
    251 		vfs_unbusy(mp, false, NULL);
    252 		vfs_destroy(mp);
    253 		return (error);
    254 	}
    255 
    256 	if ((error = update_mp(mp, &args)) != 0) {
    257 		(void)msdosfs_unmount(mp, 0);
    258 		vfs_unbusy(mp, false, NULL);
    259 		vfs_destroy(mp);
    260 		vrele(rootvp);
    261 		return (error);
    262 	}
    263 
    264 	mountlist_append(mp);
    265 	(void)msdosfs_statvfs(mp, &mp->mnt_stat);
    266 	vfs_unbusy(mp, false, NULL);
    267 	return (0);
    268 }
    269 
    270 /*
    271  * mp - path - addr in user space of mount point (ie /usr or whatever)
    272  * data - addr in user space of mount params including the name of the block
    273  * special file to treat as a filesystem.
    274  */
    275 int
    276 msdosfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
    277 {
    278 	struct lwp *l = curlwp;
    279 	struct vnode *devvp;	  /* vnode for blk device to mount */
    280 	struct msdosfs_args *args = data; /* holds data from mount request */
    281 	/* msdosfs specific mount control block */
    282 	struct msdosfsmount *pmp = NULL;
    283 	int error, flags;
    284 	mode_t accessmode;
    285 
    286 	if (args == NULL)
    287 		return EINVAL;
    288 	if (*data_len < sizeof *args)
    289 		return EINVAL;
    290 
    291 	if (mp->mnt_flag & MNT_GETARGS) {
    292 		pmp = VFSTOMSDOSFS(mp);
    293 		if (pmp == NULL)
    294 			return EIO;
    295 		args->fspec = NULL;
    296 		args->uid = pmp->pm_uid;
    297 		args->gid = pmp->pm_gid;
    298 		args->mask = pmp->pm_mask;
    299 		args->flags = pmp->pm_flags;
    300 		args->version = MSDOSFSMNT_VERSION;
    301 		args->dirmask = pmp->pm_dirmask;
    302 		args->gmtoff = pmp->pm_gmtoff;
    303 		*data_len = sizeof *args;
    304 		return 0;
    305 	}
    306 
    307 	/*
    308 	 * If not versioned (i.e. using old mount_msdos(8)), fill in
    309 	 * the additional structure items with suitable defaults.
    310 	 */
    311 	if ((args->flags & MSDOSFSMNT_VERSIONED) == 0) {
    312 		args->version = 1;
    313 		args->dirmask = args->mask;
    314 	}
    315 
    316 	/*
    317 	 * Reset GMT offset for pre-v3 mount structure args.
    318 	 */
    319 	if (args->version < 3)
    320 		args->gmtoff = 0;
    321 
    322 	/*
    323 	 * If updating, check whether changing from read-only to
    324 	 * read/write; if there is no device name, that's all we do.
    325 	 */
    326 	if (mp->mnt_flag & MNT_UPDATE) {
    327 		pmp = VFSTOMSDOSFS(mp);
    328 		error = 0;
    329 		if (!(pmp->pm_flags & MSDOSFSMNT_RONLY) &&
    330 		    (mp->mnt_flag & MNT_RDONLY)) {
    331 			flags = WRITECLOSE;
    332 			if (mp->mnt_flag & MNT_FORCE)
    333 				flags |= FORCECLOSE;
    334 			error = vflush(mp, NULLVP, flags);
    335 		}
    336 		if (!error && (mp->mnt_flag & MNT_RELOAD))
    337 			/* not yet implemented */
    338 			error = EOPNOTSUPP;
    339 		if (error) {
    340 			DPRINTF(("vflush %d\n", error));
    341 			return (error);
    342 		}
    343 		if ((pmp->pm_flags & MSDOSFSMNT_RONLY) &&
    344 		    (mp->mnt_iflag & IMNT_WANTRDWR)) {
    345 			/*
    346 			 * If upgrade to read-write by non-root, then verify
    347 			 * that user has necessary permissions on the device.
    348 			 *
    349 			 * Permission to update a mount is checked higher, so
    350 			 * here we presume updating the mount is okay (for
    351 			 * example, as far as securelevel goes) which leaves us
    352 			 * with the normal check.
    353 			 */
    354 			devvp = pmp->pm_devvp;
    355 			vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    356 			error = kauth_authorize_system(l->l_cred,
    357 			    KAUTH_SYSTEM_MOUNT, KAUTH_REQ_SYSTEM_MOUNT_DEVICE,
    358 			    mp, devvp, KAUTH_ARG(VREAD | VWRITE));
    359 			VOP_UNLOCK(devvp);
    360 			DPRINTF(("KAUTH_REQ_SYSTEM_MOUNT_DEVICE %d\n", error));
    361 			if (error)
    362 				return (error);
    363 
    364 			pmp->pm_flags &= ~MSDOSFSMNT_RONLY;
    365 		}
    366 		if (args->fspec == NULL) {
    367 			DPRINTF(("missing fspec\n"));
    368 			return EINVAL;
    369 		}
    370 	}
    371 	/*
    372 	 * Not an update, or updating the name: look up the name
    373 	 * and verify that it refers to a sensible block device.
    374 	 */
    375 	error = namei_simple_user(args->fspec,
    376 				NSM_FOLLOW_NOEMULROOT, &devvp);
    377 	if (error != 0) {
    378 		DPRINTF(("namei %d\n", error));
    379 		return (error);
    380 	}
    381 
    382 	if (devvp->v_type != VBLK) {
    383 		DPRINTF(("not block\n"));
    384 		vrele(devvp);
    385 		return (ENOTBLK);
    386 	}
    387 	if (bdevsw_lookup(devvp->v_rdev) == NULL) {
    388 		DPRINTF(("no block switch\n"));
    389 		vrele(devvp);
    390 		return (ENXIO);
    391 	}
    392 	/*
    393 	 * If mount by non-root, then verify that user has necessary
    394 	 * permissions on the device.
    395 	 */
    396 	accessmode = VREAD;
    397 	if ((mp->mnt_flag & MNT_RDONLY) == 0)
    398 		accessmode |= VWRITE;
    399 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    400 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_MOUNT,
    401 	    KAUTH_REQ_SYSTEM_MOUNT_DEVICE, mp, devvp, KAUTH_ARG(accessmode));
    402 	VOP_UNLOCK(devvp);
    403 	if (error) {
    404 		DPRINTF(("KAUTH_REQ_SYSTEM_MOUNT_DEVICE %d\n", error));
    405 		vrele(devvp);
    406 		return (error);
    407 	}
    408 	if ((mp->mnt_flag & MNT_UPDATE) == 0) {
    409 		int xflags;
    410 
    411 		if (mp->mnt_flag & MNT_RDONLY)
    412 			xflags = FREAD;
    413 		else
    414 			xflags = FREAD|FWRITE;
    415 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    416 		error = VOP_OPEN(devvp, xflags, FSCRED);
    417 		VOP_UNLOCK(devvp);
    418 		if (error) {
    419 			DPRINTF(("VOP_OPEN %d\n", error));
    420 			goto fail;
    421 		}
    422 		error = msdosfs_mountfs(devvp, mp, l, args);
    423 		if (error) {
    424 			DPRINTF(("msdosfs_mountfs %d\n", error));
    425 			vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    426 			(void) VOP_CLOSE(devvp, xflags, NOCRED);
    427 			VOP_UNLOCK(devvp);
    428 			goto fail;
    429 		}
    430 #ifdef MSDOSFS_DEBUG		/* only needed for the printf below */
    431 		pmp = VFSTOMSDOSFS(mp);
    432 #endif
    433 	} else {
    434 		vrele(devvp);
    435 		if (devvp != pmp->pm_devvp) {
    436 			DPRINTF(("devvp %p pmp %p\n",
    437 			    devvp, pmp->pm_devvp));
    438 			return (EINVAL);	/* needs translation */
    439 		}
    440 	}
    441 	if ((error = update_mp(mp, args)) != 0) {
    442 		msdosfs_unmount(mp, MNT_FORCE);
    443 		DPRINTF(("update_mp %d\n", error));
    444 		return error;
    445 	}
    446 
    447 #ifdef MSDOSFS_DEBUG
    448 	printf("msdosfs_mount(): mp %p, pmp %p, inusemap %p\n", mp, pmp, pmp->pm_inusemap);
    449 #endif
    450 	return set_statvfs_info(path, UIO_USERSPACE, args->fspec, UIO_USERSPACE,
    451 	    mp->mnt_op->vfs_name, mp, l);
    452 
    453 fail:
    454 	vrele(devvp);
    455 	return (error);
    456 }
    457 
    458 int
    459 msdosfs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l, struct msdosfs_args *argp)
    460 {
    461 	struct msdosfsmount *pmp;
    462 	struct buf *bp;
    463 	dev_t dev = devvp->v_rdev;
    464 	union bootsector *bsp;
    465 	struct byte_bpb33 *b33;
    466 	struct byte_bpb50 *b50;
    467 	struct byte_bpb710 *b710;
    468 	uint8_t SecPerClust;
    469 	int	ronly, error, BlkPerSec;
    470 	uint64_t psize;
    471 	unsigned secsize;
    472 
    473 	/* Flush out any old buffers remaining from a previous use. */
    474 	if ((error = vinvalbuf(devvp, V_SAVE, l->l_cred, l, 0, 0)) != 0)
    475 		return (error);
    476 
    477 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
    478 
    479 	bp  = NULL; /* both used in error_exit */
    480 	pmp = NULL;
    481 
    482 	error = fstrans_mount(mp);
    483 	if (error)
    484 		goto error_exit;
    485 
    486 	error = getdisksize(devvp, &psize, &secsize);
    487 	if (error) {
    488 		if (argp->flags & MSDOSFSMNT_GEMDOSFS)
    489 			goto error_exit;
    490 
    491 		/* ok, so it failed.  we most likely don't need the info */
    492 		secsize = DEV_BSIZE;
    493 		psize = 0;
    494 		error = 0;
    495 	}
    496 	if (secsize < DEV_BSIZE) {
    497 #ifdef DIAGNOSTIC /* XXX: to be converted to DPRINTF */
    498 		printf("%s(): Invalid block secsize (%d < DEV_BSIZE)\n", __func__,
    499 		    secsize);
    500 #endif
    501 		error = EINVAL;
    502 		goto error_exit;
    503 	}
    504 
    505 	if (argp->flags & MSDOSFSMNT_GEMDOSFS) {
    506 		if (secsize != GEMDOSFS_BSIZE) {
    507 			DPRINTF(("Invalid block secsize %d for GEMDOS\n", secsize));
    508 			error = EINVAL;
    509 			goto error_exit;
    510 		}
    511 	}
    512 
    513 	/*
    514 	 * Read the boot sector of the filesystem, and then check the
    515 	 * boot signature.  If not a dos boot sector then error out.
    516 	 */
    517 	if ((error = bread(devvp, 0, secsize, NOCRED, 0, &bp)) != 0)
    518 		goto error_exit;
    519 	bsp = (union bootsector *)bp->b_data;
    520 	b33 = (struct byte_bpb33 *)bsp->bs33.bsBPB;
    521 	b50 = (struct byte_bpb50 *)bsp->bs50.bsBPB;
    522 	b710 = (struct byte_bpb710 *)bsp->bs710.bsBPB;
    523 
    524 	if (!(argp->flags & MSDOSFSMNT_GEMDOSFS)) {
    525 		if (bsp->bs50.bsBootSectSig0 != BOOTSIG0
    526 		    || bsp->bs50.bsBootSectSig1 != BOOTSIG1) {
    527 			DPRINTF(("bootsig0 %d bootsig1 %d\n",
    528 			    bsp->bs50.bsBootSectSig0,
    529 			    bsp->bs50.bsBootSectSig1));
    530 			error = EINVAL;
    531 			goto error_exit;
    532 		}
    533 	}
    534 
    535 	pmp = malloc(sizeof(*pmp), M_MSDOSFSMNT, M_WAITOK|M_ZERO);
    536 	pmp->pm_mountp = mp;
    537 
    538 	/*
    539 	 * Compute several useful quantities from the bpb in the
    540 	 * bootsector.  Copy in the dos 5 variant of the bpb then fix up
    541 	 * the fields that are different between dos 5 and dos 3.3.
    542 	 */
    543 	SecPerClust = b50->bpbSecPerClust;
    544 	pmp->pm_BytesPerSec = getushort(b50->bpbBytesPerSec);
    545 	pmp->pm_ResSectors = getushort(b50->bpbResSectors);
    546 	pmp->pm_FATs = b50->bpbFATs;
    547 	pmp->pm_RootDirEnts = getushort(b50->bpbRootDirEnts);
    548 	pmp->pm_Sectors = getushort(b50->bpbSectors);
    549 	pmp->pm_FATsecs = getushort(b50->bpbFATsecs);
    550 	pmp->pm_SecPerTrack = getushort(b50->bpbSecPerTrack);
    551 	pmp->pm_Heads = getushort(b50->bpbHeads);
    552 	pmp->pm_Media = b50->bpbMedia;
    553 
    554 	if (pmp->pm_Sectors == 0) {
    555 		pmp->pm_HiddenSects = getulong(b50->bpbHiddenSecs);
    556 		pmp->pm_HugeSectors = getulong(b50->bpbHugeSectors);
    557 	} else {
    558 		pmp->pm_HiddenSects = getushort(b33->bpbHiddenSecs);
    559 		pmp->pm_HugeSectors = pmp->pm_Sectors;
    560 	}
    561 
    562 	/*
    563 	 * Sanity checks, from the FAT specification:
    564 	 * - sectors per cluster: >= 1, power of 2
    565 	 * - logical sector size: >= 1, power of 2
    566 	 * - cluster size:        <= max FS block size
    567 	 * - number of sectors:   >= 1
    568 	 */
    569 	if ((SecPerClust == 0) || !powerof2(SecPerClust) ||
    570 	    (pmp->pm_BytesPerSec == 0) || !powerof2(pmp->pm_BytesPerSec) ||
    571 	    (SecPerClust * pmp->pm_BytesPerSec > MAXBSIZE) ||
    572 	    (pmp->pm_HugeSectors == 0)) {
    573 		DPRINTF(("consistency checks\n"));
    574 		error = EINVAL;
    575 		goto error_exit;
    576 	}
    577 
    578 	if (!(argp->flags & MSDOSFSMNT_GEMDOSFS) &&
    579 	    (pmp->pm_SecPerTrack > 63)) {
    580 		DPRINTF(("SecPerTrack %d\n", pmp->pm_SecPerTrack));
    581 		error = EINVAL;
    582 		goto error_exit;
    583 	}
    584 
    585 	if (pmp->pm_RootDirEnts == 0) {
    586 		unsigned short FSVers = getushort(b710->bpbFSVers);
    587 		unsigned short ExtFlags = getushort(b710->bpbExtFlags);
    588 		/*
    589 		 * Some say that bsBootSectSig[23] must be zero, but
    590 		 * Windows does not require this and some digital cameras
    591 		 * do not set these to zero.  Therefore, do not insist.
    592 		 */
    593 		if (pmp->pm_Sectors || pmp->pm_FATsecs || FSVers) {
    594 			DPRINTF(("Sectors %d FATsecs %lu FSVers %d\n",
    595 			    pmp->pm_Sectors, pmp->pm_FATsecs, FSVers));
    596 			error = EINVAL;
    597 			goto error_exit;
    598 		}
    599 		pmp->pm_fatmask = FAT32_MASK;
    600 		pmp->pm_fatmult = 4;
    601 		pmp->pm_fatdiv = 1;
    602 		pmp->pm_FATsecs = getulong(b710->bpbBigFATsecs);
    603 
    604 		/* Mirroring is enabled if the FATMIRROR bit is not set. */
    605 		if ((ExtFlags & FATMIRROR) == 0)
    606 			pmp->pm_flags |= MSDOSFS_FATMIRROR;
    607 		else
    608 			pmp->pm_curfat = ExtFlags & FATNUM;
    609 	} else
    610 		pmp->pm_flags |= MSDOSFS_FATMIRROR;
    611 
    612 	if (argp->flags & MSDOSFSMNT_GEMDOSFS) {
    613 		if (FAT32(pmp)) {
    614 			/* GEMDOS doesn't know FAT32. */
    615 			DPRINTF(("FAT32 for GEMDOS\n"));
    616 			error = EINVAL;
    617 			goto error_exit;
    618 		}
    619 
    620 		/*
    621 		 * Check a few values (could do some more):
    622 		 * - logical sector size: >= block size
    623 		 * - number of sectors:   <= size of partition
    624 		 */
    625 		if ((pmp->pm_BytesPerSec < GEMDOSFS_BSIZE) ||
    626 		    (pmp->pm_HugeSectors *
    627 		     (pmp->pm_BytesPerSec / GEMDOSFS_BSIZE) > psize)) {
    628 			DPRINTF(("consistency checks for GEMDOS\n"));
    629 			error = EINVAL;
    630 			goto error_exit;
    631 		}
    632 		/*
    633 		 * XXX - Many parts of the msdosfs driver seem to assume that
    634 		 * the number of bytes per logical sector (BytesPerSec) will
    635 		 * always be the same as the number of bytes per disk block
    636 		 * Let's pretend it is.
    637 		 */
    638 		BlkPerSec = pmp->pm_BytesPerSec / GEMDOSFS_BSIZE;
    639 		pmp->pm_BytesPerSec  = GEMDOSFS_BSIZE;
    640 		pmp->pm_HugeSectors *= BlkPerSec;
    641 		pmp->pm_HiddenSects *= BlkPerSec;
    642 		pmp->pm_ResSectors  *= BlkPerSec;
    643 		pmp->pm_Sectors     *= BlkPerSec;
    644 		pmp->pm_FATsecs     *= BlkPerSec;
    645 		SecPerClust         *= BlkPerSec;
    646 	}
    647 
    648 	/* Check that fs has nonzero FAT size */
    649 	if (pmp->pm_FATsecs == 0) {
    650 		DPRINTF(("FATsecs is 0\n"));
    651 		error = EINVAL;
    652 		goto error_exit;
    653 	}
    654 
    655 	pmp->pm_fatblk = pmp->pm_ResSectors;
    656 	if (FAT32(pmp)) {
    657 		pmp->pm_rootdirblk = getulong(b710->bpbRootClust);
    658 		pmp->pm_firstcluster = pmp->pm_fatblk
    659 			+ (pmp->pm_FATs * pmp->pm_FATsecs);
    660 		pmp->pm_fsinfo = getushort(b710->bpbFSInfo);
    661 	} else {
    662 		pmp->pm_rootdirblk = pmp->pm_fatblk +
    663 			(pmp->pm_FATs * pmp->pm_FATsecs);
    664 		pmp->pm_rootdirsize = (pmp->pm_RootDirEnts * sizeof(struct direntry)
    665 				       + pmp->pm_BytesPerSec - 1)
    666 			/ pmp->pm_BytesPerSec;/* in sectors */
    667 		pmp->pm_firstcluster = pmp->pm_rootdirblk + pmp->pm_rootdirsize;
    668 	}
    669 
    670 	pmp->pm_nmbrofclusters = (pmp->pm_HugeSectors - pmp->pm_firstcluster) /
    671 	    SecPerClust;
    672 	pmp->pm_maxcluster = pmp->pm_nmbrofclusters + 1;
    673 	pmp->pm_fatsize = pmp->pm_FATsecs * pmp->pm_BytesPerSec;
    674 
    675 	if (argp->flags & MSDOSFSMNT_GEMDOSFS) {
    676 		if (pmp->pm_nmbrofclusters <= (0xff0 - 2)) {
    677 			pmp->pm_fatmask = FAT12_MASK;
    678 			pmp->pm_fatmult = 3;
    679 			pmp->pm_fatdiv = 2;
    680 		} else {
    681 			pmp->pm_fatmask = FAT16_MASK;
    682 			pmp->pm_fatmult = 2;
    683 			pmp->pm_fatdiv = 1;
    684 		}
    685 	} else if (pmp->pm_fatmask == 0) {
    686 		if (pmp->pm_maxcluster
    687 		    <= ((CLUST_RSRVD - CLUST_FIRST) & FAT12_MASK)) {
    688 			/*
    689 			 * This will usually be a floppy disk. This size makes
    690 			 * sure that one FAT entry will not be split across
    691 			 * multiple blocks.
    692 			 */
    693 			pmp->pm_fatmask = FAT12_MASK;
    694 			pmp->pm_fatmult = 3;
    695 			pmp->pm_fatdiv = 2;
    696 		} else {
    697 			pmp->pm_fatmask = FAT16_MASK;
    698 			pmp->pm_fatmult = 2;
    699 			pmp->pm_fatdiv = 1;
    700 		}
    701 	}
    702 	if (FAT12(pmp))
    703 		pmp->pm_fatblocksize = 3 * pmp->pm_BytesPerSec;
    704 	else
    705 		pmp->pm_fatblocksize = MAXBSIZE;
    706 
    707 	pmp->pm_fatblocksec = pmp->pm_fatblocksize / pmp->pm_BytesPerSec;
    708 	pmp->pm_bnshift = ffs(pmp->pm_BytesPerSec) - 1;
    709 
    710 	/*
    711 	 * Compute mask and shift value for isolating cluster relative byte
    712 	 * offsets and cluster numbers from a file offset.
    713 	 */
    714 	pmp->pm_bpcluster = SecPerClust * pmp->pm_BytesPerSec;
    715 	pmp->pm_crbomask = pmp->pm_bpcluster - 1;
    716 	pmp->pm_cnshift = ffs(pmp->pm_bpcluster) - 1;
    717 
    718 	/*
    719 	 * Check for valid cluster size
    720 	 * must be a power of 2
    721 	 */
    722 	if (pmp->pm_bpcluster ^ (1 << pmp->pm_cnshift)) {
    723 		DPRINTF(("bpcluster %lu cnshift %lu\n",
    724 		    pmp->pm_bpcluster, pmp->pm_cnshift));
    725 		error = EINVAL;
    726 		goto error_exit;
    727 	}
    728 
    729 	/*
    730 	 * Cluster size must be within limit of MAXBSIZE.
    731 	 * Many FAT filesystems will not have clusters larger than
    732 	 * 32KiB due to limits in Windows versions before Vista.
    733 	 */
    734 	if (pmp->pm_bpcluster > MAXBSIZE) {
    735 		DPRINTF(("bpcluster %lu > MAXBSIZE %d\n",
    736 		    pmp->pm_bpcluster, MAXBSIZE));
    737 		error = EINVAL;
    738 		goto error_exit;
    739 	}
    740 
    741 	/*
    742 	 * Release the bootsector buffer.
    743 	 */
    744 	brelse(bp, BC_AGE);
    745 	bp = NULL;
    746 
    747 	/*
    748 	 * Check FSInfo.
    749 	 */
    750 	if (pmp->pm_fsinfo) {
    751 		struct fsinfo *fp;
    752 		const int rdsz = roundup(sizeof(*fp), pmp->pm_BytesPerSec);
    753 
    754 		/*
    755 		 * XXX	If the fsinfo block is stored on media with
    756 		 *	2KB or larger sectors, is the fsinfo structure
    757 		 *	padded at the end or in the middle?
    758 		 */
    759 		if ((error = bread(devvp, de_bn2kb(pmp, pmp->pm_fsinfo),
    760 		    rdsz, NOCRED, 0, &bp)) != 0)
    761 			goto error_exit;
    762 		fp = (struct fsinfo *)bp->b_data;
    763 		if (!memcmp(fp->fsisig1, "RRaA", 4)
    764 		    && !memcmp(fp->fsisig2, "rrAa", 4)
    765 		    && !memcmp(fp->fsisig3, "\0\0\125\252", 4)
    766 		    && !memcmp(fp->fsisig4, "\0\0\125\252", 4))
    767 			pmp->pm_nxtfree = getulong(fp->fsinxtfree);
    768 		else
    769 			pmp->pm_fsinfo = 0;
    770 		brelse(bp, 0);
    771 		bp = NULL;
    772 	}
    773 
    774 	/*
    775 	 * Check and validate (or perhaps invalidate?) the fsinfo structure?
    776 	 * XXX
    777 	 */
    778 	if (pmp->pm_fsinfo) {
    779 		if ((pmp->pm_nxtfree == 0xffffffffUL) ||
    780 		    (pmp->pm_nxtfree > pmp->pm_maxcluster))
    781 			pmp->pm_fsinfo = 0;
    782 	}
    783 
    784 	/*
    785 	 * Allocate memory for the bitmap of allocated clusters, and then
    786 	 * fill it in.
    787 	 */
    788 	pmp->pm_inusemap = malloc(((pmp->pm_maxcluster + N_INUSEBITS)
    789 				   / N_INUSEBITS)
    790 				  * sizeof(*pmp->pm_inusemap),
    791 				  M_MSDOSFSFAT, M_WAITOK);
    792 
    793 	/*
    794 	 * fillinusemap() needs pm_devvp.
    795 	 */
    796 	pmp->pm_dev = dev;
    797 	pmp->pm_devvp = devvp;
    798 
    799 	/*
    800 	 * Have the inuse map filled in.
    801 	 */
    802 	if ((error = fillinusemap(pmp)) != 0) {
    803 		DPRINTF(("fillinusemap %d\n", error));
    804 		goto error_exit;
    805 	}
    806 
    807 	/*
    808 	 * If they want FAT updates to be synchronous then let them suffer
    809 	 * the performance degradation in exchange for the on disk copy of
    810 	 * the FAT being correct just about all the time.  I suppose this
    811 	 * would be a good thing to turn on if the kernel is still flakey.
    812 	 */
    813 	if (mp->mnt_flag & MNT_SYNCHRONOUS)
    814 		pmp->pm_flags |= MSDOSFSMNT_WAITONFAT;
    815 
    816 	/*
    817 	 * Finish up.
    818 	 */
    819 	if (ronly)
    820 		pmp->pm_flags |= MSDOSFSMNT_RONLY;
    821 	else
    822 		pmp->pm_fmod = 1;
    823 	mp->mnt_data = pmp;
    824 	mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
    825 	mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_MSDOS);
    826 	mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
    827 	mp->mnt_stat.f_namemax = MSDOSFS_NAMEMAX(pmp);
    828 	mp->mnt_flag |= MNT_LOCAL;
    829 	mp->mnt_dev_bshift = pmp->pm_bnshift;
    830 	mp->mnt_fs_bshift = pmp->pm_cnshift;
    831 
    832 	/*
    833 	 * If we ever do quotas for DOS filesystems this would be a place
    834 	 * to fill in the info in the msdosfsmount structure. You dolt,
    835 	 * quotas on dos filesystems make no sense because files have no
    836 	 * owners on dos filesystems. of course there is some empty space
    837 	 * in the directory entry where we could put uid's and gid's.
    838 	 */
    839 
    840 	spec_node_setmountedfs(devvp, mp);
    841 
    842 	return (0);
    843 
    844 error_exit:
    845 	fstrans_unmount(mp);
    846 	if (bp)
    847 		brelse(bp, BC_AGE);
    848 	if (pmp) {
    849 		if (pmp->pm_inusemap)
    850 			free(pmp->pm_inusemap, M_MSDOSFSFAT);
    851 		free(pmp, M_MSDOSFSMNT);
    852 		mp->mnt_data = NULL;
    853 	}
    854 	return (error);
    855 }
    856 
    857 int
    858 msdosfs_start(struct mount *mp, int flags)
    859 {
    860 
    861 	return (0);
    862 }
    863 
    864 /*
    865  * Unmount the filesystem described by mp.
    866  */
    867 int
    868 msdosfs_unmount(struct mount *mp, int mntflags)
    869 {
    870 	struct msdosfsmount *pmp;
    871 	int error, flags;
    872 
    873 	flags = 0;
    874 	if (mntflags & MNT_FORCE)
    875 		flags |= FORCECLOSE;
    876 	if ((error = vflush(mp, NULLVP, flags)) != 0)
    877 		return (error);
    878 	pmp = VFSTOMSDOSFS(mp);
    879 	if (pmp->pm_devvp->v_type != VBAD)
    880 		spec_node_setmountedfs(pmp->pm_devvp, NULL);
    881 #ifdef MSDOSFS_DEBUG
    882 	{
    883 		struct vnode *vp = pmp->pm_devvp;
    884 
    885 		printf("msdosfs_umount(): just before calling VOP_CLOSE()\n");
    886 		printf("flag %08x, usecount %d, writecount %d, holdcnt %d\n",
    887 		    vp->v_vflag | vp->v_iflag | vp->v_uflag, vp->v_usecount,
    888 		    vp->v_writecount, vp->v_holdcnt);
    889 		printf("mount %p, op %p\n",
    890 		    vp->v_mount, vp->v_op);
    891 		printf("freef %p, freeb %p, mount %p\n",
    892 		    vp->v_freelist.tqe_next, vp->v_freelist.tqe_prev,
    893 		    vp->v_mount);
    894 		printf("cleanblkhd %p, dirtyblkhd %p, numoutput %d, type %d\n",
    895 		    vp->v_cleanblkhd.lh_first,
    896 		    vp->v_dirtyblkhd.lh_first,
    897 		    vp->v_numoutput, vp->v_type);
    898 		printf("union %p, tag %d, data[0] %08x, data[1] %08x\n",
    899 		    vp->v_socket, vp->v_tag,
    900 		    ((u_int *)vp->v_data)[0],
    901 		    ((u_int *)vp->v_data)[1]);
    902 	}
    903 #endif
    904 	vn_lock(pmp->pm_devvp, LK_EXCLUSIVE | LK_RETRY);
    905 	(void) VOP_CLOSE(pmp->pm_devvp,
    906 	    pmp->pm_flags & MSDOSFSMNT_RONLY ? FREAD : FREAD|FWRITE, NOCRED);
    907 	vput(pmp->pm_devvp);
    908 	msdosfs_fh_destroy(pmp);
    909 	free(pmp->pm_inusemap, M_MSDOSFSFAT);
    910 	free(pmp, M_MSDOSFSMNT);
    911 	mp->mnt_data = NULL;
    912 	mp->mnt_flag &= ~MNT_LOCAL;
    913 	fstrans_unmount(mp);
    914 	return (0);
    915 }
    916 
    917 int
    918 msdosfs_root(struct mount *mp, struct vnode **vpp)
    919 {
    920 	struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
    921 	int error;
    922 
    923 #ifdef MSDOSFS_DEBUG
    924 	printf("msdosfs_root(); mp %p, pmp %p\n", mp, pmp);
    925 #endif
    926 	if ((error = deget(pmp, MSDOSFSROOT, MSDOSFSROOT_OFS, vpp)) != 0)
    927 		return error;
    928 	error = vn_lock(*vpp, LK_EXCLUSIVE);
    929 	if (error) {
    930 		vrele(*vpp);
    931 		*vpp = NULL;
    932 		return error;
    933 	}
    934 	return 0;
    935 }
    936 
    937 int
    938 msdosfs_statvfs(struct mount *mp, struct statvfs *sbp)
    939 {
    940 	struct msdosfsmount *pmp;
    941 
    942 	pmp = VFSTOMSDOSFS(mp);
    943 	sbp->f_bsize = pmp->pm_bpcluster;
    944 	sbp->f_frsize = sbp->f_bsize;
    945 	sbp->f_iosize = pmp->pm_bpcluster;
    946 	sbp->f_blocks = pmp->pm_nmbrofclusters;
    947 	sbp->f_bfree = pmp->pm_freeclustercount;
    948 	sbp->f_bavail = pmp->pm_freeclustercount;
    949 	sbp->f_bresvd = 0;
    950 	sbp->f_files = pmp->pm_RootDirEnts;			/* XXX */
    951 	sbp->f_ffree = 0;	/* what to put in here? */
    952 	sbp->f_favail = 0;	/* what to put in here? */
    953 	sbp->f_fresvd = 0;
    954 	copy_statvfs_info(sbp, mp);
    955 	return (0);
    956 }
    957 
    958 struct msdosfs_sync_ctx {
    959 	int waitfor;
    960 };
    961 
    962 static bool
    963 msdosfs_sync_selector(void *cl, struct vnode *vp)
    964 {
    965 	struct msdosfs_sync_ctx *c = cl;
    966 	struct denode *dep;
    967 
    968 	dep = VTODE(vp);
    969 	if (c->waitfor == MNT_LAZY || vp->v_type == VNON ||
    970 	    dep == NULL || (((dep->de_flag &
    971 	    (DE_ACCESS | DE_CREATE | DE_UPDATE | DE_MODIFIED)) == 0) &&
    972 	     (LIST_EMPTY(&vp->v_dirtyblkhd) &&
    973 	      UVM_OBJ_IS_CLEAN(&vp->v_uobj))))
    974 		return false;
    975 	return true;
    976 }
    977 
    978 int
    979 msdosfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred)
    980 {
    981 	struct vnode *vp;
    982 	struct vnode_iterator *marker;
    983 	struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
    984 	int error, allerror = 0;
    985 	struct msdosfs_sync_ctx ctx;
    986 
    987 	/*
    988 	 * If we ever switch to not updating all of the FATs all the time,
    989 	 * this would be the place to update them from the first one.
    990 	 */
    991 	if (pmp->pm_fmod != 0) {
    992 		if (pmp->pm_flags & MSDOSFSMNT_RONLY)
    993 			panic("msdosfs_sync: rofs mod");
    994 		else {
    995 			/* update FATs here */
    996 		}
    997 	}
    998 	fstrans_start(mp, FSTRANS_SHARED);
    999 	/*
   1000 	 * Write back each (modified) denode.
   1001 	 */
   1002 	vfs_vnode_iterator_init(mp, &marker);
   1003 	ctx.waitfor = waitfor;
   1004 	while ((vp = vfs_vnode_iterator_next(marker, msdosfs_sync_selector,
   1005 	    &ctx)))
   1006 	{
   1007 		error = vn_lock(vp, LK_EXCLUSIVE);
   1008 		if (error) {
   1009 			vrele(vp);
   1010 			continue;
   1011 		}
   1012 		if ((error = VOP_FSYNC(vp, cred,
   1013 		    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0)
   1014 			allerror = error;
   1015 		vput(vp);
   1016 	}
   1017 	vfs_vnode_iterator_destroy(marker);
   1018 
   1019 	/*
   1020 	 * Force stale file system control information to be flushed.
   1021 	 */
   1022 	if ((error = VOP_FSYNC(pmp->pm_devvp, cred,
   1023 	    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0)
   1024 		allerror = error;
   1025 	fstrans_done(mp);
   1026 	return (allerror);
   1027 }
   1028 
   1029 int
   1030 msdosfs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
   1031 {
   1032 	struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
   1033 	struct defid defh;
   1034 	uint32_t gen;
   1035 	int error;
   1036 
   1037 	if (fhp->fid_len != sizeof(struct defid)) {
   1038 		DPRINTF(("fid_len %d %zd\n", fhp->fid_len,
   1039 		    sizeof(struct defid)));
   1040 		return EINVAL;
   1041 	}
   1042 	memcpy(&defh, fhp, sizeof(defh));
   1043 	error = msdosfs_fh_lookup(pmp, defh.defid_dirclust, defh.defid_dirofs,
   1044 	    &gen);
   1045 	if (error == 0 && gen != defh.defid_gen)
   1046 		error = ESTALE;
   1047 	if (error) {
   1048 		*vpp = NULLVP;
   1049 		return error;
   1050 	}
   1051 	error = deget(pmp, defh.defid_dirclust, defh.defid_dirofs, vpp);
   1052 	if (error) {
   1053 		DPRINTF(("deget %d\n", error));
   1054 		*vpp = NULLVP;
   1055 		return error;
   1056 	}
   1057 	error = vn_lock(*vpp, LK_EXCLUSIVE);
   1058 	if (error) {
   1059 		vrele(*vpp);
   1060 		*vpp = NULLVP;
   1061 		return error;
   1062 	}
   1063 	return 0;
   1064 }
   1065 
   1066 int
   1067 msdosfs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
   1068 {
   1069 	struct msdosfsmount *pmp = VFSTOMSDOSFS(vp->v_mount);
   1070 	struct denode *dep;
   1071 	struct defid defh;
   1072 	int error;
   1073 
   1074 	if (*fh_size < sizeof(struct defid)) {
   1075 		*fh_size = sizeof(struct defid);
   1076 		return E2BIG;
   1077 	}
   1078 	*fh_size = sizeof(struct defid);
   1079 	dep = VTODE(vp);
   1080 	memset(&defh, 0, sizeof(defh));
   1081 	defh.defid_len = sizeof(struct defid);
   1082 	defh.defid_dirclust = dep->de_dirclust;
   1083 	defh.defid_dirofs = dep->de_diroffset;
   1084 	error = msdosfs_fh_enter(pmp, dep->de_dirclust, dep->de_diroffset,
   1085 	     &defh.defid_gen);
   1086 	if (error == 0)
   1087 		memcpy(fhp, &defh, sizeof(defh));
   1088 	return error;
   1089 }
   1090 
   1091 int
   1092 msdosfs_vget(struct mount *mp, ino_t ino,
   1093     struct vnode **vpp)
   1094 {
   1095 
   1096 	return (EOPNOTSUPP);
   1097 }
   1098 
   1099 int
   1100 msdosfs_suspendctl(struct mount *mp, int cmd)
   1101 {
   1102 	int error;
   1103 	struct lwp *l = curlwp;
   1104 
   1105 	switch (cmd) {
   1106 	case SUSPEND_SUSPEND:
   1107 		if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
   1108 			return error;
   1109 		error = msdosfs_sync(mp, MNT_WAIT, l->l_proc->p_cred);
   1110 		if (error == 0)
   1111 			error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
   1112 		if (error != 0) {
   1113 			(void) fstrans_setstate(mp, FSTRANS_NORMAL);
   1114 			return error;
   1115 		}
   1116 		return 0;
   1117 
   1118 	case SUSPEND_RESUME:
   1119 		return fstrans_setstate(mp, FSTRANS_NORMAL);
   1120 
   1121 	default:
   1122 		return EINVAL;
   1123 	}
   1124 }
   1125