xref: /freebsd/sys/fs/msdosfs/msdosfs_vnops.c (revision 38069501)
1 /* $FreeBSD$ */
2 /*	$NetBSD: msdosfs_vnops.c,v 1.68 1998/02/10 14:10:04 mrg Exp $	*/
3 
4 /*-
5  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6  * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7  * All rights reserved.
8  * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by TooLs GmbH.
21  * 4. The name of TooLs GmbH may not be used to endorse or promote products
22  *    derived from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
30  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 /*-
36  * Written by Paul Popelka (paulp@uts.amdahl.com)
37  *
38  * You can do anything you want with this software, just don't say you wrote
39  * it, and don't remove this notice.
40  *
41  * This software is provided "as is".
42  *
43  * The author supplies this software to be publicly redistributed on the
44  * understanding that the author is not responsible for the correct
45  * functioning of this software in any circumstances and is not liable for
46  * any damages caused by this software.
47  *
48  * October 1992
49  */
50 
51 #include <sys/param.h>
52 #include <sys/systm.h>
53 #include <sys/bio.h>
54 #include <sys/buf.h>
55 #include <sys/clock.h>
56 #include <sys/dirent.h>
57 #include <sys/lock.h>
58 #include <sys/lockf.h>
59 #include <sys/malloc.h>
60 #include <sys/mount.h>
61 #include <sys/mutex.h>
62 #include <sys/namei.h>
63 #include <sys/priv.h>
64 #include <sys/stat.h>
65 #include <sys/sysctl.h>
66 #include <sys/unistd.h>
67 #include <sys/vmmeter.h>
68 #include <sys/vnode.h>
69 
70 #include <vm/vm.h>
71 #include <vm/vm_extern.h>
72 #include <vm/vnode_pager.h>
73 
74 #include <fs/msdosfs/bpb.h>
75 #include <fs/msdosfs/direntry.h>
76 #include <fs/msdosfs/denode.h>
77 #include <fs/msdosfs/fat.h>
78 #include <fs/msdosfs/msdosfsmount.h>
79 
80 #define	DOS_FILESIZE_MAX	0xffffffff
81 
82 /*
83  * Prototypes for MSDOSFS vnode operations
84  */
85 static vop_create_t	msdosfs_create;
86 static vop_mknod_t	msdosfs_mknod;
87 static vop_open_t	msdosfs_open;
88 static vop_close_t	msdosfs_close;
89 static vop_access_t	msdosfs_access;
90 static vop_getattr_t	msdosfs_getattr;
91 static vop_setattr_t	msdosfs_setattr;
92 static vop_read_t	msdosfs_read;
93 static vop_write_t	msdosfs_write;
94 static vop_fsync_t	msdosfs_fsync;
95 static vop_remove_t	msdosfs_remove;
96 static vop_link_t	msdosfs_link;
97 static vop_rename_t	msdosfs_rename;
98 static vop_mkdir_t	msdosfs_mkdir;
99 static vop_rmdir_t	msdosfs_rmdir;
100 static vop_symlink_t	msdosfs_symlink;
101 static vop_readdir_t	msdosfs_readdir;
102 static vop_bmap_t	msdosfs_bmap;
103 static vop_getpages_t	msdosfs_getpages;
104 static vop_strategy_t	msdosfs_strategy;
105 static vop_print_t	msdosfs_print;
106 static vop_pathconf_t	msdosfs_pathconf;
107 static vop_vptofh_t	msdosfs_vptofh;
108 
109 /*
110  * Some general notes:
111  *
112  * In the ufs filesystem the inodes, superblocks, and indirect blocks are
113  * read/written using the vnode for the filesystem. Blocks that represent
114  * the contents of a file are read/written using the vnode for the file
115  * (including directories when they are read/written as files). This
116  * presents problems for the dos filesystem because data that should be in
117  * an inode (if dos had them) resides in the directory itself.  Since we
118  * must update directory entries without the benefit of having the vnode
119  * for the directory we must use the vnode for the filesystem.  This means
120  * that when a directory is actually read/written (via read, write, or
121  * readdir, or seek) we must use the vnode for the filesystem instead of
122  * the vnode for the directory as would happen in ufs. This is to insure we
123  * retrieve the correct block from the buffer cache since the hash value is
124  * based upon the vnode address and the desired block number.
125  */
126 
127 /*
128  * Create a regular file. On entry the directory to contain the file being
129  * created is locked.  We must release before we return. We must also free
130  * the pathname buffer pointed at by cnp->cn_pnbuf, always on error, or
131  * only if the SAVESTART bit in cn_flags is clear on success.
132  */
133 static int
134 msdosfs_create(struct vop_create_args *ap)
135 {
136 	struct componentname *cnp = ap->a_cnp;
137 	struct denode ndirent;
138 	struct denode *dep;
139 	struct denode *pdep = VTODE(ap->a_dvp);
140 	struct timespec ts;
141 	int error;
142 
143 #ifdef MSDOSFS_DEBUG
144 	printf("msdosfs_create(cnp %p, vap %p\n", cnp, ap->a_vap);
145 #endif
146 
147 	/*
148 	 * If this is the root directory and there is no space left we
149 	 * can't do anything.  This is because the root directory can not
150 	 * change size.
151 	 */
152 	if (pdep->de_StartCluster == MSDOSFSROOT
153 	    && pdep->de_fndoffset >= pdep->de_FileSize) {
154 		error = ENOSPC;
155 		goto bad;
156 	}
157 
158 	/*
159 	 * Create a directory entry for the file, then call createde() to
160 	 * have it installed. NOTE: DOS files are always executable.  We
161 	 * use the absence of the owner write bit to make the file
162 	 * readonly.
163 	 */
164 #ifdef DIAGNOSTIC
165 	if ((cnp->cn_flags & HASBUF) == 0)
166 		panic("msdosfs_create: no name");
167 #endif
168 	memset(&ndirent, 0, sizeof(ndirent));
169 	error = uniqdosname(pdep, cnp, ndirent.de_Name);
170 	if (error)
171 		goto bad;
172 
173 	ndirent.de_Attributes = ATTR_ARCHIVE;
174 	ndirent.de_LowerCase = 0;
175 	ndirent.de_StartCluster = 0;
176 	ndirent.de_FileSize = 0;
177 	ndirent.de_pmp = pdep->de_pmp;
178 	ndirent.de_flag = DE_ACCESS | DE_CREATE | DE_UPDATE;
179 	getnanotime(&ts);
180 	DETIMES(&ndirent, &ts, &ts, &ts);
181 	error = createde(&ndirent, pdep, &dep, cnp);
182 	if (error)
183 		goto bad;
184 	*ap->a_vpp = DETOV(dep);
185 	if ((cnp->cn_flags & MAKEENTRY) != 0)
186 		cache_enter(ap->a_dvp, *ap->a_vpp, cnp);
187 	return (0);
188 
189 bad:
190 	return (error);
191 }
192 
193 static int
194 msdosfs_mknod(struct vop_mknod_args *ap)
195 {
196 
197     return (EINVAL);
198 }
199 
200 static int
201 msdosfs_open(struct vop_open_args *ap)
202 {
203 	struct denode *dep = VTODE(ap->a_vp);
204 	vnode_create_vobject(ap->a_vp, dep->de_FileSize, ap->a_td);
205 	return 0;
206 }
207 
208 static int
209 msdosfs_close(struct vop_close_args *ap)
210 {
211 	struct vnode *vp = ap->a_vp;
212 	struct denode *dep = VTODE(vp);
213 	struct timespec ts;
214 
215 	VI_LOCK(vp);
216 	if (vp->v_usecount > 1) {
217 		getnanotime(&ts);
218 		DETIMES(dep, &ts, &ts, &ts);
219 	}
220 	VI_UNLOCK(vp);
221 	return 0;
222 }
223 
224 static int
225 msdosfs_access(struct vop_access_args *ap)
226 {
227 	struct vnode *vp = ap->a_vp;
228 	struct denode *dep = VTODE(ap->a_vp);
229 	struct msdosfsmount *pmp = dep->de_pmp;
230 	mode_t file_mode;
231 	accmode_t accmode = ap->a_accmode;
232 
233 	file_mode = S_IRWXU|S_IRWXG|S_IRWXO;
234 	file_mode &= (vp->v_type == VDIR ? pmp->pm_dirmask : pmp->pm_mask);
235 
236 	/*
237 	 * Disallow writing to directories and regular files if the
238 	 * filesystem is read-only.
239 	 */
240 	if (accmode & VWRITE) {
241 		switch (vp->v_type) {
242 		case VREG:
243 		case VDIR:
244 			if (vp->v_mount->mnt_flag & MNT_RDONLY)
245 				return (EROFS);
246 			break;
247 		default:
248 			break;
249 		}
250 	}
251 
252 	return (vaccess(vp->v_type, file_mode, pmp->pm_uid, pmp->pm_gid,
253 	    ap->a_accmode, ap->a_cred, NULL));
254 }
255 
256 static int
257 msdosfs_getattr(struct vop_getattr_args *ap)
258 {
259 	struct denode *dep = VTODE(ap->a_vp);
260 	struct msdosfsmount *pmp = dep->de_pmp;
261 	struct vattr *vap = ap->a_vap;
262 	mode_t mode;
263 	struct timespec ts;
264 	u_long dirsperblk = pmp->pm_BytesPerSec / sizeof(struct direntry);
265 	uint64_t fileid;
266 
267 	getnanotime(&ts);
268 	DETIMES(dep, &ts, &ts, &ts);
269 	vap->va_fsid = dev2udev(pmp->pm_dev);
270 	/*
271 	 * The following computation of the fileid must be the same as that
272 	 * used in msdosfs_readdir() to compute d_fileno. If not, pwd
273 	 * doesn't work.
274 	 */
275 	if (dep->de_Attributes & ATTR_DIRECTORY) {
276 		fileid = (uint64_t)cntobn(pmp, dep->de_StartCluster) *
277 		    dirsperblk;
278 		if (dep->de_StartCluster == MSDOSFSROOT)
279 			fileid = 1;
280 	} else {
281 		fileid = (uint64_t)cntobn(pmp, dep->de_dirclust) *
282 		    dirsperblk;
283 		if (dep->de_dirclust == MSDOSFSROOT)
284 			fileid = (uint64_t)roottobn(pmp, 0) * dirsperblk;
285 		fileid += (uoff_t)dep->de_diroffset / sizeof(struct direntry);
286 	}
287 	vap->va_fileid = fileid;
288 
289 	mode = S_IRWXU|S_IRWXG|S_IRWXO;
290 	vap->va_mode = mode &
291 	    (ap->a_vp->v_type == VDIR ? pmp->pm_dirmask : pmp->pm_mask);
292 	vap->va_uid = pmp->pm_uid;
293 	vap->va_gid = pmp->pm_gid;
294 	vap->va_nlink = 1;
295 	vap->va_rdev = NODEV;
296 	vap->va_size = dep->de_FileSize;
297 	fattime2timespec(dep->de_MDate, dep->de_MTime, 0, 0, &vap->va_mtime);
298 	vap->va_ctime = vap->va_mtime;
299 	if (pmp->pm_flags & MSDOSFSMNT_LONGNAME) {
300 		fattime2timespec(dep->de_ADate, 0, 0, 0, &vap->va_atime);
301 		fattime2timespec(dep->de_CDate, dep->de_CTime, dep->de_CHun,
302 		    0, &vap->va_birthtime);
303 	} else {
304 		vap->va_atime = vap->va_mtime;
305 		vap->va_birthtime.tv_sec = -1;
306 		vap->va_birthtime.tv_nsec = 0;
307 	}
308 	vap->va_flags = 0;
309 	if (dep->de_Attributes & ATTR_ARCHIVE)
310 		vap->va_flags |= UF_ARCHIVE;
311 	if (dep->de_Attributes & ATTR_HIDDEN)
312 		vap->va_flags |= UF_HIDDEN;
313 	if (dep->de_Attributes & ATTR_READONLY)
314 		vap->va_flags |= UF_READONLY;
315 	if (dep->de_Attributes & ATTR_SYSTEM)
316 		vap->va_flags |= UF_SYSTEM;
317 	vap->va_gen = 0;
318 	vap->va_blocksize = pmp->pm_bpcluster;
319 	vap->va_bytes =
320 	    (dep->de_FileSize + pmp->pm_crbomask) & ~pmp->pm_crbomask;
321 	vap->va_type = ap->a_vp->v_type;
322 	vap->va_filerev = dep->de_modrev;
323 	return (0);
324 }
325 
326 static int
327 msdosfs_setattr(struct vop_setattr_args *ap)
328 {
329 	struct vnode *vp = ap->a_vp;
330 	struct denode *dep = VTODE(ap->a_vp);
331 	struct msdosfsmount *pmp = dep->de_pmp;
332 	struct vattr *vap = ap->a_vap;
333 	struct ucred *cred = ap->a_cred;
334 	struct thread *td = curthread;
335 	int error = 0;
336 
337 #ifdef MSDOSFS_DEBUG
338 	printf("msdosfs_setattr(): vp %p, vap %p, cred %p\n",
339 	    ap->a_vp, vap, cred);
340 #endif
341 
342 	/*
343 	 * Check for unsettable attributes.
344 	 */
345 	if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
346 	    (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
347 	    (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
348 	    (vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
349 #ifdef MSDOSFS_DEBUG
350 		printf("msdosfs_setattr(): returning EINVAL\n");
351 		printf("    va_type %d, va_nlink %llx, va_fsid %llx, va_fileid %llx\n",
352 		    vap->va_type, (unsigned long long)vap->va_nlink,
353 		    (unsigned long long)vap->va_fsid,
354 		    (unsigned long long)vap->va_fileid);
355 		printf("    va_blocksize %lx, va_rdev %llx, va_bytes %llx, va_gen %lx\n",
356 		    vap->va_blocksize, (unsigned long long)vap->va_rdev,
357 		    (unsigned long long)vap->va_bytes, vap->va_gen);
358 		printf("    va_uid %x, va_gid %x\n",
359 		    vap->va_uid, vap->va_gid);
360 #endif
361 		return (EINVAL);
362 	}
363 
364 	/*
365 	 * We don't allow setting attributes on the root directory.
366 	 * The special case for the root directory is because before
367 	 * FAT32, the root directory didn't have an entry for itself
368 	 * (and was otherwise special).  With FAT32, the root
369 	 * directory is not so special, but still doesn't have an
370 	 * entry for itself.
371 	 */
372 	if (vp->v_vflag & VV_ROOT)
373 		return (EINVAL);
374 
375 	if (vap->va_flags != VNOVAL) {
376 		if (vp->v_mount->mnt_flag & MNT_RDONLY)
377 			return (EROFS);
378 		if (cred->cr_uid != pmp->pm_uid) {
379 			error = priv_check_cred(cred, PRIV_VFS_ADMIN, 0);
380 			if (error)
381 				return (error);
382 		}
383 		/*
384 		 * We are very inconsistent about handling unsupported
385 		 * attributes.  We ignored the access time and the
386 		 * read and execute bits.  We were strict for the other
387 		 * attributes.
388 		 */
389 		if (vap->va_flags & ~(UF_ARCHIVE | UF_HIDDEN | UF_READONLY |
390 		    UF_SYSTEM))
391 			return EOPNOTSUPP;
392 		if (vap->va_flags & UF_ARCHIVE)
393 			dep->de_Attributes |= ATTR_ARCHIVE;
394 		else
395 			dep->de_Attributes &= ~ATTR_ARCHIVE;
396 		if (vap->va_flags & UF_HIDDEN)
397 			dep->de_Attributes |= ATTR_HIDDEN;
398 		else
399 			dep->de_Attributes &= ~ATTR_HIDDEN;
400 		/* We don't allow changing the readonly bit on directories. */
401 		if (vp->v_type != VDIR) {
402 			if (vap->va_flags & UF_READONLY)
403 				dep->de_Attributes |= ATTR_READONLY;
404 			else
405 				dep->de_Attributes &= ~ATTR_READONLY;
406 		}
407 		if (vap->va_flags & UF_SYSTEM)
408 			dep->de_Attributes |= ATTR_SYSTEM;
409 		else
410 			dep->de_Attributes &= ~ATTR_SYSTEM;
411 		dep->de_flag |= DE_MODIFIED;
412 	}
413 
414 	if (vap->va_uid != (uid_t)VNOVAL || vap->va_gid != (gid_t)VNOVAL) {
415 		uid_t uid;
416 		gid_t gid;
417 
418 		if (vp->v_mount->mnt_flag & MNT_RDONLY)
419 			return (EROFS);
420 		uid = vap->va_uid;
421 		if (uid == (uid_t)VNOVAL)
422 			uid = pmp->pm_uid;
423 		gid = vap->va_gid;
424 		if (gid == (gid_t)VNOVAL)
425 			gid = pmp->pm_gid;
426 		if (cred->cr_uid != pmp->pm_uid || uid != pmp->pm_uid ||
427 		    (gid != pmp->pm_gid && !groupmember(gid, cred))) {
428 			error = priv_check_cred(cred, PRIV_VFS_CHOWN, 0);
429 			if (error)
430 				return (error);
431 		}
432 		if (uid != pmp->pm_uid || gid != pmp->pm_gid)
433 			return EINVAL;
434 	}
435 
436 	if (vap->va_size != VNOVAL) {
437 		switch (vp->v_type) {
438 		case VDIR:
439 			return (EISDIR);
440 		case VREG:
441 			/*
442 			 * Truncation is only supported for regular files,
443 			 * Disallow it if the filesystem is read-only.
444 			 */
445 			if (vp->v_mount->mnt_flag & MNT_RDONLY)
446 				return (EROFS);
447 			break;
448 		default:
449 			/*
450 			 * According to POSIX, the result is unspecified
451 			 * for file types other than regular files,
452 			 * directories and shared memory objects.  We
453 			 * don't support any file types except regular
454 			 * files and directories in this file system, so
455 			 * this (default) case is unreachable and can do
456 			 * anything.  Keep falling through to detrunc()
457 			 * for now.
458 			 */
459 			break;
460 		}
461 		error = detrunc(dep, vap->va_size, 0, cred);
462 		if (error)
463 			return error;
464 	}
465 	if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
466 		if (vp->v_mount->mnt_flag & MNT_RDONLY)
467 			return (EROFS);
468 		error = vn_utimes_perm(vp, vap, cred, td);
469 		if (error != 0)
470 			return (error);
471 		if ((pmp->pm_flags & MSDOSFSMNT_NOWIN95) == 0 &&
472 		    vap->va_atime.tv_sec != VNOVAL) {
473 			dep->de_flag &= ~DE_ACCESS;
474 			timespec2fattime(&vap->va_atime, 0,
475 			    &dep->de_ADate, NULL, NULL);
476 		}
477 		if (vap->va_mtime.tv_sec != VNOVAL) {
478 			dep->de_flag &= ~DE_UPDATE;
479 			timespec2fattime(&vap->va_mtime, 0,
480 			    &dep->de_MDate, &dep->de_MTime, NULL);
481 		}
482 		/*
483 		 * We don't set the archive bit when modifying the time of
484 		 * a directory to emulate the Windows/DOS behavior.
485 		 */
486 		if (vp->v_type != VDIR)
487 			dep->de_Attributes |= ATTR_ARCHIVE;
488 		dep->de_flag |= DE_MODIFIED;
489 	}
490 	/*
491 	 * DOS files only have the ability to have their writability
492 	 * attribute set, so we use the owner write bit to set the readonly
493 	 * attribute.
494 	 */
495 	if (vap->va_mode != (mode_t)VNOVAL) {
496 		if (vp->v_mount->mnt_flag & MNT_RDONLY)
497 			return (EROFS);
498 		if (cred->cr_uid != pmp->pm_uid) {
499 			error = priv_check_cred(cred, PRIV_VFS_ADMIN, 0);
500 			if (error)
501 				return (error);
502 		}
503 		if (vp->v_type != VDIR) {
504 			/* We ignore the read and execute bits. */
505 			if (vap->va_mode & VWRITE)
506 				dep->de_Attributes &= ~ATTR_READONLY;
507 			else
508 				dep->de_Attributes |= ATTR_READONLY;
509 			dep->de_Attributes |= ATTR_ARCHIVE;
510 			dep->de_flag |= DE_MODIFIED;
511 		}
512 	}
513 	return (deupdat(dep, 0));
514 }
515 
516 static int
517 msdosfs_read(struct vop_read_args *ap)
518 {
519 	int error = 0;
520 	int blsize;
521 	int isadir;
522 	ssize_t orig_resid;
523 	u_int n;
524 	u_long diff;
525 	u_long on;
526 	daddr_t lbn;
527 	daddr_t rablock;
528 	int rasize;
529 	int seqcount;
530 	struct buf *bp;
531 	struct vnode *vp = ap->a_vp;
532 	struct denode *dep = VTODE(vp);
533 	struct msdosfsmount *pmp = dep->de_pmp;
534 	struct uio *uio = ap->a_uio;
535 
536 	/*
537 	 * If they didn't ask for any data, then we are done.
538 	 */
539 	orig_resid = uio->uio_resid;
540 	if (orig_resid == 0)
541 		return (0);
542 
543 	/*
544 	 * The caller is supposed to ensure that
545 	 * uio->uio_offset >= 0 and uio->uio_resid >= 0.
546 	 * We don't need to check for large offsets as in ffs because
547 	 * dep->de_FileSize <= DOS_FILESIZE_MAX < OFF_MAX, so large
548 	 * offsets cannot cause overflow even in theory.
549 	 */
550 
551 	seqcount = ap->a_ioflag >> IO_SEQSHIFT;
552 
553 	isadir = dep->de_Attributes & ATTR_DIRECTORY;
554 	do {
555 		if (uio->uio_offset >= dep->de_FileSize)
556 			break;
557 		lbn = de_cluster(pmp, uio->uio_offset);
558 		rablock = lbn + 1;
559 		blsize = pmp->pm_bpcluster;
560 		on = uio->uio_offset & pmp->pm_crbomask;
561 		/*
562 		 * If we are operating on a directory file then be sure to
563 		 * do i/o with the vnode for the filesystem instead of the
564 		 * vnode for the directory.
565 		 */
566 		if (isadir) {
567 			/* convert cluster # to block # */
568 			error = pcbmap(dep, lbn, &lbn, 0, &blsize);
569 			if (error == E2BIG) {
570 				error = EINVAL;
571 				break;
572 			} else if (error)
573 				break;
574 			error = bread(pmp->pm_devvp, lbn, blsize, NOCRED, &bp);
575 		} else if (de_cn2off(pmp, rablock) >= dep->de_FileSize) {
576 			error = bread(vp, lbn, blsize, NOCRED, &bp);
577 		} else if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) {
578 			error = cluster_read(vp, dep->de_FileSize, lbn, blsize,
579 			    NOCRED, on + uio->uio_resid, seqcount, 0, &bp);
580 		} else if (seqcount > 1) {
581 			rasize = blsize;
582 			error = breadn(vp, lbn,
583 			    blsize, &rablock, &rasize, 1, NOCRED, &bp);
584 		} else {
585 			error = bread(vp, lbn, blsize, NOCRED, &bp);
586 		}
587 		if (error) {
588 			brelse(bp);
589 			break;
590 		}
591 		diff = pmp->pm_bpcluster - on;
592 		n = diff > uio->uio_resid ? uio->uio_resid : diff;
593 		diff = dep->de_FileSize - uio->uio_offset;
594 		if (diff < n)
595 			n = diff;
596 		diff = blsize - bp->b_resid;
597 		if (diff < n)
598 			n = diff;
599 		error = vn_io_fault_uiomove(bp->b_data + on, (int) n, uio);
600 		brelse(bp);
601 	} while (error == 0 && uio->uio_resid > 0 && n != 0);
602 	if (!isadir && (error == 0 || uio->uio_resid != orig_resid) &&
603 	    (vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0)
604 		dep->de_flag |= DE_ACCESS;
605 	return (error);
606 }
607 
608 /*
609  * Write data to a file or directory.
610  */
611 static int
612 msdosfs_write(struct vop_write_args *ap)
613 {
614 	int n;
615 	int croffset;
616 	ssize_t resid;
617 	u_long osize;
618 	int error = 0;
619 	u_long count;
620 	int seqcount;
621 	daddr_t bn, lastcn;
622 	struct buf *bp;
623 	int ioflag = ap->a_ioflag;
624 	struct uio *uio = ap->a_uio;
625 	struct vnode *vp = ap->a_vp;
626 	struct vnode *thisvp;
627 	struct denode *dep = VTODE(vp);
628 	struct msdosfsmount *pmp = dep->de_pmp;
629 	struct ucred *cred = ap->a_cred;
630 
631 #ifdef MSDOSFS_DEBUG
632 	printf("msdosfs_write(vp %p, uio %p, ioflag %x, cred %p\n",
633 	    vp, uio, ioflag, cred);
634 	printf("msdosfs_write(): diroff %lu, dirclust %lu, startcluster %lu\n",
635 	    dep->de_diroffset, dep->de_dirclust, dep->de_StartCluster);
636 #endif
637 
638 	switch (vp->v_type) {
639 	case VREG:
640 		if (ioflag & IO_APPEND)
641 			uio->uio_offset = dep->de_FileSize;
642 		thisvp = vp;
643 		break;
644 	case VDIR:
645 		return EISDIR;
646 	default:
647 		panic("msdosfs_write(): bad file type");
648 	}
649 
650 	/*
651 	 * This is needed (unlike in ffs_write()) because we extend the
652 	 * file outside of the loop but we don't want to extend the file
653 	 * for writes of 0 bytes.
654 	 */
655 	if (uio->uio_resid == 0)
656 		return (0);
657 
658 	/*
659 	 * The caller is supposed to ensure that
660 	 * uio->uio_offset >= 0 and uio->uio_resid >= 0.
661 	 */
662 	if ((uoff_t)uio->uio_offset + uio->uio_resid > DOS_FILESIZE_MAX)
663 		return (EFBIG);
664 
665 	/*
666 	 * If they've exceeded their filesize limit, tell them about it.
667 	 */
668 	if (vn_rlimit_fsize(vp, uio, uio->uio_td))
669 		return (EFBIG);
670 
671 	/*
672 	 * If the offset we are starting the write at is beyond the end of
673 	 * the file, then they've done a seek.  Unix filesystems allow
674 	 * files with holes in them, DOS doesn't so we must fill the hole
675 	 * with zeroed blocks.
676 	 */
677 	if (uio->uio_offset > dep->de_FileSize) {
678 		error = deextend(dep, uio->uio_offset, cred);
679 		if (error)
680 			return (error);
681 	}
682 
683 	/*
684 	 * Remember some values in case the write fails.
685 	 */
686 	resid = uio->uio_resid;
687 	osize = dep->de_FileSize;
688 
689 	/*
690 	 * If we write beyond the end of the file, extend it to its ultimate
691 	 * size ahead of the time to hopefully get a contiguous area.
692 	 */
693 	if (uio->uio_offset + resid > osize) {
694 		count = de_clcount(pmp, uio->uio_offset + resid) -
695 			de_clcount(pmp, osize);
696 		error = extendfile(dep, count, NULL, NULL, 0);
697 		if (error &&  (error != ENOSPC || (ioflag & IO_UNIT)))
698 			goto errexit;
699 		lastcn = dep->de_fc[FC_LASTFC].fc_frcn;
700 	} else
701 		lastcn = de_clcount(pmp, osize) - 1;
702 
703 	seqcount = ioflag >> IO_SEQSHIFT;
704 	do {
705 		if (de_cluster(pmp, uio->uio_offset) > lastcn) {
706 			error = ENOSPC;
707 			break;
708 		}
709 
710 		croffset = uio->uio_offset & pmp->pm_crbomask;
711 		n = min(uio->uio_resid, pmp->pm_bpcluster - croffset);
712 		if (uio->uio_offset + n > dep->de_FileSize) {
713 			dep->de_FileSize = uio->uio_offset + n;
714 			/* The object size needs to be set before buffer is allocated */
715 			vnode_pager_setsize(vp, dep->de_FileSize);
716 		}
717 
718 		bn = de_cluster(pmp, uio->uio_offset);
719 		if ((uio->uio_offset & pmp->pm_crbomask) == 0
720 		    && (de_cluster(pmp, uio->uio_offset + uio->uio_resid)
721 			> de_cluster(pmp, uio->uio_offset)
722 			|| uio->uio_offset + uio->uio_resid >= dep->de_FileSize)) {
723 			/*
724 			 * If either the whole cluster gets written,
725 			 * or we write the cluster from its start beyond EOF,
726 			 * then no need to read data from disk.
727 			 */
728 			bp = getblk(thisvp, bn, pmp->pm_bpcluster, 0, 0, 0);
729 			/*
730 			 * This call to vfs_bio_clrbuf() ensures that
731 			 * even if vn_io_fault_uiomove() below faults,
732 			 * garbage from the newly instantiated buffer
733 			 * is not exposed to the userspace via mmap().
734 			 */
735 			vfs_bio_clrbuf(bp);
736 			/*
737 			 * Do the bmap now, since pcbmap needs buffers
738 			 * for the FAT table. (see msdosfs_strategy)
739 			 */
740 			if (bp->b_blkno == bp->b_lblkno) {
741 				error = pcbmap(dep, bp->b_lblkno, &bn, 0, 0);
742 				if (error)
743 					bp->b_blkno = -1;
744 				else
745 					bp->b_blkno = bn;
746 			}
747 			if (bp->b_blkno == -1) {
748 				brelse(bp);
749 				if (!error)
750 					error = EIO;		/* XXX */
751 				break;
752 			}
753 		} else {
754 			/*
755 			 * The block we need to write into exists, so read it in.
756 			 */
757 			error = bread(thisvp, bn, pmp->pm_bpcluster, cred, &bp);
758 			if (error) {
759 				brelse(bp);
760 				break;
761 			}
762 		}
763 
764 		/*
765 		 * Should these vnode_pager_* functions be done on dir
766 		 * files?
767 		 */
768 
769 		/*
770 		 * Copy the data from user space into the buf header.
771 		 */
772 		error = vn_io_fault_uiomove(bp->b_data + croffset, n, uio);
773 		if (error) {
774 			brelse(bp);
775 			break;
776 		}
777 
778 		/* Prepare for clustered writes in some else clauses. */
779 		if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERW) == 0)
780 			bp->b_flags |= B_CLUSTEROK;
781 
782 		/*
783 		 * If IO_SYNC, then each buffer is written synchronously.
784 		 * Otherwise, if we have a severe page deficiency then
785 		 * write the buffer asynchronously.  Otherwise, if on a
786 		 * cluster boundary then write the buffer asynchronously,
787 		 * combining it with contiguous clusters if permitted and
788 		 * possible, since we don't expect more writes into this
789 		 * buffer soon.  Otherwise, do a delayed write because we
790 		 * expect more writes into this buffer soon.
791 		 */
792 		if (ioflag & IO_SYNC)
793 			(void)bwrite(bp);
794 		else if (vm_page_count_severe() || buf_dirty_count_severe())
795 			bawrite(bp);
796 		else if (n + croffset == pmp->pm_bpcluster) {
797 			if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERW) == 0)
798 				cluster_write(vp, bp, dep->de_FileSize,
799 				    seqcount, 0);
800 			else
801 				bawrite(bp);
802 		} else
803 			bdwrite(bp);
804 		dep->de_flag |= DE_UPDATE;
805 	} while (error == 0 && uio->uio_resid > 0);
806 
807 	/*
808 	 * If the write failed and they want us to, truncate the file back
809 	 * to the size it was before the write was attempted.
810 	 */
811 errexit:
812 	if (error) {
813 		if (ioflag & IO_UNIT) {
814 			detrunc(dep, osize, ioflag & IO_SYNC, NOCRED);
815 			uio->uio_offset -= resid - uio->uio_resid;
816 			uio->uio_resid = resid;
817 		} else {
818 			detrunc(dep, dep->de_FileSize, ioflag & IO_SYNC, NOCRED);
819 			if (uio->uio_resid != resid)
820 				error = 0;
821 		}
822 	} else if (ioflag & IO_SYNC)
823 		error = deupdat(dep, 1);
824 	return (error);
825 }
826 
827 /*
828  * Flush the blocks of a file to disk.
829  */
830 static int
831 msdosfs_fsync(struct vop_fsync_args *ap)
832 {
833 	struct vnode *devvp;
834 	int allerror, error;
835 
836 	vop_stdfsync(ap);
837 
838 	/*
839 	* If the syncing request comes from fsync(2), sync the entire
840 	* FAT and any other metadata that happens to be on devvp.  We
841 	* need this mainly for the FAT.  We write the FAT sloppily, and
842 	* syncing it all now is the best we can easily do to get all
843 	* directory entries associated with the file (not just the file)
844 	* fully synced.  The other metadata includes critical metadata
845 	* for all directory entries, but only in the MNT_ASYNC case.  We
846 	* will soon sync all metadata in the file's directory entry.
847 	* Non-critical metadata for associated directory entries only
848 	* gets synced accidentally, as in most file systems.
849 	*/
850 	if (ap->a_waitfor == MNT_WAIT) {
851 		devvp = VTODE(ap->a_vp)->de_pmp->pm_devvp;
852 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
853 		allerror = VOP_FSYNC(devvp, MNT_WAIT, ap->a_td);
854 		VOP_UNLOCK(devvp, 0);
855 	} else
856 		allerror = 0;
857 
858 	error = deupdat(VTODE(ap->a_vp), ap->a_waitfor == MNT_WAIT);
859 	if (allerror == 0)
860 		allerror = error;
861 	return (allerror);
862 }
863 
864 static int
865 msdosfs_remove(struct vop_remove_args *ap)
866 {
867 	struct denode *dep = VTODE(ap->a_vp);
868 	struct denode *ddep = VTODE(ap->a_dvp);
869 	int error;
870 
871 	if (ap->a_vp->v_type == VDIR)
872 		error = EPERM;
873 	else
874 		error = removede(ddep, dep);
875 #ifdef MSDOSFS_DEBUG
876 	printf("msdosfs_remove(), dep %p, v_usecount %d\n", dep, ap->a_vp->v_usecount);
877 #endif
878 	return (error);
879 }
880 
881 /*
882  * DOS filesystems don't know what links are.
883  */
884 static int
885 msdosfs_link(struct vop_link_args *ap)
886 {
887 	return (EOPNOTSUPP);
888 }
889 
890 /*
891  * Renames on files require moving the denode to a new hash queue since the
892  * denode's location is used to compute which hash queue to put the file
893  * in. Unless it is a rename in place.  For example "mv a b".
894  *
895  * What follows is the basic algorithm:
896  *
897  * if (file move) {
898  *	if (dest file exists) {
899  *		remove dest file
900  *	}
901  *	if (dest and src in same directory) {
902  *		rewrite name in existing directory slot
903  *	} else {
904  *		write new entry in dest directory
905  *		update offset and dirclust in denode
906  *		move denode to new hash chain
907  *		clear old directory entry
908  *	}
909  * } else {
910  *	directory move
911  *	if (dest directory exists) {
912  *		if (dest is not empty) {
913  *			return ENOTEMPTY
914  *		}
915  *		remove dest directory
916  *	}
917  *	if (dest and src in same directory) {
918  *		rewrite name in existing entry
919  *	} else {
920  *		be sure dest is not a child of src directory
921  *		write entry in dest directory
922  *		update "." and ".." in moved directory
923  *		clear old directory entry for moved directory
924  *	}
925  * }
926  *
927  * On entry:
928  *	source's parent directory is unlocked
929  *	source file or directory is unlocked
930  *	destination's parent directory is locked
931  *	destination file or directory is locked if it exists
932  *
933  * On exit:
934  *	all denodes should be released
935  */
936 static int
937 msdosfs_rename(struct vop_rename_args *ap)
938 {
939 	struct vnode *tdvp = ap->a_tdvp;
940 	struct vnode *fvp = ap->a_fvp;
941 	struct vnode *fdvp = ap->a_fdvp;
942 	struct vnode *tvp = ap->a_tvp;
943 	struct componentname *tcnp = ap->a_tcnp;
944 	struct componentname *fcnp = ap->a_fcnp;
945 	struct denode *ip, *xp, *dp, *zp;
946 	u_char toname[12], oldname[11];
947 	u_long from_diroffset, to_diroffset;
948 	u_char to_count;
949 	int doingdirectory = 0, newparent = 0;
950 	int error;
951 	u_long cn, pcl;
952 	daddr_t bn;
953 	struct msdosfsmount *pmp;
954 	struct direntry *dotdotp;
955 	struct buf *bp;
956 
957 	pmp = VFSTOMSDOSFS(fdvp->v_mount);
958 
959 #ifdef DIAGNOSTIC
960 	if ((tcnp->cn_flags & HASBUF) == 0 ||
961 	    (fcnp->cn_flags & HASBUF) == 0)
962 		panic("msdosfs_rename: no name");
963 #endif
964 	/*
965 	 * Check for cross-device rename.
966 	 */
967 	if (fvp->v_mount != tdvp->v_mount ||
968 	    (tvp && fvp->v_mount != tvp->v_mount)) {
969 		error = EXDEV;
970 abortit:
971 		if (tdvp == tvp)
972 			vrele(tdvp);
973 		else
974 			vput(tdvp);
975 		if (tvp)
976 			vput(tvp);
977 		vrele(fdvp);
978 		vrele(fvp);
979 		return (error);
980 	}
981 
982 	/*
983 	 * If source and dest are the same, do nothing.
984 	 */
985 	if (tvp == fvp) {
986 		error = 0;
987 		goto abortit;
988 	}
989 
990 	error = vn_lock(fvp, LK_EXCLUSIVE);
991 	if (error)
992 		goto abortit;
993 	dp = VTODE(fdvp);
994 	ip = VTODE(fvp);
995 
996 	/*
997 	 * Be sure we are not renaming ".", "..", or an alias of ".". This
998 	 * leads to a crippled directory tree.  It's pretty tough to do a
999 	 * "ls" or "pwd" with the "." directory entry missing, and "cd .."
1000 	 * doesn't work if the ".." entry is missing.
1001 	 */
1002 	if (ip->de_Attributes & ATTR_DIRECTORY) {
1003 		/*
1004 		 * Avoid ".", "..", and aliases of "." for obvious reasons.
1005 		 */
1006 		if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
1007 		    dp == ip ||
1008 		    (fcnp->cn_flags & ISDOTDOT) ||
1009 		    (tcnp->cn_flags & ISDOTDOT) ||
1010 		    (ip->de_flag & DE_RENAME)) {
1011 			VOP_UNLOCK(fvp, 0);
1012 			error = EINVAL;
1013 			goto abortit;
1014 		}
1015 		ip->de_flag |= DE_RENAME;
1016 		doingdirectory++;
1017 	}
1018 
1019 	/*
1020 	 * When the target exists, both the directory
1021 	 * and target vnodes are returned locked.
1022 	 */
1023 	dp = VTODE(tdvp);
1024 	xp = tvp ? VTODE(tvp) : NULL;
1025 	/*
1026 	 * Remember direntry place to use for destination
1027 	 */
1028 	to_diroffset = dp->de_fndoffset;
1029 	to_count = dp->de_fndcnt;
1030 
1031 	/*
1032 	 * If ".." must be changed (ie the directory gets a new
1033 	 * parent) then the source directory must not be in the
1034 	 * directory hierarchy above the target, as this would
1035 	 * orphan everything below the source directory. Also
1036 	 * the user must have write permission in the source so
1037 	 * as to be able to change "..". We must repeat the call
1038 	 * to namei, as the parent directory is unlocked by the
1039 	 * call to doscheckpath().
1040 	 */
1041 	error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_thread);
1042 	VOP_UNLOCK(fvp, 0);
1043 	if (VTODE(fdvp)->de_StartCluster != VTODE(tdvp)->de_StartCluster)
1044 		newparent = 1;
1045 	if (doingdirectory && newparent) {
1046 		if (error)	/* write access check above */
1047 			goto bad;
1048 		if (xp != NULL)
1049 			vput(tvp);
1050 		/*
1051 		 * doscheckpath() vput()'s dp,
1052 		 * so we have to do a relookup afterwards
1053 		 */
1054 		error = doscheckpath(ip, dp);
1055 		if (error)
1056 			goto out;
1057 		if ((tcnp->cn_flags & SAVESTART) == 0)
1058 			panic("msdosfs_rename: lost to startdir");
1059 		error = relookup(tdvp, &tvp, tcnp);
1060 		if (error)
1061 			goto out;
1062 		dp = VTODE(tdvp);
1063 		xp = tvp ? VTODE(tvp) : NULL;
1064 	}
1065 
1066 	if (xp != NULL) {
1067 		/*
1068 		 * Target must be empty if a directory and have no links
1069 		 * to it. Also, ensure source and target are compatible
1070 		 * (both directories, or both not directories).
1071 		 */
1072 		if (xp->de_Attributes & ATTR_DIRECTORY) {
1073 			if (!dosdirempty(xp)) {
1074 				error = ENOTEMPTY;
1075 				goto bad;
1076 			}
1077 			if (!doingdirectory) {
1078 				error = ENOTDIR;
1079 				goto bad;
1080 			}
1081 			cache_purge(tdvp);
1082 		} else if (doingdirectory) {
1083 			error = EISDIR;
1084 			goto bad;
1085 		}
1086 		error = removede(dp, xp);
1087 		if (error)
1088 			goto bad;
1089 		vput(tvp);
1090 		xp = NULL;
1091 	}
1092 
1093 	/*
1094 	 * Convert the filename in tcnp into a dos filename. We copy this
1095 	 * into the denode and directory entry for the destination
1096 	 * file/directory.
1097 	 */
1098 	error = uniqdosname(VTODE(tdvp), tcnp, toname);
1099 	if (error)
1100 		goto abortit;
1101 
1102 	/*
1103 	 * Since from wasn't locked at various places above,
1104 	 * have to do a relookup here.
1105 	 */
1106 	fcnp->cn_flags &= ~MODMASK;
1107 	fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1108 	if ((fcnp->cn_flags & SAVESTART) == 0)
1109 		panic("msdosfs_rename: lost from startdir");
1110 	if (!newparent)
1111 		VOP_UNLOCK(tdvp, 0);
1112 	if (relookup(fdvp, &fvp, fcnp) == 0)
1113 		vrele(fdvp);
1114 	if (fvp == NULL) {
1115 		/*
1116 		 * From name has disappeared.
1117 		 */
1118 		if (doingdirectory)
1119 			panic("rename: lost dir entry");
1120 		if (newparent)
1121 			VOP_UNLOCK(tdvp, 0);
1122 		vrele(tdvp);
1123 		vrele(ap->a_fvp);
1124 		return 0;
1125 	}
1126 	xp = VTODE(fvp);
1127 	zp = VTODE(fdvp);
1128 	from_diroffset = zp->de_fndoffset;
1129 
1130 	/*
1131 	 * Ensure that the directory entry still exists and has not
1132 	 * changed till now. If the source is a file the entry may
1133 	 * have been unlinked or renamed. In either case there is
1134 	 * no further work to be done. If the source is a directory
1135 	 * then it cannot have been rmdir'ed or renamed; this is
1136 	 * prohibited by the DE_RENAME flag.
1137 	 */
1138 	if (xp != ip) {
1139 		if (doingdirectory)
1140 			panic("rename: lost dir entry");
1141 		VOP_UNLOCK(fvp, 0);
1142 		if (newparent)
1143 			VOP_UNLOCK(fdvp, 0);
1144 		vrele(ap->a_fvp);
1145 		xp = NULL;
1146 	} else {
1147 		vrele(fvp);
1148 		xp = NULL;
1149 
1150 		/*
1151 		 * First write a new entry in the destination
1152 		 * directory and mark the entry in the source directory
1153 		 * as deleted.  Then move the denode to the correct hash
1154 		 * chain for its new location in the filesystem.  And, if
1155 		 * we moved a directory, then update its .. entry to point
1156 		 * to the new parent directory.
1157 		 */
1158 		memcpy(oldname, ip->de_Name, 11);
1159 		memcpy(ip->de_Name, toname, 11);	/* update denode */
1160 		dp->de_fndoffset = to_diroffset;
1161 		dp->de_fndcnt = to_count;
1162 		error = createde(ip, dp, (struct denode **)0, tcnp);
1163 		if (error) {
1164 			memcpy(ip->de_Name, oldname, 11);
1165 			if (newparent)
1166 				VOP_UNLOCK(fdvp, 0);
1167 			VOP_UNLOCK(fvp, 0);
1168 			goto bad;
1169 		}
1170 		/*
1171 		 * If ip is for a directory, then its name should always
1172 		 * be "." since it is for the directory entry in the
1173 		 * directory itself (msdosfs_lookup() always translates
1174 		 * to the "." entry so as to get a unique denode, except
1175 		 * for the root directory there are different
1176 		 * complications).  However, we just corrupted its name
1177 		 * to pass the correct name to createde().  Undo this.
1178 		 */
1179 		if ((ip->de_Attributes & ATTR_DIRECTORY) != 0)
1180 			memcpy(ip->de_Name, oldname, 11);
1181 		ip->de_refcnt++;
1182 		zp->de_fndoffset = from_diroffset;
1183 		error = removede(zp, ip);
1184 		if (error) {
1185 			/* XXX should downgrade to ro here, fs is corrupt */
1186 			if (newparent)
1187 				VOP_UNLOCK(fdvp, 0);
1188 			VOP_UNLOCK(fvp, 0);
1189 			goto bad;
1190 		}
1191 		if (!doingdirectory) {
1192 			error = pcbmap(dp, de_cluster(pmp, to_diroffset), 0,
1193 				       &ip->de_dirclust, 0);
1194 			if (error) {
1195 				/* XXX should downgrade to ro here, fs is corrupt */
1196 				if (newparent)
1197 					VOP_UNLOCK(fdvp, 0);
1198 				VOP_UNLOCK(fvp, 0);
1199 				goto bad;
1200 			}
1201 			if (ip->de_dirclust == MSDOSFSROOT)
1202 				ip->de_diroffset = to_diroffset;
1203 			else
1204 				ip->de_diroffset = to_diroffset & pmp->pm_crbomask;
1205 		}
1206 		reinsert(ip);
1207 		if (newparent)
1208 			VOP_UNLOCK(fdvp, 0);
1209 	}
1210 
1211 	/*
1212 	 * If we moved a directory to a new parent directory, then we must
1213 	 * fixup the ".." entry in the moved directory.
1214 	 */
1215 	if (doingdirectory && newparent) {
1216 		cn = ip->de_StartCluster;
1217 		if (cn == MSDOSFSROOT) {
1218 			/* this should never happen */
1219 			panic("msdosfs_rename(): updating .. in root directory?");
1220 		} else
1221 			bn = cntobn(pmp, cn);
1222 		error = bread(pmp->pm_devvp, bn, pmp->pm_bpcluster,
1223 			      NOCRED, &bp);
1224 		if (error) {
1225 			/* XXX should downgrade to ro here, fs is corrupt */
1226 			brelse(bp);
1227 			VOP_UNLOCK(fvp, 0);
1228 			goto bad;
1229 		}
1230 		dotdotp = (struct direntry *)bp->b_data + 1;
1231 		pcl = dp->de_StartCluster;
1232 		if (FAT32(pmp) && pcl == pmp->pm_rootdirblk)
1233 			pcl = MSDOSFSROOT;
1234 		putushort(dotdotp->deStartCluster, pcl);
1235 		if (FAT32(pmp))
1236 			putushort(dotdotp->deHighClust, pcl >> 16);
1237 		if (DOINGASYNC(fvp))
1238 			bdwrite(bp);
1239 		else if ((error = bwrite(bp)) != 0) {
1240 			/* XXX should downgrade to ro here, fs is corrupt */
1241 			VOP_UNLOCK(fvp, 0);
1242 			goto bad;
1243 		}
1244 	}
1245 
1246 	/*
1247 	 * The msdosfs lookup is case insensitive. Several aliases may
1248 	 * be inserted for a single directory entry. As a consequnce,
1249 	 * name cache purge done by lookup for fvp when DELETE op for
1250 	 * namei is specified, might be not enough to expunge all
1251 	 * namecache entries that were installed for this direntry.
1252 	 */
1253 	cache_purge(fvp);
1254 	VOP_UNLOCK(fvp, 0);
1255 bad:
1256 	if (xp)
1257 		vput(tvp);
1258 	vput(tdvp);
1259 out:
1260 	ip->de_flag &= ~DE_RENAME;
1261 	vrele(fdvp);
1262 	vrele(fvp);
1263 	return (error);
1264 
1265 }
1266 
1267 static struct {
1268 	struct direntry dot;
1269 	struct direntry dotdot;
1270 } dosdirtemplate = {
1271 	{	".          ",				/* the . entry */
1272 		ATTR_DIRECTORY,				/* file attribute */
1273 		0,					/* reserved */
1274 		0, { 0, 0 }, { 0, 0 },			/* create time & date */
1275 		{ 0, 0 },				/* access date */
1276 		{ 0, 0 },				/* high bits of start cluster */
1277 		{ 210, 4 }, { 210, 4 },			/* modify time & date */
1278 		{ 0, 0 },				/* startcluster */
1279 		{ 0, 0, 0, 0 }				/* filesize */
1280 	},
1281 	{	"..         ",				/* the .. entry */
1282 		ATTR_DIRECTORY,				/* file attribute */
1283 		0,					/* reserved */
1284 		0, { 0, 0 }, { 0, 0 },			/* create time & date */
1285 		{ 0, 0 },				/* access date */
1286 		{ 0, 0 },				/* high bits of start cluster */
1287 		{ 210, 4 }, { 210, 4 },			/* modify time & date */
1288 		{ 0, 0 },				/* startcluster */
1289 		{ 0, 0, 0, 0 }				/* filesize */
1290 	}
1291 };
1292 
1293 static int
1294 msdosfs_mkdir(struct vop_mkdir_args *ap)
1295 {
1296 	struct componentname *cnp = ap->a_cnp;
1297 	struct denode *dep;
1298 	struct denode *pdep = VTODE(ap->a_dvp);
1299 	struct direntry *denp;
1300 	struct msdosfsmount *pmp = pdep->de_pmp;
1301 	struct buf *bp;
1302 	u_long newcluster, pcl;
1303 	int bn;
1304 	int error;
1305 	struct denode ndirent;
1306 	struct timespec ts;
1307 
1308 	/*
1309 	 * If this is the root directory and there is no space left we
1310 	 * can't do anything.  This is because the root directory can not
1311 	 * change size.
1312 	 */
1313 	if (pdep->de_StartCluster == MSDOSFSROOT
1314 	    && pdep->de_fndoffset >= pdep->de_FileSize) {
1315 		error = ENOSPC;
1316 		goto bad2;
1317 	}
1318 
1319 	/*
1320 	 * Allocate a cluster to hold the about to be created directory.
1321 	 */
1322 	error = clusteralloc(pmp, 0, 1, CLUST_EOFE, &newcluster, NULL);
1323 	if (error)
1324 		goto bad2;
1325 
1326 	memset(&ndirent, 0, sizeof(ndirent));
1327 	ndirent.de_pmp = pmp;
1328 	ndirent.de_flag = DE_ACCESS | DE_CREATE | DE_UPDATE;
1329 	getnanotime(&ts);
1330 	DETIMES(&ndirent, &ts, &ts, &ts);
1331 
1332 	/*
1333 	 * Now fill the cluster with the "." and ".." entries. And write
1334 	 * the cluster to disk.  This way it is there for the parent
1335 	 * directory to be pointing at if there were a crash.
1336 	 */
1337 	bn = cntobn(pmp, newcluster);
1338 	/* always succeeds */
1339 	bp = getblk(pmp->pm_devvp, bn, pmp->pm_bpcluster, 0, 0, 0);
1340 	memset(bp->b_data, 0, pmp->pm_bpcluster);
1341 	memcpy(bp->b_data, &dosdirtemplate, sizeof dosdirtemplate);
1342 	denp = (struct direntry *)bp->b_data;
1343 	putushort(denp[0].deStartCluster, newcluster);
1344 	putushort(denp[0].deCDate, ndirent.de_CDate);
1345 	putushort(denp[0].deCTime, ndirent.de_CTime);
1346 	denp[0].deCHundredth = ndirent.de_CHun;
1347 	putushort(denp[0].deADate, ndirent.de_ADate);
1348 	putushort(denp[0].deMDate, ndirent.de_MDate);
1349 	putushort(denp[0].deMTime, ndirent.de_MTime);
1350 	pcl = pdep->de_StartCluster;
1351 	/*
1352 	 * Although the root directory has a non-magic starting cluster
1353 	 * number for FAT32, chkdsk and fsck_msdosfs still require
1354 	 * references to it in dotdot entries to be magic.
1355 	 */
1356 	if (FAT32(pmp) && pcl == pmp->pm_rootdirblk)
1357 		pcl = MSDOSFSROOT;
1358 	putushort(denp[1].deStartCluster, pcl);
1359 	putushort(denp[1].deCDate, ndirent.de_CDate);
1360 	putushort(denp[1].deCTime, ndirent.de_CTime);
1361 	denp[1].deCHundredth = ndirent.de_CHun;
1362 	putushort(denp[1].deADate, ndirent.de_ADate);
1363 	putushort(denp[1].deMDate, ndirent.de_MDate);
1364 	putushort(denp[1].deMTime, ndirent.de_MTime);
1365 	if (FAT32(pmp)) {
1366 		putushort(denp[0].deHighClust, newcluster >> 16);
1367 		putushort(denp[1].deHighClust, pcl >> 16);
1368 	}
1369 
1370 	if (DOINGASYNC(ap->a_dvp))
1371 		bdwrite(bp);
1372 	else if ((error = bwrite(bp)) != 0)
1373 		goto bad;
1374 
1375 	/*
1376 	 * Now build up a directory entry pointing to the newly allocated
1377 	 * cluster.  This will be written to an empty slot in the parent
1378 	 * directory.
1379 	 */
1380 #ifdef DIAGNOSTIC
1381 	if ((cnp->cn_flags & HASBUF) == 0)
1382 		panic("msdosfs_mkdir: no name");
1383 #endif
1384 	error = uniqdosname(pdep, cnp, ndirent.de_Name);
1385 	if (error)
1386 		goto bad;
1387 
1388 	ndirent.de_Attributes = ATTR_DIRECTORY;
1389 	ndirent.de_LowerCase = 0;
1390 	ndirent.de_StartCluster = newcluster;
1391 	ndirent.de_FileSize = 0;
1392 	error = createde(&ndirent, pdep, &dep, cnp);
1393 	if (error)
1394 		goto bad;
1395 	*ap->a_vpp = DETOV(dep);
1396 	return (0);
1397 
1398 bad:
1399 	clusterfree(pmp, newcluster, NULL);
1400 bad2:
1401 	return (error);
1402 }
1403 
1404 static int
1405 msdosfs_rmdir(struct vop_rmdir_args *ap)
1406 {
1407 	struct vnode *vp = ap->a_vp;
1408 	struct vnode *dvp = ap->a_dvp;
1409 	struct componentname *cnp = ap->a_cnp;
1410 	struct denode *ip, *dp;
1411 	int error;
1412 
1413 	ip = VTODE(vp);
1414 	dp = VTODE(dvp);
1415 
1416 	/*
1417 	 * Verify the directory is empty (and valid).
1418 	 * (Rmdir ".." won't be valid since
1419 	 *  ".." will contain a reference to
1420 	 *  the current directory and thus be
1421 	 *  non-empty.)
1422 	 */
1423 	error = 0;
1424 	if (!dosdirempty(ip) || ip->de_flag & DE_RENAME) {
1425 		error = ENOTEMPTY;
1426 		goto out;
1427 	}
1428 	/*
1429 	 * Delete the entry from the directory.  For dos filesystems this
1430 	 * gets rid of the directory entry on disk, the in memory copy
1431 	 * still exists but the de_refcnt is <= 0.  This prevents it from
1432 	 * being found by deget().  When the vput() on dep is done we give
1433 	 * up access and eventually msdosfs_reclaim() will be called which
1434 	 * will remove it from the denode cache.
1435 	 */
1436 	error = removede(dp, ip);
1437 	if (error)
1438 		goto out;
1439 	/*
1440 	 * This is where we decrement the link count in the parent
1441 	 * directory.  Since dos filesystems don't do this we just purge
1442 	 * the name cache.
1443 	 */
1444 	cache_purge(dvp);
1445 	/*
1446 	 * Truncate the directory that is being deleted.
1447 	 */
1448 	error = detrunc(ip, (u_long)0, IO_SYNC, cnp->cn_cred);
1449 	cache_purge(vp);
1450 
1451 out:
1452 	return (error);
1453 }
1454 
1455 /*
1456  * DOS filesystems don't know what symlinks are.
1457  */
1458 static int
1459 msdosfs_symlink(struct vop_symlink_args *ap)
1460 {
1461 	return (EOPNOTSUPP);
1462 }
1463 
1464 static int
1465 msdosfs_readdir(struct vop_readdir_args *ap)
1466 {
1467 	struct mbnambuf nb;
1468 	int error = 0;
1469 	int diff;
1470 	long n;
1471 	int blsize;
1472 	long on;
1473 	u_long cn;
1474 	u_long dirsperblk;
1475 	long bias = 0;
1476 	daddr_t bn, lbn;
1477 	struct buf *bp;
1478 	struct denode *dep = VTODE(ap->a_vp);
1479 	struct msdosfsmount *pmp = dep->de_pmp;
1480 	struct direntry *dentp;
1481 	struct dirent dirbuf;
1482 	struct uio *uio = ap->a_uio;
1483 	u_long *cookies = NULL;
1484 	int ncookies = 0;
1485 	off_t offset, off;
1486 	int chksum = -1;
1487 
1488 #ifdef MSDOSFS_DEBUG
1489 	printf("msdosfs_readdir(): vp %p, uio %p, cred %p, eofflagp %p\n",
1490 	    ap->a_vp, uio, ap->a_cred, ap->a_eofflag);
1491 #endif
1492 
1493 	/*
1494 	 * msdosfs_readdir() won't operate properly on regular files since
1495 	 * it does i/o only with the filesystem vnode, and hence can
1496 	 * retrieve the wrong block from the buffer cache for a plain file.
1497 	 * So, fail attempts to readdir() on a plain file.
1498 	 */
1499 	if ((dep->de_Attributes & ATTR_DIRECTORY) == 0)
1500 		return (ENOTDIR);
1501 
1502 	/*
1503 	 * To be safe, initialize dirbuf
1504 	 */
1505 	memset(dirbuf.d_name, 0, sizeof(dirbuf.d_name));
1506 
1507 	/*
1508 	 * If the user buffer is smaller than the size of one dos directory
1509 	 * entry or the file offset is not a multiple of the size of a
1510 	 * directory entry, then we fail the read.
1511 	 */
1512 	off = offset = uio->uio_offset;
1513 	if (uio->uio_resid < sizeof(struct direntry) ||
1514 	    (offset & (sizeof(struct direntry) - 1)))
1515 		return (EINVAL);
1516 
1517 	if (ap->a_ncookies) {
1518 		ncookies = uio->uio_resid / 16;
1519 		cookies = malloc(ncookies * sizeof(u_long), M_TEMP,
1520 		       M_WAITOK);
1521 		*ap->a_cookies = cookies;
1522 		*ap->a_ncookies = ncookies;
1523 	}
1524 
1525 	dirsperblk = pmp->pm_BytesPerSec / sizeof(struct direntry);
1526 
1527 	/*
1528 	 * If they are reading from the root directory then, we simulate
1529 	 * the . and .. entries since these don't exist in the root
1530 	 * directory.  We also set the offset bias to make up for having to
1531 	 * simulate these entries. By this I mean that at file offset 64 we
1532 	 * read the first entry in the root directory that lives on disk.
1533 	 */
1534 	if (dep->de_StartCluster == MSDOSFSROOT
1535 	    || (FAT32(pmp) && dep->de_StartCluster == pmp->pm_rootdirblk)) {
1536 #if 0
1537 		printf("msdosfs_readdir(): going after . or .. in root dir, offset %d\n",
1538 		    offset);
1539 #endif
1540 		bias = 2 * sizeof(struct direntry);
1541 		if (offset < bias) {
1542 			for (n = (int)offset / sizeof(struct direntry);
1543 			     n < 2; n++) {
1544 				dirbuf.d_fileno = FAT32(pmp) ?
1545 				    (uint64_t)cntobn(pmp, pmp->pm_rootdirblk) *
1546 				    dirsperblk : 1;
1547 				dirbuf.d_type = DT_DIR;
1548 				switch (n) {
1549 				case 0:
1550 					dirbuf.d_namlen = 1;
1551 					strcpy(dirbuf.d_name, ".");
1552 					break;
1553 				case 1:
1554 					dirbuf.d_namlen = 2;
1555 					strcpy(dirbuf.d_name, "..");
1556 					break;
1557 				}
1558 				dirbuf.d_reclen = GENERIC_DIRSIZ(&dirbuf);
1559 				if (uio->uio_resid < dirbuf.d_reclen)
1560 					goto out;
1561 				error = uiomove(&dirbuf, dirbuf.d_reclen, uio);
1562 				if (error)
1563 					goto out;
1564 				offset += sizeof(struct direntry);
1565 				off = offset;
1566 				if (cookies) {
1567 					*cookies++ = offset;
1568 					if (--ncookies <= 0)
1569 						goto out;
1570 				}
1571 			}
1572 		}
1573 	}
1574 
1575 	mbnambuf_init(&nb);
1576 	off = offset;
1577 	while (uio->uio_resid > 0) {
1578 		lbn = de_cluster(pmp, offset - bias);
1579 		on = (offset - bias) & pmp->pm_crbomask;
1580 		n = min(pmp->pm_bpcluster - on, uio->uio_resid);
1581 		diff = dep->de_FileSize - (offset - bias);
1582 		if (diff <= 0)
1583 			break;
1584 		n = min(n, diff);
1585 		error = pcbmap(dep, lbn, &bn, &cn, &blsize);
1586 		if (error)
1587 			break;
1588 		error = bread(pmp->pm_devvp, bn, blsize, NOCRED, &bp);
1589 		if (error) {
1590 			brelse(bp);
1591 			return (error);
1592 		}
1593 		n = min(n, blsize - bp->b_resid);
1594 		if (n == 0) {
1595 			brelse(bp);
1596 			return (EIO);
1597 		}
1598 
1599 		/*
1600 		 * Convert from dos directory entries to fs-independent
1601 		 * directory entries.
1602 		 */
1603 		for (dentp = (struct direntry *)(bp->b_data + on);
1604 		     (char *)dentp < bp->b_data + on + n;
1605 		     dentp++, offset += sizeof(struct direntry)) {
1606 #if 0
1607 			printf("rd: dentp %08x prev %08x crnt %08x deName %02x attr %02x\n",
1608 			    dentp, prev, crnt, dentp->deName[0], dentp->deAttributes);
1609 #endif
1610 			/*
1611 			 * If this is an unused entry, we can stop.
1612 			 */
1613 			if (dentp->deName[0] == SLOT_EMPTY) {
1614 				brelse(bp);
1615 				goto out;
1616 			}
1617 			/*
1618 			 * Skip deleted entries.
1619 			 */
1620 			if (dentp->deName[0] == SLOT_DELETED) {
1621 				chksum = -1;
1622 				mbnambuf_init(&nb);
1623 				continue;
1624 			}
1625 
1626 			/*
1627 			 * Handle Win95 long directory entries
1628 			 */
1629 			if (dentp->deAttributes == ATTR_WIN95) {
1630 				if (pmp->pm_flags & MSDOSFSMNT_SHORTNAME)
1631 					continue;
1632 				chksum = win2unixfn(&nb,
1633 				    (struct winentry *)dentp, chksum, pmp);
1634 				continue;
1635 			}
1636 
1637 			/*
1638 			 * Skip volume labels
1639 			 */
1640 			if (dentp->deAttributes & ATTR_VOLUME) {
1641 				chksum = -1;
1642 				mbnambuf_init(&nb);
1643 				continue;
1644 			}
1645 			/*
1646 			 * This computation of d_fileno must match
1647 			 * the computation of va_fileid in
1648 			 * msdosfs_getattr.
1649 			 */
1650 			if (dentp->deAttributes & ATTR_DIRECTORY) {
1651 				cn = getushort(dentp->deStartCluster);
1652 				if (FAT32(pmp)) {
1653 					cn |= getushort(dentp->deHighClust) <<
1654 					    16;
1655 					if (cn == MSDOSFSROOT)
1656 						cn = pmp->pm_rootdirblk;
1657 				}
1658 				if (cn == MSDOSFSROOT && !FAT32(pmp))
1659 					dirbuf.d_fileno = 1;
1660 				else
1661 					dirbuf.d_fileno = cntobn(pmp, cn) *
1662 					    dirsperblk;
1663 				dirbuf.d_type = DT_DIR;
1664 			} else {
1665 				dirbuf.d_fileno = (uoff_t)offset /
1666 				    sizeof(struct direntry);
1667 				dirbuf.d_type = DT_REG;
1668 			}
1669 
1670 			if (chksum != winChksum(dentp->deName)) {
1671 				dirbuf.d_namlen = dos2unixfn(dentp->deName,
1672 				    (u_char *)dirbuf.d_name,
1673 				    dentp->deLowerCase |
1674 					((pmp->pm_flags & MSDOSFSMNT_SHORTNAME) ?
1675 					(LCASE_BASE | LCASE_EXT) : 0),
1676 				    pmp);
1677 				mbnambuf_init(&nb);
1678 			} else
1679 				mbnambuf_flush(&nb, &dirbuf);
1680 			chksum = -1;
1681 			dirbuf.d_reclen = GENERIC_DIRSIZ(&dirbuf);
1682 			if (uio->uio_resid < dirbuf.d_reclen) {
1683 				brelse(bp);
1684 				goto out;
1685 			}
1686 			error = uiomove(&dirbuf, dirbuf.d_reclen, uio);
1687 			if (error) {
1688 				brelse(bp);
1689 				goto out;
1690 			}
1691 			if (cookies) {
1692 				*cookies++ = offset + sizeof(struct direntry);
1693 				if (--ncookies <= 0) {
1694 					brelse(bp);
1695 					goto out;
1696 				}
1697 			}
1698 			off = offset + sizeof(struct direntry);
1699 		}
1700 		brelse(bp);
1701 	}
1702 out:
1703 	/* Subtract unused cookies */
1704 	if (ap->a_ncookies)
1705 		*ap->a_ncookies -= ncookies;
1706 
1707 	uio->uio_offset = off;
1708 
1709 	/*
1710 	 * Set the eofflag (NFS uses it)
1711 	 */
1712 	if (ap->a_eofflag) {
1713 		if (dep->de_FileSize - (offset - bias) <= 0)
1714 			*ap->a_eofflag = 1;
1715 		else
1716 			*ap->a_eofflag = 0;
1717 	}
1718 	return (error);
1719 }
1720 
1721 /*-
1722  * a_vp   - pointer to the file's vnode
1723  * a_bn   - logical block number within the file (cluster number for us)
1724  * a_bop  - where to return the bufobj of the special file containing the fs
1725  * a_bnp  - where to return the "physical" block number corresponding to a_bn
1726  *          (relative to the special file; units are blocks of size DEV_BSIZE)
1727  * a_runp - where to return the "run past" a_bn.  This is the count of logical
1728  *          blocks whose physical blocks (together with a_bn's physical block)
1729  *          are contiguous.
1730  * a_runb - where to return the "run before" a_bn.
1731  */
1732 static int
1733 msdosfs_bmap(struct vop_bmap_args *ap)
1734 {
1735 	struct denode *dep;
1736 	struct mount *mp;
1737 	struct msdosfsmount *pmp;
1738 	struct vnode *vp;
1739 	daddr_t runbn;
1740 	u_long cn;
1741 	int bnpercn, error, maxio, maxrun, run;
1742 
1743 	vp = ap->a_vp;
1744 	dep = VTODE(vp);
1745 	pmp = dep->de_pmp;
1746 	if (ap->a_bop != NULL)
1747 		*ap->a_bop = &pmp->pm_devvp->v_bufobj;
1748 	if (ap->a_bnp == NULL)
1749 		return (0);
1750 	if (ap->a_runp != NULL)
1751 		*ap->a_runp = 0;
1752 	if (ap->a_runb != NULL)
1753 		*ap->a_runb = 0;
1754 	cn = ap->a_bn;
1755 	if (cn != ap->a_bn)
1756 		return (EFBIG);
1757 	error = pcbmap(dep, cn, ap->a_bnp, NULL, NULL);
1758 	if (error != 0 || (ap->a_runp == NULL && ap->a_runb == NULL))
1759 		return (error);
1760 
1761 	mp = vp->v_mount;
1762 	maxio = mp->mnt_iosize_max / mp->mnt_stat.f_iosize;
1763 	bnpercn = de_cn2bn(pmp, 1);
1764 	if (ap->a_runp != NULL) {
1765 		maxrun = ulmin(maxio - 1, pmp->pm_maxcluster - cn);
1766 		for (run = 1; run <= maxrun; run++) {
1767 			if (pcbmap(dep, cn + run, &runbn, NULL, NULL) != 0 ||
1768 			    runbn != *ap->a_bnp + run * bnpercn)
1769 				break;
1770 		}
1771 		*ap->a_runp = run - 1;
1772 	}
1773 	if (ap->a_runb != NULL) {
1774 		maxrun = ulmin(maxio - 1, cn);
1775 		for (run = 1; run < maxrun; run++) {
1776 			if (pcbmap(dep, cn - run, &runbn, NULL, NULL) != 0 ||
1777 			    runbn != *ap->a_bnp - run * bnpercn)
1778 				break;
1779 		}
1780 		*ap->a_runb = run - 1;
1781 	}
1782 	return (0);
1783 }
1784 
1785 SYSCTL_NODE(_vfs, OID_AUTO, msdosfs, CTLFLAG_RW, 0, "msdos filesystem");
1786 static int use_buf_pager = 1;
1787 SYSCTL_INT(_vfs_msdosfs, OID_AUTO, use_buf_pager, CTLFLAG_RWTUN,
1788     &use_buf_pager, 0,
1789     "Use buffer pager instead of bmap");
1790 
1791 static daddr_t
1792 msdosfs_gbp_getblkno(struct vnode *vp, vm_ooffset_t off)
1793 {
1794 
1795 	return (de_cluster(VTODE(vp)->de_pmp, off));
1796 }
1797 
1798 static int
1799 msdosfs_gbp_getblksz(struct vnode *vp, daddr_t lbn)
1800 {
1801 
1802 	return (VTODE(vp)->de_pmp->pm_bpcluster);
1803 }
1804 
1805 static int
1806 msdosfs_getpages(struct vop_getpages_args *ap)
1807 {
1808 
1809 	if (use_buf_pager)
1810 		return (vfs_bio_getpages(ap->a_vp, ap->a_m, ap->a_count,
1811 		    ap->a_rbehind, ap->a_rahead, msdosfs_gbp_getblkno,
1812 		    msdosfs_gbp_getblksz));
1813 	return (vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
1814 	    ap->a_rbehind, ap->a_rahead, NULL, NULL));
1815 }
1816 
1817 static int
1818 msdosfs_strategy(struct vop_strategy_args *ap)
1819 {
1820 	struct buf *bp = ap->a_bp;
1821 	struct denode *dep = VTODE(ap->a_vp);
1822 	struct bufobj *bo;
1823 	int error = 0;
1824 	daddr_t blkno;
1825 
1826 	/*
1827 	 * If we don't already know the filesystem relative block number
1828 	 * then get it using pcbmap().  If pcbmap() returns the block
1829 	 * number as -1 then we've got a hole in the file.  DOS filesystems
1830 	 * don't allow files with holes, so we shouldn't ever see this.
1831 	 */
1832 	if (bp->b_blkno == bp->b_lblkno) {
1833 		error = pcbmap(dep, bp->b_lblkno, &blkno, 0, 0);
1834 		bp->b_blkno = blkno;
1835 		if (error) {
1836 			bp->b_error = error;
1837 			bp->b_ioflags |= BIO_ERROR;
1838 			bufdone(bp);
1839 			return (0);
1840 		}
1841 		if ((long)bp->b_blkno == -1)
1842 			vfs_bio_clrbuf(bp);
1843 	}
1844 	if (bp->b_blkno == -1) {
1845 		bufdone(bp);
1846 		return (0);
1847 	}
1848 	/*
1849 	 * Read/write the block from/to the disk that contains the desired
1850 	 * file block.
1851 	 */
1852 	bp->b_iooffset = dbtob(bp->b_blkno);
1853 	bo = dep->de_pmp->pm_bo;
1854 	BO_STRATEGY(bo, bp);
1855 	return (0);
1856 }
1857 
1858 static int
1859 msdosfs_print(struct vop_print_args *ap)
1860 {
1861 	struct denode *dep = VTODE(ap->a_vp);
1862 
1863 	printf("\tstartcluster %lu, dircluster %lu, diroffset %lu, ",
1864 	       dep->de_StartCluster, dep->de_dirclust, dep->de_diroffset);
1865 	printf("on dev %s\n", devtoname(dep->de_pmp->pm_dev));
1866 	return (0);
1867 }
1868 
1869 static int
1870 msdosfs_pathconf(struct vop_pathconf_args *ap)
1871 {
1872 	struct msdosfsmount *pmp = VTODE(ap->a_vp)->de_pmp;
1873 
1874 	switch (ap->a_name) {
1875 	case _PC_LINK_MAX:
1876 		*ap->a_retval = 1;
1877 		return (0);
1878 	case _PC_NAME_MAX:
1879 		*ap->a_retval = pmp->pm_flags & MSDOSFSMNT_LONGNAME ? WIN_MAXLEN : 12;
1880 		return (0);
1881 	case _PC_NO_TRUNC:
1882 		*ap->a_retval = 0;
1883 		return (0);
1884 	default:
1885 		return (vop_stdpathconf(ap));
1886 	}
1887 	/* NOTREACHED */
1888 }
1889 
1890 static int
1891 msdosfs_vptofh(struct vop_vptofh_args *ap)
1892 {
1893 	struct denode *dep;
1894 	struct defid *defhp;
1895 
1896 	dep = VTODE(ap->a_vp);
1897 	defhp = (struct defid *)ap->a_fhp;
1898 	defhp->defid_len = sizeof(struct defid);
1899 	defhp->defid_dirclust = dep->de_dirclust;
1900 	defhp->defid_dirofs = dep->de_diroffset;
1901 	/* defhp->defid_gen = dep->de_gen; */
1902 	return (0);
1903 }
1904 
1905 /* Global vfs data structures for msdosfs */
1906 struct vop_vector msdosfs_vnodeops = {
1907 	.vop_default =		&default_vnodeops,
1908 
1909 	.vop_access =		msdosfs_access,
1910 	.vop_bmap =		msdosfs_bmap,
1911 	.vop_getpages =		msdosfs_getpages,
1912 	.vop_cachedlookup =	msdosfs_lookup,
1913 	.vop_open =		msdosfs_open,
1914 	.vop_close =		msdosfs_close,
1915 	.vop_create =		msdosfs_create,
1916 	.vop_fsync =		msdosfs_fsync,
1917 	.vop_fdatasync =	vop_stdfdatasync_buf,
1918 	.vop_getattr =		msdosfs_getattr,
1919 	.vop_inactive =		msdosfs_inactive,
1920 	.vop_link =		msdosfs_link,
1921 	.vop_lookup =		vfs_cache_lookup,
1922 	.vop_mkdir =		msdosfs_mkdir,
1923 	.vop_mknod =		msdosfs_mknod,
1924 	.vop_pathconf =		msdosfs_pathconf,
1925 	.vop_print =		msdosfs_print,
1926 	.vop_read =		msdosfs_read,
1927 	.vop_readdir =		msdosfs_readdir,
1928 	.vop_reclaim =		msdosfs_reclaim,
1929 	.vop_remove =		msdosfs_remove,
1930 	.vop_rename =		msdosfs_rename,
1931 	.vop_rmdir =		msdosfs_rmdir,
1932 	.vop_setattr =		msdosfs_setattr,
1933 	.vop_strategy =		msdosfs_strategy,
1934 	.vop_symlink =		msdosfs_symlink,
1935 	.vop_write =		msdosfs_write,
1936 	.vop_vptofh =		msdosfs_vptofh,
1937 };
1938