1994-05-24 10:09:53 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley
|
|
|
|
* by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
|
|
|
|
* Support code is derived from software contributed to Berkeley
|
|
|
|
* by Atsushi Murai (amurai@spec.co.jp).
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-11 00:34:37 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/namei.h>
|
2006-11-06 13:42:10 +00:00
|
|
|
#include <sys/priv.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
2000-05-05 09:59:14 +00:00
|
|
|
#include <sys/bio.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/buf.h>
|
1997-05-04 15:24:23 +00:00
|
|
|
#include <sys/cdio.h>
|
|
|
|
#include <sys/conf.h>
|
1997-03-23 03:37:54 +00:00
|
|
|
#include <sys/fcntl.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/malloc.h>
|
1997-02-10 02:22:35 +00:00
|
|
|
#include <sys/stat.h>
|
1999-04-18 10:58:03 +00:00
|
|
|
#include <sys/syslog.h>
|
2003-09-26 20:26:25 +00:00
|
|
|
#include <sys/iconv.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2007-02-11 13:54:25 +00:00
|
|
|
#include <fs/cd9660/iso.h>
|
|
|
|
#include <fs/cd9660/iso_rrip.h>
|
|
|
|
#include <fs/cd9660/cd9660_node.h>
|
|
|
|
#include <fs/cd9660/cd9660_mount.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2004-10-29 10:41:44 +00:00
|
|
|
#include <geom/geom.h>
|
|
|
|
#include <geom/geom_vfs.h>
|
|
|
|
|
2005-10-31 15:41:29 +00:00
|
|
|
MALLOC_DEFINE(M_ISOFSMNT, "isofs_mount", "ISOFS mount structure");
|
|
|
|
MALLOC_DEFINE(M_ISOFSNODE, "isofs_node", "ISOFS vnode private part");
|
1995-10-31 12:13:49 +00:00
|
|
|
|
2003-09-26 20:26:25 +00:00
|
|
|
struct iconv_functions *cd9660_iconv = NULL;
|
|
|
|
|
2004-12-07 08:15:41 +00:00
|
|
|
static vfs_mount_t cd9660_mount;
|
|
|
|
static vfs_cmount_t cd9660_cmount;
|
2002-08-13 10:05:50 +00:00
|
|
|
static vfs_unmount_t cd9660_unmount;
|
|
|
|
static vfs_root_t cd9660_root;
|
|
|
|
static vfs_statfs_t cd9660_statfs;
|
|
|
|
static vfs_vget_t cd9660_vget;
|
|
|
|
static vfs_fhtovp_t cd9660_fhtovp;
|
1995-10-31 12:13:49 +00:00
|
|
|
|
|
|
|
static struct vfsops cd9660_vfsops = {
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_fhtovp = cd9660_fhtovp,
|
2004-12-07 08:15:41 +00:00
|
|
|
.vfs_mount = cd9660_mount,
|
|
|
|
.vfs_cmount = cd9660_cmount,
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_root = cd9660_root,
|
|
|
|
.vfs_statfs = cd9660_statfs,
|
|
|
|
.vfs_unmount = cd9660_unmount,
|
|
|
|
.vfs_vget = cd9660_vget,
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
1998-09-07 13:17:06 +00:00
|
|
|
VFS_SET(cd9660_vfsops, cd9660, VFCF_READONLY);
|
2001-03-11 15:28:42 +00:00
|
|
|
MODULE_VERSION(cd9660, 1);
|
1994-09-21 03:47:43 +00:00
|
|
|
|
2008-10-10 21:23:50 +00:00
|
|
|
static int iso_mountfs(struct vnode *devvp, struct mount *mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-05-04 15:24:23 +00:00
|
|
|
/*
|
2004-12-07 08:15:41 +00:00
|
|
|
* VFS Operations.
|
1997-05-04 15:24:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
2012-01-17 01:08:01 +00:00
|
|
|
cd9660_cmount(struct mntarg *ma, void *data, uint64_t flags)
|
1997-05-04 15:24:23 +00:00
|
|
|
{
|
1994-05-24 10:09:53 +00:00
|
|
|
struct iso_args args;
|
2010-10-10 07:05:47 +00:00
|
|
|
struct export_args exp;
|
1997-02-10 02:22:35 +00:00
|
|
|
int error;
|
1997-05-04 15:24:23 +00:00
|
|
|
|
2004-12-07 08:15:41 +00:00
|
|
|
error = copyin(data, &args, sizeof args);
|
2001-11-27 03:55:43 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
2010-10-10 07:05:47 +00:00
|
|
|
vfs_oexport_conv(&args.export, &exp);
|
1997-05-04 15:24:23 +00:00
|
|
|
|
2004-12-07 08:15:41 +00:00
|
|
|
ma = mount_argsu(ma, "from", args.fspec, MAXPATHLEN);
|
2010-10-10 07:05:47 +00:00
|
|
|
ma = mount_arg(ma, "export", &exp, sizeof(exp));
|
2004-12-07 08:15:41 +00:00
|
|
|
ma = mount_argsu(ma, "cs_disk", args.cs_disk, 64);
|
|
|
|
ma = mount_argsu(ma, "cs_local", args.cs_local, 64);
|
|
|
|
ma = mount_argf(ma, "ssector", "%u", args.ssector);
|
|
|
|
ma = mount_argb(ma, !(args.flags & ISOFSMNT_NORRIP), "norrip");
|
|
|
|
ma = mount_argb(ma, args.flags & ISOFSMNT_GENS, "nogens");
|
|
|
|
ma = mount_argb(ma, args.flags & ISOFSMNT_EXTATT, "noextatt");
|
|
|
|
ma = mount_argb(ma, !(args.flags & ISOFSMNT_NOJOLIET), "nojoliet");
|
|
|
|
ma = mount_argb(ma,
|
|
|
|
args.flags & ISOFSMNT_BROKENJOLIET, "nobrokenjoliet");
|
|
|
|
ma = mount_argb(ma, args.flags & ISOFSMNT_KICONV, "nokiconv");
|
|
|
|
|
|
|
|
error = kernel_mount(ma, flags);
|
|
|
|
|
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-10-31 12:13:49 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
cd9660_mount(struct mount *mp)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct vnode *devvp;
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td;
|
2004-12-07 08:15:41 +00:00
|
|
|
char *fspec;
|
2006-05-26 00:32:21 +00:00
|
|
|
int error;
|
2008-10-28 13:44:11 +00:00
|
|
|
accmode_t accmode;
|
2004-07-30 22:08:52 +00:00
|
|
|
struct nameidata ndp;
|
2012-07-22 15:40:31 +00:00
|
|
|
struct iso_mnt *imp = NULL;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2009-05-11 15:33:26 +00:00
|
|
|
td = curthread;
|
|
|
|
|
2005-10-17 03:29:53 +00:00
|
|
|
/*
|
|
|
|
* Unconditionally mount as read-only.
|
|
|
|
*/
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
2005-10-17 03:29:53 +00:00
|
|
|
mp->mnt_flag |= MNT_RDONLY;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2004-12-07 08:15:41 +00:00
|
|
|
fspec = vfs_getopts(mp->mnt_optnew, "from", &error);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
imp = VFSTOISOFS(mp);
|
2006-05-26 00:32:21 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
2006-05-26 00:32:21 +00:00
|
|
|
if (vfs_flagopt(mp->mnt_optnew, "export", NULL, 0))
|
|
|
|
return (0);
|
2004-12-07 15:13:35 +00:00
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Not an update, or updating the name: look up the name
|
|
|
|
* and verify that it refers to a sensible block device.
|
|
|
|
*/
|
2008-11-18 23:18:37 +00:00
|
|
|
NDINIT(&ndp, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, fspec, td);
|
2004-07-30 22:08:52 +00:00
|
|
|
if ((error = namei(&ndp)))
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
2004-07-30 22:08:52 +00:00
|
|
|
NDFREE(&ndp, NDF_ONLY_PNBUF);
|
|
|
|
devvp = ndp.ni_vp;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2000-01-10 12:04:27 +00:00
|
|
|
if (!vn_isdisk(devvp, &error)) {
|
2008-11-18 23:18:37 +00:00
|
|
|
vput(devvp);
|
2000-01-10 12:04:27 +00:00
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1998-09-07 07:20:30 +00:00
|
|
|
|
2004-07-03 16:56:45 +00:00
|
|
|
/*
|
1999-01-30 12:26:22 +00:00
|
|
|
* Verify that user has necessary permissions on the device,
|
|
|
|
* or has superuser abilities
|
1998-09-07 07:20:30 +00:00
|
|
|
*/
|
2008-10-28 13:44:11 +00:00
|
|
|
accmode = VREAD;
|
|
|
|
error = VOP_ACCESS(devvp, accmode, td->td_ucred, td);
|
2004-07-03 16:56:45 +00:00
|
|
|
if (error)
|
2006-11-06 13:42:10 +00:00
|
|
|
error = priv_check(td, PRIV_VFS_MOUNT_PERM);
|
1999-01-30 12:26:22 +00:00
|
|
|
if (error) {
|
|
|
|
vput(devvp);
|
|
|
|
return (error);
|
1998-09-07 07:20:30 +00:00
|
|
|
}
|
|
|
|
|
1997-09-27 13:40:20 +00:00
|
|
|
if ((mp->mnt_flag & MNT_UPDATE) == 0) {
|
2008-10-10 21:23:50 +00:00
|
|
|
error = iso_mountfs(devvp, mp);
|
2008-11-18 23:18:37 +00:00
|
|
|
if (error)
|
|
|
|
vrele(devvp);
|
1997-09-27 13:40:20 +00:00
|
|
|
} else {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (devvp != imp->im_devvp)
|
|
|
|
error = EINVAL; /* needs translation */
|
2008-11-18 23:18:37 +00:00
|
|
|
vput(devvp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2008-11-18 23:18:37 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2004-12-07 08:15:41 +00:00
|
|
|
vfs_mountedfrom(mp, fspec);
|
2008-11-18 23:18:37 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common code for mount and mountroot
|
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
static int
|
2008-10-10 21:23:50 +00:00
|
|
|
iso_mountfs(devvp, mp)
|
2004-07-03 16:56:45 +00:00
|
|
|
struct vnode *devvp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
{
|
2012-02-20 09:56:14 +00:00
|
|
|
struct iso_mnt *isomp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct buf *bp = NULL;
|
1999-04-18 10:58:03 +00:00
|
|
|
struct buf *pribp = NULL, *supbp = NULL;
|
2009-02-11 22:22:26 +00:00
|
|
|
struct cdev *dev;
|
1994-09-26 00:32:59 +00:00
|
|
|
int error = EINVAL;
|
1995-01-16 17:03:29 +00:00
|
|
|
int high_sierra = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
int iso_bsize;
|
|
|
|
int iso_blknum;
|
1999-04-18 10:58:03 +00:00
|
|
|
int joliet_level;
|
2012-07-22 15:40:31 +00:00
|
|
|
struct iso_volume_descriptor *vdp = NULL;
|
1999-04-18 10:58:03 +00:00
|
|
|
struct iso_primary_descriptor *pri = NULL;
|
|
|
|
struct iso_sierra_primary_descriptor *pri_sierra = NULL;
|
|
|
|
struct iso_supplementary_descriptor *sup = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct iso_directory_record *rootp;
|
2004-12-07 08:15:41 +00:00
|
|
|
int logical_block_size, ssector;
|
2004-10-29 10:41:44 +00:00
|
|
|
struct g_consumer *cp;
|
|
|
|
struct bufobj *bo;
|
2004-12-07 08:15:41 +00:00
|
|
|
char *cs_local, *cs_disk;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2009-02-11 22:22:26 +00:00
|
|
|
dev = devvp->v_rdev;
|
|
|
|
dev_ref(dev);
|
2004-10-29 10:41:44 +00:00
|
|
|
DROP_GIANT();
|
|
|
|
g_topology_lock();
|
|
|
|
error = g_vfs_open(devvp, &cp, "cd9660", 0);
|
|
|
|
g_topology_unlock();
|
|
|
|
PICKUP_GIANT();
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(devvp, 0);
|
1999-11-09 14:15:33 +00:00
|
|
|
if (error)
|
2009-02-11 22:22:26 +00:00
|
|
|
goto out;
|
2002-03-30 15:12:57 +00:00
|
|
|
if (devvp->v_rdev->si_iosize_max != 0)
|
|
|
|
mp->mnt_iosize_max = devvp->v_rdev->si_iosize_max;
|
|
|
|
if (mp->mnt_iosize_max > MAXPHYS)
|
|
|
|
mp->mnt_iosize_max = MAXPHYS;
|
1999-11-09 14:15:33 +00:00
|
|
|
|
2004-10-29 10:41:44 +00:00
|
|
|
bo = &devvp->v_bufobj;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/* This is the "logical sector size". The standard says this
|
|
|
|
* should be 2048 or the physical sector size on the device,
|
2005-10-17 03:27:35 +00:00
|
|
|
* whichever is greater.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
2005-10-17 03:27:35 +00:00
|
|
|
if ((ISO_DEFAULT_BLOCK_SIZE % cp->provider->sectorsize) != 0) {
|
2009-02-11 22:22:26 +00:00
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
2005-10-17 03:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iso_bsize = cp->provider->sectorsize;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
joliet_level = 0;
|
2004-12-07 08:15:41 +00:00
|
|
|
if (1 != vfs_scanopt(mp->mnt_optnew, "ssector", "%d", &ssector))
|
|
|
|
ssector = 0;
|
|
|
|
for (iso_blknum = 16 + ssector;
|
|
|
|
iso_blknum < 100 + ssector;
|
1997-04-29 15:52:53 +00:00
|
|
|
iso_blknum++) {
|
2005-10-17 03:27:35 +00:00
|
|
|
if ((error = bread(devvp, iso_blknum * btodb(ISO_DEFAULT_BLOCK_SIZE),
|
1999-01-27 21:50:00 +00:00
|
|
|
iso_bsize, NOCRED, &bp)) != 0)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
vdp = (struct iso_volume_descriptor *)bp->b_data;
|
1994-05-24 10:09:53 +00:00
|
|
|
if (bcmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) != 0) {
|
1995-01-16 17:03:29 +00:00
|
|
|
if (bcmp (vdp->id_sierra, ISO_SIERRA_ID,
|
2009-01-28 19:09:49 +00:00
|
|
|
sizeof vdp->id_sierra) != 0) {
|
1995-01-16 17:03:29 +00:00
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
} else
|
|
|
|
high_sierra = 1;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1999-04-18 10:58:03 +00:00
|
|
|
switch (isonum_711 (high_sierra? vdp->type_sierra: vdp->type)){
|
|
|
|
case ISO_VD_PRIMARY:
|
|
|
|
if (pribp == NULL) {
|
|
|
|
pribp = bp;
|
|
|
|
bp = NULL;
|
|
|
|
pri = (struct iso_primary_descriptor *)vdp;
|
|
|
|
pri_sierra =
|
|
|
|
(struct iso_sierra_primary_descriptor *)vdp;
|
|
|
|
}
|
|
|
|
break;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
case ISO_VD_SUPPLEMENTARY:
|
|
|
|
if (supbp == NULL) {
|
|
|
|
supbp = bp;
|
|
|
|
bp = NULL;
|
|
|
|
sup = (struct iso_supplementary_descriptor *)vdp;
|
|
|
|
|
2005-08-14 04:19:36 +00:00
|
|
|
if (!vfs_flagopt(mp->mnt_optnew, "nojoliet", NULL, 0)) {
|
1999-04-18 10:58:03 +00:00
|
|
|
if (bcmp(sup->escape, "%/@", 3) == 0)
|
|
|
|
joliet_level = 1;
|
|
|
|
if (bcmp(sup->escape, "%/C", 3) == 0)
|
|
|
|
joliet_level = 2;
|
|
|
|
if (bcmp(sup->escape, "%/E", 3) == 0)
|
|
|
|
joliet_level = 3;
|
|
|
|
|
2001-03-11 10:05:08 +00:00
|
|
|
if ((isonum_711 (sup->flags) & 1) &&
|
2004-12-07 08:15:41 +00:00
|
|
|
!vfs_flagopt(mp->mnt_optnew, "brokenjoliet", NULL, 0))
|
1999-04-18 10:58:03 +00:00
|
|
|
joliet_level = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
case ISO_VD_END:
|
|
|
|
goto vd_end;
|
|
|
|
|
|
|
|
default:
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
1999-04-18 10:58:03 +00:00
|
|
|
}
|
|
|
|
if (bp) {
|
|
|
|
brelse(bp);
|
|
|
|
bp = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vd_end:
|
|
|
|
if (bp) {
|
1994-05-24 10:09:53 +00:00
|
|
|
brelse(bp);
|
1999-04-18 10:58:03 +00:00
|
|
|
bp = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
if (pri == NULL) {
|
1994-05-24 10:09:53 +00:00
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-01-16 17:03:29 +00:00
|
|
|
logical_block_size =
|
|
|
|
isonum_723 (high_sierra?
|
|
|
|
pri_sierra->logical_block_size:
|
|
|
|
pri->logical_block_size);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (logical_block_size < DEV_BSIZE || logical_block_size > MAXBSIZE
|
|
|
|
|| (logical_block_size & (logical_block_size - 1)) != 0) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-01-16 17:03:29 +00:00
|
|
|
rootp = (struct iso_directory_record *)
|
|
|
|
(high_sierra?
|
|
|
|
pri_sierra->root_directory_record:
|
|
|
|
pri->root_directory_record);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2003-02-19 05:47:46 +00:00
|
|
|
isomp = malloc(sizeof *isomp, M_ISOFSMNT, M_WAITOK | M_ZERO);
|
2004-10-29 10:41:44 +00:00
|
|
|
isomp->im_cp = cp;
|
|
|
|
isomp->im_bo = bo;
|
1994-05-24 10:09:53 +00:00
|
|
|
isomp->logical_block_size = logical_block_size;
|
1995-01-16 17:03:29 +00:00
|
|
|
isomp->volume_space_size =
|
|
|
|
isonum_733 (high_sierra?
|
|
|
|
pri_sierra->volume_space_size:
|
|
|
|
pri->volume_space_size);
|
1999-04-18 10:58:03 +00:00
|
|
|
isomp->joliet_level = 0;
|
1997-04-29 17:11:51 +00:00
|
|
|
/*
|
|
|
|
* Since an ISO9660 multi-session CD can also access previous
|
|
|
|
* sessions, we have to include them into the space consider-
|
|
|
|
* ations. This doesn't yield a very accurate number since
|
|
|
|
* parts of the old sessions might be inaccessible now, but we
|
|
|
|
* can't do much better. This is also important for the NFS
|
|
|
|
* filehandle validation.
|
|
|
|
*/
|
2004-12-07 08:15:41 +00:00
|
|
|
isomp->volume_space_size += ssector;
|
1994-05-24 10:09:53 +00:00
|
|
|
bcopy (rootp, isomp->root, sizeof isomp->root);
|
|
|
|
isomp->root_extent = isonum_733 (rootp->extent);
|
|
|
|
isomp->root_size = isonum_733 (rootp->size);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
isomp->im_bmask = logical_block_size - 1;
|
1999-04-18 10:58:03 +00:00
|
|
|
isomp->im_bshift = ffs(logical_block_size) - 1;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
pribp->b_flags |= B_AGE;
|
|
|
|
brelse(pribp);
|
|
|
|
pribp = NULL;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = isomp;
|
1999-08-23 21:07:13 +00:00
|
|
|
mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
|
1997-02-10 02:22:35 +00:00
|
|
|
mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_maxsymlinklen = 0;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_flag |= MNT_LOCAL;
|
2012-11-09 18:02:25 +00:00
|
|
|
mp->mnt_kern_flag |= MNTK_LOOKUP_SHARED | MNTK_EXTENDED_SHARED;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
isomp->im_mountp = mp;
|
|
|
|
isomp->im_dev = dev;
|
|
|
|
isomp->im_devvp = devvp;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2005-08-14 04:19:36 +00:00
|
|
|
vfs_flagopt(mp->mnt_optnew, "norrip", &isomp->im_flags, ISOFSMNT_NORRIP);
|
2004-12-07 08:15:41 +00:00
|
|
|
vfs_flagopt(mp->mnt_optnew, "gens", &isomp->im_flags, ISOFSMNT_GENS);
|
|
|
|
vfs_flagopt(mp->mnt_optnew, "extatt", &isomp->im_flags, ISOFSMNT_EXTATT);
|
2005-08-14 04:19:36 +00:00
|
|
|
vfs_flagopt(mp->mnt_optnew, "nojoliet", &isomp->im_flags, ISOFSMNT_NOJOLIET);
|
2004-12-07 08:15:41 +00:00
|
|
|
vfs_flagopt(mp->mnt_optnew, "kiconv", &isomp->im_flags, ISOFSMNT_KICONV);
|
2005-08-14 04:19:36 +00:00
|
|
|
|
|
|
|
/* Check the Rock Ridge Extension support */
|
|
|
|
if (!(isomp->im_flags & ISOFSMNT_NORRIP)) {
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = bread(isomp->im_devvp,
|
1997-02-10 02:22:35 +00:00
|
|
|
(isomp->root_extent + isonum_711(rootp->ext_attr_length)) <<
|
|
|
|
(isomp->im_bshift - DEV_BSHIFT),
|
1999-01-27 21:50:00 +00:00
|
|
|
isomp->logical_block_size, NOCRED, &bp)) != 0)
|
1994-05-24 10:09:53 +00:00
|
|
|
goto out;
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
rootp = (struct iso_directory_record *)bp->b_data;
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if ((isomp->rr_skip = cd9660_rrip_offset(rootp,isomp)) < 0) {
|
2004-12-07 08:15:41 +00:00
|
|
|
isomp->im_flags |= ISOFSMNT_NORRIP;
|
1994-05-24 10:09:53 +00:00
|
|
|
} else {
|
2004-12-07 08:15:41 +00:00
|
|
|
isomp->im_flags &= ~ISOFSMNT_GENS;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* The contents are valid,
|
|
|
|
* but they will get reread as part of another vnode, so...
|
|
|
|
*/
|
|
|
|
bp->b_flags |= B_AGE;
|
|
|
|
brelse(bp);
|
|
|
|
bp = NULL;
|
|
|
|
}
|
2003-09-26 20:26:25 +00:00
|
|
|
|
|
|
|
if (isomp->im_flags & ISOFSMNT_KICONV && cd9660_iconv) {
|
2004-12-07 08:15:41 +00:00
|
|
|
cs_local = vfs_getopts(mp->mnt_optnew, "cs_local", &error);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
cs_disk = vfs_getopts(mp->mnt_optnew, "cs_disk", &error);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
cd9660_iconv->open(cs_local, cs_disk, &isomp->im_d2l);
|
|
|
|
cd9660_iconv->open(cs_disk, cs_local, &isomp->im_l2d);
|
2003-09-26 20:26:25 +00:00
|
|
|
} else {
|
|
|
|
isomp->im_d2l = NULL;
|
|
|
|
isomp->im_l2d = NULL;
|
|
|
|
}
|
1995-01-16 17:03:29 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
if (high_sierra) {
|
1995-01-16 17:03:29 +00:00
|
|
|
/* this effectively ignores all the mount flags */
|
2005-02-18 10:49:55 +00:00
|
|
|
if (bootverbose)
|
|
|
|
log(LOG_INFO, "cd9660: High Sierra Format\n");
|
1995-01-16 17:03:29 +00:00
|
|
|
isomp->iso_ftype = ISO_FTYPE_HIGH_SIERRA;
|
1999-04-18 10:58:03 +00:00
|
|
|
} else
|
1995-01-16 17:03:29 +00:00
|
|
|
switch (isomp->im_flags&(ISOFSMNT_NORRIP|ISOFSMNT_GENS)) {
|
|
|
|
default:
|
|
|
|
isomp->iso_ftype = ISO_FTYPE_DEFAULT;
|
|
|
|
break;
|
|
|
|
case ISOFSMNT_GENS|ISOFSMNT_NORRIP:
|
|
|
|
isomp->iso_ftype = ISO_FTYPE_9660;
|
|
|
|
break;
|
|
|
|
case 0:
|
2005-02-18 10:49:55 +00:00
|
|
|
if (bootverbose)
|
|
|
|
log(LOG_INFO, "cd9660: RockRidge Extension\n");
|
1995-01-16 17:03:29 +00:00
|
|
|
isomp->iso_ftype = ISO_FTYPE_RRIP;
|
|
|
|
break;
|
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
/* Decide whether to use the Joliet descriptor */
|
|
|
|
|
|
|
|
if (isomp->iso_ftype != ISO_FTYPE_RRIP && joliet_level) {
|
2005-02-18 10:49:55 +00:00
|
|
|
if (bootverbose)
|
|
|
|
log(LOG_INFO, "cd9660: Joliet Extension (Level %d)\n",
|
|
|
|
joliet_level);
|
1999-04-18 10:58:03 +00:00
|
|
|
rootp = (struct iso_directory_record *)
|
|
|
|
sup->root_directory_record;
|
|
|
|
bcopy (rootp, isomp->root, sizeof isomp->root);
|
|
|
|
isomp->root_extent = isonum_733 (rootp->extent);
|
|
|
|
isomp->root_size = isonum_733 (rootp->size);
|
|
|
|
isomp->joliet_level = joliet_level;
|
|
|
|
supbp->b_flags |= B_AGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (supbp) {
|
|
|
|
brelse(supbp);
|
|
|
|
supbp = NULL;
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
return 0;
|
|
|
|
out:
|
|
|
|
if (bp)
|
|
|
|
brelse(bp);
|
1999-04-18 10:58:03 +00:00
|
|
|
if (pribp)
|
|
|
|
brelse(pribp);
|
|
|
|
if (supbp)
|
|
|
|
brelse(supbp);
|
2004-10-29 10:41:44 +00:00
|
|
|
if (cp != NULL) {
|
|
|
|
DROP_GIANT();
|
|
|
|
g_topology_lock();
|
2008-10-10 21:23:50 +00:00
|
|
|
g_vfs_close(cp);
|
2004-10-29 10:41:44 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
PICKUP_GIANT();
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
if (isomp) {
|
2012-03-04 09:48:58 +00:00
|
|
|
free(isomp, M_ISOFSMNT);
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = NULL;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2009-02-11 22:22:26 +00:00
|
|
|
dev_rel(dev);
|
1994-05-24 10:09:53 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* unmount system call
|
|
|
|
*/
|
1995-10-31 12:13:49 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
cd9660_unmount(mp, mntflags)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
int mntflags;
|
|
|
|
{
|
2004-07-03 16:56:45 +00:00
|
|
|
struct iso_mnt *isomp;
|
1994-09-26 00:32:59 +00:00
|
|
|
int error, flags = 0;
|
1999-11-09 14:15:33 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (mntflags & MNT_FORCE)
|
1994-05-24 10:09:53 +00:00
|
|
|
flags |= FORCECLOSE;
|
2009-05-11 15:33:26 +00:00
|
|
|
if ((error = vflush(mp, 0, flags, curthread)))
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
isomp = VFSTOISOFS(mp);
|
|
|
|
|
2003-09-26 20:26:25 +00:00
|
|
|
if (isomp->im_flags & ISOFSMNT_KICONV && cd9660_iconv) {
|
|
|
|
if (isomp->im_d2l)
|
|
|
|
cd9660_iconv->close(isomp->im_d2l);
|
|
|
|
if (isomp->im_l2d)
|
|
|
|
cd9660_iconv->close(isomp->im_l2d);
|
|
|
|
}
|
2004-10-29 10:41:44 +00:00
|
|
|
DROP_GIANT();
|
|
|
|
g_topology_lock();
|
2008-10-10 21:23:50 +00:00
|
|
|
g_vfs_close(isomp->im_cp);
|
2004-10-29 10:41:44 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
PICKUP_GIANT();
|
1994-05-24 10:09:53 +00:00
|
|
|
vrele(isomp->im_devvp);
|
2009-02-11 22:22:26 +00:00
|
|
|
dev_rel(isomp->im_dev);
|
2012-03-04 09:48:58 +00:00
|
|
|
free(isomp, M_ISOFSMNT);
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = NULL;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_flag &= ~MNT_LOCAL;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return root of a filesystem
|
|
|
|
*/
|
1995-10-31 12:13:49 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
cd9660_root(mp, flags, vpp)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
2005-03-24 07:39:03 +00:00
|
|
|
int flags;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
1997-02-10 02:22:35 +00:00
|
|
|
struct iso_mnt *imp = VFSTOISOFS(mp);
|
|
|
|
struct iso_directory_record *dp =
|
|
|
|
(struct iso_directory_record *)imp->root;
|
|
|
|
ino_t ino = isodirino(dp, imp);
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* With RRIP we must use the `.' entry of the root directory.
|
1997-02-10 02:22:35 +00:00
|
|
|
* Simply tell vget, that it's a relocated directory.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
2009-01-28 18:54:56 +00:00
|
|
|
return (cd9660_vget_internal(mp, ino, flags, vpp,
|
1997-02-10 02:22:35 +00:00
|
|
|
imp->iso_ftype == ISO_FTYPE_RRIP, dp));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2002-05-16 21:28:32 +00:00
|
|
|
* Get filesystem statistics.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
2002-09-28 17:15:38 +00:00
|
|
|
static int
|
2009-05-11 15:33:26 +00:00
|
|
|
cd9660_statfs(mp, sbp)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
2004-07-03 16:56:45 +00:00
|
|
|
struct statfs *sbp;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2004-07-03 16:56:45 +00:00
|
|
|
struct iso_mnt *isomp;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
isomp = VFSTOISOFS(mp);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
sbp->f_bsize = isomp->logical_block_size;
|
|
|
|
sbp->f_iosize = sbp->f_bsize; /* XXX */
|
|
|
|
sbp->f_blocks = isomp->volume_space_size;
|
|
|
|
sbp->f_bfree = 0; /* total free blocks */
|
|
|
|
sbp->f_bavail = 0; /* blocks free for non superuser */
|
1995-01-16 17:03:29 +00:00
|
|
|
sbp->f_files = 0; /* total files */
|
1994-05-24 10:09:53 +00:00
|
|
|
sbp->f_ffree = 0; /* free file nodes */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* File handle to vnode
|
|
|
|
*
|
|
|
|
* Have to be really careful about stale file handles:
|
|
|
|
* - check that the inode number is in range
|
|
|
|
* - call iget() to get the locked inode
|
|
|
|
* - check for an unallocated inode (i_mode == 0)
|
|
|
|
* - check that the generation number matches
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
2002-09-28 17:15:38 +00:00
|
|
|
static int
|
2011-05-22 01:07:54 +00:00
|
|
|
cd9660_fhtovp(mp, fhp, flags, vpp)
|
2004-07-03 16:56:45 +00:00
|
|
|
struct mount *mp;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct fid *fhp;
|
2011-05-22 01:07:54 +00:00
|
|
|
int flags;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
2010-01-23 22:38:01 +00:00
|
|
|
struct ifid ifh;
|
2004-07-03 16:56:45 +00:00
|
|
|
struct iso_node *ip;
|
1997-02-10 02:22:35 +00:00
|
|
|
struct vnode *nvp;
|
|
|
|
int error;
|
2004-07-03 16:56:45 +00:00
|
|
|
|
2010-01-23 22:38:01 +00:00
|
|
|
memcpy(&ifh, fhp, sizeof(ifh));
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#ifdef ISOFS_DBG
|
|
|
|
printf("fhtovp: ino %d, start %ld\n",
|
2010-01-23 22:38:01 +00:00
|
|
|
ifh.ifid_ino, ifh.ifid_start);
|
1994-05-24 10:09:53 +00:00
|
|
|
#endif
|
2004-07-03 16:56:45 +00:00
|
|
|
|
2010-01-23 22:38:01 +00:00
|
|
|
if ((error = VFS_VGET(mp, ifh.ifid_ino, LK_EXCLUSIVE, &nvp)) != 0) {
|
1997-02-10 02:22:35 +00:00
|
|
|
*vpp = NULLVP;
|
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
ip = VTOI(nvp);
|
|
|
|
if (ip->inode.iso_mode == 0) {
|
|
|
|
vput(nvp);
|
|
|
|
*vpp = NULLVP;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (ESTALE);
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
*vpp = nvp;
|
2005-01-29 16:23:39 +00:00
|
|
|
vnode_create_vobject(*vpp, ip->i_size, curthread);
|
1999-09-11 00:46:08 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-09-28 17:15:38 +00:00
|
|
|
static int
|
2002-03-17 01:25:47 +00:00
|
|
|
cd9660_vget(mp, ino, flags, vpp)
|
1997-02-10 02:22:35 +00:00
|
|
|
struct mount *mp;
|
|
|
|
ino_t ino;
|
2002-03-17 01:25:47 +00:00
|
|
|
int flags;
|
1997-02-10 02:22:35 +00:00
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXXX
|
|
|
|
* It would be nice if we didn't always set the `relocated' flag
|
|
|
|
* and force the extra read, but I don't want to think about fixing
|
|
|
|
* that right now.
|
|
|
|
*/
|
2002-03-17 01:25:47 +00:00
|
|
|
return (cd9660_vget_internal(mp, ino, flags, vpp,
|
1997-02-10 02:22:35 +00:00
|
|
|
#if 0
|
|
|
|
VFSTOISOFS(mp)->iso_ftype == ISO_FTYPE_RRIP,
|
|
|
|
#else
|
|
|
|
0,
|
|
|
|
#endif
|
|
|
|
(struct iso_directory_record *)0));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-03-17 01:25:47 +00:00
|
|
|
cd9660_vget_internal(mp, ino, flags, vpp, relocated, isodir)
|
1997-02-10 02:22:35 +00:00
|
|
|
struct mount *mp;
|
|
|
|
ino_t ino;
|
2002-03-17 01:25:47 +00:00
|
|
|
int flags;
|
1997-02-10 02:22:35 +00:00
|
|
|
struct vnode **vpp;
|
|
|
|
int relocated;
|
|
|
|
struct iso_directory_record *isodir;
|
|
|
|
{
|
|
|
|
struct iso_mnt *imp;
|
|
|
|
struct iso_node *ip;
|
|
|
|
struct buf *bp;
|
1999-08-28 19:44:07 +00:00
|
|
|
struct vnode *vp;
|
2004-06-16 09:47:26 +00:00
|
|
|
struct cdev *dev;
|
1997-02-10 02:22:35 +00:00
|
|
|
int error;
|
2007-03-13 01:50:27 +00:00
|
|
|
struct thread *td;
|
1997-02-10 02:22:35 +00:00
|
|
|
|
2007-03-13 01:50:27 +00:00
|
|
|
td = curthread;
|
|
|
|
error = vfs_hash_get(mp, ino, flags, td, vpp, NULL, NULL);
|
2005-03-15 08:07:07 +00:00
|
|
|
if (error || *vpp != NULL)
|
2002-03-17 01:25:47 +00:00
|
|
|
return (error);
|
1997-02-10 02:22:35 +00:00
|
|
|
|
2009-01-28 18:54:56 +00:00
|
|
|
/*
|
|
|
|
* We must promote to an exclusive lock for vnode creation. This
|
|
|
|
* can happen if lookup is passed LOCKSHARED.
|
|
|
|
*/
|
|
|
|
if ((flags & LK_TYPE_MASK) == LK_SHARED) {
|
|
|
|
flags &= ~LK_TYPE_MASK;
|
|
|
|
flags |= LK_EXCLUSIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We do not lock vnode creation as it is believed to be too
|
|
|
|
* expensive for such rare case as simultaneous creation of vnode
|
|
|
|
* for same ino by different processes. We just allow them to race
|
|
|
|
* and check later to decide who wins. Let the race begin!
|
|
|
|
*/
|
|
|
|
|
2005-03-14 13:22:41 +00:00
|
|
|
imp = VFSTOISOFS(mp);
|
|
|
|
dev = imp->im_dev;
|
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
/* Allocate a new vnode/iso_node. */
|
2004-12-01 23:16:38 +00:00
|
|
|
if ((error = getnewvnode("isofs", mp, &cd9660_vnodeops, &vp)) != 0) {
|
1997-02-10 02:22:35 +00:00
|
|
|
*vpp = NULLVP;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
2008-10-23 15:53:51 +00:00
|
|
|
ip = malloc(sizeof(struct iso_node), M_ISOFSNODE,
|
2003-02-19 05:47:46 +00:00
|
|
|
M_WAITOK | M_ZERO);
|
1997-02-10 02:22:35 +00:00
|
|
|
vp->v_data = ip;
|
|
|
|
ip->i_vnode = vp;
|
|
|
|
ip->i_number = ino;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2008-01-24 12:34:30 +00:00
|
|
|
lockmgr(vp->v_vnlock, LK_EXCLUSIVE, NULL);
|
2007-03-13 01:50:27 +00:00
|
|
|
error = insmntque(vp, mp);
|
|
|
|
if (error != 0) {
|
|
|
|
free(ip, M_ISOFSNODE);
|
|
|
|
*vpp = NULLVP;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
error = vfs_hash_insert(vp, ino, flags, td, vpp, NULL, NULL);
|
2005-03-15 20:00:03 +00:00
|
|
|
if (error || *vpp != NULL)
|
2002-03-17 01:25:47 +00:00
|
|
|
return (error);
|
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (isodir == 0) {
|
|
|
|
int lbn, off;
|
|
|
|
|
|
|
|
lbn = lblkno(imp, ino);
|
|
|
|
if (lbn >= imp->volume_space_size) {
|
|
|
|
vput(vp);
|
|
|
|
printf("fhtovp: lbn exceed volume space %d\n", lbn);
|
|
|
|
return (ESTALE);
|
|
|
|
}
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
off = blkoff(imp, ino);
|
|
|
|
if (off + ISO_DIRECTORY_RECORD_SIZE > imp->logical_block_size) {
|
|
|
|
vput(vp);
|
|
|
|
printf("fhtovp: crosses block boundary %d\n",
|
|
|
|
off + ISO_DIRECTORY_RECORD_SIZE);
|
|
|
|
return (ESTALE);
|
|
|
|
}
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
error = bread(imp->im_devvp,
|
|
|
|
lbn << (imp->im_bshift - DEV_BSHIFT),
|
|
|
|
imp->logical_block_size, NOCRED, &bp);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
brelse(bp);
|
|
|
|
printf("fhtovp: bread error %d\n",error);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
isodir = (struct iso_directory_record *)(bp->b_data + off);
|
|
|
|
|
|
|
|
if (off + isonum_711(isodir->length) >
|
|
|
|
imp->logical_block_size) {
|
|
|
|
vput(vp);
|
|
|
|
if (bp != 0)
|
|
|
|
brelse(bp);
|
|
|
|
printf("fhtovp: directory crosses block boundary %d[off=%d/len=%d]\n",
|
|
|
|
off +isonum_711(isodir->length), off,
|
|
|
|
isonum_711(isodir->length));
|
|
|
|
return (ESTALE);
|
|
|
|
}
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
#if 0
|
|
|
|
if (isonum_733(isodir->extent) +
|
|
|
|
isonum_711(isodir->ext_attr_length) != ifhp->ifid_start) {
|
|
|
|
if (bp != 0)
|
|
|
|
brelse(bp);
|
|
|
|
printf("fhtovp: file start miss %d vs %d\n",
|
|
|
|
isonum_733(isodir->extent) + isonum_711(isodir->ext_attr_length),
|
|
|
|
ifhp->ifid_start);
|
|
|
|
return (ESTALE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else
|
|
|
|
bp = 0;
|
|
|
|
|
|
|
|
ip->i_mnt = imp;
|
|
|
|
|
|
|
|
if (relocated) {
|
|
|
|
/*
|
|
|
|
* On relocated directories we must
|
|
|
|
* read the `.' entry out of a dir.
|
|
|
|
*/
|
|
|
|
ip->iso_start = ino >> imp->im_bshift;
|
|
|
|
if (bp != 0)
|
|
|
|
brelse(bp);
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = cd9660_blkatoff(vp, (off_t)0, NULL, &bp)) != 0) {
|
1997-02-10 02:22:35 +00:00
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
isodir = (struct iso_directory_record *)bp->b_data;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
ip->iso_extent = isonum_733(isodir->extent);
|
|
|
|
ip->i_size = isonum_733(isodir->size);
|
|
|
|
ip->iso_start = isonum_711(isodir->ext_attr_length) + ip->iso_extent;
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
/*
|
|
|
|
* Setup time stamp, attribute
|
|
|
|
*/
|
|
|
|
vp->v_type = VNON;
|
|
|
|
switch (imp->iso_ftype) {
|
|
|
|
default: /* ISO_FTYPE_9660 */
|
|
|
|
{
|
|
|
|
struct buf *bp2;
|
|
|
|
int off;
|
|
|
|
if ((imp->im_flags & ISOFSMNT_EXTATT)
|
|
|
|
&& (off = isonum_711(isodir->ext_attr_length)))
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
cd9660_blkatoff(vp, (off_t)-(off << imp->im_bshift), NULL,
|
1997-02-10 02:22:35 +00:00
|
|
|
&bp2);
|
|
|
|
else
|
|
|
|
bp2 = NULL;
|
|
|
|
cd9660_defattr(isodir, ip, bp2, ISO_FTYPE_9660);
|
|
|
|
cd9660_deftstamp(isodir, ip, bp2, ISO_FTYPE_9660);
|
|
|
|
if (bp2)
|
|
|
|
brelse(bp2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ISO_FTYPE_RRIP:
|
|
|
|
cd9660_rrip_analyze(isodir, ip, imp);
|
|
|
|
break;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (bp != 0)
|
|
|
|
brelse(bp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the associated vnode
|
|
|
|
*/
|
|
|
|
switch (vp->v_type = IFTOVT(ip->inode.iso_mode)) {
|
|
|
|
case VFIFO:
|
2004-12-01 23:16:38 +00:00
|
|
|
vp->v_op = &cd9660_fifoops;
|
1997-02-10 02:22:35 +00:00
|
|
|
break;
|
1999-01-27 21:50:00 +00:00
|
|
|
default:
|
2009-01-28 18:54:56 +00:00
|
|
|
VN_LOCK_ASHARE(vp);
|
1999-01-27 21:50:00 +00:00
|
|
|
break;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (ip->iso_extent == imp->root_extent)
|
2002-08-04 10:29:36 +00:00
|
|
|
vp->v_vflag |= VV_ROOT;
|
1997-02-10 02:22:35 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* XXX need generation number?
|
|
|
|
*/
|
2004-07-03 16:56:45 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
*vpp = vp;
|
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|