Home | History | Annotate | Line # | Download | only in ffs
ffs_vfsops.c revision 1.301
      1 /*	$NetBSD: ffs_vfsops.c,v 1.301 2014/10/30 17:13:41 maxv Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Wasabi Systems, Inc, and by Andrew Doran.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 /*
     33  * Copyright (c) 1989, 1991, 1993, 1994
     34  *	The Regents of the University of California.  All rights reserved.
     35  *
     36  * Redistribution and use in source and binary forms, with or without
     37  * modification, are permitted provided that the following conditions
     38  * are met:
     39  * 1. Redistributions of source code must retain the above copyright
     40  *    notice, this list of conditions and the following disclaimer.
     41  * 2. Redistributions in binary form must reproduce the above copyright
     42  *    notice, this list of conditions and the following disclaimer in the
     43  *    documentation and/or other materials provided with the distribution.
     44  * 3. Neither the name of the University nor the names of its contributors
     45  *    may be used to endorse or promote products derived from this software
     46  *    without specific prior written permission.
     47  *
     48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58  * SUCH DAMAGE.
     59  *
     60  *	@(#)ffs_vfsops.c	8.31 (Berkeley) 5/20/95
     61  */
     62 
     63 #include <sys/cdefs.h>
     64 __KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.301 2014/10/30 17:13:41 maxv Exp $");
     65 
     66 #if defined(_KERNEL_OPT)
     67 #include "opt_ffs.h"
     68 #include "opt_quota.h"
     69 #include "opt_wapbl.h"
     70 #endif
     71 
     72 #include <sys/param.h>
     73 #include <sys/systm.h>
     74 #include <sys/namei.h>
     75 #include <sys/proc.h>
     76 #include <sys/kernel.h>
     77 #include <sys/vnode.h>
     78 #include <sys/socket.h>
     79 #include <sys/mount.h>
     80 #include <sys/buf.h>
     81 #include <sys/device.h>
     82 #include <sys/disk.h>
     83 #include <sys/mbuf.h>
     84 #include <sys/file.h>
     85 #include <sys/disklabel.h>
     86 #include <sys/ioctl.h>
     87 #include <sys/errno.h>
     88 #include <sys/kmem.h>
     89 #include <sys/pool.h>
     90 #include <sys/lock.h>
     91 #include <sys/sysctl.h>
     92 #include <sys/conf.h>
     93 #include <sys/kauth.h>
     94 #include <sys/wapbl.h>
     95 #include <sys/fstrans.h>
     96 #include <sys/module.h>
     97 
     98 #include <miscfs/genfs/genfs.h>
     99 #include <miscfs/specfs/specdev.h>
    100 
    101 #include <ufs/ufs/quota.h>
    102 #include <ufs/ufs/ufsmount.h>
    103 #include <ufs/ufs/inode.h>
    104 #include <ufs/ufs/dir.h>
    105 #include <ufs/ufs/ufs_extern.h>
    106 #include <ufs/ufs/ufs_bswap.h>
    107 #include <ufs/ufs/ufs_wapbl.h>
    108 
    109 #include <ufs/ffs/fs.h>
    110 #include <ufs/ffs/ffs_extern.h>
    111 
    112 MODULE(MODULE_CLASS_VFS, ffs, NULL);
    113 
    114 static int	ffs_vfs_fsync(vnode_t *, int);
    115 
    116 static struct sysctllog *ffs_sysctl_log;
    117 
    118 static kauth_listener_t ffs_snapshot_listener;
    119 
    120 /* how many times ffs_init() was called */
    121 int ffs_initcount = 0;
    122 
    123 extern const struct vnodeopv_desc ffs_vnodeop_opv_desc;
    124 extern const struct vnodeopv_desc ffs_specop_opv_desc;
    125 extern const struct vnodeopv_desc ffs_fifoop_opv_desc;
    126 
    127 const struct vnodeopv_desc * const ffs_vnodeopv_descs[] = {
    128 	&ffs_vnodeop_opv_desc,
    129 	&ffs_specop_opv_desc,
    130 	&ffs_fifoop_opv_desc,
    131 	NULL,
    132 };
    133 
    134 struct vfsops ffs_vfsops = {
    135 	.vfs_name = MOUNT_FFS,
    136 	.vfs_min_mount_data = sizeof (struct ufs_args),
    137 	.vfs_mount = ffs_mount,
    138 	.vfs_start = ufs_start,
    139 	.vfs_unmount = ffs_unmount,
    140 	.vfs_root = ufs_root,
    141 	.vfs_quotactl = ufs_quotactl,
    142 	.vfs_statvfs = ffs_statvfs,
    143 	.vfs_sync = ffs_sync,
    144 	.vfs_vget = ufs_vget,
    145 	.vfs_loadvnode = ffs_loadvnode,
    146 	.vfs_fhtovp = ffs_fhtovp,
    147 	.vfs_vptofh = ffs_vptofh,
    148 	.vfs_init = ffs_init,
    149 	.vfs_reinit = ffs_reinit,
    150 	.vfs_done = ffs_done,
    151 	.vfs_mountroot = ffs_mountroot,
    152 	.vfs_snapshot = ffs_snapshot,
    153 	.vfs_extattrctl = ffs_extattrctl,
    154 	.vfs_suspendctl = ffs_suspendctl,
    155 	.vfs_renamelock_enter = genfs_renamelock_enter,
    156 	.vfs_renamelock_exit = genfs_renamelock_exit,
    157 	.vfs_fsync = ffs_vfs_fsync,
    158 	.vfs_opv_descs = ffs_vnodeopv_descs
    159 };
    160 
    161 static const struct genfs_ops ffs_genfsops = {
    162 	.gop_size = ffs_gop_size,
    163 	.gop_alloc = ufs_gop_alloc,
    164 	.gop_write = genfs_gop_write,
    165 	.gop_markupdate = ufs_gop_markupdate,
    166 };
    167 
    168 static const struct ufs_ops ffs_ufsops = {
    169 	.uo_itimes = ffs_itimes,
    170 	.uo_update = ffs_update,
    171 	.uo_truncate = ffs_truncate,
    172 	.uo_valloc = ffs_valloc,
    173 	.uo_vfree = ffs_vfree,
    174 	.uo_balloc = ffs_balloc,
    175 	.uo_snapgone = ffs_snapgone,
    176 };
    177 
    178 static int
    179 ffs_snapshot_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
    180     void *arg0, void *arg1, void *arg2, void *arg3)
    181 {
    182 	vnode_t *vp = arg2;
    183 	int result = KAUTH_RESULT_DEFER;
    184 
    185 	if (action != KAUTH_SYSTEM_FS_SNAPSHOT)
    186 		return result;
    187 
    188 	if (VTOI(vp)->i_uid == kauth_cred_geteuid(cred))
    189 		result = KAUTH_RESULT_ALLOW;
    190 
    191 	return result;
    192 }
    193 
    194 static int
    195 ffs_modcmd(modcmd_t cmd, void *arg)
    196 {
    197 	int error;
    198 
    199 #if 0
    200 	extern int doasyncfree;
    201 #endif
    202 #ifdef UFS_EXTATTR
    203 	extern int ufs_extattr_autocreate;
    204 #endif
    205 	extern int ffs_log_changeopt;
    206 
    207 	switch (cmd) {
    208 	case MODULE_CMD_INIT:
    209 		error = vfs_attach(&ffs_vfsops);
    210 		if (error != 0)
    211 			break;
    212 
    213 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    214 			       CTLFLAG_PERMANENT,
    215 			       CTLTYPE_NODE, "ffs",
    216 			       SYSCTL_DESCR("Berkeley Fast File System"),
    217 			       NULL, 0, NULL, 0,
    218 			       CTL_VFS, 1, CTL_EOL);
    219 		/*
    220 		 * @@@ should we even bother with these first three?
    221 		 */
    222 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    223 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    224 			       CTLTYPE_INT, "doclusterread", NULL,
    225 			       sysctl_notavail, 0, NULL, 0,
    226 			       CTL_VFS, 1, FFS_CLUSTERREAD, CTL_EOL);
    227 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    228 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    229 			       CTLTYPE_INT, "doclusterwrite", NULL,
    230 			       sysctl_notavail, 0, NULL, 0,
    231 			       CTL_VFS, 1, FFS_CLUSTERWRITE, CTL_EOL);
    232 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    233 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    234 			       CTLTYPE_INT, "doreallocblks", NULL,
    235 			       sysctl_notavail, 0, NULL, 0,
    236 			       CTL_VFS, 1, FFS_REALLOCBLKS, CTL_EOL);
    237 #if 0
    238 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    239 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    240 			       CTLTYPE_INT, "doasyncfree",
    241 			       SYSCTL_DESCR("Release dirty blocks asynchronously"),
    242 			       NULL, 0, &doasyncfree, 0,
    243 			       CTL_VFS, 1, FFS_ASYNCFREE, CTL_EOL);
    244 #endif
    245 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    246 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    247 			       CTLTYPE_INT, "log_changeopt",
    248 			       SYSCTL_DESCR("Log changes in optimization strategy"),
    249 			       NULL, 0, &ffs_log_changeopt, 0,
    250 			       CTL_VFS, 1, FFS_LOG_CHANGEOPT, CTL_EOL);
    251 #ifdef UFS_EXTATTR
    252 		sysctl_createv(&ffs_sysctl_log, 0, NULL, NULL,
    253 			       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    254 			       CTLTYPE_INT, "extattr_autocreate",
    255 			       SYSCTL_DESCR("Size of attribute for "
    256 					    "backing file autocreation"),
    257 			       NULL, 0, &ufs_extattr_autocreate, 0,
    258 			       CTL_VFS, 1, FFS_EXTATTR_AUTOCREATE, CTL_EOL);
    259 
    260 #endif /* UFS_EXTATTR */
    261 
    262 		ffs_snapshot_listener = kauth_listen_scope(KAUTH_SCOPE_SYSTEM,
    263 		    ffs_snapshot_cb, NULL);
    264 		if (ffs_snapshot_listener == NULL)
    265 			printf("ffs_modcmd: can't listen on system scope.\n");
    266 
    267 		break;
    268 	case MODULE_CMD_FINI:
    269 		error = vfs_detach(&ffs_vfsops);
    270 		if (error != 0)
    271 			break;
    272 		sysctl_teardown(&ffs_sysctl_log);
    273 		if (ffs_snapshot_listener != NULL)
    274 			kauth_unlisten_scope(ffs_snapshot_listener);
    275 		break;
    276 	default:
    277 		error = ENOTTY;
    278 		break;
    279 	}
    280 
    281 	return (error);
    282 }
    283 
    284 pool_cache_t ffs_inode_cache;
    285 pool_cache_t ffs_dinode1_cache;
    286 pool_cache_t ffs_dinode2_cache;
    287 
    288 static void ffs_oldfscompat_read(struct fs *, struct ufsmount *, daddr_t);
    289 static void ffs_oldfscompat_write(struct fs *, struct ufsmount *);
    290 
    291 /*
    292  * Called by main() when ffs is going to be mounted as root.
    293  */
    294 
    295 int
    296 ffs_mountroot(void)
    297 {
    298 	struct fs *fs;
    299 	struct mount *mp;
    300 	struct lwp *l = curlwp;			/* XXX */
    301 	struct ufsmount *ump;
    302 	int error;
    303 
    304 	if (device_class(root_device) != DV_DISK)
    305 		return (ENODEV);
    306 
    307 	if ((error = vfs_rootmountalloc(MOUNT_FFS, "root_device", &mp))) {
    308 		vrele(rootvp);
    309 		return (error);
    310 	}
    311 
    312 	/*
    313 	 * We always need to be able to mount the root file system.
    314 	 */
    315 	mp->mnt_flag |= MNT_FORCE;
    316 	if ((error = ffs_mountfs(rootvp, mp, l)) != 0) {
    317 		vfs_unbusy(mp, false, NULL);
    318 		vfs_destroy(mp);
    319 		return (error);
    320 	}
    321 	mp->mnt_flag &= ~MNT_FORCE;
    322 	mountlist_append(mp);
    323 	ump = VFSTOUFS(mp);
    324 	fs = ump->um_fs;
    325 	memset(fs->fs_fsmnt, 0, sizeof(fs->fs_fsmnt));
    326 	(void)copystr(mp->mnt_stat.f_mntonname, fs->fs_fsmnt, MNAMELEN - 1, 0);
    327 	(void)ffs_statvfs(mp, &mp->mnt_stat);
    328 	vfs_unbusy(mp, false, NULL);
    329 	setrootfstime((time_t)fs->fs_time);
    330 	return (0);
    331 }
    332 
    333 /*
    334  * VFS Operations.
    335  *
    336  * mount system call
    337  */
    338 int
    339 ffs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
    340 {
    341 	struct lwp *l = curlwp;
    342 	struct vnode *devvp = NULL;
    343 	struct ufs_args *args = data;
    344 	struct ufsmount *ump = NULL;
    345 	struct fs *fs;
    346 	int error = 0, flags, update;
    347 	mode_t accessmode;
    348 
    349 	if (args == NULL)
    350 		return EINVAL;
    351 	if (*data_len < sizeof *args)
    352 		return EINVAL;
    353 
    354 	if (mp->mnt_flag & MNT_GETARGS) {
    355 		ump = VFSTOUFS(mp);
    356 		if (ump == NULL)
    357 			return EIO;
    358 		args->fspec = NULL;
    359 		*data_len = sizeof *args;
    360 		return 0;
    361 	}
    362 
    363 	update = mp->mnt_flag & MNT_UPDATE;
    364 
    365 	/* Check arguments */
    366 	if (args->fspec != NULL) {
    367 		/*
    368 		 * Look up the name and verify that it's sane.
    369 		 */
    370 		error = namei_simple_user(args->fspec,
    371 					NSM_FOLLOW_NOEMULROOT, &devvp);
    372 		if (error != 0)
    373 			return (error);
    374 
    375 		if (!update) {
    376 			/*
    377 			 * Be sure this is a valid block device
    378 			 */
    379 			if (devvp->v_type != VBLK)
    380 				error = ENOTBLK;
    381 			else if (bdevsw_lookup(devvp->v_rdev) == NULL)
    382 				error = ENXIO;
    383 		} else {
    384 			/*
    385 			 * Be sure we're still naming the same device
    386 			 * used for our initial mount
    387 			 */
    388 			ump = VFSTOUFS(mp);
    389 			if (devvp != ump->um_devvp) {
    390 				if (devvp->v_rdev != ump->um_devvp->v_rdev)
    391 					error = EINVAL;
    392 				else {
    393 					vrele(devvp);
    394 					devvp = ump->um_devvp;
    395 					vref(devvp);
    396 				}
    397 			}
    398 		}
    399 	} else {
    400 		if (!update) {
    401 			/* New mounts must have a filename for the device */
    402 			return (EINVAL);
    403 		} else {
    404 			/* Use the extant mount */
    405 			ump = VFSTOUFS(mp);
    406 			devvp = ump->um_devvp;
    407 			vref(devvp);
    408 		}
    409 	}
    410 
    411 	/*
    412 	 * If mount by non-root, then verify that user has necessary
    413 	 * permissions on the device.
    414 	 *
    415 	 * Permission to update a mount is checked higher, so here we presume
    416 	 * updating the mount is okay (for example, as far as securelevel goes)
    417 	 * which leaves us with the normal check.
    418 	 */
    419 	if (error == 0) {
    420 		accessmode = VREAD;
    421 		if (update ?
    422 		    (mp->mnt_iflag & IMNT_WANTRDWR) != 0 :
    423 		    (mp->mnt_flag & MNT_RDONLY) == 0)
    424 			accessmode |= VWRITE;
    425 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    426 		error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_MOUNT,
    427 		    KAUTH_REQ_SYSTEM_MOUNT_DEVICE, mp, devvp,
    428 		    KAUTH_ARG(accessmode));
    429 		VOP_UNLOCK(devvp);
    430 	}
    431 
    432 	if (error) {
    433 		vrele(devvp);
    434 		return (error);
    435 	}
    436 
    437 #ifdef WAPBL
    438 	/* WAPBL can only be enabled on a r/w mount. */
    439 	if ((mp->mnt_flag & MNT_RDONLY) && !(mp->mnt_iflag & IMNT_WANTRDWR)) {
    440 		mp->mnt_flag &= ~MNT_LOG;
    441 	}
    442 #else /* !WAPBL */
    443 	mp->mnt_flag &= ~MNT_LOG;
    444 #endif /* !WAPBL */
    445 
    446 	if (!update) {
    447 		int xflags;
    448 
    449 		if (mp->mnt_flag & MNT_RDONLY)
    450 			xflags = FREAD;
    451 		else
    452 			xflags = FREAD | FWRITE;
    453 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    454 		error = VOP_OPEN(devvp, xflags, FSCRED);
    455 		VOP_UNLOCK(devvp);
    456 		if (error)
    457 			goto fail;
    458 		error = ffs_mountfs(devvp, mp, l);
    459 		if (error) {
    460 			vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    461 			(void)VOP_CLOSE(devvp, xflags, NOCRED);
    462 			VOP_UNLOCK(devvp);
    463 			goto fail;
    464 		}
    465 
    466 		ump = VFSTOUFS(mp);
    467 		fs = ump->um_fs;
    468 	} else {
    469 		/*
    470 		 * Update the mount.
    471 		 */
    472 
    473 		/*
    474 		 * The initial mount got a reference on this
    475 		 * device, so drop the one obtained via
    476 		 * namei(), above.
    477 		 */
    478 		vrele(devvp);
    479 
    480 		ump = VFSTOUFS(mp);
    481 		fs = ump->um_fs;
    482 		if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
    483 			/*
    484 			 * Changing from r/w to r/o
    485 			 */
    486 			flags = WRITECLOSE;
    487 			if (mp->mnt_flag & MNT_FORCE)
    488 				flags |= FORCECLOSE;
    489 			error = ffs_flushfiles(mp, flags, l);
    490 			if (error == 0)
    491 				error = UFS_WAPBL_BEGIN(mp);
    492 			if (error == 0 &&
    493 			    ffs_cgupdate(ump, MNT_WAIT) == 0 &&
    494 			    fs->fs_clean & FS_WASCLEAN) {
    495 				if (mp->mnt_flag & MNT_SOFTDEP)
    496 					fs->fs_flags &= ~FS_DOSOFTDEP;
    497 				fs->fs_clean = FS_ISCLEAN;
    498 				(void) ffs_sbupdate(ump, MNT_WAIT);
    499 			}
    500 			if (error == 0)
    501 				UFS_WAPBL_END(mp);
    502 			if (error)
    503 				return (error);
    504 		}
    505 
    506 #ifdef WAPBL
    507 		if ((mp->mnt_flag & MNT_LOG) == 0) {
    508 			error = ffs_wapbl_stop(mp, mp->mnt_flag & MNT_FORCE);
    509 			if (error)
    510 				return error;
    511 		}
    512 #endif /* WAPBL */
    513 
    514 		if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
    515 			/*
    516 			 * Finish change from r/w to r/o
    517 			 */
    518 			fs->fs_ronly = 1;
    519 			fs->fs_fmod = 0;
    520 		}
    521 
    522 		if (mp->mnt_flag & MNT_RELOAD) {
    523 			error = ffs_reload(mp, l->l_cred, l);
    524 			if (error)
    525 				return (error);
    526 		}
    527 
    528 		if (fs->fs_ronly && (mp->mnt_iflag & IMNT_WANTRDWR)) {
    529 			/*
    530 			 * Changing from read-only to read/write
    531 			 */
    532 #ifndef QUOTA2
    533 			if (fs->fs_flags & FS_DOQUOTA2) {
    534 				ump->um_flags |= UFS_QUOTA2;
    535 				uprintf("%s: options QUOTA2 not enabled%s\n",
    536 				    mp->mnt_stat.f_mntonname,
    537 				    (mp->mnt_flag & MNT_FORCE) ? "" :
    538 				    ", not mounting");
    539 				return EINVAL;
    540 			}
    541 #endif
    542 			fs->fs_ronly = 0;
    543 			fs->fs_clean <<= 1;
    544 			fs->fs_fmod = 1;
    545 #ifdef WAPBL
    546 			if (fs->fs_flags & FS_DOWAPBL) {
    547 				printf("%s: replaying log to disk\n",
    548 				    mp->mnt_stat.f_mntonname);
    549 				KDASSERT(mp->mnt_wapbl_replay);
    550 				error = wapbl_replay_write(mp->mnt_wapbl_replay,
    551 							   devvp);
    552 				if (error) {
    553 					return error;
    554 				}
    555 				wapbl_replay_stop(mp->mnt_wapbl_replay);
    556 				fs->fs_clean = FS_WASCLEAN;
    557 			}
    558 #endif /* WAPBL */
    559 			if (fs->fs_snapinum[0] != 0)
    560 				ffs_snapshot_mount(mp);
    561 		}
    562 
    563 #ifdef WAPBL
    564 		error = ffs_wapbl_start(mp);
    565 		if (error)
    566 			return error;
    567 #endif /* WAPBL */
    568 
    569 #ifdef QUOTA2
    570 		if (!fs->fs_ronly) {
    571 			error = ffs_quota2_mount(mp);
    572 			if (error) {
    573 				return error;
    574 			}
    575 		}
    576 #endif
    577 
    578 		if ((mp->mnt_flag & MNT_DISCARD) && !(ump->um_discarddata))
    579 			ump->um_discarddata = ffs_discard_init(devvp, fs);
    580 
    581 		if (args->fspec == NULL)
    582 			return 0;
    583 	}
    584 
    585 	error = set_statvfs_info(path, UIO_USERSPACE, args->fspec,
    586 	    UIO_USERSPACE, mp->mnt_op->vfs_name, mp, l);
    587 	if (error == 0)
    588 		(void)strncpy(fs->fs_fsmnt, mp->mnt_stat.f_mntonname,
    589 		    sizeof(fs->fs_fsmnt));
    590 	fs->fs_flags &= ~FS_DOSOFTDEP;
    591 	if (fs->fs_fmod != 0) {	/* XXX */
    592 		int err;
    593 
    594 		fs->fs_fmod = 0;
    595 		if (fs->fs_clean & FS_WASCLEAN)
    596 			fs->fs_time = time_second;
    597 		else {
    598 			printf("%s: file system not clean (fs_clean=%#x); "
    599 			    "please fsck(8)\n", mp->mnt_stat.f_mntfromname,
    600 			    fs->fs_clean);
    601 			printf("%s: lost blocks %" PRId64 " files %d\n",
    602 			    mp->mnt_stat.f_mntfromname, fs->fs_pendingblocks,
    603 			    fs->fs_pendinginodes);
    604 		}
    605 		err = UFS_WAPBL_BEGIN(mp);
    606 		if (err == 0) {
    607 			(void) ffs_cgupdate(ump, MNT_WAIT);
    608 			UFS_WAPBL_END(mp);
    609 		}
    610 	}
    611 	if ((mp->mnt_flag & MNT_SOFTDEP) != 0) {
    612 		printf("%s: `-o softdep' is no longer supported, "
    613 		    "consider `-o log'\n", mp->mnt_stat.f_mntfromname);
    614 		mp->mnt_flag &= ~MNT_SOFTDEP;
    615 	}
    616 
    617 	return (error);
    618 
    619 fail:
    620 	vrele(devvp);
    621 	return (error);
    622 }
    623 
    624 /*
    625  * Reload all incore data for a filesystem (used after running fsck on
    626  * the root filesystem and finding things to fix). The filesystem must
    627  * be mounted read-only.
    628  *
    629  * Things to do to update the mount:
    630  *	1) invalidate all cached meta-data.
    631  *	2) re-read superblock from disk.
    632  *	3) re-read summary information from disk.
    633  *	4) invalidate all inactive vnodes.
    634  *	5) invalidate all cached file data.
    635  *	6) re-read inode data for all active vnodes.
    636  */
    637 int
    638 ffs_reload(struct mount *mp, kauth_cred_t cred, struct lwp *l)
    639 {
    640 	struct vnode *vp, *devvp;
    641 	struct inode *ip;
    642 	void *space;
    643 	struct buf *bp;
    644 	struct fs *fs, *newfs;
    645 	struct dkwedge_info dkw;
    646 	int i, bsize, blks, error;
    647 	int32_t *lp;
    648 	struct ufsmount *ump;
    649 	daddr_t sblockloc;
    650 	struct vnode_iterator *marker;
    651 
    652 	if ((mp->mnt_flag & MNT_RDONLY) == 0)
    653 		return (EINVAL);
    654 
    655 	ump = VFSTOUFS(mp);
    656 	/*
    657 	 * Step 1: invalidate all cached meta-data.
    658 	 */
    659 	devvp = ump->um_devvp;
    660 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    661 	error = vinvalbuf(devvp, 0, cred, l, 0, 0);
    662 	VOP_UNLOCK(devvp);
    663 	if (error)
    664 		panic("ffs_reload: dirty1");
    665 	/*
    666 	 * Step 2: re-read superblock from disk.
    667 	 */
    668 	fs = ump->um_fs;
    669 
    670 	/* XXX we don't handle possibility that superblock moved. */
    671 	error = bread(devvp, fs->fs_sblockloc / DEV_BSIZE, fs->fs_sbsize,
    672 		      NOCRED, 0, &bp);
    673 	if (error) {
    674 		return (error);
    675 	}
    676 	newfs = kmem_alloc(fs->fs_sbsize, KM_SLEEP);
    677 	memcpy(newfs, bp->b_data, fs->fs_sbsize);
    678 #ifdef FFS_EI
    679 	if (ump->um_flags & UFS_NEEDSWAP) {
    680 		ffs_sb_swap((struct fs*)bp->b_data, newfs);
    681 		fs->fs_flags |= FS_SWAPPED;
    682 	} else
    683 #endif
    684 		fs->fs_flags &= ~FS_SWAPPED;
    685 	if ((newfs->fs_magic != FS_UFS1_MAGIC &&
    686 	     newfs->fs_magic != FS_UFS2_MAGIC)||
    687 	     newfs->fs_bsize > MAXBSIZE ||
    688 	     newfs->fs_bsize < sizeof(struct fs)) {
    689 		brelse(bp, 0);
    690 		kmem_free(newfs, fs->fs_sbsize);
    691 		return (EIO);		/* XXX needs translation */
    692 	}
    693 	/* Store off old fs_sblockloc for fs_oldfscompat_read. */
    694 	sblockloc = fs->fs_sblockloc;
    695 	/*
    696 	 * Copy pointer fields back into superblock before copying in	XXX
    697 	 * new superblock. These should really be in the ufsmount.	XXX
    698 	 * Note that important parameters (eg fs_ncg) are unchanged.
    699 	 */
    700 	newfs->fs_csp = fs->fs_csp;
    701 	newfs->fs_maxcluster = fs->fs_maxcluster;
    702 	newfs->fs_contigdirs = fs->fs_contigdirs;
    703 	newfs->fs_ronly = fs->fs_ronly;
    704 	newfs->fs_active = fs->fs_active;
    705 	memcpy(fs, newfs, (u_int)fs->fs_sbsize);
    706 	brelse(bp, 0);
    707 	kmem_free(newfs, fs->fs_sbsize);
    708 
    709 	/* Recheck for apple UFS filesystem */
    710 	ump->um_flags &= ~UFS_ISAPPLEUFS;
    711 	/* First check to see if this is tagged as an Apple UFS filesystem
    712 	 * in the disklabel
    713 	 */
    714 	if (getdiskinfo(devvp, &dkw) == 0 &&
    715 	    strcmp(dkw.dkw_ptype, DKW_PTYPE_APPLEUFS) == 0)
    716 		ump->um_flags |= UFS_ISAPPLEUFS;
    717 #ifdef APPLE_UFS
    718 	else {
    719 		/* Manually look for an apple ufs label, and if a valid one
    720 		 * is found, then treat it like an Apple UFS filesystem anyway
    721 		 *
    722 		 * EINVAL is most probably a blocksize or alignment problem,
    723 		 * it is unlikely that this is an Apple UFS filesystem then.
    724 		 */
    725 		error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / DEV_BSIZE),
    726 			APPLEUFS_LABEL_SIZE, cred, 0, &bp);
    727 		if (error && error != EINVAL) {
    728 			return (error);
    729 		}
    730 		if (error == 0) {
    731 			error = ffs_appleufs_validate(fs->fs_fsmnt,
    732 				(struct appleufslabel *)bp->b_data, NULL);
    733 			if (error == 0)
    734 				ump->um_flags |= UFS_ISAPPLEUFS;
    735 			brelse(bp, 0);
    736 		}
    737 		bp = NULL;
    738 	}
    739 #else
    740 	if (ump->um_flags & UFS_ISAPPLEUFS)
    741 		return (EIO);
    742 #endif
    743 
    744 	if (UFS_MPISAPPLEUFS(ump)) {
    745 		/* see comment about NeXT below */
    746 		ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
    747 		ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
    748 		mp->mnt_iflag |= IMNT_DTYPE;
    749 	} else {
    750 		ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
    751 		ump->um_dirblksiz = UFS_DIRBLKSIZ;
    752 		if (ump->um_maxsymlinklen > 0)
    753 			mp->mnt_iflag |= IMNT_DTYPE;
    754 		else
    755 			mp->mnt_iflag &= ~IMNT_DTYPE;
    756 	}
    757 	ffs_oldfscompat_read(fs, ump, sblockloc);
    758 
    759 	mutex_enter(&ump->um_lock);
    760 	ump->um_maxfilesize = fs->fs_maxfilesize;
    761 	if (fs->fs_flags & ~(FS_KNOWN_FLAGS | FS_INTERNAL)) {
    762 		uprintf("%s: unknown ufs flags: 0x%08"PRIx32"%s\n",
    763 		    mp->mnt_stat.f_mntonname, fs->fs_flags,
    764 		    (mp->mnt_flag & MNT_FORCE) ? "" : ", not mounting");
    765 		if ((mp->mnt_flag & MNT_FORCE) == 0) {
    766 			mutex_exit(&ump->um_lock);
    767 			return (EINVAL);
    768 		}
    769 	}
    770 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
    771 		fs->fs_pendingblocks = 0;
    772 		fs->fs_pendinginodes = 0;
    773 	}
    774 	mutex_exit(&ump->um_lock);
    775 
    776 	ffs_statvfs(mp, &mp->mnt_stat);
    777 	/*
    778 	 * Step 3: re-read summary information from disk.
    779 	 */
    780 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
    781 	space = fs->fs_csp;
    782 	for (i = 0; i < blks; i += fs->fs_frag) {
    783 		bsize = fs->fs_bsize;
    784 		if (i + fs->fs_frag > blks)
    785 			bsize = (blks - i) * fs->fs_fsize;
    786 		error = bread(devvp, FFS_FSBTODB(fs, fs->fs_csaddr + i), bsize,
    787 			      NOCRED, 0, &bp);
    788 		if (error) {
    789 			return (error);
    790 		}
    791 #ifdef FFS_EI
    792 		if (UFS_FSNEEDSWAP(fs))
    793 			ffs_csum_swap((struct csum *)bp->b_data,
    794 			    (struct csum *)space, bsize);
    795 		else
    796 #endif
    797 			memcpy(space, bp->b_data, (size_t)bsize);
    798 		space = (char *)space + bsize;
    799 		brelse(bp, 0);
    800 	}
    801 	/*
    802 	 * We no longer know anything about clusters per cylinder group.
    803 	 */
    804 	if (fs->fs_contigsumsize > 0) {
    805 		lp = fs->fs_maxcluster;
    806 		for (i = 0; i < fs->fs_ncg; i++)
    807 			*lp++ = fs->fs_contigsumsize;
    808 	}
    809 
    810 	vfs_vnode_iterator_init(mp, &marker);
    811 	while ((vp = vfs_vnode_iterator_next(marker, NULL, NULL))) {
    812 		/*
    813 		 * Step 4: invalidate all inactive vnodes.
    814 		 */
    815 		if (vrecycle(vp))
    816 			continue;
    817 		/*
    818 		 * Step 5: invalidate all cached file data.
    819 		 */
    820 		if (vn_lock(vp, LK_EXCLUSIVE)) {
    821 			vrele(vp);
    822 			continue;
    823 		}
    824 		if (vinvalbuf(vp, 0, cred, l, 0, 0))
    825 			panic("ffs_reload: dirty2");
    826 		/*
    827 		 * Step 6: re-read inode data for all active vnodes.
    828 		 */
    829 		ip = VTOI(vp);
    830 		error = bread(devvp, FFS_FSBTODB(fs, ino_to_fsba(fs, ip->i_number)),
    831 			      (int)fs->fs_bsize, NOCRED, 0, &bp);
    832 		if (error) {
    833 			vput(vp);
    834 			break;
    835 		}
    836 		ffs_load_inode(bp, ip, fs, ip->i_number);
    837 		brelse(bp, 0);
    838 		vput(vp);
    839 	}
    840 	vfs_vnode_iterator_destroy(marker);
    841 	return (error);
    842 }
    843 
    844 /*
    845  * Possible superblock locations ordered from most to least likely.
    846  */
    847 static const int sblock_try[] = SBLOCKSEARCH;
    848 
    849 /*
    850  * Common code for mount and mountroot
    851  */
    852 int
    853 ffs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l)
    854 {
    855 	struct ufsmount *ump;
    856 	struct buf *bp;
    857 	struct fs *fs;
    858 	dev_t dev;
    859 	struct dkwedge_info dkw;
    860 	void *space;
    861 	daddr_t sblockloc, fsblockloc;
    862 	int blks, fstype;
    863 	int error, i, bsize, ronly, bset = 0;
    864 #ifdef FFS_EI
    865 	int needswap = 0;		/* keep gcc happy */
    866 #endif
    867 	int32_t *lp;
    868 	kauth_cred_t cred;
    869 	u_int32_t sbsize = 8192;	/* keep gcc happy*/
    870 	u_int32_t allocsbsize;
    871 	int32_t fsbsize;
    872 
    873 	dev = devvp->v_rdev;
    874 	cred = l ? l->l_cred : NOCRED;
    875 
    876 	/* Flush out any old buffers remaining from a previous use. */
    877 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
    878 	error = vinvalbuf(devvp, V_SAVE, cred, l, 0, 0);
    879 	VOP_UNLOCK(devvp);
    880 	if (error)
    881 		return (error);
    882 
    883 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
    884 
    885 	bp = NULL;
    886 	ump = NULL;
    887 	fs = NULL;
    888 	sblockloc = 0;
    889 	fstype = 0;
    890 
    891 	error = fstrans_mount(mp);
    892 	if (error)
    893 		return error;
    894 
    895 	ump = kmem_zalloc(sizeof(*ump), KM_SLEEP);
    896 	mutex_init(&ump->um_lock, MUTEX_DEFAULT, IPL_NONE);
    897 	error = ffs_snapshot_init(ump);
    898 	if (error)
    899 		goto out;
    900 	ump->um_ops = &ffs_ufsops;
    901 
    902 #ifdef WAPBL
    903  sbagain:
    904 #endif
    905 	/*
    906 	 * Try reading the superblock in each of its possible locations.
    907 	 */
    908 	for (i = 0; ; i++) {
    909 		if (bp != NULL) {
    910 			brelse(bp, BC_NOCACHE);
    911 			bp = NULL;
    912 		}
    913 		if (sblock_try[i] == -1) {
    914 			error = EINVAL;
    915 			fs = NULL;
    916 			goto out;
    917 		}
    918 		error = bread(devvp, sblock_try[i] / DEV_BSIZE, SBLOCKSIZE, cred,
    919 			      0, &bp);
    920 		if (error) {
    921 			fs = NULL;
    922 			goto out;
    923 		}
    924 		fs = (struct fs*)bp->b_data;
    925 		fsblockloc = sblockloc = sblock_try[i];
    926 		if (fs->fs_magic == FS_UFS1_MAGIC) {
    927 			sbsize = fs->fs_sbsize;
    928 			fstype = UFS1;
    929 			fsbsize = fs->fs_bsize;
    930 #ifdef FFS_EI
    931 			needswap = 0;
    932 		} else if (fs->fs_magic == FS_UFS1_MAGIC_SWAPPED) {
    933 			sbsize = bswap32(fs->fs_sbsize);
    934 			fstype = UFS1;
    935 			fsbsize = bswap32(fs->fs_bsize);
    936 			needswap = 1;
    937 #endif
    938 		} else if (fs->fs_magic == FS_UFS2_MAGIC) {
    939 			sbsize = fs->fs_sbsize;
    940 			fstype = UFS2;
    941 			fsbsize = fs->fs_bsize;
    942 #ifdef FFS_EI
    943 			needswap = 0;
    944 		} else if (fs->fs_magic == FS_UFS2_MAGIC_SWAPPED) {
    945 			sbsize = bswap32(fs->fs_sbsize);
    946 			fstype = UFS2;
    947 			fsbsize = bswap32(fs->fs_bsize);
    948 			needswap = 1;
    949 #endif
    950 		} else
    951 			continue;
    952 
    953 
    954 		/* fs->fs_sblockloc isn't defined for old filesystems */
    955 		if (fstype == UFS1 && !(fs->fs_old_flags & FS_FLAGS_UPDATED)) {
    956 			if (sblockloc == SBLOCK_UFS2)
    957 				/*
    958 				 * This is likely to be the first alternate
    959 				 * in a filesystem with 64k blocks.
    960 				 * Don't use it.
    961 				 */
    962 				continue;
    963 			fsblockloc = sblockloc;
    964 		} else {
    965 			fsblockloc = fs->fs_sblockloc;
    966 #ifdef FFS_EI
    967 			if (needswap)
    968 				fsblockloc = bswap64(fsblockloc);
    969 #endif
    970 		}
    971 
    972 		/* Check we haven't found an alternate superblock */
    973 		if (fsblockloc != sblockloc)
    974 			continue;
    975 
    976 		/* Validate size of superblock */
    977 		if (sbsize > SBLOCKSIZE || sbsize < sizeof(struct fs))
    978 			continue;
    979 
    980 		/* Check that we can handle the file system blocksize */
    981 		if (fsbsize > MAXBSIZE) {
    982 			printf("ffs_mountfs: block size (%d) > MAXBSIZE (%d)\n",
    983 			    fsbsize, MAXBSIZE);
    984 			continue;
    985 		}
    986 
    987 		/* Ok seems to be a good superblock */
    988 		break;
    989 	}
    990 
    991 	fs = kmem_alloc((u_long)sbsize, KM_SLEEP);
    992 	memcpy(fs, bp->b_data, sbsize);
    993 	ump->um_fs = fs;
    994 
    995 #ifdef FFS_EI
    996 	if (needswap) {
    997 		ffs_sb_swap((struct fs*)bp->b_data, fs);
    998 		fs->fs_flags |= FS_SWAPPED;
    999 	} else
   1000 #endif
   1001 		fs->fs_flags &= ~FS_SWAPPED;
   1002 
   1003 #ifdef WAPBL
   1004 	if ((mp->mnt_wapbl_replay == 0) && (fs->fs_flags & FS_DOWAPBL)) {
   1005 		error = ffs_wapbl_replay_start(mp, fs, devvp);
   1006 		if (error && (mp->mnt_flag & MNT_FORCE) == 0)
   1007 			goto out;
   1008 		if (!error) {
   1009 			if (!ronly) {
   1010 				/* XXX fsmnt may be stale. */
   1011 				printf("%s: replaying log to disk\n",
   1012 				    fs->fs_fsmnt);
   1013 				error = wapbl_replay_write(mp->mnt_wapbl_replay,
   1014 				    devvp);
   1015 				if (error)
   1016 					goto out;
   1017 				wapbl_replay_stop(mp->mnt_wapbl_replay);
   1018 				fs->fs_clean = FS_WASCLEAN;
   1019 			} else {
   1020 				/* XXX fsmnt may be stale */
   1021 				printf("%s: replaying log to memory\n",
   1022 				    fs->fs_fsmnt);
   1023 			}
   1024 
   1025 			/* Force a re-read of the superblock */
   1026 			brelse(bp, BC_INVAL);
   1027 			bp = NULL;
   1028 			kmem_free(fs, sbsize);
   1029 			fs = NULL;
   1030 			goto sbagain;
   1031 		}
   1032 	}
   1033 #else /* !WAPBL */
   1034 	if ((fs->fs_flags & FS_DOWAPBL) && (mp->mnt_flag & MNT_FORCE) == 0) {
   1035 		error = EPERM;
   1036 		goto out;
   1037 	}
   1038 #endif /* !WAPBL */
   1039 
   1040 	ffs_oldfscompat_read(fs, ump, sblockloc);
   1041 	ump->um_maxfilesize = fs->fs_maxfilesize;
   1042 
   1043 	if (fs->fs_flags & ~(FS_KNOWN_FLAGS | FS_INTERNAL)) {
   1044 		uprintf("%s: unknown ufs flags: 0x%08"PRIx32"%s\n",
   1045 		    mp->mnt_stat.f_mntonname, fs->fs_flags,
   1046 		    (mp->mnt_flag & MNT_FORCE) ? "" : ", not mounting");
   1047 		if ((mp->mnt_flag & MNT_FORCE) == 0) {
   1048 			error = EINVAL;
   1049 			goto out;
   1050 		}
   1051 	}
   1052 
   1053 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
   1054 		fs->fs_pendingblocks = 0;
   1055 		fs->fs_pendinginodes = 0;
   1056 	}
   1057 
   1058 	ump->um_fstype = fstype;
   1059 	if (fs->fs_sbsize < SBLOCKSIZE)
   1060 		brelse(bp, BC_INVAL);
   1061 	else
   1062 		brelse(bp, 0);
   1063 	bp = NULL;
   1064 
   1065 	/* First check to see if this is tagged as an Apple UFS filesystem
   1066 	 * in the disklabel
   1067 	 */
   1068 	if (getdiskinfo(devvp, &dkw) == 0 &&
   1069 	    strcmp(dkw.dkw_ptype, DKW_PTYPE_APPLEUFS) == 0)
   1070 		ump->um_flags |= UFS_ISAPPLEUFS;
   1071 #ifdef APPLE_UFS
   1072 	else {
   1073 		/* Manually look for an apple ufs label, and if a valid one
   1074 		 * is found, then treat it like an Apple UFS filesystem anyway
   1075 		 */
   1076 		error = bread(devvp, (daddr_t)(APPLEUFS_LABEL_OFFSET / DEV_BSIZE),
   1077 			APPLEUFS_LABEL_SIZE, cred, 0, &bp);
   1078 		if (error)
   1079 			goto out;
   1080 		error = ffs_appleufs_validate(fs->fs_fsmnt,
   1081 			(struct appleufslabel *)bp->b_data, NULL);
   1082 		if (error == 0) {
   1083 			ump->um_flags |= UFS_ISAPPLEUFS;
   1084 		}
   1085 		brelse(bp, 0);
   1086 		bp = NULL;
   1087 	}
   1088 #else
   1089 	if (ump->um_flags & UFS_ISAPPLEUFS) {
   1090 		error = EINVAL;
   1091 		goto out;
   1092 	}
   1093 #endif
   1094 
   1095 #if 0
   1096 /*
   1097  * XXX This code changes the behaviour of mounting dirty filesystems, to
   1098  * XXX require "mount -f ..." to mount them.  This doesn't match what
   1099  * XXX mount(8) describes and is disabled for now.
   1100  */
   1101 	/*
   1102 	 * If the file system is not clean, don't allow it to be mounted
   1103 	 * unless MNT_FORCE is specified.  (Note: MNT_FORCE is always set
   1104 	 * for the root file system.)
   1105 	 */
   1106 	if (fs->fs_flags & FS_DOWAPBL) {
   1107 		/*
   1108 		 * wapbl normally expects to be FS_WASCLEAN when the FS_DOWAPBL
   1109 		 * bit is set, although there's a window in unmount where it
   1110 		 * could be FS_ISCLEAN
   1111 		 */
   1112 		if ((mp->mnt_flag & MNT_FORCE) == 0 &&
   1113 		    (fs->fs_clean & (FS_WASCLEAN | FS_ISCLEAN)) == 0) {
   1114 			error = EPERM;
   1115 			goto out;
   1116 		}
   1117 	} else
   1118 		if ((fs->fs_clean & FS_ISCLEAN) == 0 &&
   1119 		    (mp->mnt_flag & MNT_FORCE) == 0) {
   1120 			error = EPERM;
   1121 			goto out;
   1122 		}
   1123 #endif
   1124 
   1125 	/*
   1126 	 * verify that we can access the last block in the fs
   1127 	 * if we're mounting read/write.
   1128 	 */
   1129 
   1130 	if (!ronly) {
   1131 		error = bread(devvp, FFS_FSBTODB(fs, fs->fs_size - 1),
   1132 		    fs->fs_fsize, cred, 0, &bp);
   1133 		if (error) {
   1134 			bset = BC_INVAL;
   1135 			goto out;
   1136 		}
   1137 		if (bp->b_bcount != fs->fs_fsize)
   1138 			error = EINVAL;
   1139 		brelse(bp, BC_INVAL);
   1140 		bp = NULL;
   1141 	}
   1142 
   1143 	fs->fs_ronly = ronly;
   1144 	/* Don't bump fs_clean if we're replaying journal */
   1145 	if (!((fs->fs_flags & FS_DOWAPBL) && (fs->fs_clean & FS_WASCLEAN)))
   1146 		if (ronly == 0) {
   1147 			fs->fs_clean <<= 1;
   1148 			fs->fs_fmod = 1;
   1149 		}
   1150 	bsize = fs->fs_cssize;
   1151 	blks = howmany(bsize, fs->fs_fsize);
   1152 	if (fs->fs_contigsumsize > 0)
   1153 		bsize += fs->fs_ncg * sizeof(int32_t);
   1154 	bsize += fs->fs_ncg * sizeof(*fs->fs_contigdirs);
   1155 	allocsbsize = bsize;
   1156 	space = kmem_alloc((u_long)allocsbsize, KM_SLEEP);
   1157 	fs->fs_csp = space;
   1158 	for (i = 0; i < blks; i += fs->fs_frag) {
   1159 		bsize = fs->fs_bsize;
   1160 		if (i + fs->fs_frag > blks)
   1161 			bsize = (blks - i) * fs->fs_fsize;
   1162 		error = bread(devvp, FFS_FSBTODB(fs, fs->fs_csaddr + i), bsize,
   1163 			      cred, 0, &bp);
   1164 		if (error) {
   1165 			kmem_free(fs->fs_csp, allocsbsize);
   1166 			goto out;
   1167 		}
   1168 #ifdef FFS_EI
   1169 		if (needswap)
   1170 			ffs_csum_swap((struct csum *)bp->b_data,
   1171 				(struct csum *)space, bsize);
   1172 		else
   1173 #endif
   1174 			memcpy(space, bp->b_data, (u_int)bsize);
   1175 
   1176 		space = (char *)space + bsize;
   1177 		brelse(bp, 0);
   1178 		bp = NULL;
   1179 	}
   1180 	if (fs->fs_contigsumsize > 0) {
   1181 		fs->fs_maxcluster = lp = space;
   1182 		for (i = 0; i < fs->fs_ncg; i++)
   1183 			*lp++ = fs->fs_contigsumsize;
   1184 		space = lp;
   1185 	}
   1186 	bsize = fs->fs_ncg * sizeof(*fs->fs_contigdirs);
   1187 	fs->fs_contigdirs = space;
   1188 	space = (char *)space + bsize;
   1189 	memset(fs->fs_contigdirs, 0, bsize);
   1190 		/* Compatibility for old filesystems - XXX */
   1191 	if (fs->fs_avgfilesize <= 0)
   1192 		fs->fs_avgfilesize = AVFILESIZ;
   1193 	if (fs->fs_avgfpdir <= 0)
   1194 		fs->fs_avgfpdir = AFPDIR;
   1195 	fs->fs_active = NULL;
   1196 	mp->mnt_data = ump;
   1197 	mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
   1198 	mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_FFS);
   1199 	mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
   1200 	mp->mnt_stat.f_namemax = FFS_MAXNAMLEN;
   1201 	if (UFS_MPISAPPLEUFS(ump)) {
   1202 		/* NeXT used to keep short symlinks in the inode even
   1203 		 * when using FS_42INODEFMT.  In that case fs->fs_maxsymlinklen
   1204 		 * is probably -1, but we still need to be able to identify
   1205 		 * short symlinks.
   1206 		 */
   1207 		ump->um_maxsymlinklen = APPLEUFS_MAXSYMLINKLEN;
   1208 		ump->um_dirblksiz = APPLEUFS_DIRBLKSIZ;
   1209 		mp->mnt_iflag |= IMNT_DTYPE;
   1210 	} else {
   1211 		ump->um_maxsymlinklen = fs->fs_maxsymlinklen;
   1212 		ump->um_dirblksiz = UFS_DIRBLKSIZ;
   1213 		if (ump->um_maxsymlinklen > 0)
   1214 			mp->mnt_iflag |= IMNT_DTYPE;
   1215 		else
   1216 			mp->mnt_iflag &= ~IMNT_DTYPE;
   1217 	}
   1218 	mp->mnt_fs_bshift = fs->fs_bshift;
   1219 	mp->mnt_dev_bshift = DEV_BSHIFT;	/* XXX */
   1220 	mp->mnt_flag |= MNT_LOCAL;
   1221 	mp->mnt_iflag |= IMNT_MPSAFE;
   1222 #ifdef FFS_EI
   1223 	if (needswap)
   1224 		ump->um_flags |= UFS_NEEDSWAP;
   1225 #endif
   1226 	ump->um_mountp = mp;
   1227 	ump->um_dev = dev;
   1228 	ump->um_devvp = devvp;
   1229 	ump->um_nindir = fs->fs_nindir;
   1230 	ump->um_lognindir = ffs(fs->fs_nindir) - 1;
   1231 	ump->um_bptrtodb = fs->fs_fshift - DEV_BSHIFT;
   1232 	ump->um_seqinc = fs->fs_frag;
   1233 	for (i = 0; i < MAXQUOTAS; i++)
   1234 		ump->um_quotas[i] = NULLVP;
   1235 	spec_node_setmountedfs(devvp, mp);
   1236 	if (ronly == 0 && fs->fs_snapinum[0] != 0)
   1237 		ffs_snapshot_mount(mp);
   1238 #ifdef WAPBL
   1239 	if (!ronly) {
   1240 		KDASSERT(fs->fs_ronly == 0);
   1241 		/*
   1242 		 * ffs_wapbl_start() needs mp->mnt_stat initialised if it
   1243 		 * needs to create a new log file in-filesystem.
   1244 		 */
   1245 		ffs_statvfs(mp, &mp->mnt_stat);
   1246 
   1247 		error = ffs_wapbl_start(mp);
   1248 		if (error) {
   1249 			kmem_free(fs->fs_csp, allocsbsize);
   1250 			goto out;
   1251 		}
   1252 	}
   1253 #endif /* WAPBL */
   1254 	if (ronly == 0) {
   1255 #ifdef QUOTA2
   1256 		error = ffs_quota2_mount(mp);
   1257 		if (error) {
   1258 			kmem_free(fs->fs_csp, allocsbsize);
   1259 			goto out;
   1260 		}
   1261 #else
   1262 		if (fs->fs_flags & FS_DOQUOTA2) {
   1263 			ump->um_flags |= UFS_QUOTA2;
   1264 			uprintf("%s: options QUOTA2 not enabled%s\n",
   1265 			    mp->mnt_stat.f_mntonname,
   1266 			    (mp->mnt_flag & MNT_FORCE) ? "" : ", not mounting");
   1267 			if ((mp->mnt_flag & MNT_FORCE) == 0) {
   1268 				error = EINVAL;
   1269 				kmem_free(fs->fs_csp, allocsbsize);
   1270 				goto out;
   1271 			}
   1272 		}
   1273 #endif
   1274 	 }
   1275 #ifdef UFS_EXTATTR
   1276 	/*
   1277 	 * Initialize file-backed extended attributes on UFS1 file
   1278 	 * systems.
   1279 	 */
   1280 	if (ump->um_fstype == UFS1)
   1281 		ufs_extattr_uepm_init(&ump->um_extattr);
   1282 #endif /* UFS_EXTATTR */
   1283 
   1284 	if (mp->mnt_flag & MNT_DISCARD)
   1285 		ump->um_discarddata = ffs_discard_init(devvp, fs);
   1286 
   1287 	return (0);
   1288 out:
   1289 #ifdef WAPBL
   1290 	if (mp->mnt_wapbl_replay) {
   1291 		wapbl_replay_stop(mp->mnt_wapbl_replay);
   1292 		wapbl_replay_free(mp->mnt_wapbl_replay);
   1293 		mp->mnt_wapbl_replay = 0;
   1294 	}
   1295 #endif
   1296 
   1297 	fstrans_unmount(mp);
   1298 	if (fs)
   1299 		kmem_free(fs, fs->fs_sbsize);
   1300 	spec_node_setmountedfs(devvp, NULL);
   1301 	if (bp)
   1302 		brelse(bp, bset);
   1303 	if (ump) {
   1304 		if (ump->um_oldfscompat)
   1305 			kmem_free(ump->um_oldfscompat, 512 + 3*sizeof(int32_t));
   1306 		mutex_destroy(&ump->um_lock);
   1307 		kmem_free(ump, sizeof(*ump));
   1308 		mp->mnt_data = NULL;
   1309 	}
   1310 	return (error);
   1311 }
   1312 
   1313 /*
   1314  * Sanity checks for loading old filesystem superblocks.
   1315  * See ffs_oldfscompat_write below for unwound actions.
   1316  *
   1317  * XXX - Parts get retired eventually.
   1318  * Unfortunately new bits get added.
   1319  */
   1320 static void
   1321 ffs_oldfscompat_read(struct fs *fs, struct ufsmount *ump, daddr_t sblockloc)
   1322 {
   1323 	off_t maxfilesize;
   1324 	int32_t *extrasave;
   1325 
   1326 	if ((fs->fs_magic != FS_UFS1_MAGIC) ||
   1327 	    (fs->fs_old_flags & FS_FLAGS_UPDATED))
   1328 		return;
   1329 
   1330 	if (!ump->um_oldfscompat)
   1331 		ump->um_oldfscompat = kmem_alloc(512 + 3*sizeof(int32_t),
   1332 		    KM_SLEEP);
   1333 
   1334 	memcpy(ump->um_oldfscompat, &fs->fs_old_postbl_start, 512);
   1335 	extrasave = ump->um_oldfscompat;
   1336 	extrasave += 512/sizeof(int32_t);
   1337 	extrasave[0] = fs->fs_old_npsect;
   1338 	extrasave[1] = fs->fs_old_interleave;
   1339 	extrasave[2] = fs->fs_old_trackskew;
   1340 
   1341 	/* These fields will be overwritten by their
   1342 	 * original values in fs_oldfscompat_write, so it is harmless
   1343 	 * to modify them here.
   1344 	 */
   1345 	fs->fs_cstotal.cs_ndir = fs->fs_old_cstotal.cs_ndir;
   1346 	fs->fs_cstotal.cs_nbfree = fs->fs_old_cstotal.cs_nbfree;
   1347 	fs->fs_cstotal.cs_nifree = fs->fs_old_cstotal.cs_nifree;
   1348 	fs->fs_cstotal.cs_nffree = fs->fs_old_cstotal.cs_nffree;
   1349 
   1350 	fs->fs_maxbsize = fs->fs_bsize;
   1351 	fs->fs_time = fs->fs_old_time;
   1352 	fs->fs_size = fs->fs_old_size;
   1353 	fs->fs_dsize = fs->fs_old_dsize;
   1354 	fs->fs_csaddr = fs->fs_old_csaddr;
   1355 	fs->fs_sblockloc = sblockloc;
   1356 
   1357 	fs->fs_flags = fs->fs_old_flags | (fs->fs_flags & FS_INTERNAL);
   1358 
   1359 	if (fs->fs_old_postblformat == FS_42POSTBLFMT) {
   1360 		fs->fs_old_nrpos = 8;
   1361 		fs->fs_old_npsect = fs->fs_old_nsect;
   1362 		fs->fs_old_interleave = 1;
   1363 		fs->fs_old_trackskew = 0;
   1364 	}
   1365 
   1366 	if (fs->fs_old_inodefmt < FS_44INODEFMT) {
   1367 		fs->fs_maxfilesize = (u_quad_t) 1LL << 39;
   1368 		fs->fs_qbmask = ~fs->fs_bmask;
   1369 		fs->fs_qfmask = ~fs->fs_fmask;
   1370 	}
   1371 
   1372 	maxfilesize = (u_int64_t)0x80000000 * fs->fs_bsize - 1;
   1373 	if (fs->fs_maxfilesize > maxfilesize)
   1374 		fs->fs_maxfilesize = maxfilesize;
   1375 
   1376 	/* Compatibility for old filesystems */
   1377 	if (fs->fs_avgfilesize <= 0)
   1378 		fs->fs_avgfilesize = AVFILESIZ;
   1379 	if (fs->fs_avgfpdir <= 0)
   1380 		fs->fs_avgfpdir = AFPDIR;
   1381 
   1382 #if 0
   1383 	if (bigcgs) {
   1384 		fs->fs_save_cgsize = fs->fs_cgsize;
   1385 		fs->fs_cgsize = fs->fs_bsize;
   1386 	}
   1387 #endif
   1388 }
   1389 
   1390 /*
   1391  * Unwinding superblock updates for old filesystems.
   1392  * See ffs_oldfscompat_read above for details.
   1393  *
   1394  * XXX - Parts get retired eventually.
   1395  * Unfortunately new bits get added.
   1396  */
   1397 static void
   1398 ffs_oldfscompat_write(struct fs *fs, struct ufsmount *ump)
   1399 {
   1400 	int32_t *extrasave;
   1401 
   1402 	if ((fs->fs_magic != FS_UFS1_MAGIC) ||
   1403 	    (fs->fs_old_flags & FS_FLAGS_UPDATED))
   1404 		return;
   1405 
   1406 	fs->fs_old_time = fs->fs_time;
   1407 	fs->fs_old_cstotal.cs_ndir = fs->fs_cstotal.cs_ndir;
   1408 	fs->fs_old_cstotal.cs_nbfree = fs->fs_cstotal.cs_nbfree;
   1409 	fs->fs_old_cstotal.cs_nifree = fs->fs_cstotal.cs_nifree;
   1410 	fs->fs_old_cstotal.cs_nffree = fs->fs_cstotal.cs_nffree;
   1411 	fs->fs_old_flags = fs->fs_flags;
   1412 
   1413 #if 0
   1414 	if (bigcgs) {
   1415 		fs->fs_cgsize = fs->fs_save_cgsize;
   1416 	}
   1417 #endif
   1418 
   1419 	memcpy(&fs->fs_old_postbl_start, ump->um_oldfscompat, 512);
   1420 	extrasave = ump->um_oldfscompat;
   1421 	extrasave += 512/sizeof(int32_t);
   1422 	fs->fs_old_npsect = extrasave[0];
   1423 	fs->fs_old_interleave = extrasave[1];
   1424 	fs->fs_old_trackskew = extrasave[2];
   1425 
   1426 }
   1427 
   1428 /*
   1429  * unmount vfs operation
   1430  */
   1431 int
   1432 ffs_unmount(struct mount *mp, int mntflags)
   1433 {
   1434 	struct lwp *l = curlwp;
   1435 	struct ufsmount *ump = VFSTOUFS(mp);
   1436 	struct fs *fs = ump->um_fs;
   1437 	int error, flags;
   1438 	u_int32_t bsize;
   1439 #ifdef WAPBL
   1440 	extern int doforce;
   1441 #endif
   1442 
   1443 	if (ump->um_discarddata) {
   1444 		ffs_discard_finish(ump->um_discarddata, mntflags);
   1445 		ump->um_discarddata = NULL;
   1446 	}
   1447 
   1448 	flags = 0;
   1449 	if (mntflags & MNT_FORCE)
   1450 		flags |= FORCECLOSE;
   1451 	if ((error = ffs_flushfiles(mp, flags, l)) != 0)
   1452 		return (error);
   1453 	error = UFS_WAPBL_BEGIN(mp);
   1454 	if (error == 0)
   1455 		if (fs->fs_ronly == 0 &&
   1456 		    ffs_cgupdate(ump, MNT_WAIT) == 0 &&
   1457 		    fs->fs_clean & FS_WASCLEAN) {
   1458 			fs->fs_clean = FS_ISCLEAN;
   1459 			fs->fs_fmod = 0;
   1460 			(void) ffs_sbupdate(ump, MNT_WAIT);
   1461 		}
   1462 	if (error == 0)
   1463 		UFS_WAPBL_END(mp);
   1464 #ifdef WAPBL
   1465 	KASSERT(!(mp->mnt_wapbl_replay && mp->mnt_wapbl));
   1466 	if (mp->mnt_wapbl_replay) {
   1467 		KDASSERT(fs->fs_ronly);
   1468 		wapbl_replay_stop(mp->mnt_wapbl_replay);
   1469 		wapbl_replay_free(mp->mnt_wapbl_replay);
   1470 		mp->mnt_wapbl_replay = 0;
   1471 	}
   1472 	error = ffs_wapbl_stop(mp, doforce && (mntflags & MNT_FORCE));
   1473 	if (error) {
   1474 		return error;
   1475 	}
   1476 #endif /* WAPBL */
   1477 
   1478 	if (ump->um_devvp->v_type != VBAD)
   1479 		spec_node_setmountedfs(ump->um_devvp, NULL);
   1480 	vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1481 	(void)VOP_CLOSE(ump->um_devvp, fs->fs_ronly ? FREAD : FREAD | FWRITE,
   1482 		NOCRED);
   1483 	vput(ump->um_devvp);
   1484 
   1485 	bsize = fs->fs_cssize;
   1486 	if (fs->fs_contigsumsize > 0)
   1487 		bsize += fs->fs_ncg * sizeof(int32_t);
   1488 	bsize += fs->fs_ncg * sizeof(*fs->fs_contigdirs);
   1489 	kmem_free(fs->fs_csp, bsize);
   1490 
   1491 	kmem_free(fs, fs->fs_sbsize);
   1492 	if (ump->um_oldfscompat != NULL)
   1493 		kmem_free(ump->um_oldfscompat, 512 + 3*sizeof(int32_t));
   1494 	mutex_destroy(&ump->um_lock);
   1495 	ffs_snapshot_fini(ump);
   1496 	kmem_free(ump, sizeof(*ump));
   1497 	mp->mnt_data = NULL;
   1498 	mp->mnt_flag &= ~MNT_LOCAL;
   1499 	fstrans_unmount(mp);
   1500 	return (0);
   1501 }
   1502 
   1503 /*
   1504  * Flush out all the files in a filesystem.
   1505  */
   1506 int
   1507 ffs_flushfiles(struct mount *mp, int flags, struct lwp *l)
   1508 {
   1509 	extern int doforce;
   1510 	struct ufsmount *ump;
   1511 	int error;
   1512 
   1513 	if (!doforce)
   1514 		flags &= ~FORCECLOSE;
   1515 	ump = VFSTOUFS(mp);
   1516 #ifdef QUOTA
   1517 	if ((error = quota1_umount(mp, flags)) != 0)
   1518 		return (error);
   1519 #endif
   1520 #ifdef QUOTA2
   1521 	if ((error = quota2_umount(mp, flags)) != 0)
   1522 		return (error);
   1523 #endif
   1524 #ifdef UFS_EXTATTR
   1525 	if (ump->um_fstype == UFS1) {
   1526 		if (ump->um_extattr.uepm_flags & UFS_EXTATTR_UEPM_STARTED)
   1527 			ufs_extattr_stop(mp, l);
   1528 		if (ump->um_extattr.uepm_flags & UFS_EXTATTR_UEPM_INITIALIZED)
   1529 			ufs_extattr_uepm_destroy(&ump->um_extattr);
   1530 	}
   1531 #endif
   1532 	if ((error = vflush(mp, 0, SKIPSYSTEM | flags)) != 0)
   1533 		return (error);
   1534 	ffs_snapshot_unmount(mp);
   1535 	/*
   1536 	 * Flush all the files.
   1537 	 */
   1538 	error = vflush(mp, NULLVP, flags);
   1539 	if (error)
   1540 		return (error);
   1541 	/*
   1542 	 * Flush filesystem metadata.
   1543 	 */
   1544 	vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1545 	error = VOP_FSYNC(ump->um_devvp, l->l_cred, FSYNC_WAIT, 0, 0);
   1546 	VOP_UNLOCK(ump->um_devvp);
   1547 	if (flags & FORCECLOSE) /* XXXDBJ */
   1548 		error = 0;
   1549 
   1550 #ifdef WAPBL
   1551 	if (error)
   1552 		return error;
   1553 	if (mp->mnt_wapbl) {
   1554 		error = wapbl_flush(mp->mnt_wapbl, 1);
   1555 		if (flags & FORCECLOSE)
   1556 			error = 0;
   1557 	}
   1558 #endif
   1559 
   1560 	return (error);
   1561 }
   1562 
   1563 /*
   1564  * Get file system statistics.
   1565  */
   1566 int
   1567 ffs_statvfs(struct mount *mp, struct statvfs *sbp)
   1568 {
   1569 	struct ufsmount *ump;
   1570 	struct fs *fs;
   1571 
   1572 	ump = VFSTOUFS(mp);
   1573 	fs = ump->um_fs;
   1574 	mutex_enter(&ump->um_lock);
   1575 	sbp->f_bsize = fs->fs_bsize;
   1576 	sbp->f_frsize = fs->fs_fsize;
   1577 	sbp->f_iosize = fs->fs_bsize;
   1578 	sbp->f_blocks = fs->fs_dsize;
   1579 	sbp->f_bfree = ffs_blkstofrags(fs, fs->fs_cstotal.cs_nbfree) +
   1580 	    fs->fs_cstotal.cs_nffree + FFS_DBTOFSB(fs, fs->fs_pendingblocks);
   1581 	sbp->f_bresvd = ((u_int64_t) fs->fs_dsize * (u_int64_t)
   1582 	    fs->fs_minfree) / (u_int64_t) 100;
   1583 	if (sbp->f_bfree > sbp->f_bresvd)
   1584 		sbp->f_bavail = sbp->f_bfree - sbp->f_bresvd;
   1585 	else
   1586 		sbp->f_bavail = 0;
   1587 	sbp->f_files =  fs->fs_ncg * fs->fs_ipg - UFS_ROOTINO;
   1588 	sbp->f_ffree = fs->fs_cstotal.cs_nifree + fs->fs_pendinginodes;
   1589 	sbp->f_favail = sbp->f_ffree;
   1590 	sbp->f_fresvd = 0;
   1591 	mutex_exit(&ump->um_lock);
   1592 	copy_statvfs_info(sbp, mp);
   1593 
   1594 	return (0);
   1595 }
   1596 
   1597 struct ffs_sync_ctx {
   1598 	int waitfor;
   1599 	bool is_suspending;
   1600 };
   1601 
   1602 static bool
   1603 ffs_sync_selector(void *cl, struct vnode *vp)
   1604 {
   1605 	struct ffs_sync_ctx *c = cl;
   1606 	struct inode *ip;
   1607 
   1608 	ip = VTOI(vp);
   1609 	/*
   1610 	 * Skip the vnode/inode if inaccessible.
   1611 	 */
   1612 	if (ip == NULL || vp->v_type == VNON)
   1613 		return false;
   1614 
   1615 	/*
   1616 	 * We deliberately update inode times here.  This will
   1617 	 * prevent a massive queue of updates accumulating, only
   1618 	 * to be handled by a call to unmount.
   1619 	 *
   1620 	 * XXX It would be better to have the syncer trickle these
   1621 	 * out.  Adjustment needed to allow registering vnodes for
   1622 	 * sync when the vnode is clean, but the inode dirty.  Or
   1623 	 * have ufs itself trickle out inode updates.
   1624 	 *
   1625 	 * If doing a lazy sync, we don't care about metadata or
   1626 	 * data updates, because they are handled by each vnode's
   1627 	 * synclist entry.  In this case we are only interested in
   1628 	 * writing back modified inodes.
   1629 	 */
   1630 	if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE |
   1631 	    IN_MODIFY | IN_MODIFIED | IN_ACCESSED)) == 0 &&
   1632 	    (c->waitfor == MNT_LAZY || (LIST_EMPTY(&vp->v_dirtyblkhd) &&
   1633 	    UVM_OBJ_IS_CLEAN(&vp->v_uobj))))
   1634 		return false;
   1635 
   1636 	if (vp->v_type == VBLK && c->is_suspending)
   1637 		return false;
   1638 
   1639 	return true;
   1640 }
   1641 
   1642 /*
   1643  * Go through the disk queues to initiate sandbagged IO;
   1644  * go through the inodes to write those that have been modified;
   1645  * initiate the writing of the super block if it has been modified.
   1646  *
   1647  * Note: we are always called with the filesystem marked `MPBUSY'.
   1648  */
   1649 int
   1650 ffs_sync(struct mount *mp, int waitfor, kauth_cred_t cred)
   1651 {
   1652 	struct vnode *vp;
   1653 	struct ufsmount *ump = VFSTOUFS(mp);
   1654 	struct fs *fs;
   1655 	struct vnode_iterator *marker;
   1656 	int error, allerror = 0;
   1657 	bool is_suspending;
   1658 	struct ffs_sync_ctx ctx;
   1659 
   1660 	fs = ump->um_fs;
   1661 	if (fs->fs_fmod != 0 && fs->fs_ronly != 0) {		/* XXX */
   1662 		printf("fs = %s\n", fs->fs_fsmnt);
   1663 		panic("update: rofs mod");
   1664 	}
   1665 
   1666 	fstrans_start(mp, FSTRANS_SHARED);
   1667 	is_suspending = (fstrans_getstate(mp) == FSTRANS_SUSPENDING);
   1668 	/*
   1669 	 * Write back each (modified) inode.
   1670 	 */
   1671 	vfs_vnode_iterator_init(mp, &marker);
   1672 
   1673 	ctx.waitfor = waitfor;
   1674 	ctx.is_suspending = is_suspending;
   1675 	while ((vp = vfs_vnode_iterator_next(marker, ffs_sync_selector, &ctx)))
   1676 	{
   1677 		error = vn_lock(vp, LK_EXCLUSIVE);
   1678 		if (error) {
   1679 			vrele(vp);
   1680 			continue;
   1681 		}
   1682 		if (waitfor == MNT_LAZY) {
   1683 			error = UFS_WAPBL_BEGIN(vp->v_mount);
   1684 			if (!error) {
   1685 				error = ffs_update(vp, NULL, NULL,
   1686 				    UPDATE_CLOSE);
   1687 				UFS_WAPBL_END(vp->v_mount);
   1688 			}
   1689 		} else {
   1690 			error = VOP_FSYNC(vp, cred, FSYNC_NOLOG |
   1691 			    (waitfor == MNT_WAIT ? FSYNC_WAIT : 0), 0, 0);
   1692 		}
   1693 		if (error)
   1694 			allerror = error;
   1695 		vput(vp);
   1696 	}
   1697 	vfs_vnode_iterator_destroy(marker);
   1698 
   1699 	/*
   1700 	 * Force stale file system control information to be flushed.
   1701 	 */
   1702 	if (waitfor != MNT_LAZY && (ump->um_devvp->v_numoutput > 0 ||
   1703 	    !LIST_EMPTY(&ump->um_devvp->v_dirtyblkhd))) {
   1704 		vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
   1705 		if ((error = VOP_FSYNC(ump->um_devvp, cred,
   1706 		    (waitfor == MNT_WAIT ? FSYNC_WAIT : 0) | FSYNC_NOLOG,
   1707 		    0, 0)) != 0)
   1708 			allerror = error;
   1709 		VOP_UNLOCK(ump->um_devvp);
   1710 	}
   1711 #if defined(QUOTA) || defined(QUOTA2)
   1712 	qsync(mp);
   1713 #endif
   1714 	/*
   1715 	 * Write back modified superblock.
   1716 	 */
   1717 	if (fs->fs_fmod != 0) {
   1718 		fs->fs_fmod = 0;
   1719 		fs->fs_time = time_second;
   1720 		error = UFS_WAPBL_BEGIN(mp);
   1721 		if (error)
   1722 			allerror = error;
   1723 		else {
   1724 			if ((error = ffs_cgupdate(ump, waitfor)))
   1725 				allerror = error;
   1726 			UFS_WAPBL_END(mp);
   1727 		}
   1728 	}
   1729 
   1730 #ifdef WAPBL
   1731 	if (mp->mnt_wapbl) {
   1732 		error = wapbl_flush(mp->mnt_wapbl, 0);
   1733 		if (error)
   1734 			allerror = error;
   1735 	}
   1736 #endif
   1737 
   1738 	fstrans_done(mp);
   1739 	return (allerror);
   1740 }
   1741 
   1742 /*
   1743  * Read an inode from disk and initialize this vnode / inode pair.
   1744  * Caller assures no other thread will try to load this inode.
   1745  */
   1746 int
   1747 ffs_loadvnode(struct mount *mp, struct vnode *vp,
   1748     const void *key, size_t key_len, const void **new_key)
   1749 {
   1750 	ino_t ino;
   1751 	struct fs *fs;
   1752 	struct inode *ip;
   1753 	struct ufsmount *ump;
   1754 	struct buf *bp;
   1755 	dev_t dev;
   1756 	int error;
   1757 
   1758 	KASSERT(key_len == sizeof(ino));
   1759 	memcpy(&ino, key, key_len);
   1760 	ump = VFSTOUFS(mp);
   1761 	dev = ump->um_dev;
   1762 	fs = ump->um_fs;
   1763 
   1764 	/* Read in the disk contents for the inode. */
   1765 	error = bread(ump->um_devvp, FFS_FSBTODB(fs, ino_to_fsba(fs, ino)),
   1766 		      (int)fs->fs_bsize, NOCRED, 0, &bp);
   1767 	if (error)
   1768 		return error;
   1769 
   1770 	/* Allocate and initialize inode. */
   1771 	ip = pool_cache_get(ffs_inode_cache, PR_WAITOK);
   1772 	memset(ip, 0, sizeof(struct inode));
   1773 	vp->v_tag = VT_UFS;
   1774 	vp->v_op = ffs_vnodeop_p;
   1775 	vp->v_vflag |= VV_LOCKSWORK;
   1776 	vp->v_data = ip;
   1777 	ip->i_vnode = vp;
   1778 	ip->i_ump = ump;
   1779 	ip->i_fs = fs;
   1780 	ip->i_dev = dev;
   1781 	ip->i_number = ino;
   1782 #if defined(QUOTA) || defined(QUOTA2)
   1783 	ufsquota_init(ip);
   1784 #endif
   1785 
   1786 	/* Initialize genfs node. */
   1787 	genfs_node_init(vp, &ffs_genfsops);
   1788 
   1789 	if (ip->i_ump->um_fstype == UFS1)
   1790 		ip->i_din.ffs1_din = pool_cache_get(ffs_dinode1_cache,
   1791 		    PR_WAITOK);
   1792 	else
   1793 		ip->i_din.ffs2_din = pool_cache_get(ffs_dinode2_cache,
   1794 		    PR_WAITOK);
   1795 	ffs_load_inode(bp, ip, fs, ino);
   1796 	brelse(bp, 0);
   1797 
   1798 	/* Initialize the vnode from the inode. */
   1799 	ufs_vinit(mp, ffs_specop_p, ffs_fifoop_p, &vp);
   1800 
   1801 	/* Finish inode initialization.  */
   1802 	ip->i_devvp = ump->um_devvp;
   1803 	vref(ip->i_devvp);
   1804 
   1805 	/*
   1806 	 * Ensure that uid and gid are correct. This is a temporary
   1807 	 * fix until fsck has been changed to do the update.
   1808 	 */
   1809 
   1810 	if (fs->fs_old_inodefmt < FS_44INODEFMT) {		/* XXX */
   1811 		ip->i_uid = ip->i_ffs1_ouid;			/* XXX */
   1812 		ip->i_gid = ip->i_ffs1_ogid;			/* XXX */
   1813 	}							/* XXX */
   1814 	uvm_vnp_setsize(vp, ip->i_size);
   1815 	*new_key = &ip->i_number;
   1816 	return 0;
   1817 }
   1818 
   1819 /*
   1820  * File handle to vnode
   1821  *
   1822  * Have to be really careful about stale file handles:
   1823  * - check that the inode number is valid
   1824  * - call ffs_vget() to get the locked inode
   1825  * - check for an unallocated inode (i_mode == 0)
   1826  * - check that the given client host has export rights and return
   1827  *   those rights via. exflagsp and credanonp
   1828  */
   1829 int
   1830 ffs_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
   1831 {
   1832 	struct ufid ufh;
   1833 	struct fs *fs;
   1834 
   1835 	if (fhp->fid_len != sizeof(struct ufid))
   1836 		return EINVAL;
   1837 
   1838 	memcpy(&ufh, fhp, sizeof(ufh));
   1839 	fs = VFSTOUFS(mp)->um_fs;
   1840 	if (ufh.ufid_ino < UFS_ROOTINO ||
   1841 	    ufh.ufid_ino >= fs->fs_ncg * fs->fs_ipg)
   1842 		return (ESTALE);
   1843 	return (ufs_fhtovp(mp, &ufh, vpp));
   1844 }
   1845 
   1846 /*
   1847  * Vnode pointer to File handle
   1848  */
   1849 /* ARGSUSED */
   1850 int
   1851 ffs_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
   1852 {
   1853 	struct inode *ip;
   1854 	struct ufid ufh;
   1855 
   1856 	if (*fh_size < sizeof(struct ufid)) {
   1857 		*fh_size = sizeof(struct ufid);
   1858 		return E2BIG;
   1859 	}
   1860 	ip = VTOI(vp);
   1861 	*fh_size = sizeof(struct ufid);
   1862 	memset(&ufh, 0, sizeof(ufh));
   1863 	ufh.ufid_len = sizeof(struct ufid);
   1864 	ufh.ufid_ino = ip->i_number;
   1865 	ufh.ufid_gen = ip->i_gen;
   1866 	memcpy(fhp, &ufh, sizeof(ufh));
   1867 	return (0);
   1868 }
   1869 
   1870 void
   1871 ffs_init(void)
   1872 {
   1873 	if (ffs_initcount++ > 0)
   1874 		return;
   1875 
   1876 	ffs_inode_cache = pool_cache_init(sizeof(struct inode), 0, 0, 0,
   1877 	    "ffsino", NULL, IPL_NONE, NULL, NULL, NULL);
   1878 	ffs_dinode1_cache = pool_cache_init(sizeof(struct ufs1_dinode), 0, 0, 0,
   1879 	    "ffsdino1", NULL, IPL_NONE, NULL, NULL, NULL);
   1880 	ffs_dinode2_cache = pool_cache_init(sizeof(struct ufs2_dinode), 0, 0, 0,
   1881 	    "ffsdino2", NULL, IPL_NONE, NULL, NULL, NULL);
   1882 	ufs_init();
   1883 }
   1884 
   1885 void
   1886 ffs_reinit(void)
   1887 {
   1888 
   1889 	ufs_reinit();
   1890 }
   1891 
   1892 void
   1893 ffs_done(void)
   1894 {
   1895 	if (--ffs_initcount > 0)
   1896 		return;
   1897 
   1898 	ufs_done();
   1899 	pool_cache_destroy(ffs_dinode2_cache);
   1900 	pool_cache_destroy(ffs_dinode1_cache);
   1901 	pool_cache_destroy(ffs_inode_cache);
   1902 }
   1903 
   1904 /*
   1905  * Write a superblock and associated information back to disk.
   1906  */
   1907 int
   1908 ffs_sbupdate(struct ufsmount *mp, int waitfor)
   1909 {
   1910 	struct fs *fs = mp->um_fs;
   1911 	struct buf *bp;
   1912 	int error = 0;
   1913 	u_int32_t saveflag;
   1914 
   1915 	error = ffs_getblk(mp->um_devvp,
   1916 	    fs->fs_sblockloc / DEV_BSIZE, FFS_NOBLK,
   1917 	    fs->fs_sbsize, false, &bp);
   1918 	if (error)
   1919 		return error;
   1920 	saveflag = fs->fs_flags & FS_INTERNAL;
   1921 	fs->fs_flags &= ~FS_INTERNAL;
   1922 
   1923 	memcpy(bp->b_data, fs, fs->fs_sbsize);
   1924 
   1925 	ffs_oldfscompat_write((struct fs *)bp->b_data, mp);
   1926 #ifdef FFS_EI
   1927 	if (mp->um_flags & UFS_NEEDSWAP)
   1928 		ffs_sb_swap((struct fs *)bp->b_data, (struct fs *)bp->b_data);
   1929 #endif
   1930 	fs->fs_flags |= saveflag;
   1931 
   1932 	if (waitfor == MNT_WAIT)
   1933 		error = bwrite(bp);
   1934 	else
   1935 		bawrite(bp);
   1936 	return (error);
   1937 }
   1938 
   1939 int
   1940 ffs_cgupdate(struct ufsmount *mp, int waitfor)
   1941 {
   1942 	struct fs *fs = mp->um_fs;
   1943 	struct buf *bp;
   1944 	int blks;
   1945 	void *space;
   1946 	int i, size, error = 0, allerror = 0;
   1947 
   1948 	allerror = ffs_sbupdate(mp, waitfor);
   1949 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
   1950 	space = fs->fs_csp;
   1951 	for (i = 0; i < blks; i += fs->fs_frag) {
   1952 		size = fs->fs_bsize;
   1953 		if (i + fs->fs_frag > blks)
   1954 			size = (blks - i) * fs->fs_fsize;
   1955 		error = ffs_getblk(mp->um_devvp, FFS_FSBTODB(fs, fs->fs_csaddr + i),
   1956 		    FFS_NOBLK, size, false, &bp);
   1957 		if (error)
   1958 			break;
   1959 #ifdef FFS_EI
   1960 		if (mp->um_flags & UFS_NEEDSWAP)
   1961 			ffs_csum_swap((struct csum*)space,
   1962 			    (struct csum*)bp->b_data, size);
   1963 		else
   1964 #endif
   1965 			memcpy(bp->b_data, space, (u_int)size);
   1966 		space = (char *)space + size;
   1967 		if (waitfor == MNT_WAIT)
   1968 			error = bwrite(bp);
   1969 		else
   1970 			bawrite(bp);
   1971 	}
   1972 	if (!allerror && error)
   1973 		allerror = error;
   1974 	return (allerror);
   1975 }
   1976 
   1977 int
   1978 ffs_extattrctl(struct mount *mp, int cmd, struct vnode *vp,
   1979     int attrnamespace, const char *attrname)
   1980 {
   1981 #ifdef UFS_EXTATTR
   1982 	/*
   1983 	 * File-backed extended attributes are only supported on UFS1.
   1984 	 * UFS2 has native extended attributes.
   1985 	 */
   1986 	if (VFSTOUFS(mp)->um_fstype == UFS1)
   1987 		return (ufs_extattrctl(mp, cmd, vp, attrnamespace, attrname));
   1988 #endif
   1989 	return (vfs_stdextattrctl(mp, cmd, vp, attrnamespace, attrname));
   1990 }
   1991 
   1992 int
   1993 ffs_suspendctl(struct mount *mp, int cmd)
   1994 {
   1995 	int error;
   1996 	struct lwp *l = curlwp;
   1997 
   1998 	switch (cmd) {
   1999 	case SUSPEND_SUSPEND:
   2000 		if ((error = fstrans_setstate(mp, FSTRANS_SUSPENDING)) != 0)
   2001 			return error;
   2002 		error = ffs_sync(mp, MNT_WAIT, l->l_proc->p_cred);
   2003 		if (error == 0)
   2004 			error = fstrans_setstate(mp, FSTRANS_SUSPENDED);
   2005 #ifdef WAPBL
   2006 		if (error == 0 && mp->mnt_wapbl)
   2007 			error = wapbl_flush(mp->mnt_wapbl, 1);
   2008 #endif
   2009 		if (error != 0) {
   2010 			(void) fstrans_setstate(mp, FSTRANS_NORMAL);
   2011 			return error;
   2012 		}
   2013 		return 0;
   2014 
   2015 	case SUSPEND_RESUME:
   2016 		return fstrans_setstate(mp, FSTRANS_NORMAL);
   2017 
   2018 	default:
   2019 		return EINVAL;
   2020 	}
   2021 }
   2022 
   2023 /*
   2024  * Synch vnode for a mounted file system.
   2025  */
   2026 static int
   2027 ffs_vfs_fsync(vnode_t *vp, int flags)
   2028 {
   2029 	int error, i, pflags;
   2030 #ifdef WAPBL
   2031 	struct mount *mp;
   2032 #endif
   2033 
   2034 	KASSERT(vp->v_type == VBLK);
   2035 	KASSERT(spec_node_getmountedfs(vp) != NULL);
   2036 
   2037 	/*
   2038 	 * Flush all dirty data associated with the vnode.
   2039 	 */
   2040 	pflags = PGO_ALLPAGES | PGO_CLEANIT;
   2041 	if ((flags & FSYNC_WAIT) != 0)
   2042 		pflags |= PGO_SYNCIO;
   2043 	mutex_enter(vp->v_interlock);
   2044 	error = VOP_PUTPAGES(vp, 0, 0, pflags);
   2045 	if (error)
   2046 		return error;
   2047 
   2048 #ifdef WAPBL
   2049 	mp = spec_node_getmountedfs(vp);
   2050 	if (mp && mp->mnt_wapbl) {
   2051 		/*
   2052 		 * Don't bother writing out metadata if the syncer is
   2053 		 * making the request.  We will let the sync vnode
   2054 		 * write it out in a single burst through a call to
   2055 		 * VFS_SYNC().
   2056 		 */
   2057 		if ((flags & (FSYNC_DATAONLY | FSYNC_LAZY | FSYNC_NOLOG)) != 0)
   2058 			return 0;
   2059 
   2060 		/*
   2061 		 * Don't flush the log if the vnode being flushed
   2062 		 * contains no dirty buffers that could be in the log.
   2063 		 */
   2064 		if (!LIST_EMPTY(&vp->v_dirtyblkhd)) {
   2065 			error = wapbl_flush(mp->mnt_wapbl, 0);
   2066 			if (error)
   2067 				return error;
   2068 		}
   2069 
   2070 		if ((flags & FSYNC_WAIT) != 0) {
   2071 			mutex_enter(vp->v_interlock);
   2072 			while (vp->v_numoutput)
   2073 				cv_wait(&vp->v_cv, vp->v_interlock);
   2074 			mutex_exit(vp->v_interlock);
   2075 		}
   2076 
   2077 		return 0;
   2078 	}
   2079 #endif /* WAPBL */
   2080 
   2081 	error = vflushbuf(vp, flags);
   2082 	if (error == 0 && (flags & FSYNC_CACHE) != 0) {
   2083 		i = 1;
   2084 		(void)VOP_IOCTL(vp, DIOCCACHESYNC, &i, FWRITE,
   2085 		    kauth_cred_get());
   2086 	}
   2087 
   2088 	return error;
   2089 }
   2090