xref: /freebsd/sys/ufs/ffs/ffs_alloc.c (revision 3ef51c5fb9163f2aafb1c14729e06a8bf0c4d113)
1 /*-
2  * Copyright (c) 2002 Networks Associates Technology, Inc.
3  * All rights reserved.
4  *
5  * This software was developed for the FreeBSD Project by Marshall
6  * Kirk McKusick and Network Associates Laboratories, the Security
7  * Research Division of Network Associates, Inc. under DARPA/SPAWAR
8  * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS
9  * research program
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * Copyright (c) 1982, 1986, 1989, 1993
33  *	The Regents of the University of California.  All rights reserved.
34  *
35  * Redistribution and use in source and binary forms, with or without
36  * modification, are permitted provided that the following conditions
37  * are met:
38  * 1. Redistributions of source code must retain the above copyright
39  *    notice, this list of conditions and the following disclaimer.
40  * 2. Redistributions in binary form must reproduce the above copyright
41  *    notice, this list of conditions and the following disclaimer in the
42  *    documentation and/or other materials provided with the distribution.
43  * 4. Neither the name of the University nor the names of its contributors
44  *    may be used to endorse or promote products derived from this software
45  *    without specific prior written permission.
46  *
47  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57  * SUCH DAMAGE.
58  *
59  *	@(#)ffs_alloc.c	8.18 (Berkeley) 5/26/95
60  */
61 
62 #include <sys/cdefs.h>
63 __FBSDID("$FreeBSD$");
64 
65 #include "opt_quota.h"
66 
67 #include <sys/param.h>
68 #include <sys/capability.h>
69 #include <sys/systm.h>
70 #include <sys/bio.h>
71 #include <sys/buf.h>
72 #include <sys/conf.h>
73 #include <sys/fcntl.h>
74 #include <sys/file.h>
75 #include <sys/filedesc.h>
76 #include <sys/priv.h>
77 #include <sys/proc.h>
78 #include <sys/vnode.h>
79 #include <sys/mount.h>
80 #include <sys/kernel.h>
81 #include <sys/syscallsubr.h>
82 #include <sys/sysctl.h>
83 #include <sys/syslog.h>
84 #include <sys/taskqueue.h>
85 
86 #include <security/audit/audit.h>
87 
88 #include <geom/geom.h>
89 
90 #include <ufs/ufs/dir.h>
91 #include <ufs/ufs/extattr.h>
92 #include <ufs/ufs/quota.h>
93 #include <ufs/ufs/inode.h>
94 #include <ufs/ufs/ufs_extern.h>
95 #include <ufs/ufs/ufsmount.h>
96 
97 #include <ufs/ffs/fs.h>
98 #include <ufs/ffs/ffs_extern.h>
99 #include <ufs/ffs/softdep.h>
100 
101 typedef ufs2_daddr_t allocfcn_t(struct inode *ip, u_int cg, ufs2_daddr_t bpref,
102 				  int size, int rsize);
103 
104 static ufs2_daddr_t ffs_alloccg(struct inode *, u_int, ufs2_daddr_t, int, int);
105 static ufs2_daddr_t
106 	      ffs_alloccgblk(struct inode *, struct buf *, ufs2_daddr_t, int);
107 static void	ffs_blkfree_cg(struct ufsmount *, struct fs *,
108 		    struct vnode *, ufs2_daddr_t, long, ino_t,
109 		    struct workhead *);
110 static void	ffs_blkfree_trim_completed(struct bio *);
111 static void	ffs_blkfree_trim_task(void *ctx, int pending __unused);
112 #ifdef INVARIANTS
113 static int	ffs_checkblk(struct inode *, ufs2_daddr_t, long);
114 #endif
115 static ufs2_daddr_t ffs_clusteralloc(struct inode *, u_int, ufs2_daddr_t, int,
116 		    int);
117 static ino_t	ffs_dirpref(struct inode *);
118 static ufs2_daddr_t ffs_fragextend(struct inode *, u_int, ufs2_daddr_t,
119 		    int, int);
120 static ufs2_daddr_t	ffs_hashalloc
121 		(struct inode *, u_int, ufs2_daddr_t, int, int, allocfcn_t *);
122 static ufs2_daddr_t ffs_nodealloccg(struct inode *, u_int, ufs2_daddr_t, int,
123 		    int);
124 static ufs1_daddr_t ffs_mapsearch(struct fs *, struct cg *, ufs2_daddr_t, int);
125 static int	ffs_reallocblks_ufs1(struct vop_reallocblks_args *);
126 static int	ffs_reallocblks_ufs2(struct vop_reallocblks_args *);
127 
128 /*
129  * Allocate a block in the filesystem.
130  *
131  * The size of the requested block is given, which must be some
132  * multiple of fs_fsize and <= fs_bsize.
133  * A preference may be optionally specified. If a preference is given
134  * the following hierarchy is used to allocate a block:
135  *   1) allocate the requested block.
136  *   2) allocate a rotationally optimal block in the same cylinder.
137  *   3) allocate a block in the same cylinder group.
138  *   4) quadradically rehash into other cylinder groups, until an
139  *      available block is located.
140  * If no block preference is given the following hierarchy is used
141  * to allocate a block:
142  *   1) allocate a block in the cylinder group that contains the
143  *      inode for the file.
144  *   2) quadradically rehash into other cylinder groups, until an
145  *      available block is located.
146  */
147 int
148 ffs_alloc(ip, lbn, bpref, size, flags, cred, bnp)
149 	struct inode *ip;
150 	ufs2_daddr_t lbn, bpref;
151 	int size, flags;
152 	struct ucred *cred;
153 	ufs2_daddr_t *bnp;
154 {
155 	struct fs *fs;
156 	struct ufsmount *ump;
157 	ufs2_daddr_t bno;
158 	u_int cg, reclaimed;
159 	static struct timeval lastfail;
160 	static int curfail;
161 	int64_t delta;
162 #ifdef QUOTA
163 	int error;
164 #endif
165 
166 	*bnp = 0;
167 	fs = ip->i_fs;
168 	ump = ip->i_ump;
169 	mtx_assert(UFS_MTX(ump), MA_OWNED);
170 #ifdef INVARIANTS
171 	if ((u_int)size > fs->fs_bsize || fragoff(fs, size) != 0) {
172 		printf("dev = %s, bsize = %ld, size = %d, fs = %s\n",
173 		    devtoname(ip->i_dev), (long)fs->fs_bsize, size,
174 		    fs->fs_fsmnt);
175 		panic("ffs_alloc: bad size");
176 	}
177 	if (cred == NOCRED)
178 		panic("ffs_alloc: missing credential");
179 #endif /* INVARIANTS */
180 	reclaimed = 0;
181 retry:
182 #ifdef QUOTA
183 	UFS_UNLOCK(ump);
184 	error = chkdq(ip, btodb(size), cred, 0);
185 	if (error)
186 		return (error);
187 	UFS_LOCK(ump);
188 #endif
189 	if (size == fs->fs_bsize && fs->fs_cstotal.cs_nbfree == 0)
190 		goto nospace;
191 	if (priv_check_cred(cred, PRIV_VFS_BLOCKRESERVE, 0) &&
192 	    freespace(fs, fs->fs_minfree) - numfrags(fs, size) < 0)
193 		goto nospace;
194 	if (bpref >= fs->fs_size)
195 		bpref = 0;
196 	if (bpref == 0)
197 		cg = ino_to_cg(fs, ip->i_number);
198 	else
199 		cg = dtog(fs, bpref);
200 	bno = ffs_hashalloc(ip, cg, bpref, size, size, ffs_alloccg);
201 	if (bno > 0) {
202 		delta = btodb(size);
203 		DIP_SET(ip, i_blocks, DIP(ip, i_blocks) + delta);
204 		if (flags & IO_EXT)
205 			ip->i_flag |= IN_CHANGE;
206 		else
207 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
208 		*bnp = bno;
209 		return (0);
210 	}
211 nospace:
212 #ifdef QUOTA
213 	UFS_UNLOCK(ump);
214 	/*
215 	 * Restore user's disk quota because allocation failed.
216 	 */
217 	(void) chkdq(ip, -btodb(size), cred, FORCE);
218 	UFS_LOCK(ump);
219 #endif
220 	if (reclaimed == 0 && (flags & IO_BUFLOCKED) == 0) {
221 		reclaimed = 1;
222 		softdep_request_cleanup(fs, ITOV(ip), cred, FLUSH_BLOCKS_WAIT);
223 		goto retry;
224 	}
225 	UFS_UNLOCK(ump);
226 	if (reclaimed > 0 && ppsratecheck(&lastfail, &curfail, 1)) {
227 		ffs_fserr(fs, ip->i_number, "filesystem full");
228 		uprintf("\n%s: write failed, filesystem is full\n",
229 		    fs->fs_fsmnt);
230 	}
231 	return (ENOSPC);
232 }
233 
234 /*
235  * Reallocate a fragment to a bigger size
236  *
237  * The number and size of the old block is given, and a preference
238  * and new size is also specified. The allocator attempts to extend
239  * the original block. Failing that, the regular block allocator is
240  * invoked to get an appropriate block.
241  */
242 int
243 ffs_realloccg(ip, lbprev, bprev, bpref, osize, nsize, flags, cred, bpp)
244 	struct inode *ip;
245 	ufs2_daddr_t lbprev;
246 	ufs2_daddr_t bprev;
247 	ufs2_daddr_t bpref;
248 	int osize, nsize, flags;
249 	struct ucred *cred;
250 	struct buf **bpp;
251 {
252 	struct vnode *vp;
253 	struct fs *fs;
254 	struct buf *bp;
255 	struct ufsmount *ump;
256 	u_int cg, request, reclaimed;
257 	int error;
258 	ufs2_daddr_t bno;
259 	static struct timeval lastfail;
260 	static int curfail;
261 	int64_t delta;
262 
263 	*bpp = 0;
264 	vp = ITOV(ip);
265 	fs = ip->i_fs;
266 	bp = NULL;
267 	ump = ip->i_ump;
268 	mtx_assert(UFS_MTX(ump), MA_OWNED);
269 #ifdef INVARIANTS
270 	if (vp->v_mount->mnt_kern_flag & MNTK_SUSPENDED)
271 		panic("ffs_realloccg: allocation on suspended filesystem");
272 	if ((u_int)osize > fs->fs_bsize || fragoff(fs, osize) != 0 ||
273 	    (u_int)nsize > fs->fs_bsize || fragoff(fs, nsize) != 0) {
274 		printf(
275 		"dev = %s, bsize = %ld, osize = %d, nsize = %d, fs = %s\n",
276 		    devtoname(ip->i_dev), (long)fs->fs_bsize, osize,
277 		    nsize, fs->fs_fsmnt);
278 		panic("ffs_realloccg: bad size");
279 	}
280 	if (cred == NOCRED)
281 		panic("ffs_realloccg: missing credential");
282 #endif /* INVARIANTS */
283 	reclaimed = 0;
284 retry:
285 	if (priv_check_cred(cred, PRIV_VFS_BLOCKRESERVE, 0) &&
286 	    freespace(fs, fs->fs_minfree) -  numfrags(fs, nsize - osize) < 0) {
287 		goto nospace;
288 	}
289 	if (bprev == 0) {
290 		printf("dev = %s, bsize = %ld, bprev = %jd, fs = %s\n",
291 		    devtoname(ip->i_dev), (long)fs->fs_bsize, (intmax_t)bprev,
292 		    fs->fs_fsmnt);
293 		panic("ffs_realloccg: bad bprev");
294 	}
295 	UFS_UNLOCK(ump);
296 	/*
297 	 * Allocate the extra space in the buffer.
298 	 */
299 	error = bread(vp, lbprev, osize, NOCRED, &bp);
300 	if (error) {
301 		brelse(bp);
302 		return (error);
303 	}
304 
305 	if (bp->b_blkno == bp->b_lblkno) {
306 		if (lbprev >= NDADDR)
307 			panic("ffs_realloccg: lbprev out of range");
308 		bp->b_blkno = fsbtodb(fs, bprev);
309 	}
310 
311 #ifdef QUOTA
312 	error = chkdq(ip, btodb(nsize - osize), cred, 0);
313 	if (error) {
314 		brelse(bp);
315 		return (error);
316 	}
317 #endif
318 	/*
319 	 * Check for extension in the existing location.
320 	 */
321 	cg = dtog(fs, bprev);
322 	UFS_LOCK(ump);
323 	bno = ffs_fragextend(ip, cg, bprev, osize, nsize);
324 	if (bno) {
325 		if (bp->b_blkno != fsbtodb(fs, bno))
326 			panic("ffs_realloccg: bad blockno");
327 		delta = btodb(nsize - osize);
328 		DIP_SET(ip, i_blocks, DIP(ip, i_blocks) + delta);
329 		if (flags & IO_EXT)
330 			ip->i_flag |= IN_CHANGE;
331 		else
332 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
333 		allocbuf(bp, nsize);
334 		bp->b_flags |= B_DONE;
335 		bzero(bp->b_data + osize, nsize - osize);
336 		if ((bp->b_flags & (B_MALLOC | B_VMIO)) == B_VMIO)
337 			vfs_bio_set_valid(bp, osize, nsize - osize);
338 		*bpp = bp;
339 		return (0);
340 	}
341 	/*
342 	 * Allocate a new disk location.
343 	 */
344 	if (bpref >= fs->fs_size)
345 		bpref = 0;
346 	switch ((int)fs->fs_optim) {
347 	case FS_OPTSPACE:
348 		/*
349 		 * Allocate an exact sized fragment. Although this makes
350 		 * best use of space, we will waste time relocating it if
351 		 * the file continues to grow. If the fragmentation is
352 		 * less than half of the minimum free reserve, we choose
353 		 * to begin optimizing for time.
354 		 */
355 		request = nsize;
356 		if (fs->fs_minfree <= 5 ||
357 		    fs->fs_cstotal.cs_nffree >
358 		    (off_t)fs->fs_dsize * fs->fs_minfree / (2 * 100))
359 			break;
360 		log(LOG_NOTICE, "%s: optimization changed from SPACE to TIME\n",
361 			fs->fs_fsmnt);
362 		fs->fs_optim = FS_OPTTIME;
363 		break;
364 	case FS_OPTTIME:
365 		/*
366 		 * At this point we have discovered a file that is trying to
367 		 * grow a small fragment to a larger fragment. To save time,
368 		 * we allocate a full sized block, then free the unused portion.
369 		 * If the file continues to grow, the `ffs_fragextend' call
370 		 * above will be able to grow it in place without further
371 		 * copying. If aberrant programs cause disk fragmentation to
372 		 * grow within 2% of the free reserve, we choose to begin
373 		 * optimizing for space.
374 		 */
375 		request = fs->fs_bsize;
376 		if (fs->fs_cstotal.cs_nffree <
377 		    (off_t)fs->fs_dsize * (fs->fs_minfree - 2) / 100)
378 			break;
379 		log(LOG_NOTICE, "%s: optimization changed from TIME to SPACE\n",
380 			fs->fs_fsmnt);
381 		fs->fs_optim = FS_OPTSPACE;
382 		break;
383 	default:
384 		printf("dev = %s, optim = %ld, fs = %s\n",
385 		    devtoname(ip->i_dev), (long)fs->fs_optim, fs->fs_fsmnt);
386 		panic("ffs_realloccg: bad optim");
387 		/* NOTREACHED */
388 	}
389 	bno = ffs_hashalloc(ip, cg, bpref, request, nsize, ffs_alloccg);
390 	if (bno > 0) {
391 		bp->b_blkno = fsbtodb(fs, bno);
392 		if (!DOINGSOFTDEP(vp))
393 			ffs_blkfree(ump, fs, ip->i_devvp, bprev, (long)osize,
394 			    ip->i_number, vp->v_type, NULL);
395 		delta = btodb(nsize - osize);
396 		DIP_SET(ip, i_blocks, DIP(ip, i_blocks) + delta);
397 		if (flags & IO_EXT)
398 			ip->i_flag |= IN_CHANGE;
399 		else
400 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
401 		allocbuf(bp, nsize);
402 		bp->b_flags |= B_DONE;
403 		bzero(bp->b_data + osize, nsize - osize);
404 		if ((bp->b_flags & (B_MALLOC | B_VMIO)) == B_VMIO)
405 			vfs_bio_set_valid(bp, osize, nsize - osize);
406 		*bpp = bp;
407 		return (0);
408 	}
409 #ifdef QUOTA
410 	UFS_UNLOCK(ump);
411 	/*
412 	 * Restore user's disk quota because allocation failed.
413 	 */
414 	(void) chkdq(ip, -btodb(nsize - osize), cred, FORCE);
415 	UFS_LOCK(ump);
416 #endif
417 nospace:
418 	/*
419 	 * no space available
420 	 */
421 	if (reclaimed == 0 && (flags & IO_BUFLOCKED) == 0) {
422 		reclaimed = 1;
423 		UFS_UNLOCK(ump);
424 		if (bp) {
425 			brelse(bp);
426 			bp = NULL;
427 		}
428 		UFS_LOCK(ump);
429 		softdep_request_cleanup(fs, vp, cred, FLUSH_BLOCKS_WAIT);
430 		goto retry;
431 	}
432 	UFS_UNLOCK(ump);
433 	if (bp)
434 		brelse(bp);
435 	if (reclaimed > 0 && ppsratecheck(&lastfail, &curfail, 1)) {
436 		ffs_fserr(fs, ip->i_number, "filesystem full");
437 		uprintf("\n%s: write failed, filesystem is full\n",
438 		    fs->fs_fsmnt);
439 	}
440 	return (ENOSPC);
441 }
442 
443 /*
444  * Reallocate a sequence of blocks into a contiguous sequence of blocks.
445  *
446  * The vnode and an array of buffer pointers for a range of sequential
447  * logical blocks to be made contiguous is given. The allocator attempts
448  * to find a range of sequential blocks starting as close as possible
449  * from the end of the allocation for the logical block immediately
450  * preceding the current range. If successful, the physical block numbers
451  * in the buffer pointers and in the inode are changed to reflect the new
452  * allocation. If unsuccessful, the allocation is left unchanged. The
453  * success in doing the reallocation is returned. Note that the error
454  * return is not reflected back to the user. Rather the previous block
455  * allocation will be used.
456  */
457 
458 SYSCTL_NODE(_vfs, OID_AUTO, ffs, CTLFLAG_RW, 0, "FFS filesystem");
459 
460 static int doasyncfree = 1;
461 SYSCTL_INT(_vfs_ffs, OID_AUTO, doasyncfree, CTLFLAG_RW, &doasyncfree, 0, "");
462 
463 static int doreallocblks = 1;
464 SYSCTL_INT(_vfs_ffs, OID_AUTO, doreallocblks, CTLFLAG_RW, &doreallocblks, 0, "");
465 
466 #ifdef DEBUG
467 static volatile int prtrealloc = 0;
468 #endif
469 
470 int
471 ffs_reallocblks(ap)
472 	struct vop_reallocblks_args /* {
473 		struct vnode *a_vp;
474 		struct cluster_save *a_buflist;
475 	} */ *ap;
476 {
477 
478 	if (doreallocblks == 0)
479 		return (ENOSPC);
480 	/*
481 	 * We can't wait in softdep prealloc as it may fsync and recurse
482 	 * here.  Instead we simply fail to reallocate blocks if this
483 	 * rare condition arises.
484 	 */
485 	if (DOINGSOFTDEP(ap->a_vp))
486 		if (softdep_prealloc(ap->a_vp, MNT_NOWAIT) != 0)
487 			return (ENOSPC);
488 	if (VTOI(ap->a_vp)->i_ump->um_fstype == UFS1)
489 		return (ffs_reallocblks_ufs1(ap));
490 	return (ffs_reallocblks_ufs2(ap));
491 }
492 
493 static int
494 ffs_reallocblks_ufs1(ap)
495 	struct vop_reallocblks_args /* {
496 		struct vnode *a_vp;
497 		struct cluster_save *a_buflist;
498 	} */ *ap;
499 {
500 	struct fs *fs;
501 	struct inode *ip;
502 	struct vnode *vp;
503 	struct buf *sbp, *ebp;
504 	ufs1_daddr_t *bap, *sbap, *ebap = 0;
505 	struct cluster_save *buflist;
506 	struct ufsmount *ump;
507 	ufs_lbn_t start_lbn, end_lbn;
508 	ufs1_daddr_t soff, newblk, blkno;
509 	ufs2_daddr_t pref;
510 	struct indir start_ap[NIADDR + 1], end_ap[NIADDR + 1], *idp;
511 	int i, len, start_lvl, end_lvl, ssize;
512 
513 	vp = ap->a_vp;
514 	ip = VTOI(vp);
515 	fs = ip->i_fs;
516 	ump = ip->i_ump;
517 	if (fs->fs_contigsumsize <= 0)
518 		return (ENOSPC);
519 	buflist = ap->a_buflist;
520 	len = buflist->bs_nchildren;
521 	start_lbn = buflist->bs_children[0]->b_lblkno;
522 	end_lbn = start_lbn + len - 1;
523 #ifdef INVARIANTS
524 	for (i = 0; i < len; i++)
525 		if (!ffs_checkblk(ip,
526 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
527 			panic("ffs_reallocblks: unallocated block 1");
528 	for (i = 1; i < len; i++)
529 		if (buflist->bs_children[i]->b_lblkno != start_lbn + i)
530 			panic("ffs_reallocblks: non-logical cluster");
531 	blkno = buflist->bs_children[0]->b_blkno;
532 	ssize = fsbtodb(fs, fs->fs_frag);
533 	for (i = 1; i < len - 1; i++)
534 		if (buflist->bs_children[i]->b_blkno != blkno + (i * ssize))
535 			panic("ffs_reallocblks: non-physical cluster %d", i);
536 #endif
537 	/*
538 	 * If the latest allocation is in a new cylinder group, assume that
539 	 * the filesystem has decided to move and do not force it back to
540 	 * the previous cylinder group.
541 	 */
542 	if (dtog(fs, dbtofsb(fs, buflist->bs_children[0]->b_blkno)) !=
543 	    dtog(fs, dbtofsb(fs, buflist->bs_children[len - 1]->b_blkno)))
544 		return (ENOSPC);
545 	if (ufs_getlbns(vp, start_lbn, start_ap, &start_lvl) ||
546 	    ufs_getlbns(vp, end_lbn, end_ap, &end_lvl))
547 		return (ENOSPC);
548 	/*
549 	 * Get the starting offset and block map for the first block.
550 	 */
551 	if (start_lvl == 0) {
552 		sbap = &ip->i_din1->di_db[0];
553 		soff = start_lbn;
554 	} else {
555 		idp = &start_ap[start_lvl - 1];
556 		if (bread(vp, idp->in_lbn, (int)fs->fs_bsize, NOCRED, &sbp)) {
557 			brelse(sbp);
558 			return (ENOSPC);
559 		}
560 		sbap = (ufs1_daddr_t *)sbp->b_data;
561 		soff = idp->in_off;
562 	}
563 	/*
564 	 * If the block range spans two block maps, get the second map.
565 	 */
566 	if (end_lvl == 0 || (idp = &end_ap[end_lvl - 1])->in_off + 1 >= len) {
567 		ssize = len;
568 	} else {
569 #ifdef INVARIANTS
570 		if (start_lvl > 0 &&
571 		    start_ap[start_lvl - 1].in_lbn == idp->in_lbn)
572 			panic("ffs_reallocblk: start == end");
573 #endif
574 		ssize = len - (idp->in_off + 1);
575 		if (bread(vp, idp->in_lbn, (int)fs->fs_bsize, NOCRED, &ebp))
576 			goto fail;
577 		ebap = (ufs1_daddr_t *)ebp->b_data;
578 	}
579 	/*
580 	 * Find the preferred location for the cluster.
581 	 */
582 	UFS_LOCK(ump);
583 	pref = ffs_blkpref_ufs1(ip, start_lbn, soff, sbap);
584 	/*
585 	 * Search the block map looking for an allocation of the desired size.
586 	 */
587 	if ((newblk = ffs_hashalloc(ip, dtog(fs, pref), pref,
588 	    len, len, ffs_clusteralloc)) == 0) {
589 		UFS_UNLOCK(ump);
590 		goto fail;
591 	}
592 	/*
593 	 * We have found a new contiguous block.
594 	 *
595 	 * First we have to replace the old block pointers with the new
596 	 * block pointers in the inode and indirect blocks associated
597 	 * with the file.
598 	 */
599 #ifdef DEBUG
600 	if (prtrealloc)
601 		printf("realloc: ino %d, lbns %jd-%jd\n\told:", ip->i_number,
602 		    (intmax_t)start_lbn, (intmax_t)end_lbn);
603 #endif
604 	blkno = newblk;
605 	for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->fs_frag) {
606 		if (i == ssize) {
607 			bap = ebap;
608 			soff = -i;
609 		}
610 #ifdef INVARIANTS
611 		if (!ffs_checkblk(ip,
612 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
613 			panic("ffs_reallocblks: unallocated block 2");
614 		if (dbtofsb(fs, buflist->bs_children[i]->b_blkno) != *bap)
615 			panic("ffs_reallocblks: alloc mismatch");
616 #endif
617 #ifdef DEBUG
618 		if (prtrealloc)
619 			printf(" %d,", *bap);
620 #endif
621 		if (DOINGSOFTDEP(vp)) {
622 			if (sbap == &ip->i_din1->di_db[0] && i < ssize)
623 				softdep_setup_allocdirect(ip, start_lbn + i,
624 				    blkno, *bap, fs->fs_bsize, fs->fs_bsize,
625 				    buflist->bs_children[i]);
626 			else
627 				softdep_setup_allocindir_page(ip, start_lbn + i,
628 				    i < ssize ? sbp : ebp, soff + i, blkno,
629 				    *bap, buflist->bs_children[i]);
630 		}
631 		*bap++ = blkno;
632 	}
633 	/*
634 	 * Next we must write out the modified inode and indirect blocks.
635 	 * For strict correctness, the writes should be synchronous since
636 	 * the old block values may have been written to disk. In practise
637 	 * they are almost never written, but if we are concerned about
638 	 * strict correctness, the `doasyncfree' flag should be set to zero.
639 	 *
640 	 * The test on `doasyncfree' should be changed to test a flag
641 	 * that shows whether the associated buffers and inodes have
642 	 * been written. The flag should be set when the cluster is
643 	 * started and cleared whenever the buffer or inode is flushed.
644 	 * We can then check below to see if it is set, and do the
645 	 * synchronous write only when it has been cleared.
646 	 */
647 	if (sbap != &ip->i_din1->di_db[0]) {
648 		if (doasyncfree)
649 			bdwrite(sbp);
650 		else
651 			bwrite(sbp);
652 	} else {
653 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
654 		if (!doasyncfree)
655 			ffs_update(vp, 1);
656 	}
657 	if (ssize < len) {
658 		if (doasyncfree)
659 			bdwrite(ebp);
660 		else
661 			bwrite(ebp);
662 	}
663 	/*
664 	 * Last, free the old blocks and assign the new blocks to the buffers.
665 	 */
666 #ifdef DEBUG
667 	if (prtrealloc)
668 		printf("\n\tnew:");
669 #endif
670 	for (blkno = newblk, i = 0; i < len; i++, blkno += fs->fs_frag) {
671 		if (!DOINGSOFTDEP(vp))
672 			ffs_blkfree(ump, fs, ip->i_devvp,
673 			    dbtofsb(fs, buflist->bs_children[i]->b_blkno),
674 			    fs->fs_bsize, ip->i_number, vp->v_type, NULL);
675 		buflist->bs_children[i]->b_blkno = fsbtodb(fs, blkno);
676 #ifdef INVARIANTS
677 		if (!ffs_checkblk(ip,
678 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
679 			panic("ffs_reallocblks: unallocated block 3");
680 #endif
681 #ifdef DEBUG
682 		if (prtrealloc)
683 			printf(" %d,", blkno);
684 #endif
685 	}
686 #ifdef DEBUG
687 	if (prtrealloc) {
688 		prtrealloc--;
689 		printf("\n");
690 	}
691 #endif
692 	return (0);
693 
694 fail:
695 	if (ssize < len)
696 		brelse(ebp);
697 	if (sbap != &ip->i_din1->di_db[0])
698 		brelse(sbp);
699 	return (ENOSPC);
700 }
701 
702 static int
703 ffs_reallocblks_ufs2(ap)
704 	struct vop_reallocblks_args /* {
705 		struct vnode *a_vp;
706 		struct cluster_save *a_buflist;
707 	} */ *ap;
708 {
709 	struct fs *fs;
710 	struct inode *ip;
711 	struct vnode *vp;
712 	struct buf *sbp, *ebp;
713 	ufs2_daddr_t *bap, *sbap, *ebap = 0;
714 	struct cluster_save *buflist;
715 	struct ufsmount *ump;
716 	ufs_lbn_t start_lbn, end_lbn;
717 	ufs2_daddr_t soff, newblk, blkno, pref;
718 	struct indir start_ap[NIADDR + 1], end_ap[NIADDR + 1], *idp;
719 	int i, len, start_lvl, end_lvl, ssize;
720 
721 	vp = ap->a_vp;
722 	ip = VTOI(vp);
723 	fs = ip->i_fs;
724 	ump = ip->i_ump;
725 	if (fs->fs_contigsumsize <= 0)
726 		return (ENOSPC);
727 	buflist = ap->a_buflist;
728 	len = buflist->bs_nchildren;
729 	start_lbn = buflist->bs_children[0]->b_lblkno;
730 	end_lbn = start_lbn + len - 1;
731 #ifdef INVARIANTS
732 	for (i = 0; i < len; i++)
733 		if (!ffs_checkblk(ip,
734 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
735 			panic("ffs_reallocblks: unallocated block 1");
736 	for (i = 1; i < len; i++)
737 		if (buflist->bs_children[i]->b_lblkno != start_lbn + i)
738 			panic("ffs_reallocblks: non-logical cluster");
739 	blkno = buflist->bs_children[0]->b_blkno;
740 	ssize = fsbtodb(fs, fs->fs_frag);
741 	for (i = 1; i < len - 1; i++)
742 		if (buflist->bs_children[i]->b_blkno != blkno + (i * ssize))
743 			panic("ffs_reallocblks: non-physical cluster %d", i);
744 #endif
745 	/*
746 	 * If the latest allocation is in a new cylinder group, assume that
747 	 * the filesystem has decided to move and do not force it back to
748 	 * the previous cylinder group.
749 	 */
750 	if (dtog(fs, dbtofsb(fs, buflist->bs_children[0]->b_blkno)) !=
751 	    dtog(fs, dbtofsb(fs, buflist->bs_children[len - 1]->b_blkno)))
752 		return (ENOSPC);
753 	if (ufs_getlbns(vp, start_lbn, start_ap, &start_lvl) ||
754 	    ufs_getlbns(vp, end_lbn, end_ap, &end_lvl))
755 		return (ENOSPC);
756 	/*
757 	 * Get the starting offset and block map for the first block.
758 	 */
759 	if (start_lvl == 0) {
760 		sbap = &ip->i_din2->di_db[0];
761 		soff = start_lbn;
762 	} else {
763 		idp = &start_ap[start_lvl - 1];
764 		if (bread(vp, idp->in_lbn, (int)fs->fs_bsize, NOCRED, &sbp)) {
765 			brelse(sbp);
766 			return (ENOSPC);
767 		}
768 		sbap = (ufs2_daddr_t *)sbp->b_data;
769 		soff = idp->in_off;
770 	}
771 	/*
772 	 * If the block range spans two block maps, get the second map.
773 	 */
774 	if (end_lvl == 0 || (idp = &end_ap[end_lvl - 1])->in_off + 1 >= len) {
775 		ssize = len;
776 	} else {
777 #ifdef INVARIANTS
778 		if (start_lvl > 0 &&
779 		    start_ap[start_lvl - 1].in_lbn == idp->in_lbn)
780 			panic("ffs_reallocblk: start == end");
781 #endif
782 		ssize = len - (idp->in_off + 1);
783 		if (bread(vp, idp->in_lbn, (int)fs->fs_bsize, NOCRED, &ebp))
784 			goto fail;
785 		ebap = (ufs2_daddr_t *)ebp->b_data;
786 	}
787 	/*
788 	 * Find the preferred location for the cluster.
789 	 */
790 	UFS_LOCK(ump);
791 	pref = ffs_blkpref_ufs2(ip, start_lbn, soff, sbap);
792 	/*
793 	 * Search the block map looking for an allocation of the desired size.
794 	 */
795 	if ((newblk = ffs_hashalloc(ip, dtog(fs, pref), pref,
796 	    len, len, ffs_clusteralloc)) == 0) {
797 		UFS_UNLOCK(ump);
798 		goto fail;
799 	}
800 	/*
801 	 * We have found a new contiguous block.
802 	 *
803 	 * First we have to replace the old block pointers with the new
804 	 * block pointers in the inode and indirect blocks associated
805 	 * with the file.
806 	 */
807 #ifdef DEBUG
808 	if (prtrealloc)
809 		printf("realloc: ino %d, lbns %jd-%jd\n\told:", ip->i_number,
810 		    (intmax_t)start_lbn, (intmax_t)end_lbn);
811 #endif
812 	blkno = newblk;
813 	for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->fs_frag) {
814 		if (i == ssize) {
815 			bap = ebap;
816 			soff = -i;
817 		}
818 #ifdef INVARIANTS
819 		if (!ffs_checkblk(ip,
820 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
821 			panic("ffs_reallocblks: unallocated block 2");
822 		if (dbtofsb(fs, buflist->bs_children[i]->b_blkno) != *bap)
823 			panic("ffs_reallocblks: alloc mismatch");
824 #endif
825 #ifdef DEBUG
826 		if (prtrealloc)
827 			printf(" %jd,", (intmax_t)*bap);
828 #endif
829 		if (DOINGSOFTDEP(vp)) {
830 			if (sbap == &ip->i_din2->di_db[0] && i < ssize)
831 				softdep_setup_allocdirect(ip, start_lbn + i,
832 				    blkno, *bap, fs->fs_bsize, fs->fs_bsize,
833 				    buflist->bs_children[i]);
834 			else
835 				softdep_setup_allocindir_page(ip, start_lbn + i,
836 				    i < ssize ? sbp : ebp, soff + i, blkno,
837 				    *bap, buflist->bs_children[i]);
838 		}
839 		*bap++ = blkno;
840 	}
841 	/*
842 	 * Next we must write out the modified inode and indirect blocks.
843 	 * For strict correctness, the writes should be synchronous since
844 	 * the old block values may have been written to disk. In practise
845 	 * they are almost never written, but if we are concerned about
846 	 * strict correctness, the `doasyncfree' flag should be set to zero.
847 	 *
848 	 * The test on `doasyncfree' should be changed to test a flag
849 	 * that shows whether the associated buffers and inodes have
850 	 * been written. The flag should be set when the cluster is
851 	 * started and cleared whenever the buffer or inode is flushed.
852 	 * We can then check below to see if it is set, and do the
853 	 * synchronous write only when it has been cleared.
854 	 */
855 	if (sbap != &ip->i_din2->di_db[0]) {
856 		if (doasyncfree)
857 			bdwrite(sbp);
858 		else
859 			bwrite(sbp);
860 	} else {
861 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
862 		if (!doasyncfree)
863 			ffs_update(vp, 1);
864 	}
865 	if (ssize < len) {
866 		if (doasyncfree)
867 			bdwrite(ebp);
868 		else
869 			bwrite(ebp);
870 	}
871 	/*
872 	 * Last, free the old blocks and assign the new blocks to the buffers.
873 	 */
874 #ifdef DEBUG
875 	if (prtrealloc)
876 		printf("\n\tnew:");
877 #endif
878 	for (blkno = newblk, i = 0; i < len; i++, blkno += fs->fs_frag) {
879 		if (!DOINGSOFTDEP(vp))
880 			ffs_blkfree(ump, fs, ip->i_devvp,
881 			    dbtofsb(fs, buflist->bs_children[i]->b_blkno),
882 			    fs->fs_bsize, ip->i_number, vp->v_type, NULL);
883 		buflist->bs_children[i]->b_blkno = fsbtodb(fs, blkno);
884 #ifdef INVARIANTS
885 		if (!ffs_checkblk(ip,
886 		   dbtofsb(fs, buflist->bs_children[i]->b_blkno), fs->fs_bsize))
887 			panic("ffs_reallocblks: unallocated block 3");
888 #endif
889 #ifdef DEBUG
890 		if (prtrealloc)
891 			printf(" %jd,", (intmax_t)blkno);
892 #endif
893 	}
894 #ifdef DEBUG
895 	if (prtrealloc) {
896 		prtrealloc--;
897 		printf("\n");
898 	}
899 #endif
900 	return (0);
901 
902 fail:
903 	if (ssize < len)
904 		brelse(ebp);
905 	if (sbap != &ip->i_din2->di_db[0])
906 		brelse(sbp);
907 	return (ENOSPC);
908 }
909 
910 /*
911  * Allocate an inode in the filesystem.
912  *
913  * If allocating a directory, use ffs_dirpref to select the inode.
914  * If allocating in a directory, the following hierarchy is followed:
915  *   1) allocate the preferred inode.
916  *   2) allocate an inode in the same cylinder group.
917  *   3) quadradically rehash into other cylinder groups, until an
918  *      available inode is located.
919  * If no inode preference is given the following hierarchy is used
920  * to allocate an inode:
921  *   1) allocate an inode in cylinder group 0.
922  *   2) quadradically rehash into other cylinder groups, until an
923  *      available inode is located.
924  */
925 int
926 ffs_valloc(pvp, mode, cred, vpp)
927 	struct vnode *pvp;
928 	int mode;
929 	struct ucred *cred;
930 	struct vnode **vpp;
931 {
932 	struct inode *pip;
933 	struct fs *fs;
934 	struct inode *ip;
935 	struct timespec ts;
936 	struct ufsmount *ump;
937 	ino_t ino, ipref;
938 	u_int cg;
939 	int error, error1, reclaimed;
940 	static struct timeval lastfail;
941 	static int curfail;
942 
943 	*vpp = NULL;
944 	pip = VTOI(pvp);
945 	fs = pip->i_fs;
946 	ump = pip->i_ump;
947 
948 	UFS_LOCK(ump);
949 	reclaimed = 0;
950 retry:
951 	if (fs->fs_cstotal.cs_nifree == 0)
952 		goto noinodes;
953 
954 	if ((mode & IFMT) == IFDIR)
955 		ipref = ffs_dirpref(pip);
956 	else
957 		ipref = pip->i_number;
958 	if (ipref >= fs->fs_ncg * fs->fs_ipg)
959 		ipref = 0;
960 	cg = ino_to_cg(fs, ipref);
961 	/*
962 	 * Track number of dirs created one after another
963 	 * in a same cg without intervening by files.
964 	 */
965 	if ((mode & IFMT) == IFDIR) {
966 		if (fs->fs_contigdirs[cg] < 255)
967 			fs->fs_contigdirs[cg]++;
968 	} else {
969 		if (fs->fs_contigdirs[cg] > 0)
970 			fs->fs_contigdirs[cg]--;
971 	}
972 	ino = (ino_t)ffs_hashalloc(pip, cg, ipref, mode, 0,
973 					(allocfcn_t *)ffs_nodealloccg);
974 	if (ino == 0)
975 		goto noinodes;
976 	error = ffs_vget(pvp->v_mount, ino, LK_EXCLUSIVE, vpp);
977 	if (error) {
978 		error1 = ffs_vgetf(pvp->v_mount, ino, LK_EXCLUSIVE, vpp,
979 		    FFSV_FORCEINSMQ);
980 		ffs_vfree(pvp, ino, mode);
981 		if (error1 == 0) {
982 			ip = VTOI(*vpp);
983 			if (ip->i_mode)
984 				goto dup_alloc;
985 			ip->i_flag |= IN_MODIFIED;
986 			vput(*vpp);
987 		}
988 		return (error);
989 	}
990 	ip = VTOI(*vpp);
991 	if (ip->i_mode) {
992 dup_alloc:
993 		printf("mode = 0%o, inum = %lu, fs = %s\n",
994 		    ip->i_mode, (u_long)ip->i_number, fs->fs_fsmnt);
995 		panic("ffs_valloc: dup alloc");
996 	}
997 	if (DIP(ip, i_blocks) && (fs->fs_flags & FS_UNCLEAN) == 0) {  /* XXX */
998 		printf("free inode %s/%lu had %ld blocks\n",
999 		    fs->fs_fsmnt, (u_long)ino, (long)DIP(ip, i_blocks));
1000 		DIP_SET(ip, i_blocks, 0);
1001 	}
1002 	ip->i_flags = 0;
1003 	DIP_SET(ip, i_flags, 0);
1004 	/*
1005 	 * Set up a new generation number for this inode.
1006 	 */
1007 	if (ip->i_gen == 0 || ++ip->i_gen == 0)
1008 		ip->i_gen = arc4random() / 2 + 1;
1009 	DIP_SET(ip, i_gen, ip->i_gen);
1010 	if (fs->fs_magic == FS_UFS2_MAGIC) {
1011 		vfs_timestamp(&ts);
1012 		ip->i_din2->di_birthtime = ts.tv_sec;
1013 		ip->i_din2->di_birthnsec = ts.tv_nsec;
1014 	}
1015 	ufs_prepare_reclaim(*vpp);
1016 	ip->i_flag = 0;
1017 	(*vpp)->v_vflag = 0;
1018 	(*vpp)->v_type = VNON;
1019 	if (fs->fs_magic == FS_UFS2_MAGIC)
1020 		(*vpp)->v_op = &ffs_vnodeops2;
1021 	else
1022 		(*vpp)->v_op = &ffs_vnodeops1;
1023 	return (0);
1024 noinodes:
1025 	if (reclaimed == 0) {
1026 		reclaimed = 1;
1027 		softdep_request_cleanup(fs, pvp, cred, FLUSH_INODES_WAIT);
1028 		goto retry;
1029 	}
1030 	UFS_UNLOCK(ump);
1031 	if (ppsratecheck(&lastfail, &curfail, 1)) {
1032 		ffs_fserr(fs, pip->i_number, "out of inodes");
1033 		uprintf("\n%s: create/symlink failed, no inodes free\n",
1034 		    fs->fs_fsmnt);
1035 	}
1036 	return (ENOSPC);
1037 }
1038 
1039 /*
1040  * Find a cylinder group to place a directory.
1041  *
1042  * The policy implemented by this algorithm is to allocate a
1043  * directory inode in the same cylinder group as its parent
1044  * directory, but also to reserve space for its files inodes
1045  * and data. Restrict the number of directories which may be
1046  * allocated one after another in the same cylinder group
1047  * without intervening allocation of files.
1048  *
1049  * If we allocate a first level directory then force allocation
1050  * in another cylinder group.
1051  */
1052 static ino_t
1053 ffs_dirpref(pip)
1054 	struct inode *pip;
1055 {
1056 	struct fs *fs;
1057 	u_int cg, prefcg, dirsize, cgsize;
1058 	u_int avgifree, avgbfree, avgndir, curdirsize;
1059 	u_int minifree, minbfree, maxndir;
1060 	u_int mincg, minndir;
1061 	u_int maxcontigdirs;
1062 
1063 	mtx_assert(UFS_MTX(pip->i_ump), MA_OWNED);
1064 	fs = pip->i_fs;
1065 
1066 	avgifree = fs->fs_cstotal.cs_nifree / fs->fs_ncg;
1067 	avgbfree = fs->fs_cstotal.cs_nbfree / fs->fs_ncg;
1068 	avgndir = fs->fs_cstotal.cs_ndir / fs->fs_ncg;
1069 
1070 	/*
1071 	 * Force allocation in another cg if creating a first level dir.
1072 	 */
1073 	ASSERT_VOP_LOCKED(ITOV(pip), "ffs_dirpref");
1074 	if (ITOV(pip)->v_vflag & VV_ROOT) {
1075 		prefcg = arc4random() % fs->fs_ncg;
1076 		mincg = prefcg;
1077 		minndir = fs->fs_ipg;
1078 		for (cg = prefcg; cg < fs->fs_ncg; cg++)
1079 			if (fs->fs_cs(fs, cg).cs_ndir < minndir &&
1080 			    fs->fs_cs(fs, cg).cs_nifree >= avgifree &&
1081 			    fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1082 				mincg = cg;
1083 				minndir = fs->fs_cs(fs, cg).cs_ndir;
1084 			}
1085 		for (cg = 0; cg < prefcg; cg++)
1086 			if (fs->fs_cs(fs, cg).cs_ndir < minndir &&
1087 			    fs->fs_cs(fs, cg).cs_nifree >= avgifree &&
1088 			    fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1089 				mincg = cg;
1090 				minndir = fs->fs_cs(fs, cg).cs_ndir;
1091 			}
1092 		return ((ino_t)(fs->fs_ipg * mincg));
1093 	}
1094 
1095 	/*
1096 	 * Count various limits which used for
1097 	 * optimal allocation of a directory inode.
1098 	 */
1099 	maxndir = min(avgndir + fs->fs_ipg / 16, fs->fs_ipg);
1100 	minifree = avgifree - avgifree / 4;
1101 	if (minifree < 1)
1102 		minifree = 1;
1103 	minbfree = avgbfree - avgbfree / 4;
1104 	if (minbfree < 1)
1105 		minbfree = 1;
1106 	cgsize = fs->fs_fsize * fs->fs_fpg;
1107 	dirsize = fs->fs_avgfilesize * fs->fs_avgfpdir;
1108 	curdirsize = avgndir ? (cgsize - avgbfree * fs->fs_bsize) / avgndir : 0;
1109 	if (dirsize < curdirsize)
1110 		dirsize = curdirsize;
1111 	if (dirsize <= 0)
1112 		maxcontigdirs = 0;		/* dirsize overflowed */
1113 	else
1114 		maxcontigdirs = min((avgbfree * fs->fs_bsize) / dirsize, 255);
1115 	if (fs->fs_avgfpdir > 0)
1116 		maxcontigdirs = min(maxcontigdirs,
1117 				    fs->fs_ipg / fs->fs_avgfpdir);
1118 	if (maxcontigdirs == 0)
1119 		maxcontigdirs = 1;
1120 
1121 	/*
1122 	 * Limit number of dirs in one cg and reserve space for
1123 	 * regular files, but only if we have no deficit in
1124 	 * inodes or space.
1125 	 */
1126 	prefcg = ino_to_cg(fs, pip->i_number);
1127 	for (cg = prefcg; cg < fs->fs_ncg; cg++)
1128 		if (fs->fs_cs(fs, cg).cs_ndir < maxndir &&
1129 		    fs->fs_cs(fs, cg).cs_nifree >= minifree &&
1130 	    	    fs->fs_cs(fs, cg).cs_nbfree >= minbfree) {
1131 			if (fs->fs_contigdirs[cg] < maxcontigdirs)
1132 				return ((ino_t)(fs->fs_ipg * cg));
1133 		}
1134 	for (cg = 0; cg < prefcg; cg++)
1135 		if (fs->fs_cs(fs, cg).cs_ndir < maxndir &&
1136 		    fs->fs_cs(fs, cg).cs_nifree >= minifree &&
1137 	    	    fs->fs_cs(fs, cg).cs_nbfree >= minbfree) {
1138 			if (fs->fs_contigdirs[cg] < maxcontigdirs)
1139 				return ((ino_t)(fs->fs_ipg * cg));
1140 		}
1141 	/*
1142 	 * This is a backstop when we have deficit in space.
1143 	 */
1144 	for (cg = prefcg; cg < fs->fs_ncg; cg++)
1145 		if (fs->fs_cs(fs, cg).cs_nifree >= avgifree)
1146 			return ((ino_t)(fs->fs_ipg * cg));
1147 	for (cg = 0; cg < prefcg; cg++)
1148 		if (fs->fs_cs(fs, cg).cs_nifree >= avgifree)
1149 			break;
1150 	return ((ino_t)(fs->fs_ipg * cg));
1151 }
1152 
1153 /*
1154  * Select the desired position for the next block in a file.  The file is
1155  * logically divided into sections. The first section is composed of the
1156  * direct blocks. Each additional section contains fs_maxbpg blocks.
1157  *
1158  * If no blocks have been allocated in the first section, the policy is to
1159  * request a block in the same cylinder group as the inode that describes
1160  * the file. If no blocks have been allocated in any other section, the
1161  * policy is to place the section in a cylinder group with a greater than
1162  * average number of free blocks.  An appropriate cylinder group is found
1163  * by using a rotor that sweeps the cylinder groups. When a new group of
1164  * blocks is needed, the sweep begins in the cylinder group following the
1165  * cylinder group from which the previous allocation was made. The sweep
1166  * continues until a cylinder group with greater than the average number
1167  * of free blocks is found. If the allocation is for the first block in an
1168  * indirect block, the information on the previous allocation is unavailable;
1169  * here a best guess is made based upon the logical block number being
1170  * allocated.
1171  *
1172  * If a section is already partially allocated, the policy is to
1173  * contiguously allocate fs_maxcontig blocks. The end of one of these
1174  * contiguous blocks and the beginning of the next is laid out
1175  * contiguously if possible.
1176  */
1177 ufs2_daddr_t
1178 ffs_blkpref_ufs1(ip, lbn, indx, bap)
1179 	struct inode *ip;
1180 	ufs_lbn_t lbn;
1181 	int indx;
1182 	ufs1_daddr_t *bap;
1183 {
1184 	struct fs *fs;
1185 	u_int cg;
1186 	u_int avgbfree, startcg;
1187 
1188 	mtx_assert(UFS_MTX(ip->i_ump), MA_OWNED);
1189 	fs = ip->i_fs;
1190 	if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) {
1191 		if (lbn < NDADDR + NINDIR(fs)) {
1192 			cg = ino_to_cg(fs, ip->i_number);
1193 			return (cgbase(fs, cg) + fs->fs_frag);
1194 		}
1195 		/*
1196 		 * Find a cylinder with greater than average number of
1197 		 * unused data blocks.
1198 		 */
1199 		if (indx == 0 || bap[indx - 1] == 0)
1200 			startcg =
1201 			    ino_to_cg(fs, ip->i_number) + lbn / fs->fs_maxbpg;
1202 		else
1203 			startcg = dtog(fs, bap[indx - 1]) + 1;
1204 		startcg %= fs->fs_ncg;
1205 		avgbfree = fs->fs_cstotal.cs_nbfree / fs->fs_ncg;
1206 		for (cg = startcg; cg < fs->fs_ncg; cg++)
1207 			if (fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1208 				fs->fs_cgrotor = cg;
1209 				return (cgbase(fs, cg) + fs->fs_frag);
1210 			}
1211 		for (cg = 0; cg <= startcg; cg++)
1212 			if (fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1213 				fs->fs_cgrotor = cg;
1214 				return (cgbase(fs, cg) + fs->fs_frag);
1215 			}
1216 		return (0);
1217 	}
1218 	/*
1219 	 * We just always try to lay things out contiguously.
1220 	 */
1221 	return (bap[indx - 1] + fs->fs_frag);
1222 }
1223 
1224 /*
1225  * Same as above, but for UFS2
1226  */
1227 ufs2_daddr_t
1228 ffs_blkpref_ufs2(ip, lbn, indx, bap)
1229 	struct inode *ip;
1230 	ufs_lbn_t lbn;
1231 	int indx;
1232 	ufs2_daddr_t *bap;
1233 {
1234 	struct fs *fs;
1235 	u_int cg;
1236 	u_int avgbfree, startcg;
1237 
1238 	mtx_assert(UFS_MTX(ip->i_ump), MA_OWNED);
1239 	fs = ip->i_fs;
1240 	if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) {
1241 		if (lbn < NDADDR + NINDIR(fs)) {
1242 			cg = ino_to_cg(fs, ip->i_number);
1243 			return (cgbase(fs, cg) + fs->fs_frag);
1244 		}
1245 		/*
1246 		 * Find a cylinder with greater than average number of
1247 		 * unused data blocks.
1248 		 */
1249 		if (indx == 0 || bap[indx - 1] == 0)
1250 			startcg =
1251 			    ino_to_cg(fs, ip->i_number) + lbn / fs->fs_maxbpg;
1252 		else
1253 			startcg = dtog(fs, bap[indx - 1]) + 1;
1254 		startcg %= fs->fs_ncg;
1255 		avgbfree = fs->fs_cstotal.cs_nbfree / fs->fs_ncg;
1256 		for (cg = startcg; cg < fs->fs_ncg; cg++)
1257 			if (fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1258 				fs->fs_cgrotor = cg;
1259 				return (cgbase(fs, cg) + fs->fs_frag);
1260 			}
1261 		for (cg = 0; cg <= startcg; cg++)
1262 			if (fs->fs_cs(fs, cg).cs_nbfree >= avgbfree) {
1263 				fs->fs_cgrotor = cg;
1264 				return (cgbase(fs, cg) + fs->fs_frag);
1265 			}
1266 		return (0);
1267 	}
1268 	/*
1269 	 * We just always try to lay things out contiguously.
1270 	 */
1271 	return (bap[indx - 1] + fs->fs_frag);
1272 }
1273 
1274 /*
1275  * Implement the cylinder overflow algorithm.
1276  *
1277  * The policy implemented by this algorithm is:
1278  *   1) allocate the block in its requested cylinder group.
1279  *   2) quadradically rehash on the cylinder group number.
1280  *   3) brute force search for a free block.
1281  *
1282  * Must be called with the UFS lock held.  Will release the lock on success
1283  * and return with it held on failure.
1284  */
1285 /*VARARGS5*/
1286 static ufs2_daddr_t
1287 ffs_hashalloc(ip, cg, pref, size, rsize, allocator)
1288 	struct inode *ip;
1289 	u_int cg;
1290 	ufs2_daddr_t pref;
1291 	int size;	/* Search size for data blocks, mode for inodes */
1292 	int rsize;	/* Real allocated size. */
1293 	allocfcn_t *allocator;
1294 {
1295 	struct fs *fs;
1296 	ufs2_daddr_t result;
1297 	u_int i, icg = cg;
1298 
1299 	mtx_assert(UFS_MTX(ip->i_ump), MA_OWNED);
1300 #ifdef INVARIANTS
1301 	if (ITOV(ip)->v_mount->mnt_kern_flag & MNTK_SUSPENDED)
1302 		panic("ffs_hashalloc: allocation on suspended filesystem");
1303 #endif
1304 	fs = ip->i_fs;
1305 	/*
1306 	 * 1: preferred cylinder group
1307 	 */
1308 	result = (*allocator)(ip, cg, pref, size, rsize);
1309 	if (result)
1310 		return (result);
1311 	/*
1312 	 * 2: quadratic rehash
1313 	 */
1314 	for (i = 1; i < fs->fs_ncg; i *= 2) {
1315 		cg += i;
1316 		if (cg >= fs->fs_ncg)
1317 			cg -= fs->fs_ncg;
1318 		result = (*allocator)(ip, cg, 0, size, rsize);
1319 		if (result)
1320 			return (result);
1321 	}
1322 	/*
1323 	 * 3: brute force search
1324 	 * Note that we start at i == 2, since 0 was checked initially,
1325 	 * and 1 is always checked in the quadratic rehash.
1326 	 */
1327 	cg = (icg + 2) % fs->fs_ncg;
1328 	for (i = 2; i < fs->fs_ncg; i++) {
1329 		result = (*allocator)(ip, cg, 0, size, rsize);
1330 		if (result)
1331 			return (result);
1332 		cg++;
1333 		if (cg == fs->fs_ncg)
1334 			cg = 0;
1335 	}
1336 	return (0);
1337 }
1338 
1339 /*
1340  * Determine whether a fragment can be extended.
1341  *
1342  * Check to see if the necessary fragments are available, and
1343  * if they are, allocate them.
1344  */
1345 static ufs2_daddr_t
1346 ffs_fragextend(ip, cg, bprev, osize, nsize)
1347 	struct inode *ip;
1348 	u_int cg;
1349 	ufs2_daddr_t bprev;
1350 	int osize, nsize;
1351 {
1352 	struct fs *fs;
1353 	struct cg *cgp;
1354 	struct buf *bp;
1355 	struct ufsmount *ump;
1356 	int nffree;
1357 	long bno;
1358 	int frags, bbase;
1359 	int i, error;
1360 	u_int8_t *blksfree;
1361 
1362 	ump = ip->i_ump;
1363 	fs = ip->i_fs;
1364 	if (fs->fs_cs(fs, cg).cs_nffree < numfrags(fs, nsize - osize))
1365 		return (0);
1366 	frags = numfrags(fs, nsize);
1367 	bbase = fragnum(fs, bprev);
1368 	if (bbase > fragnum(fs, (bprev + frags - 1))) {
1369 		/* cannot extend across a block boundary */
1370 		return (0);
1371 	}
1372 	UFS_UNLOCK(ump);
1373 	error = bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, cg)),
1374 		(int)fs->fs_cgsize, NOCRED, &bp);
1375 	if (error)
1376 		goto fail;
1377 	cgp = (struct cg *)bp->b_data;
1378 	if (!cg_chkmagic(cgp))
1379 		goto fail;
1380 	bp->b_xflags |= BX_BKGRDWRITE;
1381 	cgp->cg_old_time = cgp->cg_time = time_second;
1382 	bno = dtogd(fs, bprev);
1383 	blksfree = cg_blksfree(cgp);
1384 	for (i = numfrags(fs, osize); i < frags; i++)
1385 		if (isclr(blksfree, bno + i))
1386 			goto fail;
1387 	/*
1388 	 * the current fragment can be extended
1389 	 * deduct the count on fragment being extended into
1390 	 * increase the count on the remaining fragment (if any)
1391 	 * allocate the extended piece
1392 	 */
1393 	for (i = frags; i < fs->fs_frag - bbase; i++)
1394 		if (isclr(blksfree, bno + i))
1395 			break;
1396 	cgp->cg_frsum[i - numfrags(fs, osize)]--;
1397 	if (i != frags)
1398 		cgp->cg_frsum[i - frags]++;
1399 	for (i = numfrags(fs, osize), nffree = 0; i < frags; i++) {
1400 		clrbit(blksfree, bno + i);
1401 		cgp->cg_cs.cs_nffree--;
1402 		nffree++;
1403 	}
1404 	UFS_LOCK(ump);
1405 	fs->fs_cstotal.cs_nffree -= nffree;
1406 	fs->fs_cs(fs, cg).cs_nffree -= nffree;
1407 	fs->fs_fmod = 1;
1408 	ACTIVECLEAR(fs, cg);
1409 	UFS_UNLOCK(ump);
1410 	if (DOINGSOFTDEP(ITOV(ip)))
1411 		softdep_setup_blkmapdep(bp, UFSTOVFS(ump), bprev,
1412 		    frags, numfrags(fs, osize));
1413 	bdwrite(bp);
1414 	return (bprev);
1415 
1416 fail:
1417 	brelse(bp);
1418 	UFS_LOCK(ump);
1419 	return (0);
1420 
1421 }
1422 
1423 /*
1424  * Determine whether a block can be allocated.
1425  *
1426  * Check to see if a block of the appropriate size is available,
1427  * and if it is, allocate it.
1428  */
1429 static ufs2_daddr_t
1430 ffs_alloccg(ip, cg, bpref, size, rsize)
1431 	struct inode *ip;
1432 	u_int cg;
1433 	ufs2_daddr_t bpref;
1434 	int size;
1435 	int rsize;
1436 {
1437 	struct fs *fs;
1438 	struct cg *cgp;
1439 	struct buf *bp;
1440 	struct ufsmount *ump;
1441 	ufs1_daddr_t bno;
1442 	ufs2_daddr_t blkno;
1443 	int i, allocsiz, error, frags;
1444 	u_int8_t *blksfree;
1445 
1446 	ump = ip->i_ump;
1447 	fs = ip->i_fs;
1448 	if (fs->fs_cs(fs, cg).cs_nbfree == 0 && size == fs->fs_bsize)
1449 		return (0);
1450 	UFS_UNLOCK(ump);
1451 	error = bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, cg)),
1452 		(int)fs->fs_cgsize, NOCRED, &bp);
1453 	if (error)
1454 		goto fail;
1455 	cgp = (struct cg *)bp->b_data;
1456 	if (!cg_chkmagic(cgp) ||
1457 	    (cgp->cg_cs.cs_nbfree == 0 && size == fs->fs_bsize))
1458 		goto fail;
1459 	bp->b_xflags |= BX_BKGRDWRITE;
1460 	cgp->cg_old_time = cgp->cg_time = time_second;
1461 	if (size == fs->fs_bsize) {
1462 		UFS_LOCK(ump);
1463 		blkno = ffs_alloccgblk(ip, bp, bpref, rsize);
1464 		ACTIVECLEAR(fs, cg);
1465 		UFS_UNLOCK(ump);
1466 		bdwrite(bp);
1467 		return (blkno);
1468 	}
1469 	/*
1470 	 * check to see if any fragments are already available
1471 	 * allocsiz is the size which will be allocated, hacking
1472 	 * it down to a smaller size if necessary
1473 	 */
1474 	blksfree = cg_blksfree(cgp);
1475 	frags = numfrags(fs, size);
1476 	for (allocsiz = frags; allocsiz < fs->fs_frag; allocsiz++)
1477 		if (cgp->cg_frsum[allocsiz] != 0)
1478 			break;
1479 	if (allocsiz == fs->fs_frag) {
1480 		/*
1481 		 * no fragments were available, so a block will be
1482 		 * allocated, and hacked up
1483 		 */
1484 		if (cgp->cg_cs.cs_nbfree == 0)
1485 			goto fail;
1486 		UFS_LOCK(ump);
1487 		blkno = ffs_alloccgblk(ip, bp, bpref, rsize);
1488 		ACTIVECLEAR(fs, cg);
1489 		UFS_UNLOCK(ump);
1490 		bdwrite(bp);
1491 		return (blkno);
1492 	}
1493 	KASSERT(size == rsize,
1494 	    ("ffs_alloccg: size(%d) != rsize(%d)", size, rsize));
1495 	bno = ffs_mapsearch(fs, cgp, bpref, allocsiz);
1496 	if (bno < 0)
1497 		goto fail;
1498 	for (i = 0; i < frags; i++)
1499 		clrbit(blksfree, bno + i);
1500 	cgp->cg_cs.cs_nffree -= frags;
1501 	cgp->cg_frsum[allocsiz]--;
1502 	if (frags != allocsiz)
1503 		cgp->cg_frsum[allocsiz - frags]++;
1504 	UFS_LOCK(ump);
1505 	fs->fs_cstotal.cs_nffree -= frags;
1506 	fs->fs_cs(fs, cg).cs_nffree -= frags;
1507 	fs->fs_fmod = 1;
1508 	blkno = cgbase(fs, cg) + bno;
1509 	ACTIVECLEAR(fs, cg);
1510 	UFS_UNLOCK(ump);
1511 	if (DOINGSOFTDEP(ITOV(ip)))
1512 		softdep_setup_blkmapdep(bp, UFSTOVFS(ump), blkno, frags, 0);
1513 	bdwrite(bp);
1514 	return (blkno);
1515 
1516 fail:
1517 	brelse(bp);
1518 	UFS_LOCK(ump);
1519 	return (0);
1520 }
1521 
1522 /*
1523  * Allocate a block in a cylinder group.
1524  *
1525  * This algorithm implements the following policy:
1526  *   1) allocate the requested block.
1527  *   2) allocate a rotationally optimal block in the same cylinder.
1528  *   3) allocate the next available block on the block rotor for the
1529  *      specified cylinder group.
1530  * Note that this routine only allocates fs_bsize blocks; these
1531  * blocks may be fragmented by the routine that allocates them.
1532  */
1533 static ufs2_daddr_t
1534 ffs_alloccgblk(ip, bp, bpref, size)
1535 	struct inode *ip;
1536 	struct buf *bp;
1537 	ufs2_daddr_t bpref;
1538 	int size;
1539 {
1540 	struct fs *fs;
1541 	struct cg *cgp;
1542 	struct ufsmount *ump;
1543 	ufs1_daddr_t bno;
1544 	ufs2_daddr_t blkno;
1545 	u_int8_t *blksfree;
1546 	int i;
1547 
1548 	fs = ip->i_fs;
1549 	ump = ip->i_ump;
1550 	mtx_assert(UFS_MTX(ump), MA_OWNED);
1551 	cgp = (struct cg *)bp->b_data;
1552 	blksfree = cg_blksfree(cgp);
1553 	if (bpref == 0 || dtog(fs, bpref) != cgp->cg_cgx) {
1554 		bpref = cgp->cg_rotor;
1555 	} else {
1556 		bpref = blknum(fs, bpref);
1557 		bno = dtogd(fs, bpref);
1558 		/*
1559 		 * if the requested block is available, use it
1560 		 */
1561 		if (ffs_isblock(fs, blksfree, fragstoblks(fs, bno)))
1562 			goto gotit;
1563 	}
1564 	/*
1565 	 * Take the next available block in this cylinder group.
1566 	 */
1567 	bno = ffs_mapsearch(fs, cgp, bpref, (int)fs->fs_frag);
1568 	if (bno < 0)
1569 		return (0);
1570 	cgp->cg_rotor = bno;
1571 gotit:
1572 	blkno = fragstoblks(fs, bno);
1573 	ffs_clrblock(fs, blksfree, (long)blkno);
1574 	ffs_clusteracct(fs, cgp, blkno, -1);
1575 	cgp->cg_cs.cs_nbfree--;
1576 	fs->fs_cstotal.cs_nbfree--;
1577 	fs->fs_cs(fs, cgp->cg_cgx).cs_nbfree--;
1578 	fs->fs_fmod = 1;
1579 	blkno = cgbase(fs, cgp->cg_cgx) + bno;
1580 	/*
1581 	 * If the caller didn't want the whole block free the frags here.
1582 	 */
1583 	size = numfrags(fs, size);
1584 	if (size != fs->fs_frag) {
1585 		bno = dtogd(fs, blkno);
1586 		for (i = size; i < fs->fs_frag; i++)
1587 			setbit(blksfree, bno + i);
1588 		i = fs->fs_frag - size;
1589 		cgp->cg_cs.cs_nffree += i;
1590 		fs->fs_cstotal.cs_nffree += i;
1591 		fs->fs_cs(fs, cgp->cg_cgx).cs_nffree += i;
1592 		fs->fs_fmod = 1;
1593 		cgp->cg_frsum[i]++;
1594 	}
1595 	/* XXX Fixme. */
1596 	UFS_UNLOCK(ump);
1597 	if (DOINGSOFTDEP(ITOV(ip)))
1598 		softdep_setup_blkmapdep(bp, UFSTOVFS(ump), blkno,
1599 		    size, 0);
1600 	UFS_LOCK(ump);
1601 	return (blkno);
1602 }
1603 
1604 /*
1605  * Determine whether a cluster can be allocated.
1606  *
1607  * We do not currently check for optimal rotational layout if there
1608  * are multiple choices in the same cylinder group. Instead we just
1609  * take the first one that we find following bpref.
1610  */
1611 static ufs2_daddr_t
1612 ffs_clusteralloc(ip, cg, bpref, len, unused)
1613 	struct inode *ip;
1614 	u_int cg;
1615 	ufs2_daddr_t bpref;
1616 	int len;
1617 	int unused;
1618 {
1619 	struct fs *fs;
1620 	struct cg *cgp;
1621 	struct buf *bp;
1622 	struct ufsmount *ump;
1623 	int i, run, bit, map, got;
1624 	ufs2_daddr_t bno;
1625 	u_char *mapp;
1626 	int32_t *lp;
1627 	u_int8_t *blksfree;
1628 
1629 	fs = ip->i_fs;
1630 	ump = ip->i_ump;
1631 	if (fs->fs_maxcluster[cg] < len)
1632 		return (0);
1633 	UFS_UNLOCK(ump);
1634 	if (bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, cg)), (int)fs->fs_cgsize,
1635 	    NOCRED, &bp))
1636 		goto fail_lock;
1637 	cgp = (struct cg *)bp->b_data;
1638 	if (!cg_chkmagic(cgp))
1639 		goto fail_lock;
1640 	bp->b_xflags |= BX_BKGRDWRITE;
1641 	/*
1642 	 * Check to see if a cluster of the needed size (or bigger) is
1643 	 * available in this cylinder group.
1644 	 */
1645 	lp = &cg_clustersum(cgp)[len];
1646 	for (i = len; i <= fs->fs_contigsumsize; i++)
1647 		if (*lp++ > 0)
1648 			break;
1649 	if (i > fs->fs_contigsumsize) {
1650 		/*
1651 		 * This is the first time looking for a cluster in this
1652 		 * cylinder group. Update the cluster summary information
1653 		 * to reflect the true maximum sized cluster so that
1654 		 * future cluster allocation requests can avoid reading
1655 		 * the cylinder group map only to find no clusters.
1656 		 */
1657 		lp = &cg_clustersum(cgp)[len - 1];
1658 		for (i = len - 1; i > 0; i--)
1659 			if (*lp-- > 0)
1660 				break;
1661 		UFS_LOCK(ump);
1662 		fs->fs_maxcluster[cg] = i;
1663 		goto fail;
1664 	}
1665 	/*
1666 	 * Search the cluster map to find a big enough cluster.
1667 	 * We take the first one that we find, even if it is larger
1668 	 * than we need as we prefer to get one close to the previous
1669 	 * block allocation. We do not search before the current
1670 	 * preference point as we do not want to allocate a block
1671 	 * that is allocated before the previous one (as we will
1672 	 * then have to wait for another pass of the elevator
1673 	 * algorithm before it will be read). We prefer to fail and
1674 	 * be recalled to try an allocation in the next cylinder group.
1675 	 */
1676 	if (dtog(fs, bpref) != cg)
1677 		bpref = 0;
1678 	else
1679 		bpref = fragstoblks(fs, dtogd(fs, blknum(fs, bpref)));
1680 	mapp = &cg_clustersfree(cgp)[bpref / NBBY];
1681 	map = *mapp++;
1682 	bit = 1 << (bpref % NBBY);
1683 	for (run = 0, got = bpref; got < cgp->cg_nclusterblks; got++) {
1684 		if ((map & bit) == 0) {
1685 			run = 0;
1686 		} else {
1687 			run++;
1688 			if (run == len)
1689 				break;
1690 		}
1691 		if ((got & (NBBY - 1)) != (NBBY - 1)) {
1692 			bit <<= 1;
1693 		} else {
1694 			map = *mapp++;
1695 			bit = 1;
1696 		}
1697 	}
1698 	if (got >= cgp->cg_nclusterblks)
1699 		goto fail_lock;
1700 	/*
1701 	 * Allocate the cluster that we have found.
1702 	 */
1703 	blksfree = cg_blksfree(cgp);
1704 	for (i = 1; i <= len; i++)
1705 		if (!ffs_isblock(fs, blksfree, got - run + i))
1706 			panic("ffs_clusteralloc: map mismatch");
1707 	bno = cgbase(fs, cg) + blkstofrags(fs, got - run + 1);
1708 	if (dtog(fs, bno) != cg)
1709 		panic("ffs_clusteralloc: allocated out of group");
1710 	len = blkstofrags(fs, len);
1711 	UFS_LOCK(ump);
1712 	for (i = 0; i < len; i += fs->fs_frag)
1713 		if (ffs_alloccgblk(ip, bp, bno + i, fs->fs_bsize) != bno + i)
1714 			panic("ffs_clusteralloc: lost block");
1715 	ACTIVECLEAR(fs, cg);
1716 	UFS_UNLOCK(ump);
1717 	bdwrite(bp);
1718 	return (bno);
1719 
1720 fail_lock:
1721 	UFS_LOCK(ump);
1722 fail:
1723 	brelse(bp);
1724 	return (0);
1725 }
1726 
1727 /*
1728  * Determine whether an inode can be allocated.
1729  *
1730  * Check to see if an inode is available, and if it is,
1731  * allocate it using the following policy:
1732  *   1) allocate the requested inode.
1733  *   2) allocate the next available inode after the requested
1734  *      inode in the specified cylinder group.
1735  */
1736 static ufs2_daddr_t
1737 ffs_nodealloccg(ip, cg, ipref, mode, unused)
1738 	struct inode *ip;
1739 	u_int cg;
1740 	ufs2_daddr_t ipref;
1741 	int mode;
1742 	int unused;
1743 {
1744 	struct fs *fs;
1745 	struct cg *cgp;
1746 	struct buf *bp, *ibp;
1747 	struct ufsmount *ump;
1748 	u_int8_t *inosused, *loc;
1749 	struct ufs2_dinode *dp2;
1750 	int error, start, len, i;
1751 
1752 	fs = ip->i_fs;
1753 	ump = ip->i_ump;
1754 	if (fs->fs_cs(fs, cg).cs_nifree == 0)
1755 		return (0);
1756 	UFS_UNLOCK(ump);
1757 	error = bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, cg)),
1758 		(int)fs->fs_cgsize, NOCRED, &bp);
1759 	if (error) {
1760 		brelse(bp);
1761 		UFS_LOCK(ump);
1762 		return (0);
1763 	}
1764 	cgp = (struct cg *)bp->b_data;
1765 	if (!cg_chkmagic(cgp) || cgp->cg_cs.cs_nifree == 0) {
1766 		brelse(bp);
1767 		UFS_LOCK(ump);
1768 		return (0);
1769 	}
1770 	bp->b_xflags |= BX_BKGRDWRITE;
1771 	cgp->cg_old_time = cgp->cg_time = time_second;
1772 	inosused = cg_inosused(cgp);
1773 	if (ipref) {
1774 		ipref %= fs->fs_ipg;
1775 		if (isclr(inosused, ipref))
1776 			goto gotit;
1777 	}
1778 	start = cgp->cg_irotor / NBBY;
1779 	len = howmany(fs->fs_ipg - cgp->cg_irotor, NBBY);
1780 	loc = memcchr(&inosused[start], 0xff, len);
1781 	if (loc == NULL) {
1782 		len = start + 1;
1783 		start = 0;
1784 		loc = memcchr(&inosused[start], 0xff, len);
1785 		if (loc == NULL) {
1786 			printf("cg = %d, irotor = %ld, fs = %s\n",
1787 			    cg, (long)cgp->cg_irotor, fs->fs_fsmnt);
1788 			panic("ffs_nodealloccg: map corrupted");
1789 			/* NOTREACHED */
1790 		}
1791 	}
1792 	ipref = (loc - inosused) * NBBY + ffs(~*loc) - 1;
1793 	cgp->cg_irotor = ipref;
1794 gotit:
1795 	/*
1796 	 * Check to see if we need to initialize more inodes.
1797 	 */
1798 	ibp = NULL;
1799 	if (fs->fs_magic == FS_UFS2_MAGIC &&
1800 	    ipref + INOPB(fs) > cgp->cg_initediblk &&
1801 	    cgp->cg_initediblk < cgp->cg_niblk) {
1802 		ibp = getblk(ip->i_devvp, fsbtodb(fs,
1803 		    ino_to_fsba(fs, cg * fs->fs_ipg + cgp->cg_initediblk)),
1804 		    (int)fs->fs_bsize, 0, 0, 0);
1805 		bzero(ibp->b_data, (int)fs->fs_bsize);
1806 		dp2 = (struct ufs2_dinode *)(ibp->b_data);
1807 		for (i = 0; i < INOPB(fs); i++) {
1808 			dp2->di_gen = arc4random() / 2 + 1;
1809 			dp2++;
1810 		}
1811 		cgp->cg_initediblk += INOPB(fs);
1812 	}
1813 	UFS_LOCK(ump);
1814 	ACTIVECLEAR(fs, cg);
1815 	setbit(inosused, ipref);
1816 	cgp->cg_cs.cs_nifree--;
1817 	fs->fs_cstotal.cs_nifree--;
1818 	fs->fs_cs(fs, cg).cs_nifree--;
1819 	fs->fs_fmod = 1;
1820 	if ((mode & IFMT) == IFDIR) {
1821 		cgp->cg_cs.cs_ndir++;
1822 		fs->fs_cstotal.cs_ndir++;
1823 		fs->fs_cs(fs, cg).cs_ndir++;
1824 	}
1825 	UFS_UNLOCK(ump);
1826 	if (DOINGSOFTDEP(ITOV(ip)))
1827 		softdep_setup_inomapdep(bp, ip, cg * fs->fs_ipg + ipref, mode);
1828 	bdwrite(bp);
1829 	if (ibp != NULL)
1830 		bawrite(ibp);
1831 	return ((ino_t)(cg * fs->fs_ipg + ipref));
1832 }
1833 
1834 /*
1835  * Free a block or fragment.
1836  *
1837  * The specified block or fragment is placed back in the
1838  * free map. If a fragment is deallocated, a possible
1839  * block reassembly is checked.
1840  */
1841 static void
1842 ffs_blkfree_cg(ump, fs, devvp, bno, size, inum, dephd)
1843 	struct ufsmount *ump;
1844 	struct fs *fs;
1845 	struct vnode *devvp;
1846 	ufs2_daddr_t bno;
1847 	long size;
1848 	ino_t inum;
1849 	struct workhead *dephd;
1850 {
1851 	struct mount *mp;
1852 	struct cg *cgp;
1853 	struct buf *bp;
1854 	ufs1_daddr_t fragno, cgbno;
1855 	ufs2_daddr_t cgblkno;
1856 	int i, blk, frags, bbase;
1857 	u_int cg;
1858 	u_int8_t *blksfree;
1859 	struct cdev *dev;
1860 
1861 	cg = dtog(fs, bno);
1862 	if (devvp->v_type == VREG) {
1863 		/* devvp is a snapshot */
1864 		dev = VTOI(devvp)->i_devvp->v_rdev;
1865 		cgblkno = fragstoblks(fs, cgtod(fs, cg));
1866 	} else {
1867 		/* devvp is a normal disk device */
1868 		dev = devvp->v_rdev;
1869 		cgblkno = fsbtodb(fs, cgtod(fs, cg));
1870 		ASSERT_VOP_LOCKED(devvp, "ffs_blkfree_cg");
1871 	}
1872 #ifdef INVARIANTS
1873 	if ((u_int)size > fs->fs_bsize || fragoff(fs, size) != 0 ||
1874 	    fragnum(fs, bno) + numfrags(fs, size) > fs->fs_frag) {
1875 		printf("dev=%s, bno = %jd, bsize = %ld, size = %ld, fs = %s\n",
1876 		    devtoname(dev), (intmax_t)bno, (long)fs->fs_bsize,
1877 		    size, fs->fs_fsmnt);
1878 		panic("ffs_blkfree_cg: bad size");
1879 	}
1880 #endif
1881 	if ((u_int)bno >= fs->fs_size) {
1882 		printf("bad block %jd, ino %lu\n", (intmax_t)bno,
1883 		    (u_long)inum);
1884 		ffs_fserr(fs, inum, "bad block");
1885 		return;
1886 	}
1887 	if (bread(devvp, cgblkno, (int)fs->fs_cgsize, NOCRED, &bp)) {
1888 		brelse(bp);
1889 		return;
1890 	}
1891 	cgp = (struct cg *)bp->b_data;
1892 	if (!cg_chkmagic(cgp)) {
1893 		brelse(bp);
1894 		return;
1895 	}
1896 	bp->b_xflags |= BX_BKGRDWRITE;
1897 	cgp->cg_old_time = cgp->cg_time = time_second;
1898 	cgbno = dtogd(fs, bno);
1899 	blksfree = cg_blksfree(cgp);
1900 	UFS_LOCK(ump);
1901 	if (size == fs->fs_bsize) {
1902 		fragno = fragstoblks(fs, cgbno);
1903 		if (!ffs_isfreeblock(fs, blksfree, fragno)) {
1904 			if (devvp->v_type == VREG) {
1905 				UFS_UNLOCK(ump);
1906 				/* devvp is a snapshot */
1907 				brelse(bp);
1908 				return;
1909 			}
1910 			printf("dev = %s, block = %jd, fs = %s\n",
1911 			    devtoname(dev), (intmax_t)bno, fs->fs_fsmnt);
1912 			panic("ffs_blkfree_cg: freeing free block");
1913 		}
1914 		ffs_setblock(fs, blksfree, fragno);
1915 		ffs_clusteracct(fs, cgp, fragno, 1);
1916 		cgp->cg_cs.cs_nbfree++;
1917 		fs->fs_cstotal.cs_nbfree++;
1918 		fs->fs_cs(fs, cg).cs_nbfree++;
1919 	} else {
1920 		bbase = cgbno - fragnum(fs, cgbno);
1921 		/*
1922 		 * decrement the counts associated with the old frags
1923 		 */
1924 		blk = blkmap(fs, blksfree, bbase);
1925 		ffs_fragacct(fs, blk, cgp->cg_frsum, -1);
1926 		/*
1927 		 * deallocate the fragment
1928 		 */
1929 		frags = numfrags(fs, size);
1930 		for (i = 0; i < frags; i++) {
1931 			if (isset(blksfree, cgbno + i)) {
1932 				printf("dev = %s, block = %jd, fs = %s\n",
1933 				    devtoname(dev), (intmax_t)(bno + i),
1934 				    fs->fs_fsmnt);
1935 				panic("ffs_blkfree_cg: freeing free frag");
1936 			}
1937 			setbit(blksfree, cgbno + i);
1938 		}
1939 		cgp->cg_cs.cs_nffree += i;
1940 		fs->fs_cstotal.cs_nffree += i;
1941 		fs->fs_cs(fs, cg).cs_nffree += i;
1942 		/*
1943 		 * add back in counts associated with the new frags
1944 		 */
1945 		blk = blkmap(fs, blksfree, bbase);
1946 		ffs_fragacct(fs, blk, cgp->cg_frsum, 1);
1947 		/*
1948 		 * if a complete block has been reassembled, account for it
1949 		 */
1950 		fragno = fragstoblks(fs, bbase);
1951 		if (ffs_isblock(fs, blksfree, fragno)) {
1952 			cgp->cg_cs.cs_nffree -= fs->fs_frag;
1953 			fs->fs_cstotal.cs_nffree -= fs->fs_frag;
1954 			fs->fs_cs(fs, cg).cs_nffree -= fs->fs_frag;
1955 			ffs_clusteracct(fs, cgp, fragno, 1);
1956 			cgp->cg_cs.cs_nbfree++;
1957 			fs->fs_cstotal.cs_nbfree++;
1958 			fs->fs_cs(fs, cg).cs_nbfree++;
1959 		}
1960 	}
1961 	fs->fs_fmod = 1;
1962 	ACTIVECLEAR(fs, cg);
1963 	UFS_UNLOCK(ump);
1964 	mp = UFSTOVFS(ump);
1965 	if (MOUNTEDSOFTDEP(mp) && devvp->v_type != VREG)
1966 		softdep_setup_blkfree(UFSTOVFS(ump), bp, bno,
1967 		    numfrags(fs, size), dephd);
1968 	bdwrite(bp);
1969 }
1970 
1971 TASKQUEUE_DEFINE_THREAD(ffs_trim);
1972 
1973 struct ffs_blkfree_trim_params {
1974 	struct task task;
1975 	struct ufsmount *ump;
1976 	struct vnode *devvp;
1977 	ufs2_daddr_t bno;
1978 	long size;
1979 	ino_t inum;
1980 	struct workhead *pdephd;
1981 	struct workhead dephd;
1982 };
1983 
1984 static void
1985 ffs_blkfree_trim_task(ctx, pending)
1986 	void *ctx;
1987 	int pending;
1988 {
1989 	struct ffs_blkfree_trim_params *tp;
1990 
1991 	tp = ctx;
1992 	ffs_blkfree_cg(tp->ump, tp->ump->um_fs, tp->devvp, tp->bno, tp->size,
1993 	    tp->inum, tp->pdephd);
1994 	vn_finished_secondary_write(UFSTOVFS(tp->ump));
1995 	free(tp, M_TEMP);
1996 }
1997 
1998 static void
1999 ffs_blkfree_trim_completed(bip)
2000 	struct bio *bip;
2001 {
2002 	struct ffs_blkfree_trim_params *tp;
2003 
2004 	tp = bip->bio_caller2;
2005 	g_destroy_bio(bip);
2006 	TASK_INIT(&tp->task, 0, ffs_blkfree_trim_task, tp);
2007 	taskqueue_enqueue(taskqueue_ffs_trim, &tp->task);
2008 }
2009 
2010 void
2011 ffs_blkfree(ump, fs, devvp, bno, size, inum, vtype, dephd)
2012 	struct ufsmount *ump;
2013 	struct fs *fs;
2014 	struct vnode *devvp;
2015 	ufs2_daddr_t bno;
2016 	long size;
2017 	ino_t inum;
2018 	enum vtype vtype;
2019 	struct workhead *dephd;
2020 {
2021 	struct mount *mp;
2022 	struct bio *bip;
2023 	struct ffs_blkfree_trim_params *tp;
2024 
2025 	/*
2026 	 * Check to see if a snapshot wants to claim the block.
2027 	 * Check that devvp is a normal disk device, not a snapshot,
2028 	 * it has a snapshot(s) associated with it, and one of the
2029 	 * snapshots wants to claim the block.
2030 	 */
2031 	if (devvp->v_type != VREG &&
2032 	    (devvp->v_vflag & VV_COPYONWRITE) &&
2033 	    ffs_snapblkfree(fs, devvp, bno, size, inum, vtype, dephd)) {
2034 		return;
2035 	}
2036 	/*
2037 	 * Nothing to delay if TRIM is disabled, or the operation is
2038 	 * performed on the snapshot.
2039 	 */
2040 	if (!ump->um_candelete || devvp->v_type == VREG) {
2041 		ffs_blkfree_cg(ump, fs, devvp, bno, size, inum, dephd);
2042 		return;
2043 	}
2044 
2045 	/*
2046 	 * Postpone the set of the free bit in the cg bitmap until the
2047 	 * BIO_DELETE is completed.  Otherwise, due to disk queue
2048 	 * reordering, TRIM might be issued after we reuse the block
2049 	 * and write some new data into it.
2050 	 */
2051 	tp = malloc(sizeof(struct ffs_blkfree_trim_params), M_TEMP, M_WAITOK);
2052 	tp->ump = ump;
2053 	tp->devvp = devvp;
2054 	tp->bno = bno;
2055 	tp->size = size;
2056 	tp->inum = inum;
2057 	if (dephd != NULL) {
2058 		LIST_INIT(&tp->dephd);
2059 		LIST_SWAP(dephd, &tp->dephd, worklist, wk_list);
2060 		tp->pdephd = &tp->dephd;
2061 	} else
2062 		tp->pdephd = NULL;
2063 
2064 	bip = g_alloc_bio();
2065 	bip->bio_cmd = BIO_DELETE;
2066 	bip->bio_offset = dbtob(fsbtodb(fs, bno));
2067 	bip->bio_done = ffs_blkfree_trim_completed;
2068 	bip->bio_length = size;
2069 	bip->bio_caller2 = tp;
2070 
2071 	mp = UFSTOVFS(ump);
2072 	vn_start_secondary_write(NULL, &mp, 0);
2073 	g_io_request(bip, (struct g_consumer *)devvp->v_bufobj.bo_private);
2074 }
2075 
2076 #ifdef INVARIANTS
2077 /*
2078  * Verify allocation of a block or fragment. Returns true if block or
2079  * fragment is allocated, false if it is free.
2080  */
2081 static int
2082 ffs_checkblk(ip, bno, size)
2083 	struct inode *ip;
2084 	ufs2_daddr_t bno;
2085 	long size;
2086 {
2087 	struct fs *fs;
2088 	struct cg *cgp;
2089 	struct buf *bp;
2090 	ufs1_daddr_t cgbno;
2091 	int i, error, frags, free;
2092 	u_int8_t *blksfree;
2093 
2094 	fs = ip->i_fs;
2095 	if ((u_int)size > fs->fs_bsize || fragoff(fs, size) != 0) {
2096 		printf("bsize = %ld, size = %ld, fs = %s\n",
2097 		    (long)fs->fs_bsize, size, fs->fs_fsmnt);
2098 		panic("ffs_checkblk: bad size");
2099 	}
2100 	if ((u_int)bno >= fs->fs_size)
2101 		panic("ffs_checkblk: bad block %jd", (intmax_t)bno);
2102 	error = bread(ip->i_devvp, fsbtodb(fs, cgtod(fs, dtog(fs, bno))),
2103 		(int)fs->fs_cgsize, NOCRED, &bp);
2104 	if (error)
2105 		panic("ffs_checkblk: cg bread failed");
2106 	cgp = (struct cg *)bp->b_data;
2107 	if (!cg_chkmagic(cgp))
2108 		panic("ffs_checkblk: cg magic mismatch");
2109 	bp->b_xflags |= BX_BKGRDWRITE;
2110 	blksfree = cg_blksfree(cgp);
2111 	cgbno = dtogd(fs, bno);
2112 	if (size == fs->fs_bsize) {
2113 		free = ffs_isblock(fs, blksfree, fragstoblks(fs, cgbno));
2114 	} else {
2115 		frags = numfrags(fs, size);
2116 		for (free = 0, i = 0; i < frags; i++)
2117 			if (isset(blksfree, cgbno + i))
2118 				free++;
2119 		if (free != 0 && free != frags)
2120 			panic("ffs_checkblk: partially free fragment");
2121 	}
2122 	brelse(bp);
2123 	return (!free);
2124 }
2125 #endif /* INVARIANTS */
2126 
2127 /*
2128  * Free an inode.
2129  */
2130 int
2131 ffs_vfree(pvp, ino, mode)
2132 	struct vnode *pvp;
2133 	ino_t ino;
2134 	int mode;
2135 {
2136 	struct inode *ip;
2137 
2138 	if (DOINGSOFTDEP(pvp)) {
2139 		softdep_freefile(pvp, ino, mode);
2140 		return (0);
2141 	}
2142 	ip = VTOI(pvp);
2143 	return (ffs_freefile(ip->i_ump, ip->i_fs, ip->i_devvp, ino, mode,
2144 	    NULL));
2145 }
2146 
2147 /*
2148  * Do the actual free operation.
2149  * The specified inode is placed back in the free map.
2150  */
2151 int
2152 ffs_freefile(ump, fs, devvp, ino, mode, wkhd)
2153 	struct ufsmount *ump;
2154 	struct fs *fs;
2155 	struct vnode *devvp;
2156 	ino_t ino;
2157 	int mode;
2158 	struct workhead *wkhd;
2159 {
2160 	struct cg *cgp;
2161 	struct buf *bp;
2162 	ufs2_daddr_t cgbno;
2163 	int error;
2164 	u_int cg;
2165 	u_int8_t *inosused;
2166 	struct cdev *dev;
2167 
2168 	cg = ino_to_cg(fs, ino);
2169 	if (devvp->v_type == VREG) {
2170 		/* devvp is a snapshot */
2171 		dev = VTOI(devvp)->i_devvp->v_rdev;
2172 		cgbno = fragstoblks(fs, cgtod(fs, cg));
2173 	} else {
2174 		/* devvp is a normal disk device */
2175 		dev = devvp->v_rdev;
2176 		cgbno = fsbtodb(fs, cgtod(fs, cg));
2177 	}
2178 	if (ino >= fs->fs_ipg * fs->fs_ncg)
2179 		panic("ffs_freefile: range: dev = %s, ino = %lu, fs = %s",
2180 		    devtoname(dev), (u_long)ino, fs->fs_fsmnt);
2181 	if ((error = bread(devvp, cgbno, (int)fs->fs_cgsize, NOCRED, &bp))) {
2182 		brelse(bp);
2183 		return (error);
2184 	}
2185 	cgp = (struct cg *)bp->b_data;
2186 	if (!cg_chkmagic(cgp)) {
2187 		brelse(bp);
2188 		return (0);
2189 	}
2190 	bp->b_xflags |= BX_BKGRDWRITE;
2191 	cgp->cg_old_time = cgp->cg_time = time_second;
2192 	inosused = cg_inosused(cgp);
2193 	ino %= fs->fs_ipg;
2194 	if (isclr(inosused, ino)) {
2195 		printf("dev = %s, ino = %u, fs = %s\n", devtoname(dev),
2196 		    ino + cg * fs->fs_ipg, fs->fs_fsmnt);
2197 		if (fs->fs_ronly == 0)
2198 			panic("ffs_freefile: freeing free inode");
2199 	}
2200 	clrbit(inosused, ino);
2201 	if (ino < cgp->cg_irotor)
2202 		cgp->cg_irotor = ino;
2203 	cgp->cg_cs.cs_nifree++;
2204 	UFS_LOCK(ump);
2205 	fs->fs_cstotal.cs_nifree++;
2206 	fs->fs_cs(fs, cg).cs_nifree++;
2207 	if ((mode & IFMT) == IFDIR) {
2208 		cgp->cg_cs.cs_ndir--;
2209 		fs->fs_cstotal.cs_ndir--;
2210 		fs->fs_cs(fs, cg).cs_ndir--;
2211 	}
2212 	fs->fs_fmod = 1;
2213 	ACTIVECLEAR(fs, cg);
2214 	UFS_UNLOCK(ump);
2215 	if (MOUNTEDSOFTDEP(UFSTOVFS(ump)) && devvp->v_type != VREG)
2216 		softdep_setup_inofree(UFSTOVFS(ump), bp,
2217 		    ino + cg * fs->fs_ipg, wkhd);
2218 	bdwrite(bp);
2219 	return (0);
2220 }
2221 
2222 /*
2223  * Check to see if a file is free.
2224  */
2225 int
2226 ffs_checkfreefile(fs, devvp, ino)
2227 	struct fs *fs;
2228 	struct vnode *devvp;
2229 	ino_t ino;
2230 {
2231 	struct cg *cgp;
2232 	struct buf *bp;
2233 	ufs2_daddr_t cgbno;
2234 	int ret;
2235 	u_int cg;
2236 	u_int8_t *inosused;
2237 
2238 	cg = ino_to_cg(fs, ino);
2239 	if (devvp->v_type == VREG) {
2240 		/* devvp is a snapshot */
2241 		cgbno = fragstoblks(fs, cgtod(fs, cg));
2242 	} else {
2243 		/* devvp is a normal disk device */
2244 		cgbno = fsbtodb(fs, cgtod(fs, cg));
2245 	}
2246 	if (ino >= fs->fs_ipg * fs->fs_ncg)
2247 		return (1);
2248 	if (bread(devvp, cgbno, (int)fs->fs_cgsize, NOCRED, &bp)) {
2249 		brelse(bp);
2250 		return (1);
2251 	}
2252 	cgp = (struct cg *)bp->b_data;
2253 	if (!cg_chkmagic(cgp)) {
2254 		brelse(bp);
2255 		return (1);
2256 	}
2257 	inosused = cg_inosused(cgp);
2258 	ino %= fs->fs_ipg;
2259 	ret = isclr(inosused, ino);
2260 	brelse(bp);
2261 	return (ret);
2262 }
2263 
2264 /*
2265  * Find a block of the specified size in the specified cylinder group.
2266  *
2267  * It is a panic if a request is made to find a block if none are
2268  * available.
2269  */
2270 static ufs1_daddr_t
2271 ffs_mapsearch(fs, cgp, bpref, allocsiz)
2272 	struct fs *fs;
2273 	struct cg *cgp;
2274 	ufs2_daddr_t bpref;
2275 	int allocsiz;
2276 {
2277 	ufs1_daddr_t bno;
2278 	int start, len, loc, i;
2279 	int blk, field, subfield, pos;
2280 	u_int8_t *blksfree;
2281 
2282 	/*
2283 	 * find the fragment by searching through the free block
2284 	 * map for an appropriate bit pattern
2285 	 */
2286 	if (bpref)
2287 		start = dtogd(fs, bpref) / NBBY;
2288 	else
2289 		start = cgp->cg_frotor / NBBY;
2290 	blksfree = cg_blksfree(cgp);
2291 	len = howmany(fs->fs_fpg, NBBY) - start;
2292 	loc = scanc((u_int)len, (u_char *)&blksfree[start],
2293 		fragtbl[fs->fs_frag],
2294 		(u_char)(1 << (allocsiz - 1 + (fs->fs_frag % NBBY))));
2295 	if (loc == 0) {
2296 		len = start + 1;
2297 		start = 0;
2298 		loc = scanc((u_int)len, (u_char *)&blksfree[0],
2299 			fragtbl[fs->fs_frag],
2300 			(u_char)(1 << (allocsiz - 1 + (fs->fs_frag % NBBY))));
2301 		if (loc == 0) {
2302 			printf("start = %d, len = %d, fs = %s\n",
2303 			    start, len, fs->fs_fsmnt);
2304 			panic("ffs_alloccg: map corrupted");
2305 			/* NOTREACHED */
2306 		}
2307 	}
2308 	bno = (start + len - loc) * NBBY;
2309 	cgp->cg_frotor = bno;
2310 	/*
2311 	 * found the byte in the map
2312 	 * sift through the bits to find the selected frag
2313 	 */
2314 	for (i = bno + NBBY; bno < i; bno += fs->fs_frag) {
2315 		blk = blkmap(fs, blksfree, bno);
2316 		blk <<= 1;
2317 		field = around[allocsiz];
2318 		subfield = inside[allocsiz];
2319 		for (pos = 0; pos <= fs->fs_frag - allocsiz; pos++) {
2320 			if ((blk & field) == subfield)
2321 				return (bno + pos);
2322 			field <<= 1;
2323 			subfield <<= 1;
2324 		}
2325 	}
2326 	printf("bno = %lu, fs = %s\n", (u_long)bno, fs->fs_fsmnt);
2327 	panic("ffs_alloccg: block not in map");
2328 	return (-1);
2329 }
2330 
2331 /*
2332  * Fserr prints the name of a filesystem with an error diagnostic.
2333  *
2334  * The form of the error message is:
2335  *	fs: error message
2336  */
2337 void
2338 ffs_fserr(fs, inum, cp)
2339 	struct fs *fs;
2340 	ino_t inum;
2341 	char *cp;
2342 {
2343 	struct thread *td = curthread;	/* XXX */
2344 	struct proc *p = td->td_proc;
2345 
2346 	log(LOG_ERR, "pid %d (%s), uid %d inumber %d on %s: %s\n",
2347 	    p->p_pid, p->p_comm, td->td_ucred->cr_uid, inum, fs->fs_fsmnt, cp);
2348 }
2349 
2350 /*
2351  * This function provides the capability for the fsck program to
2352  * update an active filesystem. Fourteen operations are provided:
2353  *
2354  * adjrefcnt(inode, amt) - adjusts the reference count on the
2355  *	specified inode by the specified amount. Under normal
2356  *	operation the count should always go down. Decrementing
2357  *	the count to zero will cause the inode to be freed.
2358  * adjblkcnt(inode, amt) - adjust the number of blocks used by the
2359  *	inode by the specified amount.
2360  * adjndir, adjbfree, adjifree, adjffree, adjnumclusters(amt) -
2361  *	adjust the superblock summary.
2362  * freedirs(inode, count) - directory inodes [inode..inode + count - 1]
2363  *	are marked as free. Inodes should never have to be marked
2364  *	as in use.
2365  * freefiles(inode, count) - file inodes [inode..inode + count - 1]
2366  *	are marked as free. Inodes should never have to be marked
2367  *	as in use.
2368  * freeblks(blockno, size) - blocks [blockno..blockno + size - 1]
2369  *	are marked as free. Blocks should never have to be marked
2370  *	as in use.
2371  * setflags(flags, set/clear) - the fs_flags field has the specified
2372  *	flags set (second parameter +1) or cleared (second parameter -1).
2373  * setcwd(dirinode) - set the current directory to dirinode in the
2374  *	filesystem associated with the snapshot.
2375  * setdotdot(oldvalue, newvalue) - Verify that the inode number for ".."
2376  *	in the current directory is oldvalue then change it to newvalue.
2377  * unlink(nameptr, oldvalue) - Verify that the inode number associated
2378  *	with nameptr in the current directory is oldvalue then unlink it.
2379  *
2380  * The following functions may only be used on a quiescent filesystem
2381  * by the soft updates journal. They are not safe to be run on an active
2382  * filesystem.
2383  *
2384  * setinode(inode, dip) - the specified disk inode is replaced with the
2385  *	contents pointed to by dip.
2386  * setbufoutput(fd, flags) - output associated with the specified file
2387  *	descriptor (which must reference the character device supporting
2388  *	the filesystem) switches from using physio to running through the
2389  *	buffer cache when flags is set to 1. The descriptor reverts to
2390  *	physio for output when flags is set to zero.
2391  */
2392 
2393 static int sysctl_ffs_fsck(SYSCTL_HANDLER_ARGS);
2394 
2395 SYSCTL_PROC(_vfs_ffs, FFS_ADJ_REFCNT, adjrefcnt, CTLFLAG_WR|CTLTYPE_STRUCT,
2396 	0, 0, sysctl_ffs_fsck, "S,fsck", "Adjust Inode Reference Count");
2397 
2398 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_BLKCNT, adjblkcnt, CTLFLAG_WR,
2399 	sysctl_ffs_fsck, "Adjust Inode Used Blocks Count");
2400 
2401 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_NDIR, adjndir, CTLFLAG_WR,
2402 	sysctl_ffs_fsck, "Adjust number of directories");
2403 
2404 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_NBFREE, adjnbfree, CTLFLAG_WR,
2405 	sysctl_ffs_fsck, "Adjust number of free blocks");
2406 
2407 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_NIFREE, adjnifree, CTLFLAG_WR,
2408 	sysctl_ffs_fsck, "Adjust number of free inodes");
2409 
2410 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_NFFREE, adjnffree, CTLFLAG_WR,
2411 	sysctl_ffs_fsck, "Adjust number of free frags");
2412 
2413 static SYSCTL_NODE(_vfs_ffs, FFS_ADJ_NUMCLUSTERS, adjnumclusters, CTLFLAG_WR,
2414 	sysctl_ffs_fsck, "Adjust number of free clusters");
2415 
2416 static SYSCTL_NODE(_vfs_ffs, FFS_DIR_FREE, freedirs, CTLFLAG_WR,
2417 	sysctl_ffs_fsck, "Free Range of Directory Inodes");
2418 
2419 static SYSCTL_NODE(_vfs_ffs, FFS_FILE_FREE, freefiles, CTLFLAG_WR,
2420 	sysctl_ffs_fsck, "Free Range of File Inodes");
2421 
2422 static SYSCTL_NODE(_vfs_ffs, FFS_BLK_FREE, freeblks, CTLFLAG_WR,
2423 	sysctl_ffs_fsck, "Free Range of Blocks");
2424 
2425 static SYSCTL_NODE(_vfs_ffs, FFS_SET_FLAGS, setflags, CTLFLAG_WR,
2426 	sysctl_ffs_fsck, "Change Filesystem Flags");
2427 
2428 static SYSCTL_NODE(_vfs_ffs, FFS_SET_CWD, setcwd, CTLFLAG_WR,
2429 	sysctl_ffs_fsck, "Set Current Working Directory");
2430 
2431 static SYSCTL_NODE(_vfs_ffs, FFS_SET_DOTDOT, setdotdot, CTLFLAG_WR,
2432 	sysctl_ffs_fsck, "Change Value of .. Entry");
2433 
2434 static SYSCTL_NODE(_vfs_ffs, FFS_UNLINK, unlink, CTLFLAG_WR,
2435 	sysctl_ffs_fsck, "Unlink a Duplicate Name");
2436 
2437 static SYSCTL_NODE(_vfs_ffs, FFS_SET_INODE, setinode, CTLFLAG_WR,
2438 	sysctl_ffs_fsck, "Update an On-Disk Inode");
2439 
2440 static SYSCTL_NODE(_vfs_ffs, FFS_SET_BUFOUTPUT, setbufoutput, CTLFLAG_WR,
2441 	sysctl_ffs_fsck, "Set Buffered Writing for Descriptor");
2442 
2443 #define DEBUG 1
2444 #ifdef DEBUG
2445 static int fsckcmds = 0;
2446 SYSCTL_INT(_debug, OID_AUTO, fsckcmds, CTLFLAG_RW, &fsckcmds, 0, "");
2447 #endif /* DEBUG */
2448 
2449 static int buffered_write(struct file *, struct uio *, struct ucred *,
2450 	int, struct thread *);
2451 
2452 static int
2453 sysctl_ffs_fsck(SYSCTL_HANDLER_ARGS)
2454 {
2455 	struct thread *td = curthread;
2456 	struct fsck_cmd cmd;
2457 	struct ufsmount *ump;
2458 	struct vnode *vp, *vpold, *dvp, *fdvp;
2459 	struct inode *ip, *dp;
2460 	struct mount *mp;
2461 	struct fs *fs;
2462 	ufs2_daddr_t blkno;
2463 	long blkcnt, blksize;
2464 	struct filedesc *fdp;
2465 	struct file *fp, *vfp;
2466 	int vfslocked, filetype, error;
2467 	static struct fileops *origops, bufferedops;
2468 
2469 	if (req->newlen > sizeof cmd)
2470 		return (EBADRPC);
2471 	if ((error = SYSCTL_IN(req, &cmd, sizeof cmd)) != 0)
2472 		return (error);
2473 	if (cmd.version != FFS_CMD_VERSION)
2474 		return (ERPCMISMATCH);
2475 	if ((error = getvnode(td->td_proc->p_fd, cmd.handle, CAP_FSCK,
2476 	     &fp)) != 0)
2477 		return (error);
2478 	vp = fp->f_data;
2479 	if (vp->v_type != VREG && vp->v_type != VDIR) {
2480 		fdrop(fp, td);
2481 		return (EINVAL);
2482 	}
2483 	vn_start_write(vp, &mp, V_WAIT);
2484 	if (mp == 0 || strncmp(mp->mnt_stat.f_fstypename, "ufs", MFSNAMELEN)) {
2485 		vn_finished_write(mp);
2486 		fdrop(fp, td);
2487 		return (EINVAL);
2488 	}
2489 	ump = VFSTOUFS(mp);
2490 	if ((mp->mnt_flag & MNT_RDONLY) &&
2491 	    ump->um_fsckpid != td->td_proc->p_pid) {
2492 		vn_finished_write(mp);
2493 		fdrop(fp, td);
2494 		return (EROFS);
2495 	}
2496 	fs = ump->um_fs;
2497 	filetype = IFREG;
2498 
2499 	switch (oidp->oid_number) {
2500 
2501 	case FFS_SET_FLAGS:
2502 #ifdef DEBUG
2503 		if (fsckcmds)
2504 			printf("%s: %s flags\n", mp->mnt_stat.f_mntonname,
2505 			    cmd.size > 0 ? "set" : "clear");
2506 #endif /* DEBUG */
2507 		if (cmd.size > 0)
2508 			fs->fs_flags |= (long)cmd.value;
2509 		else
2510 			fs->fs_flags &= ~(long)cmd.value;
2511 		break;
2512 
2513 	case FFS_ADJ_REFCNT:
2514 #ifdef DEBUG
2515 		if (fsckcmds) {
2516 			printf("%s: adjust inode %jd link count by %jd\n",
2517 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value,
2518 			    (intmax_t)cmd.size);
2519 		}
2520 #endif /* DEBUG */
2521 		if ((error = ffs_vget(mp, (ino_t)cmd.value, LK_EXCLUSIVE, &vp)))
2522 			break;
2523 		ip = VTOI(vp);
2524 		ip->i_nlink += cmd.size;
2525 		DIP_SET(ip, i_nlink, ip->i_nlink);
2526 		ip->i_effnlink += cmd.size;
2527 		ip->i_flag |= IN_CHANGE | IN_MODIFIED;
2528 		error = ffs_update(vp, 1);
2529 		if (DOINGSOFTDEP(vp))
2530 			softdep_change_linkcnt(ip);
2531 		vput(vp);
2532 		break;
2533 
2534 	case FFS_ADJ_BLKCNT:
2535 #ifdef DEBUG
2536 		if (fsckcmds) {
2537 			printf("%s: adjust inode %jd block count by %jd\n",
2538 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value,
2539 			    (intmax_t)cmd.size);
2540 		}
2541 #endif /* DEBUG */
2542 		if ((error = ffs_vget(mp, (ino_t)cmd.value, LK_EXCLUSIVE, &vp)))
2543 			break;
2544 		ip = VTOI(vp);
2545 		DIP_SET(ip, i_blocks, DIP(ip, i_blocks) + cmd.size);
2546 		ip->i_flag |= IN_CHANGE | IN_MODIFIED;
2547 		error = ffs_update(vp, 1);
2548 		vput(vp);
2549 		break;
2550 
2551 	case FFS_DIR_FREE:
2552 		filetype = IFDIR;
2553 		/* fall through */
2554 
2555 	case FFS_FILE_FREE:
2556 #ifdef DEBUG
2557 		if (fsckcmds) {
2558 			if (cmd.size == 1)
2559 				printf("%s: free %s inode %d\n",
2560 				    mp->mnt_stat.f_mntonname,
2561 				    filetype == IFDIR ? "directory" : "file",
2562 				    (ino_t)cmd.value);
2563 			else
2564 				printf("%s: free %s inodes %d-%d\n",
2565 				    mp->mnt_stat.f_mntonname,
2566 				    filetype == IFDIR ? "directory" : "file",
2567 				    (ino_t)cmd.value,
2568 				    (ino_t)(cmd.value + cmd.size - 1));
2569 		}
2570 #endif /* DEBUG */
2571 		while (cmd.size > 0) {
2572 			if ((error = ffs_freefile(ump, fs, ump->um_devvp,
2573 			    cmd.value, filetype, NULL)))
2574 				break;
2575 			cmd.size -= 1;
2576 			cmd.value += 1;
2577 		}
2578 		break;
2579 
2580 	case FFS_BLK_FREE:
2581 #ifdef DEBUG
2582 		if (fsckcmds) {
2583 			if (cmd.size == 1)
2584 				printf("%s: free block %jd\n",
2585 				    mp->mnt_stat.f_mntonname,
2586 				    (intmax_t)cmd.value);
2587 			else
2588 				printf("%s: free blocks %jd-%jd\n",
2589 				    mp->mnt_stat.f_mntonname,
2590 				    (intmax_t)cmd.value,
2591 				    (intmax_t)cmd.value + cmd.size - 1);
2592 		}
2593 #endif /* DEBUG */
2594 		blkno = cmd.value;
2595 		blkcnt = cmd.size;
2596 		blksize = fs->fs_frag - (blkno % fs->fs_frag);
2597 		while (blkcnt > 0) {
2598 			if (blksize > blkcnt)
2599 				blksize = blkcnt;
2600 			ffs_blkfree(ump, fs, ump->um_devvp, blkno,
2601 			    blksize * fs->fs_fsize, ROOTINO, VDIR, NULL);
2602 			blkno += blksize;
2603 			blkcnt -= blksize;
2604 			blksize = fs->fs_frag;
2605 		}
2606 		break;
2607 
2608 	/*
2609 	 * Adjust superblock summaries.  fsck(8) is expected to
2610 	 * submit deltas when necessary.
2611 	 */
2612 	case FFS_ADJ_NDIR:
2613 #ifdef DEBUG
2614 		if (fsckcmds) {
2615 			printf("%s: adjust number of directories by %jd\n",
2616 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2617 		}
2618 #endif /* DEBUG */
2619 		fs->fs_cstotal.cs_ndir += cmd.value;
2620 		break;
2621 
2622 	case FFS_ADJ_NBFREE:
2623 #ifdef DEBUG
2624 		if (fsckcmds) {
2625 			printf("%s: adjust number of free blocks by %+jd\n",
2626 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2627 		}
2628 #endif /* DEBUG */
2629 		fs->fs_cstotal.cs_nbfree += cmd.value;
2630 		break;
2631 
2632 	case FFS_ADJ_NIFREE:
2633 #ifdef DEBUG
2634 		if (fsckcmds) {
2635 			printf("%s: adjust number of free inodes by %+jd\n",
2636 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2637 		}
2638 #endif /* DEBUG */
2639 		fs->fs_cstotal.cs_nifree += cmd.value;
2640 		break;
2641 
2642 	case FFS_ADJ_NFFREE:
2643 #ifdef DEBUG
2644 		if (fsckcmds) {
2645 			printf("%s: adjust number of free frags by %+jd\n",
2646 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2647 		}
2648 #endif /* DEBUG */
2649 		fs->fs_cstotal.cs_nffree += cmd.value;
2650 		break;
2651 
2652 	case FFS_ADJ_NUMCLUSTERS:
2653 #ifdef DEBUG
2654 		if (fsckcmds) {
2655 			printf("%s: adjust number of free clusters by %+jd\n",
2656 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2657 		}
2658 #endif /* DEBUG */
2659 		fs->fs_cstotal.cs_numclusters += cmd.value;
2660 		break;
2661 
2662 	case FFS_SET_CWD:
2663 #ifdef DEBUG
2664 		if (fsckcmds) {
2665 			printf("%s: set current directory to inode %jd\n",
2666 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2667 		}
2668 #endif /* DEBUG */
2669 		if ((error = ffs_vget(mp, (ino_t)cmd.value, LK_SHARED, &vp)))
2670 			break;
2671 		vfslocked = VFS_LOCK_GIANT(vp->v_mount);
2672 		AUDIT_ARG_VNODE1(vp);
2673 		if ((error = change_dir(vp, td)) != 0) {
2674 			vput(vp);
2675 			VFS_UNLOCK_GIANT(vfslocked);
2676 			break;
2677 		}
2678 		VOP_UNLOCK(vp, 0);
2679 		VFS_UNLOCK_GIANT(vfslocked);
2680 		fdp = td->td_proc->p_fd;
2681 		FILEDESC_XLOCK(fdp);
2682 		vpold = fdp->fd_cdir;
2683 		fdp->fd_cdir = vp;
2684 		FILEDESC_XUNLOCK(fdp);
2685 		vfslocked = VFS_LOCK_GIANT(vpold->v_mount);
2686 		vrele(vpold);
2687 		VFS_UNLOCK_GIANT(vfslocked);
2688 		break;
2689 
2690 	case FFS_SET_DOTDOT:
2691 #ifdef DEBUG
2692 		if (fsckcmds) {
2693 			printf("%s: change .. in cwd from %jd to %jd\n",
2694 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value,
2695 			    (intmax_t)cmd.size);
2696 		}
2697 #endif /* DEBUG */
2698 		/*
2699 		 * First we have to get and lock the parent directory
2700 		 * to which ".." points.
2701 		 */
2702 		error = ffs_vget(mp, (ino_t)cmd.value, LK_EXCLUSIVE, &fdvp);
2703 		if (error)
2704 			break;
2705 		/*
2706 		 * Now we get and lock the child directory containing "..".
2707 		 */
2708 		FILEDESC_SLOCK(td->td_proc->p_fd);
2709 		dvp = td->td_proc->p_fd->fd_cdir;
2710 		FILEDESC_SUNLOCK(td->td_proc->p_fd);
2711 		if ((error = vget(dvp, LK_EXCLUSIVE, td)) != 0) {
2712 			vput(fdvp);
2713 			break;
2714 		}
2715 		dp = VTOI(dvp);
2716 		dp->i_offset = 12;	/* XXX mastertemplate.dot_reclen */
2717 		error = ufs_dirrewrite(dp, VTOI(fdvp), (ino_t)cmd.size,
2718 		    DT_DIR, 0);
2719 		cache_purge(fdvp);
2720 		cache_purge(dvp);
2721 		vput(dvp);
2722 		vput(fdvp);
2723 		break;
2724 
2725 	case FFS_UNLINK:
2726 #ifdef DEBUG
2727 		if (fsckcmds) {
2728 			char buf[32];
2729 
2730 			if (copyinstr((char *)(intptr_t)cmd.value, buf,32,NULL))
2731 				strncpy(buf, "Name_too_long", 32);
2732 			printf("%s: unlink %s (inode %jd)\n",
2733 			    mp->mnt_stat.f_mntonname, buf, (intmax_t)cmd.size);
2734 		}
2735 #endif /* DEBUG */
2736 		/*
2737 		 * kern_unlinkat will do its own start/finish writes and
2738 		 * they do not nest, so drop ours here. Setting mp == NULL
2739 		 * indicates that vn_finished_write is not needed down below.
2740 		 */
2741 		vn_finished_write(mp);
2742 		mp = NULL;
2743 		error = kern_unlinkat(td, AT_FDCWD, (char *)(intptr_t)cmd.value,
2744 		    UIO_USERSPACE, (ino_t)cmd.size);
2745 		break;
2746 
2747 	case FFS_SET_INODE:
2748 		if (ump->um_fsckpid != td->td_proc->p_pid) {
2749 			error = EPERM;
2750 			break;
2751 		}
2752 #ifdef DEBUG
2753 		if (fsckcmds) {
2754 			printf("%s: update inode %jd\n",
2755 			    mp->mnt_stat.f_mntonname, (intmax_t)cmd.value);
2756 		}
2757 #endif /* DEBUG */
2758 		if ((error = ffs_vget(mp, (ino_t)cmd.value, LK_EXCLUSIVE, &vp)))
2759 			break;
2760 		vfslocked = VFS_LOCK_GIANT(vp->v_mount);
2761 		AUDIT_ARG_VNODE1(vp);
2762 		ip = VTOI(vp);
2763 		if (ip->i_ump->um_fstype == UFS1)
2764 			error = copyin((void *)(intptr_t)cmd.size, ip->i_din1,
2765 			    sizeof(struct ufs1_dinode));
2766 		else
2767 			error = copyin((void *)(intptr_t)cmd.size, ip->i_din2,
2768 			    sizeof(struct ufs2_dinode));
2769 		if (error) {
2770 			vput(vp);
2771 			VFS_UNLOCK_GIANT(vfslocked);
2772 			break;
2773 		}
2774 		ip->i_flag |= IN_CHANGE | IN_MODIFIED;
2775 		error = ffs_update(vp, 1);
2776 		vput(vp);
2777 		VFS_UNLOCK_GIANT(vfslocked);
2778 		break;
2779 
2780 	case FFS_SET_BUFOUTPUT:
2781 		if (ump->um_fsckpid != td->td_proc->p_pid) {
2782 			error = EPERM;
2783 			break;
2784 		}
2785 		if (VTOI(vp)->i_ump != ump) {
2786 			error = EINVAL;
2787 			break;
2788 		}
2789 #ifdef DEBUG
2790 		if (fsckcmds) {
2791 			printf("%s: %s buffered output for descriptor %jd\n",
2792 			    mp->mnt_stat.f_mntonname,
2793 			    cmd.size == 1 ? "enable" : "disable",
2794 			    (intmax_t)cmd.value);
2795 		}
2796 #endif /* DEBUG */
2797 		if ((error = getvnode(td->td_proc->p_fd, cmd.value,
2798 		    CAP_FSCK, &vfp)) != 0)
2799 			break;
2800 		if (vfp->f_vnode->v_type != VCHR) {
2801 			fdrop(vfp, td);
2802 			error = EINVAL;
2803 			break;
2804 		}
2805 		if (origops == NULL) {
2806 			origops = vfp->f_ops;
2807 			bcopy((void *)origops, (void *)&bufferedops,
2808 			    sizeof(bufferedops));
2809 			bufferedops.fo_write = buffered_write;
2810 		}
2811 		if (cmd.size == 1)
2812 			atomic_store_rel_ptr((volatile uintptr_t *)&vfp->f_ops,
2813 			    (uintptr_t)&bufferedops);
2814 		else
2815 			atomic_store_rel_ptr((volatile uintptr_t *)&vfp->f_ops,
2816 			    (uintptr_t)origops);
2817 		fdrop(vfp, td);
2818 		break;
2819 
2820 	default:
2821 #ifdef DEBUG
2822 		if (fsckcmds) {
2823 			printf("Invalid request %d from fsck\n",
2824 			    oidp->oid_number);
2825 		}
2826 #endif /* DEBUG */
2827 		error = EINVAL;
2828 		break;
2829 
2830 	}
2831 	fdrop(fp, td);
2832 	vn_finished_write(mp);
2833 	return (error);
2834 }
2835 
2836 /*
2837  * Function to switch a descriptor to use the buffer cache to stage
2838  * its I/O. This is needed so that writes to the filesystem device
2839  * will give snapshots a chance to copy modified blocks for which it
2840  * needs to retain copies.
2841  */
2842 static int
2843 buffered_write(fp, uio, active_cred, flags, td)
2844 	struct file *fp;
2845 	struct uio *uio;
2846 	struct ucred *active_cred;
2847 	int flags;
2848 	struct thread *td;
2849 {
2850 	struct vnode *devvp;
2851 	struct inode *ip;
2852 	struct buf *bp;
2853 	struct fs *fs;
2854 	int error, vfslocked;
2855 	daddr_t lbn;
2856 
2857 	/*
2858 	 * The devvp is associated with the /dev filesystem. To discover
2859 	 * the filesystem with which the device is associated, we depend
2860 	 * on the application setting the current directory to a location
2861 	 * within the filesystem being written. Yes, this is an ugly hack.
2862 	 */
2863 	devvp = fp->f_vnode;
2864 	ip = VTOI(td->td_proc->p_fd->fd_cdir);
2865 	if (ip->i_devvp != devvp)
2866 		return (EINVAL);
2867 	fs = ip->i_fs;
2868 	vfslocked = VFS_LOCK_GIANT(ip->i_vnode->v_mount);
2869 	vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
2870 	if ((flags & FOF_OFFSET) == 0)
2871 		uio->uio_offset = fp->f_offset;
2872 #ifdef DEBUG
2873 	if (fsckcmds) {
2874 		printf("%s: buffered write for block %jd\n",
2875 		    fs->fs_fsmnt, (intmax_t)btodb(uio->uio_offset));
2876 	}
2877 #endif /* DEBUG */
2878 	/*
2879 	 * All I/O must be contained within a filesystem block, start on
2880 	 * a fragment boundary, and be a multiple of fragments in length.
2881 	 */
2882 	if (uio->uio_resid > fs->fs_bsize - (uio->uio_offset % fs->fs_bsize) ||
2883 	    fragoff(fs, uio->uio_offset) != 0 ||
2884 	    fragoff(fs, uio->uio_resid) != 0) {
2885 		error = EINVAL;
2886 		goto out;
2887 	}
2888 	lbn = numfrags(fs, uio->uio_offset);
2889 	bp = getblk(devvp, lbn, uio->uio_resid, 0, 0, 0);
2890 	bp->b_flags |= B_RELBUF;
2891 	if ((error = uiomove((char *)bp->b_data, uio->uio_resid, uio)) != 0) {
2892 		brelse(bp);
2893 		goto out;
2894 	}
2895 	error = bwrite(bp);
2896 	if ((flags & FOF_OFFSET) == 0)
2897 		fp->f_offset = uio->uio_offset;
2898 	fp->f_nextoff = uio->uio_offset;
2899 out:
2900 	VOP_UNLOCK(devvp, 0);
2901 	VFS_UNLOCK_GIANT(vfslocked);
2902 	return (error);
2903 }
2904