xref: /freebsd/sys/ufs/ffs/ffs_vfsops.c (revision f6c0136c7fb87ab8277221a306291e386fe944fb)
1 /*-
2  * Copyright (c) 1989, 1991, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	@(#)ffs_vfsops.c	8.31 (Berkeley) 5/20/95
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #include "opt_mac.h"
36 #include "opt_quota.h"
37 #include "opt_ufs.h"
38 #include "opt_ffs.h"
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/namei.h>
43 #include <sys/priv.h>
44 #include <sys/proc.h>
45 #include <sys/kernel.h>
46 #include <sys/vnode.h>
47 #include <sys/mount.h>
48 #include <sys/bio.h>
49 #include <sys/buf.h>
50 #include <sys/conf.h>
51 #include <sys/fcntl.h>
52 #include <sys/malloc.h>
53 #include <sys/mutex.h>
54 
55 #include <security/mac/mac_framework.h>
56 
57 #include <ufs/ufs/extattr.h>
58 #include <ufs/ufs/gjournal.h>
59 #include <ufs/ufs/quota.h>
60 #include <ufs/ufs/ufsmount.h>
61 #include <ufs/ufs/inode.h>
62 #include <ufs/ufs/ufs_extern.h>
63 
64 #include <ufs/ffs/fs.h>
65 #include <ufs/ffs/ffs_extern.h>
66 
67 #include <vm/vm.h>
68 #include <vm/uma.h>
69 #include <vm/vm_page.h>
70 
71 #include <geom/geom.h>
72 #include <geom/geom_vfs.h>
73 
74 static uma_zone_t uma_inode, uma_ufs1, uma_ufs2;
75 
76 static int	ffs_reload(struct mount *, struct thread *);
77 static int	ffs_mountfs(struct vnode *, struct mount *, struct thread *);
78 static void	ffs_oldfscompat_read(struct fs *, struct ufsmount *,
79 		    ufs2_daddr_t);
80 static void	ffs_oldfscompat_write(struct fs *, struct ufsmount *);
81 static void	ffs_ifree(struct ufsmount *ump, struct inode *ip);
82 static vfs_init_t ffs_init;
83 static vfs_uninit_t ffs_uninit;
84 static vfs_extattrctl_t ffs_extattrctl;
85 static vfs_cmount_t ffs_cmount;
86 static vfs_unmount_t ffs_unmount;
87 static vfs_mount_t ffs_mount;
88 static vfs_statfs_t ffs_statfs;
89 static vfs_fhtovp_t ffs_fhtovp;
90 static vfs_sync_t ffs_sync;
91 
92 static struct vfsops ufs_vfsops = {
93 	.vfs_extattrctl =	ffs_extattrctl,
94 	.vfs_fhtovp =		ffs_fhtovp,
95 	.vfs_init =		ffs_init,
96 	.vfs_mount =		ffs_mount,
97 	.vfs_cmount =		ffs_cmount,
98 	.vfs_quotactl =		ufs_quotactl,
99 	.vfs_root =		ufs_root,
100 	.vfs_statfs =		ffs_statfs,
101 	.vfs_sync =		ffs_sync,
102 	.vfs_uninit =		ffs_uninit,
103 	.vfs_unmount =		ffs_unmount,
104 	.vfs_vget =		ffs_vget,
105 };
106 
107 VFS_SET(ufs_vfsops, ufs, 0);
108 MODULE_VERSION(ufs, 1);
109 
110 static b_strategy_t ffs_geom_strategy;
111 static b_write_t ffs_bufwrite;
112 
113 static struct buf_ops ffs_ops = {
114 	.bop_name =	"FFS",
115 	.bop_write =	ffs_bufwrite,
116 	.bop_strategy =	ffs_geom_strategy,
117 	.bop_sync =	bufsync,
118 #ifdef NO_FFS_SNAPSHOT
119 	.bop_bdflush =	bufbdflush,
120 #else
121 	.bop_bdflush =	ffs_bdflush,
122 #endif
123 };
124 
125 static const char *ffs_opts[] = { "acls", "async", "atime", "clusterr",
126     "clusterw", "exec", "export", "force", "from", "multilabel",
127     "snapshot", "suid", "suiddir", "symfollow", "sync",
128     "union", NULL };
129 
130 static int
131 ffs_mount(struct mount *mp, struct thread *td)
132 {
133 	struct vnode *devvp;
134 	struct ufsmount *ump = 0;
135 	struct fs *fs;
136 	int error, flags;
137 	u_int mntorflags, mntandnotflags;
138 	mode_t accessmode;
139 	struct nameidata ndp;
140 	char *fspec;
141 
142 	if (vfs_filteropt(mp->mnt_optnew, ffs_opts))
143 		return (EINVAL);
144 	if (uma_inode == NULL) {
145 		uma_inode = uma_zcreate("FFS inode",
146 		    sizeof(struct inode), NULL, NULL, NULL, NULL,
147 		    UMA_ALIGN_PTR, 0);
148 		uma_ufs1 = uma_zcreate("FFS1 dinode",
149 		    sizeof(struct ufs1_dinode), NULL, NULL, NULL, NULL,
150 		    UMA_ALIGN_PTR, 0);
151 		uma_ufs2 = uma_zcreate("FFS2 dinode",
152 		    sizeof(struct ufs2_dinode), NULL, NULL, NULL, NULL,
153 		    UMA_ALIGN_PTR, 0);
154 	}
155 
156 	fspec = vfs_getopts(mp->mnt_optnew, "from", &error);
157 	if (error)
158 		return (error);
159 
160 	mntorflags = 0;
161 	mntandnotflags = 0;
162 	if (vfs_getopt(mp->mnt_optnew, "acls", NULL, NULL) == 0)
163 		mntorflags |= MNT_ACLS;
164 
165 	if (vfs_getopt(mp->mnt_optnew, "async", NULL, NULL) == 0)
166 		mntorflags |= MNT_ASYNC;
167 
168 	if (vfs_getopt(mp->mnt_optnew, "force", NULL, NULL) == 0)
169 		mntorflags |= MNT_FORCE;
170 
171 	if (vfs_getopt(mp->mnt_optnew, "multilabel", NULL, NULL) == 0)
172 		mntorflags |= MNT_MULTILABEL;
173 
174 	if (vfs_getopt(mp->mnt_optnew, "noasync", NULL, NULL) == 0)
175 		mntandnotflags |= MNT_ASYNC;
176 
177 	if (vfs_getopt(mp->mnt_optnew, "noatime", NULL, NULL) == 0)
178 		mntorflags |= MNT_NOATIME;
179 
180 	if (vfs_getopt(mp->mnt_optnew, "noclusterr", NULL, NULL) == 0)
181 		mntorflags |= MNT_NOCLUSTERR;
182 
183 	if (vfs_getopt(mp->mnt_optnew, "noclusterw", NULL, NULL) == 0)
184 		mntorflags |= MNT_NOCLUSTERW;
185 
186 	if (vfs_getopt(mp->mnt_optnew, "snapshot", NULL, NULL) == 0)
187 		mntorflags |= MNT_SNAPSHOT;
188 
189 	MNT_ILOCK(mp);
190 	mp->mnt_flag = (mp->mnt_flag | mntorflags) & ~mntandnotflags;
191 	MNT_IUNLOCK(mp);
192 	/*
193 	 * If updating, check whether changing from read-only to
194 	 * read/write; if there is no device name, that's all we do.
195 	 */
196 	if (mp->mnt_flag & MNT_UPDATE) {
197 		ump = VFSTOUFS(mp);
198 		fs = ump->um_fs;
199 		devvp = ump->um_devvp;
200 		if (fs->fs_ronly == 0 &&
201 		    vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0)) {
202 			if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0)
203 				return (error);
204 			/*
205 			 * Flush any dirty data.
206 			 */
207 			if ((error = ffs_sync(mp, MNT_WAIT, td)) != 0) {
208 				vn_finished_write(mp);
209 				return (error);
210 			}
211 			/*
212 			 * Check for and optionally get rid of files open
213 			 * for writing.
214 			 */
215 			flags = WRITECLOSE;
216 			if (mp->mnt_flag & MNT_FORCE)
217 				flags |= FORCECLOSE;
218 			if (mp->mnt_flag & MNT_SOFTDEP) {
219 				error = softdep_flushfiles(mp, flags, td);
220 			} else {
221 				error = ffs_flushfiles(mp, flags, td);
222 			}
223 			if (error) {
224 				vn_finished_write(mp);
225 				return (error);
226 			}
227 			if (fs->fs_pendingblocks != 0 ||
228 			    fs->fs_pendinginodes != 0) {
229 				printf("%s: %s: blocks %jd files %d\n",
230 				    fs->fs_fsmnt, "update error",
231 				    (intmax_t)fs->fs_pendingblocks,
232 				    fs->fs_pendinginodes);
233 				fs->fs_pendingblocks = 0;
234 				fs->fs_pendinginodes = 0;
235 			}
236 			if ((fs->fs_flags & (FS_UNCLEAN | FS_NEEDSFSCK)) == 0)
237 				fs->fs_clean = 1;
238 			if ((error = ffs_sbupdate(ump, MNT_WAIT, 0)) != 0) {
239 				fs->fs_ronly = 0;
240 				fs->fs_clean = 0;
241 				vn_finished_write(mp);
242 				return (error);
243 			}
244 			vn_finished_write(mp);
245 			DROP_GIANT();
246 			g_topology_lock();
247 			g_access(ump->um_cp, 0, -1, 0);
248 			g_topology_unlock();
249 			PICKUP_GIANT();
250 			fs->fs_ronly = 1;
251 			MNT_ILOCK(mp);
252 			mp->mnt_flag |= MNT_RDONLY;
253 			MNT_IUNLOCK(mp);
254 		}
255 		if ((mp->mnt_flag & MNT_RELOAD) &&
256 		    (error = ffs_reload(mp, td)) != 0)
257 			return (error);
258 		if (fs->fs_ronly &&
259 		    !vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0)) {
260 			/*
261 			 * If upgrade to read-write by non-root, then verify
262 			 * that user has necessary permissions on the device.
263 			 */
264 			vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
265 			error = VOP_ACCESS(devvp, VREAD | VWRITE,
266 			    td->td_ucred, td);
267 			if (error)
268 				error = priv_check(td, PRIV_VFS_MOUNT_PERM);
269 			if (error) {
270 				VOP_UNLOCK(devvp, 0, td);
271 				return (error);
272 			}
273 			VOP_UNLOCK(devvp, 0, td);
274 			fs->fs_flags &= ~FS_UNCLEAN;
275 			if (fs->fs_clean == 0) {
276 				fs->fs_flags |= FS_UNCLEAN;
277 				if ((mp->mnt_flag & MNT_FORCE) ||
278 				    ((fs->fs_flags & FS_NEEDSFSCK) == 0 &&
279 				     (fs->fs_flags & FS_DOSOFTDEP))) {
280 					printf("WARNING: %s was not %s\n",
281 					   fs->fs_fsmnt, "properly dismounted");
282 				} else {
283 					printf(
284 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
285 					    fs->fs_fsmnt);
286 					return (EPERM);
287 				}
288 			}
289 			DROP_GIANT();
290 			g_topology_lock();
291 			/*
292 			 * If we're the root device, we may not have an E count
293 			 * yet, get it now.
294 			 */
295 			if (ump->um_cp->ace == 0)
296 				error = g_access(ump->um_cp, 0, 1, 1);
297 			else
298 				error = g_access(ump->um_cp, 0, 1, 0);
299 			g_topology_unlock();
300 			PICKUP_GIANT();
301 			if (error)
302 				return (error);
303 			if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0)
304 				return (error);
305 			fs->fs_ronly = 0;
306 			MNT_ILOCK(mp);
307 			mp->mnt_flag &= ~MNT_RDONLY;
308 			MNT_IUNLOCK(mp);
309 			fs->fs_clean = 0;
310 			if ((error = ffs_sbupdate(ump, MNT_WAIT, 0)) != 0) {
311 				vn_finished_write(mp);
312 				return (error);
313 			}
314 			/* check to see if we need to start softdep */
315 			if ((fs->fs_flags & FS_DOSOFTDEP) &&
316 			    (error = softdep_mount(devvp, mp, fs, td->td_ucred))){
317 				vn_finished_write(mp);
318 				return (error);
319 			}
320 			if (fs->fs_snapinum[0] != 0)
321 				ffs_snapshot_mount(mp);
322 			vn_finished_write(mp);
323 		}
324 		/*
325 		 * Soft updates is incompatible with "async",
326 		 * so if we are doing softupdates stop the user
327 		 * from setting the async flag in an update.
328 		 * Softdep_mount() clears it in an initial mount
329 		 * or ro->rw remount.
330 		 */
331 		if (mp->mnt_flag & MNT_SOFTDEP) {
332 			/* XXX: Reset too late ? */
333 			MNT_ILOCK(mp);
334 			mp->mnt_flag &= ~MNT_ASYNC;
335 			MNT_IUNLOCK(mp);
336 		}
337 		/*
338 		 * Keep MNT_ACLS flag if it is stored in superblock.
339 		 */
340 		if ((fs->fs_flags & FS_ACLS) != 0) {
341 			/* XXX: Set too late ? */
342 			MNT_ILOCK(mp);
343 			mp->mnt_flag |= MNT_ACLS;
344 			MNT_IUNLOCK(mp);
345 		}
346 
347 		/*
348 		 * If this is a snapshot request, take the snapshot.
349 		 */
350 		if (mp->mnt_flag & MNT_SNAPSHOT)
351 			return (ffs_snapshot(mp, fspec));
352 	}
353 
354 	/*
355 	 * Not an update, or updating the name: look up the name
356 	 * and verify that it refers to a sensible disk device.
357 	 */
358 	NDINIT(&ndp, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, fspec, td);
359 	if ((error = namei(&ndp)) != 0)
360 		return (error);
361 	NDFREE(&ndp, NDF_ONLY_PNBUF);
362 	devvp = ndp.ni_vp;
363 	if (!vn_isdisk(devvp, &error)) {
364 		vput(devvp);
365 		return (error);
366 	}
367 
368 	/*
369 	 * If mount by non-root, then verify that user has necessary
370 	 * permissions on the device.
371 	 */
372 	accessmode = VREAD;
373 	if ((mp->mnt_flag & MNT_RDONLY) == 0)
374 		accessmode |= VWRITE;
375 	error = VOP_ACCESS(devvp, accessmode, td->td_ucred, td);
376 	if (error)
377 		error = priv_check(td, PRIV_VFS_MOUNT_PERM);
378 	if (error) {
379 		vput(devvp);
380 		return (error);
381 	}
382 
383 	if (mp->mnt_flag & MNT_UPDATE) {
384 		/*
385 		 * Update only
386 		 *
387 		 * If it's not the same vnode, or at least the same device
388 		 * then it's not correct.
389 		 */
390 
391 		if (devvp->v_rdev != ump->um_devvp->v_rdev)
392 			error = EINVAL;	/* needs translation */
393 		vput(devvp);
394 		if (error)
395 			return (error);
396 	} else {
397 		/*
398 		 * New mount
399 		 *
400 		 * We need the name for the mount point (also used for
401 		 * "last mounted on") copied in. If an error occurs,
402 		 * the mount point is discarded by the upper level code.
403 		 * Note that vfs_mount() populates f_mntonname for us.
404 		 */
405 		if ((error = ffs_mountfs(devvp, mp, td)) != 0) {
406 			vrele(devvp);
407 			return (error);
408 		}
409 	}
410 	vfs_mountedfrom(mp, fspec);
411 	return (0);
412 }
413 
414 /*
415  * Compatibility with old mount system call.
416  */
417 
418 static int
419 ffs_cmount(struct mntarg *ma, void *data, int flags, struct thread *td)
420 {
421 	struct ufs_args args;
422 	int error;
423 
424 	if (data == NULL)
425 		return (EINVAL);
426 	error = copyin(data, &args, sizeof args);
427 	if (error)
428 		return (error);
429 
430 	ma = mount_argsu(ma, "from", args.fspec, MAXPATHLEN);
431 	ma = mount_arg(ma, "export", &args.export, sizeof args.export);
432 	error = kernel_mount(ma, flags);
433 
434 	return (error);
435 }
436 
437 /*
438  * Reload all incore data for a filesystem (used after running fsck on
439  * the root filesystem and finding things to fix). The filesystem must
440  * be mounted read-only.
441  *
442  * Things to do to update the mount:
443  *	1) invalidate all cached meta-data.
444  *	2) re-read superblock from disk.
445  *	3) re-read summary information from disk.
446  *	4) invalidate all inactive vnodes.
447  *	5) invalidate all cached file data.
448  *	6) re-read inode data for all active vnodes.
449  */
450 static int
451 ffs_reload(struct mount *mp, struct thread *td)
452 {
453 	struct vnode *vp, *mvp, *devvp;
454 	struct inode *ip;
455 	void *space;
456 	struct buf *bp;
457 	struct fs *fs, *newfs;
458 	struct ufsmount *ump;
459 	ufs2_daddr_t sblockloc;
460 	int i, blks, size, error;
461 	int32_t *lp;
462 
463 	if ((mp->mnt_flag & MNT_RDONLY) == 0)
464 		return (EINVAL);
465 	ump = VFSTOUFS(mp);
466 	/*
467 	 * Step 1: invalidate all cached meta-data.
468 	 */
469 	devvp = VFSTOUFS(mp)->um_devvp;
470 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
471 	if (vinvalbuf(devvp, 0, td, 0, 0) != 0)
472 		panic("ffs_reload: dirty1");
473 	VOP_UNLOCK(devvp, 0, td);
474 
475 	/*
476 	 * Step 2: re-read superblock from disk.
477 	 */
478 	fs = VFSTOUFS(mp)->um_fs;
479 	if ((error = bread(devvp, btodb(fs->fs_sblockloc), fs->fs_sbsize,
480 	    NOCRED, &bp)) != 0)
481 		return (error);
482 	newfs = (struct fs *)bp->b_data;
483 	if ((newfs->fs_magic != FS_UFS1_MAGIC &&
484 	     newfs->fs_magic != FS_UFS2_MAGIC) ||
485 	    newfs->fs_bsize > MAXBSIZE ||
486 	    newfs->fs_bsize < sizeof(struct fs)) {
487 			brelse(bp);
488 			return (EIO);		/* XXX needs translation */
489 	}
490 	/*
491 	 * Copy pointer fields back into superblock before copying in	XXX
492 	 * new superblock. These should really be in the ufsmount.	XXX
493 	 * Note that important parameters (eg fs_ncg) are unchanged.
494 	 */
495 	newfs->fs_csp = fs->fs_csp;
496 	newfs->fs_maxcluster = fs->fs_maxcluster;
497 	newfs->fs_contigdirs = fs->fs_contigdirs;
498 	newfs->fs_active = fs->fs_active;
499 	/* The file system is still read-only. */
500 	newfs->fs_ronly = 1;
501 	sblockloc = fs->fs_sblockloc;
502 	bcopy(newfs, fs, (u_int)fs->fs_sbsize);
503 	brelse(bp);
504 	mp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
505 	ffs_oldfscompat_read(fs, VFSTOUFS(mp), sblockloc);
506 	UFS_LOCK(ump);
507 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
508 		printf("%s: reload pending error: blocks %jd files %d\n",
509 		    fs->fs_fsmnt, (intmax_t)fs->fs_pendingblocks,
510 		    fs->fs_pendinginodes);
511 		fs->fs_pendingblocks = 0;
512 		fs->fs_pendinginodes = 0;
513 	}
514 	UFS_UNLOCK(ump);
515 
516 	/*
517 	 * Step 3: re-read summary information from disk.
518 	 */
519 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
520 	space = fs->fs_csp;
521 	for (i = 0; i < blks; i += fs->fs_frag) {
522 		size = fs->fs_bsize;
523 		if (i + fs->fs_frag > blks)
524 			size = (blks - i) * fs->fs_fsize;
525 		error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
526 		    NOCRED, &bp);
527 		if (error)
528 			return (error);
529 		bcopy(bp->b_data, space, (u_int)size);
530 		space = (char *)space + size;
531 		brelse(bp);
532 	}
533 	/*
534 	 * We no longer know anything about clusters per cylinder group.
535 	 */
536 	if (fs->fs_contigsumsize > 0) {
537 		lp = fs->fs_maxcluster;
538 		for (i = 0; i < fs->fs_ncg; i++)
539 			*lp++ = fs->fs_contigsumsize;
540 	}
541 
542 loop:
543 	MNT_ILOCK(mp);
544 	MNT_VNODE_FOREACH(vp, mp, mvp) {
545 		VI_LOCK(vp);
546 		if (vp->v_iflag & VI_DOOMED) {
547 			VI_UNLOCK(vp);
548 			continue;
549 		}
550 		MNT_IUNLOCK(mp);
551 		/*
552 		 * Step 4: invalidate all cached file data.
553 		 */
554 		if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td)) {
555 			MNT_VNODE_FOREACH_ABORT(mp, mvp);
556 			goto loop;
557 		}
558 		if (vinvalbuf(vp, 0, td, 0, 0))
559 			panic("ffs_reload: dirty2");
560 		/*
561 		 * Step 5: re-read inode data for all active vnodes.
562 		 */
563 		ip = VTOI(vp);
564 		error =
565 		    bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
566 		    (int)fs->fs_bsize, NOCRED, &bp);
567 		if (error) {
568 			VOP_UNLOCK(vp, 0, td);
569 			vrele(vp);
570 			MNT_VNODE_FOREACH_ABORT(mp, mvp);
571 			return (error);
572 		}
573 		ffs_load_inode(bp, ip, fs, ip->i_number);
574 		ip->i_effnlink = ip->i_nlink;
575 		brelse(bp);
576 		VOP_UNLOCK(vp, 0, td);
577 		vrele(vp);
578 		MNT_ILOCK(mp);
579 	}
580 	MNT_IUNLOCK(mp);
581 	return (0);
582 }
583 
584 /*
585  * Possible superblock locations ordered from most to least likely.
586  */
587 static int sblock_try[] = SBLOCKSEARCH;
588 
589 /*
590  * Common code for mount and mountroot
591  */
592 static int
593 ffs_mountfs(devvp, mp, td)
594 	struct vnode *devvp;
595 	struct mount *mp;
596 	struct thread *td;
597 {
598 	struct ufsmount *ump;
599 	struct buf *bp;
600 	struct fs *fs;
601 	struct cdev *dev;
602 	void *space;
603 	ufs2_daddr_t sblockloc;
604 	int error, i, blks, size, ronly;
605 	int32_t *lp;
606 	struct ucred *cred;
607 	struct g_consumer *cp;
608 	struct mount *nmp;
609 
610 	dev = devvp->v_rdev;
611 	cred = td ? td->td_ucred : NOCRED;
612 
613 	ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
614 	DROP_GIANT();
615 	g_topology_lock();
616 	error = g_vfs_open(devvp, &cp, "ffs", ronly ? 0 : 1);
617 
618 	/*
619 	 * If we are a root mount, drop the E flag so fsck can do its magic.
620 	 * We will pick it up again when we remount R/W.
621 	 */
622 	if (error == 0 && ronly && (mp->mnt_flag & MNT_ROOTFS))
623 		error = g_access(cp, 0, 0, -1);
624 	g_topology_unlock();
625 	PICKUP_GIANT();
626 	VOP_UNLOCK(devvp, 0, td);
627 	if (error)
628 		return (error);
629 	if (devvp->v_rdev->si_iosize_max != 0)
630 		mp->mnt_iosize_max = devvp->v_rdev->si_iosize_max;
631 	if (mp->mnt_iosize_max > MAXPHYS)
632 		mp->mnt_iosize_max = MAXPHYS;
633 
634 	devvp->v_bufobj.bo_private = cp;
635 	devvp->v_bufobj.bo_ops = &ffs_ops;
636 
637 	bp = NULL;
638 	ump = NULL;
639 	fs = NULL;
640 	sblockloc = 0;
641 	/*
642 	 * Try reading the superblock in each of its possible locations.
643 	 */
644 	for (i = 0; sblock_try[i] != -1; i++) {
645 		if ((SBLOCKSIZE % cp->provider->sectorsize) != 0) {
646 			error = EINVAL;
647 			vfs_mount_error(mp,
648 			    "Invalid sectorsize %d for superblock size %d",
649 			    cp->provider->sectorsize, SBLOCKSIZE);
650 			goto out;
651 		}
652 		if ((error = bread(devvp, btodb(sblock_try[i]), SBLOCKSIZE,
653 		    cred, &bp)) != 0)
654 			goto out;
655 		fs = (struct fs *)bp->b_data;
656 		sblockloc = sblock_try[i];
657 		if ((fs->fs_magic == FS_UFS1_MAGIC ||
658 		     (fs->fs_magic == FS_UFS2_MAGIC &&
659 		      (fs->fs_sblockloc == sblockloc ||
660 		       (fs->fs_old_flags & FS_FLAGS_UPDATED) == 0))) &&
661 		    fs->fs_bsize <= MAXBSIZE &&
662 		    fs->fs_bsize >= sizeof(struct fs))
663 			break;
664 		brelse(bp);
665 		bp = NULL;
666 	}
667 	if (sblock_try[i] == -1) {
668 		error = EINVAL;		/* XXX needs translation */
669 		goto out;
670 	}
671 	fs->fs_fmod = 0;
672 	fs->fs_flags &= ~FS_INDEXDIRS;	/* no support for directory indicies */
673 	fs->fs_flags &= ~FS_UNCLEAN;
674 	if (fs->fs_clean == 0) {
675 		fs->fs_flags |= FS_UNCLEAN;
676 		if (ronly || (mp->mnt_flag & MNT_FORCE) ||
677 		    ((fs->fs_flags & FS_NEEDSFSCK) == 0 &&
678 		     (fs->fs_flags & FS_DOSOFTDEP))) {
679 			printf(
680 "WARNING: %s was not properly dismounted\n",
681 			    fs->fs_fsmnt);
682 		} else {
683 			printf(
684 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
685 			    fs->fs_fsmnt);
686 			error = EPERM;
687 			goto out;
688 		}
689 		if ((fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) &&
690 		    (mp->mnt_flag & MNT_FORCE)) {
691 			printf("%s: lost blocks %jd files %d\n", fs->fs_fsmnt,
692 			    (intmax_t)fs->fs_pendingblocks,
693 			    fs->fs_pendinginodes);
694 			fs->fs_pendingblocks = 0;
695 			fs->fs_pendinginodes = 0;
696 		}
697 	}
698 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
699 		printf("%s: mount pending error: blocks %jd files %d\n",
700 		    fs->fs_fsmnt, (intmax_t)fs->fs_pendingblocks,
701 		    fs->fs_pendinginodes);
702 		fs->fs_pendingblocks = 0;
703 		fs->fs_pendinginodes = 0;
704 	}
705 	if ((fs->fs_flags & FS_GJOURNAL) != 0) {
706 #ifdef UFS_GJOURNAL
707 		/*
708 		 * Get journal provider name.
709 		 */
710 		size = 1024;
711 		mp->mnt_gjprovider = malloc(size, M_UFSMNT, M_WAITOK);
712 		if (g_io_getattr("GJOURNAL::provider", cp, &size,
713 		    mp->mnt_gjprovider) == 0) {
714 			mp->mnt_gjprovider = realloc(mp->mnt_gjprovider, size,
715 			    M_UFSMNT, M_WAITOK);
716 			MNT_ILOCK(mp);
717 			mp->mnt_flag |= MNT_GJOURNAL;
718 			MNT_IUNLOCK(mp);
719 		} else {
720 			printf(
721 "WARNING: %s: GJOURNAL flag on fs but no gjournal provider below\n",
722 			    mp->mnt_stat.f_mntonname);
723 			free(mp->mnt_gjprovider, M_UFSMNT);
724 			mp->mnt_gjprovider = NULL;
725 		}
726 #else
727 		printf(
728 "WARNING: %s: GJOURNAL flag on fs but no UFS_GJOURNAL support\n",
729 		    mp->mnt_stat.f_mntonname);
730 #endif
731 	} else {
732 		mp->mnt_gjprovider = NULL;
733 	}
734 	ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK | M_ZERO);
735 	ump->um_cp = cp;
736 	ump->um_bo = &devvp->v_bufobj;
737 	ump->um_fs = malloc((u_long)fs->fs_sbsize, M_UFSMNT, M_WAITOK);
738 	if (fs->fs_magic == FS_UFS1_MAGIC) {
739 		ump->um_fstype = UFS1;
740 		ump->um_balloc = ffs_balloc_ufs1;
741 	} else {
742 		ump->um_fstype = UFS2;
743 		ump->um_balloc = ffs_balloc_ufs2;
744 	}
745 	ump->um_blkatoff = ffs_blkatoff;
746 	ump->um_truncate = ffs_truncate;
747 	ump->um_update = ffs_update;
748 	ump->um_valloc = ffs_valloc;
749 	ump->um_vfree = ffs_vfree;
750 	ump->um_ifree = ffs_ifree;
751 	mtx_init(UFS_MTX(ump), "FFS", "FFS Lock", MTX_DEF);
752 	bcopy(bp->b_data, ump->um_fs, (u_int)fs->fs_sbsize);
753 	if (fs->fs_sbsize < SBLOCKSIZE)
754 		bp->b_flags |= B_INVAL | B_NOCACHE;
755 	brelse(bp);
756 	bp = NULL;
757 	fs = ump->um_fs;
758 	ffs_oldfscompat_read(fs, ump, sblockloc);
759 	fs->fs_ronly = ronly;
760 	size = fs->fs_cssize;
761 	blks = howmany(size, fs->fs_fsize);
762 	if (fs->fs_contigsumsize > 0)
763 		size += fs->fs_ncg * sizeof(int32_t);
764 	size += fs->fs_ncg * sizeof(u_int8_t);
765 	space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
766 	fs->fs_csp = space;
767 	for (i = 0; i < blks; i += fs->fs_frag) {
768 		size = fs->fs_bsize;
769 		if (i + fs->fs_frag > blks)
770 			size = (blks - i) * fs->fs_fsize;
771 		if ((error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
772 		    cred, &bp)) != 0) {
773 			free(fs->fs_csp, M_UFSMNT);
774 			goto out;
775 		}
776 		bcopy(bp->b_data, space, (u_int)size);
777 		space = (char *)space + size;
778 		brelse(bp);
779 		bp = NULL;
780 	}
781 	if (fs->fs_contigsumsize > 0) {
782 		fs->fs_maxcluster = lp = space;
783 		for (i = 0; i < fs->fs_ncg; i++)
784 			*lp++ = fs->fs_contigsumsize;
785 		space = lp;
786 	}
787 	size = fs->fs_ncg * sizeof(u_int8_t);
788 	fs->fs_contigdirs = (u_int8_t *)space;
789 	bzero(fs->fs_contigdirs, size);
790 	fs->fs_active = NULL;
791 	mp->mnt_data = (qaddr_t)ump;
792 	mp->mnt_stat.f_fsid.val[0] = fs->fs_id[0];
793 	mp->mnt_stat.f_fsid.val[1] = fs->fs_id[1];
794 	nmp = NULL;
795 	if (fs->fs_id[0] == 0 || fs->fs_id[1] == 0 ||
796 	    (nmp = vfs_getvfs(&mp->mnt_stat.f_fsid))) {
797 		if (nmp)
798 			vfs_rel(nmp);
799 		vfs_getnewfsid(mp);
800 	}
801 	mp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
802 	MNT_ILOCK(mp);
803 	mp->mnt_flag |= MNT_LOCAL;
804 	MNT_IUNLOCK(mp);
805 	if ((fs->fs_flags & FS_MULTILABEL) != 0) {
806 #ifdef MAC
807 		MNT_ILOCK(mp);
808 		mp->mnt_flag |= MNT_MULTILABEL;
809 		MNT_IUNLOCK(mp);
810 #else
811 		printf(
812 "WARNING: %s: multilabel flag on fs but no MAC support\n",
813 		    mp->mnt_stat.f_mntonname);
814 #endif
815 	}
816 	if ((fs->fs_flags & FS_ACLS) != 0) {
817 #ifdef UFS_ACL
818 		MNT_ILOCK(mp);
819 		mp->mnt_flag |= MNT_ACLS;
820 		MNT_IUNLOCK(mp);
821 #else
822 		printf(
823 "WARNING: %s: ACLs flag on fs but no ACLs support\n",
824 		    mp->mnt_stat.f_mntonname);
825 #endif
826 	}
827 	ump->um_mountp = mp;
828 	ump->um_dev = dev;
829 	ump->um_devvp = devvp;
830 	ump->um_nindir = fs->fs_nindir;
831 	ump->um_bptrtodb = fs->fs_fsbtodb;
832 	ump->um_seqinc = fs->fs_frag;
833 	for (i = 0; i < MAXQUOTAS; i++)
834 		ump->um_quotas[i] = NULLVP;
835 #ifdef UFS_EXTATTR
836 	ufs_extattr_uepm_init(&ump->um_extattr);
837 #endif
838 	/*
839 	 * Set FS local "last mounted on" information (NULL pad)
840 	 */
841 	bzero(fs->fs_fsmnt, MAXMNTLEN);
842 	strlcpy(fs->fs_fsmnt, mp->mnt_stat.f_mntonname, MAXMNTLEN);
843 
844 	if( mp->mnt_flag & MNT_ROOTFS) {
845 		/*
846 		 * Root mount; update timestamp in mount structure.
847 		 * this will be used by the common root mount code
848 		 * to update the system clock.
849 		 */
850 		mp->mnt_time = fs->fs_time;
851 	}
852 
853 	if (ronly == 0) {
854 		if ((fs->fs_flags & FS_DOSOFTDEP) &&
855 		    (error = softdep_mount(devvp, mp, fs, cred)) != 0) {
856 			free(fs->fs_csp, M_UFSMNT);
857 			goto out;
858 		}
859 		if (fs->fs_snapinum[0] != 0)
860 			ffs_snapshot_mount(mp);
861 		fs->fs_fmod = 1;
862 		fs->fs_clean = 0;
863 		(void) ffs_sbupdate(ump, MNT_WAIT, 0);
864 	}
865 	/*
866 	 * Initialize filesystem stat information in mount struct.
867 	 */
868 #ifdef UFS_EXTATTR
869 #ifdef UFS_EXTATTR_AUTOSTART
870 	/*
871 	 *
872 	 * Auto-starting does the following:
873 	 *	- check for /.attribute in the fs, and extattr_start if so
874 	 *	- for each file in .attribute, enable that file with
875 	 * 	  an attribute of the same name.
876 	 * Not clear how to report errors -- probably eat them.
877 	 * This would all happen while the filesystem was busy/not
878 	 * available, so would effectively be "atomic".
879 	 */
880 	(void) ufs_extattr_autostart(mp, td);
881 #endif /* !UFS_EXTATTR_AUTOSTART */
882 #endif /* !UFS_EXTATTR */
883 #ifdef QUOTA
884 	/*
885 	 * Our bufobj must require giant for snapshots when quotas are
886 	 * enabled.
887 	 */
888 	BO_LOCK(&devvp->v_bufobj);
889 	devvp->v_bufobj.bo_flag |= BO_NEEDSGIANT;
890 	BO_UNLOCK(&devvp->v_bufobj);
891 #else
892 	MNT_ILOCK(mp);
893 	mp->mnt_kern_flag |= MNTK_MPSAFE;
894 	MNT_IUNLOCK(mp);
895 #endif
896 	return (0);
897 out:
898 	if (bp)
899 		brelse(bp);
900 	if (cp != NULL) {
901 		DROP_GIANT();
902 		g_topology_lock();
903 		g_vfs_close(cp, td);
904 		g_topology_unlock();
905 		PICKUP_GIANT();
906 	}
907 	if (ump) {
908 		mtx_destroy(UFS_MTX(ump));
909 		if (mp->mnt_gjprovider != NULL) {
910 			free(mp->mnt_gjprovider, M_UFSMNT);
911 			mp->mnt_gjprovider = NULL;
912 		}
913 		free(ump->um_fs, M_UFSMNT);
914 		free(ump, M_UFSMNT);
915 		mp->mnt_data = (qaddr_t)0;
916 	}
917 	return (error);
918 }
919 
920 #include <sys/sysctl.h>
921 static int bigcgs = 0;
922 SYSCTL_INT(_debug, OID_AUTO, bigcgs, CTLFLAG_RW, &bigcgs, 0, "");
923 
924 /*
925  * Sanity checks for loading old filesystem superblocks.
926  * See ffs_oldfscompat_write below for unwound actions.
927  *
928  * XXX - Parts get retired eventually.
929  * Unfortunately new bits get added.
930  */
931 static void
932 ffs_oldfscompat_read(fs, ump, sblockloc)
933 	struct fs *fs;
934 	struct ufsmount *ump;
935 	ufs2_daddr_t sblockloc;
936 {
937 	off_t maxfilesize;
938 
939 	/*
940 	 * If not yet done, update fs_flags location and value of fs_sblockloc.
941 	 */
942 	if ((fs->fs_old_flags & FS_FLAGS_UPDATED) == 0) {
943 		fs->fs_flags = fs->fs_old_flags;
944 		fs->fs_old_flags |= FS_FLAGS_UPDATED;
945 		fs->fs_sblockloc = sblockloc;
946 	}
947 	/*
948 	 * If not yet done, update UFS1 superblock with new wider fields.
949 	 */
950 	if (fs->fs_magic == FS_UFS1_MAGIC && fs->fs_maxbsize != fs->fs_bsize) {
951 		fs->fs_maxbsize = fs->fs_bsize;
952 		fs->fs_time = fs->fs_old_time;
953 		fs->fs_size = fs->fs_old_size;
954 		fs->fs_dsize = fs->fs_old_dsize;
955 		fs->fs_csaddr = fs->fs_old_csaddr;
956 		fs->fs_cstotal.cs_ndir = fs->fs_old_cstotal.cs_ndir;
957 		fs->fs_cstotal.cs_nbfree = fs->fs_old_cstotal.cs_nbfree;
958 		fs->fs_cstotal.cs_nifree = fs->fs_old_cstotal.cs_nifree;
959 		fs->fs_cstotal.cs_nffree = fs->fs_old_cstotal.cs_nffree;
960 	}
961 	if (fs->fs_magic == FS_UFS1_MAGIC &&
962 	    fs->fs_old_inodefmt < FS_44INODEFMT) {
963 		fs->fs_maxfilesize = ((uint64_t)1 << 31) - 1;
964 		fs->fs_qbmask = ~fs->fs_bmask;
965 		fs->fs_qfmask = ~fs->fs_fmask;
966 	}
967 	if (fs->fs_magic == FS_UFS1_MAGIC) {
968 		ump->um_savedmaxfilesize = fs->fs_maxfilesize;
969 		maxfilesize = (uint64_t)0x80000000 * fs->fs_bsize - 1;
970 		if (fs->fs_maxfilesize > maxfilesize)
971 			fs->fs_maxfilesize = maxfilesize;
972 	}
973 	/* Compatibility for old filesystems */
974 	if (fs->fs_avgfilesize <= 0)
975 		fs->fs_avgfilesize = AVFILESIZ;
976 	if (fs->fs_avgfpdir <= 0)
977 		fs->fs_avgfpdir = AFPDIR;
978 	if (bigcgs) {
979 		fs->fs_save_cgsize = fs->fs_cgsize;
980 		fs->fs_cgsize = fs->fs_bsize;
981 	}
982 }
983 
984 /*
985  * Unwinding superblock updates for old filesystems.
986  * See ffs_oldfscompat_read above for details.
987  *
988  * XXX - Parts get retired eventually.
989  * Unfortunately new bits get added.
990  */
991 static void
992 ffs_oldfscompat_write(fs, ump)
993 	struct fs *fs;
994 	struct ufsmount *ump;
995 {
996 
997 	/*
998 	 * Copy back UFS2 updated fields that UFS1 inspects.
999 	 */
1000 	if (fs->fs_magic == FS_UFS1_MAGIC) {
1001 		fs->fs_old_time = fs->fs_time;
1002 		fs->fs_old_cstotal.cs_ndir = fs->fs_cstotal.cs_ndir;
1003 		fs->fs_old_cstotal.cs_nbfree = fs->fs_cstotal.cs_nbfree;
1004 		fs->fs_old_cstotal.cs_nifree = fs->fs_cstotal.cs_nifree;
1005 		fs->fs_old_cstotal.cs_nffree = fs->fs_cstotal.cs_nffree;
1006 		fs->fs_maxfilesize = ump->um_savedmaxfilesize;
1007 	}
1008 	if (bigcgs) {
1009 		fs->fs_cgsize = fs->fs_save_cgsize;
1010 		fs->fs_save_cgsize = 0;
1011 	}
1012 }
1013 
1014 /*
1015  * unmount system call
1016  */
1017 static int
1018 ffs_unmount(mp, mntflags, td)
1019 	struct mount *mp;
1020 	int mntflags;
1021 	struct thread *td;
1022 {
1023 	struct ufsmount *ump = VFSTOUFS(mp);
1024 	struct fs *fs;
1025 	int error, flags;
1026 
1027 	flags = 0;
1028 	if (mntflags & MNT_FORCE) {
1029 		flags |= FORCECLOSE;
1030 	}
1031 #ifdef UFS_EXTATTR
1032 	if ((error = ufs_extattr_stop(mp, td))) {
1033 		if (error != EOPNOTSUPP)
1034 			printf("ffs_unmount: ufs_extattr_stop returned %d\n",
1035 			    error);
1036 	} else {
1037 		ufs_extattr_uepm_destroy(&ump->um_extattr);
1038 	}
1039 #endif
1040 	if (mp->mnt_flag & MNT_SOFTDEP) {
1041 		if ((error = softdep_flushfiles(mp, flags, td)) != 0)
1042 			return (error);
1043 	} else {
1044 		if ((error = ffs_flushfiles(mp, flags, td)) != 0)
1045 			return (error);
1046 	}
1047 	fs = ump->um_fs;
1048 	UFS_LOCK(ump);
1049 	if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
1050 		printf("%s: unmount pending error: blocks %jd files %d\n",
1051 		    fs->fs_fsmnt, (intmax_t)fs->fs_pendingblocks,
1052 		    fs->fs_pendinginodes);
1053 		fs->fs_pendingblocks = 0;
1054 		fs->fs_pendinginodes = 0;
1055 	}
1056 	UFS_UNLOCK(ump);
1057 	if (fs->fs_ronly == 0) {
1058 		fs->fs_clean = fs->fs_flags & (FS_UNCLEAN|FS_NEEDSFSCK) ? 0 : 1;
1059 		error = ffs_sbupdate(ump, MNT_WAIT, 0);
1060 		if (error) {
1061 			fs->fs_clean = 0;
1062 			return (error);
1063 		}
1064 	}
1065 	DROP_GIANT();
1066 	g_topology_lock();
1067 	g_vfs_close(ump->um_cp, td);
1068 	g_topology_unlock();
1069 	PICKUP_GIANT();
1070 	vrele(ump->um_devvp);
1071 	mtx_destroy(UFS_MTX(ump));
1072 	if (mp->mnt_gjprovider != NULL) {
1073 		free(mp->mnt_gjprovider, M_UFSMNT);
1074 		mp->mnt_gjprovider = NULL;
1075 	}
1076 	free(fs->fs_csp, M_UFSMNT);
1077 	free(fs, M_UFSMNT);
1078 	free(ump, M_UFSMNT);
1079 	mp->mnt_data = (qaddr_t)0;
1080 	MNT_ILOCK(mp);
1081 	mp->mnt_flag &= ~MNT_LOCAL;
1082 	MNT_IUNLOCK(mp);
1083 	return (error);
1084 }
1085 
1086 /*
1087  * Flush out all the files in a filesystem.
1088  */
1089 int
1090 ffs_flushfiles(mp, flags, td)
1091 	struct mount *mp;
1092 	int flags;
1093 	struct thread *td;
1094 {
1095 	struct ufsmount *ump;
1096 	int error;
1097 
1098 	ump = VFSTOUFS(mp);
1099 #ifdef QUOTA
1100 	if (mp->mnt_flag & MNT_QUOTA) {
1101 		int i;
1102 		error = vflush(mp, 0, SKIPSYSTEM|flags, td);
1103 		if (error)
1104 			return (error);
1105 		for (i = 0; i < MAXQUOTAS; i++) {
1106 			if (ump->um_quotas[i] == NULLVP)
1107 				continue;
1108 			quotaoff(td, mp, i);
1109 		}
1110 		/*
1111 		 * Here we fall through to vflush again to ensure
1112 		 * that we have gotten rid of all the system vnodes.
1113 		 */
1114 	}
1115 #endif
1116 	ASSERT_VOP_LOCKED(ump->um_devvp, "ffs_flushfiles");
1117 	if (ump->um_devvp->v_vflag & VV_COPYONWRITE) {
1118 		if ((error = vflush(mp, 0, SKIPSYSTEM | flags, td)) != 0)
1119 			return (error);
1120 		ffs_snapshot_unmount(mp);
1121 		flags |= FORCECLOSE;
1122 		/*
1123 		 * Here we fall through to vflush again to ensure
1124 		 * that we have gotten rid of all the system vnodes.
1125 		 */
1126 	}
1127         /*
1128 	 * Flush all the files.
1129 	 */
1130 	if ((error = vflush(mp, 0, flags, td)) != 0)
1131 		return (error);
1132 	/*
1133 	 * Flush filesystem metadata.
1134 	 */
1135 	vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY, td);
1136 	error = VOP_FSYNC(ump->um_devvp, MNT_WAIT, td);
1137 	VOP_UNLOCK(ump->um_devvp, 0, td);
1138 	return (error);
1139 }
1140 
1141 /*
1142  * Get filesystem statistics.
1143  */
1144 static int
1145 ffs_statfs(mp, sbp, td)
1146 	struct mount *mp;
1147 	struct statfs *sbp;
1148 	struct thread *td;
1149 {
1150 	struct ufsmount *ump;
1151 	struct fs *fs;
1152 
1153 	ump = VFSTOUFS(mp);
1154 	fs = ump->um_fs;
1155 	if (fs->fs_magic != FS_UFS1_MAGIC && fs->fs_magic != FS_UFS2_MAGIC)
1156 		panic("ffs_statfs");
1157 	sbp->f_version = STATFS_VERSION;
1158 	sbp->f_bsize = fs->fs_fsize;
1159 	sbp->f_iosize = fs->fs_bsize;
1160 	sbp->f_blocks = fs->fs_dsize;
1161 	UFS_LOCK(ump);
1162 	sbp->f_bfree = fs->fs_cstotal.cs_nbfree * fs->fs_frag +
1163 	    fs->fs_cstotal.cs_nffree + dbtofsb(fs, fs->fs_pendingblocks);
1164 	sbp->f_bavail = freespace(fs, fs->fs_minfree) +
1165 	    dbtofsb(fs, fs->fs_pendingblocks);
1166 	sbp->f_files =  fs->fs_ncg * fs->fs_ipg - ROOTINO;
1167 	sbp->f_ffree = fs->fs_cstotal.cs_nifree + fs->fs_pendinginodes;
1168 	UFS_UNLOCK(ump);
1169 	sbp->f_namemax = NAME_MAX;
1170 	return (0);
1171 }
1172 
1173 /*
1174  * Go through the disk queues to initiate sandbagged IO;
1175  * go through the inodes to write those that have been modified;
1176  * initiate the writing of the super block if it has been modified.
1177  *
1178  * Note: we are always called with the filesystem marked `MPBUSY'.
1179  */
1180 static int
1181 ffs_sync(mp, waitfor, td)
1182 	struct mount *mp;
1183 	int waitfor;
1184 	struct thread *td;
1185 {
1186 	struct vnode *mvp, *vp, *devvp;
1187 	struct inode *ip;
1188 	struct ufsmount *ump = VFSTOUFS(mp);
1189 	struct fs *fs;
1190 	int error, count, wait, lockreq, allerror = 0;
1191 	int suspend;
1192 	int suspended;
1193 	int secondary_writes;
1194 	int secondary_accwrites;
1195 	int softdep_deps;
1196 	int softdep_accdeps;
1197 	struct bufobj *bo;
1198 
1199 	fs = ump->um_fs;
1200 	if (fs->fs_fmod != 0 && fs->fs_ronly != 0) {		/* XXX */
1201 		printf("fs = %s\n", fs->fs_fsmnt);
1202 		panic("ffs_sync: rofs mod");
1203 	}
1204 	/*
1205 	 * Write back each (modified) inode.
1206 	 */
1207 	wait = 0;
1208 	suspend = 0;
1209 	suspended = 0;
1210 	lockreq = LK_EXCLUSIVE | LK_NOWAIT;
1211 	if (waitfor == MNT_SUSPEND) {
1212 		suspend = 1;
1213 		waitfor = MNT_WAIT;
1214 	}
1215 	if (waitfor == MNT_WAIT) {
1216 		wait = 1;
1217 		lockreq = LK_EXCLUSIVE;
1218 	}
1219 	lockreq |= LK_INTERLOCK | LK_SLEEPFAIL;
1220 	MNT_ILOCK(mp);
1221 loop:
1222 	/* Grab snapshot of secondary write counts */
1223 	secondary_writes = mp->mnt_secondary_writes;
1224 	secondary_accwrites = mp->mnt_secondary_accwrites;
1225 
1226 	/* Grab snapshot of softdep dependency counts */
1227 	MNT_IUNLOCK(mp);
1228 	softdep_get_depcounts(mp, &softdep_deps, &softdep_accdeps);
1229 	MNT_ILOCK(mp);
1230 
1231 	MNT_VNODE_FOREACH(vp, mp, mvp) {
1232 		/*
1233 		 * Depend on the mntvnode_slock to keep things stable enough
1234 		 * for a quick test.  Since there might be hundreds of
1235 		 * thousands of vnodes, we cannot afford even a subroutine
1236 		 * call unless there's a good chance that we have work to do.
1237 		 */
1238 		VI_LOCK(vp);
1239 		if (vp->v_iflag & VI_DOOMED) {
1240 			VI_UNLOCK(vp);
1241 			continue;
1242 		}
1243 		ip = VTOI(vp);
1244 		if (vp->v_type == VNON || ((ip->i_flag &
1245 		    (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
1246 		    vp->v_bufobj.bo_dirty.bv_cnt == 0)) {
1247 			VI_UNLOCK(vp);
1248 			continue;
1249 		}
1250 		MNT_IUNLOCK(mp);
1251 		if ((error = vget(vp, lockreq, td)) != 0) {
1252 			MNT_ILOCK(mp);
1253 			if (error == ENOENT || error == ENOLCK) {
1254 				MNT_VNODE_FOREACH_ABORT_ILOCKED(mp, mvp);
1255 				goto loop;
1256 			}
1257 			continue;
1258 		}
1259 		if ((error = ffs_syncvnode(vp, waitfor)) != 0)
1260 			allerror = error;
1261 		vput(vp);
1262 		MNT_ILOCK(mp);
1263 	}
1264 	MNT_IUNLOCK(mp);
1265 	/*
1266 	 * Force stale filesystem control information to be flushed.
1267 	 */
1268 	if (waitfor == MNT_WAIT) {
1269 		if ((error = softdep_flushworklist(ump->um_mountp, &count, td)))
1270 			allerror = error;
1271 		/* Flushed work items may create new vnodes to clean */
1272 		if (allerror == 0 && count) {
1273 			MNT_ILOCK(mp);
1274 			goto loop;
1275 		}
1276 	}
1277 #ifdef QUOTA
1278 	qsync(mp);
1279 #endif
1280 	devvp = ump->um_devvp;
1281 	VI_LOCK(devvp);
1282 	bo = &devvp->v_bufobj;
1283 	if (waitfor != MNT_LAZY &&
1284 	    (bo->bo_numoutput > 0 || bo->bo_dirty.bv_cnt > 0)) {
1285 		vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY | LK_INTERLOCK, td);
1286 		if ((error = VOP_FSYNC(devvp, waitfor, td)) != 0)
1287 			allerror = error;
1288 		VOP_UNLOCK(devvp, 0, td);
1289 		if (allerror == 0 && waitfor == MNT_WAIT) {
1290 			MNT_ILOCK(mp);
1291 			goto loop;
1292 		}
1293 	} else if (suspend != 0) {
1294 		if (softdep_check_suspend(mp,
1295 					  devvp,
1296 					  softdep_deps,
1297 					  softdep_accdeps,
1298 					  secondary_writes,
1299 					  secondary_accwrites) != 0)
1300 			goto loop;	/* More work needed */
1301 		mtx_assert(MNT_MTX(mp), MA_OWNED);
1302 		mp->mnt_kern_flag |= MNTK_SUSPEND2 | MNTK_SUSPENDED;
1303 		MNT_IUNLOCK(mp);
1304 		suspended = 1;
1305 	} else
1306 		VI_UNLOCK(devvp);
1307 	/*
1308 	 * Write back modified superblock.
1309 	 */
1310 	if (fs->fs_fmod != 0 &&
1311 	    (error = ffs_sbupdate(ump, waitfor, suspended)) != 0)
1312 		allerror = error;
1313 	return (allerror);
1314 }
1315 
1316 int
1317 ffs_vget(mp, ino, flags, vpp)
1318 	struct mount *mp;
1319 	ino_t ino;
1320 	int flags;
1321 	struct vnode **vpp;
1322 {
1323 	struct fs *fs;
1324 	struct inode *ip;
1325 	struct ufsmount *ump;
1326 	struct buf *bp;
1327 	struct vnode *vp;
1328 	struct cdev *dev;
1329 	int error;
1330 	struct thread *td;
1331 
1332 	error = vfs_hash_get(mp, ino, flags, curthread, vpp, NULL, NULL);
1333 	if (error || *vpp != NULL)
1334 		return (error);
1335 
1336 	/*
1337 	 * We must promote to an exclusive lock for vnode creation.  This
1338 	 * can happen if lookup is passed LOCKSHARED.
1339  	 */
1340 	if ((flags & LK_TYPE_MASK) == LK_SHARED) {
1341 		flags &= ~LK_TYPE_MASK;
1342 		flags |= LK_EXCLUSIVE;
1343 	}
1344 
1345 	/*
1346 	 * We do not lock vnode creation as it is believed to be too
1347 	 * expensive for such rare case as simultaneous creation of vnode
1348 	 * for same ino by different processes. We just allow them to race
1349 	 * and check later to decide who wins. Let the race begin!
1350 	 */
1351 
1352 	ump = VFSTOUFS(mp);
1353 	dev = ump->um_dev;
1354 	fs = ump->um_fs;
1355 
1356 	/*
1357 	 * If this MALLOC() is performed after the getnewvnode()
1358 	 * it might block, leaving a vnode with a NULL v_data to be
1359 	 * found by ffs_sync() if a sync happens to fire right then,
1360 	 * which will cause a panic because ffs_sync() blindly
1361 	 * dereferences vp->v_data (as well it should).
1362 	 */
1363 	ip = uma_zalloc(uma_inode, M_WAITOK | M_ZERO);
1364 
1365 	/* Allocate a new vnode/inode. */
1366 	if (fs->fs_magic == FS_UFS1_MAGIC)
1367 		error = getnewvnode("ufs", mp, &ffs_vnodeops1, &vp);
1368 	else
1369 		error = getnewvnode("ufs", mp, &ffs_vnodeops2, &vp);
1370 	if (error) {
1371 		*vpp = NULL;
1372 		uma_zfree(uma_inode, ip);
1373 		return (error);
1374 	}
1375 	/*
1376 	 * FFS supports recursive and shared locking.
1377 	 */
1378 	vp->v_vnlock->lk_flags |= LK_CANRECURSE;
1379 	vp->v_vnlock->lk_flags &= ~LK_NOSHARE;
1380 	vp->v_data = ip;
1381 	vp->v_bufobj.bo_bsize = fs->fs_bsize;
1382 	ip->i_vnode = vp;
1383 	ip->i_ump = ump;
1384 	ip->i_fs = fs;
1385 	ip->i_dev = dev;
1386 	ip->i_number = ino;
1387 #ifdef QUOTA
1388 	{
1389 		int i;
1390 		for (i = 0; i < MAXQUOTAS; i++)
1391 			ip->i_dquot[i] = NODQUOT;
1392 	}
1393 #endif
1394 
1395 	td = curthread;
1396 	lockmgr(vp->v_vnlock, LK_EXCLUSIVE, NULL, td);
1397 	error = insmntque(vp, mp);
1398 	if (error != 0) {
1399 		uma_zfree(uma_inode, ip);
1400 		*vpp = NULL;
1401 		return (error);
1402 	}
1403 	error = vfs_hash_insert(vp, ino, flags, td, vpp, NULL, NULL);
1404 	if (error || *vpp != NULL)
1405 		return (error);
1406 
1407 	/* Read in the disk contents for the inode, copy into the inode. */
1408 	error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
1409 	    (int)fs->fs_bsize, NOCRED, &bp);
1410 	if (error) {
1411 		/*
1412 		 * The inode does not contain anything useful, so it would
1413 		 * be misleading to leave it on its hash chain. With mode
1414 		 * still zero, it will be unlinked and returned to the free
1415 		 * list by vput().
1416 		 */
1417 		brelse(bp);
1418 		vput(vp);
1419 		*vpp = NULL;
1420 		return (error);
1421 	}
1422 	if (ip->i_ump->um_fstype == UFS1)
1423 		ip->i_din1 = uma_zalloc(uma_ufs1, M_WAITOK);
1424 	else
1425 		ip->i_din2 = uma_zalloc(uma_ufs2, M_WAITOK);
1426 	ffs_load_inode(bp, ip, fs, ino);
1427 	if (DOINGSOFTDEP(vp))
1428 		softdep_load_inodeblock(ip);
1429 	else
1430 		ip->i_effnlink = ip->i_nlink;
1431 	bqrelse(bp);
1432 
1433 	/*
1434 	 * Initialize the vnode from the inode, check for aliases.
1435 	 * Note that the underlying vnode may have changed.
1436 	 */
1437 	if (ip->i_ump->um_fstype == UFS1)
1438 		error = ufs_vinit(mp, &ffs_fifoops1, &vp);
1439 	else
1440 		error = ufs_vinit(mp, &ffs_fifoops2, &vp);
1441 	if (error) {
1442 		vput(vp);
1443 		*vpp = NULL;
1444 		return (error);
1445 	}
1446 
1447 	/*
1448 	 * Finish inode initialization.
1449 	 */
1450 
1451 	/*
1452 	 * Set up a generation number for this inode if it does not
1453 	 * already have one. This should only happen on old filesystems.
1454 	 */
1455 	if (ip->i_gen == 0) {
1456 		ip->i_gen = arc4random() / 2 + 1;
1457 		if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
1458 			ip->i_flag |= IN_MODIFIED;
1459 			DIP_SET(ip, i_gen, ip->i_gen);
1460 		}
1461 	}
1462 	/*
1463 	 * Ensure that uid and gid are correct. This is a temporary
1464 	 * fix until fsck has been changed to do the update.
1465 	 */
1466 	if (fs->fs_magic == FS_UFS1_MAGIC &&		/* XXX */
1467 	    fs->fs_old_inodefmt < FS_44INODEFMT) {	/* XXX */
1468 		ip->i_uid = ip->i_din1->di_ouid;	/* XXX */
1469 		ip->i_gid = ip->i_din1->di_ogid;	/* XXX */
1470 	}						/* XXX */
1471 
1472 #ifdef MAC
1473 	if ((mp->mnt_flag & MNT_MULTILABEL) && ip->i_mode) {
1474 		/*
1475 		 * If this vnode is already allocated, and we're running
1476 		 * multi-label, attempt to perform a label association
1477 		 * from the extended attributes on the inode.
1478 		 */
1479 		error = mac_associate_vnode_extattr(mp, vp);
1480 		if (error) {
1481 			/* ufs_inactive will release ip->i_devvp ref. */
1482 			vput(vp);
1483 			*vpp = NULL;
1484 			return (error);
1485 		}
1486 	}
1487 #endif
1488 
1489 	*vpp = vp;
1490 	return (0);
1491 }
1492 
1493 /*
1494  * File handle to vnode
1495  *
1496  * Have to be really careful about stale file handles:
1497  * - check that the inode number is valid
1498  * - call ffs_vget() to get the locked inode
1499  * - check for an unallocated inode (i_mode == 0)
1500  * - check that the given client host has export rights and return
1501  *   those rights via. exflagsp and credanonp
1502  */
1503 static int
1504 ffs_fhtovp(mp, fhp, vpp)
1505 	struct mount *mp;
1506 	struct fid *fhp;
1507 	struct vnode **vpp;
1508 {
1509 	struct ufid *ufhp;
1510 	struct fs *fs;
1511 
1512 	ufhp = (struct ufid *)fhp;
1513 	fs = VFSTOUFS(mp)->um_fs;
1514 	if (ufhp->ufid_ino < ROOTINO ||
1515 	    ufhp->ufid_ino >= fs->fs_ncg * fs->fs_ipg)
1516 		return (ESTALE);
1517 	return (ufs_fhtovp(mp, ufhp, vpp));
1518 }
1519 
1520 /*
1521  * Initialize the filesystem.
1522  */
1523 static int
1524 ffs_init(vfsp)
1525 	struct vfsconf *vfsp;
1526 {
1527 
1528 	softdep_initialize();
1529 	return (ufs_init(vfsp));
1530 }
1531 
1532 /*
1533  * Undo the work of ffs_init().
1534  */
1535 static int
1536 ffs_uninit(vfsp)
1537 	struct vfsconf *vfsp;
1538 {
1539 	int ret;
1540 
1541 	ret = ufs_uninit(vfsp);
1542 	softdep_uninitialize();
1543 	return (ret);
1544 }
1545 
1546 /*
1547  * Write a superblock and associated information back to disk.
1548  */
1549 int
1550 ffs_sbupdate(mp, waitfor, suspended)
1551 	struct ufsmount *mp;
1552 	int waitfor;
1553 	int suspended;
1554 {
1555 	struct fs *fs = mp->um_fs;
1556 	struct buf *sbbp;
1557 	struct buf *bp;
1558 	int blks;
1559 	void *space;
1560 	int i, size, error, allerror = 0;
1561 
1562 	if (fs->fs_ronly == 1 &&
1563 	    (mp->um_mountp->mnt_flag & (MNT_RDONLY | MNT_UPDATE)) !=
1564 	    (MNT_RDONLY | MNT_UPDATE))
1565 		panic("ffs_sbupdate: write read-only filesystem");
1566 	/*
1567 	 * We use the superblock's buf to serialize calls to ffs_sbupdate().
1568 	 */
1569 	sbbp = getblk(mp->um_devvp, btodb(fs->fs_sblockloc), (int)fs->fs_sbsize,
1570 	    0, 0, 0);
1571 	/*
1572 	 * First write back the summary information.
1573 	 */
1574 	blks = howmany(fs->fs_cssize, fs->fs_fsize);
1575 	space = fs->fs_csp;
1576 	for (i = 0; i < blks; i += fs->fs_frag) {
1577 		size = fs->fs_bsize;
1578 		if (i + fs->fs_frag > blks)
1579 			size = (blks - i) * fs->fs_fsize;
1580 		bp = getblk(mp->um_devvp, fsbtodb(fs, fs->fs_csaddr + i),
1581 		    size, 0, 0, 0);
1582 		bcopy(space, bp->b_data, (u_int)size);
1583 		space = (char *)space + size;
1584 		if (suspended)
1585 			bp->b_flags |= B_VALIDSUSPWRT;
1586 		if (waitfor != MNT_WAIT)
1587 			bawrite(bp);
1588 		else if ((error = bwrite(bp)) != 0)
1589 			allerror = error;
1590 	}
1591 	/*
1592 	 * Now write back the superblock itself. If any errors occurred
1593 	 * up to this point, then fail so that the superblock avoids
1594 	 * being written out as clean.
1595 	 */
1596 	if (allerror) {
1597 		brelse(sbbp);
1598 		return (allerror);
1599 	}
1600 	bp = sbbp;
1601 	if (fs->fs_magic == FS_UFS1_MAGIC && fs->fs_sblockloc != SBLOCK_UFS1 &&
1602 	    (fs->fs_flags & FS_FLAGS_UPDATED) == 0) {
1603 		printf("%s: correcting fs_sblockloc from %jd to %d\n",
1604 		    fs->fs_fsmnt, fs->fs_sblockloc, SBLOCK_UFS1);
1605 		fs->fs_sblockloc = SBLOCK_UFS1;
1606 	}
1607 	if (fs->fs_magic == FS_UFS2_MAGIC && fs->fs_sblockloc != SBLOCK_UFS2 &&
1608 	    (fs->fs_flags & FS_FLAGS_UPDATED) == 0) {
1609 		printf("%s: correcting fs_sblockloc from %jd to %d\n",
1610 		    fs->fs_fsmnt, fs->fs_sblockloc, SBLOCK_UFS2);
1611 		fs->fs_sblockloc = SBLOCK_UFS2;
1612 	}
1613 	fs->fs_fmod = 0;
1614 	fs->fs_time = time_second;
1615 	bcopy((caddr_t)fs, bp->b_data, (u_int)fs->fs_sbsize);
1616 	ffs_oldfscompat_write((struct fs *)bp->b_data, mp);
1617 	if (suspended)
1618 		bp->b_flags |= B_VALIDSUSPWRT;
1619 	if (waitfor != MNT_WAIT)
1620 		bawrite(bp);
1621 	else if ((error = bwrite(bp)) != 0)
1622 		allerror = error;
1623 	return (allerror);
1624 }
1625 
1626 static int
1627 ffs_extattrctl(struct mount *mp, int cmd, struct vnode *filename_vp,
1628 	int attrnamespace, const char *attrname, struct thread *td)
1629 {
1630 
1631 #ifdef UFS_EXTATTR
1632 	return (ufs_extattrctl(mp, cmd, filename_vp, attrnamespace,
1633 	    attrname, td));
1634 #else
1635 	return (vfs_stdextattrctl(mp, cmd, filename_vp, attrnamespace,
1636 	    attrname, td));
1637 #endif
1638 }
1639 
1640 static void
1641 ffs_ifree(struct ufsmount *ump, struct inode *ip)
1642 {
1643 
1644 	if (ump->um_fstype == UFS1 && ip->i_din1 != NULL)
1645 		uma_zfree(uma_ufs1, ip->i_din1);
1646 	else if (ip->i_din2 != NULL)
1647 		uma_zfree(uma_ufs2, ip->i_din2);
1648 	uma_zfree(uma_inode, ip);
1649 }
1650 
1651 static int dobkgrdwrite = 1;
1652 SYSCTL_INT(_debug, OID_AUTO, dobkgrdwrite, CTLFLAG_RW, &dobkgrdwrite, 0,
1653     "Do background writes (honoring the BV_BKGRDWRITE flag)?");
1654 
1655 /*
1656  * Complete a background write started from bwrite.
1657  */
1658 static void
1659 ffs_backgroundwritedone(struct buf *bp)
1660 {
1661 	struct bufobj *bufobj;
1662 	struct buf *origbp;
1663 
1664 	/*
1665 	 * Find the original buffer that we are writing.
1666 	 */
1667 	bufobj = bp->b_bufobj;
1668 	BO_LOCK(bufobj);
1669 	if ((origbp = gbincore(bp->b_bufobj, bp->b_lblkno)) == NULL)
1670 		panic("backgroundwritedone: lost buffer");
1671 	/* Grab an extra reference to be dropped by the bufdone() below. */
1672 	bufobj_wrefl(bufobj);
1673 	BO_UNLOCK(bufobj);
1674 	/*
1675 	 * Process dependencies then return any unfinished ones.
1676 	 */
1677 	if (LIST_FIRST(&bp->b_dep) != NULL)
1678 		buf_complete(bp);
1679 #ifdef SOFTUPDATES
1680 	if (LIST_FIRST(&bp->b_dep) != NULL)
1681 		softdep_move_dependencies(bp, origbp);
1682 #endif
1683 	/*
1684 	 * This buffer is marked B_NOCACHE so when it is released
1685 	 * by biodone it will be tossed.
1686 	 */
1687 	bp->b_flags |= B_NOCACHE;
1688 	bp->b_flags &= ~B_CACHE;
1689 	bufdone(bp);
1690 	BO_LOCK(bufobj);
1691 	/*
1692 	 * Clear the BV_BKGRDINPROG flag in the original buffer
1693 	 * and awaken it if it is waiting for the write to complete.
1694 	 * If BV_BKGRDINPROG is not set in the original buffer it must
1695 	 * have been released and re-instantiated - which is not legal.
1696 	 */
1697 	KASSERT((origbp->b_vflags & BV_BKGRDINPROG),
1698 	    ("backgroundwritedone: lost buffer2"));
1699 	origbp->b_vflags &= ~BV_BKGRDINPROG;
1700 	if (origbp->b_vflags & BV_BKGRDWAIT) {
1701 		origbp->b_vflags &= ~BV_BKGRDWAIT;
1702 		wakeup(&origbp->b_xflags);
1703 	}
1704 	BO_UNLOCK(bufobj);
1705 }
1706 
1707 
1708 /*
1709  * Write, release buffer on completion.  (Done by iodone
1710  * if async).  Do not bother writing anything if the buffer
1711  * is invalid.
1712  *
1713  * Note that we set B_CACHE here, indicating that buffer is
1714  * fully valid and thus cacheable.  This is true even of NFS
1715  * now so we set it generally.  This could be set either here
1716  * or in biodone() since the I/O is synchronous.  We put it
1717  * here.
1718  */
1719 static int
1720 ffs_bufwrite(struct buf *bp)
1721 {
1722 	int oldflags, s;
1723 	struct buf *newbp;
1724 
1725 	CTR3(KTR_BUF, "bufwrite(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
1726 	if (bp->b_flags & B_INVAL) {
1727 		brelse(bp);
1728 		return (0);
1729 	}
1730 
1731 	oldflags = bp->b_flags;
1732 
1733 	if (BUF_REFCNT(bp) == 0)
1734 		panic("bufwrite: buffer is not busy???");
1735 	s = splbio();
1736 	/*
1737 	 * If a background write is already in progress, delay
1738 	 * writing this block if it is asynchronous. Otherwise
1739 	 * wait for the background write to complete.
1740 	 */
1741 	BO_LOCK(bp->b_bufobj);
1742 	if (bp->b_vflags & BV_BKGRDINPROG) {
1743 		if (bp->b_flags & B_ASYNC) {
1744 			BO_UNLOCK(bp->b_bufobj);
1745 			splx(s);
1746 			bdwrite(bp);
1747 			return (0);
1748 		}
1749 		bp->b_vflags |= BV_BKGRDWAIT;
1750 		msleep(&bp->b_xflags, BO_MTX(bp->b_bufobj), PRIBIO, "bwrbg", 0);
1751 		if (bp->b_vflags & BV_BKGRDINPROG)
1752 			panic("bufwrite: still writing");
1753 	}
1754 	BO_UNLOCK(bp->b_bufobj);
1755 
1756 	/* Mark the buffer clean */
1757 	bundirty(bp);
1758 
1759 	/*
1760 	 * If this buffer is marked for background writing and we
1761 	 * do not have to wait for it, make a copy and write the
1762 	 * copy so as to leave this buffer ready for further use.
1763 	 *
1764 	 * This optimization eats a lot of memory.  If we have a page
1765 	 * or buffer shortfall we can't do it.
1766 	 */
1767 	if (dobkgrdwrite && (bp->b_xflags & BX_BKGRDWRITE) &&
1768 	    (bp->b_flags & B_ASYNC) &&
1769 	    !vm_page_count_severe() &&
1770 	    !buf_dirty_count_severe()) {
1771 		KASSERT(bp->b_iodone == NULL,
1772 		    ("bufwrite: needs chained iodone (%p)", bp->b_iodone));
1773 
1774 		/* get a new block */
1775 		newbp = geteblk(bp->b_bufsize);
1776 
1777 		/*
1778 		 * set it to be identical to the old block.  We have to
1779 		 * set b_lblkno and BKGRDMARKER before calling bgetvp()
1780 		 * to avoid confusing the splay tree and gbincore().
1781 		 */
1782 		memcpy(newbp->b_data, bp->b_data, bp->b_bufsize);
1783 		newbp->b_lblkno = bp->b_lblkno;
1784 		newbp->b_xflags |= BX_BKGRDMARKER;
1785 		BO_LOCK(bp->b_bufobj);
1786 		bp->b_vflags |= BV_BKGRDINPROG;
1787 		bgetvp(bp->b_vp, newbp);
1788 		BO_UNLOCK(bp->b_bufobj);
1789 		newbp->b_bufobj = &bp->b_vp->v_bufobj;
1790 		newbp->b_blkno = bp->b_blkno;
1791 		newbp->b_offset = bp->b_offset;
1792 		newbp->b_iodone = ffs_backgroundwritedone;
1793 		newbp->b_flags |= B_ASYNC;
1794 		newbp->b_flags &= ~B_INVAL;
1795 
1796 #ifdef SOFTUPDATES
1797 		/* move over the dependencies */
1798 		if (LIST_FIRST(&bp->b_dep) != NULL)
1799 			softdep_move_dependencies(bp, newbp);
1800 #endif
1801 
1802 		/*
1803 		 * Initiate write on the copy, release the original to
1804 		 * the B_LOCKED queue so that it cannot go away until
1805 		 * the background write completes. If not locked it could go
1806 		 * away and then be reconstituted while it was being written.
1807 		 * If the reconstituted buffer were written, we could end up
1808 		 * with two background copies being written at the same time.
1809 		 */
1810 		bqrelse(bp);
1811 		bp = newbp;
1812 	}
1813 
1814 	/* Let the normal bufwrite do the rest for us */
1815 	return (bufwrite(bp));
1816 }
1817 
1818 
1819 static void
1820 ffs_geom_strategy(struct bufobj *bo, struct buf *bp)
1821 {
1822 	struct vnode *vp;
1823 	int error;
1824 	struct buf *tbp;
1825 
1826 	vp = bo->__bo_vnode;
1827 	if (bp->b_iocmd == BIO_WRITE) {
1828 		if ((bp->b_flags & B_VALIDSUSPWRT) == 0 &&
1829 		    bp->b_vp != NULL && bp->b_vp->v_mount != NULL &&
1830 		    (bp->b_vp->v_mount->mnt_kern_flag & MNTK_SUSPENDED) != 0)
1831 			panic("ffs_geom_strategy: bad I/O");
1832 		bp->b_flags &= ~B_VALIDSUSPWRT;
1833 		if ((vp->v_vflag & VV_COPYONWRITE) &&
1834 		    vp->v_rdev->si_snapdata != NULL) {
1835 			if ((bp->b_flags & B_CLUSTER) != 0) {
1836 				runningbufwakeup(bp);
1837 				TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
1838 					      b_cluster.cluster_entry) {
1839 					error = ffs_copyonwrite(vp, tbp);
1840 					if (error != 0 &&
1841 					    error != EOPNOTSUPP) {
1842 						bp->b_error = error;
1843 						bp->b_ioflags |= BIO_ERROR;
1844 						bufdone(bp);
1845 						return;
1846 					}
1847 				}
1848 				bp->b_runningbufspace = bp->b_bufsize;
1849 				atomic_add_int(&runningbufspace,
1850 					       bp->b_runningbufspace);
1851 			} else {
1852 				error = ffs_copyonwrite(vp, bp);
1853 				if (error != 0 && error != EOPNOTSUPP) {
1854 					bp->b_error = error;
1855 					bp->b_ioflags |= BIO_ERROR;
1856 					bufdone(bp);
1857 					return;
1858 				}
1859 			}
1860 		}
1861 #ifdef SOFTUPDATES
1862 		if ((bp->b_flags & B_CLUSTER) != 0) {
1863 			TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
1864 				      b_cluster.cluster_entry) {
1865 				if (LIST_FIRST(&tbp->b_dep) != NULL)
1866 					buf_start(tbp);
1867 			}
1868 		} else {
1869 			if (LIST_FIRST(&bp->b_dep) != NULL)
1870 				buf_start(bp);
1871 		}
1872 
1873 #endif
1874 	}
1875 	g_vfs_strategy(bo, bp);
1876 }
1877