xref: /openbmc/linux/fs/xfs/libxfs/xfs_refcount.c (revision 6abc7aef)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Oracle.  All Rights Reserved.
4  * Author: Darrick J. Wong <darrick.wong@oracle.com>
5  */
6 #include "xfs.h"
7 #include "xfs_fs.h"
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_defer.h"
14 #include "xfs_btree.h"
15 #include "xfs_bmap.h"
16 #include "xfs_refcount_btree.h"
17 #include "xfs_alloc.h"
18 #include "xfs_errortag.h"
19 #include "xfs_error.h"
20 #include "xfs_trace.h"
21 #include "xfs_trans.h"
22 #include "xfs_bit.h"
23 #include "xfs_refcount.h"
24 #include "xfs_rmap.h"
25 #include "xfs_ag.h"
26 
27 struct kmem_cache	*xfs_refcount_intent_cache;
28 
29 /* Allowable refcount adjustment amounts. */
30 enum xfs_refc_adjust_op {
31 	XFS_REFCOUNT_ADJUST_INCREASE	= 1,
32 	XFS_REFCOUNT_ADJUST_DECREASE	= -1,
33 	XFS_REFCOUNT_ADJUST_COW_ALLOC	= 0,
34 	XFS_REFCOUNT_ADJUST_COW_FREE	= -1,
35 };
36 
37 STATIC int __xfs_refcount_cow_alloc(struct xfs_btree_cur *rcur,
38 		xfs_agblock_t agbno, xfs_extlen_t aglen);
39 STATIC int __xfs_refcount_cow_free(struct xfs_btree_cur *rcur,
40 		xfs_agblock_t agbno, xfs_extlen_t aglen);
41 
42 /*
43  * Look up the first record less than or equal to [bno, len] in the btree
44  * given by cur.
45  */
46 int
47 xfs_refcount_lookup_le(
48 	struct xfs_btree_cur	*cur,
49 	enum xfs_refc_domain	domain,
50 	xfs_agblock_t		bno,
51 	int			*stat)
52 {
53 	trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.pag->pag_agno,
54 			xfs_refcount_encode_startblock(bno, domain),
55 			XFS_LOOKUP_LE);
56 	cur->bc_rec.rc.rc_startblock = bno;
57 	cur->bc_rec.rc.rc_blockcount = 0;
58 	cur->bc_rec.rc.rc_domain = domain;
59 	return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
60 }
61 
62 /*
63  * Look up the first record greater than or equal to [bno, len] in the btree
64  * given by cur.
65  */
66 int
67 xfs_refcount_lookup_ge(
68 	struct xfs_btree_cur	*cur,
69 	enum xfs_refc_domain	domain,
70 	xfs_agblock_t		bno,
71 	int			*stat)
72 {
73 	trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.pag->pag_agno,
74 			xfs_refcount_encode_startblock(bno, domain),
75 			XFS_LOOKUP_GE);
76 	cur->bc_rec.rc.rc_startblock = bno;
77 	cur->bc_rec.rc.rc_blockcount = 0;
78 	cur->bc_rec.rc.rc_domain = domain;
79 	return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
80 }
81 
82 /*
83  * Look up the first record equal to [bno, len] in the btree
84  * given by cur.
85  */
86 int
87 xfs_refcount_lookup_eq(
88 	struct xfs_btree_cur	*cur,
89 	enum xfs_refc_domain	domain,
90 	xfs_agblock_t		bno,
91 	int			*stat)
92 {
93 	trace_xfs_refcount_lookup(cur->bc_mp, cur->bc_ag.pag->pag_agno,
94 			xfs_refcount_encode_startblock(bno, domain),
95 			XFS_LOOKUP_LE);
96 	cur->bc_rec.rc.rc_startblock = bno;
97 	cur->bc_rec.rc.rc_blockcount = 0;
98 	cur->bc_rec.rc.rc_domain = domain;
99 	return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
100 }
101 
102 /* Convert on-disk record to in-core format. */
103 void
104 xfs_refcount_btrec_to_irec(
105 	const union xfs_btree_rec	*rec,
106 	struct xfs_refcount_irec	*irec)
107 {
108 	uint32_t			start;
109 
110 	start = be32_to_cpu(rec->refc.rc_startblock);
111 	if (start & XFS_REFC_COWFLAG) {
112 		start &= ~XFS_REFC_COWFLAG;
113 		irec->rc_domain = XFS_REFC_DOMAIN_COW;
114 	} else {
115 		irec->rc_domain = XFS_REFC_DOMAIN_SHARED;
116 	}
117 
118 	irec->rc_startblock = start;
119 	irec->rc_blockcount = be32_to_cpu(rec->refc.rc_blockcount);
120 	irec->rc_refcount = be32_to_cpu(rec->refc.rc_refcount);
121 }
122 
123 /* Simple checks for refcount records. */
124 xfs_failaddr_t
125 xfs_refcount_check_irec(
126 	struct xfs_btree_cur		*cur,
127 	const struct xfs_refcount_irec	*irec)
128 {
129 	struct xfs_perag		*pag = cur->bc_ag.pag;
130 
131 	if (irec->rc_blockcount == 0 || irec->rc_blockcount > MAXREFCEXTLEN)
132 		return __this_address;
133 
134 	if (!xfs_refcount_check_domain(irec))
135 		return __this_address;
136 
137 	/* check for valid extent range, including overflow */
138 	if (!xfs_verify_agbext(pag, irec->rc_startblock, irec->rc_blockcount))
139 		return __this_address;
140 
141 	if (irec->rc_refcount == 0 || irec->rc_refcount > MAXREFCOUNT)
142 		return __this_address;
143 
144 	return NULL;
145 }
146 
147 static inline int
148 xfs_refcount_complain_bad_rec(
149 	struct xfs_btree_cur		*cur,
150 	xfs_failaddr_t			fa,
151 	const struct xfs_refcount_irec	*irec)
152 {
153 	struct xfs_mount		*mp = cur->bc_mp;
154 
155 	xfs_warn(mp,
156  "Refcount BTree record corruption in AG %d detected at %pS!",
157 				cur->bc_ag.pag->pag_agno, fa);
158 	xfs_warn(mp,
159 		"Start block 0x%x, block count 0x%x, references 0x%x",
160 		irec->rc_startblock, irec->rc_blockcount, irec->rc_refcount);
161 	return -EFSCORRUPTED;
162 }
163 
164 /*
165  * Get the data from the pointed-to record.
166  */
167 int
168 xfs_refcount_get_rec(
169 	struct xfs_btree_cur		*cur,
170 	struct xfs_refcount_irec	*irec,
171 	int				*stat)
172 {
173 	union xfs_btree_rec		*rec;
174 	xfs_failaddr_t			fa;
175 	int				error;
176 
177 	error = xfs_btree_get_rec(cur, &rec, stat);
178 	if (error || !*stat)
179 		return error;
180 
181 	xfs_refcount_btrec_to_irec(rec, irec);
182 	fa = xfs_refcount_check_irec(cur, irec);
183 	if (fa)
184 		return xfs_refcount_complain_bad_rec(cur, fa, irec);
185 
186 	trace_xfs_refcount_get(cur->bc_mp, cur->bc_ag.pag->pag_agno, irec);
187 	return 0;
188 }
189 
190 /*
191  * Update the record referred to by cur to the value given
192  * by [bno, len, refcount].
193  * This either works (return 0) or gets an EFSCORRUPTED error.
194  */
195 STATIC int
196 xfs_refcount_update(
197 	struct xfs_btree_cur		*cur,
198 	struct xfs_refcount_irec	*irec)
199 {
200 	union xfs_btree_rec	rec;
201 	uint32_t		start;
202 	int			error;
203 
204 	trace_xfs_refcount_update(cur->bc_mp, cur->bc_ag.pag->pag_agno, irec);
205 
206 	start = xfs_refcount_encode_startblock(irec->rc_startblock,
207 			irec->rc_domain);
208 	rec.refc.rc_startblock = cpu_to_be32(start);
209 	rec.refc.rc_blockcount = cpu_to_be32(irec->rc_blockcount);
210 	rec.refc.rc_refcount = cpu_to_be32(irec->rc_refcount);
211 
212 	error = xfs_btree_update(cur, &rec);
213 	if (error)
214 		trace_xfs_refcount_update_error(cur->bc_mp,
215 				cur->bc_ag.pag->pag_agno, error, _RET_IP_);
216 	return error;
217 }
218 
219 /*
220  * Insert the record referred to by cur to the value given
221  * by [bno, len, refcount].
222  * This either works (return 0) or gets an EFSCORRUPTED error.
223  */
224 int
225 xfs_refcount_insert(
226 	struct xfs_btree_cur		*cur,
227 	struct xfs_refcount_irec	*irec,
228 	int				*i)
229 {
230 	int				error;
231 
232 	trace_xfs_refcount_insert(cur->bc_mp, cur->bc_ag.pag->pag_agno, irec);
233 
234 	cur->bc_rec.rc.rc_startblock = irec->rc_startblock;
235 	cur->bc_rec.rc.rc_blockcount = irec->rc_blockcount;
236 	cur->bc_rec.rc.rc_refcount = irec->rc_refcount;
237 	cur->bc_rec.rc.rc_domain = irec->rc_domain;
238 
239 	error = xfs_btree_insert(cur, i);
240 	if (error)
241 		goto out_error;
242 	if (XFS_IS_CORRUPT(cur->bc_mp, *i != 1)) {
243 		error = -EFSCORRUPTED;
244 		goto out_error;
245 	}
246 
247 out_error:
248 	if (error)
249 		trace_xfs_refcount_insert_error(cur->bc_mp,
250 				cur->bc_ag.pag->pag_agno, error, _RET_IP_);
251 	return error;
252 }
253 
254 /*
255  * Remove the record referred to by cur, then set the pointer to the spot
256  * where the record could be re-inserted, in case we want to increment or
257  * decrement the cursor.
258  * This either works (return 0) or gets an EFSCORRUPTED error.
259  */
260 STATIC int
261 xfs_refcount_delete(
262 	struct xfs_btree_cur	*cur,
263 	int			*i)
264 {
265 	struct xfs_refcount_irec	irec;
266 	int			found_rec;
267 	int			error;
268 
269 	error = xfs_refcount_get_rec(cur, &irec, &found_rec);
270 	if (error)
271 		goto out_error;
272 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
273 		error = -EFSCORRUPTED;
274 		goto out_error;
275 	}
276 	trace_xfs_refcount_delete(cur->bc_mp, cur->bc_ag.pag->pag_agno, &irec);
277 	error = xfs_btree_delete(cur, i);
278 	if (XFS_IS_CORRUPT(cur->bc_mp, *i != 1)) {
279 		error = -EFSCORRUPTED;
280 		goto out_error;
281 	}
282 	if (error)
283 		goto out_error;
284 	error = xfs_refcount_lookup_ge(cur, irec.rc_domain, irec.rc_startblock,
285 			&found_rec);
286 out_error:
287 	if (error)
288 		trace_xfs_refcount_delete_error(cur->bc_mp,
289 				cur->bc_ag.pag->pag_agno, error, _RET_IP_);
290 	return error;
291 }
292 
293 /*
294  * Adjusting the Reference Count
295  *
296  * As stated elsewhere, the reference count btree (refcbt) stores
297  * >1 reference counts for extents of physical blocks.  In this
298  * operation, we're either raising or lowering the reference count of
299  * some subrange stored in the tree:
300  *
301  *      <------ adjustment range ------>
302  * ----+   +---+-----+ +--+--------+---------
303  *  2  |   | 3 |  4  | |17|   55   |   10
304  * ----+   +---+-----+ +--+--------+---------
305  * X axis is physical blocks number;
306  * reference counts are the numbers inside the rectangles
307  *
308  * The first thing we need to do is to ensure that there are no
309  * refcount extents crossing either boundary of the range to be
310  * adjusted.  For any extent that does cross a boundary, split it into
311  * two extents so that we can increment the refcount of one of the
312  * pieces later:
313  *
314  *      <------ adjustment range ------>
315  * ----+   +---+-----+ +--+--------+----+----
316  *  2  |   | 3 |  2  | |17|   55   | 10 | 10
317  * ----+   +---+-----+ +--+--------+----+----
318  *
319  * For this next step, let's assume that all the physical blocks in
320  * the adjustment range are mapped to a file and are therefore in use
321  * at least once.  Therefore, we can infer that any gap in the
322  * refcount tree within the adjustment range represents a physical
323  * extent with refcount == 1:
324  *
325  *      <------ adjustment range ------>
326  * ----+---+---+-----+-+--+--------+----+----
327  *  2  |"1"| 3 |  2  |1|17|   55   | 10 | 10
328  * ----+---+---+-----+-+--+--------+----+----
329  *      ^
330  *
331  * For each extent that falls within the interval range, figure out
332  * which extent is to the left or the right of that extent.  Now we
333  * have a left, current, and right extent.  If the new reference count
334  * of the center extent enables us to merge left, center, and right
335  * into one record covering all three, do so.  If the center extent is
336  * at the left end of the range, abuts the left extent, and its new
337  * reference count matches the left extent's record, then merge them.
338  * If the center extent is at the right end of the range, abuts the
339  * right extent, and the reference counts match, merge those.  In the
340  * example, we can left merge (assuming an increment operation):
341  *
342  *      <------ adjustment range ------>
343  * --------+---+-----+-+--+--------+----+----
344  *    2    | 3 |  2  |1|17|   55   | 10 | 10
345  * --------+---+-----+-+--+--------+----+----
346  *          ^
347  *
348  * For all other extents within the range, adjust the reference count
349  * or delete it if the refcount falls below 2.  If we were
350  * incrementing, the end result looks like this:
351  *
352  *      <------ adjustment range ------>
353  * --------+---+-----+-+--+--------+----+----
354  *    2    | 4 |  3  |2|18|   56   | 11 | 10
355  * --------+---+-----+-+--+--------+----+----
356  *
357  * The result of a decrement operation looks as such:
358  *
359  *      <------ adjustment range ------>
360  * ----+   +---+       +--+--------+----+----
361  *  2  |   | 2 |       |16|   54   |  9 | 10
362  * ----+   +---+       +--+--------+----+----
363  *      DDDD    111111DD
364  *
365  * The blocks marked "D" are freed; the blocks marked "1" are only
366  * referenced once and therefore the record is removed from the
367  * refcount btree.
368  */
369 
370 /* Next block after this extent. */
371 static inline xfs_agblock_t
372 xfs_refc_next(
373 	struct xfs_refcount_irec	*rc)
374 {
375 	return rc->rc_startblock + rc->rc_blockcount;
376 }
377 
378 /*
379  * Split a refcount extent that crosses agbno.
380  */
381 STATIC int
382 xfs_refcount_split_extent(
383 	struct xfs_btree_cur		*cur,
384 	enum xfs_refc_domain		domain,
385 	xfs_agblock_t			agbno,
386 	bool				*shape_changed)
387 {
388 	struct xfs_refcount_irec	rcext, tmp;
389 	int				found_rec;
390 	int				error;
391 
392 	*shape_changed = false;
393 	error = xfs_refcount_lookup_le(cur, domain, agbno, &found_rec);
394 	if (error)
395 		goto out_error;
396 	if (!found_rec)
397 		return 0;
398 
399 	error = xfs_refcount_get_rec(cur, &rcext, &found_rec);
400 	if (error)
401 		goto out_error;
402 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
403 		error = -EFSCORRUPTED;
404 		goto out_error;
405 	}
406 	if (rcext.rc_domain != domain)
407 		return 0;
408 	if (rcext.rc_startblock == agbno || xfs_refc_next(&rcext) <= agbno)
409 		return 0;
410 
411 	*shape_changed = true;
412 	trace_xfs_refcount_split_extent(cur->bc_mp, cur->bc_ag.pag->pag_agno,
413 			&rcext, agbno);
414 
415 	/* Establish the right extent. */
416 	tmp = rcext;
417 	tmp.rc_startblock = agbno;
418 	tmp.rc_blockcount -= (agbno - rcext.rc_startblock);
419 	error = xfs_refcount_update(cur, &tmp);
420 	if (error)
421 		goto out_error;
422 
423 	/* Insert the left extent. */
424 	tmp = rcext;
425 	tmp.rc_blockcount = agbno - rcext.rc_startblock;
426 	error = xfs_refcount_insert(cur, &tmp, &found_rec);
427 	if (error)
428 		goto out_error;
429 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
430 		error = -EFSCORRUPTED;
431 		goto out_error;
432 	}
433 	return error;
434 
435 out_error:
436 	trace_xfs_refcount_split_extent_error(cur->bc_mp,
437 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
438 	return error;
439 }
440 
441 /*
442  * Merge the left, center, and right extents.
443  */
444 STATIC int
445 xfs_refcount_merge_center_extents(
446 	struct xfs_btree_cur		*cur,
447 	struct xfs_refcount_irec	*left,
448 	struct xfs_refcount_irec	*center,
449 	struct xfs_refcount_irec	*right,
450 	unsigned long long		extlen,
451 	xfs_extlen_t			*aglen)
452 {
453 	int				error;
454 	int				found_rec;
455 
456 	trace_xfs_refcount_merge_center_extents(cur->bc_mp,
457 			cur->bc_ag.pag->pag_agno, left, center, right);
458 
459 	ASSERT(left->rc_domain == center->rc_domain);
460 	ASSERT(right->rc_domain == center->rc_domain);
461 
462 	/*
463 	 * Make sure the center and right extents are not in the btree.
464 	 * If the center extent was synthesized, the first delete call
465 	 * removes the right extent and we skip the second deletion.
466 	 * If center and right were in the btree, then the first delete
467 	 * call removes the center and the second one removes the right
468 	 * extent.
469 	 */
470 	error = xfs_refcount_lookup_ge(cur, center->rc_domain,
471 			center->rc_startblock, &found_rec);
472 	if (error)
473 		goto out_error;
474 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
475 		error = -EFSCORRUPTED;
476 		goto out_error;
477 	}
478 
479 	error = xfs_refcount_delete(cur, &found_rec);
480 	if (error)
481 		goto out_error;
482 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
483 		error = -EFSCORRUPTED;
484 		goto out_error;
485 	}
486 
487 	if (center->rc_refcount > 1) {
488 		error = xfs_refcount_delete(cur, &found_rec);
489 		if (error)
490 			goto out_error;
491 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
492 			error = -EFSCORRUPTED;
493 			goto out_error;
494 		}
495 	}
496 
497 	/* Enlarge the left extent. */
498 	error = xfs_refcount_lookup_le(cur, left->rc_domain,
499 			left->rc_startblock, &found_rec);
500 	if (error)
501 		goto out_error;
502 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
503 		error = -EFSCORRUPTED;
504 		goto out_error;
505 	}
506 
507 	left->rc_blockcount = extlen;
508 	error = xfs_refcount_update(cur, left);
509 	if (error)
510 		goto out_error;
511 
512 	*aglen = 0;
513 	return error;
514 
515 out_error:
516 	trace_xfs_refcount_merge_center_extents_error(cur->bc_mp,
517 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
518 	return error;
519 }
520 
521 /*
522  * Merge with the left extent.
523  */
524 STATIC int
525 xfs_refcount_merge_left_extent(
526 	struct xfs_btree_cur		*cur,
527 	struct xfs_refcount_irec	*left,
528 	struct xfs_refcount_irec	*cleft,
529 	xfs_agblock_t			*agbno,
530 	xfs_extlen_t			*aglen)
531 {
532 	int				error;
533 	int				found_rec;
534 
535 	trace_xfs_refcount_merge_left_extent(cur->bc_mp,
536 			cur->bc_ag.pag->pag_agno, left, cleft);
537 
538 	ASSERT(left->rc_domain == cleft->rc_domain);
539 
540 	/* If the extent at agbno (cleft) wasn't synthesized, remove it. */
541 	if (cleft->rc_refcount > 1) {
542 		error = xfs_refcount_lookup_le(cur, cleft->rc_domain,
543 				cleft->rc_startblock, &found_rec);
544 		if (error)
545 			goto out_error;
546 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
547 			error = -EFSCORRUPTED;
548 			goto out_error;
549 		}
550 
551 		error = xfs_refcount_delete(cur, &found_rec);
552 		if (error)
553 			goto out_error;
554 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
555 			error = -EFSCORRUPTED;
556 			goto out_error;
557 		}
558 	}
559 
560 	/* Enlarge the left extent. */
561 	error = xfs_refcount_lookup_le(cur, left->rc_domain,
562 			left->rc_startblock, &found_rec);
563 	if (error)
564 		goto out_error;
565 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
566 		error = -EFSCORRUPTED;
567 		goto out_error;
568 	}
569 
570 	left->rc_blockcount += cleft->rc_blockcount;
571 	error = xfs_refcount_update(cur, left);
572 	if (error)
573 		goto out_error;
574 
575 	*agbno += cleft->rc_blockcount;
576 	*aglen -= cleft->rc_blockcount;
577 	return error;
578 
579 out_error:
580 	trace_xfs_refcount_merge_left_extent_error(cur->bc_mp,
581 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
582 	return error;
583 }
584 
585 /*
586  * Merge with the right extent.
587  */
588 STATIC int
589 xfs_refcount_merge_right_extent(
590 	struct xfs_btree_cur		*cur,
591 	struct xfs_refcount_irec	*right,
592 	struct xfs_refcount_irec	*cright,
593 	xfs_extlen_t			*aglen)
594 {
595 	int				error;
596 	int				found_rec;
597 
598 	trace_xfs_refcount_merge_right_extent(cur->bc_mp,
599 			cur->bc_ag.pag->pag_agno, cright, right);
600 
601 	ASSERT(right->rc_domain == cright->rc_domain);
602 
603 	/*
604 	 * If the extent ending at agbno+aglen (cright) wasn't synthesized,
605 	 * remove it.
606 	 */
607 	if (cright->rc_refcount > 1) {
608 		error = xfs_refcount_lookup_le(cur, cright->rc_domain,
609 				cright->rc_startblock, &found_rec);
610 		if (error)
611 			goto out_error;
612 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
613 			error = -EFSCORRUPTED;
614 			goto out_error;
615 		}
616 
617 		error = xfs_refcount_delete(cur, &found_rec);
618 		if (error)
619 			goto out_error;
620 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
621 			error = -EFSCORRUPTED;
622 			goto out_error;
623 		}
624 	}
625 
626 	/* Enlarge the right extent. */
627 	error = xfs_refcount_lookup_le(cur, right->rc_domain,
628 			right->rc_startblock, &found_rec);
629 	if (error)
630 		goto out_error;
631 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
632 		error = -EFSCORRUPTED;
633 		goto out_error;
634 	}
635 
636 	right->rc_startblock -= cright->rc_blockcount;
637 	right->rc_blockcount += cright->rc_blockcount;
638 	error = xfs_refcount_update(cur, right);
639 	if (error)
640 		goto out_error;
641 
642 	*aglen -= cright->rc_blockcount;
643 	return error;
644 
645 out_error:
646 	trace_xfs_refcount_merge_right_extent_error(cur->bc_mp,
647 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
648 	return error;
649 }
650 
651 /*
652  * Find the left extent and the one after it (cleft).  This function assumes
653  * that we've already split any extent crossing agbno.
654  */
655 STATIC int
656 xfs_refcount_find_left_extents(
657 	struct xfs_btree_cur		*cur,
658 	struct xfs_refcount_irec	*left,
659 	struct xfs_refcount_irec	*cleft,
660 	enum xfs_refc_domain		domain,
661 	xfs_agblock_t			agbno,
662 	xfs_extlen_t			aglen)
663 {
664 	struct xfs_refcount_irec	tmp;
665 	int				error;
666 	int				found_rec;
667 
668 	left->rc_startblock = cleft->rc_startblock = NULLAGBLOCK;
669 	error = xfs_refcount_lookup_le(cur, domain, agbno - 1, &found_rec);
670 	if (error)
671 		goto out_error;
672 	if (!found_rec)
673 		return 0;
674 
675 	error = xfs_refcount_get_rec(cur, &tmp, &found_rec);
676 	if (error)
677 		goto out_error;
678 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
679 		error = -EFSCORRUPTED;
680 		goto out_error;
681 	}
682 
683 	if (tmp.rc_domain != domain)
684 		return 0;
685 	if (xfs_refc_next(&tmp) != agbno)
686 		return 0;
687 	/* We have a left extent; retrieve (or invent) the next right one */
688 	*left = tmp;
689 
690 	error = xfs_btree_increment(cur, 0, &found_rec);
691 	if (error)
692 		goto out_error;
693 	if (found_rec) {
694 		error = xfs_refcount_get_rec(cur, &tmp, &found_rec);
695 		if (error)
696 			goto out_error;
697 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
698 			error = -EFSCORRUPTED;
699 			goto out_error;
700 		}
701 
702 		if (tmp.rc_domain != domain)
703 			goto not_found;
704 
705 		/* if tmp starts at the end of our range, just use that */
706 		if (tmp.rc_startblock == agbno)
707 			*cleft = tmp;
708 		else {
709 			/*
710 			 * There's a gap in the refcntbt at the start of the
711 			 * range we're interested in (refcount == 1) so
712 			 * synthesize the implied extent and pass it back.
713 			 * We assume here that the agbno/aglen range was
714 			 * passed in from a data fork extent mapping and
715 			 * therefore is allocated to exactly one owner.
716 			 */
717 			cleft->rc_startblock = agbno;
718 			cleft->rc_blockcount = min(aglen,
719 					tmp.rc_startblock - agbno);
720 			cleft->rc_refcount = 1;
721 			cleft->rc_domain = domain;
722 		}
723 	} else {
724 not_found:
725 		/*
726 		 * No extents, so pretend that there's one covering the whole
727 		 * range.
728 		 */
729 		cleft->rc_startblock = agbno;
730 		cleft->rc_blockcount = aglen;
731 		cleft->rc_refcount = 1;
732 		cleft->rc_domain = domain;
733 	}
734 	trace_xfs_refcount_find_left_extent(cur->bc_mp, cur->bc_ag.pag->pag_agno,
735 			left, cleft, agbno);
736 	return error;
737 
738 out_error:
739 	trace_xfs_refcount_find_left_extent_error(cur->bc_mp,
740 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
741 	return error;
742 }
743 
744 /*
745  * Find the right extent and the one before it (cright).  This function
746  * assumes that we've already split any extents crossing agbno + aglen.
747  */
748 STATIC int
749 xfs_refcount_find_right_extents(
750 	struct xfs_btree_cur		*cur,
751 	struct xfs_refcount_irec	*right,
752 	struct xfs_refcount_irec	*cright,
753 	enum xfs_refc_domain		domain,
754 	xfs_agblock_t			agbno,
755 	xfs_extlen_t			aglen)
756 {
757 	struct xfs_refcount_irec	tmp;
758 	int				error;
759 	int				found_rec;
760 
761 	right->rc_startblock = cright->rc_startblock = NULLAGBLOCK;
762 	error = xfs_refcount_lookup_ge(cur, domain, agbno + aglen, &found_rec);
763 	if (error)
764 		goto out_error;
765 	if (!found_rec)
766 		return 0;
767 
768 	error = xfs_refcount_get_rec(cur, &tmp, &found_rec);
769 	if (error)
770 		goto out_error;
771 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
772 		error = -EFSCORRUPTED;
773 		goto out_error;
774 	}
775 
776 	if (tmp.rc_domain != domain)
777 		return 0;
778 	if (tmp.rc_startblock != agbno + aglen)
779 		return 0;
780 	/* We have a right extent; retrieve (or invent) the next left one */
781 	*right = tmp;
782 
783 	error = xfs_btree_decrement(cur, 0, &found_rec);
784 	if (error)
785 		goto out_error;
786 	if (found_rec) {
787 		error = xfs_refcount_get_rec(cur, &tmp, &found_rec);
788 		if (error)
789 			goto out_error;
790 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
791 			error = -EFSCORRUPTED;
792 			goto out_error;
793 		}
794 
795 		if (tmp.rc_domain != domain)
796 			goto not_found;
797 
798 		/* if tmp ends at the end of our range, just use that */
799 		if (xfs_refc_next(&tmp) == agbno + aglen)
800 			*cright = tmp;
801 		else {
802 			/*
803 			 * There's a gap in the refcntbt at the end of the
804 			 * range we're interested in (refcount == 1) so
805 			 * create the implied extent and pass it back.
806 			 * We assume here that the agbno/aglen range was
807 			 * passed in from a data fork extent mapping and
808 			 * therefore is allocated to exactly one owner.
809 			 */
810 			cright->rc_startblock = max(agbno, xfs_refc_next(&tmp));
811 			cright->rc_blockcount = right->rc_startblock -
812 					cright->rc_startblock;
813 			cright->rc_refcount = 1;
814 			cright->rc_domain = domain;
815 		}
816 	} else {
817 not_found:
818 		/*
819 		 * No extents, so pretend that there's one covering the whole
820 		 * range.
821 		 */
822 		cright->rc_startblock = agbno;
823 		cright->rc_blockcount = aglen;
824 		cright->rc_refcount = 1;
825 		cright->rc_domain = domain;
826 	}
827 	trace_xfs_refcount_find_right_extent(cur->bc_mp, cur->bc_ag.pag->pag_agno,
828 			cright, right, agbno + aglen);
829 	return error;
830 
831 out_error:
832 	trace_xfs_refcount_find_right_extent_error(cur->bc_mp,
833 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
834 	return error;
835 }
836 
837 /* Is this extent valid? */
838 static inline bool
839 xfs_refc_valid(
840 	const struct xfs_refcount_irec	*rc)
841 {
842 	return rc->rc_startblock != NULLAGBLOCK;
843 }
844 
845 static inline xfs_nlink_t
846 xfs_refc_merge_refcount(
847 	const struct xfs_refcount_irec	*irec,
848 	enum xfs_refc_adjust_op		adjust)
849 {
850 	/* Once a record hits MAXREFCOUNT, it is pinned there forever */
851 	if (irec->rc_refcount == MAXREFCOUNT)
852 		return MAXREFCOUNT;
853 	return irec->rc_refcount + adjust;
854 }
855 
856 static inline bool
857 xfs_refc_want_merge_center(
858 	const struct xfs_refcount_irec	*left,
859 	const struct xfs_refcount_irec	*cleft,
860 	const struct xfs_refcount_irec	*cright,
861 	const struct xfs_refcount_irec	*right,
862 	bool				cleft_is_cright,
863 	enum xfs_refc_adjust_op		adjust,
864 	unsigned long long		*ulenp)
865 {
866 	unsigned long long		ulen = left->rc_blockcount;
867 	xfs_nlink_t			new_refcount;
868 
869 	/*
870 	 * To merge with a center record, both shoulder records must be
871 	 * adjacent to the record we want to adjust.  This is only true if
872 	 * find_left and find_right made all four records valid.
873 	 */
874 	if (!xfs_refc_valid(left)  || !xfs_refc_valid(right) ||
875 	    !xfs_refc_valid(cleft) || !xfs_refc_valid(cright))
876 		return false;
877 
878 	/* There must only be one record for the entire range. */
879 	if (!cleft_is_cright)
880 		return false;
881 
882 	/* The shoulder record refcounts must match the new refcount. */
883 	new_refcount = xfs_refc_merge_refcount(cleft, adjust);
884 	if (left->rc_refcount != new_refcount)
885 		return false;
886 	if (right->rc_refcount != new_refcount)
887 		return false;
888 
889 	/*
890 	 * The new record cannot exceed the max length.  ulen is a ULL as the
891 	 * individual record block counts can be up to (u32 - 1) in length
892 	 * hence we need to catch u32 addition overflows here.
893 	 */
894 	ulen += cleft->rc_blockcount + right->rc_blockcount;
895 	if (ulen >= MAXREFCEXTLEN)
896 		return false;
897 
898 	*ulenp = ulen;
899 	return true;
900 }
901 
902 static inline bool
903 xfs_refc_want_merge_left(
904 	const struct xfs_refcount_irec	*left,
905 	const struct xfs_refcount_irec	*cleft,
906 	enum xfs_refc_adjust_op		adjust)
907 {
908 	unsigned long long		ulen = left->rc_blockcount;
909 	xfs_nlink_t			new_refcount;
910 
911 	/*
912 	 * For a left merge, the left shoulder record must be adjacent to the
913 	 * start of the range.  If this is true, find_left made left and cleft
914 	 * contain valid contents.
915 	 */
916 	if (!xfs_refc_valid(left) || !xfs_refc_valid(cleft))
917 		return false;
918 
919 	/* Left shoulder record refcount must match the new refcount. */
920 	new_refcount = xfs_refc_merge_refcount(cleft, adjust);
921 	if (left->rc_refcount != new_refcount)
922 		return false;
923 
924 	/*
925 	 * The new record cannot exceed the max length.  ulen is a ULL as the
926 	 * individual record block counts can be up to (u32 - 1) in length
927 	 * hence we need to catch u32 addition overflows here.
928 	 */
929 	ulen += cleft->rc_blockcount;
930 	if (ulen >= MAXREFCEXTLEN)
931 		return false;
932 
933 	return true;
934 }
935 
936 static inline bool
937 xfs_refc_want_merge_right(
938 	const struct xfs_refcount_irec	*cright,
939 	const struct xfs_refcount_irec	*right,
940 	enum xfs_refc_adjust_op		adjust)
941 {
942 	unsigned long long		ulen = right->rc_blockcount;
943 	xfs_nlink_t			new_refcount;
944 
945 	/*
946 	 * For a right merge, the right shoulder record must be adjacent to the
947 	 * end of the range.  If this is true, find_right made cright and right
948 	 * contain valid contents.
949 	 */
950 	if (!xfs_refc_valid(right) || !xfs_refc_valid(cright))
951 		return false;
952 
953 	/* Right shoulder record refcount must match the new refcount. */
954 	new_refcount = xfs_refc_merge_refcount(cright, adjust);
955 	if (right->rc_refcount != new_refcount)
956 		return false;
957 
958 	/*
959 	 * The new record cannot exceed the max length.  ulen is a ULL as the
960 	 * individual record block counts can be up to (u32 - 1) in length
961 	 * hence we need to catch u32 addition overflows here.
962 	 */
963 	ulen += cright->rc_blockcount;
964 	if (ulen >= MAXREFCEXTLEN)
965 		return false;
966 
967 	return true;
968 }
969 
970 /*
971  * Try to merge with any extents on the boundaries of the adjustment range.
972  */
973 STATIC int
974 xfs_refcount_merge_extents(
975 	struct xfs_btree_cur	*cur,
976 	enum xfs_refc_domain	domain,
977 	xfs_agblock_t		*agbno,
978 	xfs_extlen_t		*aglen,
979 	enum xfs_refc_adjust_op adjust,
980 	bool			*shape_changed)
981 {
982 	struct xfs_refcount_irec	left = {0}, cleft = {0};
983 	struct xfs_refcount_irec	cright = {0}, right = {0};
984 	int				error;
985 	unsigned long long		ulen;
986 	bool				cequal;
987 
988 	*shape_changed = false;
989 	/*
990 	 * Find the extent just below agbno [left], just above agbno [cleft],
991 	 * just below (agbno + aglen) [cright], and just above (agbno + aglen)
992 	 * [right].
993 	 */
994 	error = xfs_refcount_find_left_extents(cur, &left, &cleft, domain,
995 			*agbno, *aglen);
996 	if (error)
997 		return error;
998 	error = xfs_refcount_find_right_extents(cur, &right, &cright, domain,
999 			*agbno, *aglen);
1000 	if (error)
1001 		return error;
1002 
1003 	/* No left or right extent to merge; exit. */
1004 	if (!xfs_refc_valid(&left) && !xfs_refc_valid(&right))
1005 		return 0;
1006 
1007 	cequal = (cleft.rc_startblock == cright.rc_startblock) &&
1008 		 (cleft.rc_blockcount == cright.rc_blockcount);
1009 
1010 	/* Try to merge left, cleft, and right.  cleft must == cright. */
1011 	if (xfs_refc_want_merge_center(&left, &cleft, &cright, &right, cequal,
1012 				adjust, &ulen)) {
1013 		*shape_changed = true;
1014 		return xfs_refcount_merge_center_extents(cur, &left, &cleft,
1015 				&right, ulen, aglen);
1016 	}
1017 
1018 	/* Try to merge left and cleft. */
1019 	if (xfs_refc_want_merge_left(&left, &cleft, adjust)) {
1020 		*shape_changed = true;
1021 		error = xfs_refcount_merge_left_extent(cur, &left, &cleft,
1022 				agbno, aglen);
1023 		if (error)
1024 			return error;
1025 
1026 		/*
1027 		 * If we just merged left + cleft and cleft == cright,
1028 		 * we no longer have a cright to merge with right.  We're done.
1029 		 */
1030 		if (cequal)
1031 			return 0;
1032 	}
1033 
1034 	/* Try to merge cright and right. */
1035 	if (xfs_refc_want_merge_right(&cright, &right, adjust)) {
1036 		*shape_changed = true;
1037 		return xfs_refcount_merge_right_extent(cur, &right, &cright,
1038 				aglen);
1039 	}
1040 
1041 	return 0;
1042 }
1043 
1044 /*
1045  * XXX: This is a pretty hand-wavy estimate.  The penalty for guessing
1046  * true incorrectly is a shutdown FS; the penalty for guessing false
1047  * incorrectly is more transaction rolls than might be necessary.
1048  * Be conservative here.
1049  */
1050 static bool
1051 xfs_refcount_still_have_space(
1052 	struct xfs_btree_cur		*cur)
1053 {
1054 	unsigned long			overhead;
1055 
1056 	/*
1057 	 * Worst case estimate: full splits of the free space and rmap btrees
1058 	 * to handle each of the shape changes to the refcount btree.
1059 	 */
1060 	overhead = xfs_allocfree_block_count(cur->bc_mp,
1061 				cur->bc_ag.refc.shape_changes);
1062 	overhead += cur->bc_mp->m_refc_maxlevels;
1063 	overhead *= cur->bc_mp->m_sb.sb_blocksize;
1064 
1065 	/*
1066 	 * Only allow 2 refcount extent updates per transaction if the
1067 	 * refcount continue update "error" has been injected.
1068 	 */
1069 	if (cur->bc_ag.refc.nr_ops > 2 &&
1070 	    XFS_TEST_ERROR(false, cur->bc_mp,
1071 			XFS_ERRTAG_REFCOUNT_CONTINUE_UPDATE))
1072 		return false;
1073 
1074 	if (cur->bc_ag.refc.nr_ops == 0)
1075 		return true;
1076 	else if (overhead > cur->bc_tp->t_log_res)
1077 		return false;
1078 	return  cur->bc_tp->t_log_res - overhead >
1079 		cur->bc_ag.refc.nr_ops * XFS_REFCOUNT_ITEM_OVERHEAD;
1080 }
1081 
1082 /*
1083  * Adjust the refcounts of middle extents.  At this point we should have
1084  * split extents that crossed the adjustment range; merged with adjacent
1085  * extents; and updated agbno/aglen to reflect the merges.  Therefore,
1086  * all we have to do is update the extents inside [agbno, agbno + aglen].
1087  */
1088 STATIC int
1089 xfs_refcount_adjust_extents(
1090 	struct xfs_btree_cur	*cur,
1091 	xfs_agblock_t		*agbno,
1092 	xfs_extlen_t		*aglen,
1093 	enum xfs_refc_adjust_op	adj)
1094 {
1095 	struct xfs_refcount_irec	ext, tmp;
1096 	int				error;
1097 	int				found_rec, found_tmp;
1098 	xfs_fsblock_t			fsbno;
1099 
1100 	/* Merging did all the work already. */
1101 	if (*aglen == 0)
1102 		return 0;
1103 
1104 	error = xfs_refcount_lookup_ge(cur, XFS_REFC_DOMAIN_SHARED, *agbno,
1105 			&found_rec);
1106 	if (error)
1107 		goto out_error;
1108 
1109 	while (*aglen > 0 && xfs_refcount_still_have_space(cur)) {
1110 		error = xfs_refcount_get_rec(cur, &ext, &found_rec);
1111 		if (error)
1112 			goto out_error;
1113 		if (!found_rec || ext.rc_domain != XFS_REFC_DOMAIN_SHARED) {
1114 			ext.rc_startblock = cur->bc_mp->m_sb.sb_agblocks;
1115 			ext.rc_blockcount = 0;
1116 			ext.rc_refcount = 0;
1117 			ext.rc_domain = XFS_REFC_DOMAIN_SHARED;
1118 		}
1119 
1120 		/*
1121 		 * Deal with a hole in the refcount tree; if a file maps to
1122 		 * these blocks and there's no refcountbt record, pretend that
1123 		 * there is one with refcount == 1.
1124 		 */
1125 		if (ext.rc_startblock != *agbno) {
1126 			tmp.rc_startblock = *agbno;
1127 			tmp.rc_blockcount = min(*aglen,
1128 					ext.rc_startblock - *agbno);
1129 			tmp.rc_refcount = 1 + adj;
1130 			tmp.rc_domain = XFS_REFC_DOMAIN_SHARED;
1131 
1132 			trace_xfs_refcount_modify_extent(cur->bc_mp,
1133 					cur->bc_ag.pag->pag_agno, &tmp);
1134 
1135 			/*
1136 			 * Either cover the hole (increment) or
1137 			 * delete the range (decrement).
1138 			 */
1139 			cur->bc_ag.refc.nr_ops++;
1140 			if (tmp.rc_refcount) {
1141 				error = xfs_refcount_insert(cur, &tmp,
1142 						&found_tmp);
1143 				if (error)
1144 					goto out_error;
1145 				if (XFS_IS_CORRUPT(cur->bc_mp,
1146 						   found_tmp != 1)) {
1147 					error = -EFSCORRUPTED;
1148 					goto out_error;
1149 				}
1150 			} else {
1151 				fsbno = XFS_AGB_TO_FSB(cur->bc_mp,
1152 						cur->bc_ag.pag->pag_agno,
1153 						tmp.rc_startblock);
1154 				xfs_free_extent_later(cur->bc_tp, fsbno,
1155 						  tmp.rc_blockcount, NULL);
1156 			}
1157 
1158 			(*agbno) += tmp.rc_blockcount;
1159 			(*aglen) -= tmp.rc_blockcount;
1160 
1161 			/* Stop if there's nothing left to modify */
1162 			if (*aglen == 0 || !xfs_refcount_still_have_space(cur))
1163 				break;
1164 
1165 			/* Move the cursor to the start of ext. */
1166 			error = xfs_refcount_lookup_ge(cur,
1167 					XFS_REFC_DOMAIN_SHARED, *agbno,
1168 					&found_rec);
1169 			if (error)
1170 				goto out_error;
1171 		}
1172 
1173 		/*
1174 		 * A previous step trimmed agbno/aglen such that the end of the
1175 		 * range would not be in the middle of the record.  If this is
1176 		 * no longer the case, something is seriously wrong with the
1177 		 * btree.  Make sure we never feed the synthesized record into
1178 		 * the processing loop below.
1179 		 */
1180 		if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount == 0) ||
1181 		    XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount > *aglen)) {
1182 			error = -EFSCORRUPTED;
1183 			goto out_error;
1184 		}
1185 
1186 		/*
1187 		 * Adjust the reference count and either update the tree
1188 		 * (incr) or free the blocks (decr).
1189 		 */
1190 		if (ext.rc_refcount == MAXREFCOUNT)
1191 			goto skip;
1192 		ext.rc_refcount += adj;
1193 		trace_xfs_refcount_modify_extent(cur->bc_mp,
1194 				cur->bc_ag.pag->pag_agno, &ext);
1195 		cur->bc_ag.refc.nr_ops++;
1196 		if (ext.rc_refcount > 1) {
1197 			error = xfs_refcount_update(cur, &ext);
1198 			if (error)
1199 				goto out_error;
1200 		} else if (ext.rc_refcount == 1) {
1201 			error = xfs_refcount_delete(cur, &found_rec);
1202 			if (error)
1203 				goto out_error;
1204 			if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
1205 				error = -EFSCORRUPTED;
1206 				goto out_error;
1207 			}
1208 			goto advloop;
1209 		} else {
1210 			fsbno = XFS_AGB_TO_FSB(cur->bc_mp,
1211 					cur->bc_ag.pag->pag_agno,
1212 					ext.rc_startblock);
1213 			xfs_free_extent_later(cur->bc_tp, fsbno,
1214 					ext.rc_blockcount, NULL);
1215 		}
1216 
1217 skip:
1218 		error = xfs_btree_increment(cur, 0, &found_rec);
1219 		if (error)
1220 			goto out_error;
1221 
1222 advloop:
1223 		(*agbno) += ext.rc_blockcount;
1224 		(*aglen) -= ext.rc_blockcount;
1225 	}
1226 
1227 	return error;
1228 out_error:
1229 	trace_xfs_refcount_modify_extent_error(cur->bc_mp,
1230 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
1231 	return error;
1232 }
1233 
1234 /* Adjust the reference count of a range of AG blocks. */
1235 STATIC int
1236 xfs_refcount_adjust(
1237 	struct xfs_btree_cur	*cur,
1238 	xfs_agblock_t		*agbno,
1239 	xfs_extlen_t		*aglen,
1240 	enum xfs_refc_adjust_op	adj)
1241 {
1242 	bool			shape_changed;
1243 	int			shape_changes = 0;
1244 	int			error;
1245 
1246 	if (adj == XFS_REFCOUNT_ADJUST_INCREASE)
1247 		trace_xfs_refcount_increase(cur->bc_mp,
1248 				cur->bc_ag.pag->pag_agno, *agbno, *aglen);
1249 	else
1250 		trace_xfs_refcount_decrease(cur->bc_mp,
1251 				cur->bc_ag.pag->pag_agno, *agbno, *aglen);
1252 
1253 	/*
1254 	 * Ensure that no rcextents cross the boundary of the adjustment range.
1255 	 */
1256 	error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_SHARED,
1257 			*agbno, &shape_changed);
1258 	if (error)
1259 		goto out_error;
1260 	if (shape_changed)
1261 		shape_changes++;
1262 
1263 	error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_SHARED,
1264 			*agbno + *aglen, &shape_changed);
1265 	if (error)
1266 		goto out_error;
1267 	if (shape_changed)
1268 		shape_changes++;
1269 
1270 	/*
1271 	 * Try to merge with the left or right extents of the range.
1272 	 */
1273 	error = xfs_refcount_merge_extents(cur, XFS_REFC_DOMAIN_SHARED,
1274 			agbno, aglen, adj, &shape_changed);
1275 	if (error)
1276 		goto out_error;
1277 	if (shape_changed)
1278 		shape_changes++;
1279 	if (shape_changes)
1280 		cur->bc_ag.refc.shape_changes++;
1281 
1282 	/* Now that we've taken care of the ends, adjust the middle extents */
1283 	error = xfs_refcount_adjust_extents(cur, agbno, aglen, adj);
1284 	if (error)
1285 		goto out_error;
1286 
1287 	return 0;
1288 
1289 out_error:
1290 	trace_xfs_refcount_adjust_error(cur->bc_mp, cur->bc_ag.pag->pag_agno,
1291 			error, _RET_IP_);
1292 	return error;
1293 }
1294 
1295 /* Clean up after calling xfs_refcount_finish_one. */
1296 void
1297 xfs_refcount_finish_one_cleanup(
1298 	struct xfs_trans	*tp,
1299 	struct xfs_btree_cur	*rcur,
1300 	int			error)
1301 {
1302 	struct xfs_buf		*agbp;
1303 
1304 	if (rcur == NULL)
1305 		return;
1306 	agbp = rcur->bc_ag.agbp;
1307 	xfs_btree_del_cursor(rcur, error);
1308 	if (error)
1309 		xfs_trans_brelse(tp, agbp);
1310 }
1311 
1312 /*
1313  * Set up a continuation a deferred refcount operation by updating the intent.
1314  * Checks to make sure we're not going to run off the end of the AG.
1315  */
1316 static inline int
1317 xfs_refcount_continue_op(
1318 	struct xfs_btree_cur		*cur,
1319 	struct xfs_refcount_intent	*ri,
1320 	xfs_agblock_t			new_agbno)
1321 {
1322 	struct xfs_mount		*mp = cur->bc_mp;
1323 	struct xfs_perag		*pag = cur->bc_ag.pag;
1324 
1325 	if (XFS_IS_CORRUPT(mp, !xfs_verify_agbext(pag, new_agbno,
1326 					ri->ri_blockcount)))
1327 		return -EFSCORRUPTED;
1328 
1329 	ri->ri_startblock = XFS_AGB_TO_FSB(mp, pag->pag_agno, new_agbno);
1330 
1331 	ASSERT(xfs_verify_fsbext(mp, ri->ri_startblock, ri->ri_blockcount));
1332 	ASSERT(pag->pag_agno == XFS_FSB_TO_AGNO(mp, ri->ri_startblock));
1333 
1334 	return 0;
1335 }
1336 
1337 /*
1338  * Process one of the deferred refcount operations.  We pass back the
1339  * btree cursor to maintain our lock on the btree between calls.
1340  * This saves time and eliminates a buffer deadlock between the
1341  * superblock and the AGF because we'll always grab them in the same
1342  * order.
1343  */
1344 int
1345 xfs_refcount_finish_one(
1346 	struct xfs_trans		*tp,
1347 	struct xfs_refcount_intent	*ri,
1348 	struct xfs_btree_cur		**pcur)
1349 {
1350 	struct xfs_mount		*mp = tp->t_mountp;
1351 	struct xfs_btree_cur		*rcur;
1352 	struct xfs_buf			*agbp = NULL;
1353 	int				error = 0;
1354 	xfs_agblock_t			bno;
1355 	unsigned long			nr_ops = 0;
1356 	int				shape_changes = 0;
1357 
1358 	bno = XFS_FSB_TO_AGBNO(mp, ri->ri_startblock);
1359 
1360 	trace_xfs_refcount_deferred(mp, XFS_FSB_TO_AGNO(mp, ri->ri_startblock),
1361 			ri->ri_type, XFS_FSB_TO_AGBNO(mp, ri->ri_startblock),
1362 			ri->ri_blockcount);
1363 
1364 	if (XFS_TEST_ERROR(false, mp, XFS_ERRTAG_REFCOUNT_FINISH_ONE))
1365 		return -EIO;
1366 
1367 	/*
1368 	 * If we haven't gotten a cursor or the cursor AG doesn't match
1369 	 * the startblock, get one now.
1370 	 */
1371 	rcur = *pcur;
1372 	if (rcur != NULL && rcur->bc_ag.pag != ri->ri_pag) {
1373 		nr_ops = rcur->bc_ag.refc.nr_ops;
1374 		shape_changes = rcur->bc_ag.refc.shape_changes;
1375 		xfs_refcount_finish_one_cleanup(tp, rcur, 0);
1376 		rcur = NULL;
1377 		*pcur = NULL;
1378 	}
1379 	if (rcur == NULL) {
1380 		error = xfs_alloc_read_agf(ri->ri_pag, tp,
1381 				XFS_ALLOC_FLAG_FREEING, &agbp);
1382 		if (error)
1383 			return error;
1384 
1385 		rcur = xfs_refcountbt_init_cursor(mp, tp, agbp, ri->ri_pag);
1386 		rcur->bc_ag.refc.nr_ops = nr_ops;
1387 		rcur->bc_ag.refc.shape_changes = shape_changes;
1388 	}
1389 	*pcur = rcur;
1390 
1391 	switch (ri->ri_type) {
1392 	case XFS_REFCOUNT_INCREASE:
1393 		error = xfs_refcount_adjust(rcur, &bno, &ri->ri_blockcount,
1394 				XFS_REFCOUNT_ADJUST_INCREASE);
1395 		if (error)
1396 			return error;
1397 		if (ri->ri_blockcount > 0)
1398 			error = xfs_refcount_continue_op(rcur, ri, bno);
1399 		break;
1400 	case XFS_REFCOUNT_DECREASE:
1401 		error = xfs_refcount_adjust(rcur, &bno, &ri->ri_blockcount,
1402 				XFS_REFCOUNT_ADJUST_DECREASE);
1403 		if (error)
1404 			return error;
1405 		if (ri->ri_blockcount > 0)
1406 			error = xfs_refcount_continue_op(rcur, ri, bno);
1407 		break;
1408 	case XFS_REFCOUNT_ALLOC_COW:
1409 		error = __xfs_refcount_cow_alloc(rcur, bno, ri->ri_blockcount);
1410 		if (error)
1411 			return error;
1412 		ri->ri_blockcount = 0;
1413 		break;
1414 	case XFS_REFCOUNT_FREE_COW:
1415 		error = __xfs_refcount_cow_free(rcur, bno, ri->ri_blockcount);
1416 		if (error)
1417 			return error;
1418 		ri->ri_blockcount = 0;
1419 		break;
1420 	default:
1421 		ASSERT(0);
1422 		return -EFSCORRUPTED;
1423 	}
1424 	if (!error && ri->ri_blockcount > 0)
1425 		trace_xfs_refcount_finish_one_leftover(mp, ri->ri_pag->pag_agno,
1426 				ri->ri_type, bno, ri->ri_blockcount);
1427 	return error;
1428 }
1429 
1430 /*
1431  * Record a refcount intent for later processing.
1432  */
1433 static void
1434 __xfs_refcount_add(
1435 	struct xfs_trans		*tp,
1436 	enum xfs_refcount_intent_type	type,
1437 	xfs_fsblock_t			startblock,
1438 	xfs_extlen_t			blockcount)
1439 {
1440 	struct xfs_refcount_intent	*ri;
1441 
1442 	trace_xfs_refcount_defer(tp->t_mountp,
1443 			XFS_FSB_TO_AGNO(tp->t_mountp, startblock),
1444 			type, XFS_FSB_TO_AGBNO(tp->t_mountp, startblock),
1445 			blockcount);
1446 
1447 	ri = kmem_cache_alloc(xfs_refcount_intent_cache,
1448 			GFP_NOFS | __GFP_NOFAIL);
1449 	INIT_LIST_HEAD(&ri->ri_list);
1450 	ri->ri_type = type;
1451 	ri->ri_startblock = startblock;
1452 	ri->ri_blockcount = blockcount;
1453 
1454 	xfs_refcount_update_get_group(tp->t_mountp, ri);
1455 	xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_REFCOUNT, &ri->ri_list);
1456 }
1457 
1458 /*
1459  * Increase the reference count of the blocks backing a file's extent.
1460  */
1461 void
1462 xfs_refcount_increase_extent(
1463 	struct xfs_trans		*tp,
1464 	struct xfs_bmbt_irec		*PREV)
1465 {
1466 	if (!xfs_has_reflink(tp->t_mountp))
1467 		return;
1468 
1469 	__xfs_refcount_add(tp, XFS_REFCOUNT_INCREASE, PREV->br_startblock,
1470 			PREV->br_blockcount);
1471 }
1472 
1473 /*
1474  * Decrease the reference count of the blocks backing a file's extent.
1475  */
1476 void
1477 xfs_refcount_decrease_extent(
1478 	struct xfs_trans		*tp,
1479 	struct xfs_bmbt_irec		*PREV)
1480 {
1481 	if (!xfs_has_reflink(tp->t_mountp))
1482 		return;
1483 
1484 	__xfs_refcount_add(tp, XFS_REFCOUNT_DECREASE, PREV->br_startblock,
1485 			PREV->br_blockcount);
1486 }
1487 
1488 /*
1489  * Given an AG extent, find the lowest-numbered run of shared blocks
1490  * within that range and return the range in fbno/flen.  If
1491  * find_end_of_shared is set, return the longest contiguous extent of
1492  * shared blocks; if not, just return the first extent we find.  If no
1493  * shared blocks are found, fbno and flen will be set to NULLAGBLOCK
1494  * and 0, respectively.
1495  */
1496 int
1497 xfs_refcount_find_shared(
1498 	struct xfs_btree_cur		*cur,
1499 	xfs_agblock_t			agbno,
1500 	xfs_extlen_t			aglen,
1501 	xfs_agblock_t			*fbno,
1502 	xfs_extlen_t			*flen,
1503 	bool				find_end_of_shared)
1504 {
1505 	struct xfs_refcount_irec	tmp;
1506 	int				i;
1507 	int				have;
1508 	int				error;
1509 
1510 	trace_xfs_refcount_find_shared(cur->bc_mp, cur->bc_ag.pag->pag_agno,
1511 			agbno, aglen);
1512 
1513 	/* By default, skip the whole range */
1514 	*fbno = NULLAGBLOCK;
1515 	*flen = 0;
1516 
1517 	/* Try to find a refcount extent that crosses the start */
1518 	error = xfs_refcount_lookup_le(cur, XFS_REFC_DOMAIN_SHARED, agbno,
1519 			&have);
1520 	if (error)
1521 		goto out_error;
1522 	if (!have) {
1523 		/* No left extent, look at the next one */
1524 		error = xfs_btree_increment(cur, 0, &have);
1525 		if (error)
1526 			goto out_error;
1527 		if (!have)
1528 			goto done;
1529 	}
1530 	error = xfs_refcount_get_rec(cur, &tmp, &i);
1531 	if (error)
1532 		goto out_error;
1533 	if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
1534 		error = -EFSCORRUPTED;
1535 		goto out_error;
1536 	}
1537 	if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED)
1538 		goto done;
1539 
1540 	/* If the extent ends before the start, look at the next one */
1541 	if (tmp.rc_startblock + tmp.rc_blockcount <= agbno) {
1542 		error = xfs_btree_increment(cur, 0, &have);
1543 		if (error)
1544 			goto out_error;
1545 		if (!have)
1546 			goto done;
1547 		error = xfs_refcount_get_rec(cur, &tmp, &i);
1548 		if (error)
1549 			goto out_error;
1550 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
1551 			error = -EFSCORRUPTED;
1552 			goto out_error;
1553 		}
1554 		if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED)
1555 			goto done;
1556 	}
1557 
1558 	/* If the extent starts after the range we want, bail out */
1559 	if (tmp.rc_startblock >= agbno + aglen)
1560 		goto done;
1561 
1562 	/* We found the start of a shared extent! */
1563 	if (tmp.rc_startblock < agbno) {
1564 		tmp.rc_blockcount -= (agbno - tmp.rc_startblock);
1565 		tmp.rc_startblock = agbno;
1566 	}
1567 
1568 	*fbno = tmp.rc_startblock;
1569 	*flen = min(tmp.rc_blockcount, agbno + aglen - *fbno);
1570 	if (!find_end_of_shared)
1571 		goto done;
1572 
1573 	/* Otherwise, find the end of this shared extent */
1574 	while (*fbno + *flen < agbno + aglen) {
1575 		error = xfs_btree_increment(cur, 0, &have);
1576 		if (error)
1577 			goto out_error;
1578 		if (!have)
1579 			break;
1580 		error = xfs_refcount_get_rec(cur, &tmp, &i);
1581 		if (error)
1582 			goto out_error;
1583 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
1584 			error = -EFSCORRUPTED;
1585 			goto out_error;
1586 		}
1587 		if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED ||
1588 		    tmp.rc_startblock >= agbno + aglen ||
1589 		    tmp.rc_startblock != *fbno + *flen)
1590 			break;
1591 		*flen = min(*flen + tmp.rc_blockcount, agbno + aglen - *fbno);
1592 	}
1593 
1594 done:
1595 	trace_xfs_refcount_find_shared_result(cur->bc_mp,
1596 			cur->bc_ag.pag->pag_agno, *fbno, *flen);
1597 
1598 out_error:
1599 	if (error)
1600 		trace_xfs_refcount_find_shared_error(cur->bc_mp,
1601 				cur->bc_ag.pag->pag_agno, error, _RET_IP_);
1602 	return error;
1603 }
1604 
1605 /*
1606  * Recovering CoW Blocks After a Crash
1607  *
1608  * Due to the way that the copy on write mechanism works, there's a window of
1609  * opportunity in which we can lose track of allocated blocks during a crash.
1610  * Because CoW uses delayed allocation in the in-core CoW fork, writeback
1611  * causes blocks to be allocated and stored in the CoW fork.  The blocks are
1612  * no longer in the free space btree but are not otherwise recorded anywhere
1613  * until the write completes and the blocks are mapped into the file.  A crash
1614  * in between allocation and remapping results in the replacement blocks being
1615  * lost.  This situation is exacerbated by the CoW extent size hint because
1616  * allocations can hang around for long time.
1617  *
1618  * However, there is a place where we can record these allocations before they
1619  * become mappings -- the reference count btree.  The btree does not record
1620  * extents with refcount == 1, so we can record allocations with a refcount of
1621  * 1.  Blocks being used for CoW writeout cannot be shared, so there should be
1622  * no conflict with shared block records.  These mappings should be created
1623  * when we allocate blocks to the CoW fork and deleted when they're removed
1624  * from the CoW fork.
1625  *
1626  * Minor nit: records for in-progress CoW allocations and records for shared
1627  * extents must never be merged, to preserve the property that (except for CoW
1628  * allocations) there are no refcount btree entries with refcount == 1.  The
1629  * only time this could potentially happen is when unsharing a block that's
1630  * adjacent to CoW allocations, so we must be careful to avoid this.
1631  *
1632  * At mount time we recover lost CoW allocations by searching the refcount
1633  * btree for these refcount == 1 mappings.  These represent CoW allocations
1634  * that were in progress at the time the filesystem went down, so we can free
1635  * them to get the space back.
1636  *
1637  * This mechanism is superior to creating EFIs for unmapped CoW extents for
1638  * several reasons -- first, EFIs pin the tail of the log and would have to be
1639  * periodically relogged to avoid filling up the log.  Second, CoW completions
1640  * will have to file an EFD and create new EFIs for whatever remains in the
1641  * CoW fork; this partially takes care of (1) but extent-size reservations
1642  * will have to periodically relog even if there's no writeout in progress.
1643  * This can happen if the CoW extent size hint is set, which you really want.
1644  * Third, EFIs cannot currently be automatically relogged into newer
1645  * transactions to advance the log tail.  Fourth, stuffing the log full of
1646  * EFIs places an upper bound on the number of CoW allocations that can be
1647  * held filesystem-wide at any given time.  Recording them in the refcount
1648  * btree doesn't require us to maintain any state in memory and doesn't pin
1649  * the log.
1650  */
1651 /*
1652  * Adjust the refcounts of CoW allocations.  These allocations are "magic"
1653  * in that they're not referenced anywhere else in the filesystem, so we
1654  * stash them in the refcount btree with a refcount of 1 until either file
1655  * remapping (or CoW cancellation) happens.
1656  */
1657 STATIC int
1658 xfs_refcount_adjust_cow_extents(
1659 	struct xfs_btree_cur	*cur,
1660 	xfs_agblock_t		agbno,
1661 	xfs_extlen_t		aglen,
1662 	enum xfs_refc_adjust_op	adj)
1663 {
1664 	struct xfs_refcount_irec	ext, tmp;
1665 	int				error;
1666 	int				found_rec, found_tmp;
1667 
1668 	if (aglen == 0)
1669 		return 0;
1670 
1671 	/* Find any overlapping refcount records */
1672 	error = xfs_refcount_lookup_ge(cur, XFS_REFC_DOMAIN_COW, agbno,
1673 			&found_rec);
1674 	if (error)
1675 		goto out_error;
1676 	error = xfs_refcount_get_rec(cur, &ext, &found_rec);
1677 	if (error)
1678 		goto out_error;
1679 	if (XFS_IS_CORRUPT(cur->bc_mp, found_rec &&
1680 				ext.rc_domain != XFS_REFC_DOMAIN_COW)) {
1681 		error = -EFSCORRUPTED;
1682 		goto out_error;
1683 	}
1684 	if (!found_rec) {
1685 		ext.rc_startblock = cur->bc_mp->m_sb.sb_agblocks;
1686 		ext.rc_blockcount = 0;
1687 		ext.rc_refcount = 0;
1688 		ext.rc_domain = XFS_REFC_DOMAIN_COW;
1689 	}
1690 
1691 	switch (adj) {
1692 	case XFS_REFCOUNT_ADJUST_COW_ALLOC:
1693 		/* Adding a CoW reservation, there should be nothing here. */
1694 		if (XFS_IS_CORRUPT(cur->bc_mp,
1695 				   agbno + aglen > ext.rc_startblock)) {
1696 			error = -EFSCORRUPTED;
1697 			goto out_error;
1698 		}
1699 
1700 		tmp.rc_startblock = agbno;
1701 		tmp.rc_blockcount = aglen;
1702 		tmp.rc_refcount = 1;
1703 		tmp.rc_domain = XFS_REFC_DOMAIN_COW;
1704 
1705 		trace_xfs_refcount_modify_extent(cur->bc_mp,
1706 				cur->bc_ag.pag->pag_agno, &tmp);
1707 
1708 		error = xfs_refcount_insert(cur, &tmp,
1709 				&found_tmp);
1710 		if (error)
1711 			goto out_error;
1712 		if (XFS_IS_CORRUPT(cur->bc_mp, found_tmp != 1)) {
1713 			error = -EFSCORRUPTED;
1714 			goto out_error;
1715 		}
1716 		break;
1717 	case XFS_REFCOUNT_ADJUST_COW_FREE:
1718 		/* Removing a CoW reservation, there should be one extent. */
1719 		if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_startblock != agbno)) {
1720 			error = -EFSCORRUPTED;
1721 			goto out_error;
1722 		}
1723 		if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount != aglen)) {
1724 			error = -EFSCORRUPTED;
1725 			goto out_error;
1726 		}
1727 		if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_refcount != 1)) {
1728 			error = -EFSCORRUPTED;
1729 			goto out_error;
1730 		}
1731 
1732 		ext.rc_refcount = 0;
1733 		trace_xfs_refcount_modify_extent(cur->bc_mp,
1734 				cur->bc_ag.pag->pag_agno, &ext);
1735 		error = xfs_refcount_delete(cur, &found_rec);
1736 		if (error)
1737 			goto out_error;
1738 		if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) {
1739 			error = -EFSCORRUPTED;
1740 			goto out_error;
1741 		}
1742 		break;
1743 	default:
1744 		ASSERT(0);
1745 	}
1746 
1747 	return error;
1748 out_error:
1749 	trace_xfs_refcount_modify_extent_error(cur->bc_mp,
1750 			cur->bc_ag.pag->pag_agno, error, _RET_IP_);
1751 	return error;
1752 }
1753 
1754 /*
1755  * Add or remove refcount btree entries for CoW reservations.
1756  */
1757 STATIC int
1758 xfs_refcount_adjust_cow(
1759 	struct xfs_btree_cur	*cur,
1760 	xfs_agblock_t		agbno,
1761 	xfs_extlen_t		aglen,
1762 	enum xfs_refc_adjust_op	adj)
1763 {
1764 	bool			shape_changed;
1765 	int			error;
1766 
1767 	/*
1768 	 * Ensure that no rcextents cross the boundary of the adjustment range.
1769 	 */
1770 	error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_COW,
1771 			agbno, &shape_changed);
1772 	if (error)
1773 		goto out_error;
1774 
1775 	error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_COW,
1776 			agbno + aglen, &shape_changed);
1777 	if (error)
1778 		goto out_error;
1779 
1780 	/*
1781 	 * Try to merge with the left or right extents of the range.
1782 	 */
1783 	error = xfs_refcount_merge_extents(cur, XFS_REFC_DOMAIN_COW, &agbno,
1784 			&aglen, adj, &shape_changed);
1785 	if (error)
1786 		goto out_error;
1787 
1788 	/* Now that we've taken care of the ends, adjust the middle extents */
1789 	error = xfs_refcount_adjust_cow_extents(cur, agbno, aglen, adj);
1790 	if (error)
1791 		goto out_error;
1792 
1793 	return 0;
1794 
1795 out_error:
1796 	trace_xfs_refcount_adjust_cow_error(cur->bc_mp, cur->bc_ag.pag->pag_agno,
1797 			error, _RET_IP_);
1798 	return error;
1799 }
1800 
1801 /*
1802  * Record a CoW allocation in the refcount btree.
1803  */
1804 STATIC int
1805 __xfs_refcount_cow_alloc(
1806 	struct xfs_btree_cur	*rcur,
1807 	xfs_agblock_t		agbno,
1808 	xfs_extlen_t		aglen)
1809 {
1810 	trace_xfs_refcount_cow_increase(rcur->bc_mp, rcur->bc_ag.pag->pag_agno,
1811 			agbno, aglen);
1812 
1813 	/* Add refcount btree reservation */
1814 	return xfs_refcount_adjust_cow(rcur, agbno, aglen,
1815 			XFS_REFCOUNT_ADJUST_COW_ALLOC);
1816 }
1817 
1818 /*
1819  * Remove a CoW allocation from the refcount btree.
1820  */
1821 STATIC int
1822 __xfs_refcount_cow_free(
1823 	struct xfs_btree_cur	*rcur,
1824 	xfs_agblock_t		agbno,
1825 	xfs_extlen_t		aglen)
1826 {
1827 	trace_xfs_refcount_cow_decrease(rcur->bc_mp, rcur->bc_ag.pag->pag_agno,
1828 			agbno, aglen);
1829 
1830 	/* Remove refcount btree reservation */
1831 	return xfs_refcount_adjust_cow(rcur, agbno, aglen,
1832 			XFS_REFCOUNT_ADJUST_COW_FREE);
1833 }
1834 
1835 /* Record a CoW staging extent in the refcount btree. */
1836 void
1837 xfs_refcount_alloc_cow_extent(
1838 	struct xfs_trans		*tp,
1839 	xfs_fsblock_t			fsb,
1840 	xfs_extlen_t			len)
1841 {
1842 	struct xfs_mount		*mp = tp->t_mountp;
1843 
1844 	if (!xfs_has_reflink(mp))
1845 		return;
1846 
1847 	__xfs_refcount_add(tp, XFS_REFCOUNT_ALLOC_COW, fsb, len);
1848 
1849 	/* Add rmap entry */
1850 	xfs_rmap_alloc_extent(tp, XFS_FSB_TO_AGNO(mp, fsb),
1851 			XFS_FSB_TO_AGBNO(mp, fsb), len, XFS_RMAP_OWN_COW);
1852 }
1853 
1854 /* Forget a CoW staging event in the refcount btree. */
1855 void
1856 xfs_refcount_free_cow_extent(
1857 	struct xfs_trans		*tp,
1858 	xfs_fsblock_t			fsb,
1859 	xfs_extlen_t			len)
1860 {
1861 	struct xfs_mount		*mp = tp->t_mountp;
1862 
1863 	if (!xfs_has_reflink(mp))
1864 		return;
1865 
1866 	/* Remove rmap entry */
1867 	xfs_rmap_free_extent(tp, XFS_FSB_TO_AGNO(mp, fsb),
1868 			XFS_FSB_TO_AGBNO(mp, fsb), len, XFS_RMAP_OWN_COW);
1869 	__xfs_refcount_add(tp, XFS_REFCOUNT_FREE_COW, fsb, len);
1870 }
1871 
1872 struct xfs_refcount_recovery {
1873 	struct list_head		rr_list;
1874 	struct xfs_refcount_irec	rr_rrec;
1875 };
1876 
1877 /* Stuff an extent on the recovery list. */
1878 STATIC int
1879 xfs_refcount_recover_extent(
1880 	struct xfs_btree_cur		*cur,
1881 	const union xfs_btree_rec	*rec,
1882 	void				*priv)
1883 {
1884 	struct list_head		*debris = priv;
1885 	struct xfs_refcount_recovery	*rr;
1886 
1887 	if (XFS_IS_CORRUPT(cur->bc_mp,
1888 			   be32_to_cpu(rec->refc.rc_refcount) != 1))
1889 		return -EFSCORRUPTED;
1890 
1891 	rr = kmalloc(sizeof(struct xfs_refcount_recovery),
1892 			GFP_KERNEL | __GFP_NOFAIL);
1893 	INIT_LIST_HEAD(&rr->rr_list);
1894 	xfs_refcount_btrec_to_irec(rec, &rr->rr_rrec);
1895 
1896 	if (xfs_refcount_check_irec(cur, &rr->rr_rrec) != NULL ||
1897 	    XFS_IS_CORRUPT(cur->bc_mp,
1898 			   rr->rr_rrec.rc_domain != XFS_REFC_DOMAIN_COW)) {
1899 		kfree(rr);
1900 		return -EFSCORRUPTED;
1901 	}
1902 
1903 	list_add_tail(&rr->rr_list, debris);
1904 	return 0;
1905 }
1906 
1907 /* Find and remove leftover CoW reservations. */
1908 int
1909 xfs_refcount_recover_cow_leftovers(
1910 	struct xfs_mount		*mp,
1911 	struct xfs_perag		*pag)
1912 {
1913 	struct xfs_trans		*tp;
1914 	struct xfs_btree_cur		*cur;
1915 	struct xfs_buf			*agbp;
1916 	struct xfs_refcount_recovery	*rr, *n;
1917 	struct list_head		debris;
1918 	union xfs_btree_irec		low;
1919 	union xfs_btree_irec		high;
1920 	xfs_fsblock_t			fsb;
1921 	int				error;
1922 
1923 	/* reflink filesystems mustn't have AGs larger than 2^31-1 blocks */
1924 	BUILD_BUG_ON(XFS_MAX_CRC_AG_BLOCKS >= XFS_REFC_COWFLAG);
1925 	if (mp->m_sb.sb_agblocks > XFS_MAX_CRC_AG_BLOCKS)
1926 		return -EOPNOTSUPP;
1927 
1928 	INIT_LIST_HEAD(&debris);
1929 
1930 	/*
1931 	 * In this first part, we use an empty transaction to gather up
1932 	 * all the leftover CoW extents so that we can subsequently
1933 	 * delete them.  The empty transaction is used to avoid
1934 	 * a buffer lock deadlock if there happens to be a loop in the
1935 	 * refcountbt because we're allowed to re-grab a buffer that is
1936 	 * already attached to our transaction.  When we're done
1937 	 * recording the CoW debris we cancel the (empty) transaction
1938 	 * and everything goes away cleanly.
1939 	 */
1940 	error = xfs_trans_alloc_empty(mp, &tp);
1941 	if (error)
1942 		return error;
1943 
1944 	error = xfs_alloc_read_agf(pag, tp, 0, &agbp);
1945 	if (error)
1946 		goto out_trans;
1947 	cur = xfs_refcountbt_init_cursor(mp, tp, agbp, pag);
1948 
1949 	/* Find all the leftover CoW staging extents. */
1950 	memset(&low, 0, sizeof(low));
1951 	memset(&high, 0, sizeof(high));
1952 	low.rc.rc_domain = high.rc.rc_domain = XFS_REFC_DOMAIN_COW;
1953 	high.rc.rc_startblock = -1U;
1954 	error = xfs_btree_query_range(cur, &low, &high,
1955 			xfs_refcount_recover_extent, &debris);
1956 	xfs_btree_del_cursor(cur, error);
1957 	xfs_trans_brelse(tp, agbp);
1958 	xfs_trans_cancel(tp);
1959 	if (error)
1960 		goto out_free;
1961 
1962 	/* Now iterate the list to free the leftovers */
1963 	list_for_each_entry_safe(rr, n, &debris, rr_list) {
1964 		/* Set up transaction. */
1965 		error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp);
1966 		if (error)
1967 			goto out_free;
1968 
1969 		trace_xfs_refcount_recover_extent(mp, pag->pag_agno,
1970 				&rr->rr_rrec);
1971 
1972 		/* Free the orphan record */
1973 		fsb = XFS_AGB_TO_FSB(mp, pag->pag_agno,
1974 				rr->rr_rrec.rc_startblock);
1975 		xfs_refcount_free_cow_extent(tp, fsb,
1976 				rr->rr_rrec.rc_blockcount);
1977 
1978 		/* Free the block. */
1979 		xfs_free_extent_later(tp, fsb, rr->rr_rrec.rc_blockcount, NULL);
1980 
1981 		error = xfs_trans_commit(tp);
1982 		if (error)
1983 			goto out_free;
1984 
1985 		list_del(&rr->rr_list);
1986 		kfree(rr);
1987 	}
1988 
1989 	return error;
1990 out_trans:
1991 	xfs_trans_cancel(tp);
1992 out_free:
1993 	/* Free the leftover list */
1994 	list_for_each_entry_safe(rr, n, &debris, rr_list) {
1995 		list_del(&rr->rr_list);
1996 		kfree(rr);
1997 	}
1998 	return error;
1999 }
2000 
2001 /*
2002  * Scan part of the keyspace of the refcount records and tell us if the area
2003  * has no records, is fully mapped by records, or is partially filled.
2004  */
2005 int
2006 xfs_refcount_has_records(
2007 	struct xfs_btree_cur	*cur,
2008 	enum xfs_refc_domain	domain,
2009 	xfs_agblock_t		bno,
2010 	xfs_extlen_t		len,
2011 	enum xbtree_recpacking	*outcome)
2012 {
2013 	union xfs_btree_irec	low;
2014 	union xfs_btree_irec	high;
2015 
2016 	memset(&low, 0, sizeof(low));
2017 	low.rc.rc_startblock = bno;
2018 	memset(&high, 0xFF, sizeof(high));
2019 	high.rc.rc_startblock = bno + len - 1;
2020 	low.rc.rc_domain = high.rc.rc_domain = domain;
2021 
2022 	return xfs_btree_has_records(cur, &low, &high, outcome);
2023 }
2024 
2025 int __init
2026 xfs_refcount_intent_init_cache(void)
2027 {
2028 	xfs_refcount_intent_cache = kmem_cache_create("xfs_refc_intent",
2029 			sizeof(struct xfs_refcount_intent),
2030 			0, 0, NULL);
2031 
2032 	return xfs_refcount_intent_cache != NULL ? 0 : -ENOMEM;
2033 }
2034 
2035 void
2036 xfs_refcount_intent_destroy_cache(void)
2037 {
2038 	kmem_cache_destroy(xfs_refcount_intent_cache);
2039 	xfs_refcount_intent_cache = NULL;
2040 }
2041