Home | History | Annotate | Line # | Download | only in ffs
ffs_vfsops.c revision 1.209
      1 /*	$NetBSD: ffs_vfsops.c,v 1.209 2007/10/08 18:01:29 ad Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1989, 1991, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. Neither the name of the University nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  *
     31  *	@(#)ffs_vfsops.c	8.31 (Berkeley) 5/20/95
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.209 2007/10/08 18:01:29 ad Exp $");
     36 
     37 #if defined(_KERNEL_OPT)
     38 #include "opt_ffs.h"
     39 #include "opt_quota.h"
     40 #include "opt_softdep.h"
     41 #endif
     42 
     43 #include <sys/param.h>
     44 #include <sys/systm.h>
     45 #include <sys/namei.h>
     46 #include <sys/proc.h>
     47 #include <sys/kernel.h>
     48 #include <sys/vnode.h>
     49 #include <sys/socket.h>
     50 #include <sys/mount.h>
     51 #include <sys/buf.h>
     52 #include <sys/device.h>
     53 #include <sys/mbuf.h>
     54 #include <sys/file.h>
     55 #include <sys/disklabel.h>
     56 #include <sys/ioctl.h>
     57 #include <sys/errno.h>
     58 #include <sys/malloc.h>
     59 #include <sys/pool.h>
     60 #include <sys/lock.h>
     61 #include <sys/sysctl.h>
     62 #include <sys/conf.h>
     63 #include <sys/kauth.h>
     64 #include <sys/fstrans.h>
     65 
     66 #include <miscfs/specfs/specdev.h>
     67 
     68 #include <ufs/ufs/quota.h>
     69 #include <ufs/ufs/ufsmount.h>
     70 #include <ufs/ufs/inode.h>
     71 #include <ufs/ufs/dir.h>
     72 #include <ufs/ufs/ufs_extern.h>
     73 #include <ufs/ufs/ufs_bswap.h>
     74 
     75 #include <ufs/ffs/fs.h>
     76 #include <ufs/ffs/ffs_extern.h>
     77 
     78 /* how many times ffs_init() was called */
     79 int ffs_initcount = 0;
     80 
     81 extern kmutex_t ufs_hashlock;
     82 
     83 extern const struct vnodeopv_desc ffs_vnodeop_opv_desc;
     84 extern const struct vnodeopv_desc ffs_specop_opv_desc;
     85 extern const struct vnodeopv_desc ffs_fifoop_opv_desc;
     86 
     87 const struct vnodeopv_desc * const ffs_vnodeopv_descs[] = {
     88 	&ffs_vnodeop_opv_desc,
     89 	&ffs_specop_opv_desc,
     90 	&ffs_fifoop_opv_desc,
     91 	NULL,
     92 };
     93 
     94 struct vfsops ffs_vfsops = {
     95 	MOUNT_FFS,
     96 	sizeof (struct ufs_args),
     97 	ffs_mount,
     98 	ufs_start,
     99 	ffs_unmount,
    100 	ufs_root,
    101 	ufs_quotactl,
    102 	ffs_statvfs,
    103 	ffs_sync,
    104 	ffs_vget,
    105 	ffs_fhtovp,
    106 	ffs_vptofh,
    107 	ffs_init,
    108 	ffs_reinit,
    109 	ffs_done,
    110 	ffs_mountroot,
    111 	ffs_snapshot,
    112 	ffs_extattrctl,
    113 	ffs_suspendctl,
    114 	ffs_vnodeopv_descs,
    115 	0,
    116 	{ NULL, NULL },
    117 };
    118 VFS_ATTACH(ffs_vfsops);
    119 
    120 static const struct genfs_ops ffs_genfsops = {
    121 	.gop_size = ffs_gop_size,
    122 	.gop_alloc = ufs_gop_alloc,
    123 	.gop_write = genfs_gop_write,
    124 	.gop_markupdate = ufs_gop_markupdate,
    125 };
    126 
    127 static const struct ufs_ops ffs_ufsops = {
    128 	.uo_itimes = ffs_itimes,
    129 	.uo_update = ffs_update,
    130 	.uo_truncate = ffs_truncate,
    131 	.uo_valloc = ffs_valloc,
    132 	.uo_vfree = ffs_vfree,
    133 	.uo_balloc = ffs_balloc,
    134 };
    135 
    136 struct pool ffs_inode_pool;
    137 struct pool ffs_dinode1_pool;
    138 struct pool ffs_dinode2_pool;
    139 
    140 static void ffs_oldfscompat_read(struct fs *, struct ufsmount *, daddr_t);
    141 static void ffs_oldfscompat_write(struct fs *, struct ufsmount *);
    142 
    143 /*
    144  * Called by main() when ffs is going to be mounted as root.
    145  */
    146 
    147 int
    148 ffs_mountroot(void)
    149 {
    150 	struct fs *fs;
    151 	struct mount *mp;
    152 	struct lwp *l = curlwp;			/* XXX */
    153 	struct ufsmount *ump;
    154 	int error;
    155 
    156 	if (device_class(root_device) != DV_DISK)
    157 		return (ENODEV);
    158 
    159 	if ((error = vfs_rootmountalloc(MOUNT_FFS, "root_device", &mp))) {
    160 		vrele(rootvp);
    161 		return (error);
    162 	}
    163 	if ((error = ffs_mountfs(rootvp, mp, l)) != 0) {
    164 		mp->mnt_op->vfs_refcount--;
    165 		vfs_unbusy(mp);
    166 		free(mp, M_MOUNT);
    167 		return (error);
    168 	}
    169 	simple_lock(&mountlist_slock);
    170 	CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
    171 	simple_unlock(&mountlist_slock);
    172 	ump = VFSTOUFS(mp);
    173 	fs = ump->um_fs;
    174 	memset(fs->fs_fsmnt, 0, sizeof(fs->fs_fsmnt));
    175 	(void)copystr(mp->mnt_stat.f_mntonname, fs->fs_fsmnt, MNAMELEN - 1, 0);
    176 	(void)ffs_statvfs(mp, &mp->mnt_stat, l);
    177 	vfs_unbusy(mp);
    178 	setrootfstime((time_t)fs->fs_time);
    179 	return (0);
    180 }
    181 
    182 /*
    183  * VFS Operations.
    184  *
    185  * mount system call
    186  */
    187 int
    188 ffs_mount(struct mount *mp, const char *path, void *data, size_t *data_len,
    189     struct lwp *l)
    190 {
    191 	struct nameidata nd;
    192 	struct vnode *devvp = NULL;
    193 	struct ufs_args *args = data;
    194 	struct ufsmount *ump = NULL;
    195 	struct fs *fs;
    196 	int error = 0, flags, update;
    197 	mode_t accessmode;
    198 
    199 	if (*data_len < sizeof *args)
    200 		return EINVAL;
    201 
    202 	if (mp->mnt_flag & MNT_GETARGS) {
    203 		ump = VFSTOUFS(mp);
    204 		if (ump == NULL)
    205 			return EIO;
    206 		args->fspec = NULL;
    207 		*data_len = sizeof *args;
    208 		return 0;
    209 	}
    210 
    211 #if !defined(SOFTDEP)
    212 	mp->mnt_flag &= ~MNT_SOFTDEP;
    213 #endif
    214 
    215 	update = mp->mnt_flag & MNT_UPDATE;
    216 
    217 	/* Check arguments */
    218 	if (args->fspec != NULL) {
    219 		/*
    220 		 * Look up the name and verify that it's sane.
    221 		 */
    222 		NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, args->fspec, l);
    223 		if ((error = namei(&nd)) != 0)
    224 			return (error);
    225 		devvp = nd.ni_vp;
    226 
    227 		if (!update) {
    228 			/*
    229 			 * Be sure this is a valid block device
    230 			 */
    231 			if (devvp->v_type != VBLK)
    232 				error = ENOTBLK;
    233 			else if (bdevsw_lookup(devvp->v_rdev) == NULL)
    234 				error = ENXIO;
    235 		} else {
    236 			/*
    237 			 * Be sure we're still naming the same device
    238 			 * used for our initial mount
    239 			 */
    240 			ump = VFSTOUFS(mp);
    241 			if (devvp != ump->um_devvp) {
    242 				if (devvp->v_rdev != ump->um_devvp->v_rdev)
    243 					error = EINVAL;
    244 				else {
    245 					vrele(devvp);
    246 					devvp = ump->um_devvp;
    247 					vref(devvp);
    248 				}
    249 			}
    250 		}
    251 	} else {
    252 		if (!update) {
    253 			/* New mounts must have a filename for the device */
    254 			return (EINVAL);
    255 		} else {
    256 			/* Use the extant mount */
    257 			ump = VFSTOUFS(mp);
    258 			devvp = ump->um_devvp;
    259 			vref(devvp);
    260 		}
    261 	}
    262 
    263 	/*
    264 	 * If mount by non-root, then verify that user has necessary
    265 	 * permissions on the device.
    266 	 */
    267 	if (error == 0 && kauth_authorize_generic(l->l_cred,
    268 	    KAUTH_GENERIC_ISSUSER, NULL) != 0) {
    269 		accessmode = VREAD;
    270 		if (update ?
    271 		    (mp->mnt_iflag & IMNT_WANTRDWR) != 0 :
    272 		    (mp->mnt_flag & MNT_RDONLY) == 0)
    273 			accessmode |= VWRITE;
    274 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    275 		error = VOP_ACCESS(devvp, accessmode, l->l_cred, l);
    276 		VOP_UNLOCK(devvp, 0);
    277 	}
    278 
    279 	if (error) {
    280 		vrele(devvp);
    281 		return (error);
    282 	}
    283 
    284 	if (!update) {
    285 		int xflags;
    286 
    287 		/*
    288 		 * Disallow multiple mounts of the same device.
    289 		 * Disallow mounting of a device that is currently in use
    290 		 * (except for root, which might share swap device for
    291 		 * miniroot).
    292 		 */
    293 		error = vfs_mountedon(devvp);
    294 		if (error)
    295 			goto fail;
    296 		if (vcount(devvp) > 1 && devvp != rootvp) {
    297 			error = EBUSY;
    298 			goto fail;
    299 		}
    300 		if (mp->mnt_flag & MNT_RDONLY)
    301 			xflags = FREAD;
    302 		else
    303 			xflags = FREAD|FWRITE;
    304 		error = VOP_OPEN(devvp, xflags, FSCRED, l);
    305 		if (error)
    306 			goto fail;
    307 		error = ffs_mountfs(devvp, mp, l);
    308 		if (error) {
    309 			vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    310 			(void)VOP_CLOSE(devvp, xflags, NOCRED, l);
    311 			VOP_UNLOCK(devvp, 0);
    312 			goto fail;
    313 		}
    314 
    315 		ump = VFSTOUFS(mp);
    316 		fs = ump->um_fs;
    317 		if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
    318 		    (MNT_SOFTDEP | MNT_ASYNC)) {
    319 			printf("%s fs uses soft updates, "
    320 			    "ignoring async mode\n",
    321 			    fs->fs_fsmnt);
    322 			mp->mnt_flag &= ~MNT_ASYNC;
    323 		}
    324 	} else {
    325 		/*
    326 		 * Update the mount.
    327 		 */
    328 
    329 		/*
    330 		 * The initial mount got a reference on this
    331 		 * device, so drop the one obtained via
    332 		 * namei(), above.
    333 		 */
    334 		vrele(devvp);
    335 
    336 		ump = VFSTOUFS(mp);
    337 		fs = ump->um_fs;
    338 		if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
    339 			/*
    340 			 * Changing from r/w to r/o
    341 			 */
    342 			flags = WRITECLOSE;
    343 			if (mp->mnt_flag & MNT_FORCE)
    344 				flags |= FORCECLOSE;
    345 			if (mp->mnt_flag & MNT_SOFTDEP)
    346 				error = softdep_flushfiles(mp, flags, l);
    347 			else
    348 				error = ffs_flushfiles(mp, flags, l);
    349 			if (fs->fs_pendingblocks != 0 ||
    350 			    fs->fs_pendinginodes != 0) {
    351 				printf("%s: update error: blocks %" PRId64
    352 				       " files %d\n",
    353 				    fs->fs_fsmnt, fs->fs_pendingblocks,
    354 				    fs->fs_pendinginodes);
    355 				fs->fs_pendingblocks = 0;
    356 				fs->fs_pendinginodes = 0;
    357 			}
    358 			if (error == 0 &&
    359 			    ffs_cgupdate(ump, MNT_WAIT) == 0 &&
    360 			    fs->fs_clean & FS_WASCLEAN) {
    361 				if (mp->mnt_flag & MNT_SOFTDEP)
    362 					fs->fs_flags &= ~FS_DOSOFTDEP;
    363 				fs->fs_clean = FS_ISCLEAN;
    364 				(void) ffs_sbupdate(ump, MNT_WAIT);
    365 			}
    366 			if (error)
    367 				return (error);
    368 			fs->fs_ronly = 1;
    369 			fs->fs_fmod = 0;
    370 		}
    371 
    372 		/*
    373 		 * Flush soft dependencies if disabling it via an update
    374 		 * mount. This may leave some items to be processed,
    375 		 * so don't do this yet XXX.
    376 		 */
    377 		if ((fs->fs_flags & FS_DOSOFTDEP) &&
    378 		    !(mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
    379 #ifdef notyet
    380 			flags = WRITECLOSE;
    381 			if (mp->mnt_flag & MNT_FORCE)
    382 				flags |= FORCECLOSE;
    383 			error = softdep_flushfiles(mp, flags, l);
    384 			if (error == 0 && ffs_cgupdate(ump, MNT_WAIT) == 0)
    385 				fs->fs_flags &= ~FS_DOSOFTDEP;
    386 				(void) ffs_sbupdate(ump, MNT_WAIT);
    387 #elif defined(SOFTDEP)
    388 			mp->mnt_flag |= MNT_SOFTDEP;
    389 #endif
    390 		}
    391 
    392 		/*
    393 		 * When upgrading to a softdep mount, we must first flush
    394 		 * all vnodes. (not done yet -- see above)
    395 		 */
    396 		if (!(fs->fs_flags & FS_DOSOFTDEP) &&
    397 		    (mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
    398 #ifdef notyet
    399 			flags = WRITECLOSE;
    400 			if (mp->mnt_flag & MNT_FORCE)
    401 				flags |= FORCECLOSE;
    402 			error = ffs_flushfiles(mp, flags, l);
    403 #else
    404 			mp->mnt_flag &= ~MNT_SOFTDEP;
    405 #endif
    406 		}
    407 
    408 		if (mp->mnt_flag & MNT_RELOAD) {
    409 			error = ffs_reload(mp, l->l_cred, l);
    410 			if (error)
    411 				return (error);
    412 		}
    413 
    414 		if (fs->fs_ronly && (mp->mnt_iflag & IMNT_WANTRDWR)) {
    415 			/*
    416 			 * Changing from read-only to read/write
    417 			 */
    418 			fs->fs_ronly = 0;
    419 			fs->fs_clean <<= 1;
    420 			fs->fs_fmod = 1;
    421 			if ((fs->fs_flags & FS_DOSOFTDEP)) {
    422 				error = softdep_mount(devvp, mp, fs,
    423 				    l->l_cred);
    424 				if (error)
    425 					return (error);
    426 			}
    427 			if (fs->fs_snapinum[0] != 0)
    428 				ffs_snapshot_mount(mp);
    429 		}
    430 		if (args->fspec == NULL)
    431 			return EINVAL;
    432 		if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
    433 		    (MNT_SOFTDEP | MNT_ASYNC)) {
    434 			printf("%s fs uses soft updates, ignoring async mode\n",
    435 			    fs->fs_fsmnt);
    436 			mp->mnt_flag &= ~MNT_ASYNC;
    437 		}
    438 	}
    439 
    440 	error = set_statvfs_info(path, UIO_USERSPACE, args->fspec,
    441 	    UIO_USERSPACE, mp->mnt_op->vfs_name, mp, l);
    442 	if (error == 0)
    443 		(void)strncpy(fs->fs_fsmnt, mp->mnt_stat.f_mntonname,
    444 		    sizeof(fs->fs_fsmnt));
    445 	if (mp->mnt_flag & MNT_SOFTDEP)
    446 		fs->fs_flags |= FS_DOSOFTDEP;
    447 	else
    448 		fs->fs_flags &= ~FS_DOSOFTDEP;
    449 	if (fs->fs_fmod != 0) {	/* XXX */
    450 		fs->fs_fmod = 0;
    451 		if (fs->fs_clean & FS_WASCLEAN)
    452 			fs->fs_time = time_second;
    453 		else {
    454 			printf("%s: file system not clean (fs_clean=%x); please fsck(8)\n",
    455 			    mp->mnt_stat.f_mntfromname, fs->fs_clean);
    456 			printf("%s: lost blocks %" PRId64 " files %d\n",
    457 			    mp->mnt_stat.f_mntfromname, fs->fs_pendingblocks,
    458 			    fs->fs_pendinginodes);
    459 		}
    460 		(void) ffs_cgupdate(ump, MNT_WAIT);
    461 	}
    462 	return (error);
    463 
    464 fail:
    465 	vrele(devvp);
    466 	return (error);
    467 }
    468 
    469 /*
    470  * Reload all incore data for a filesystem (used after running fsck on
    471  * the root filesystem and finding things to fix). The filesystem must
    472  * be mounted read-only.
    473  *
    474  * Things to do to update the mount:
    475  *	1) invalidate all cached meta-data.
    476  *	2) re-read superblock from disk.
    477  *	3) re-read summary information from disk.
    478  *	4) invalidate all inactive vnodes.
    479  *	5) invalidate all cached file data.
    480  *	6) re-read inode data for all active vnodes.
    481  */
    482 int
    483 ffs_reload(struct mount *mp, kauth_cred_t cred, struct lwp *l)
    484 {
    485 	struct vnode *vp, *nvp, *devvp;
    486 	struct inode *ip;
    487 	void *space;
    488 	struct buf *bp;
    489 	struct fs *fs, *newfs;
    490 	struct partinfo dpart;
    491 	int i, blks, size, error;
    492 	int32_t *lp;
    493 	struct ufsmount *ump;
    494 	daddr_t sblockloc;
    495 
    496 	if ((mp->mnt_flag & MNT_RDONLY) == 0)
    497 		return (EINVAL);
    498 
    499 	ump = VFSTOUFS(mp);
    500 	/*
    501 	 * Step 1: invalidate all cached meta-data.
    502 	 */
    503 	devvp = ump->um_devvp;
    504 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    505 	error = vinvalbuf(devvp, 0, cred, l, 0, 0);
    506 	VOP_UNLOCK(devvp, 0);
    507 	if (error)
    508 		panic("ffs_reload: dirty1");
    509 	/*
    510 	 * Step 2: re-read superblock from disk.
    511 	 */
    512 	fs = ump->um_fs;
    513 	if (VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, NOCRED, l) != 0)
    514 		size = DEV_BSIZE;
    515 	else
    516 		size = dpart.disklab->d_secsize;
    517 	/* XXX we don't handle possibility that superblock moved. */
    518 	error = bread(devvp, fs->fs_sblockloc / size, fs->fs_sbsize,
    519 		      NOCRED, &bp);
    520 	if (error) {
    521 		brelse(bp, 0);
    522 		return (error);
    523 	}
    524 	newfs = malloc(fs->fs_sbsize, M_UFSMNT, M_WAITOK);
    525 	memcpy(newfs, bp->b_data, fs->fs_sbsize);
    526 #ifdef FFS_EI
    527 	if (ump->um_flags & UFS_NEEDSWAP) {
    528 		ffs_sb_swap((struct fs*)bp->b_data, newfs);
    529 		fs->fs_flags |= FS_SWAPPED;
    530 	} else
    531 #endif
    532 		fs->fs_flags &= ~FS_SWAPPED;
    533 	if ((newfs->fs_magic != FS_UFS1_MAGIC &&
    534 	     newfs->fs_magic != FS_UFS2_MAGIC)||
    535 	     newfs->fs_bsize > MAXBSIZE ||
    536 	     newfs->fs_bsize < sizeof(struct fs)) {
    537 		brelse(bp, 0);
    538 		free(newfs, M_UFSMNT);
    539 		return (EIO);		/* XXX needs translation */
    540 	}
    541 	/* Store off old fs_sblockloc for fs_oldfscompat_read. */
    542 	sblockloc = fs->fs_sblockloc;
    543 	/*
    544 	 * Copy pointer fields back into superblock before copying in	XXX
    545 	 * new superblock. These should really be in the ufsmount.	XXX
    546 	 * Note that important parameters (eg fs_ncg) are unchanged.
    547 	 */
    548 	newfs->fs_csp = fs->fs_csp;
    549 	newfs->fs_maxcluster = fs->fs_maxcluster;
    550 	newfs->fs_contigdirs = fs->fs_contigdirs;
    551 	newfs->fs_ronly = fs->fs_ronly;
    552 	newfs->fs_active = fs->fs_active;
    553 	memcpy(fs, newfs, (u_int)fs->fs_sbsize);
    554 	brelse(bp, 0);
    555 	free(newfs, M_UFSMNT);
    556 
    557 	/* Recheck for apple UFS filesystem */
    558 	ump->um_flags &= ~UFS_ISAPPLEUFS;
    559 	/* First check to see if this is tagged as an Apple UFS filesystem
    560 	 * in the disklabel
    561 	 */
    562 	if ((VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) == 0) &&
    563 		(dpart.part->p_fstype == FS_APPLEUFS)) {
    564 		ump->um_flags |= UFS_ISAPPLEUFS;
    565 	}
    566 #ifdef APPLE_UFS
    567 	else {
    568 		/* Manually look for an apple ufs label, and if a valid one
    569 		 * is found, then treat it like an Apple UFS filesystem anyway
    570 		 */
    571 		error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / size),
    572 			APPLEUFS_LABEL_SIZE, cred, &bp);
    573 		if (error) {
    574 			brelse(bp, 0);
    575 			return (error);
    576 		}
    577 		error = ffs_appleufs_validate(fs->fs_fsmnt,
    578 			(struct appleufslabel *)bp->b_data,NULL);
    579 		if (error == 0)
    580 			ump->um_flags |= UFS_ISAPPLEUFS;
    581 		brelse(bp, 0);
    582 		bp = NULL;
    583 	}
    584 #else
    585 	if (ump->um_flags & UFS_ISAPPLEUFS)
    586 		return (EIO);
    587 #endif
    588 
    589 	if (UFS_MPISAPPLEUFS(ump)) {
    590 		/* see comment about NeXT below */
    591 		ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
    592 		ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
    593 		mp->mnt_iflag |= IMNT_DTYPE;
    594 	} else {
    595 		ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
    596 		ump->um_dirblksiz = DIRBLKSIZ;
    597 		if (ump->um_maxsymlinklen > 0)
    598 			mp->mnt_iflag |= IMNT_DTYPE;
    599 		else
    600 			mp->mnt_iflag &= ~IMNT_DTYPE;
    601 	}
    602 	ffs_oldfscompat_read(fs, ump, sblockloc);
    603 	mutex_enter(&ump->um_lock);
    604 	ump->um_maxfilesize = fs->fs_maxfilesize;
    605 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
    606 		fs->fs_pendingblocks = 0;
    607 		fs->fs_pendinginodes = 0;
    608 	}
    609 	mutex_exit(&ump->um_lock);
    610 
    611 	ffs_statvfs(mp, &mp->mnt_stat, l);
    612 	/*
    613 	 * Step 3: re-read summary information from disk.
    614 	 */
    615 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
    616 	space = fs->fs_csp;
    617 	for (i = 0; i < blks; i += fs->fs_frag) {
    618 		size = fs->fs_bsize;
    619 		if (i + fs->fs_frag > blks)
    620 			size = (blks - i) * fs->fs_fsize;
    621 		error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
    622 			      NOCRED, &bp);
    623 		if (error) {
    624 			brelse(bp, 0);
    625 			return (error);
    626 		}
    627 #ifdef FFS_EI
    628 		if (UFS_FSNEEDSWAP(fs))
    629 			ffs_csum_swap((struct csum *)bp->b_data,
    630 			    (struct csum *)space, size);
    631 		else
    632 #endif
    633 			memcpy(space, bp->b_data, (size_t)size);
    634 		space = (char *)space + size;
    635 		brelse(bp, 0);
    636 	}
    637 	if ((fs->fs_flags & FS_DOSOFTDEP))
    638 		softdep_mount(devvp, mp, fs, cred);
    639 	if (fs->fs_snapinum[0] != 0)
    640 		ffs_snapshot_mount(mp);
    641 	/*
    642 	 * We no longer know anything about clusters per cylinder group.
    643 	 */
    644 	if (fs->fs_contigsumsize > 0) {
    645 		lp = fs->fs_maxcluster;
    646 		for (i = 0; i < fs->fs_ncg; i++)
    647 			*lp++ = fs->fs_contigsumsize;
    648 	}
    649 
    650 loop:
    651 	/*
    652 	 * NOTE: not using the TAILQ_FOREACH here since in this loop vgone()
    653 	 * and vclean() can be called indirectly
    654 	 */
    655 	simple_lock(&mntvnode_slock);
    656 	for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
    657 		if (vp->v_mount != mp) {
    658 			simple_unlock(&mntvnode_slock);
    659 			goto loop;
    660 		}
    661 		/*
    662 		 * Step 4: invalidate all inactive vnodes.
    663 		 */
    664 		if (vrecycle(vp, &mntvnode_slock, l))
    665 			goto loop;
    666 		/*
    667 		 * Step 5: invalidate all cached file data.
    668 		 */
    669 		simple_lock(&vp->v_interlock);
    670 		nvp = TAILQ_NEXT(vp, v_mntvnodes);
    671 		simple_unlock(&mntvnode_slock);
    672 		if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK))
    673 			goto loop;
    674 		if (vinvalbuf(vp, 0, cred, l, 0, 0))
    675 			panic("ffs_reload: dirty2");
    676 		/*
    677 		 * Step 6: re-read inode data for all active vnodes.
    678 		 */
    679 		ip = VTOI(vp);
    680 		error = bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
    681 			      (int)fs->fs_bsize, NOCRED, &bp);
    682 		if (error) {
    683 			brelse(bp, 0);
    684 			vput(vp);
    685 			return (error);
    686 		}
    687 		ffs_load_inode(bp, ip, fs, ip->i_number);
    688 		ip->i_ffs_effnlink = ip->i_nlink;
    689 		brelse(bp, 0);
    690 		vput(vp);
    691 		simple_lock(&mntvnode_slock);
    692 	}
    693 	simple_unlock(&mntvnode_slock);
    694 	return (0);
    695 }
    696 
    697 /*
    698  * Possible superblock locations ordered from most to least likely.
    699  */
    700 static const int sblock_try[] = SBLOCKSEARCH;
    701 
    702 /*
    703  * Common code for mount and mountroot
    704  */
    705 int
    706 ffs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l)
    707 {
    708 	struct ufsmount *ump;
    709 	struct buf *bp;
    710 	struct fs *fs;
    711 	dev_t dev;
    712 	struct partinfo dpart;
    713 	void *space;
    714 	daddr_t sblockloc, fsblockloc;
    715 	int blks, fstype;
    716 	int error, i, size, ronly, bset = 0;
    717 #ifdef FFS_EI
    718 	int needswap = 0;		/* keep gcc happy */
    719 #endif
    720 	int32_t *lp;
    721 	kauth_cred_t cred;
    722 	u_int32_t sbsize = 8192;	/* keep gcc happy*/
    723 
    724 	dev = devvp->v_rdev;
    725 	cred = l ? l->l_cred : NOCRED;
    726 
    727 	/* Flush out any old buffers remaining from a previous use. */
    728 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    729 	error = vinvalbuf(devvp, V_SAVE, cred, l, 0, 0);
    730 	VOP_UNLOCK(devvp, 0);
    731 	if (error)
    732 		return (error);
    733 
    734 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
    735 	if (VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) != 0)
    736 		size = DEV_BSIZE;
    737 	else
    738 		size = dpart.disklab->d_secsize;
    739 
    740 	bp = NULL;
    741 	ump = NULL;
    742 	fs = NULL;
    743 	sblockloc = 0;
    744 	fstype = 0;
    745 
    746 	/*
    747 	 * Try reading the superblock in each of its possible locations.
    748 	 */
    749 	for (i = 0; ; i++) {
    750 		if (bp != NULL) {
    751 			brelse(bp, BC_NOCACHE);
    752 			bp = NULL;
    753 		}
    754 		if (sblock_try[i] == -1) {
    755 			error = EINVAL;
    756 			fs = NULL;
    757 			goto out;
    758 		}
    759 		error = bread(devvp, sblock_try[i] / size, SBLOCKSIZE, cred,
    760 			      &bp);
    761 		if (error) {
    762 			fs = NULL;
    763 			goto out;
    764 		}
    765 		fs = (struct fs*)bp->b_data;
    766 		fsblockloc = sblockloc = sblock_try[i];
    767 		if (fs->fs_magic == FS_UFS1_MAGIC) {
    768 			sbsize = fs->fs_sbsize;
    769 			fstype = UFS1;
    770 #ifdef FFS_EI
    771 			needswap = 0;
    772 		} else if (fs->fs_magic == bswap32(FS_UFS1_MAGIC)) {
    773 			sbsize = bswap32(fs->fs_sbsize);
    774 			fstype = UFS1;
    775 			needswap = 1;
    776 #endif
    777 		} else if (fs->fs_magic == FS_UFS2_MAGIC) {
    778 			sbsize = fs->fs_sbsize;
    779 			fstype = UFS2;
    780 #ifdef FFS_EI
    781 			needswap = 0;
    782 		} else if (fs->fs_magic == bswap32(FS_UFS2_MAGIC)) {
    783 			sbsize = bswap32(fs->fs_sbsize);
    784 			fstype = UFS2;
    785 			needswap = 1;
    786 #endif
    787 		} else
    788 			continue;
    789 
    790 
    791 		/* fs->fs_sblockloc isn't defined for old filesystems */
    792 		if (fstype == UFS1 && !(fs->fs_old_flags & FS_FLAGS_UPDATED)) {
    793 			if (sblockloc == SBLOCK_UFS2)
    794 				/*
    795 				 * This is likely to be the first alternate
    796 				 * in a filesystem with 64k blocks.
    797 				 * Don't use it.
    798 				 */
    799 				continue;
    800 			fsblockloc = sblockloc;
    801 		} else {
    802 			fsblockloc = fs->fs_sblockloc;
    803 #ifdef FFS_EI
    804 			if (needswap)
    805 				fsblockloc = bswap64(fsblockloc);
    806 #endif
    807 		}
    808 
    809 		/* Check we haven't found an alternate superblock */
    810 		if (fsblockloc != sblockloc)
    811 			continue;
    812 
    813 		/* Validate size of superblock */
    814 		if (sbsize > MAXBSIZE || sbsize < sizeof(struct fs))
    815 			continue;
    816 
    817 		/* Ok seems to be a good superblock */
    818 		break;
    819 	}
    820 
    821 	fs = malloc((u_long)sbsize, M_UFSMNT, M_WAITOK);
    822 	memcpy(fs, bp->b_data, sbsize);
    823 
    824 	ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
    825 	memset(ump, 0, sizeof *ump);
    826 	mutex_init(&ump->um_lock, MUTEX_DEFAULT, IPL_NONE);
    827 	ump->um_fs = fs;
    828 	ump->um_ops = &ffs_ufsops;
    829 
    830 #ifdef FFS_EI
    831 	if (needswap) {
    832 		ffs_sb_swap((struct fs*)bp->b_data, fs);
    833 		fs->fs_flags |= FS_SWAPPED;
    834 	} else
    835 #endif
    836 		fs->fs_flags &= ~FS_SWAPPED;
    837 
    838 	ffs_oldfscompat_read(fs, ump, sblockloc);
    839 	ump->um_maxfilesize = fs->fs_maxfilesize;
    840 
    841 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
    842 		fs->fs_pendingblocks = 0;
    843 		fs->fs_pendinginodes = 0;
    844 	}
    845 
    846 	ump->um_fstype = fstype;
    847 	if (fs->fs_sbsize < SBLOCKSIZE)
    848 		brelse(bp, BC_INVAL);
    849 	else
    850 		brelse(bp, 0);
    851 	bp = NULL;
    852 
    853 	/* First check to see if this is tagged as an Apple UFS filesystem
    854 	 * in the disklabel
    855 	 */
    856 	if ((VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l) == 0) &&
    857 		(dpart.part->p_fstype == FS_APPLEUFS)) {
    858 		ump->um_flags |= UFS_ISAPPLEUFS;
    859 	}
    860 #ifdef APPLE_UFS
    861 	else {
    862 		/* Manually look for an apple ufs label, and if a valid one
    863 		 * is found, then treat it like an Apple UFS filesystem anyway
    864 		 */
    865 		error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / size),
    866 			APPLEUFS_LABEL_SIZE, cred, &bp);
    867 		if (error)
    868 			goto out;
    869 		error = ffs_appleufs_validate(fs->fs_fsmnt,
    870 			(struct appleufslabel *)bp->b_data,NULL);
    871 		if (error == 0) {
    872 			ump->um_flags |= UFS_ISAPPLEUFS;
    873 		}
    874 		brelse(bp, 0);
    875 		bp = NULL;
    876 	}
    877 #else
    878 	if (ump->um_flags & UFS_ISAPPLEUFS) {
    879 		error = EINVAL;
    880 		goto out;
    881 	}
    882 #endif
    883 
    884 	/*
    885 	 * verify that we can access the last block in the fs
    886 	 * if we're mounting read/write.
    887 	 */
    888 
    889 	if (!ronly) {
    890 		error = bread(devvp, fsbtodb(fs, fs->fs_size - 1), fs->fs_fsize,
    891 		    cred, &bp);
    892 		if (bp->b_bcount != fs->fs_fsize)
    893 			error = EINVAL;
    894 		if (error) {
    895 			bset = BC_INVAL;
    896 			goto out;
    897 		}
    898 		brelse(bp, BC_INVAL);
    899 		bp = NULL;
    900 	}
    901 
    902 	fs->fs_ronly = ronly;
    903 	if (ronly == 0) {
    904 		fs->fs_clean <<= 1;
    905 		fs->fs_fmod = 1;
    906 	}
    907 	size = fs->fs_cssize;
    908 	blks = howmany(size, fs->fs_fsize);
    909 	if (fs->fs_contigsumsize > 0)
    910 		size += fs->fs_ncg * sizeof(int32_t);
    911 	size += fs->fs_ncg * sizeof(*fs->fs_contigdirs);
    912 	space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
    913 	fs->fs_csp = space;
    914 	for (i = 0; i < blks; i += fs->fs_frag) {
    915 		size = fs->fs_bsize;
    916 		if (i + fs->fs_frag > blks)
    917 			size = (blks - i) * fs->fs_fsize;
    918 		error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
    919 			      cred, &bp);
    920 		if (error) {
    921 			free(fs->fs_csp, M_UFSMNT);
    922 			goto out;
    923 		}
    924 #ifdef FFS_EI
    925 		if (needswap)
    926 			ffs_csum_swap((struct csum *)bp->b_data,
    927 				(struct csum *)space, size);
    928 		else
    929 #endif
    930 			memcpy(space, bp->b_data, (u_int)size);
    931 
    932 		space = (char *)space + size;
    933 		brelse(bp, 0);
    934 		bp = NULL;
    935 	}
    936 	if (fs->fs_contigsumsize > 0) {
    937 		fs->fs_maxcluster = lp = space;
    938 		for (i = 0; i < fs->fs_ncg; i++)
    939 			*lp++ = fs->fs_contigsumsize;
    940 		space = lp;
    941 	}
    942 	size = fs->fs_ncg * sizeof(*fs->fs_contigdirs);
    943 	fs->fs_contigdirs = space;
    944 	space = (char *)space + size;
    945 	memset(fs->fs_contigdirs, 0, size);
    946 		/* Compatibility for old filesystems - XXX */
    947 	if (fs->fs_avgfilesize <= 0)
    948 		fs->fs_avgfilesize = AVFILESIZ;
    949 	if (fs->fs_avgfpdir <= 0)
    950 		fs->fs_avgfpdir = AFPDIR;
    951 	fs->fs_active = NULL;
    952 	mp->mnt_data = ump;
    953 	mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
    954 	mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_FFS);
    955 	mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
    956 	mp->mnt_stat.f_namemax = FFS_MAXNAMLEN;
    957 	if (UFS_MPISAPPLEUFS(ump)) {
    958 		/* NeXT used to keep short symlinks in the inode even
    959 		 * when using FS_42INODEFMT.  In that case fs->fs_maxsymlinklen
    960 		 * is probably -1, but we still need to be able to identify
    961 		 * short symlinks.
    962 		 */
    963 		ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
    964 		ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
    965 		mp->mnt_iflag |= IMNT_DTYPE;
    966 	} else {
    967 		ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
    968 		ump->um_dirblksiz = DIRBLKSIZ;
    969 		if (ump->um_maxsymlinklen > 0)
    970 			mp->mnt_iflag |= IMNT_DTYPE;
    971 		else
    972 			mp->mnt_iflag &= ~IMNT_DTYPE;
    973 	}
    974 	mp->mnt_fs_bshift = fs->fs_bshift;
    975 	mp->mnt_dev_bshift = DEV_BSHIFT;	/* XXX */
    976 	mp->mnt_flag |= MNT_LOCAL;
    977 	mp->mnt_iflag |= IMNT_HAS_TRANS;
    978 #ifdef FFS_EI
    979 	if (needswap)
    980 		ump->um_flags |= UFS_NEEDSWAP;
    981 #endif
    982 	ump->um_mountp = mp;
    983 	ump->um_dev = dev;
    984 	ump->um_devvp = devvp;
    985 	ump->um_nindir = fs->fs_nindir;
    986 	ump->um_lognindir = ffs(fs->fs_nindir) - 1;
    987 	ump->um_bptrtodb = fs->fs_fsbtodb;
    988 	ump->um_seqinc = fs->fs_frag;
    989 	for (i = 0; i < MAXQUOTAS; i++)
    990 		ump->um_quotas[i] = NULLVP;
    991 	devvp->v_specmountpoint = mp;
    992 	if (ronly == 0 && (fs->fs_flags & FS_DOSOFTDEP)) {
    993 		error = softdep_mount(devvp, mp, fs, cred);
    994 		if (error) {
    995 			free(fs->fs_csp, M_UFSMNT);
    996 			goto out;
    997 		}
    998 	}
    999 	if (ronly == 0 && fs->fs_snapinum[0] != 0)
   1000 		ffs_snapshot_mount(mp);
   1001 #ifdef UFS_EXTATTR
   1002 	/*
   1003 	 * Initialize file-backed extended attributes on UFS1 file
   1004 	 * systems.
   1005 	 */
   1006 	if (ump->um_fstype == UFS1) {
   1007 		ufs_extattr_uepm_init(&ump->um_extattr);
   1008 #ifdef UFS_EXTATTR_AUTOSTART
   1009 		/*
   1010 		 * XXX Just ignore errors.  Not clear that we should
   1011 		 * XXX fail the mount in this case.
   1012 		 */
   1013 		(void) ufs_extattr_autostart(mp, l);
   1014 #endif
   1015 	}
   1016 #endif /* UFS_EXTATTR */
   1017 	return (0);
   1018 out:
   1019 	if (fs)
   1020 		free(fs, M_UFSMNT);
   1021 	devvp->v_specmountpoint = NULL;
   1022 	if (bp)
   1023 		brelse(bp, bset);
   1024 	if (ump) {
   1025 		if (ump->um_oldfscompat)
   1026 			free(ump->um_oldfscompat, M_UFSMNT);
   1027 		mutex_destroy(&ump->um_lock);
   1028 		free(ump, M_UFSMNT);
   1029 		mp->mnt_data = NULL;
   1030 	}
   1031 	return (error);
   1032 }
   1033 
   1034 /*
   1035  * Sanity checks for loading old filesystem superblocks.
   1036  * See ffs_oldfscompat_write below for unwound actions.
   1037  *
   1038  * XXX - Parts get retired eventually.
   1039  * Unfortunately new bits get added.
   1040  */
   1041 static void
   1042 ffs_oldfscompat_read(struct fs *fs, struct ufsmount *ump, daddr_t sblockloc)
   1043 {
   1044 	off_t maxfilesize;
   1045 	int32_t *extrasave;
   1046 
   1047 	if ((fs->fs_magic != FS_UFS1_MAGIC) ||
   1048 	    (fs->fs_old_flags & FS_FLAGS_UPDATED))
   1049 		return;
   1050 
   1051 	if (!ump->um_oldfscompat)
   1052 		ump->um_oldfscompat = malloc(512 + 3*sizeof(int32_t),
   1053 		    M_UFSMNT, M_WAITOK);
   1054 
   1055 	memcpy(ump->um_oldfscompat, &fs->fs_old_postbl_start, 512);
   1056 	extrasave = ump->um_oldfscompat;
   1057 	extrasave += 512/sizeof(int32_t);
   1058 	extrasave[0] = fs->fs_old_npsect;
   1059 	extrasave[1] = fs->fs_old_interleave;
   1060 	extrasave[2] = fs->fs_old_trackskew;
   1061 
   1062 	/* These fields will be overwritten by their
   1063 	 * original values in fs_oldfscompat_write, so it is harmless
   1064 	 * to modify them here.
   1065 	 */
   1066 	fs->fs_cstotal.cs_ndir = fs->fs_old_cstotal.cs_ndir;
   1067 	fs->fs_cstotal.cs_nbfree = fs->fs_old_cstotal.cs_nbfree;
   1068 	fs->fs_cstotal.cs_nifree = fs->fs_old_cstotal.cs_nifree;
   1069 	fs->fs_cstotal.cs_nffree = fs->fs_old_cstotal.cs_nffree;
   1070 
   1071 	fs->fs_maxbsize = fs->fs_bsize;
   1072 	fs->fs_time = fs->fs_old_time;
   1073 	fs->fs_size = fs->fs_old_size;
   1074 	fs->fs_dsize = fs->fs_old_dsize;
   1075 	fs->fs_csaddr = fs->fs_old_csaddr;
   1076 	fs->fs_sblockloc = sblockloc;
   1077 
   1078         fs->fs_flags = fs->fs_old_flags | (fs->fs_flags & FS_INTERNAL);
   1079 
   1080 	if (fs->fs_old_postblformat == FS_42POSTBLFMT) {
   1081 		fs->fs_old_nrpos = 8;
   1082 		fs->fs_old_npsect = fs->fs_old_nsect;
   1083 		fs->fs_old_interleave = 1;
   1084 		fs->fs_old_trackskew = 0;
   1085 	}
   1086 
   1087 	if (fs->fs_old_inodefmt < FS_44INODEFMT) {
   1088 		fs->fs_maxfilesize = (u_quad_t) 1LL << 39;
   1089 		fs->fs_qbmask = ~fs->fs_bmask;
   1090 		fs->fs_qfmask = ~fs->fs_fmask;
   1091 	}
   1092 
   1093 	maxfilesize = (u_int64_t)0x80000000 * fs->fs_bsize - 1;
   1094 	if (fs->fs_maxfilesize > maxfilesize)
   1095 		fs->fs_maxfilesize = maxfilesize;
   1096 
   1097 	/* Compatibility for old filesystems */
   1098 	if (fs->fs_avgfilesize <= 0)
   1099 		fs->fs_avgfilesize = AVFILESIZ;
   1100 	if (fs->fs_avgfpdir <= 0)
   1101 		fs->fs_avgfpdir = AFPDIR;
   1102 
   1103 #if 0
   1104 	if (bigcgs) {
   1105 		fs->fs_save_cgsize = fs->fs_cgsize;
   1106 		fs->fs_cgsize = fs->fs_bsize;
   1107 	}
   1108 #endif
   1109 }
   1110 
   1111 /*
   1112  * Unwinding superblock updates for old filesystems.
   1113  * See ffs_oldfscompat_read above for details.
   1114  *
   1115  * XXX - Parts get retired eventually.
   1116  * Unfortunately new bits get added.
   1117  */
   1118 static void
   1119 ffs_oldfscompat_write(struct fs *fs, struct ufsmount *ump)
   1120 {
   1121 	int32_t *extrasave;
   1122 
   1123 	if ((fs->fs_magic != FS_UFS1_MAGIC) ||
   1124 	    (fs->fs_old_flags & FS_FLAGS_UPDATED))
   1125 		return;
   1126 
   1127 	fs->fs_old_time = fs->fs_time;
   1128 	fs->fs_old_cstotal.cs_ndir = fs->fs_cstotal.cs_ndir;
   1129 	fs->fs_old_cstotal.cs_nbfree = fs->fs_cstotal.cs_nbfree;
   1130 	fs->fs_old_cstotal.cs_nifree = fs->fs_cstotal.cs_nifree;
   1131 	fs->fs_old_cstotal.cs_nffree = fs->fs_cstotal.cs_nffree;
   1132 	fs->fs_old_flags = fs->fs_flags;
   1133 
   1134 #if 0
   1135 	if (bigcgs) {
   1136 		fs->fs_cgsize = fs->fs_save_cgsize;
   1137 	}
   1138 #endif
   1139 
   1140 	memcpy(&fs->fs_old_postbl_start, ump->um_oldfscompat, 512);
   1141 	extrasave = ump->um_oldfscompat;
   1142 	extrasave += 512/sizeof(int32_t);
   1143 	fs->fs_old_npsect = extrasave[0];
   1144 	fs->fs_old_interleave = extrasave[1];
   1145 	fs->fs_old_trackskew = extrasave[2];
   1146 
   1147 }
   1148 
   1149 /*
   1150  * unmount system call
   1151  */
   1152 int
   1153 ffs_unmount(struct mount *mp, int mntflags, struct lwp *l)
   1154 {
   1155 	struct ufsmount *ump = VFSTOUFS(mp);
   1156 	struct fs *fs = ump->um_fs;
   1157 	int error, flags, penderr;
   1158 
   1159 	penderr = 0;
   1160 	flags = 0;
   1161 	if (mntflags & MNT_FORCE)
   1162 		flags |= FORCECLOSE;
   1163 #ifdef UFS_EXTATTR
   1164 	if (ump->um_fstype == UFS1) {
   1165 		error = ufs_extattr_stop(mp, l);
   1166 		if (error) {
   1167 			if (error != EOPNOTSUPP)
   1168 				printf("%s: ufs_extattr_stop returned %d\n",
   1169 				    fs->fs_fsmnt, error);
   1170 		} else
   1171 			ufs_extattr_uepm_destroy(&ump->um_extattr);
   1172 	}
   1173 #endif /* UFS_EXTATTR */
   1174 	if (mp->mnt_flag & MNT_SOFTDEP) {
   1175 		if ((error = softdep_flushfiles(mp, flags, l)) != 0)
   1176 			return (error);
   1177 	} else {
   1178 		if ((error = ffs_flushfiles(mp, flags, l)) != 0)
   1179 			return (error);
   1180 	}
   1181 	mutex_enter(&ump->um_lock);
   1182 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
   1183 		printf("%s: unmount pending error: blocks %" PRId64
   1184 		       " files %d\n",
   1185 		    fs->fs_fsmnt, fs->fs_pendingblocks, fs->fs_pendinginodes);
   1186 		fs->fs_pendingblocks = 0;
   1187 		fs->fs_pendinginodes = 0;
   1188 		penderr = 1;
   1189 	}
   1190 	mutex_exit(&ump->um_lock);
   1191 	if (fs->fs_ronly == 0 &&
   1192 	    ffs_cgupdate(ump, MNT_WAIT) == 0 &&
   1193 	    fs->fs_clean & FS_WASCLEAN) {
   1194 		/*
   1195 		 * XXXX don't mark fs clean in the case of softdep
   1196 		 * pending block errors, until they are fixed.
   1197 		 */
   1198 		if (penderr == 0) {
   1199 			if (mp->mnt_flag & MNT_SOFTDEP)
   1200 				fs->fs_flags &= ~FS_DOSOFTDEP;
   1201 			fs->fs_clean = FS_ISCLEAN;
   1202 		}
   1203 		fs->fs_fmod = 0;
   1204 		(void) ffs_sbupdate(ump, MNT_WAIT);
   1205 	}
   1206 	if (ump->um_devvp->v_type != VBAD)
   1207 		ump->um_devvp->v_specmountpoint = NULL;
   1208 	vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1209 	(void)VOP_CLOSE(ump->um_devvp, fs->fs_ronly ? FREAD : FREAD|FWRITE,
   1210 		NOCRED, l);
   1211 	vput(ump->um_devvp);
   1212 	free(fs->fs_csp, M_UFSMNT);
   1213 	free(fs, M_UFSMNT);
   1214 	if (ump->um_oldfscompat != NULL)
   1215 		free(ump->um_oldfscompat, M_UFSMNT);
   1216 	mutex_destroy(&ump->um_lock);
   1217 	free(ump, M_UFSMNT);
   1218 	mp->mnt_data = NULL;
   1219 	mp->mnt_flag &= ~MNT_LOCAL;
   1220 	return (0);
   1221 }
   1222 
   1223 /*
   1224  * Flush out all the files in a filesystem.
   1225  */
   1226 int
   1227 ffs_flushfiles(struct mount *mp, int flags, struct lwp *l)
   1228 {
   1229 	extern int doforce;
   1230 	struct ufsmount *ump;
   1231 	int error;
   1232 
   1233 	if (!doforce)
   1234 		flags &= ~FORCECLOSE;
   1235 	ump = VFSTOUFS(mp);
   1236 #ifdef QUOTA
   1237 	if (mp->mnt_flag & MNT_QUOTA) {
   1238 		int i;
   1239 		if ((error = vflush(mp, NULLVP, SKIPSYSTEM|flags)) != 0)
   1240 			return (error);
   1241 		for (i = 0; i < MAXQUOTAS; i++) {
   1242 			if (ump->um_quotas[i] == NULLVP)
   1243 				continue;
   1244 			quotaoff(l, mp, i);
   1245 		}
   1246 		/*
   1247 		 * Here we fall through to vflush again to ensure
   1248 		 * that we have gotten rid of all the system vnodes.
   1249 		 */
   1250 	}
   1251 #endif
   1252 	if ((error = vflush(mp, 0, SKIPSYSTEM | flags)) != 0)
   1253 		return (error);
   1254 	ffs_snapshot_unmount(mp);
   1255 	/*
   1256 	 * Flush all the files.
   1257 	 */
   1258 	error = vflush(mp, NULLVP, flags);
   1259 	if (error)
   1260 		return (error);
   1261 	/*
   1262 	 * Flush filesystem metadata.
   1263 	 */
   1264 	vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1265 	error = VOP_FSYNC(ump->um_devvp, l->l_cred, FSYNC_WAIT, 0, 0, l);
   1266 	VOP_UNLOCK(ump->um_devvp, 0);
   1267 	return (error);
   1268 }
   1269 
   1270 /*
   1271  * Get file system statistics.
   1272  */
   1273 int
   1274 ffs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *l)
   1275 {
   1276 	struct ufsmount *ump;
   1277 	struct fs *fs;
   1278 
   1279 	ump = VFSTOUFS(mp);
   1280 	fs = ump->um_fs;
   1281 	mutex_enter(&ump->um_lock);
   1282 	sbp->f_bsize = fs->fs_bsize;
   1283 	sbp->f_frsize = fs->fs_fsize;
   1284 	sbp->f_iosize = fs->fs_bsize;
   1285 	sbp->f_blocks = fs->fs_dsize;
   1286 	sbp->f_bfree = blkstofrags(fs, fs->fs_cstotal.cs_nbfree) +
   1287 		fs->fs_cstotal.cs_nffree + dbtofsb(fs, fs->fs_pendingblocks);
   1288 	sbp->f_bresvd = ((u_int64_t) fs->fs_dsize * (u_int64_t)
   1289 	    fs->fs_minfree) / (u_int64_t) 100;
   1290 	if (sbp->f_bfree > sbp->f_bresvd)
   1291 		sbp->f_bavail = sbp->f_bfree - sbp->f_bresvd;
   1292 	else
   1293 		sbp->f_bavail = 0;
   1294 	sbp->f_files =  fs->fs_ncg * fs->fs_ipg - ROOTINO;
   1295 	sbp->f_ffree = fs->fs_cstotal.cs_nifree + fs->fs_pendinginodes;
   1296 	sbp->f_favail = sbp->f_ffree;
   1297 	sbp->f_fresvd = 0;
   1298 	mutex_exit(&ump->um_lock);
   1299 	copy_statvfs_info(sbp, mp);
   1300 
   1301 	return (0);
   1302 }
   1303 
   1304 /*
   1305  * Go through the disk queues to initiate sandbagged IO;
   1306  * go through the inodes to write those that have been modified;
   1307  * initiate the writing of the super block if it has been modified.
   1308  *
   1309  * Note: we are always called with the filesystem marked `MPBUSY'.
   1310  */
   1311 int
   1312 ffs_sync(struct mount *mp, int waitfor, kauth_cred_t cred, struct lwp *l)
   1313 {
   1314 	struct vnode *vp, *nvp;
   1315 	struct inode *ip;
   1316 	struct ufsmount *ump = VFSTOUFS(mp);
   1317 	struct fs *fs;
   1318 	int error, count, allerror = 0;
   1319 
   1320 	fs = ump->um_fs;
   1321 	if (fs->fs_fmod != 0 && fs->fs_ronly != 0) {		/* XXX */
   1322 		printf("fs = %s\n", fs->fs_fsmnt);
   1323 		panic("update: rofs mod");
   1324 	}
   1325 	fstrans_start(mp, FSTRANS_SHARED);
   1326 	/*
   1327 	 * Write back each (modified) inode.
   1328 	 */
   1329 	simple_lock(&mntvnode_slock);
   1330 loop:
   1331 	/*
   1332 	 * NOTE: not using the TAILQ_FOREACH here since in this loop vgone()
   1333 	 * and vclean() can be called indirectly
   1334 	 */
   1335 	for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
   1336 		/*
   1337 		 * If the vnode that we are about to sync is no longer
   1338 		 * associated with this mount point, start over.
   1339 		 */
   1340 		if (vp->v_mount != mp)
   1341 			goto loop;
   1342 		simple_lock(&vp->v_interlock);
   1343 		nvp = TAILQ_NEXT(vp, v_mntvnodes);
   1344 		ip = VTOI(vp);
   1345 		if (vp->v_type == VNON ||
   1346 		    ((ip->i_flag &
   1347 		      (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) == 0 &&
   1348 		     LIST_EMPTY(&vp->v_dirtyblkhd) &&
   1349 		     UVM_OBJ_IS_CLEAN(&vp->v_uobj)))
   1350 		{
   1351 			simple_unlock(&vp->v_interlock);
   1352 			continue;
   1353 		}
   1354 		if (vp->v_type == VBLK &&
   1355 		    fstrans_getstate(mp) == FSTRANS_SUSPENDING) {
   1356 			simple_unlock(&vp->v_interlock);
   1357 			continue;
   1358 		}
   1359 		simple_unlock(&mntvnode_slock);
   1360 		error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
   1361 		if (error) {
   1362 			simple_lock(&mntvnode_slock);
   1363 			if (error == ENOENT)
   1364 				goto loop;
   1365 			continue;
   1366 		}
   1367 		if (vp->v_type == VREG && waitfor == MNT_LAZY)
   1368 			error = ffs_update(vp, NULL, NULL, 0);
   1369 		else
   1370 			error = VOP_FSYNC(vp, cred,
   1371 			    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, l);
   1372 		if (error)
   1373 			allerror = error;
   1374 		vput(vp);
   1375 		simple_lock(&mntvnode_slock);
   1376 	}
   1377 	simple_unlock(&mntvnode_slock);
   1378 	/*
   1379 	 * Force stale file system control information to be flushed.
   1380 	 */
   1381 	if (waitfor == MNT_WAIT && (ump->um_mountp->mnt_flag & MNT_SOFTDEP)) {
   1382 		if ((error = softdep_flushworklist(ump->um_mountp, &count, l)))
   1383 			allerror = error;
   1384 		/* Flushed work items may create new vnodes to clean */
   1385 		if (allerror == 0 && count) {
   1386 			simple_lock(&mntvnode_slock);
   1387 			goto loop;
   1388 		}
   1389 	}
   1390 	if (waitfor != MNT_LAZY && (ump->um_devvp->v_numoutput > 0 ||
   1391 	    !LIST_EMPTY(&ump->um_devvp->v_dirtyblkhd))) {
   1392 		vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1393 		if ((error = VOP_FSYNC(ump->um_devvp, cred,
   1394 		    waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, l)) != 0)
   1395 			allerror = error;
   1396 		VOP_UNLOCK(ump->um_devvp, 0);
   1397 		if (allerror == 0 && waitfor == MNT_WAIT) {
   1398 			simple_lock(&mntvnode_slock);
   1399 			goto loop;
   1400 		}
   1401 	}
   1402 #ifdef QUOTA
   1403 	qsync(mp);
   1404 #endif
   1405 	/*
   1406 	 * Write back modified superblock.
   1407 	 */
   1408 	if (fs->fs_fmod != 0) {
   1409 		fs->fs_fmod = 0;
   1410 		fs->fs_time = time_second;
   1411 		if ((error = ffs_cgupdate(ump, waitfor)))
   1412 			allerror = error;
   1413 	}
   1414 	fstrans_done(mp);
   1415 	return (allerror);
   1416 }
   1417 
   1418 /*
   1419  * Look up a FFS dinode number to find its incore vnode, otherwise read it
   1420  * in from disk.  If it is in core, wait for the lock bit to clear, then
   1421  * return the inode locked.  Detection and handling of mount points must be
   1422  * done by the calling routine.
   1423  */
   1424 int
   1425 ffs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
   1426 {
   1427 	struct fs *fs;
   1428 	struct inode *ip;
   1429 	struct ufsmount *ump;
   1430 	struct buf *bp;
   1431 	struct vnode *vp;
   1432 	dev_t dev;
   1433 	int error;
   1434 
   1435 	ump = VFSTOUFS(mp);
   1436 	dev = ump->um_dev;
   1437 
   1438  retry:
   1439 	if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL)
   1440 		return (0);
   1441 
   1442 	/* Allocate a new vnode/inode. */
   1443 	if ((error = getnewvnode(VT_UFS, mp, ffs_vnodeop_p, &vp)) != 0) {
   1444 		*vpp = NULL;
   1445 		return (error);
   1446 	}
   1447 	ip = pool_get(&ffs_inode_pool, PR_WAITOK);
   1448 
   1449 	/*
   1450 	 * If someone beat us to it, put back the freshly allocated
   1451 	 * vnode/inode pair and retry.
   1452 	 */
   1453 	mutex_enter(&ufs_hashlock);
   1454 	if (ufs_ihashget(dev, ino, 0) != NULL) {
   1455 		mutex_exit(&ufs_hashlock);
   1456 		ungetnewvnode(vp);
   1457 		pool_put(&ffs_inode_pool, ip);
   1458 		goto retry;
   1459 	}
   1460 
   1461 	vp->v_flag |= VLOCKSWORK;
   1462 
   1463 	/*
   1464 	 * XXX MFS ends up here, too, to allocate an inode.  Should we
   1465 	 * XXX create another pool for MFS inodes?
   1466 	 */
   1467 
   1468 	memset(ip, 0, sizeof(struct inode));
   1469 	vp->v_data = ip;
   1470 	ip->i_vnode = vp;
   1471 	ip->i_ump = ump;
   1472 	ip->i_fs = fs = ump->um_fs;
   1473 	ip->i_dev = dev;
   1474 	ip->i_number = ino;
   1475 	LIST_INIT(&ip->i_pcbufhd);
   1476 #ifdef QUOTA
   1477 	ufsquota_init(ip);
   1478 #endif
   1479 
   1480 	/*
   1481 	 * Put it onto its hash chain and lock it so that other requests for
   1482 	 * this inode will block if they arrive while we are sleeping waiting
   1483 	 * for old data structures to be purged or for the contents of the
   1484 	 * disk portion of this inode to be read.
   1485 	 */
   1486 
   1487 	ufs_ihashins(ip);
   1488 	mutex_exit(&ufs_hashlock);
   1489 
   1490 	/* Read in the disk contents for the inode, copy into the inode. */
   1491 	error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
   1492 		      (int)fs->fs_bsize, NOCRED, &bp);
   1493 	if (error) {
   1494 
   1495 		/*
   1496 		 * The inode does not contain anything useful, so it would
   1497 		 * be misleading to leave it on its hash chain. With mode
   1498 		 * still zero, it will be unlinked and returned to the free
   1499 		 * list by vput().
   1500 		 */
   1501 
   1502 		vput(vp);
   1503 		brelse(bp, 0);
   1504 		*vpp = NULL;
   1505 		return (error);
   1506 	}
   1507 	if (ip->i_ump->um_fstype == UFS1)
   1508 		ip->i_din.ffs1_din = pool_get(&ffs_dinode1_pool, PR_WAITOK);
   1509 	else
   1510 		ip->i_din.ffs2_din = pool_get(&ffs_dinode2_pool, PR_WAITOK);
   1511 	ffs_load_inode(bp, ip, fs, ino);
   1512 	if (DOINGSOFTDEP(vp))
   1513 		softdep_load_inodeblock(ip);
   1514 	else
   1515 		ip->i_ffs_effnlink = ip->i_nlink;
   1516 	brelse(bp, 0);
   1517 
   1518 	/*
   1519 	 * Initialize the vnode from the inode, check for aliases.
   1520 	 * Note that the underlying vnode may have changed.
   1521 	 */
   1522 
   1523 	ufs_vinit(mp, ffs_specop_p, ffs_fifoop_p, &vp);
   1524 
   1525 	/*
   1526 	 * Finish inode initialization now that aliasing has been resolved.
   1527 	 */
   1528 
   1529 	genfs_node_init(vp, &ffs_genfsops);
   1530 	ip->i_devvp = ump->um_devvp;
   1531 	VREF(ip->i_devvp);
   1532 
   1533 	/*
   1534 	 * Ensure that uid and gid are correct. This is a temporary
   1535 	 * fix until fsck has been changed to do the update.
   1536 	 */
   1537 
   1538 	if (fs->fs_old_inodefmt < FS_44INODEFMT) {		/* XXX */
   1539 		ip->i_uid = ip->i_ffs1_ouid;			/* XXX */
   1540 		ip->i_gid = ip->i_ffs1_ogid;			/* XXX */
   1541 	}							/* XXX */
   1542 	uvm_vnp_setsize(vp, ip->i_size);
   1543 	*vpp = vp;
   1544 	return (0);
   1545 }
   1546 
   1547 /*
   1548  * File handle to vnode
   1549  *
   1550  * Have to be really careful about stale file handles:
   1551  * - check that the inode number is valid
   1552  * - call ffs_vget() to get the locked inode
   1553  * - check for an unallocated inode (i_mode == 0)
   1554  * - check that the given client host has export rights and return
   1555  *   those rights via. exflagsp and credanonp
   1556  */
   1557 int
   1558 ffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
   1559 {
   1560 	struct ufid ufh;
   1561 	struct fs *fs;
   1562 
   1563 	if (fhp->fid_len != sizeof(struct ufid))
   1564 		return EINVAL;
   1565 
   1566 	memcpy(&ufh, fhp, sizeof(ufh));
   1567 	fs = VFSTOUFS(mp)->um_fs;
   1568 	if (ufh.ufid_ino < ROOTINO ||
   1569 	    ufh.ufid_ino >= fs->fs_ncg * fs->fs_ipg)
   1570 		return (ESTALE);
   1571 	return (ufs_fhtovp(mp, &ufh, vpp));
   1572 }
   1573 
   1574 /*
   1575  * Vnode pointer to File handle
   1576  */
   1577 /* ARGSUSED */
   1578 int
   1579 ffs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
   1580 {
   1581 	struct inode *ip;
   1582 	struct ufid ufh;
   1583 
   1584 	if (*fh_size < sizeof(struct ufid)) {
   1585 		*fh_size = sizeof(struct ufid);
   1586 		return E2BIG;
   1587 	}
   1588 	ip = VTOI(vp);
   1589 	*fh_size = sizeof(struct ufid);
   1590 	memset(&ufh, 0, sizeof(ufh));
   1591 	ufh.ufid_len = sizeof(struct ufid);
   1592 	ufh.ufid_ino = ip->i_number;
   1593 	ufh.ufid_gen = ip->i_gen;
   1594 	memcpy(fhp, &ufh, sizeof(ufh));
   1595 	return (0);
   1596 }
   1597 
   1598 void
   1599 ffs_init(void)
   1600 {
   1601 	if (ffs_initcount++ > 0)
   1602 		return;
   1603 
   1604 	pool_init(&ffs_inode_pool, sizeof(struct inode), 0, 0, 0,
   1605 		  "ffsinopl", &pool_allocator_nointr, IPL_NONE);
   1606 	pool_init(&ffs_dinode1_pool, sizeof(struct ufs1_dinode), 0, 0, 0,
   1607 		  "dino1pl", &pool_allocator_nointr, IPL_NONE);
   1608 	pool_init(&ffs_dinode2_pool, sizeof(struct ufs2_dinode), 0, 0, 0,
   1609 		  "dino2pl", &pool_allocator_nointr, IPL_NONE);
   1610 	softdep_initialize();
   1611 	ffs_snapshot_init();
   1612 	ufs_init();
   1613 }
   1614 
   1615 void
   1616 ffs_reinit(void)
   1617 {
   1618 	softdep_reinitialize();
   1619 	ufs_reinit();
   1620 }
   1621 
   1622 void
   1623 ffs_done(void)
   1624 {
   1625 	if (--ffs_initcount > 0)
   1626 		return;
   1627 
   1628 	/* XXX softdep cleanup ? */
   1629 	ffs_snapshot_fini();
   1630 	ufs_done();
   1631 	pool_destroy(&ffs_dinode2_pool);
   1632 	pool_destroy(&ffs_dinode1_pool);
   1633 	pool_destroy(&ffs_inode_pool);
   1634 }
   1635 
   1636 SYSCTL_SETUP(sysctl_vfs_ffs_setup, "sysctl vfs.ffs subtree setup")
   1637 {
   1638 #if 0
   1639 	extern int doasyncfree;
   1640 #endif
   1641 	extern int ffs_log_changeopt;
   1642 
   1643 	sysctl_createv(clog, 0, NULL, NULL,
   1644 		       CTLFLAG_PERMANENT,
   1645 		       CTLTYPE_NODE, "vfs", NULL,
   1646 		       NULL, 0, NULL, 0,
   1647 		       CTL_VFS, CTL_EOL);
   1648 	sysctl_createv(clog, 0, NULL, NULL,
   1649 		       CTLFLAG_PERMANENT,
   1650 		       CTLTYPE_NODE, "ffs",
   1651 		       SYSCTL_DESCR("Berkeley Fast File System"),
   1652 		       NULL, 0, NULL, 0,
   1653 		       CTL_VFS, 1, CTL_EOL);
   1654 
   1655 	/*
   1656 	 * @@@ should we even bother with these first three?
   1657 	 */
   1658 	sysctl_createv(clog, 0, NULL, NULL,
   1659 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1660 		       CTLTYPE_INT, "doclusterread", NULL,
   1661 		       sysctl_notavail, 0, NULL, 0,
   1662 		       CTL_VFS, 1, FFS_CLUSTERREAD, CTL_EOL);
   1663 	sysctl_createv(clog, 0, NULL, NULL,
   1664 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1665 		       CTLTYPE_INT, "doclusterwrite", NULL,
   1666 		       sysctl_notavail, 0, NULL, 0,
   1667 		       CTL_VFS, 1, FFS_CLUSTERWRITE, CTL_EOL);
   1668 	sysctl_createv(clog, 0, NULL, NULL,
   1669 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1670 		       CTLTYPE_INT, "doreallocblks", NULL,
   1671 		       sysctl_notavail, 0, NULL, 0,
   1672 		       CTL_VFS, 1, FFS_REALLOCBLKS, CTL_EOL);
   1673 #if 0
   1674 	sysctl_createv(clog, 0, NULL, NULL,
   1675 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1676 		       CTLTYPE_INT, "doasyncfree",
   1677 		       SYSCTL_DESCR("Release dirty blocks asynchronously"),
   1678 		       NULL, 0, &doasyncfree, 0,
   1679 		       CTL_VFS, 1, FFS_ASYNCFREE, CTL_EOL);
   1680 #endif
   1681 	sysctl_createv(clog, 0, NULL, NULL,
   1682 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1683 		       CTLTYPE_INT, "log_changeopt",
   1684 		       SYSCTL_DESCR("Log changes in optimization strategy"),
   1685 		       NULL, 0, &ffs_log_changeopt, 0,
   1686 		       CTL_VFS, 1, FFS_LOG_CHANGEOPT, CTL_EOL);
   1687 }
   1688 
   1689 /*
   1690  * Write a superblock and associated information back to disk.
   1691  */
   1692 int
   1693 ffs_sbupdate(struct ufsmount *mp, int waitfor)
   1694 {
   1695 	struct fs *fs = mp->um_fs;
   1696 	struct buf *bp;
   1697 	int error = 0;
   1698 	u_int32_t saveflag;
   1699 
   1700 	bp = getblk(mp->um_devvp,
   1701 	    fs->fs_sblockloc >> (fs->fs_fshift - fs->fs_fsbtodb),
   1702 	    (int)fs->fs_sbsize, 0, 0);
   1703 	saveflag = fs->fs_flags & FS_INTERNAL;
   1704 	fs->fs_flags &= ~FS_INTERNAL;
   1705 
   1706 	memcpy(bp->b_data, fs, fs->fs_sbsize);
   1707 
   1708 	ffs_oldfscompat_write((struct fs *)bp->b_data, mp);
   1709 #ifdef FFS_EI
   1710 	if (mp->um_flags & UFS_NEEDSWAP)
   1711 		ffs_sb_swap((struct fs *)bp->b_data, (struct fs *)bp->b_data);
   1712 #endif
   1713 	fs->fs_flags |= saveflag;
   1714 
   1715 	if (waitfor == MNT_WAIT)
   1716 		error = bwrite(bp);
   1717 	else
   1718 		bawrite(bp);
   1719 	return (error);
   1720 }
   1721 
   1722 int
   1723 ffs_cgupdate(struct ufsmount *mp, int waitfor)
   1724 {
   1725 	struct fs *fs = mp->um_fs;
   1726 	struct buf *bp;
   1727 	int blks;
   1728 	void *space;
   1729 	int i, size, error = 0, allerror = 0;
   1730 
   1731 	allerror = ffs_sbupdate(mp, waitfor);
   1732 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
   1733 	space = fs->fs_csp;
   1734 	for (i = 0; i < blks; i += fs->fs_frag) {
   1735 		size = fs->fs_bsize;
   1736 		if (i + fs->fs_frag > blks)
   1737 			size = (blks - i) * fs->fs_fsize;
   1738 		bp = getblk(mp->um_devvp, fsbtodb(fs, fs->fs_csaddr + i),
   1739 		    size, 0, 0);
   1740 #ifdef FFS_EI
   1741 		if (mp->um_flags & UFS_NEEDSWAP)
   1742 			ffs_csum_swap((struct csum*)space,
   1743 			    (struct csum*)bp->b_data, size);
   1744 		else
   1745 #endif
   1746 			memcpy(bp->b_data, space, (u_int)size);
   1747 		space = (char *)space + size;
   1748 		if (waitfor == MNT_WAIT)
   1749 			error = bwrite(bp);
   1750 		else
   1751 			bawrite(bp);
   1752 	}
   1753 	if (!allerror && error)
   1754 		allerror = error;
   1755 	return (allerror);
   1756 }
   1757 
   1758 int
   1759 ffs_extattrctl(struct mount *mp, int cmd, struct vnode *vp,
   1760     int attrnamespace, const char *attrname, struct lwp *l)
   1761 {
   1762 #ifdef UFS_EXTATTR
   1763 	/*
   1764 	 * File-backed extended attributes are only supported on UFS1.
   1765 	 * UFS2 has native extended attributes.
   1766 	 */
   1767 	if (VFSTOUFS(mp)->um_fstype == UFS1)
   1768 		return (ufs_extattrctl(mp, cmd, vp, attrnamespace, attrname,
   1769 				       l));
   1770 #endif
   1771 	return (vfs_stdextattrctl(mp, cmd, vp, attrnamespace, attrname, l));
   1772 }
   1773 
   1774 int
   1775 ffs_suspendctl(struct mount *mp, int cmd)
   1776 {
   1777 	int error;
   1778 	struct lwp *l = curlwp;
   1779 
   1780 	switch (cmd) {
   1781 	case SUSPEND_SUSPEND:
   1782 		if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
   1783 			return error;
   1784 		error = ffs_sync(mp, MNT_WAIT, l->l_proc->p_cred, l);
   1785 		if (error == 0)
   1786 			error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
   1787 		if (error != 0) {
   1788 			(void) fstrans_setstate(mp, FSTRANS_NORMAL);
   1789 			return error;
   1790 		}
   1791 		return 0;
   1792 
   1793 	case SUSPEND_RESUME:
   1794 		return fstrans_setstate(mp, FSTRANS_NORMAL);
   1795 
   1796 	default:
   1797 		return EINVAL;
   1798 	}
   1799 }
   1800