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