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