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