2005-01-06 18:27:30 +00:00
|
|
|
/*-
|
1995-11-05 23:25:12 +00:00
|
|
|
* modified for EXT2FS support in Lites 1.1
|
|
|
|
*
|
|
|
|
* Aug 1995, Godmar Back (gback@cs.utah.edu)
|
|
|
|
* University of Utah, Department of Computer Science
|
|
|
|
*/
|
2005-01-06 18:27:30 +00:00
|
|
|
/*-
|
2017-11-20 19:43:44 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2009-01-18 14:54:46 +00:00
|
|
|
* Copyright (c) 1989, 1991, 1993, 1994
|
1995-11-05 23:25:12 +00:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
2016-12-02 19:47:23 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-11-05 23:25:12 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)ffs_vfsops.c 8.8 (Berkeley) 4/18/94
|
2002-03-23 13:48:10 +00:00
|
|
|
* $FreeBSD$
|
1995-11-05 23:25:12 +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>
|
1995-11-05 23:25:12 +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>
|
1995-11-05 23:25:12 +00:00
|
|
|
#include <sys/buf.h>
|
1997-09-28 02:23:10 +00:00
|
|
|
#include <sys/conf.h>
|
2012-03-08 21:06:05 +00:00
|
|
|
#include <sys/endian.h>
|
1997-03-23 03:37:54 +00:00
|
|
|
#include <sys/fcntl.h>
|
1995-11-05 23:25:12 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/stat.h>
|
2001-01-24 12:35:55 +00:00
|
|
|
#include <sys/mutex.h>
|
2000-10-04 01:29:17 +00:00
|
|
|
|
2004-10-29 10:42:30 +00:00
|
|
|
#include <geom/geom.h>
|
|
|
|
#include <geom/geom_vfs.h>
|
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
#include <fs/ext2fs/ext2_mount.h>
|
|
|
|
#include <fs/ext2fs/inode.h>
|
1999-12-15 23:02:35 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
#include <fs/ext2fs/fs.h>
|
|
|
|
#include <fs/ext2fs/ext2fs.h>
|
2011-02-01 18:30:52 +00:00
|
|
|
#include <fs/ext2fs/ext2_dinode.h>
|
|
|
|
#include <fs/ext2fs/ext2_extern.h>
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2009-06-03 14:18:37 +00:00
|
|
|
static int ext2_flushfiles(struct mount *mp, int flags, struct thread *td);
|
|
|
|
static int ext2_mountfs(struct vnode *, struct mount *);
|
|
|
|
static int ext2_reload(struct mount *mp, struct thread *td);
|
|
|
|
static int ext2_sbupdate(struct ext2mount *, int);
|
2010-01-14 14:30:54 +00:00
|
|
|
static int ext2_cgupdate(struct ext2mount *, int);
|
2003-06-12 20:48:38 +00:00
|
|
|
static vfs_unmount_t ext2_unmount;
|
|
|
|
static vfs_root_t ext2_root;
|
|
|
|
static vfs_statfs_t ext2_statfs;
|
|
|
|
static vfs_sync_t ext2_sync;
|
|
|
|
static vfs_vget_t ext2_vget;
|
|
|
|
static vfs_fhtovp_t ext2_fhtovp;
|
2004-07-30 22:08:52 +00:00
|
|
|
static vfs_mount_t ext2_mount;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2005-10-31 15:41:29 +00:00
|
|
|
MALLOC_DEFINE(M_EXT2NODE, "ext2_node", "EXT2 vnode private part");
|
|
|
|
static MALLOC_DEFINE(M_EXT2MNT, "ext2_mount", "EXT2 mount structure");
|
1997-10-10 18:13:06 +00:00
|
|
|
|
1995-12-17 21:14:36 +00:00
|
|
|
static struct vfsops ext2fs_vfsops = {
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_fhtovp = ext2_fhtovp,
|
2004-07-30 22:08:52 +00:00
|
|
|
.vfs_mount = ext2_mount,
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_root = ext2_root, /* root inode via vget */
|
|
|
|
.vfs_statfs = ext2_statfs,
|
|
|
|
.vfs_sync = ext2_sync,
|
|
|
|
.vfs_unmount = ext2_unmount,
|
|
|
|
.vfs_vget = ext2_vget,
|
1995-11-05 23:25:12 +00:00
|
|
|
};
|
|
|
|
|
1998-09-07 13:17:06 +00:00
|
|
|
VFS_SET(ext2fs_vfsops, ext2fs, 0);
|
2004-10-29 10:42:30 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
static int ext2_check_sb_compat(struct ext2fs *es, struct cdev *dev,
|
2002-03-23 13:10:13 +00:00
|
|
|
int ronly);
|
2002-03-19 22:40:48 +00:00
|
|
|
static int compute_sb_data(struct vnode * devvp,
|
2010-01-14 14:30:54 +00:00
|
|
|
struct ext2fs * es, struct m_ext2fs * fs);
|
1996-06-12 05:11:41 +00:00
|
|
|
|
2011-01-21 21:33:46 +00:00
|
|
|
static const char *ext2_opts[] = { "acls", "async", "noatime", "noclusterr",
|
|
|
|
"noclusterw", "noexec", "export", "force", "from", "multilabel",
|
|
|
|
"suiddir", "nosymfollow", "sync", "union", NULL };
|
2009-01-18 14:54:46 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* VFS Operations.
|
|
|
|
*
|
|
|
|
* mount system call
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_mount(struct mount *mp)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2002-05-24 17:38:01 +00:00
|
|
|
struct vfsoptlist *opts;
|
1995-11-05 23:25:12 +00:00
|
|
|
struct vnode *devvp;
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td;
|
2012-07-22 15:40:31 +00:00
|
|
|
struct ext2mount *ump = NULL;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
2009-06-03 14:18:37 +00:00
|
|
|
struct nameidata nd, *ndp = &nd;
|
|
|
|
accmode_t accmode;
|
2002-05-24 17:38:01 +00:00
|
|
|
char *path, *fspec;
|
|
|
|
int error, flags, len;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2009-05-11 15:33:26 +00:00
|
|
|
td = curthread;
|
2002-05-24 17:38:01 +00:00
|
|
|
opts = mp->mnt_optnew;
|
|
|
|
|
2004-12-06 20:34:32 +00:00
|
|
|
if (vfs_filteropt(opts, ext2_opts))
|
|
|
|
return (EINVAL);
|
|
|
|
|
2002-05-24 17:38:01 +00:00
|
|
|
vfs_getopt(opts, "fspath", (void **)&path, NULL);
|
2001-03-01 21:00:17 +00:00
|
|
|
/* Double-check the length of path.. */
|
2013-02-02 22:23:45 +00:00
|
|
|
if (strlen(path) >= MAXMNTLEN)
|
2001-03-01 21:00:17 +00:00
|
|
|
return (ENAMETOOLONG);
|
2002-05-24 17:38:01 +00:00
|
|
|
|
|
|
|
fspec = NULL;
|
|
|
|
error = vfs_getopt(opts, "from", (void **)&fspec, &len);
|
|
|
|
if (!error && fspec[len - 1] != '\0')
|
|
|
|
return (EINVAL);
|
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* If updating, check whether changing from read-only to
|
|
|
|
* read/write; if there is no device name, that's all we do.
|
|
|
|
*/
|
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
2002-05-16 19:08:03 +00:00
|
|
|
ump = VFSTOEXT2(mp);
|
2016-12-28 15:43:17 +00:00
|
|
|
fs = ump->um_e2fs;
|
1995-11-05 23:25:12 +00:00
|
|
|
error = 0;
|
2010-01-14 14:30:54 +00:00
|
|
|
if (fs->e2fs_ronly == 0 &&
|
2004-12-06 20:34:32 +00:00
|
|
|
vfs_flagopt(opts, "ro", NULL, 0)) {
|
2009-05-11 15:33:26 +00:00
|
|
|
error = VFS_SYNC(mp, MNT_WAIT);
|
2004-10-29 10:42:30 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
1995-11-05 23:25:12 +00:00
|
|
|
flags = WRITECLOSE;
|
|
|
|
if (mp->mnt_flag & MNT_FORCE)
|
|
|
|
flags |= FORCECLOSE;
|
2001-09-12 08:38:13 +00:00
|
|
|
error = ext2_flushfiles(mp, flags, td);
|
2018-01-29 21:54:13 +00:00
|
|
|
if (error == 0 && fs->e2fs_wasvalid &&
|
|
|
|
ext2_cgupdate(ump, MNT_WAIT) == 0) {
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs->e2fs_state |= E2FS_ISCLEAN;
|
1998-09-26 06:18:59 +00:00
|
|
|
ext2_sbupdate(ump, MNT_WAIT);
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_ronly = 1;
|
2004-12-06 20:34:32 +00:00
|
|
|
vfs_flagopt(opts, "ro", &mp->mnt_flag, MNT_RDONLY);
|
2004-10-29 10:42:30 +00:00
|
|
|
g_topology_lock();
|
|
|
|
g_access(ump->um_cp, 0, -1, 0);
|
|
|
|
g_topology_unlock();
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
if (!error && (mp->mnt_flag & MNT_RELOAD))
|
2005-01-24 13:31:22 +00:00
|
|
|
error = ext2_reload(mp, td);
|
1995-11-05 23:25:12 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2000-03-09 05:21:10 +00:00
|
|
|
devvp = ump->um_devvp;
|
2010-01-14 14:30:54 +00:00
|
|
|
if (fs->e2fs_ronly && !vfs_flagopt(opts, "ro", NULL, 0)) {
|
|
|
|
if (ext2_check_sb_compat(fs->e2fs, devvp->v_rdev, 0))
|
2004-12-06 20:34:32 +00:00
|
|
|
return (EPERM);
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1998-09-09 20:21:18 +00:00
|
|
|
/*
|
|
|
|
* If upgrade to read-write by non-root, then verify
|
|
|
|
* that user has necessary permissions on the device.
|
|
|
|
*/
|
2008-01-10 01:10:58 +00:00
|
|
|
vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
|
2006-11-06 13:42:10 +00:00
|
|
|
error = VOP_ACCESS(devvp, VREAD | VWRITE,
|
|
|
|
td->td_ucred, td);
|
|
|
|
if (error)
|
|
|
|
error = priv_check(td, PRIV_VFS_MOUNT_PERM);
|
|
|
|
if (error) {
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(devvp, 0);
|
2006-11-06 13:42:10 +00:00
|
|
|
return (error);
|
1998-09-09 20:21:18 +00:00
|
|
|
}
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(devvp, 0);
|
2004-10-29 10:42:30 +00:00
|
|
|
g_topology_lock();
|
|
|
|
error = g_access(ump->um_cp, 0, 1, 0);
|
|
|
|
g_topology_unlock();
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1998-09-09 20:21:18 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
if ((fs->e2fs->e2fs_state & E2FS_ISCLEAN) == 0 ||
|
|
|
|
(fs->e2fs->e2fs_state & E2FS_ERRORS)) {
|
1998-09-26 06:18:59 +00:00
|
|
|
if (mp->mnt_flag & MNT_FORCE) {
|
2009-06-07 08:42:26 +00:00
|
|
|
printf(
|
2010-01-14 14:30:54 +00:00
|
|
|
"WARNING: %s was not properly dismounted\n", fs->e2fs_fsmnt);
|
1998-09-26 06:18:59 +00:00
|
|
|
} else {
|
2009-06-07 08:42:26 +00:00
|
|
|
printf(
|
|
|
|
"WARNING: R/W mount of %s denied. Filesystem is not clean - run fsck\n",
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_fsmnt);
|
1998-09-26 06:18:59 +00:00
|
|
|
return (EPERM);
|
|
|
|
}
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs->e2fs_state &= ~E2FS_ISCLEAN;
|
|
|
|
(void)ext2_cgupdate(ump, MNT_WAIT);
|
|
|
|
fs->e2fs_ronly = 0;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
2004-12-06 20:34:32 +00:00
|
|
|
mp->mnt_flag &= ~MNT_RDONLY;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
2006-05-26 00:32:21 +00:00
|
|
|
if (vfs_flagopt(opts, "export", NULL, 0)) {
|
|
|
|
/* Process export requests in vfs_mount.c. */
|
|
|
|
return (error);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* Not an update, or updating the name: look up the name
|
2004-02-13 20:23:16 +00:00
|
|
|
* and verify that it refers to a sensible disk device.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2002-05-24 17:38:01 +00:00
|
|
|
if (fspec == NULL)
|
|
|
|
return (EINVAL);
|
2005-09-02 15:27:23 +00:00
|
|
|
NDINIT(ndp, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, fspec, td);
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = namei(ndp)) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
1999-12-15 23:02:35 +00:00
|
|
|
NDFREE(ndp, NDF_ONLY_PNBUF);
|
1995-11-05 23:25:12 +00:00
|
|
|
devvp = ndp->ni_vp;
|
|
|
|
|
2000-01-10 12:04:27 +00:00
|
|
|
if (!vn_isdisk(devvp, &error)) {
|
2005-09-02 15:27:23 +00:00
|
|
|
vput(devvp);
|
2000-01-10 12:04:27 +00:00
|
|
|
return (error);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
1998-09-09 20:21:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If mount by non-root, then verify that user has necessary
|
|
|
|
* permissions on the device.
|
2006-11-06 13:42:10 +00:00
|
|
|
*
|
|
|
|
* XXXRW: VOP_ACCESS() enough?
|
1998-09-09 20:21:18 +00:00
|
|
|
*/
|
2008-10-28 13:44:11 +00:00
|
|
|
accmode = VREAD;
|
2006-11-06 13:42:10 +00:00
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0)
|
2008-10-28 13:44:11 +00:00
|
|
|
accmode |= VWRITE;
|
|
|
|
error = VOP_ACCESS(devvp, accmode, td->td_ucred, td);
|
2006-11-06 13:42:10 +00:00
|
|
|
if (error)
|
|
|
|
error = priv_check(td, PRIV_VFS_MOUNT_PERM);
|
|
|
|
if (error) {
|
|
|
|
vput(devvp);
|
|
|
|
return (error);
|
1998-09-09 20:21:18 +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 = ext2_mountfs(devvp, mp);
|
1997-09-27 13:40:20 +00:00
|
|
|
} else {
|
2005-09-03 20:23:41 +00:00
|
|
|
if (devvp != ump->um_devvp) {
|
|
|
|
vput(devvp);
|
|
|
|
return (EINVAL); /* needs translation */
|
|
|
|
} else
|
2005-09-02 15:27:23 +00:00
|
|
|
vput(devvp);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
vrele(devvp);
|
|
|
|
return (error);
|
|
|
|
}
|
2002-05-16 19:08:03 +00:00
|
|
|
ump = VFSTOEXT2(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
fs = ump->um_e2fs;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
2001-03-01 21:00:17 +00:00
|
|
|
/*
|
|
|
|
* Note that this strncpy() is ok because of a check at the start
|
|
|
|
* of ext2_mount().
|
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
strncpy(fs->e2fs_fsmnt, path, MAXMNTLEN);
|
|
|
|
fs->e2fs_fsmnt[MAXMNTLEN - 1] = '\0';
|
2004-12-06 20:34:32 +00:00
|
|
|
vfs_mountedfrom(mp, fspec);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2009-06-03 14:18:37 +00:00
|
|
|
static int
|
2010-01-14 14:30:54 +00:00
|
|
|
ext2_check_sb_compat(struct ext2fs *es, struct cdev *dev, int ronly)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2017-07-02 20:47:25 +00:00
|
|
|
uint32_t i, mask;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
if (es->e2fs_magic != E2FS_MAGIC) {
|
2000-01-02 17:40:02 +00:00
|
|
|
printf("ext2fs: %s: wrong magic number %#x (expected %#x)\n",
|
2010-01-14 14:30:54 +00:00
|
|
|
devtoname(dev), es->e2fs_magic, E2FS_MAGIC);
|
2000-01-02 17:40:02 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
if (es->e2fs_rev > E2FS_REV0) {
|
2018-02-05 15:14:01 +00:00
|
|
|
mask = es->e2fs_features_incompat & ~(EXT2F_INCOMPAT_SUPP);
|
2017-07-02 20:47:25 +00:00
|
|
|
if (mask) {
|
|
|
|
printf("WARNING: mount of %s denied due to "
|
|
|
|
"unsupported optional features:\n", devtoname(dev));
|
|
|
|
for (i = 0;
|
|
|
|
i < sizeof(incompat)/sizeof(struct ext2_feature);
|
|
|
|
i++)
|
|
|
|
if (mask & incompat[i].mask)
|
|
|
|
printf("%s ", incompat[i].name);
|
|
|
|
printf("\n");
|
2000-01-02 17:40:02 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2017-07-02 20:47:25 +00:00
|
|
|
mask = es->e2fs_features_rocompat & ~EXT2F_ROCOMPAT_SUPP;
|
|
|
|
if (!ronly && mask) {
|
2009-06-03 14:18:37 +00:00
|
|
|
printf("WARNING: R/W mount of %s denied due to "
|
2017-07-02 20:47:25 +00:00
|
|
|
"unsupported optional features:\n", devtoname(dev));
|
|
|
|
for (i = 0;
|
|
|
|
i < sizeof(ro_compat)/sizeof(struct ext2_feature);
|
|
|
|
i++)
|
|
|
|
if (mask & ro_compat[i].mask)
|
|
|
|
printf("%s ", ro_compat[i].name);
|
|
|
|
printf("\n");
|
2000-01-02 17:40:02 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:54:13 +00:00
|
|
|
static e4fs_daddr_t
|
|
|
|
cg_location(struct m_ext2fs *fs, int number)
|
|
|
|
{
|
|
|
|
int cg, descpb, logical_sb, has_super = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust logical superblock block number.
|
|
|
|
* Godmar thinks: if the blocksize is greater than 1024, then
|
|
|
|
* the superblock is logically part of block zero.
|
|
|
|
*/
|
|
|
|
logical_sb = fs->e2fs_bsize > SBSIZE ? 0 : 1;
|
|
|
|
|
|
|
|
if (!EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_META_BG) ||
|
|
|
|
number < fs->e2fs->e3fs_first_meta_bg)
|
|
|
|
return (logical_sb + number + 1);
|
|
|
|
|
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT))
|
|
|
|
descpb = fs->e2fs_bsize / sizeof(struct ext2_gd);
|
|
|
|
else
|
|
|
|
descpb = fs->e2fs_bsize / E2FS_REV0_GD_SIZE;
|
|
|
|
|
|
|
|
cg = descpb * number;
|
|
|
|
|
|
|
|
if (ext2_cg_has_sb(fs, cg))
|
|
|
|
has_super = 1;
|
|
|
|
|
|
|
|
return (has_super + cg * (e4fs_daddr_t)EXT2_BLOCKS_PER_GROUP(fs) +
|
|
|
|
fs->e2fs->e2fs_first_dblock);
|
|
|
|
}
|
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2016-04-08 04:29:05 +00:00
|
|
|
* This computes the fields of the m_ext2fs structure from the
|
|
|
|
* data in the ext2fs structure read in.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2009-06-03 14:18:37 +00:00
|
|
|
static int
|
2010-01-14 14:30:54 +00:00
|
|
|
compute_sb_data(struct vnode *devvp, struct ext2fs *es,
|
|
|
|
struct m_ext2fs *fs)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2018-01-05 10:04:01 +00:00
|
|
|
int g_count = 0, error;
|
|
|
|
int i, j;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct buf *bp;
|
2018-01-05 10:04:01 +00:00
|
|
|
uint32_t e2fs_descpb, e2fs_gdbcount_alloc;
|
|
|
|
|
|
|
|
fs->e2fs_bcount = es->e2fs_bcount;
|
|
|
|
fs->e2fs_rbcount = es->e2fs_rbcount;
|
|
|
|
fs->e2fs_fbcount = es->e2fs_fbcount;
|
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT)) {
|
|
|
|
fs->e2fs_bcount |= (uint64_t)(es->e4fs_bcount_hi) << 32;
|
|
|
|
fs->e2fs_rbcount |= (uint64_t)(es->e4fs_rbcount_hi) << 32;
|
|
|
|
fs->e2fs_fbcount |= (uint64_t)(es->e4fs_fbcount_hi) << 32;
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_bshift = EXT2_MIN_BLOCK_LOG_SIZE + es->e2fs_log_bsize;
|
2013-02-08 21:09:44 +00:00
|
|
|
fs->e2fs_bsize = 1U << fs->e2fs_bshift;
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_fsbtodb = es->e2fs_log_bsize + 1;
|
|
|
|
fs->e2fs_qbmask = fs->e2fs_bsize - 1;
|
|
|
|
fs->e2fs_fsize = EXT2_MIN_FRAG_SIZE << es->e2fs_log_fsize;
|
|
|
|
if (fs->e2fs_fsize)
|
|
|
|
fs->e2fs_fpb = fs->e2fs_bsize / fs->e2fs_fsize;
|
|
|
|
fs->e2fs_bpg = es->e2fs_bpg;
|
|
|
|
fs->e2fs_fpg = es->e2fs_fpg;
|
|
|
|
fs->e2fs_ipg = es->e2fs_ipg;
|
|
|
|
if (es->e2fs_rev == E2FS_REV0) {
|
2016-12-28 15:43:17 +00:00
|
|
|
fs->e2fs_isize = E2FS_REV0_INODE_SIZE;
|
2009-06-03 14:18:37 +00:00
|
|
|
} else {
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_isize = es->e2fs_inode_size;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Simple sanity check for superblock inode size value.
|
|
|
|
*/
|
2012-03-08 21:06:05 +00:00
|
|
|
if (EXT2_INODE_SIZE(fs) < E2FS_REV0_INODE_SIZE ||
|
|
|
|
EXT2_INODE_SIZE(fs) > fs->e2fs_bsize ||
|
2010-01-14 14:30:54 +00:00
|
|
|
(fs->e2fs_isize & (fs->e2fs_isize - 1)) != 0) {
|
2012-03-08 21:06:05 +00:00
|
|
|
printf("ext2fs: invalid inode size %d\n",
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_isize);
|
2009-06-03 14:18:37 +00:00
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
}
|
2012-03-08 21:06:05 +00:00
|
|
|
/* Check for extra isize in big inodes. */
|
2012-12-20 02:22:36 +00:00
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_EXTRA_ISIZE) &&
|
2012-03-08 21:06:05 +00:00
|
|
|
EXT2_INODE_SIZE(fs) < sizeof(struct ext2fs_dinode)) {
|
|
|
|
printf("ext2fs: no space for extra inode timestamps\n");
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2018-01-14 20:46:39 +00:00
|
|
|
/* Check checksum features */
|
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_GDT_CSUM) &&
|
|
|
|
EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_METADATA_CKSUM)) {
|
|
|
|
printf("ext2fs: incorrect checksum features combination\n");
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2017-06-20 14:28:51 +00:00
|
|
|
/* Check for group descriptor size */
|
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT) &&
|
|
|
|
(es->e3fs_desc_size != sizeof(struct ext2_gd))) {
|
|
|
|
printf("ext2fs: group descriptor size unsupported %d\n",
|
|
|
|
es->e3fs_desc_size);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2018-01-29 21:54:13 +00:00
|
|
|
/* Check for group size */
|
|
|
|
if (fs->e2fs_bpg != fs->e2fs_bsize * 8) {
|
|
|
|
printf("ext2fs: non-standard group size unsupported %d\n",
|
|
|
|
fs->e2fs_bpg);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2012-03-08 21:06:05 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_ipb = fs->e2fs_bsize / EXT2_INODE_SIZE(fs);
|
2015-02-15 01:12:15 +00:00
|
|
|
fs->e2fs_itpg = fs->e2fs_ipg / fs->e2fs_ipb;
|
2009-06-03 14:18:37 +00:00
|
|
|
/* s_resuid / s_resgid ? */
|
2018-01-05 10:04:01 +00:00
|
|
|
fs->e2fs_gcount = howmany(fs->e2fs_bcount - es->e2fs_first_dblock,
|
2016-04-26 01:41:15 +00:00
|
|
|
EXT2_BLOCKS_PER_GROUP(fs));
|
2018-01-05 10:04:01 +00:00
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT)) {
|
|
|
|
e2fs_descpb = fs->e2fs_bsize / sizeof(struct ext2_gd);
|
|
|
|
e2fs_gdbcount_alloc = howmany(fs->e2fs_gcount, e2fs_descpb);
|
|
|
|
} else {
|
|
|
|
e2fs_descpb = fs->e2fs_bsize / E2FS_REV0_GD_SIZE;
|
|
|
|
e2fs_gdbcount_alloc = howmany(fs->e2fs_gcount,
|
|
|
|
fs->e2fs_bsize / sizeof(struct ext2_gd));
|
|
|
|
}
|
|
|
|
fs->e2fs_gdbcount = howmany(fs->e2fs_gcount, e2fs_descpb);
|
2018-01-24 16:44:57 +00:00
|
|
|
fs->e2fs_gd = malloc(e2fs_gdbcount_alloc * fs->e2fs_bsize,
|
2018-01-05 10:04:01 +00:00
|
|
|
M_EXT2MNT, M_WAITOK | M_ZERO);
|
2018-01-24 16:44:57 +00:00
|
|
|
fs->e2fs_contigdirs = malloc(fs->e2fs_gcount *
|
2015-02-15 01:12:15 +00:00
|
|
|
sizeof(*fs->e2fs_contigdirs), M_EXT2MNT, M_WAITOK | M_ZERO);
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2018-01-05 10:04:01 +00:00
|
|
|
for (i = 0; i < fs->e2fs_gdbcount; i++) {
|
2016-12-28 15:43:17 +00:00
|
|
|
error = bread(devvp,
|
2018-01-29 21:54:13 +00:00
|
|
|
fsbtodb(fs, cg_location(fs, i)),
|
2016-12-28 15:43:17 +00:00
|
|
|
fs->e2fs_bsize, NOCRED, &bp);
|
2010-01-14 14:30:54 +00:00
|
|
|
if (error) {
|
2015-02-15 14:25:00 +00:00
|
|
|
free(fs->e2fs_contigdirs, M_EXT2MNT);
|
2010-01-14 14:30:54 +00:00
|
|
|
free(fs->e2fs_gd, M_EXT2MNT);
|
|
|
|
brelse(bp);
|
|
|
|
return (error);
|
2009-06-03 14:18:37 +00:00
|
|
|
}
|
2018-01-05 10:04:01 +00:00
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT)) {
|
|
|
|
memcpy(&fs->e2fs_gd[
|
|
|
|
i * fs->e2fs_bsize / sizeof(struct ext2_gd)],
|
|
|
|
bp->b_data, fs->e2fs_bsize);
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < e2fs_descpb &&
|
|
|
|
g_count < fs->e2fs_gcount; j++, g_count++)
|
|
|
|
memcpy(&fs->e2fs_gd[g_count],
|
|
|
|
bp->b_data + j * E2FS_REV0_GD_SIZE,
|
|
|
|
E2FS_REV0_GD_SIZE);
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
brelse(bp);
|
|
|
|
bp = NULL;
|
2009-06-03 13:25:50 +00:00
|
|
|
}
|
2018-01-14 20:46:39 +00:00
|
|
|
/* Precompute checksum seed for all metadata */
|
|
|
|
ext2_sb_csum_set_seed(fs);
|
|
|
|
/* Verfy cg csum */
|
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_GDT_CSUM) ||
|
|
|
|
EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_METADATA_CKSUM)) {
|
2017-06-20 14:28:51 +00:00
|
|
|
error = ext2_gd_csum_verify(fs, devvp->v_rdev);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
2015-02-15 01:12:15 +00:00
|
|
|
/* Initialization for the ext2 Orlov allocator variant. */
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_total_dir = 0;
|
2015-02-15 01:12:15 +00:00
|
|
|
for (i = 0; i < fs->e2fs_gcount; i++)
|
2018-01-14 20:46:39 +00:00
|
|
|
fs->e2fs_total_dir += e2fs_gd_get_ndirs(&fs->e2fs_gd[i]);
|
2015-02-15 01:12:15 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
if (es->e2fs_rev == E2FS_REV0 ||
|
2012-03-08 21:06:05 +00:00
|
|
|
!EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_LARGEFILE))
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_maxfilesize = 0x7fffffff;
|
2016-01-21 14:50:28 +00:00
|
|
|
else {
|
|
|
|
fs->e2fs_maxfilesize = 0xffffffffffff;
|
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_HUGE_FILE))
|
|
|
|
fs->e2fs_maxfilesize = 0x7fffffffffffffff;
|
|
|
|
}
|
|
|
|
if (es->e4fs_flags & E2FS_UNSIGNED_HASH) {
|
|
|
|
fs->e2fs_uhash = 3;
|
|
|
|
} else if ((es->e4fs_flags & E2FS_SIGNED_HASH) == 0) {
|
|
|
|
#ifdef __CHAR_UNSIGNED__
|
|
|
|
es->e4fs_flags |= E2FS_UNSIGNED_HASH;
|
|
|
|
fs->e2fs_uhash = 3;
|
|
|
|
#else
|
|
|
|
es->e4fs_flags |= E2FS_SIGNED_HASH;
|
|
|
|
#endif
|
|
|
|
}
|
2018-01-14 20:46:39 +00:00
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_METADATA_CKSUM))
|
|
|
|
error = ext2_sb_csum_verify(fs);
|
2016-01-21 14:50:28 +00:00
|
|
|
|
2018-01-14 20:46:39 +00:00
|
|
|
return (error);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reload all incore data for a filesystem (used after running fsck on
|
|
|
|
* the root filesystem and finding things to fix). The filesystem must
|
|
|
|
* be mounted read-only.
|
|
|
|
*
|
|
|
|
* Things to do to update the mount:
|
|
|
|
* 1) invalidate all cached meta-data.
|
|
|
|
* 2) re-read superblock from disk.
|
2011-12-15 20:31:18 +00:00
|
|
|
* 3) invalidate all cluster summary information.
|
1995-11-05 23:25:12 +00:00
|
|
|
* 4) invalidate all inactive vnodes.
|
|
|
|
* 5) invalidate all cached file data.
|
|
|
|
* 6) re-read inode data for all active vnodes.
|
2010-01-14 14:30:54 +00:00
|
|
|
* XXX we are missing some steps, in particular # 3, this has to be reviewed.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2005-01-24 13:31:22 +00:00
|
|
|
ext2_reload(struct mount *mp, struct thread *td)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2006-01-09 20:42:19 +00:00
|
|
|
struct vnode *vp, *mvp, *devvp;
|
1995-11-05 23:25:12 +00:00
|
|
|
struct inode *ip;
|
|
|
|
struct buf *bp;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct ext2fs *es;
|
|
|
|
struct m_ext2fs *fs;
|
2011-12-15 20:31:18 +00:00
|
|
|
struct csum *sump;
|
|
|
|
int error, i;
|
|
|
|
int32_t *lp;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2003-11-05 11:56:58 +00:00
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (EINVAL);
|
|
|
|
/*
|
|
|
|
* Step 1: invalidate all cached meta-data.
|
|
|
|
*/
|
2003-11-05 11:56:58 +00:00
|
|
|
devvp = VFSTOEXT2(mp)->um_devvp;
|
2008-01-10 01:10:58 +00:00
|
|
|
vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
|
2008-10-10 21:23:50 +00:00
|
|
|
if (vinvalbuf(devvp, 0, 0, 0) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
panic("ext2_reload: dirty1");
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(devvp, 0);
|
2004-02-13 20:23:16 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* Step 2: re-read superblock from disk.
|
|
|
|
* constants have been adjusted for ext2
|
|
|
|
*/
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = bread(devvp, SBLOCK, SBSIZE, NOCRED, &bp)) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
2010-01-14 14:30:54 +00:00
|
|
|
es = (struct ext2fs *)bp->b_data;
|
2000-01-02 17:40:02 +00:00
|
|
|
if (ext2_check_sb_compat(es, devvp->v_rdev, 0) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
brelse(bp);
|
|
|
|
return (EIO); /* XXX needs translation */
|
|
|
|
}
|
2003-11-05 11:56:58 +00:00
|
|
|
fs = VFSTOEXT2(mp)->um_e2fs;
|
2010-01-14 14:30:54 +00:00
|
|
|
bcopy(bp->b_data, fs->e2fs, sizeof(struct ext2fs));
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2016-12-28 15:43:17 +00:00
|
|
|
if ((error = compute_sb_data(devvp, es, fs)) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
brelse(bp);
|
2009-06-03 14:18:37 +00:00
|
|
|
return (error);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
#ifdef UNKLAR
|
|
|
|
if (fs->fs_sbsize < SBSIZE)
|
|
|
|
bp->b_flags |= B_INVAL;
|
|
|
|
#endif
|
|
|
|
brelse(bp);
|
|
|
|
|
2011-12-15 20:31:18 +00:00
|
|
|
/*
|
|
|
|
* Step 3: invalidate all cluster summary information.
|
|
|
|
*/
|
|
|
|
if (fs->e2fs_contigsumsize > 0) {
|
|
|
|
lp = fs->e2fs_maxcluster;
|
|
|
|
sump = fs->e2fs_clustersum;
|
|
|
|
for (i = 0; i < fs->e2fs_gcount; i++, sump++) {
|
|
|
|
*lp++ = fs->e2fs_contigsumsize;
|
|
|
|
sump->cs_init = 0;
|
|
|
|
bzero(sump->cs_sum, fs->e2fs_contigsumsize + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
loop:
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2005-03-13 12:13:55 +00:00
|
|
|
* Step 4: invalidate all cached file data.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2001-09-12 08:38:13 +00:00
|
|
|
if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td)) {
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
|
1995-11-05 23:25:12 +00:00
|
|
|
goto loop;
|
1998-09-26 12:42:17 +00:00
|
|
|
}
|
2008-10-10 21:23:50 +00:00
|
|
|
if (vinvalbuf(vp, 0, 0, 0))
|
1995-11-05 23:25:12 +00:00
|
|
|
panic("ext2_reload: dirty2");
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2005-03-13 12:13:55 +00:00
|
|
|
* Step 5: re-read inode data for all active vnodes.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
|
|
|
ip = VTOI(vp);
|
2009-06-03 14:18:37 +00:00
|
|
|
error = bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
|
2010-01-14 14:30:54 +00:00
|
|
|
(int)fs->e2fs_bsize, NOCRED, &bp);
|
1998-09-26 12:42:17 +00:00
|
|
|
if (error) {
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2003-11-03 04:46:19 +00:00
|
|
|
vrele(vp);
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
|
|
|
}
|
2016-12-28 15:43:17 +00:00
|
|
|
ext2_ei2i((struct ext2fs_dinode *)((char *)bp->b_data +
|
2009-01-18 14:04:56 +00:00
|
|
|
EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number)), ip);
|
1995-11-05 23:25:12 +00:00
|
|
|
brelse(bp);
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2003-11-03 04:46:19 +00:00
|
|
|
vrele(vp);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-03 14:18:37 +00:00
|
|
|
* Common code for mount and mountroot.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_mountfs(struct vnode *devvp, struct mount *mp)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2002-05-16 19:43:28 +00:00
|
|
|
struct ext2mount *ump;
|
1995-11-05 23:25:12 +00:00
|
|
|
struct buf *bp;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
|
|
|
struct ext2fs *es;
|
2004-06-16 09:47:26 +00:00
|
|
|
struct cdev *dev = devvp->v_rdev;
|
2004-10-29 10:42:30 +00:00
|
|
|
struct g_consumer *cp;
|
|
|
|
struct bufobj *bo;
|
2011-12-15 20:31:18 +00:00
|
|
|
struct csum *sump;
|
2002-05-16 19:08:03 +00:00
|
|
|
int error;
|
1995-11-05 23:25:12 +00:00
|
|
|
int ronly;
|
2016-11-26 02:06:33 +00:00
|
|
|
int i;
|
|
|
|
u_long size;
|
2011-12-15 20:31:18 +00:00
|
|
|
int32_t *lp;
|
2013-02-08 20:58:00 +00:00
|
|
|
int32_t e2fs_maxcontig;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2004-12-06 20:34:32 +00:00
|
|
|
ronly = vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0);
|
2004-10-29 10:42:30 +00:00
|
|
|
/* XXX: use VOP_ACESS to check FS perms */
|
|
|
|
g_topology_lock();
|
|
|
|
error = g_vfs_open(devvp, &cp, "ext2fs", ronly ? 0 : 1);
|
|
|
|
g_topology_unlock();
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(devvp, 0);
|
1999-11-09 14:15:33 +00:00
|
|
|
if (error)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
2005-09-10 21:30:49 +00:00
|
|
|
|
|
|
|
/* XXX: should we check for some sectorsize or 512 instead? */
|
|
|
|
if (((SBSIZE % cp->provider->sectorsize) != 0) ||
|
|
|
|
(SBSIZE < cp->provider->sectorsize)) {
|
|
|
|
g_topology_lock();
|
2008-10-10 21:23:50 +00:00
|
|
|
g_vfs_close(cp);
|
2005-09-10 21:30:49 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
2004-10-29 10:42:30 +00:00
|
|
|
bo = &devvp->v_bufobj;
|
|
|
|
bo->bo_private = cp;
|
|
|
|
bo->bo_ops = g_vfs_bufops;
|
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;
|
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
bp = NULL;
|
|
|
|
ump = NULL;
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = bread(devvp, SBLOCK, SBSIZE, NOCRED, &bp)) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
goto out;
|
2010-01-14 14:30:54 +00:00
|
|
|
es = (struct ext2fs *)bp->b_data;
|
2000-01-02 17:40:02 +00:00
|
|
|
if (ext2_check_sb_compat(es, dev, ronly) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
error = EINVAL; /* XXX needs translation */
|
|
|
|
goto out;
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
if ((es->e2fs_state & E2FS_ISCLEAN) == 0 ||
|
|
|
|
(es->e2fs_state & E2FS_ERRORS)) {
|
1998-09-26 06:18:59 +00:00
|
|
|
if (ronly || (mp->mnt_flag & MNT_FORCE)) {
|
2009-06-07 08:42:26 +00:00
|
|
|
printf(
|
|
|
|
"WARNING: Filesystem was not properly dismounted\n");
|
1998-09-26 06:18:59 +00:00
|
|
|
} else {
|
2009-06-07 08:42:26 +00:00
|
|
|
printf(
|
|
|
|
"WARNING: R/W mount denied. Filesystem is not clean - run fsck\n");
|
1998-09-26 06:18:59 +00:00
|
|
|
error = EPERM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2011-12-16 15:47:43 +00:00
|
|
|
ump = malloc(sizeof(*ump), M_EXT2MNT, M_WAITOK | M_ZERO);
|
2009-06-03 14:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* I don't know whether this is the right strategy. Note that
|
2016-04-08 04:29:05 +00:00
|
|
|
* we dynamically allocate both an m_ext2fs and an ext2fs
|
2009-06-03 14:18:37 +00:00
|
|
|
* while Linux keeps the super block in a locked buffer.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
ump->um_e2fs = malloc(sizeof(struct m_ext2fs),
|
2016-12-28 15:43:17 +00:00
|
|
|
M_EXT2MNT, M_WAITOK | M_ZERO);
|
2010-01-14 14:30:54 +00:00
|
|
|
ump->um_e2fs->e2fs = malloc(sizeof(struct ext2fs),
|
2016-12-28 15:43:17 +00:00
|
|
|
M_EXT2MNT, M_WAITOK);
|
2010-01-14 14:30:54 +00:00
|
|
|
mtx_init(EXT2_MTX(ump), "EXT2FS", "EXT2FS Lock", MTX_DEF);
|
|
|
|
bcopy(es, ump->um_e2fs->e2fs, (u_int)sizeof(struct ext2fs));
|
|
|
|
if ((error = compute_sb_data(devvp, ump->um_e2fs->e2fs, ump->um_e2fs)))
|
1998-09-26 07:16:41 +00:00
|
|
|
goto out;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
2011-12-15 20:31:18 +00:00
|
|
|
/*
|
|
|
|
* Calculate the maximum contiguous blocks and size of cluster summary
|
2016-12-28 15:43:17 +00:00
|
|
|
* array. In FFS this is done by newfs; however, the superblock
|
|
|
|
* in ext2fs doesn't have these variables, so we can calculate
|
2011-12-15 20:31:18 +00:00
|
|
|
* them here.
|
|
|
|
*/
|
2013-02-08 20:58:00 +00:00
|
|
|
e2fs_maxcontig = MAX(1, MAXPHYS / ump->um_e2fs->e2fs_bsize);
|
|
|
|
ump->um_e2fs->e2fs_contigsumsize = MIN(e2fs_maxcontig, EXT2_MAXCONTIG);
|
2011-12-15 20:31:18 +00:00
|
|
|
if (ump->um_e2fs->e2fs_contigsumsize > 0) {
|
|
|
|
size = ump->um_e2fs->e2fs_gcount * sizeof(int32_t);
|
|
|
|
ump->um_e2fs->e2fs_maxcluster = malloc(size, M_EXT2MNT, M_WAITOK);
|
|
|
|
size = ump->um_e2fs->e2fs_gcount * sizeof(struct csum);
|
|
|
|
ump->um_e2fs->e2fs_clustersum = malloc(size, M_EXT2MNT, M_WAITOK);
|
|
|
|
lp = ump->um_e2fs->e2fs_maxcluster;
|
|
|
|
sump = ump->um_e2fs->e2fs_clustersum;
|
|
|
|
for (i = 0; i < ump->um_e2fs->e2fs_gcount; i++, sump++) {
|
|
|
|
*lp++ = ump->um_e2fs->e2fs_contigsumsize;
|
|
|
|
sump->cs_init = 0;
|
2018-01-24 16:44:57 +00:00
|
|
|
sump->cs_sum = malloc((ump->um_e2fs->e2fs_contigsumsize + 1) *
|
2011-12-15 20:31:18 +00:00
|
|
|
sizeof(int32_t), M_EXT2MNT, M_WAITOK | M_ZERO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
brelse(bp);
|
|
|
|
bp = NULL;
|
|
|
|
fs = ump->um_e2fs;
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_ronly = ronly; /* ronly is set according to mnt_flags */
|
2009-06-03 14:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the fs is not mounted read-only, make sure the super block is
|
|
|
|
* always written back on a sync().
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs_wasvalid = fs->e2fs->e2fs_state & E2FS_ISCLEAN ? 1 : 0;
|
1995-11-05 23:25:12 +00:00
|
|
|
if (ronly == 0) {
|
2016-12-28 15:43:17 +00:00
|
|
|
fs->e2fs_fmod = 1; /* mark it modified */
|
2010-01-14 14:30:54 +00:00
|
|
|
fs->e2fs->e2fs_state &= ~E2FS_ISCLEAN; /* set fs invalid */
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = ump;
|
1999-08-23 21:07:13 +00:00
|
|
|
mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
|
1998-09-07 13:17:06 +00:00
|
|
|
mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
|
1995-11-05 23:25:12 +00:00
|
|
|
mp->mnt_maxsymlinklen = EXT2_MAXSYMLINKLEN;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
mp->mnt_flag |= MNT_LOCAL;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
ump->um_mountp = mp;
|
|
|
|
ump->um_dev = dev;
|
|
|
|
ump->um_devvp = devvp;
|
2004-11-06 18:18:58 +00:00
|
|
|
ump->um_bo = &devvp->v_bufobj;
|
|
|
|
ump->um_cp = cp;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Setting those two parameters allowed us to use
|
|
|
|
* ufs_bmap w/o changse!
|
|
|
|
*/
|
1995-11-05 23:25:12 +00:00
|
|
|
ump->um_nindir = EXT2_ADDR_PER_BLOCK(fs);
|
2010-01-14 14:30:54 +00:00
|
|
|
ump->um_bptrtodb = fs->e2fs->e2fs_log_bsize + 1;
|
1995-11-05 23:25:12 +00:00
|
|
|
ump->um_seqinc = EXT2_FRAGS_PER_BLOCK(fs);
|
2009-01-18 14:54:46 +00:00
|
|
|
if (ronly == 0)
|
1998-03-09 14:46:57 +00:00
|
|
|
ext2_sbupdate(ump, MNT_WAIT);
|
2010-01-14 14:30:54 +00:00
|
|
|
/*
|
|
|
|
* Initialize filesystem stat information in mount struct.
|
|
|
|
*/
|
|
|
|
MNT_ILOCK(mp);
|
2015-04-15 20:16:31 +00:00
|
|
|
mp->mnt_kern_flag |= MNTK_LOOKUP_SHARED | MNTK_EXTENDED_SHARED |
|
|
|
|
MNTK_USES_BCACHE;
|
2010-01-14 14:30:54 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (0);
|
|
|
|
out:
|
|
|
|
if (bp)
|
|
|
|
brelse(bp);
|
2004-10-29 10:42:30 +00:00
|
|
|
if (cp != NULL) {
|
|
|
|
g_topology_lock();
|
2008-10-10 21:23:50 +00:00
|
|
|
g_vfs_close(cp);
|
2004-10-29 10:42:30 +00:00
|
|
|
g_topology_unlock();
|
|
|
|
}
|
1995-11-05 23:25:12 +00:00
|
|
|
if (ump) {
|
2014-02-28 21:25:32 +00:00
|
|
|
mtx_destroy(EXT2_MTX(ump));
|
2010-01-14 14:30:54 +00:00
|
|
|
free(ump->um_e2fs->e2fs_gd, M_EXT2MNT);
|
|
|
|
free(ump->um_e2fs->e2fs_contigdirs, M_EXT2MNT);
|
|
|
|
free(ump->um_e2fs->e2fs, M_EXT2MNT);
|
2009-06-03 14:18:37 +00:00
|
|
|
free(ump->um_e2fs, M_EXT2MNT);
|
|
|
|
free(ump, M_EXT2MNT);
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = NULL;
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-06-03 14:18:37 +00:00
|
|
|
* Unmount system call.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_unmount(struct mount *mp, int mntflags)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2002-05-16 19:43:28 +00:00
|
|
|
struct ext2mount *ump;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
2011-12-15 20:31:18 +00:00
|
|
|
struct csum *sump;
|
|
|
|
int error, flags, i, ronly;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if (mntflags & MNT_FORCE) {
|
|
|
|
if (mp->mnt_flag & MNT_ROOTFS)
|
|
|
|
return (EINVAL);
|
|
|
|
flags |= FORCECLOSE;
|
|
|
|
}
|
2009-05-11 15:33:26 +00:00
|
|
|
if ((error = ext2_flushfiles(mp, flags, curthread)) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
2002-05-16 19:08:03 +00:00
|
|
|
ump = VFSTOEXT2(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
fs = ump->um_e2fs;
|
2010-01-14 14:30:54 +00:00
|
|
|
ronly = fs->e2fs_ronly;
|
|
|
|
if (ronly == 0 && ext2_cgupdate(ump, MNT_WAIT) == 0) {
|
|
|
|
if (fs->e2fs_wasvalid)
|
2014-02-28 21:25:32 +00:00
|
|
|
fs->e2fs->e2fs_state |= E2FS_ISCLEAN;
|
|
|
|
ext2_sbupdate(ump, MNT_WAIT);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
1997-08-04 05:10:31 +00:00
|
|
|
|
2004-10-29 10:42:30 +00:00
|
|
|
g_topology_lock();
|
2008-10-10 21:23:50 +00:00
|
|
|
g_vfs_close(ump->um_cp);
|
2004-10-29 10:42:30 +00:00
|
|
|
g_topology_unlock();
|
1995-11-05 23:25:12 +00:00
|
|
|
vrele(ump->um_devvp);
|
2011-12-15 20:31:18 +00:00
|
|
|
sump = fs->e2fs_clustersum;
|
|
|
|
for (i = 0; i < fs->e2fs_gcount; i++, sump++)
|
|
|
|
free(sump->cs_sum, M_EXT2MNT);
|
|
|
|
free(fs->e2fs_clustersum, M_EXT2MNT);
|
|
|
|
free(fs->e2fs_maxcluster, M_EXT2MNT);
|
2010-01-14 14:30:54 +00:00
|
|
|
free(fs->e2fs_gd, M_EXT2MNT);
|
|
|
|
free(fs->e2fs_contigdirs, M_EXT2MNT);
|
|
|
|
free(fs->e2fs, M_EXT2MNT);
|
2009-06-03 14:18:37 +00:00
|
|
|
free(fs, M_EXT2MNT);
|
|
|
|
free(ump, M_EXT2MNT);
|
2007-10-16 10:54:55 +00:00
|
|
|
mp->mnt_data = NULL;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_ILOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
mp->mnt_flag &= ~MNT_LOCAL;
|
2006-09-26 04:12:49 +00:00
|
|
|
MNT_IUNLOCK(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flush out all the files in a filesystem.
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_flushfiles(struct mount *mp, int flags, struct thread *td)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
1995-11-08 04:50:00 +00:00
|
|
|
int error;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2004-07-12 08:14:09 +00:00
|
|
|
error = vflush(mp, 0, flags, td);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
|
|
|
}
|
2016-12-28 15:43:17 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2013-06-11 02:47:07 +00:00
|
|
|
* Get filesystem statistics.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_statfs(struct mount *mp, struct statfs *sbp)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2002-05-16 19:43:28 +00:00
|
|
|
struct ext2mount *ump;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
|
|
|
uint32_t overhead, overhead_per_group, ngdb;
|
|
|
|
int i, ngroups;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2002-05-16 19:08:03 +00:00
|
|
|
ump = VFSTOEXT2(mp);
|
1995-11-05 23:25:12 +00:00
|
|
|
fs = ump->um_e2fs;
|
2010-01-14 14:30:54 +00:00
|
|
|
if (fs->e2fs->e2fs_magic != E2FS_MAGIC)
|
2013-02-02 22:23:45 +00:00
|
|
|
panic("ext2_statfs");
|
1995-11-05 23:25:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute the overhead (FS structures)
|
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
overhead_per_group =
|
|
|
|
1 /* block bitmap */ +
|
|
|
|
1 /* inode bitmap */ +
|
|
|
|
fs->e2fs_itpg;
|
|
|
|
overhead = fs->e2fs->e2fs_first_dblock +
|
|
|
|
fs->e2fs_gcount * overhead_per_group;
|
|
|
|
if (fs->e2fs->e2fs_rev > E2FS_REV0 &&
|
|
|
|
fs->e2fs->e2fs_features_rocompat & EXT2F_ROCOMPAT_SPARSESUPER) {
|
|
|
|
for (i = 0, ngroups = 0; i < fs->e2fs_gcount; i++) {
|
2017-06-20 14:28:51 +00:00
|
|
|
if (ext2_cg_has_sb(fs, i))
|
2010-01-14 14:30:54 +00:00
|
|
|
ngroups++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ngroups = fs->e2fs_gcount;
|
|
|
|
}
|
|
|
|
ngdb = fs->e2fs_gdbcount;
|
|
|
|
if (fs->e2fs->e2fs_rev > E2FS_REV0 &&
|
|
|
|
fs->e2fs->e2fs_features_compat & EXT2F_COMPAT_RESIZE)
|
|
|
|
ngdb += fs->e2fs->e2fs_reserved_ngdb;
|
|
|
|
overhead += ngroups * (1 /* superblock */ + ngdb);
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2009-01-18 14:54:46 +00:00
|
|
|
sbp->f_bsize = EXT2_FRAG_SIZE(fs);
|
1995-11-05 23:25:12 +00:00
|
|
|
sbp->f_iosize = EXT2_BLOCK_SIZE(fs);
|
2018-01-05 10:04:01 +00:00
|
|
|
sbp->f_blocks = fs->e2fs_bcount - overhead;
|
|
|
|
sbp->f_bfree = fs->e2fs_fbcount;
|
|
|
|
sbp->f_bavail = sbp->f_bfree - fs->e2fs_rbcount;
|
2010-01-14 14:30:54 +00:00
|
|
|
sbp->f_files = fs->e2fs->e2fs_icount;
|
|
|
|
sbp->f_ffree = fs->e2fs->e2fs_ficount;
|
1995-11-05 23:25:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Go through the disk queues to initiate sandbagged IO;
|
|
|
|
* go through the inodes to write those that have been modified;
|
|
|
|
* initiate the writing of the super block if it has been modified.
|
|
|
|
*
|
|
|
|
* Note: we are always called with the filesystem marked `MPBUSY'.
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_sync(struct mount *mp, int waitfor)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2006-01-09 20:42:19 +00:00
|
|
|
struct vnode *mvp, *vp;
|
2009-05-11 15:33:26 +00:00
|
|
|
struct thread *td;
|
1998-09-26 12:42:17 +00:00
|
|
|
struct inode *ip;
|
2002-05-16 19:08:03 +00:00
|
|
|
struct ext2mount *ump = VFSTOEXT2(mp);
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
1995-11-05 23:25:12 +00:00
|
|
|
int error, allerror = 0;
|
|
|
|
|
2009-05-11 15:33:26 +00:00
|
|
|
td = curthread;
|
1995-11-05 23:25:12 +00:00
|
|
|
fs = ump->um_e2fs;
|
2010-01-14 14:30:54 +00:00
|
|
|
if (fs->e2fs_fmod != 0 && fs->e2fs_ronly != 0) { /* XXX */
|
|
|
|
printf("fs = %s\n", fs->e2fs_fsmnt);
|
1998-09-26 12:42:17 +00:00
|
|
|
panic("ext2_sync: rofs mod");
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* Write back each (modified) inode.
|
|
|
|
*/
|
|
|
|
loop:
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
|
|
|
|
if (vp->v_type == VNON) {
|
2003-10-05 06:43:03 +00:00
|
|
|
VI_UNLOCK(vp);
|
|
|
|
continue;
|
|
|
|
}
|
1995-11-05 23:25:12 +00:00
|
|
|
ip = VTOI(vp);
|
2004-10-28 08:22:11 +00:00
|
|
|
if ((ip->i_flag &
|
1995-11-05 23:25:12 +00:00
|
|
|
(IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
|
2004-10-25 09:14:03 +00:00
|
|
|
(vp->v_bufobj.bo_dirty.bv_cnt == 0 ||
|
2004-10-28 08:22:11 +00:00
|
|
|
waitfor == MNT_LAZY)) {
|
2002-09-25 02:34:56 +00:00
|
|
|
VI_UNLOCK(vp);
|
1995-11-05 23:25:12 +00:00
|
|
|
continue;
|
1998-09-26 12:42:17 +00:00
|
|
|
}
|
2001-09-12 08:38:13 +00:00
|
|
|
error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK, td);
|
1998-09-26 12:42:17 +00:00
|
|
|
if (error) {
|
2006-01-09 20:42:19 +00:00
|
|
|
if (error == ENOENT) {
|
2012-04-17 16:28:22 +00:00
|
|
|
MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
|
1998-09-26 12:42:17 +00:00
|
|
|
goto loop;
|
2006-01-09 20:42:19 +00:00
|
|
|
}
|
1998-09-26 12:42:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
2005-01-11 07:36:22 +00:00
|
|
|
if ((error = VOP_FSYNC(vp, waitfor, td)) != 0)
|
1995-11-05 23:25:12 +00:00
|
|
|
allerror = error;
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2003-11-02 04:52:53 +00:00
|
|
|
vrele(vp);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2013-06-11 02:47:07 +00:00
|
|
|
* Force stale filesystem control information to be flushed.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
1998-09-26 12:42:17 +00:00
|
|
|
if (waitfor != MNT_LAZY) {
|
2008-01-10 01:10:58 +00:00
|
|
|
vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
|
2005-01-11 07:36:22 +00:00
|
|
|
if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0)
|
1998-09-26 12:42:17 +00:00
|
|
|
allerror = error;
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(ump->um_devvp, 0);
|
1998-09-26 12:42:17 +00:00
|
|
|
}
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1998-09-26 12:42:17 +00:00
|
|
|
/*
|
|
|
|
* Write back modified superblock.
|
|
|
|
*/
|
2010-01-14 14:30:54 +00:00
|
|
|
if (fs->e2fs_fmod != 0) {
|
|
|
|
fs->e2fs_fmod = 0;
|
|
|
|
fs->e2fs->e2fs_wtime = time_second;
|
|
|
|
if ((error = ext2_cgupdate(ump, waitfor)) != 0)
|
1998-09-26 12:42:17 +00:00
|
|
|
allerror = error;
|
|
|
|
}
|
1995-11-05 23:25:12 +00:00
|
|
|
return (allerror);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-01 18:49:04 +00:00
|
|
|
* Look up an EXT2FS dinode number to find its incore vnode, otherwise read it
|
1995-11-05 23:25:12 +00:00
|
|
|
* in from disk. If it is in core, wait for the lock bit to clear, then
|
|
|
|
* return the inode locked. Detection and handling of mount points must be
|
|
|
|
* done by the calling routine.
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
2002-05-16 19:43:28 +00:00
|
|
|
struct inode *ip;
|
2002-05-16 19:08:03 +00:00
|
|
|
struct ext2mount *ump;
|
1995-11-05 23:25:12 +00:00
|
|
|
struct buf *bp;
|
|
|
|
struct vnode *vp;
|
2009-06-03 14:18:37 +00:00
|
|
|
struct thread *td;
|
1997-10-10 18:13:06 +00:00
|
|
|
int i, error;
|
1995-11-05 23:25:12 +00:00
|
|
|
int used_blocks;
|
|
|
|
|
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);
|
1995-11-05 23:25:12 +00:00
|
|
|
|
2005-03-14 13:30:06 +00:00
|
|
|
ump = VFSTOEXT2(mp);
|
|
|
|
ip = malloc(sizeof(struct inode), M_EXT2NODE, M_WAITOK | M_ZERO);
|
1998-05-16 17:47:44 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/* Allocate a new vnode/inode. */
|
2004-12-01 23:16:38 +00:00
|
|
|
if ((error = getnewvnode("ext2fs", mp, &ext2_vnodeops, &vp)) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
*vpp = NULL;
|
2005-03-14 13:30:06 +00:00
|
|
|
free(ip, M_EXT2NODE);
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
vp->v_data = ip;
|
|
|
|
ip->i_vnode = vp;
|
|
|
|
ip->i_e2fs = fs = ump->um_e2fs;
|
2016-12-28 15:43:17 +00:00
|
|
|
ip->i_ump = ump;
|
1995-11-05 23:25:12 +00:00
|
|
|
ip->i_number = ino;
|
2005-03-14 13:30:06 +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_EXT2NODE);
|
|
|
|
*vpp = NULL;
|
|
|
|
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)
|
2005-03-14 13:30:06 +00:00
|
|
|
return (error);
|
|
|
|
|
1995-11-19 20:24:15 +00:00
|
|
|
/* Read in the disk contents for the inode, copy into the inode. */
|
1999-01-27 21:50:00 +00:00
|
|
|
if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
|
2010-01-14 14:30:54 +00:00
|
|
|
(int)fs->e2fs_bsize, NOCRED, &bp)) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
|
|
|
* The inode does not contain anything useful, so it would
|
|
|
|
* be misleading to leave it on its hash chain. With mode
|
|
|
|
* still zero, it will be unlinked and returned to the free
|
|
|
|
* list by vput().
|
|
|
|
*/
|
|
|
|
brelse(bp);
|
2010-01-14 14:30:54 +00:00
|
|
|
vput(vp);
|
1995-11-05 23:25:12 +00:00
|
|
|
*vpp = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
/* convert ext2 inode to dinode */
|
2018-01-14 20:46:39 +00:00
|
|
|
error = ext2_ei2i((struct ext2fs_dinode *)((char *)bp->b_data +
|
|
|
|
EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ino)), ip);
|
|
|
|
if (error) {
|
|
|
|
printf("ext2fs: Bad inode %lu csum - run fsck\n",
|
|
|
|
(unsigned long)ino);
|
|
|
|
brelse(bp);
|
|
|
|
vput(vp);
|
|
|
|
*vpp = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
1995-11-05 23:25:12 +00:00
|
|
|
ip->i_block_group = ino_to_cg(fs, ino);
|
|
|
|
ip->i_next_alloc_block = 0;
|
|
|
|
ip->i_next_alloc_goal = 0;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we want to make sure that block pointers for unused
|
|
|
|
* blocks are zeroed out - ext2_balloc depends on this
|
|
|
|
* although for regular files and directories only
|
2013-08-12 21:34:48 +00:00
|
|
|
*
|
2014-01-28 14:39:05 +00:00
|
|
|
* If IN_E4EXTENTS is enabled, unused blocks are not zeroed
|
2014-01-21 19:06:29 +00:00
|
|
|
* out because we could corrupt the extent tree.
|
2009-06-03 14:18:37 +00:00
|
|
|
*/
|
2014-01-28 14:39:05 +00:00
|
|
|
if (!(ip->i_flag & IN_E4EXTENTS) &&
|
2013-08-12 21:34:48 +00:00
|
|
|
(S_ISDIR(ip->i_mode) || S_ISREG(ip->i_mode))) {
|
2016-04-26 01:41:15 +00:00
|
|
|
used_blocks = howmany(ip->i_size, fs->e2fs_bsize);
|
2011-12-16 15:47:43 +00:00
|
|
|
for (i = used_blocks; i < EXT2_NDIR_BLOCKS; i++)
|
1995-11-05 23:25:12 +00:00
|
|
|
ip->i_db[i] = 0;
|
|
|
|
}
|
2014-11-12 16:23:56 +00:00
|
|
|
#ifdef EXT2FS_DEBUG
|
1995-11-05 23:25:12 +00:00
|
|
|
ext2_print_inode(ip);
|
2017-10-17 20:45:44 +00:00
|
|
|
ext4_ext_print_extent_tree_status(ip);
|
2014-11-12 16:23:56 +00:00
|
|
|
#endif
|
2010-01-14 14:30:54 +00:00
|
|
|
bqrelse(bp);
|
1995-11-05 23:25:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the vnode from the inode, check for aliases.
|
|
|
|
* Note that the underlying vnode may have changed.
|
|
|
|
*/
|
2004-12-01 23:16:38 +00:00
|
|
|
if ((error = ext2_vinit(mp, &ext2_fifoops, &vp)) != 0) {
|
1995-11-05 23:25:12 +00:00
|
|
|
vput(vp);
|
|
|
|
*vpp = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
/*
|
2011-01-19 16:46:13 +00:00
|
|
|
* Finish inode initialization.
|
1995-11-05 23:25:12 +00:00
|
|
|
*/
|
2009-06-03 14:18:37 +00:00
|
|
|
|
1995-11-05 23:25:12 +00:00
|
|
|
*vpp = vp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* File handle to vnode
|
|
|
|
*
|
|
|
|
* Have to be really careful about stale file handles:
|
|
|
|
* - check that the inode number is valid
|
|
|
|
* - call ext2_vget() to get the locked inode
|
|
|
|
* - check for an unallocated inode (i_mode == 0)
|
|
|
|
* - check that the given client host has export rights and return
|
|
|
|
* those rights via. exflagsp and credanonp
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2011-05-22 01:07:54 +00:00
|
|
|
ext2_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2002-05-16 19:08:03 +00:00
|
|
|
struct inode *ip;
|
2002-05-16 19:43:28 +00:00
|
|
|
struct ufid *ufhp;
|
2002-05-16 19:08:03 +00:00
|
|
|
struct vnode *nvp;
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs;
|
2002-05-16 19:08:03 +00:00
|
|
|
int error;
|
1995-11-05 23:25:12 +00:00
|
|
|
|
|
|
|
ufhp = (struct ufid *)fhp;
|
2002-05-16 19:08:03 +00:00
|
|
|
fs = VFSTOEXT2(mp)->um_e2fs;
|
2011-04-27 18:25:35 +00:00
|
|
|
if (ufhp->ufid_ino < EXT2_ROOTINO ||
|
2010-01-14 14:30:54 +00:00
|
|
|
ufhp->ufid_ino > fs->e2fs_gcount * fs->e2fs->e2fs_ipg)
|
1995-11-05 23:25:12 +00:00
|
|
|
return (ESTALE);
|
2002-05-16 19:08:03 +00:00
|
|
|
|
|
|
|
error = VFS_VGET(mp, ufhp->ufid_ino, LK_EXCLUSIVE, &nvp);
|
|
|
|
if (error) {
|
|
|
|
*vpp = NULLVP;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
ip = VTOI(nvp);
|
|
|
|
if (ip->i_mode == 0 ||
|
|
|
|
ip->i_gen != ufhp->ufid_gen || ip->i_nlink <= 0) {
|
|
|
|
vput(nvp);
|
|
|
|
*vpp = NULLVP;
|
|
|
|
return (ESTALE);
|
|
|
|
}
|
|
|
|
*vpp = nvp;
|
2005-01-24 21:51:19 +00:00
|
|
|
vnode_create_vobject(*vpp, 0, curthread);
|
2002-05-16 19:08:03 +00:00
|
|
|
return (0);
|
1995-11-05 23:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write a superblock and associated information back to disk.
|
|
|
|
*/
|
1995-12-17 21:14:36 +00:00
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_sbupdate(struct ext2mount *mp, int waitfor)
|
1995-11-05 23:25:12 +00:00
|
|
|
{
|
2010-01-14 14:30:54 +00:00
|
|
|
struct m_ext2fs *fs = mp->um_e2fs;
|
|
|
|
struct ext2fs *es = fs->e2fs;
|
2002-05-16 19:43:28 +00:00
|
|
|
struct buf *bp;
|
1998-12-07 21:58:50 +00:00
|
|
|
int error = 0;
|
2009-06-03 14:18:37 +00:00
|
|
|
|
2018-01-05 10:04:01 +00:00
|
|
|
es->e2fs_bcount = fs->e2fs_bcount & 0xffffffff;
|
|
|
|
es->e2fs_rbcount = fs->e2fs_rbcount & 0xffffffff;
|
|
|
|
es->e2fs_fbcount = fs->e2fs_fbcount & 0xffffffff;
|
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT)) {
|
|
|
|
es->e4fs_bcount_hi = fs->e2fs_bcount >> 32;
|
|
|
|
es->e4fs_rbcount_hi = fs->e2fs_rbcount >> 32;
|
|
|
|
es->e4fs_fbcount_hi = fs->e2fs_fbcount >> 32;
|
|
|
|
}
|
|
|
|
|
2018-01-14 20:46:39 +00:00
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_METADATA_CKSUM))
|
|
|
|
ext2_sb_csum_set(fs);
|
|
|
|
|
2003-03-04 00:04:44 +00:00
|
|
|
bp = getblk(mp->um_devvp, SBLOCK, SBSIZE, 0, 0, 0);
|
2010-01-14 14:30:54 +00:00
|
|
|
bcopy((caddr_t)es, bp->b_data, (u_int)sizeof(struct ext2fs));
|
1995-11-05 23:25:12 +00:00
|
|
|
if (waitfor == MNT_WAIT)
|
|
|
|
error = bwrite(bp);
|
|
|
|
else
|
|
|
|
bawrite(bp);
|
|
|
|
|
1997-08-04 05:10:31 +00:00
|
|
|
/*
|
|
|
|
* The buffers for group descriptors, inode bitmaps and block bitmaps
|
|
|
|
* are not busy at this point and are (hopefully) written by the
|
2009-06-03 14:18:37 +00:00
|
|
|
* usual sync mechanism. No need to write them here.
|
|
|
|
*/
|
1995-11-05 23:25:12 +00:00
|
|
|
return (error);
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
int
|
|
|
|
ext2_cgupdate(struct ext2mount *mp, int waitfor)
|
|
|
|
{
|
|
|
|
struct m_ext2fs *fs = mp->um_e2fs;
|
|
|
|
struct buf *bp;
|
2018-01-05 10:04:01 +00:00
|
|
|
int i, j, g_count = 0, error = 0, allerror = 0;
|
2010-01-14 14:30:54 +00:00
|
|
|
|
|
|
|
allerror = ext2_sbupdate(mp, waitfor);
|
2017-06-20 14:28:51 +00:00
|
|
|
|
|
|
|
/* Update gd csums */
|
2018-01-14 20:46:39 +00:00
|
|
|
if (EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_GDT_CSUM) ||
|
|
|
|
EXT2_HAS_RO_COMPAT_FEATURE(fs, EXT2F_ROCOMPAT_METADATA_CKSUM))
|
2017-06-20 14:28:51 +00:00
|
|
|
ext2_gd_csum_set(fs);
|
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
for (i = 0; i < fs->e2fs_gdbcount; i++) {
|
|
|
|
bp = getblk(mp->um_devvp, fsbtodb(fs,
|
2018-01-29 21:54:13 +00:00
|
|
|
cg_location(fs, i)),
|
|
|
|
fs->e2fs_bsize, 0, 0, 0);
|
2018-01-05 10:04:01 +00:00
|
|
|
if (EXT2_HAS_INCOMPAT_FEATURE(fs, EXT2F_INCOMPAT_64BIT)) {
|
|
|
|
memcpy(bp->b_data, &fs->e2fs_gd[
|
|
|
|
i * fs->e2fs_bsize / sizeof(struct ext2_gd)],
|
|
|
|
fs->e2fs_bsize);
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < fs->e2fs_bsize / E2FS_REV0_GD_SIZE &&
|
|
|
|
g_count < fs->e2fs_gcount; j++, g_count++)
|
|
|
|
memcpy(bp->b_data + j * E2FS_REV0_GD_SIZE,
|
|
|
|
&fs->e2fs_gd[g_count], E2FS_REV0_GD_SIZE);
|
|
|
|
}
|
2010-01-14 14:30:54 +00:00
|
|
|
if (waitfor == MNT_WAIT)
|
|
|
|
error = bwrite(bp);
|
|
|
|
else
|
|
|
|
bawrite(bp);
|
|
|
|
}
|
2002-05-16 19:08:03 +00:00
|
|
|
|
2010-01-14 14:30:54 +00:00
|
|
|
if (!allerror && error)
|
|
|
|
allerror = error;
|
|
|
|
return (allerror);
|
|
|
|
}
|
2016-12-28 15:43:17 +00:00
|
|
|
|
2002-05-16 19:08:03 +00:00
|
|
|
/*
|
|
|
|
* Return the root of a filesystem.
|
|
|
|
*/
|
|
|
|
static int
|
2009-06-03 14:18:37 +00:00
|
|
|
ext2_root(struct mount *mp, int flags, struct vnode **vpp)
|
2002-05-16 19:08:03 +00:00
|
|
|
{
|
|
|
|
struct vnode *nvp;
|
|
|
|
int error;
|
|
|
|
|
2011-04-27 18:25:35 +00:00
|
|
|
error = VFS_VGET(mp, EXT2_ROOTINO, LK_EXCLUSIVE, &nvp);
|
2002-05-16 19:08:03 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
*vpp = nvp;
|
|
|
|
return (0);
|
|
|
|
}
|