Home | History | Annotate | Line # | Download | only in ext2fs
ext2fs_vfsops.c revision 1.24.4.2
      1  1.24.4.2   thorpej /*	$NetBSD: ext2fs_vfsops.c,v 1.24.4.2 1999/08/02 22:56:41 thorpej Exp $	*/
      2       1.1    bouyer 
      3       1.1    bouyer /*
      4       1.1    bouyer  * Copyright (c) 1997 Manuel Bouyer.
      5       1.1    bouyer  * Copyright (c) 1989, 1991, 1993, 1994
      6       1.1    bouyer  *	The Regents of the University of California.  All rights reserved.
      7       1.1    bouyer  *
      8       1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      9       1.1    bouyer  * modification, are permitted provided that the following conditions
     10       1.1    bouyer  * are met:
     11       1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     12      1.18  christos  *    notice, this list of conditions and the following disclaimer.
     13       1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     14      1.18  christos  *    notice, this list of conditions and the following disclaimer in the
     15      1.18  christos  *    documentation and/or other materials provided with the distribution.
     16       1.1    bouyer  * 3. All advertising materials mentioning features or use of this software
     17      1.18  christos  *    must display the following acknowledgement:
     18       1.1    bouyer  *	This product includes software developed by the University of
     19       1.1    bouyer  *	California, Berkeley and its contributors.
     20       1.1    bouyer  * 4. Neither the name of the University nor the names of its contributors
     21      1.18  christos  *    may be used to endorse or promote products derived from this software
     22      1.18  christos  *    without specific prior written permission.
     23       1.1    bouyer  *
     24       1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1    bouyer  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1    bouyer  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1    bouyer  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1    bouyer  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1    bouyer  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1    bouyer  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1    bouyer  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1    bouyer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1    bouyer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1    bouyer  * SUCH DAMAGE.
     35       1.1    bouyer  *
     36       1.1    bouyer  *	@(#)ffs_vfsops.c	8.14 (Berkeley) 11/28/94
     37       1.1    bouyer  * Modified for ext2fs by Manuel Bouyer.
     38       1.1    bouyer  */
     39      1.15  jonathan 
     40      1.15  jonathan #if defined(_KERNEL) && !defined(_LKM)
     41      1.15  jonathan #include "opt_compat_netbsd.h"
     42      1.15  jonathan #endif
     43      1.13  sommerfe 
     44       1.1    bouyer #include <sys/param.h>
     45       1.1    bouyer #include <sys/systm.h>
     46       1.1    bouyer #include <sys/namei.h>
     47       1.1    bouyer #include <sys/proc.h>
     48       1.1    bouyer #include <sys/kernel.h>
     49       1.1    bouyer #include <sys/vnode.h>
     50       1.1    bouyer #include <sys/socket.h>
     51       1.1    bouyer #include <sys/mount.h>
     52       1.1    bouyer #include <sys/buf.h>
     53       1.1    bouyer #include <sys/device.h>
     54       1.1    bouyer #include <sys/mbuf.h>
     55       1.1    bouyer #include <sys/file.h>
     56       1.1    bouyer #include <sys/disklabel.h>
     57       1.1    bouyer #include <sys/ioctl.h>
     58       1.1    bouyer #include <sys/errno.h>
     59       1.1    bouyer #include <sys/malloc.h>
     60      1.17   thorpej #include <sys/pool.h>
     61       1.3    bouyer #include <sys/lock.h>
     62       1.1    bouyer 
     63       1.1    bouyer #include <miscfs/specfs/specdev.h>
     64       1.1    bouyer 
     65       1.1    bouyer #include <ufs/ufs/quota.h>
     66       1.1    bouyer #include <ufs/ufs/ufsmount.h>
     67       1.1    bouyer #include <ufs/ufs/inode.h>
     68       1.1    bouyer #include <ufs/ufs/dir.h>
     69       1.1    bouyer #include <ufs/ufs/ufs_extern.h>
     70       1.1    bouyer 
     71       1.1    bouyer #include <ufs/ext2fs/ext2fs.h>
     72       1.1    bouyer #include <ufs/ext2fs/ext2fs_extern.h>
     73       1.1    bouyer 
     74       1.3    bouyer extern struct lock ufs_hashlock;
     75       1.3    bouyer 
     76       1.1    bouyer int ext2fs_sbupdate __P((struct ufsmount *, int));
     77       1.7   thorpej 
     78       1.7   thorpej extern struct vnodeopv_desc ext2fs_vnodeop_opv_desc;
     79       1.7   thorpej extern struct vnodeopv_desc ext2fs_specop_opv_desc;
     80       1.7   thorpej extern struct vnodeopv_desc ext2fs_fifoop_opv_desc;
     81       1.7   thorpej 
     82       1.7   thorpej struct vnodeopv_desc *ext2fs_vnodeopv_descs[] = {
     83       1.7   thorpej 	&ext2fs_vnodeop_opv_desc,
     84       1.7   thorpej 	&ext2fs_specop_opv_desc,
     85       1.7   thorpej 	&ext2fs_fifoop_opv_desc,
     86       1.7   thorpej 	NULL,
     87       1.7   thorpej };
     88       1.1    bouyer 
     89       1.1    bouyer struct vfsops ext2fs_vfsops = {
     90       1.1    bouyer 	MOUNT_EXT2FS,
     91       1.1    bouyer 	ext2fs_mount,
     92       1.1    bouyer 	ufs_start,
     93       1.1    bouyer 	ext2fs_unmount,
     94       1.1    bouyer 	ufs_root,
     95       1.1    bouyer 	ufs_quotactl,
     96       1.1    bouyer 	ext2fs_statfs,
     97       1.1    bouyer 	ext2fs_sync,
     98       1.1    bouyer 	ext2fs_vget,
     99       1.1    bouyer 	ext2fs_fhtovp,
    100       1.1    bouyer 	ext2fs_vptofh,
    101       1.1    bouyer 	ext2fs_init,
    102       1.9      fvdl 	ext2fs_sysctl,
    103       1.1    bouyer 	ext2fs_mountroot,
    104      1.24  wrstuden 	ufs_check_export,
    105       1.8  drochner 	ext2fs_vnodeopv_descs,
    106       1.1    bouyer };
    107       1.1    bouyer 
    108      1.17   thorpej struct pool ext2fs_inode_pool;
    109      1.17   thorpej 
    110       1.1    bouyer extern u_long ext2gennumber;
    111       1.1    bouyer 
    112       1.9      fvdl void
    113       1.9      fvdl ext2fs_init()
    114       1.9      fvdl {
    115      1.19    bouyer 	ufs_init();
    116      1.17   thorpej 
    117      1.17   thorpej 	/*
    118      1.17   thorpej 	 * XXX Same structure as FFS inodes?  Should we share a common pool?
    119      1.17   thorpej 	 */
    120      1.17   thorpej 	pool_init(&ext2fs_inode_pool, sizeof(struct inode), 0, 0, 0,
    121      1.17   thorpej 	    "ext2fsinopl", 0, pool_page_alloc_nointr, pool_page_free_nointr,
    122      1.17   thorpej 	    M_EXT2FSNODE);
    123       1.9      fvdl }
    124       1.9      fvdl 
    125       1.1    bouyer 
    126       1.1    bouyer /*
    127       1.1    bouyer  * Called by main() when ext2fs is going to be mounted as root.
    128       1.1    bouyer  *
    129       1.1    bouyer  * Name is updated by mount(8) after booting.
    130       1.1    bouyer  */
    131       1.1    bouyer #define ROOTNAME	"root_device"
    132       1.1    bouyer 
    133       1.1    bouyer int
    134       1.1    bouyer ext2fs_mountroot()
    135       1.1    bouyer {
    136       1.1    bouyer 	extern struct vnode *rootvp;
    137       1.9      fvdl 	struct m_ext2fs *fs;
    138       1.9      fvdl 	struct mount *mp;
    139       1.1    bouyer 	struct proc *p = curproc;	/* XXX */
    140       1.1    bouyer 	struct ufsmount *ump;
    141       1.1    bouyer 	int error;
    142       1.1    bouyer 
    143       1.1    bouyer 	if (root_device->dv_class != DV_DISK)
    144       1.1    bouyer 		return (ENODEV);
    145       1.1    bouyer 
    146       1.1    bouyer 	/*
    147       1.2       mrg 	 * Get vnodes for rootdev.
    148       1.1    bouyer 	 */
    149       1.2       mrg 	if (bdevvp(rootdev, &rootvp))
    150       1.1    bouyer 		panic("ext2fs_mountroot: can't setup bdevvp's");
    151       1.1    bouyer 
    152  1.24.4.2   thorpej 	if ((error = vfs_rootmountalloc(MOUNT_EXT2FS, "root_device", &mp))) {
    153  1.24.4.2   thorpej 		vrele(rootvp);
    154       1.9      fvdl 		return (error);
    155  1.24.4.2   thorpej 	}
    156       1.9      fvdl 
    157       1.1    bouyer 	if ((error = ext2fs_mountfs(rootvp, mp, p)) != 0) {
    158       1.9      fvdl 		mp->mnt_op->vfs_refcount--;
    159       1.9      fvdl 		vfs_unbusy(mp);
    160       1.1    bouyer 		free(mp, M_MOUNT);
    161  1.24.4.2   thorpej 		vrele(rootvp);
    162       1.1    bouyer 		return (error);
    163       1.1    bouyer 	}
    164       1.9      fvdl 	simple_lock(&mountlist_slock);
    165       1.1    bouyer 	CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
    166       1.9      fvdl 	simple_unlock(&mountlist_slock);
    167       1.1    bouyer 	ump = VFSTOUFS(mp);
    168       1.1    bouyer 	fs = ump->um_e2fs;
    169      1.16     perry 	memset(fs->e2fs_fsmnt, 0, sizeof(fs->e2fs_fsmnt));
    170       1.9      fvdl 	(void) copystr(mp->mnt_stat.f_mntonname, fs->e2fs_fsmnt,
    171       1.9      fvdl 	    MNAMELEN - 1, 0);
    172       1.1    bouyer 	(void)ext2fs_statfs(mp, &mp->mnt_stat, p);
    173       1.9      fvdl 	vfs_unbusy(mp);
    174       1.1    bouyer 	inittodr(fs->e2fs.e2fs_wtime);
    175       1.1    bouyer 	return (0);
    176       1.1    bouyer }
    177       1.1    bouyer 
    178       1.1    bouyer /*
    179       1.1    bouyer  * VFS Operations.
    180       1.1    bouyer  *
    181       1.1    bouyer  * mount system call
    182       1.1    bouyer  */
    183       1.1    bouyer int
    184       1.1    bouyer ext2fs_mount(mp, path, data, ndp, p)
    185       1.1    bouyer 	register struct mount *mp;
    186       1.1    bouyer 	const char *path;
    187       1.1    bouyer 	void * data;
    188       1.1    bouyer 	struct nameidata *ndp;
    189       1.1    bouyer 	struct proc *p;
    190       1.1    bouyer {
    191       1.1    bouyer 	struct vnode *devvp;
    192       1.1    bouyer 	struct ufs_args args;
    193       1.1    bouyer 	struct ufsmount *ump = NULL;
    194       1.1    bouyer 	register struct m_ext2fs *fs;
    195       1.1    bouyer 	size_t size;
    196       1.1    bouyer 	int error, flags;
    197       1.1    bouyer 	mode_t accessmode;
    198       1.1    bouyer 
    199       1.1    bouyer 	error = copyin(data, (caddr_t)&args, sizeof (struct ufs_args));
    200       1.1    bouyer 	if (error)
    201       1.1    bouyer 		return (error);
    202       1.1    bouyer 	/*
    203       1.1    bouyer 	 * If updating, check whether changing from read-only to
    204       1.1    bouyer 	 * read/write; if there is no device name, that's all we do.
    205       1.1    bouyer 	 */
    206       1.1    bouyer 	if (mp->mnt_flag & MNT_UPDATE) {
    207       1.1    bouyer 		ump = VFSTOUFS(mp);
    208       1.1    bouyer 		fs = ump->um_e2fs;
    209       1.1    bouyer 		if (fs->e2fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
    210       1.1    bouyer 			flags = WRITECLOSE;
    211       1.1    bouyer 			if (mp->mnt_flag & MNT_FORCE)
    212       1.1    bouyer 				flags |= FORCECLOSE;
    213       1.1    bouyer 			error = ext2fs_flushfiles(mp, flags, p);
    214       1.1    bouyer 			if (error == 0 &&
    215       1.1    bouyer 				ext2fs_cgupdate(ump, MNT_WAIT) == 0 &&
    216       1.1    bouyer 				(fs->e2fs.e2fs_state & E2FS_ERRORS) == 0) {
    217       1.1    bouyer 				fs->e2fs.e2fs_state = E2FS_ISCLEAN;
    218       1.1    bouyer 				(void) ext2fs_sbupdate(ump, MNT_WAIT);
    219       1.1    bouyer 			}
    220       1.1    bouyer 			if (error)
    221       1.1    bouyer 				return (error);
    222       1.1    bouyer 			fs->e2fs_ronly = 1;
    223       1.1    bouyer 		}
    224       1.1    bouyer 		if (mp->mnt_flag & MNT_RELOAD) {
    225       1.1    bouyer 			error = ext2fs_reload(mp, ndp->ni_cnd.cn_cred, p);
    226       1.1    bouyer 			if (error)
    227       1.1    bouyer 				return (error);
    228       1.1    bouyer 		}
    229       1.1    bouyer 		if (fs->e2fs_ronly && (mp->mnt_flag & MNT_WANTRDWR)) {
    230       1.1    bouyer 			/*
    231       1.1    bouyer 			 * If upgrade to read-write by non-root, then verify
    232       1.1    bouyer 			 * that user has necessary permissions on the device.
    233       1.1    bouyer 			 */
    234       1.1    bouyer 			if (p->p_ucred->cr_uid != 0) {
    235       1.1    bouyer 				devvp = ump->um_devvp;
    236       1.9      fvdl 				vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    237       1.1    bouyer 				error = VOP_ACCESS(devvp, VREAD | VWRITE,
    238       1.1    bouyer 						   p->p_ucred, p);
    239       1.9      fvdl 				VOP_UNLOCK(devvp, 0);
    240       1.9      fvdl 				if (error)
    241       1.1    bouyer 					return (error);
    242       1.1    bouyer 			}
    243       1.1    bouyer 			fs->e2fs_ronly = 0;
    244       1.1    bouyer 			if (fs->e2fs.e2fs_state == E2FS_ISCLEAN)
    245       1.1    bouyer 				fs->e2fs.e2fs_state = 0;
    246       1.1    bouyer 			else
    247       1.1    bouyer 				fs->e2fs.e2fs_state = E2FS_ERRORS;
    248       1.1    bouyer 			fs->e2fs_fmod = 1;
    249       1.1    bouyer 		}
    250       1.1    bouyer 		if (args.fspec == 0) {
    251       1.1    bouyer 			/*
    252       1.1    bouyer 			 * Process export requests.
    253       1.1    bouyer 			 */
    254       1.1    bouyer 			return (vfs_export(mp, &ump->um_export, &args.export));
    255       1.1    bouyer 		}
    256       1.1    bouyer 	}
    257       1.1    bouyer 	/*
    258       1.1    bouyer 	 * Not an update, or updating the name: look up the name
    259       1.1    bouyer 	 * and verify that it refers to a sensible block device.
    260       1.1    bouyer 	 */
    261       1.1    bouyer 	NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, p);
    262       1.1    bouyer 	if ((error = namei(ndp)) != 0)
    263       1.1    bouyer 		return (error);
    264       1.1    bouyer 	devvp = ndp->ni_vp;
    265       1.1    bouyer 
    266       1.1    bouyer 	if (devvp->v_type != VBLK) {
    267       1.1    bouyer 		vrele(devvp);
    268       1.1    bouyer 		return (ENOTBLK);
    269       1.1    bouyer 	}
    270       1.1    bouyer 	if (major(devvp->v_rdev) >= nblkdev) {
    271       1.1    bouyer 		vrele(devvp);
    272       1.1    bouyer 		return (ENXIO);
    273       1.1    bouyer 	}
    274       1.1    bouyer 	/*
    275       1.1    bouyer 	 * If mount by non-root, then verify that user has necessary
    276       1.1    bouyer 	 * permissions on the device.
    277       1.1    bouyer 	 */
    278       1.1    bouyer 	if (p->p_ucred->cr_uid != 0) {
    279       1.1    bouyer 		accessmode = VREAD;
    280       1.1    bouyer 		if ((mp->mnt_flag & MNT_RDONLY) == 0)
    281       1.1    bouyer 			accessmode |= VWRITE;
    282       1.9      fvdl 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    283       1.1    bouyer 		error = VOP_ACCESS(devvp, accessmode, p->p_ucred, p);
    284       1.9      fvdl 		VOP_UNLOCK(devvp, 0);
    285       1.1    bouyer 		if (error) {
    286       1.9      fvdl 			vrele(devvp);
    287       1.1    bouyer 			return (error);
    288       1.1    bouyer 		}
    289       1.1    bouyer 	}
    290       1.1    bouyer 	if ((mp->mnt_flag & MNT_UPDATE) == 0)
    291       1.1    bouyer 		error = ext2fs_mountfs(devvp, mp, p);
    292       1.1    bouyer 	else {
    293       1.1    bouyer 		if (devvp != ump->um_devvp)
    294       1.1    bouyer 			error = EINVAL;	/* needs translation */
    295       1.1    bouyer 		else
    296       1.1    bouyer 			vrele(devvp);
    297       1.1    bouyer 	}
    298       1.1    bouyer 	if (error) {
    299       1.1    bouyer 		vrele(devvp);
    300       1.1    bouyer 		return (error);
    301       1.1    bouyer 	}
    302       1.1    bouyer 	ump = VFSTOUFS(mp);
    303       1.1    bouyer 	fs = ump->um_e2fs;
    304       1.1    bouyer 	(void) copyinstr(path, fs->e2fs_fsmnt, sizeof(fs->e2fs_fsmnt) - 1, &size);
    305      1.16     perry 	memset(fs->e2fs_fsmnt + size, 0, sizeof(fs->e2fs_fsmnt) - size);
    306      1.16     perry 	memcpy(mp->mnt_stat.f_mntonname, fs->e2fs_fsmnt, MNAMELEN);
    307       1.1    bouyer 	(void) copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
    308       1.1    bouyer 		&size);
    309      1.16     perry 	memset(mp->mnt_stat.f_mntfromname + size, 0, MNAMELEN - size);
    310       1.1    bouyer 	if (fs->e2fs_fmod != 0) {	/* XXX */
    311       1.1    bouyer 		fs->e2fs_fmod = 0;
    312       1.1    bouyer 		if (fs->e2fs.e2fs_state == 0)
    313       1.1    bouyer 			fs->e2fs.e2fs_wtime = time.tv_sec;
    314       1.1    bouyer 		else
    315       1.1    bouyer 			printf("%s: file system not clean; please fsck(8)\n",
    316       1.1    bouyer 				mp->mnt_stat.f_mntfromname);
    317       1.1    bouyer 		(void) ext2fs_cgupdate(ump, MNT_WAIT);
    318       1.1    bouyer 	}
    319       1.1    bouyer 	return (0);
    320       1.1    bouyer }
    321       1.1    bouyer 
    322       1.1    bouyer /*
    323       1.1    bouyer  * Reload all incore data for a filesystem (used after running fsck on
    324       1.1    bouyer  * the root filesystem and finding things to fix). The filesystem must
    325       1.1    bouyer  * be mounted read-only.
    326       1.1    bouyer  *
    327       1.1    bouyer  * Things to do to update the mount:
    328       1.1    bouyer  *	1) invalidate all cached meta-data.
    329       1.1    bouyer  *	2) re-read superblock from disk.
    330       1.1    bouyer  *	3) re-read summary information from disk.
    331       1.1    bouyer  *	4) invalidate all inactive vnodes.
    332       1.1    bouyer  *	5) invalidate all cached file data.
    333       1.1    bouyer  *	6) re-read inode data for all active vnodes.
    334       1.1    bouyer  */
    335       1.1    bouyer int
    336       1.1    bouyer ext2fs_reload(mountp, cred, p)
    337       1.1    bouyer 	register struct mount *mountp;
    338       1.1    bouyer 	struct ucred *cred;
    339       1.1    bouyer 	struct proc *p;
    340       1.1    bouyer {
    341       1.1    bouyer 	register struct vnode *vp, *nvp, *devvp;
    342       1.1    bouyer 	struct inode *ip;
    343       1.1    bouyer 	struct buf *bp;
    344       1.1    bouyer 	struct m_ext2fs *fs;
    345       1.1    bouyer 	struct ext2fs *newfs;
    346       1.1    bouyer 	struct partinfo dpart;
    347       1.1    bouyer 	int i, size, error;
    348      1.20   thorpej 	caddr_t cp;
    349       1.1    bouyer 
    350       1.1    bouyer 	if ((mountp->mnt_flag & MNT_RDONLY) == 0)
    351       1.1    bouyer 		return (EINVAL);
    352       1.1    bouyer 	/*
    353       1.1    bouyer 	 * Step 1: invalidate all cached meta-data.
    354       1.1    bouyer 	 */
    355       1.1    bouyer 	devvp = VFSTOUFS(mountp)->um_devvp;
    356       1.1    bouyer 	if (vinvalbuf(devvp, 0, cred, p, 0, 0))
    357       1.1    bouyer 		panic("ext2fs_reload: dirty1");
    358       1.1    bouyer 	/*
    359       1.1    bouyer 	 * Step 2: re-read superblock from disk.
    360       1.1    bouyer 	 */
    361       1.1    bouyer 	if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, p) != 0)
    362       1.1    bouyer 		size = DEV_BSIZE;
    363       1.1    bouyer 	else
    364       1.1    bouyer 		size = dpart.disklab->d_secsize;
    365       1.9      fvdl 	error = bread(devvp, (ufs_daddr_t)(SBOFF / size), SBSIZE, NOCRED, &bp);
    366      1.23    bouyer 	if (error) {
    367      1.23    bouyer 		brelse(bp);
    368       1.1    bouyer 		return (error);
    369      1.23    bouyer 	}
    370       1.1    bouyer 	newfs = (struct ext2fs *)bp->b_data;
    371      1.10    bouyer 	if (fs2h16(newfs->e2fs_magic) != E2FS_MAGIC) {
    372      1.10    bouyer 		brelse(bp);
    373      1.10    bouyer 		return (EIO);		/* XXX needs translation */
    374      1.10    bouyer 	}
    375      1.10    bouyer 	if (fs2h32(newfs->e2fs_rev) != E2FS_REV) {
    376       1.1    bouyer #ifdef DIAGNOSTIC
    377      1.10    bouyer 		printf("Ext2 fs: unsupported revision number: %x (expected %x)\n",
    378       1.4    bouyer 					fs2h32(newfs->e2fs_rev), E2FS_REV);
    379       1.1    bouyer #endif
    380       1.1    bouyer 		brelse(bp);
    381       1.1    bouyer 		return (EIO);		/* XXX needs translation */
    382       1.1    bouyer 	}
    383       1.4    bouyer 	if (fs2h32(newfs->e2fs_log_bsize) > 2) { /* block size = 1024|2048|4096 */
    384       1.1    bouyer #ifdef DIAGNOSTIC
    385      1.10    bouyer 		printf("Ext2 fs: bad block size: %d (expected <=2 for ext2 fs)\n",
    386       1.4    bouyer 			fs2h32(newfs->e2fs_log_bsize));
    387       1.1    bouyer #endif
    388       1.1    bouyer 		brelse(bp);
    389       1.1    bouyer 		return (EIO);	   /* XXX needs translation */
    390       1.1    bouyer 	}
    391       1.1    bouyer 
    392       1.1    bouyer 
    393       1.1    bouyer 	fs = VFSTOUFS(mountp)->um_e2fs;
    394       1.1    bouyer 	/*
    395       1.1    bouyer 	 * copy in new superblock, and compute in-memory values
    396       1.1    bouyer 	 */
    397       1.4    bouyer 	e2fs_sbload(newfs, &fs->e2fs);
    398      1.23    bouyer 	fs->e2fs_ncg =
    399      1.23    bouyer 	    howmany(fs->e2fs.e2fs_bcount - fs->e2fs.e2fs_first_dblock,
    400      1.23    bouyer 	    fs->e2fs.e2fs_bpg);
    401       1.1    bouyer 	/* XXX assume hw bsize = 512 */
    402       1.1    bouyer 	fs->e2fs_fsbtodb = fs->e2fs.e2fs_log_bsize + 1;
    403       1.1    bouyer 	fs->e2fs_bsize = 1024 << fs->e2fs.e2fs_log_bsize;
    404       1.1    bouyer 	fs->e2fs_bshift = LOG_MINBSIZE + fs->e2fs.e2fs_log_bsize;
    405       1.1    bouyer 	fs->e2fs_qbmask = fs->e2fs_bsize - 1;
    406       1.1    bouyer 	fs->e2fs_bmask = ~fs->e2fs_qbmask;
    407       1.1    bouyer 	fs->e2fs_ngdb = howmany(fs->e2fs_ncg,
    408       1.1    bouyer 			fs->e2fs_bsize / sizeof(struct ext2_gd));
    409      1.20   thorpej 	fs->e2fs_ipb = fs->e2fs_bsize / EXT2_DINODE_SIZE;
    410       1.1    bouyer 	fs->e2fs_itpg = fs->e2fs.e2fs_ipg/fs->e2fs_ipb;
    411       1.1    bouyer 
    412       1.1    bouyer 	/*
    413       1.1    bouyer 	 * Step 3: re-read summary information from disk.
    414       1.1    bouyer 	 */
    415       1.1    bouyer 
    416       1.1    bouyer 	for (i=0; i < fs->e2fs_ngdb; i++) {
    417      1.23    bouyer 		error = bread(devvp ,
    418      1.23    bouyer 		    fsbtodb(fs, ((fs->e2fs_bsize>1024)? 0 : 1) + i + 1),
    419      1.23    bouyer 		    fs->e2fs_bsize, NOCRED, &bp);
    420      1.23    bouyer 		if (error) {
    421      1.23    bouyer 			brelse(bp);
    422       1.1    bouyer 			return (error);
    423      1.23    bouyer 		}
    424       1.4    bouyer 		e2fs_cgload((struct ext2_gd*)bp->b_data,
    425      1.23    bouyer 		    &fs->e2fs_gd[i* fs->e2fs_bsize / sizeof(struct ext2_gd)],
    426      1.23    bouyer 		    fs->e2fs_bsize);
    427       1.1    bouyer 		brelse(bp);
    428       1.1    bouyer 	}
    429       1.1    bouyer 
    430       1.1    bouyer loop:
    431       1.9      fvdl 	simple_lock(&mntvnode_slock);
    432       1.1    bouyer 	for (vp = mountp->mnt_vnodelist.lh_first; vp != NULL; vp = nvp) {
    433       1.9      fvdl 		if (vp->v_mount != mountp) {
    434       1.9      fvdl 			simple_unlock(&mntvnode_slock);
    435       1.9      fvdl 			goto loop;
    436       1.9      fvdl 		}
    437       1.1    bouyer 		nvp = vp->v_mntvnodes.le_next;
    438       1.1    bouyer 		/*
    439       1.1    bouyer 		 * Step 4: invalidate all inactive vnodes.
    440       1.1    bouyer 		 */
    441       1.9      fvdl 		if (vrecycle(vp, &mntvnode_slock, p))
    442       1.9      fvdl 			goto loop;
    443       1.1    bouyer 		/*
    444       1.1    bouyer 		 * Step 5: invalidate all cached file data.
    445       1.1    bouyer 		 */
    446       1.9      fvdl 		simple_lock(&vp->v_interlock);
    447       1.9      fvdl 		simple_unlock(&mntvnode_slock);
    448       1.9      fvdl 		if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK))
    449       1.1    bouyer 			goto loop;
    450       1.1    bouyer 		if (vinvalbuf(vp, 0, cred, p, 0, 0))
    451       1.1    bouyer 			panic("ext2fs_reload: dirty2");
    452       1.1    bouyer 		/*
    453       1.1    bouyer 		 * Step 6: re-read inode data for all active vnodes.
    454       1.1    bouyer 		 */
    455       1.1    bouyer 		ip = VTOI(vp);
    456       1.1    bouyer 		error = bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
    457       1.1    bouyer 				  (int)fs->e2fs_bsize, NOCRED, &bp);
    458       1.1    bouyer 		if (error) {
    459       1.1    bouyer 			vput(vp);
    460       1.1    bouyer 			return (error);
    461       1.1    bouyer 		}
    462      1.20   thorpej 		cp = (caddr_t)bp->b_data +
    463      1.20   thorpej 		    (ino_to_fsbo(fs, ip->i_number) * EXT2_DINODE_SIZE);
    464      1.20   thorpej 		e2fs_iload((struct ext2fs_dinode *)cp, &ip->i_din.e2fs_din);
    465       1.1    bouyer 		brelse(bp);
    466       1.1    bouyer 		vput(vp);
    467       1.9      fvdl 		simple_lock(&mntvnode_slock);
    468       1.1    bouyer 	}
    469       1.9      fvdl 	simple_unlock(&mntvnode_slock);
    470       1.1    bouyer 	return (0);
    471       1.1    bouyer }
    472       1.1    bouyer 
    473       1.1    bouyer /*
    474       1.1    bouyer  * Common code for mount and mountroot
    475       1.1    bouyer  */
    476       1.1    bouyer int
    477       1.1    bouyer ext2fs_mountfs(devvp, mp, p)
    478       1.1    bouyer 	register struct vnode *devvp;
    479       1.1    bouyer 	struct mount *mp;
    480       1.1    bouyer 	struct proc *p;
    481       1.1    bouyer {
    482       1.1    bouyer 	register struct ufsmount *ump;
    483       1.1    bouyer 	struct buf *bp;
    484       1.1    bouyer 	register struct ext2fs *fs;
    485       1.1    bouyer 	register struct m_ext2fs *m_fs;
    486       1.1    bouyer 	dev_t dev;
    487       1.1    bouyer 	struct partinfo dpart;
    488       1.1    bouyer 	int error, i, size, ronly;
    489       1.1    bouyer 	struct ucred *cred;
    490       1.1    bouyer 	extern struct vnode *rootvp;
    491       1.1    bouyer 
    492       1.1    bouyer 	dev = devvp->v_rdev;
    493       1.1    bouyer 	cred = p ? p->p_ucred : NOCRED;
    494       1.1    bouyer 	/*
    495       1.1    bouyer 	 * Disallow multiple mounts of the same device.
    496       1.1    bouyer 	 * Disallow mounting of a device that is currently in use
    497       1.1    bouyer 	 * (except for root, which might share swap device for miniroot).
    498       1.1    bouyer 	 * Flush out any old buffers remaining from a previous use.
    499       1.1    bouyer 	 */
    500       1.1    bouyer 	if ((error = vfs_mountedon(devvp)) != 0)
    501       1.1    bouyer 		return (error);
    502       1.1    bouyer 	if (vcount(devvp) > 1 && devvp != rootvp)
    503       1.1    bouyer 		return (EBUSY);
    504       1.1    bouyer 	if ((error = vinvalbuf(devvp, V_SAVE, cred, p, 0, 0)) != 0)
    505       1.1    bouyer 		return (error);
    506       1.1    bouyer 
    507       1.1    bouyer 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
    508       1.1    bouyer 	error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, p);
    509       1.1    bouyer 	if (error)
    510       1.1    bouyer 		return (error);
    511       1.1    bouyer 	if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, cred, p) != 0)
    512       1.1    bouyer 		size = DEV_BSIZE;
    513       1.1    bouyer 	else
    514       1.1    bouyer 		size = dpart.disklab->d_secsize;
    515       1.1    bouyer 
    516       1.1    bouyer 	bp = NULL;
    517       1.1    bouyer 	ump = NULL;
    518       1.1    bouyer 
    519       1.1    bouyer #ifdef DEBUG_EXT2
    520       1.1    bouyer 	printf("sb size: %d ino size %d\n", sizeof(struct ext2fs),
    521      1.20   thorpej 	    EXT2_DINODE_SIZE);
    522       1.1    bouyer #endif
    523       1.1    bouyer 	error = bread(devvp, (SBOFF / DEV_BSIZE), SBSIZE, cred, &bp);
    524       1.1    bouyer 	if (error)
    525       1.1    bouyer 		goto out;
    526       1.1    bouyer 	fs = (struct ext2fs *)bp->b_data;
    527      1.10    bouyer 	if (fs2h16(fs->e2fs_magic) != E2FS_MAGIC) {
    528      1.10    bouyer 		error = EINVAL;		/* XXX needs translation */
    529      1.10    bouyer 		goto out;
    530      1.10    bouyer 	}
    531      1.10    bouyer 	if (fs2h32(fs->e2fs_rev) != E2FS_REV) {
    532       1.1    bouyer #ifdef DIAGNOSTIC
    533      1.10    bouyer 		printf("Ext2 fs: unsupported revision number: %x (expected %x)\n",
    534      1.10    bouyer 					fs2h32(fs->e2fs_rev), E2FS_REV);
    535       1.1    bouyer #endif
    536       1.1    bouyer 		error = EINVAL;		/* XXX needs translation */
    537       1.1    bouyer 		goto out;
    538       1.1    bouyer 	}
    539       1.4    bouyer 	if (fs2h32(fs->e2fs_log_bsize) > 2) { /* block size = 1024|2048|4096 */
    540       1.1    bouyer #ifdef DIAGNOSTIC
    541      1.10    bouyer 		printf("Ext2 fs: bad block size: %d (expected <=2 for ext2 fs)\n",
    542       1.4    bouyer 			fs2h32(fs->e2fs_log_bsize));
    543       1.1    bouyer #endif
    544       1.1    bouyer 		error = EINVAL;	 /* XXX needs translation */
    545       1.1    bouyer 		goto out;
    546       1.1    bouyer 	}
    547       1.1    bouyer 
    548       1.1    bouyer 	ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
    549      1.16     perry 	memset((caddr_t)ump, 0, sizeof *ump);
    550       1.1    bouyer 	ump->um_e2fs = malloc(sizeof(struct m_ext2fs), M_UFSMNT, M_WAITOK);
    551  1.24.4.1   thorpej 	memset((caddr_t)ump->um_e2fs, 0, sizeof(struct m_ext2fs));
    552       1.4    bouyer 	e2fs_sbload((struct ext2fs*)bp->b_data, &ump->um_e2fs->e2fs);
    553       1.1    bouyer 	brelse(bp);
    554       1.1    bouyer 	bp = NULL;
    555       1.1    bouyer 	m_fs = ump->um_e2fs;
    556       1.1    bouyer 	m_fs->e2fs_ronly = ronly;
    557       1.1    bouyer 	if (ronly == 0) {
    558       1.1    bouyer 		if (m_fs->e2fs.e2fs_state == E2FS_ISCLEAN)
    559       1.1    bouyer 			m_fs->e2fs.e2fs_state = 0;
    560       1.1    bouyer 		else
    561       1.1    bouyer 			m_fs->e2fs.e2fs_state = E2FS_ERRORS;
    562       1.1    bouyer 		m_fs->e2fs_fmod = 1;
    563       1.1    bouyer 	}
    564       1.1    bouyer 
    565       1.1    bouyer 	/* compute dynamic sb infos */
    566       1.1    bouyer 	m_fs->e2fs_ncg =
    567       1.1    bouyer 		howmany(m_fs->e2fs.e2fs_bcount - m_fs->e2fs.e2fs_first_dblock,
    568       1.1    bouyer 		m_fs->e2fs.e2fs_bpg);
    569       1.1    bouyer 	/* XXX assume hw bsize = 512 */
    570       1.1    bouyer 	m_fs->e2fs_fsbtodb = m_fs->e2fs.e2fs_log_bsize + 1;
    571       1.1    bouyer 	m_fs->e2fs_bsize = 1024 << m_fs->e2fs.e2fs_log_bsize;
    572       1.1    bouyer 	m_fs->e2fs_bshift = LOG_MINBSIZE + m_fs->e2fs.e2fs_log_bsize;
    573       1.1    bouyer 	m_fs->e2fs_qbmask = m_fs->e2fs_bsize - 1;
    574       1.1    bouyer 	m_fs->e2fs_bmask = ~m_fs->e2fs_qbmask;
    575       1.1    bouyer 	m_fs->e2fs_ngdb = howmany(m_fs->e2fs_ncg,
    576       1.1    bouyer 		m_fs->e2fs_bsize / sizeof(struct ext2_gd));
    577      1.20   thorpej 	m_fs->e2fs_ipb = m_fs->e2fs_bsize / EXT2_DINODE_SIZE;
    578       1.1    bouyer 	m_fs->e2fs_itpg = m_fs->e2fs.e2fs_ipg/m_fs->e2fs_ipb;
    579       1.1    bouyer 
    580       1.1    bouyer 	m_fs->e2fs_gd = malloc(m_fs->e2fs_ngdb * m_fs->e2fs_bsize,
    581       1.1    bouyer 		M_UFSMNT, M_WAITOK);
    582       1.1    bouyer 	for (i=0; i < m_fs->e2fs_ngdb; i++) {
    583      1.23    bouyer 		error = bread(devvp ,
    584      1.23    bouyer 		    fsbtodb(m_fs, ((m_fs->e2fs_bsize>1024)? 0 : 1) + i + 1),
    585      1.23    bouyer 		    m_fs->e2fs_bsize, NOCRED, &bp);
    586       1.1    bouyer 		if (error) {
    587       1.1    bouyer 			free(m_fs->e2fs_gd, M_UFSMNT);
    588       1.1    bouyer 			goto out;
    589       1.1    bouyer 		}
    590       1.4    bouyer 		e2fs_cgload((struct ext2_gd*)bp->b_data,
    591      1.23    bouyer 		    &m_fs->e2fs_gd[
    592      1.23    bouyer 			i * m_fs->e2fs_bsize / sizeof(struct ext2_gd)],
    593      1.23    bouyer 		    m_fs->e2fs_bsize);
    594       1.1    bouyer 		brelse(bp);
    595       1.1    bouyer 		bp = NULL;
    596       1.1    bouyer 	}
    597       1.1    bouyer 
    598       1.1    bouyer 	mp->mnt_data = (qaddr_t)ump;
    599       1.1    bouyer 	mp->mnt_stat.f_fsid.val[0] = (long)dev;
    600       1.1    bouyer 	mp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_EXT2FS);
    601       1.1    bouyer 	mp->mnt_maxsymlinklen = EXT2_MAXSYMLINKLEN;
    602       1.1    bouyer 	mp->mnt_flag |= MNT_LOCAL;
    603      1.11    bouyer 	ump->um_flags = 0;
    604       1.1    bouyer 	ump->um_mountp = mp;
    605       1.1    bouyer 	ump->um_dev = dev;
    606       1.1    bouyer 	ump->um_devvp = devvp;
    607       1.1    bouyer 	ump->um_nindir = NINDIR(m_fs);
    608       1.1    bouyer 	ump->um_bptrtodb = m_fs->e2fs_fsbtodb;
    609       1.1    bouyer 	ump->um_seqinc = 1; /* no frags */
    610       1.1    bouyer 	devvp->v_specflags |= SI_MOUNTEDON;
    611       1.1    bouyer 	return (0);
    612       1.1    bouyer out:
    613       1.1    bouyer 	if (bp)
    614       1.1    bouyer 		brelse(bp);
    615       1.1    bouyer 	(void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, cred, p);
    616       1.1    bouyer 	if (ump) {
    617       1.1    bouyer 		free(ump->um_e2fs, M_UFSMNT);
    618       1.1    bouyer 		free(ump, M_UFSMNT);
    619       1.1    bouyer 		mp->mnt_data = (qaddr_t)0;
    620       1.1    bouyer 	}
    621       1.1    bouyer 	return (error);
    622       1.1    bouyer }
    623       1.1    bouyer 
    624       1.1    bouyer /*
    625       1.1    bouyer  * unmount system call
    626       1.1    bouyer  */
    627       1.1    bouyer int
    628       1.1    bouyer ext2fs_unmount(mp, mntflags, p)
    629       1.1    bouyer 	struct mount *mp;
    630       1.1    bouyer 	int mntflags;
    631       1.1    bouyer 	struct proc *p;
    632       1.1    bouyer {
    633       1.1    bouyer 	register struct ufsmount *ump;
    634       1.1    bouyer 	register struct m_ext2fs *fs;
    635       1.1    bouyer 	int error, flags;
    636       1.1    bouyer 
    637       1.1    bouyer 	flags = 0;
    638       1.1    bouyer 	if (mntflags & MNT_FORCE)
    639       1.1    bouyer 		flags |= FORCECLOSE;
    640       1.1    bouyer 	if ((error = ext2fs_flushfiles(mp, flags, p)) != 0)
    641       1.1    bouyer 		return (error);
    642       1.1    bouyer 	ump = VFSTOUFS(mp);
    643       1.1    bouyer 	fs = ump->um_e2fs;
    644       1.1    bouyer 	if (fs->e2fs_ronly == 0 &&
    645       1.1    bouyer 		ext2fs_cgupdate(ump, MNT_WAIT) == 0 &&
    646       1.1    bouyer 		(fs->e2fs.e2fs_state & E2FS_ERRORS) == 0) {
    647       1.1    bouyer 		fs->e2fs.e2fs_state = E2FS_ISCLEAN;
    648       1.1    bouyer 		(void) ext2fs_sbupdate(ump, MNT_WAIT);
    649       1.1    bouyer 	}
    650       1.1    bouyer 	ump->um_devvp->v_specflags &= ~SI_MOUNTEDON;
    651       1.1    bouyer 	error = VOP_CLOSE(ump->um_devvp, fs->e2fs_ronly ? FREAD : FREAD|FWRITE,
    652       1.1    bouyer 		NOCRED, p);
    653       1.1    bouyer 	vrele(ump->um_devvp);
    654       1.1    bouyer 	free(fs->e2fs_gd, M_UFSMNT);
    655       1.1    bouyer 	free(fs, M_UFSMNT);
    656       1.1    bouyer 	free(ump, M_UFSMNT);
    657       1.1    bouyer 	mp->mnt_data = (qaddr_t)0;
    658       1.1    bouyer 	mp->mnt_flag &= ~MNT_LOCAL;
    659       1.1    bouyer 	return (error);
    660       1.1    bouyer }
    661       1.1    bouyer 
    662       1.1    bouyer /*
    663       1.1    bouyer  * Flush out all the files in a filesystem.
    664       1.1    bouyer  */
    665       1.1    bouyer int
    666       1.1    bouyer ext2fs_flushfiles(mp, flags, p)
    667       1.1    bouyer 	register struct mount *mp;
    668       1.1    bouyer 	int flags;
    669       1.1    bouyer 	struct proc *p;
    670       1.1    bouyer {
    671       1.1    bouyer 	extern int doforce;
    672       1.1    bouyer 	register struct ufsmount *ump;
    673       1.1    bouyer 	int error;
    674       1.1    bouyer 
    675       1.1    bouyer 	if (!doforce)
    676       1.1    bouyer 		flags &= ~FORCECLOSE;
    677       1.1    bouyer 	ump = VFSTOUFS(mp);
    678       1.1    bouyer 	error = vflush(mp, NULLVP, flags);
    679       1.1    bouyer 	return (error);
    680       1.1    bouyer }
    681       1.1    bouyer 
    682       1.1    bouyer /*
    683       1.1    bouyer  * Get file system statistics.
    684       1.1    bouyer  */
    685       1.1    bouyer int
    686       1.1    bouyer ext2fs_statfs(mp, sbp, p)
    687       1.1    bouyer 	struct mount *mp;
    688       1.1    bouyer 	register struct statfs *sbp;
    689       1.1    bouyer 	struct proc *p;
    690       1.1    bouyer {
    691       1.1    bouyer 	register struct ufsmount *ump;
    692       1.1    bouyer 	register struct m_ext2fs *fs;
    693       1.1    bouyer 	u_int32_t overhead, overhead_per_group;
    694       1.1    bouyer 
    695       1.1    bouyer 	ump = VFSTOUFS(mp);
    696       1.1    bouyer 	fs = ump->um_e2fs;
    697       1.1    bouyer 	if (fs->e2fs.e2fs_magic != E2FS_MAGIC)
    698       1.1    bouyer 		panic("ext2fs_statfs");
    699       1.9      fvdl 
    700       1.1    bouyer #ifdef COMPAT_09
    701       1.1    bouyer 	sbp->f_type = 1;
    702       1.1    bouyer #else
    703       1.1    bouyer 	sbp->f_type = 0;
    704       1.1    bouyer #endif
    705       1.1    bouyer 
    706       1.1    bouyer 	/*
    707       1.1    bouyer 	 * Compute the overhead (FS structures)
    708       1.1    bouyer 	 */
    709       1.1    bouyer 	overhead_per_group = 1 /* super block */ +
    710       1.1    bouyer 						 fs->e2fs_ngdb +
    711       1.1    bouyer 						 1 /* block bitmap */ +
    712       1.1    bouyer 						 1 /* inode bitmap */ +
    713       1.1    bouyer 						 fs->e2fs_itpg;
    714       1.1    bouyer 	overhead = fs->e2fs.e2fs_first_dblock +
    715       1.1    bouyer 		   fs->e2fs_ncg * overhead_per_group;
    716       1.1    bouyer 
    717       1.1    bouyer 
    718       1.1    bouyer 	sbp->f_bsize = fs->e2fs_bsize;
    719       1.1    bouyer 	sbp->f_iosize = fs->e2fs_bsize;
    720       1.1    bouyer 	sbp->f_blocks = fs->e2fs.e2fs_bcount - overhead;
    721       1.1    bouyer 	sbp->f_bfree = fs->e2fs.e2fs_fbcount;
    722       1.1    bouyer 	sbp->f_bavail = sbp->f_bfree - fs->e2fs.e2fs_rbcount;
    723       1.1    bouyer 	sbp->f_files =  fs->e2fs.e2fs_icount;
    724       1.1    bouyer 	sbp->f_ffree = fs->e2fs.e2fs_ficount;
    725       1.1    bouyer 	if (sbp != &mp->mnt_stat) {
    726      1.16     perry 		memcpy(sbp->f_mntonname, mp->mnt_stat.f_mntonname, MNAMELEN);
    727      1.16     perry 		memcpy(sbp->f_mntfromname, mp->mnt_stat.f_mntfromname, MNAMELEN);
    728       1.1    bouyer 	}
    729       1.1    bouyer 	strncpy(sbp->f_fstypename, mp->mnt_op->vfs_name, MFSNAMELEN);
    730       1.1    bouyer 	return (0);
    731       1.1    bouyer }
    732       1.1    bouyer 
    733       1.1    bouyer /*
    734       1.1    bouyer  * Go through the disk queues to initiate sandbagged IO;
    735       1.1    bouyer  * go through the inodes to write those that have been modified;
    736       1.1    bouyer  * initiate the writing of the super block if it has been modified.
    737       1.1    bouyer  *
    738       1.1    bouyer  * Note: we are always called with the filesystem marked `MPBUSY'.
    739       1.1    bouyer  */
    740       1.1    bouyer int
    741       1.1    bouyer ext2fs_sync(mp, waitfor, cred, p)
    742       1.1    bouyer 	struct mount *mp;
    743       1.1    bouyer 	int waitfor;
    744       1.1    bouyer 	struct ucred *cred;
    745       1.1    bouyer 	struct proc *p;
    746       1.1    bouyer {
    747       1.9      fvdl 	struct vnode *vp, *nvp;
    748       1.9      fvdl 	struct inode *ip;
    749       1.9      fvdl 	struct ufsmount *ump = VFSTOUFS(mp);
    750       1.9      fvdl 	struct m_ext2fs *fs;
    751       1.1    bouyer 	int error, allerror = 0;
    752       1.1    bouyer 
    753       1.1    bouyer 	fs = ump->um_e2fs;
    754       1.9      fvdl 	if (fs->e2fs_ronly != 0) {		/* XXX */
    755       1.9      fvdl 		printf("fs = %s\n", fs->e2fs_fsmnt);
    756       1.9      fvdl 		panic("update: rofs mod");
    757       1.1    bouyer 	}
    758       1.9      fvdl 
    759       1.1    bouyer 	/*
    760       1.1    bouyer 	 * Write back each (modified) inode.
    761       1.1    bouyer 	 */
    762       1.9      fvdl 	simple_lock(&mntvnode_slock);
    763       1.1    bouyer loop:
    764       1.9      fvdl 	for (vp = mp->mnt_vnodelist.lh_first; vp != NULL; vp = nvp) {
    765       1.1    bouyer 		/*
    766       1.1    bouyer 		 * If the vnode that we are about to sync is no longer
    767       1.1    bouyer 		 * associated with this mount point, start over.
    768       1.1    bouyer 		 */
    769       1.1    bouyer 		if (vp->v_mount != mp)
    770       1.1    bouyer 			goto loop;
    771       1.9      fvdl 		simple_lock(&vp->v_interlock);
    772       1.9      fvdl 		nvp = vp->v_mntvnodes.le_next;
    773       1.1    bouyer 		ip = VTOI(vp);
    774       1.1    bouyer 		if ((ip->i_flag &
    775       1.9      fvdl 		    (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
    776       1.9      fvdl 			vp->v_dirtyblkhd.lh_first == NULL) {
    777       1.9      fvdl 			simple_unlock(&vp->v_interlock);
    778       1.1    bouyer 			continue;
    779       1.9      fvdl 		}
    780       1.9      fvdl 		simple_unlock(&mntvnode_slock);
    781       1.9      fvdl 		error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
    782       1.9      fvdl 		if (error) {
    783       1.9      fvdl 			simple_lock(&mntvnode_slock);
    784       1.9      fvdl 			if (error == ENOENT)
    785       1.9      fvdl 				goto loop;
    786      1.21    bouyer 			continue;
    787       1.9      fvdl 		}
    788      1.12    kleink 		if ((error = VOP_FSYNC(vp, cred,
    789      1.12    kleink 		    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, p)) != 0)
    790       1.1    bouyer 			allerror = error;
    791      1.22    bouyer 		vput(vp);
    792       1.9      fvdl 		simple_lock(&mntvnode_slock);
    793       1.1    bouyer 	}
    794       1.9      fvdl 	simple_unlock(&mntvnode_slock);
    795       1.1    bouyer 	/*
    796       1.1    bouyer 	 * Force stale file system control information to be flushed.
    797       1.1    bouyer 	 */
    798      1.12    kleink 	if ((error = VOP_FSYNC(ump->um_devvp, cred,
    799      1.12    kleink 	    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, p)) != 0)
    800       1.1    bouyer 		allerror = error;
    801       1.9      fvdl 	/*
    802       1.9      fvdl 	 * Write back modified superblock.
    803       1.9      fvdl 	 */
    804       1.9      fvdl 	if (fs->e2fs_fmod != 0) {
    805       1.9      fvdl 		fs->e2fs_fmod = 0;
    806       1.9      fvdl 		fs->e2fs.e2fs_wtime = time.tv_sec;
    807       1.9      fvdl 		if ((error = ext2fs_cgupdate(ump, waitfor)))
    808       1.9      fvdl 			allerror = error;
    809       1.9      fvdl 	}
    810       1.1    bouyer 	return (allerror);
    811       1.1    bouyer }
    812       1.1    bouyer 
    813       1.1    bouyer /*
    814       1.1    bouyer  * Look up a EXT2FS dinode number to find its incore vnode, otherwise read it
    815       1.1    bouyer  * in from disk.  If it is in core, wait for the lock bit to clear, then
    816       1.1    bouyer  * return the inode locked.  Detection and handling of mount points must be
    817       1.1    bouyer  * done by the calling routine.
    818       1.1    bouyer  */
    819       1.1    bouyer int
    820       1.1    bouyer ext2fs_vget(mp, ino, vpp)
    821       1.1    bouyer 	struct mount *mp;
    822       1.1    bouyer 	ino_t ino;
    823       1.1    bouyer 	struct vnode **vpp;
    824       1.1    bouyer {
    825       1.9      fvdl 	struct m_ext2fs *fs;
    826       1.9      fvdl 	struct inode *ip;
    827       1.1    bouyer 	struct ufsmount *ump;
    828       1.1    bouyer 	struct buf *bp;
    829       1.1    bouyer 	struct vnode *vp;
    830       1.1    bouyer 	dev_t dev;
    831       1.1    bouyer 	int error;
    832      1.20   thorpej 	caddr_t cp;
    833       1.1    bouyer 
    834       1.1    bouyer 	ump = VFSTOUFS(mp);
    835       1.1    bouyer 	dev = ump->um_dev;
    836       1.3    bouyer 	do {
    837       1.3    bouyer 		if ((*vpp = ufs_ihashget(dev, ino)) != NULL)
    838       1.3    bouyer 			return (0);
    839       1.9      fvdl 	} while (lockmgr(&ufs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0));
    840       1.1    bouyer 
    841       1.1    bouyer 	/* Allocate a new vnode/inode. */
    842       1.1    bouyer 	if ((error = getnewvnode(VT_EXT2FS, mp, ext2fs_vnodeop_p, &vp)) != 0) {
    843       1.1    bouyer 		*vpp = NULL;
    844       1.9      fvdl 		lockmgr(&ufs_hashlock, LK_RELEASE, 0);
    845       1.1    bouyer 		return (error);
    846       1.1    bouyer 	}
    847      1.17   thorpej 	ip = pool_get(&ext2fs_inode_pool, PR_WAITOK);
    848      1.16     perry 	memset((caddr_t)ip, 0, sizeof(struct inode));
    849       1.1    bouyer 	vp->v_data = ip;
    850       1.1    bouyer 	ip->i_vnode = vp;
    851       1.1    bouyer 	ip->i_e2fs = fs = ump->um_e2fs;
    852       1.1    bouyer 	ip->i_dev = dev;
    853       1.1    bouyer 	ip->i_number = ino;
    854       1.1    bouyer 	ip->i_e2fs_last_lblk = 0;
    855       1.1    bouyer 	ip->i_e2fs_last_blk = 0;
    856       1.1    bouyer 
    857       1.1    bouyer 	/*
    858       1.1    bouyer 	 * Put it onto its hash chain and lock it so that other requests for
    859       1.1    bouyer 	 * this inode will block if they arrive while we are sleeping waiting
    860       1.1    bouyer 	 * for old data structures to be purged or for the contents of the
    861       1.1    bouyer 	 * disk portion of this inode to be read.
    862       1.1    bouyer 	 */
    863       1.1    bouyer 	ufs_ihashins(ip);
    864       1.9      fvdl 	lockmgr(&ufs_hashlock, LK_RELEASE, 0);
    865       1.1    bouyer 
    866       1.1    bouyer 	/* Read in the disk contents for the inode, copy into the inode. */
    867       1.1    bouyer 	error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
    868       1.1    bouyer 			  (int)fs->e2fs_bsize, NOCRED, &bp);
    869       1.1    bouyer 	if (error) {
    870       1.1    bouyer 		/*
    871       1.1    bouyer 		 * The inode does not contain anything useful, so it would
    872       1.1    bouyer 		 * be misleading to leave it on its hash chain. With mode
    873       1.1    bouyer 		 * still zero, it will be unlinked and returned to the free
    874       1.1    bouyer 		 * list by vput().
    875       1.1    bouyer 		 */
    876       1.1    bouyer 		vput(vp);
    877       1.1    bouyer 		brelse(bp);
    878       1.1    bouyer 		*vpp = NULL;
    879       1.1    bouyer 		return (error);
    880       1.1    bouyer 	}
    881      1.20   thorpej 	cp = (caddr_t)bp->b_data +
    882      1.20   thorpej 	    (ino_to_fsbo(fs, ino) * EXT2_DINODE_SIZE);
    883      1.20   thorpej 	e2fs_iload((struct ext2fs_dinode *)cp, &ip->i_din.e2fs_din);
    884       1.1    bouyer 	brelse(bp);
    885       1.1    bouyer 
    886       1.5    bouyer 	/* If the inode was deleted, reset all fields */
    887       1.5    bouyer 	if (ip->i_e2fs_dtime != 0) {
    888       1.5    bouyer 		ip->i_e2fs_mode = ip->i_e2fs_size = ip->i_e2fs_nblock = 0;
    889      1.16     perry 		memset(ip->i_e2fs_blocks, 0, sizeof(ip->i_e2fs_blocks));
    890       1.5    bouyer 	}
    891       1.5    bouyer 
    892       1.1    bouyer 	/*
    893       1.1    bouyer 	 * Initialize the vnode from the inode, check for aliases.
    894       1.1    bouyer 	 * Note that the underlying vnode may have changed.
    895       1.1    bouyer 	 */
    896      1.14  sommerfe 	error = ext2fs_vinit(mp, ext2fs_specop_p, ext2fs_fifoop_p, &vp);
    897       1.1    bouyer 	if (error) {
    898       1.1    bouyer 		vput(vp);
    899       1.1    bouyer 		*vpp = NULL;
    900       1.1    bouyer 		return (error);
    901       1.1    bouyer 	}
    902       1.1    bouyer 	/*
    903       1.1    bouyer 	 * Finish inode initialization now that aliasing has been resolved.
    904       1.1    bouyer 	 */
    905       1.1    bouyer 	ip->i_devvp = ump->um_devvp;
    906       1.1    bouyer 	VREF(ip->i_devvp);
    907       1.1    bouyer 	/*
    908       1.1    bouyer 	 * Set up a generation number for this inode if it does not
    909       1.1    bouyer 	 * already have one. This should only happen on old filesystems.
    910       1.1    bouyer 	 */
    911       1.1    bouyer 	if (ip->i_e2fs_gen == 0) {
    912       1.1    bouyer 		if (++ext2gennumber < (u_long)time.tv_sec)
    913       1.1    bouyer 			ext2gennumber = time.tv_sec;
    914       1.1    bouyer 		ip->i_e2fs_gen = ext2gennumber;
    915       1.1    bouyer 		if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
    916       1.1    bouyer 			ip->i_flag |= IN_MODIFIED;
    917       1.1    bouyer 	}
    918       1.1    bouyer 
    919       1.1    bouyer 	*vpp = vp;
    920       1.1    bouyer 	return (0);
    921       1.1    bouyer }
    922       1.1    bouyer 
    923       1.1    bouyer /*
    924       1.1    bouyer  * File handle to vnode
    925       1.1    bouyer  *
    926       1.1    bouyer  * Have to be really careful about stale file handles:
    927       1.1    bouyer  * - check that the inode number is valid
    928       1.1    bouyer  * - call ext2fs_vget() to get the locked inode
    929       1.1    bouyer  * - check for an unallocated inode (i_mode == 0)
    930       1.1    bouyer  */
    931       1.1    bouyer int
    932      1.24  wrstuden ext2fs_fhtovp(mp, fhp, vpp)
    933       1.1    bouyer 	register struct mount *mp;
    934       1.1    bouyer 	struct fid *fhp;
    935       1.1    bouyer 	struct vnode **vpp;
    936       1.1    bouyer {
    937      1.24  wrstuden 	register struct inode *ip;
    938      1.24  wrstuden 	struct vnode *nvp;
    939      1.24  wrstuden 	int error;
    940       1.1    bouyer 	register struct ufid *ufhp;
    941       1.1    bouyer 	struct m_ext2fs *fs;
    942       1.1    bouyer 
    943       1.1    bouyer 	ufhp = (struct ufid *)fhp;
    944       1.1    bouyer 	fs = VFSTOUFS(mp)->um_e2fs;
    945       1.1    bouyer 	if ((ufhp->ufid_ino < EXT2_FIRSTINO && ufhp->ufid_ino != EXT2_ROOTINO) ||
    946       1.1    bouyer 		ufhp->ufid_ino >= fs->e2fs_ncg * fs->e2fs.e2fs_ipg)
    947       1.1    bouyer 		return (ESTALE);
    948      1.24  wrstuden 
    949      1.24  wrstuden 	if ((error = VFS_VGET(mp, ufhp->ufid_ino, &nvp)) != 0) {
    950      1.24  wrstuden 		*vpp = NULLVP;
    951      1.24  wrstuden 		return (error);
    952      1.24  wrstuden 	}
    953      1.24  wrstuden 	ip = VTOI(nvp);
    954      1.24  wrstuden 	if (ip->i_e2fs_mode == 0 || ip->i_e2fs_dtime != 0 ||
    955      1.24  wrstuden 		ip->i_e2fs_gen != ufhp->ufid_gen) {
    956      1.24  wrstuden 		vput(nvp);
    957      1.24  wrstuden 		*vpp = NULLVP;
    958      1.24  wrstuden 		return (ESTALE);
    959      1.24  wrstuden 	}
    960      1.24  wrstuden 	*vpp = nvp;
    961      1.24  wrstuden 	return (0);
    962       1.1    bouyer }
    963       1.1    bouyer 
    964       1.1    bouyer /*
    965       1.1    bouyer  * Vnode pointer to File handle
    966       1.1    bouyer  */
    967       1.1    bouyer /* ARGSUSED */
    968       1.1    bouyer int
    969       1.1    bouyer ext2fs_vptofh(vp, fhp)
    970       1.1    bouyer 	struct vnode *vp;
    971       1.1    bouyer 	struct fid *fhp;
    972       1.1    bouyer {
    973       1.1    bouyer 	register struct inode *ip;
    974       1.1    bouyer 	register struct ufid *ufhp;
    975       1.1    bouyer 
    976       1.1    bouyer 	ip = VTOI(vp);
    977       1.1    bouyer 	ufhp = (struct ufid *)fhp;
    978       1.1    bouyer 	ufhp->ufid_len = sizeof(struct ufid);
    979       1.1    bouyer 	ufhp->ufid_ino = ip->i_number;
    980       1.1    bouyer 	ufhp->ufid_gen = ip->i_e2fs_gen;
    981       1.1    bouyer 	return (0);
    982       1.9      fvdl }
    983       1.9      fvdl 
    984       1.9      fvdl int
    985       1.9      fvdl ext2fs_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
    986       1.9      fvdl 	int *name;
    987       1.9      fvdl 	u_int namelen;
    988       1.9      fvdl 	void *oldp;
    989       1.9      fvdl 	size_t *oldlenp;
    990       1.9      fvdl 	void *newp;
    991       1.9      fvdl 	size_t newlen;
    992       1.9      fvdl 	struct proc *p;
    993       1.9      fvdl {
    994       1.9      fvdl 	return (EOPNOTSUPP);
    995       1.1    bouyer }
    996       1.1    bouyer 
    997       1.1    bouyer /*
    998       1.1    bouyer  * Write a superblock and associated information back to disk.
    999       1.1    bouyer  */
   1000       1.1    bouyer int
   1001       1.1    bouyer ext2fs_sbupdate(mp, waitfor)
   1002       1.1    bouyer 	struct ufsmount *mp;
   1003       1.1    bouyer 	int waitfor;
   1004       1.1    bouyer {
   1005       1.1    bouyer 	register struct m_ext2fs *fs = mp->um_e2fs;
   1006       1.1    bouyer 	register struct buf *bp;
   1007       1.1    bouyer 	int error = 0;
   1008       1.1    bouyer 
   1009       1.1    bouyer 	bp = getblk(mp->um_devvp, SBLOCK, SBSIZE, 0, 0);
   1010       1.4    bouyer 	e2fs_sbsave(&fs->e2fs, (struct ext2fs*)bp->b_data);
   1011       1.1    bouyer 	if (waitfor == MNT_WAIT)
   1012       1.1    bouyer 		error = bwrite(bp);
   1013       1.1    bouyer 	else
   1014       1.1    bouyer 		bawrite(bp);
   1015       1.1    bouyer 	return (error);
   1016       1.1    bouyer }
   1017       1.1    bouyer 
   1018       1.1    bouyer int
   1019       1.1    bouyer ext2fs_cgupdate(mp, waitfor)
   1020       1.1    bouyer 	struct ufsmount *mp;
   1021       1.1    bouyer 	int waitfor;
   1022       1.1    bouyer {
   1023       1.1    bouyer 	register struct m_ext2fs *fs = mp->um_e2fs;
   1024       1.1    bouyer 	register struct buf *bp;
   1025       1.1    bouyer 	int i, error = 0, allerror = 0;
   1026       1.1    bouyer 
   1027       1.1    bouyer 	allerror = ext2fs_sbupdate(mp, waitfor);
   1028       1.1    bouyer 	for (i = 0; i < fs->e2fs_ngdb; i++) {
   1029       1.1    bouyer 		bp = getblk(mp->um_devvp, fsbtodb(fs, ((fs->e2fs_bsize>1024)?0:1)+i+1),
   1030       1.1    bouyer 			fs->e2fs_bsize, 0, 0);
   1031       1.4    bouyer 		e2fs_cgsave(&fs->e2fs_gd[i* fs->e2fs_bsize / sizeof(struct ext2_gd)],
   1032       1.4    bouyer 				(struct ext2_gd*)bp->b_data, fs->e2fs_bsize);
   1033       1.1    bouyer 		if (waitfor == MNT_WAIT)
   1034       1.1    bouyer 			error = bwrite(bp);
   1035       1.1    bouyer 		else
   1036       1.1    bouyer 			bawrite(bp);
   1037       1.1    bouyer 	}
   1038       1.1    bouyer 
   1039       1.1    bouyer 	if (!allerror && error)
   1040       1.1    bouyer 		allerror = error;
   1041       1.1    bouyer 	return (allerror);
   1042       1.1    bouyer }
   1043