The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/msdosfs/msdosfs_vfsops.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 28d60419139c2a28b4e4a5c945efcf84


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.