]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/fs/msdosfs/msdosfs_vfsops.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / fs / msdosfs / msdosfs_vfsops.c
1 /* $FreeBSD$ */
2 /*      $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $   */
3
4 /*-
5  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6  * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7  * All rights reserved.
8  * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by TooLs GmbH.
21  * 4. The name of TooLs GmbH may not be used to endorse or promote products
22  *    derived from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
30  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 /*-
36  * Written by Paul Popelka (paulp@uts.amdahl.com)
37  *
38  * You can do anything you want with this software, just don't say you wrote
39  * it, and don't remove this notice.
40  *
41  * This software is provided "as is".
42  *
43  * The author supplies this software to be publicly redistributed on the
44  * understanding that the author is not responsible for the correct
45  * functioning of this software in any circumstances and is not liable for
46  * any damages caused by this software.
47  *
48  * October 1992
49  */
50
51 #include <sys/param.h>
52 #include <sys/systm.h>
53 #include <sys/buf.h>
54 #include <sys/conf.h>
55 #include <sys/iconv.h>
56 #include <sys/kernel.h>
57 #include <sys/lock.h>
58 #include <sys/malloc.h>
59 #include <sys/mount.h>
60 #include <sys/mutex.h>
61 #include <sys/namei.h>
62 #include <sys/priv.h>
63 #include <sys/proc.h>
64 #include <sys/stat.h>
65 #include <sys/vnode.h>
66
67 #include <geom/geom.h>
68 #include <geom/geom_vfs.h>
69
70 #include <fs/msdosfs/bootsect.h>
71 #include <fs/msdosfs/bpb.h>
72 #include <fs/msdosfs/direntry.h>
73 #include <fs/msdosfs/denode.h>
74 #include <fs/msdosfs/fat.h>
75 #include <fs/msdosfs/msdosfsmount.h>
76
77 /* List of mount options we support */
78 static const char *msdosfs_opts[] = {
79         "from",
80         "noatime", "export", "force", "sync",
81         "uid", "gid", "mask", "dirmask",
82         "shortname", "shortnames", "longname", "longnames", "nowin95", "win95",
83         "kiconv", "cs_win", "cs_dos", "cs_local", "large",
84         NULL
85 };
86
87 #if 1 /*def PC98*/
88 /*
89  * XXX - The boot signature formatted by NEC PC-98 DOS looks like a
90  *       garbage or a random value :-{
91  *       If you want to use that broken-signatured media, define the
92  *       following symbol even though PC/AT.
93  *       (ex. mount PC-98 DOS formatted FD on PC/AT)
94  */
95 #define MSDOSFS_NOCHECKSIG
96 #endif
97
98 MALLOC_DEFINE(M_MSDOSFSMNT, "msdosfs_mount", "MSDOSFS mount structure");
99 static MALLOC_DEFINE(M_MSDOSFSFAT, "msdosfs_fat", "MSDOSFS file allocation table");
100
101 struct iconv_functions *msdosfs_iconv;
102
103 static int      update_mp(struct mount *mp, struct thread *td);
104 static int      mountmsdosfs(struct vnode *devvp, struct mount *mp,
105                     struct thread *td);
106 static vfs_fhtovp_t     msdosfs_fhtovp;
107 static vfs_mount_t      msdosfs_mount;
108 static vfs_root_t       msdosfs_root;
109 static vfs_statfs_t     msdosfs_statfs;
110 static vfs_sync_t       msdosfs_sync;
111 static vfs_unmount_t    msdosfs_unmount;
112
113 /* Maximum length of a character set name (arbitrary). */
114 #define MAXCSLEN        64
115
116 static int
117 update_mp(struct mount *mp, struct thread *td)
118 {
119         struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
120         void *dos, *win, *local;
121         int error, v;
122
123         if (!vfs_getopt(mp->mnt_optnew, "kiconv", NULL, NULL)) {
124                 if (msdosfs_iconv != NULL) {
125                         error = vfs_getopt(mp->mnt_optnew,
126                             "cs_win", &win, NULL);
127                         if (!error)
128                                 error = vfs_getopt(mp->mnt_optnew,
129                                     "cs_local", &local, NULL);
130                         if (!error)
131                                 error = vfs_getopt(mp->mnt_optnew,
132                                     "cs_dos", &dos, NULL);
133                         if (!error) {
134                                 msdosfs_iconv->open(win, local, &pmp->pm_u2w);
135                                 msdosfs_iconv->open(local, win, &pmp->pm_w2u);
136                                 msdosfs_iconv->open(dos, local, &pmp->pm_u2d);
137                                 msdosfs_iconv->open(local, dos, &pmp->pm_d2u);
138                         }
139                         if (error != 0)
140                                 return (error);
141                 } else {
142                         pmp->pm_w2u = NULL;
143                         pmp->pm_u2w = NULL;
144                         pmp->pm_d2u = NULL;
145                         pmp->pm_u2d = NULL;
146                 }
147         }
148
149         if (1 == vfs_scanopt(mp->mnt_optnew, "gid", "%d", &v))
150                 pmp->pm_gid = v;
151         if (1 == vfs_scanopt(mp->mnt_optnew, "uid", "%d", &v))
152                 pmp->pm_uid = v;
153         if (1 == vfs_scanopt(mp->mnt_optnew, "mask", "%d", &v))
154                 pmp->pm_mask = v & ALLPERMS;
155         if (1 == vfs_scanopt(mp->mnt_optnew, "dirmask", "%d", &v))
156                 pmp->pm_dirmask = v & ALLPERMS;
157         vfs_flagopt(mp->mnt_optnew, "shortname",
158             &pmp->pm_flags, MSDOSFSMNT_SHORTNAME);
159         vfs_flagopt(mp->mnt_optnew, "shortnames",
160             &pmp->pm_flags, MSDOSFSMNT_SHORTNAME);
161         vfs_flagopt(mp->mnt_optnew, "longname",
162             &pmp->pm_flags, MSDOSFSMNT_LONGNAME);
163         vfs_flagopt(mp->mnt_optnew, "longnames",
164             &pmp->pm_flags, MSDOSFSMNT_LONGNAME);
165         vfs_flagopt(mp->mnt_optnew, "kiconv",
166             &pmp->pm_flags, MSDOSFSMNT_KICONV);
167
168         if (vfs_getopt(mp->mnt_optnew, "nowin95", NULL, NULL) == 0)
169                 pmp->pm_flags |= MSDOSFSMNT_NOWIN95;
170         else
171                 pmp->pm_flags &= ~MSDOSFSMNT_NOWIN95;
172
173         if (pmp->pm_flags & MSDOSFSMNT_NOWIN95)
174                 pmp->pm_flags |= MSDOSFSMNT_SHORTNAME;
175         else if (!(pmp->pm_flags &
176             (MSDOSFSMNT_SHORTNAME | MSDOSFSMNT_LONGNAME))) {
177                 struct vnode *rootvp;
178
179                 /*
180                  * Try to divine whether to support Win'95 long filenames
181                  */
182                 if (FAT32(pmp))
183                         pmp->pm_flags |= MSDOSFSMNT_LONGNAME;
184                 else {
185                         if ((error =
186                             msdosfs_root(mp, LK_EXCLUSIVE, &rootvp, td)) != 0)
187                                 return error;
188                         pmp->pm_flags |= findwin95(VTODE(rootvp)) ?
189                             MSDOSFSMNT_LONGNAME : MSDOSFSMNT_SHORTNAME;
190                         vput(rootvp);
191                 }
192         }
193         return 0;
194 }
195
196 static int
197 msdosfs_cmount(struct mntarg *ma, void *data, int flags, struct thread *td)
198 {
199         struct msdosfs_args args;
200         int error;
201
202         if (data == NULL)
203                 return (EINVAL);
204         error = copyin(data, &args, sizeof args);
205         if (error)
206                 return (error);
207
208         ma = mount_argsu(ma, "from", args.fspec, MAXPATHLEN);
209         ma = mount_arg(ma, "export", &args.export, sizeof args.export);
210         ma = mount_argf(ma, "uid", "%d", args.uid);
211         ma = mount_argf(ma, "gid", "%d", args.gid);
212         ma = mount_argf(ma, "mask", "%d", args.mask);
213         ma = mount_argf(ma, "dirmask", "%d", args.dirmask);
214
215         ma = mount_argb(ma, args.flags & MSDOSFSMNT_SHORTNAME, "noshortname");
216         ma = mount_argb(ma, args.flags & MSDOSFSMNT_LONGNAME, "nolongname");
217         ma = mount_argb(ma, !(args.flags & MSDOSFSMNT_NOWIN95), "nowin95");
218         ma = mount_argb(ma, args.flags & MSDOSFSMNT_KICONV, "nokiconv");
219
220         ma = mount_argsu(ma, "cs_win", args.cs_win, MAXCSLEN);
221         ma = mount_argsu(ma, "cs_dos", args.cs_dos, MAXCSLEN);
222         ma = mount_argsu(ma, "cs_local", args.cs_local, MAXCSLEN);
223
224         error = kernel_mount(ma, flags);
225
226         return (error);
227 }
228
229 /*
230  * mp - path - addr in user space of mount point (ie /usr or whatever)
231  * data - addr in user space of mount params including the name of the block
232  * special file to treat as a filesystem.
233  */
234 static int
235 msdosfs_mount(struct mount *mp, struct thread *td)
236 {
237         struct vnode *devvp;      /* vnode for blk device to mount */
238         /* msdosfs specific mount control block */
239         struct msdosfsmount *pmp = NULL;
240         struct nameidata ndp;
241         int error, flags;
242         mode_t accessmode;
243         char *from;
244
245         if (vfs_filteropt(mp->mnt_optnew, msdosfs_opts))
246                 return (EINVAL);
247
248         /*
249          * If updating, check whether changing from read-only to
250          * read/write; if there is no device name, that's all we do.
251          */
252         if (mp->mnt_flag & MNT_UPDATE) {
253                 int ro_to_rw = 0;
254
255                 pmp = VFSTOMSDOSFS(mp);
256                 if (vfs_flagopt(mp->mnt_optnew, "export", NULL, 0)) {
257                         /*
258                          * Forbid export requests if filesystem has
259                          * MSDOSFS_LARGEFS flag set.
260                          */
261                         if ((pmp->pm_flags & MSDOSFS_LARGEFS) != 0) {
262                                 vfs_mount_error(mp,
263                                     "MSDOSFS_LARGEFS flag set, cannot export");
264                                 return (EOPNOTSUPP);
265                         }
266                 }
267                 if (!(pmp->pm_flags & MSDOSFSMNT_RONLY) &&
268                     vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0)) {
269                         error = VFS_SYNC(mp, MNT_WAIT, td);
270                         if (error)
271                                 return (error);
272                         flags = WRITECLOSE;
273                         if (mp->mnt_flag & MNT_FORCE)
274                                 flags |= FORCECLOSE;
275                         error = vflush(mp, 0, flags, td);
276                         if (error)
277                                 return (error);
278                         DROP_GIANT();
279                         g_topology_lock();
280                         error = g_access(pmp->pm_cp, 0, -1, 0);
281                         g_topology_unlock();
282                         PICKUP_GIANT();
283                         if (error)
284                                 return (error);
285
286                         /* Now the volume is clean. Mark it. */
287                         error = markvoldirty(pmp, 0);
288                         if (error && (flags & FORCECLOSE) == 0)
289                                 return (error);
290                 } else if ((pmp->pm_flags & MSDOSFSMNT_RONLY) &&
291                     !vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0)) {
292                         /*
293                          * If upgrade to read-write by non-root, then verify
294                          * that user has necessary permissions on the device.
295                          */
296                         devvp = pmp->pm_devvp;
297                         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
298                         error = VOP_ACCESS(devvp, VREAD | VWRITE,
299                             td->td_ucred, td);
300                         if (error)
301                                 error = priv_check(td, PRIV_VFS_MOUNT_PERM);
302                         if (error) {
303                                 VOP_UNLOCK(devvp, 0, td);
304                                 return (error);
305                         }
306                         VOP_UNLOCK(devvp, 0, td);
307                         DROP_GIANT();
308                         g_topology_lock();
309                         error = g_access(pmp->pm_cp, 0, 1, 0);
310                         g_topology_unlock();
311                         PICKUP_GIANT();
312                         if (error)
313                                 return (error);
314
315                         ro_to_rw = 1;
316                 }
317                 vfs_flagopt(mp->mnt_optnew, "ro",
318                     &pmp->pm_flags, MSDOSFSMNT_RONLY);
319                 vfs_flagopt(mp->mnt_optnew, "ro",
320                     &mp->mnt_flag, MNT_RDONLY);
321
322                 if (ro_to_rw) {
323                         /* Now that the volume is modifiable, mark it dirty. */
324                         error = markvoldirty(pmp, 1);
325                         if (error)
326                                 return (error);
327                 }
328         }
329         /*
330          * Not an update, or updating the name: look up the name
331          * and verify that it refers to a sensible disk device.
332          */
333         if (vfs_getopt(mp->mnt_optnew, "from", (void **)&from, NULL))
334                 return (EINVAL);
335         NDINIT(&ndp, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, from, td);
336         error = namei(&ndp);
337         if (error)
338                 return (error);
339         devvp = ndp.ni_vp;
340         NDFREE(&ndp, NDF_ONLY_PNBUF);
341
342         if (!vn_isdisk(devvp, &error)) {
343                 vput(devvp);
344                 return (error);
345         }
346         /*
347          * If mount by non-root, then verify that user has necessary
348          * permissions on the device.
349          */
350         accessmode = VREAD;
351         if ((mp->mnt_flag & MNT_RDONLY) == 0)
352                 accessmode |= VWRITE;
353         error = VOP_ACCESS(devvp, accessmode, td->td_ucred, td);
354         if (error)
355                 error = priv_check(td, PRIV_VFS_MOUNT_PERM);
356         if (error) {
357                 vput(devvp);
358                 return (error);
359         }
360         if ((mp->mnt_flag & MNT_UPDATE) == 0) {
361                 error = mountmsdosfs(devvp, mp, td);
362 #ifdef MSDOSFS_DEBUG            /* only needed for the printf below */
363                 pmp = VFSTOMSDOSFS(mp);
364 #endif
365         } else {
366                 if (devvp != pmp->pm_devvp)
367                         error = EINVAL; /* XXX needs translation */
368                 else
369                         vput(devvp);
370         }
371         if (error) {
372                 vrele(devvp);
373                 return (error);
374         }
375
376         error = update_mp(mp, td);
377         if (error) {
378                 if ((mp->mnt_flag & MNT_UPDATE) == 0)
379                         msdosfs_unmount(mp, MNT_FORCE, td);
380                 return error;
381         }
382
383         vfs_mountedfrom(mp, from);
384 #ifdef MSDOSFS_DEBUG
385         printf("msdosfs_mount(): mp %p, pmp %p, inusemap %p\n", mp, pmp, pmp->pm_inusemap);
386 #endif
387         return (0);
388 }
389
390 static int
391 mountmsdosfs(struct vnode *devvp, struct mount *mp, struct thread *td)
392 {
393         struct msdosfsmount *pmp;
394         struct buf *bp;
395         struct cdev *dev = devvp->v_rdev;
396         union bootsector *bsp;
397         struct byte_bpb33 *b33;
398         struct byte_bpb50 *b50;
399         struct byte_bpb710 *b710;
400         u_int8_t SecPerClust;
401         u_long clusters;
402         int ronly, error;
403         struct g_consumer *cp;
404         struct bufobj *bo;
405
406         ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
407         /* XXX: use VOP_ACCESS to check FS perms */
408         DROP_GIANT();
409         g_topology_lock();
410         error = g_vfs_open(devvp, &cp, "msdosfs", ronly ? 0 : 1);
411         g_topology_unlock();
412         PICKUP_GIANT();
413         VOP_UNLOCK(devvp, 0, td);
414         if (error)
415                 return (error);
416
417         bo = &devvp->v_bufobj;
418         bp = NULL;              /* This and pmp both used in error_exit. */
419         pmp = NULL;
420
421         /*
422          * Read the boot sector of the filesystem, and then check the
423          * boot signature.  If not a dos boot sector then error out.
424          *
425          * NOTE: 8192 is a magic size that works for ffs.
426          */
427         error = bread(devvp, 0, 8192, NOCRED, &bp);
428         if (error)
429                 goto error_exit;
430         bp->b_flags |= B_AGE;
431         bsp = (union bootsector *)bp->b_data;
432         b33 = (struct byte_bpb33 *)bsp->bs33.bsBPB;
433         b50 = (struct byte_bpb50 *)bsp->bs50.bsBPB;
434         b710 = (struct byte_bpb710 *)bsp->bs710.bsBPB;
435
436 #ifndef MSDOSFS_NOCHECKSIG
437         if (bsp->bs50.bsBootSectSig0 != BOOTSIG0
438             || bsp->bs50.bsBootSectSig1 != BOOTSIG1) {
439                 error = EINVAL;
440                 goto error_exit;
441         }
442 #endif
443
444         pmp = malloc(sizeof *pmp, M_MSDOSFSMNT, M_WAITOK | M_ZERO);
445         pmp->pm_mountp = mp;
446         pmp->pm_cp = cp;
447         pmp->pm_bo = bo;
448
449         /*
450          * Initialize ownerships and permissions, since nothing else will
451          * initialize them iff we are mounting root.
452          */
453         pmp->pm_uid = UID_ROOT;
454         pmp->pm_gid = GID_WHEEL;
455         pmp->pm_mask = pmp->pm_dirmask = S_IXUSR | S_IXGRP | S_IXOTH |
456             S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR;
457
458         /*
459          * Experimental support for large MS-DOS filesystems.
460          * WARNING: This uses at least 32 bytes of kernel memory (which is not
461          * reclaimed until the FS is unmounted) for each file on disk to map
462          * between the 32-bit inode numbers used by VFS and the 64-bit
463          * pseudo-inode numbers used internally by msdosfs. This is only
464          * safe to use in certain controlled situations (e.g. read-only FS
465          * with less than 1 million files).
466          * Since the mappings do not persist across unmounts (or reboots), these
467          * filesystems are not suitable for exporting through NFS, or any other
468          * application that requires fixed inode numbers.
469          */
470         vfs_flagopt(mp->mnt_optnew, "large", &pmp->pm_flags, MSDOSFS_LARGEFS);
471
472         /*
473          * Compute several useful quantities from the bpb in the
474          * bootsector.  Copy in the dos 5 variant of the bpb then fix up
475          * the fields that are different between dos 5 and dos 3.3.
476          */
477         SecPerClust = b50->bpbSecPerClust;
478         pmp->pm_BytesPerSec = getushort(b50->bpbBytesPerSec);
479         if (pmp->pm_BytesPerSec < DEV_BSIZE) {
480                 error = EINVAL;
481                 goto error_exit;
482         }
483         pmp->pm_ResSectors = getushort(b50->bpbResSectors);
484         pmp->pm_FATs = b50->bpbFATs;
485         pmp->pm_RootDirEnts = getushort(b50->bpbRootDirEnts);
486         pmp->pm_Sectors = getushort(b50->bpbSectors);
487         pmp->pm_FATsecs = getushort(b50->bpbFATsecs);
488         pmp->pm_SecPerTrack = getushort(b50->bpbSecPerTrack);
489         pmp->pm_Heads = getushort(b50->bpbHeads);
490         pmp->pm_Media = b50->bpbMedia;
491
492         /* calculate the ratio of sector size to DEV_BSIZE */
493         pmp->pm_BlkPerSec = pmp->pm_BytesPerSec / DEV_BSIZE;
494
495         /*
496          * We don't check pm_Heads nor pm_SecPerTrack, because
497          * these may not be set for EFI file systems. We don't
498          * use these anyway, so we're unaffected if they are
499          * invalid.
500          */
501         if (!pmp->pm_BytesPerSec || !SecPerClust) {
502                 error = EINVAL;
503                 goto error_exit;
504         }
505
506         if (pmp->pm_Sectors == 0) {
507                 pmp->pm_HiddenSects = getulong(b50->bpbHiddenSecs);
508                 pmp->pm_HugeSectors = getulong(b50->bpbHugeSectors);
509         } else {
510                 pmp->pm_HiddenSects = getushort(b33->bpbHiddenSecs);
511                 pmp->pm_HugeSectors = pmp->pm_Sectors;
512         }
513         if (!(pmp->pm_flags & MSDOSFS_LARGEFS)) {
514                 if (pmp->pm_HugeSectors > 0xffffffff /
515                     (pmp->pm_BytesPerSec / sizeof(struct direntry)) + 1) {
516                         /*
517                          * We cannot deal currently with this size of disk
518                          * due to fileid limitations (see msdosfs_getattr and
519                          * msdosfs_readdir)
520                          */
521                         error = EINVAL;
522                         vfs_mount_error(mp,
523                             "Disk too big, try '-o large' mount option");
524                         goto error_exit;
525                 }
526         }
527
528         if (pmp->pm_RootDirEnts == 0) {
529                 if (pmp->pm_Sectors
530                     || pmp->pm_FATsecs
531                     || getushort(b710->bpbFSVers)) {
532                         error = EINVAL;
533                         printf("mountmsdosfs(): bad FAT32 filesystem\n");
534                         goto error_exit;
535                 }
536                 pmp->pm_fatmask = FAT32_MASK;
537                 pmp->pm_fatmult = 4;
538                 pmp->pm_fatdiv = 1;
539                 pmp->pm_FATsecs = getulong(b710->bpbBigFATsecs);
540                 if (getushort(b710->bpbExtFlags) & FATMIRROR)
541                         pmp->pm_curfat = getushort(b710->bpbExtFlags) & FATNUM;
542                 else
543                         pmp->pm_flags |= MSDOSFS_FATMIRROR;
544         } else
545                 pmp->pm_flags |= MSDOSFS_FATMIRROR;
546
547         /*
548          * Check a few values (could do some more):
549          * - logical sector size: power of 2, >= block size
550          * - sectors per cluster: power of 2, >= 1
551          * - number of sectors:   >= 1, <= size of partition
552          * - number of FAT sectors: >= 1
553          */
554         if ( (SecPerClust == 0)
555           || (SecPerClust & (SecPerClust - 1))
556           || (pmp->pm_BytesPerSec < DEV_BSIZE)
557           || (pmp->pm_BytesPerSec & (pmp->pm_BytesPerSec - 1))
558           || (pmp->pm_HugeSectors == 0)
559           || (pmp->pm_FATsecs == 0)
560         ) {
561                 error = EINVAL;
562                 goto error_exit;
563         }
564
565         pmp->pm_HugeSectors *= pmp->pm_BlkPerSec;
566         pmp->pm_HiddenSects *= pmp->pm_BlkPerSec;       /* XXX not used? */
567         pmp->pm_FATsecs     *= pmp->pm_BlkPerSec;
568         SecPerClust         *= pmp->pm_BlkPerSec;
569
570         pmp->pm_fatblk = pmp->pm_ResSectors * pmp->pm_BlkPerSec;
571
572         if (FAT32(pmp)) {
573                 pmp->pm_rootdirblk = getulong(b710->bpbRootClust);
574                 pmp->pm_firstcluster = pmp->pm_fatblk
575                         + (pmp->pm_FATs * pmp->pm_FATsecs);
576                 pmp->pm_fsinfo = getushort(b710->bpbFSInfo) * pmp->pm_BlkPerSec;
577         } else {
578                 pmp->pm_rootdirblk = pmp->pm_fatblk +
579                         (pmp->pm_FATs * pmp->pm_FATsecs);
580                 pmp->pm_rootdirsize = (pmp->pm_RootDirEnts * sizeof(struct direntry)
581                                        + DEV_BSIZE - 1)
582                         / DEV_BSIZE; /* in blocks */
583                 pmp->pm_firstcluster = pmp->pm_rootdirblk + pmp->pm_rootdirsize;
584         }
585
586         pmp->pm_maxcluster = (pmp->pm_HugeSectors - pmp->pm_firstcluster) /
587             SecPerClust + 1;
588         pmp->pm_fatsize = pmp->pm_FATsecs * DEV_BSIZE;  /* XXX not used? */
589
590         if (pmp->pm_fatmask == 0) {
591                 if (pmp->pm_maxcluster
592                     <= ((CLUST_RSRVD - CLUST_FIRST) & FAT12_MASK)) {
593                         /*
594                          * This will usually be a floppy disk. This size makes
595                          * sure that one fat entry will not be split across
596                          * multiple blocks.
597                          */
598                         pmp->pm_fatmask = FAT12_MASK;
599                         pmp->pm_fatmult = 3;
600                         pmp->pm_fatdiv = 2;
601                 } else {
602                         pmp->pm_fatmask = FAT16_MASK;
603                         pmp->pm_fatmult = 2;
604                         pmp->pm_fatdiv = 1;
605                 }
606         }
607
608         clusters = (pmp->pm_fatsize / pmp->pm_fatmult) * pmp->pm_fatdiv;
609         if (pmp->pm_maxcluster >= clusters) {
610                 printf("Warning: number of clusters (%ld) exceeds FAT "
611                     "capacity (%ld)\n", pmp->pm_maxcluster + 1, clusters);
612                 pmp->pm_maxcluster = clusters - 1;
613         }
614
615         if (FAT12(pmp))
616                 pmp->pm_fatblocksize = 3 * 512;
617         else
618                 pmp->pm_fatblocksize = PAGE_SIZE;
619         pmp->pm_fatblocksize = roundup(pmp->pm_fatblocksize,
620             pmp->pm_BytesPerSec);
621         pmp->pm_fatblocksec = pmp->pm_fatblocksize / DEV_BSIZE;
622         pmp->pm_bnshift = ffs(DEV_BSIZE) - 1;
623
624         /*
625          * Compute mask and shift value for isolating cluster relative byte
626          * offsets and cluster numbers from a file offset.
627          */
628         pmp->pm_bpcluster = SecPerClust * DEV_BSIZE;
629         pmp->pm_crbomask = pmp->pm_bpcluster - 1;
630         pmp->pm_cnshift = ffs(pmp->pm_bpcluster) - 1;
631
632         /*
633          * Check for valid cluster size
634          * must be a power of 2
635          */
636         if (pmp->pm_bpcluster ^ (1 << pmp->pm_cnshift)) {
637                 error = EINVAL;
638                 goto error_exit;
639         }
640
641         /*
642          * Release the bootsector buffer.
643          */
644         brelse(bp);
645         bp = NULL;
646
647         /*
648          * Check the fsinfo sector if we have one.  Silently fix up our
649          * in-core copy of fp->fsinxtfree if it is unknown (0xffffffff)
650          * or too large.  Ignore fp->fsinfree for now, since we need to
651          * read the entire FAT anyway to fill the inuse map.
652          */
653         if (pmp->pm_fsinfo) {
654                 struct fsinfo *fp;
655
656                 if ((error = bread(devvp, pmp->pm_fsinfo, pmp->pm_BytesPerSec,
657                     NOCRED, &bp)) != 0)
658                         goto error_exit;
659                 fp = (struct fsinfo *)bp->b_data;
660                 if (!bcmp(fp->fsisig1, "RRaA", 4)
661                     && !bcmp(fp->fsisig2, "rrAa", 4)
662                     && !bcmp(fp->fsisig3, "\0\0\125\252", 4)) {
663                         pmp->pm_nxtfree = getulong(fp->fsinxtfree);
664                         if (pmp->pm_nxtfree > pmp->pm_maxcluster)
665                                 pmp->pm_nxtfree = CLUST_FIRST;
666                 } else
667                         pmp->pm_fsinfo = 0;
668                 brelse(bp);
669                 bp = NULL;
670         }
671
672         /*
673          * Finish initializing pmp->pm_nxtfree (just in case the first few
674          * sectors aren't properly reserved in the FAT).  This completes
675          * the fixup for fp->fsinxtfree, and fixes up the zero-initialized
676          * value if there is no fsinfo.  We will use pmp->pm_nxtfree
677          * internally even if there is no fsinfo.
678          */
679         if (pmp->pm_nxtfree < CLUST_FIRST)
680                 pmp->pm_nxtfree = CLUST_FIRST;
681
682         /*
683          * Allocate memory for the bitmap of allocated clusters, and then
684          * fill it in.
685          */
686         pmp->pm_inusemap = malloc(howmany(pmp->pm_maxcluster + 1, N_INUSEBITS)
687                                   * sizeof(*pmp->pm_inusemap),
688                                   M_MSDOSFSFAT, M_WAITOK);
689
690         /*
691          * fillinusemap() needs pm_devvp.
692          */
693         pmp->pm_devvp = devvp;
694
695         /*
696          * Have the inuse map filled in.
697          */
698         if ((error = fillinusemap(pmp)) != 0)
699                 goto error_exit;
700
701         /*
702          * If they want fat updates to be synchronous then let them suffer
703          * the performance degradation in exchange for the on disk copy of
704          * the fat being correct just about all the time.  I suppose this
705          * would be a good thing to turn on if the kernel is still flakey.
706          */
707         if (mp->mnt_flag & MNT_SYNCHRONOUS)
708                 pmp->pm_flags |= MSDOSFSMNT_WAITONFAT;
709
710         /*
711          * Finish up.
712          */
713         if (ronly)
714                 pmp->pm_flags |= MSDOSFSMNT_RONLY;
715         else {
716                 /* Mark the volume dirty while it is mounted read/write. */
717                 if ((error = markvoldirty(pmp, 1)) != 0)
718                         goto error_exit;
719                 pmp->pm_fmod = 1;
720         }
721         mp->mnt_data = (qaddr_t) pmp;
722         mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
723         mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
724         MNT_ILOCK(mp);
725         mp->mnt_flag |= MNT_LOCAL;
726         MNT_IUNLOCK(mp);
727
728         if (pmp->pm_flags & MSDOSFS_LARGEFS)
729                 msdosfs_fileno_init(mp);
730
731         return 0;
732
733 error_exit:
734         if (bp)
735                 brelse(bp);
736         if (cp != NULL) {
737                 DROP_GIANT();
738                 g_topology_lock();
739                 g_vfs_close(cp, td);
740                 g_topology_unlock();
741                 PICKUP_GIANT();
742         }
743         if (pmp) {
744                 if (pmp->pm_inusemap)
745                         free(pmp->pm_inusemap, M_MSDOSFSFAT);
746                 free(pmp, M_MSDOSFSMNT);
747                 mp->mnt_data = (qaddr_t)0;
748         }
749         return (error);
750 }
751
752 /*
753  * Unmount the filesystem described by mp.
754  */
755 static int
756 msdosfs_unmount(struct mount *mp, int mntflags, struct thread *td)
757 {
758         struct msdosfsmount *pmp;
759         int error, flags;
760
761         flags = 0;
762         if (mntflags & MNT_FORCE)
763                 flags |= FORCECLOSE;
764         error = vflush(mp, 0, flags, td);
765         if (error)
766                 return error;
767         pmp = VFSTOMSDOSFS(mp);
768         if (pmp->pm_flags & MSDOSFSMNT_KICONV && msdosfs_iconv) {
769                 if (pmp->pm_w2u)
770                         msdosfs_iconv->close(pmp->pm_w2u);
771                 if (pmp->pm_u2w)
772                         msdosfs_iconv->close(pmp->pm_u2w);
773                 if (pmp->pm_d2u)
774                         msdosfs_iconv->close(pmp->pm_d2u);
775                 if (pmp->pm_u2d)
776                         msdosfs_iconv->close(pmp->pm_u2d);
777         }
778
779         /* If the volume was mounted read/write, mark it clean now. */
780         if ((pmp->pm_flags & MSDOSFSMNT_RONLY) == 0) {
781                 error = markvoldirty(pmp, 0);
782                 if (error && (flags & FORCECLOSE) == 0)
783                         return (error);
784         }
785 #ifdef MSDOSFS_DEBUG
786         {
787                 struct vnode *vp = pmp->pm_devvp;
788
789                 VI_LOCK(vp);
790                 vn_printf(vp,
791                     "msdosfs_umount(): just before calling VOP_CLOSE()\n");
792                 printf("freef %p, freeb %p, mount %p\n",
793                     TAILQ_NEXT(vp, v_freelist), vp->v_freelist.tqe_prev,
794                     vp->v_mount);
795                 printf("cleanblkhd %p, dirtyblkhd %p, numoutput %ld, type %d\n",
796                     TAILQ_FIRST(&vp->v_bufobj.bo_clean.bv_hd),
797                     TAILQ_FIRST(&vp->v_bufobj.bo_dirty.bv_hd),
798                     vp->v_bufobj.bo_numoutput, vp->v_type);
799                 VI_UNLOCK(vp);
800         }
801 #endif
802         DROP_GIANT();
803         g_topology_lock();
804         g_vfs_close(pmp->pm_cp, td);
805         g_topology_unlock();
806         PICKUP_GIANT();
807         vrele(pmp->pm_devvp);
808         free(pmp->pm_inusemap, M_MSDOSFSFAT);
809         if (pmp->pm_flags & MSDOSFS_LARGEFS) {
810                 msdosfs_fileno_free(mp);
811         }
812         free(pmp, M_MSDOSFSMNT);
813         mp->mnt_data = (qaddr_t)0;
814         MNT_ILOCK(mp);
815         mp->mnt_flag &= ~MNT_LOCAL;
816         MNT_IUNLOCK(mp);
817         return (error);
818 }
819
820 static int
821 msdosfs_root(struct mount *mp, int flags, struct vnode **vpp, struct thread *td)
822 {
823         struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
824         struct denode *ndep;
825         int error;
826
827 #ifdef MSDOSFS_DEBUG
828         printf("msdosfs_root(); mp %p, pmp %p\n", mp, pmp);
829 #endif
830         error = deget(pmp, MSDOSFSROOT, MSDOSFSROOT_OFS, &ndep);
831         if (error)
832                 return (error);
833         *vpp = DETOV(ndep);
834         return (0);
835 }
836
837 static int
838 msdosfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
839 {
840         struct msdosfsmount *pmp;
841
842         pmp = VFSTOMSDOSFS(mp);
843         sbp->f_bsize = pmp->pm_bpcluster;
844         sbp->f_iosize = pmp->pm_bpcluster;
845         sbp->f_blocks = pmp->pm_maxcluster + 1;
846         sbp->f_bfree = pmp->pm_freeclustercount;
847         sbp->f_bavail = pmp->pm_freeclustercount;
848         sbp->f_files = pmp->pm_RootDirEnts;     /* XXX */
849         sbp->f_ffree = 0;       /* what to put in here? */
850         return (0);
851 }
852
853 static int
854 msdosfs_sync(struct mount *mp, int waitfor, struct thread *td)
855 {
856         struct vnode *vp, *nvp;
857         struct denode *dep;
858         struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
859         int error, allerror = 0;
860
861         /*
862          * If we ever switch to not updating all of the fats all the time,
863          * this would be the place to update them from the first one.
864          */
865         if (pmp->pm_fmod != 0) {
866                 if (pmp->pm_flags & MSDOSFSMNT_RONLY)
867                         panic("msdosfs_sync: rofs mod");
868                 else {
869                         /* update fats here */
870                 }
871         }
872         /*
873          * Write back each (modified) denode.
874          */
875         MNT_ILOCK(mp);
876 loop:
877         MNT_VNODE_FOREACH(vp, mp, nvp) {
878                 VI_LOCK(vp);
879                 if (vp->v_type == VNON || (vp->v_iflag & VI_DOOMED)) {
880                         VI_UNLOCK(vp);
881                         continue;
882                 }
883                 MNT_IUNLOCK(mp);
884                 dep = VTODE(vp);
885                 if ((dep->de_flag &
886                     (DE_ACCESS | DE_CREATE | DE_UPDATE | DE_MODIFIED)) == 0 &&
887                     (vp->v_bufobj.bo_dirty.bv_cnt == 0 ||
888                     waitfor == MNT_LAZY)) {
889                         VI_UNLOCK(vp);
890                         MNT_ILOCK(mp);
891                         continue;
892                 }
893                 error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK, td);
894                 if (error) {
895                         MNT_ILOCK(mp);
896                         if (error == ENOENT)
897                                 goto loop;
898                         continue;
899                 }
900                 error = VOP_FSYNC(vp, waitfor, td);
901                 if (error)
902                         allerror = error;
903                 VOP_UNLOCK(vp, 0, td);
904                 vrele(vp);
905                 MNT_ILOCK(mp);
906         }
907         MNT_IUNLOCK(mp);
908
909         /*
910          * Flush filesystem control info.
911          */
912         if (waitfor != MNT_LAZY) {
913                 vn_lock(pmp->pm_devvp, LK_EXCLUSIVE | LK_RETRY, td);
914                 error = VOP_FSYNC(pmp->pm_devvp, waitfor, td);
915                 if (error)
916                         allerror = error;
917                 VOP_UNLOCK(pmp->pm_devvp, 0, td);
918         }
919         return (allerror);
920 }
921
922 static int
923 msdosfs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
924 {
925         struct msdosfsmount *pmp = VFSTOMSDOSFS(mp);
926         struct defid *defhp = (struct defid *) fhp;
927         struct denode *dep;
928         int error;
929
930         error = deget(pmp, defhp->defid_dirclust, defhp->defid_dirofs, &dep);
931         if (error) {
932                 *vpp = NULLVP;
933                 return (error);
934         }
935         *vpp = DETOV(dep);
936         vnode_create_vobject(*vpp, dep->de_FileSize, curthread);
937         return (0);
938 }
939
940 static struct vfsops msdosfs_vfsops = {
941         .vfs_fhtovp =           msdosfs_fhtovp,
942         .vfs_mount =            msdosfs_mount,
943         .vfs_cmount =           msdosfs_cmount,
944         .vfs_root =             msdosfs_root,
945         .vfs_statfs =           msdosfs_statfs,
946         .vfs_sync =             msdosfs_sync,
947         .vfs_unmount =          msdosfs_unmount,
948 };
949
950 VFS_SET(msdosfs_vfsops, msdosfs, 0);
951 MODULE_VERSION(msdosfs, 1);