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 error = xfs_free_extent_later(cur->bc_tp, fsbno, 1155 tmp.rc_blockcount, NULL); 1156 if (error) 1157 goto out_error; 1158 } 1159 1160 (*agbno) += tmp.rc_blockcount; 1161 (*aglen) -= tmp.rc_blockcount; 1162 1163 /* Stop if there's nothing left to modify */ 1164 if (*aglen == 0 || !xfs_refcount_still_have_space(cur)) 1165 break; 1166 1167 /* Move the cursor to the start of ext. */ 1168 error = xfs_refcount_lookup_ge(cur, 1169 XFS_REFC_DOMAIN_SHARED, *agbno, 1170 &found_rec); 1171 if (error) 1172 goto out_error; 1173 } 1174 1175 /* 1176 * A previous step trimmed agbno/aglen such that the end of the 1177 * range would not be in the middle of the record. If this is 1178 * no longer the case, something is seriously wrong with the 1179 * btree. Make sure we never feed the synthesized record into 1180 * the processing loop below. 1181 */ 1182 if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount == 0) || 1183 XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount > *aglen)) { 1184 error = -EFSCORRUPTED; 1185 goto out_error; 1186 } 1187 1188 /* 1189 * Adjust the reference count and either update the tree 1190 * (incr) or free the blocks (decr). 1191 */ 1192 if (ext.rc_refcount == MAXREFCOUNT) 1193 goto skip; 1194 ext.rc_refcount += adj; 1195 trace_xfs_refcount_modify_extent(cur->bc_mp, 1196 cur->bc_ag.pag->pag_agno, &ext); 1197 cur->bc_ag.refc.nr_ops++; 1198 if (ext.rc_refcount > 1) { 1199 error = xfs_refcount_update(cur, &ext); 1200 if (error) 1201 goto out_error; 1202 } else if (ext.rc_refcount == 1) { 1203 error = xfs_refcount_delete(cur, &found_rec); 1204 if (error) 1205 goto out_error; 1206 if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) { 1207 error = -EFSCORRUPTED; 1208 goto out_error; 1209 } 1210 goto advloop; 1211 } else { 1212 fsbno = XFS_AGB_TO_FSB(cur->bc_mp, 1213 cur->bc_ag.pag->pag_agno, 1214 ext.rc_startblock); 1215 error = xfs_free_extent_later(cur->bc_tp, fsbno, 1216 ext.rc_blockcount, NULL); 1217 if (error) 1218 goto out_error; 1219 } 1220 1221 skip: 1222 error = xfs_btree_increment(cur, 0, &found_rec); 1223 if (error) 1224 goto out_error; 1225 1226 advloop: 1227 (*agbno) += ext.rc_blockcount; 1228 (*aglen) -= ext.rc_blockcount; 1229 } 1230 1231 return error; 1232 out_error: 1233 trace_xfs_refcount_modify_extent_error(cur->bc_mp, 1234 cur->bc_ag.pag->pag_agno, error, _RET_IP_); 1235 return error; 1236 } 1237 1238 /* Adjust the reference count of a range of AG blocks. */ 1239 STATIC int 1240 xfs_refcount_adjust( 1241 struct xfs_btree_cur *cur, 1242 xfs_agblock_t *agbno, 1243 xfs_extlen_t *aglen, 1244 enum xfs_refc_adjust_op adj) 1245 { 1246 bool shape_changed; 1247 int shape_changes = 0; 1248 int error; 1249 1250 if (adj == XFS_REFCOUNT_ADJUST_INCREASE) 1251 trace_xfs_refcount_increase(cur->bc_mp, 1252 cur->bc_ag.pag->pag_agno, *agbno, *aglen); 1253 else 1254 trace_xfs_refcount_decrease(cur->bc_mp, 1255 cur->bc_ag.pag->pag_agno, *agbno, *aglen); 1256 1257 /* 1258 * Ensure that no rcextents cross the boundary of the adjustment range. 1259 */ 1260 error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_SHARED, 1261 *agbno, &shape_changed); 1262 if (error) 1263 goto out_error; 1264 if (shape_changed) 1265 shape_changes++; 1266 1267 error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_SHARED, 1268 *agbno + *aglen, &shape_changed); 1269 if (error) 1270 goto out_error; 1271 if (shape_changed) 1272 shape_changes++; 1273 1274 /* 1275 * Try to merge with the left or right extents of the range. 1276 */ 1277 error = xfs_refcount_merge_extents(cur, XFS_REFC_DOMAIN_SHARED, 1278 agbno, aglen, adj, &shape_changed); 1279 if (error) 1280 goto out_error; 1281 if (shape_changed) 1282 shape_changes++; 1283 if (shape_changes) 1284 cur->bc_ag.refc.shape_changes++; 1285 1286 /* Now that we've taken care of the ends, adjust the middle extents */ 1287 error = xfs_refcount_adjust_extents(cur, agbno, aglen, adj); 1288 if (error) 1289 goto out_error; 1290 1291 return 0; 1292 1293 out_error: 1294 trace_xfs_refcount_adjust_error(cur->bc_mp, cur->bc_ag.pag->pag_agno, 1295 error, _RET_IP_); 1296 return error; 1297 } 1298 1299 /* Clean up after calling xfs_refcount_finish_one. */ 1300 void 1301 xfs_refcount_finish_one_cleanup( 1302 struct xfs_trans *tp, 1303 struct xfs_btree_cur *rcur, 1304 int error) 1305 { 1306 struct xfs_buf *agbp; 1307 1308 if (rcur == NULL) 1309 return; 1310 agbp = rcur->bc_ag.agbp; 1311 xfs_btree_del_cursor(rcur, error); 1312 if (error) 1313 xfs_trans_brelse(tp, agbp); 1314 } 1315 1316 /* 1317 * Set up a continuation a deferred refcount operation by updating the intent. 1318 * Checks to make sure we're not going to run off the end of the AG. 1319 */ 1320 static inline int 1321 xfs_refcount_continue_op( 1322 struct xfs_btree_cur *cur, 1323 struct xfs_refcount_intent *ri, 1324 xfs_agblock_t new_agbno) 1325 { 1326 struct xfs_mount *mp = cur->bc_mp; 1327 struct xfs_perag *pag = cur->bc_ag.pag; 1328 1329 if (XFS_IS_CORRUPT(mp, !xfs_verify_agbext(pag, new_agbno, 1330 ri->ri_blockcount))) 1331 return -EFSCORRUPTED; 1332 1333 ri->ri_startblock = XFS_AGB_TO_FSB(mp, pag->pag_agno, new_agbno); 1334 1335 ASSERT(xfs_verify_fsbext(mp, ri->ri_startblock, ri->ri_blockcount)); 1336 ASSERT(pag->pag_agno == XFS_FSB_TO_AGNO(mp, ri->ri_startblock)); 1337 1338 return 0; 1339 } 1340 1341 /* 1342 * Process one of the deferred refcount operations. We pass back the 1343 * btree cursor to maintain our lock on the btree between calls. 1344 * This saves time and eliminates a buffer deadlock between the 1345 * superblock and the AGF because we'll always grab them in the same 1346 * order. 1347 */ 1348 int 1349 xfs_refcount_finish_one( 1350 struct xfs_trans *tp, 1351 struct xfs_refcount_intent *ri, 1352 struct xfs_btree_cur **pcur) 1353 { 1354 struct xfs_mount *mp = tp->t_mountp; 1355 struct xfs_btree_cur *rcur; 1356 struct xfs_buf *agbp = NULL; 1357 int error = 0; 1358 xfs_agblock_t bno; 1359 unsigned long nr_ops = 0; 1360 int shape_changes = 0; 1361 1362 bno = XFS_FSB_TO_AGBNO(mp, ri->ri_startblock); 1363 1364 trace_xfs_refcount_deferred(mp, XFS_FSB_TO_AGNO(mp, ri->ri_startblock), 1365 ri->ri_type, XFS_FSB_TO_AGBNO(mp, ri->ri_startblock), 1366 ri->ri_blockcount); 1367 1368 if (XFS_TEST_ERROR(false, mp, XFS_ERRTAG_REFCOUNT_FINISH_ONE)) 1369 return -EIO; 1370 1371 /* 1372 * If we haven't gotten a cursor or the cursor AG doesn't match 1373 * the startblock, get one now. 1374 */ 1375 rcur = *pcur; 1376 if (rcur != NULL && rcur->bc_ag.pag != ri->ri_pag) { 1377 nr_ops = rcur->bc_ag.refc.nr_ops; 1378 shape_changes = rcur->bc_ag.refc.shape_changes; 1379 xfs_refcount_finish_one_cleanup(tp, rcur, 0); 1380 rcur = NULL; 1381 *pcur = NULL; 1382 } 1383 if (rcur == NULL) { 1384 error = xfs_alloc_read_agf(ri->ri_pag, tp, 1385 XFS_ALLOC_FLAG_FREEING, &agbp); 1386 if (error) 1387 return error; 1388 1389 rcur = xfs_refcountbt_init_cursor(mp, tp, agbp, ri->ri_pag); 1390 rcur->bc_ag.refc.nr_ops = nr_ops; 1391 rcur->bc_ag.refc.shape_changes = shape_changes; 1392 } 1393 *pcur = rcur; 1394 1395 switch (ri->ri_type) { 1396 case XFS_REFCOUNT_INCREASE: 1397 error = xfs_refcount_adjust(rcur, &bno, &ri->ri_blockcount, 1398 XFS_REFCOUNT_ADJUST_INCREASE); 1399 if (error) 1400 return error; 1401 if (ri->ri_blockcount > 0) 1402 error = xfs_refcount_continue_op(rcur, ri, bno); 1403 break; 1404 case XFS_REFCOUNT_DECREASE: 1405 error = xfs_refcount_adjust(rcur, &bno, &ri->ri_blockcount, 1406 XFS_REFCOUNT_ADJUST_DECREASE); 1407 if (error) 1408 return error; 1409 if (ri->ri_blockcount > 0) 1410 error = xfs_refcount_continue_op(rcur, ri, bno); 1411 break; 1412 case XFS_REFCOUNT_ALLOC_COW: 1413 error = __xfs_refcount_cow_alloc(rcur, bno, ri->ri_blockcount); 1414 if (error) 1415 return error; 1416 ri->ri_blockcount = 0; 1417 break; 1418 case XFS_REFCOUNT_FREE_COW: 1419 error = __xfs_refcount_cow_free(rcur, bno, ri->ri_blockcount); 1420 if (error) 1421 return error; 1422 ri->ri_blockcount = 0; 1423 break; 1424 default: 1425 ASSERT(0); 1426 return -EFSCORRUPTED; 1427 } 1428 if (!error && ri->ri_blockcount > 0) 1429 trace_xfs_refcount_finish_one_leftover(mp, ri->ri_pag->pag_agno, 1430 ri->ri_type, bno, ri->ri_blockcount); 1431 return error; 1432 } 1433 1434 /* 1435 * Record a refcount intent for later processing. 1436 */ 1437 static void 1438 __xfs_refcount_add( 1439 struct xfs_trans *tp, 1440 enum xfs_refcount_intent_type type, 1441 xfs_fsblock_t startblock, 1442 xfs_extlen_t blockcount) 1443 { 1444 struct xfs_refcount_intent *ri; 1445 1446 trace_xfs_refcount_defer(tp->t_mountp, 1447 XFS_FSB_TO_AGNO(tp->t_mountp, startblock), 1448 type, XFS_FSB_TO_AGBNO(tp->t_mountp, startblock), 1449 blockcount); 1450 1451 ri = kmem_cache_alloc(xfs_refcount_intent_cache, 1452 GFP_NOFS | __GFP_NOFAIL); 1453 INIT_LIST_HEAD(&ri->ri_list); 1454 ri->ri_type = type; 1455 ri->ri_startblock = startblock; 1456 ri->ri_blockcount = blockcount; 1457 1458 xfs_refcount_update_get_group(tp->t_mountp, ri); 1459 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_REFCOUNT, &ri->ri_list); 1460 } 1461 1462 /* 1463 * Increase the reference count of the blocks backing a file's extent. 1464 */ 1465 void 1466 xfs_refcount_increase_extent( 1467 struct xfs_trans *tp, 1468 struct xfs_bmbt_irec *PREV) 1469 { 1470 if (!xfs_has_reflink(tp->t_mountp)) 1471 return; 1472 1473 __xfs_refcount_add(tp, XFS_REFCOUNT_INCREASE, PREV->br_startblock, 1474 PREV->br_blockcount); 1475 } 1476 1477 /* 1478 * Decrease the reference count of the blocks backing a file's extent. 1479 */ 1480 void 1481 xfs_refcount_decrease_extent( 1482 struct xfs_trans *tp, 1483 struct xfs_bmbt_irec *PREV) 1484 { 1485 if (!xfs_has_reflink(tp->t_mountp)) 1486 return; 1487 1488 __xfs_refcount_add(tp, XFS_REFCOUNT_DECREASE, PREV->br_startblock, 1489 PREV->br_blockcount); 1490 } 1491 1492 /* 1493 * Given an AG extent, find the lowest-numbered run of shared blocks 1494 * within that range and return the range in fbno/flen. If 1495 * find_end_of_shared is set, return the longest contiguous extent of 1496 * shared blocks; if not, just return the first extent we find. If no 1497 * shared blocks are found, fbno and flen will be set to NULLAGBLOCK 1498 * and 0, respectively. 1499 */ 1500 int 1501 xfs_refcount_find_shared( 1502 struct xfs_btree_cur *cur, 1503 xfs_agblock_t agbno, 1504 xfs_extlen_t aglen, 1505 xfs_agblock_t *fbno, 1506 xfs_extlen_t *flen, 1507 bool find_end_of_shared) 1508 { 1509 struct xfs_refcount_irec tmp; 1510 int i; 1511 int have; 1512 int error; 1513 1514 trace_xfs_refcount_find_shared(cur->bc_mp, cur->bc_ag.pag->pag_agno, 1515 agbno, aglen); 1516 1517 /* By default, skip the whole range */ 1518 *fbno = NULLAGBLOCK; 1519 *flen = 0; 1520 1521 /* Try to find a refcount extent that crosses the start */ 1522 error = xfs_refcount_lookup_le(cur, XFS_REFC_DOMAIN_SHARED, agbno, 1523 &have); 1524 if (error) 1525 goto out_error; 1526 if (!have) { 1527 /* No left extent, look at the next one */ 1528 error = xfs_btree_increment(cur, 0, &have); 1529 if (error) 1530 goto out_error; 1531 if (!have) 1532 goto done; 1533 } 1534 error = xfs_refcount_get_rec(cur, &tmp, &i); 1535 if (error) 1536 goto out_error; 1537 if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) { 1538 error = -EFSCORRUPTED; 1539 goto out_error; 1540 } 1541 if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED) 1542 goto done; 1543 1544 /* If the extent ends before the start, look at the next one */ 1545 if (tmp.rc_startblock + tmp.rc_blockcount <= agbno) { 1546 error = xfs_btree_increment(cur, 0, &have); 1547 if (error) 1548 goto out_error; 1549 if (!have) 1550 goto done; 1551 error = xfs_refcount_get_rec(cur, &tmp, &i); 1552 if (error) 1553 goto out_error; 1554 if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) { 1555 error = -EFSCORRUPTED; 1556 goto out_error; 1557 } 1558 if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED) 1559 goto done; 1560 } 1561 1562 /* If the extent starts after the range we want, bail out */ 1563 if (tmp.rc_startblock >= agbno + aglen) 1564 goto done; 1565 1566 /* We found the start of a shared extent! */ 1567 if (tmp.rc_startblock < agbno) { 1568 tmp.rc_blockcount -= (agbno - tmp.rc_startblock); 1569 tmp.rc_startblock = agbno; 1570 } 1571 1572 *fbno = tmp.rc_startblock; 1573 *flen = min(tmp.rc_blockcount, agbno + aglen - *fbno); 1574 if (!find_end_of_shared) 1575 goto done; 1576 1577 /* Otherwise, find the end of this shared extent */ 1578 while (*fbno + *flen < agbno + aglen) { 1579 error = xfs_btree_increment(cur, 0, &have); 1580 if (error) 1581 goto out_error; 1582 if (!have) 1583 break; 1584 error = xfs_refcount_get_rec(cur, &tmp, &i); 1585 if (error) 1586 goto out_error; 1587 if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) { 1588 error = -EFSCORRUPTED; 1589 goto out_error; 1590 } 1591 if (tmp.rc_domain != XFS_REFC_DOMAIN_SHARED || 1592 tmp.rc_startblock >= agbno + aglen || 1593 tmp.rc_startblock != *fbno + *flen) 1594 break; 1595 *flen = min(*flen + tmp.rc_blockcount, agbno + aglen - *fbno); 1596 } 1597 1598 done: 1599 trace_xfs_refcount_find_shared_result(cur->bc_mp, 1600 cur->bc_ag.pag->pag_agno, *fbno, *flen); 1601 1602 out_error: 1603 if (error) 1604 trace_xfs_refcount_find_shared_error(cur->bc_mp, 1605 cur->bc_ag.pag->pag_agno, error, _RET_IP_); 1606 return error; 1607 } 1608 1609 /* 1610 * Recovering CoW Blocks After a Crash 1611 * 1612 * Due to the way that the copy on write mechanism works, there's a window of 1613 * opportunity in which we can lose track of allocated blocks during a crash. 1614 * Because CoW uses delayed allocation in the in-core CoW fork, writeback 1615 * causes blocks to be allocated and stored in the CoW fork. The blocks are 1616 * no longer in the free space btree but are not otherwise recorded anywhere 1617 * until the write completes and the blocks are mapped into the file. A crash 1618 * in between allocation and remapping results in the replacement blocks being 1619 * lost. This situation is exacerbated by the CoW extent size hint because 1620 * allocations can hang around for long time. 1621 * 1622 * However, there is a place where we can record these allocations before they 1623 * become mappings -- the reference count btree. The btree does not record 1624 * extents with refcount == 1, so we can record allocations with a refcount of 1625 * 1. Blocks being used for CoW writeout cannot be shared, so there should be 1626 * no conflict with shared block records. These mappings should be created 1627 * when we allocate blocks to the CoW fork and deleted when they're removed 1628 * from the CoW fork. 1629 * 1630 * Minor nit: records for in-progress CoW allocations and records for shared 1631 * extents must never be merged, to preserve the property that (except for CoW 1632 * allocations) there are no refcount btree entries with refcount == 1. The 1633 * only time this could potentially happen is when unsharing a block that's 1634 * adjacent to CoW allocations, so we must be careful to avoid this. 1635 * 1636 * At mount time we recover lost CoW allocations by searching the refcount 1637 * btree for these refcount == 1 mappings. These represent CoW allocations 1638 * that were in progress at the time the filesystem went down, so we can free 1639 * them to get the space back. 1640 * 1641 * This mechanism is superior to creating EFIs for unmapped CoW extents for 1642 * several reasons -- first, EFIs pin the tail of the log and would have to be 1643 * periodically relogged to avoid filling up the log. Second, CoW completions 1644 * will have to file an EFD and create new EFIs for whatever remains in the 1645 * CoW fork; this partially takes care of (1) but extent-size reservations 1646 * will have to periodically relog even if there's no writeout in progress. 1647 * This can happen if the CoW extent size hint is set, which you really want. 1648 * Third, EFIs cannot currently be automatically relogged into newer 1649 * transactions to advance the log tail. Fourth, stuffing the log full of 1650 * EFIs places an upper bound on the number of CoW allocations that can be 1651 * held filesystem-wide at any given time. Recording them in the refcount 1652 * btree doesn't require us to maintain any state in memory and doesn't pin 1653 * the log. 1654 */ 1655 /* 1656 * Adjust the refcounts of CoW allocations. These allocations are "magic" 1657 * in that they're not referenced anywhere else in the filesystem, so we 1658 * stash them in the refcount btree with a refcount of 1 until either file 1659 * remapping (or CoW cancellation) happens. 1660 */ 1661 STATIC int 1662 xfs_refcount_adjust_cow_extents( 1663 struct xfs_btree_cur *cur, 1664 xfs_agblock_t agbno, 1665 xfs_extlen_t aglen, 1666 enum xfs_refc_adjust_op adj) 1667 { 1668 struct xfs_refcount_irec ext, tmp; 1669 int error; 1670 int found_rec, found_tmp; 1671 1672 if (aglen == 0) 1673 return 0; 1674 1675 /* Find any overlapping refcount records */ 1676 error = xfs_refcount_lookup_ge(cur, XFS_REFC_DOMAIN_COW, agbno, 1677 &found_rec); 1678 if (error) 1679 goto out_error; 1680 error = xfs_refcount_get_rec(cur, &ext, &found_rec); 1681 if (error) 1682 goto out_error; 1683 if (XFS_IS_CORRUPT(cur->bc_mp, found_rec && 1684 ext.rc_domain != XFS_REFC_DOMAIN_COW)) { 1685 error = -EFSCORRUPTED; 1686 goto out_error; 1687 } 1688 if (!found_rec) { 1689 ext.rc_startblock = cur->bc_mp->m_sb.sb_agblocks; 1690 ext.rc_blockcount = 0; 1691 ext.rc_refcount = 0; 1692 ext.rc_domain = XFS_REFC_DOMAIN_COW; 1693 } 1694 1695 switch (adj) { 1696 case XFS_REFCOUNT_ADJUST_COW_ALLOC: 1697 /* Adding a CoW reservation, there should be nothing here. */ 1698 if (XFS_IS_CORRUPT(cur->bc_mp, 1699 agbno + aglen > ext.rc_startblock)) { 1700 error = -EFSCORRUPTED; 1701 goto out_error; 1702 } 1703 1704 tmp.rc_startblock = agbno; 1705 tmp.rc_blockcount = aglen; 1706 tmp.rc_refcount = 1; 1707 tmp.rc_domain = XFS_REFC_DOMAIN_COW; 1708 1709 trace_xfs_refcount_modify_extent(cur->bc_mp, 1710 cur->bc_ag.pag->pag_agno, &tmp); 1711 1712 error = xfs_refcount_insert(cur, &tmp, 1713 &found_tmp); 1714 if (error) 1715 goto out_error; 1716 if (XFS_IS_CORRUPT(cur->bc_mp, found_tmp != 1)) { 1717 error = -EFSCORRUPTED; 1718 goto out_error; 1719 } 1720 break; 1721 case XFS_REFCOUNT_ADJUST_COW_FREE: 1722 /* Removing a CoW reservation, there should be one extent. */ 1723 if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_startblock != agbno)) { 1724 error = -EFSCORRUPTED; 1725 goto out_error; 1726 } 1727 if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_blockcount != aglen)) { 1728 error = -EFSCORRUPTED; 1729 goto out_error; 1730 } 1731 if (XFS_IS_CORRUPT(cur->bc_mp, ext.rc_refcount != 1)) { 1732 error = -EFSCORRUPTED; 1733 goto out_error; 1734 } 1735 1736 ext.rc_refcount = 0; 1737 trace_xfs_refcount_modify_extent(cur->bc_mp, 1738 cur->bc_ag.pag->pag_agno, &ext); 1739 error = xfs_refcount_delete(cur, &found_rec); 1740 if (error) 1741 goto out_error; 1742 if (XFS_IS_CORRUPT(cur->bc_mp, found_rec != 1)) { 1743 error = -EFSCORRUPTED; 1744 goto out_error; 1745 } 1746 break; 1747 default: 1748 ASSERT(0); 1749 } 1750 1751 return error; 1752 out_error: 1753 trace_xfs_refcount_modify_extent_error(cur->bc_mp, 1754 cur->bc_ag.pag->pag_agno, error, _RET_IP_); 1755 return error; 1756 } 1757 1758 /* 1759 * Add or remove refcount btree entries for CoW reservations. 1760 */ 1761 STATIC int 1762 xfs_refcount_adjust_cow( 1763 struct xfs_btree_cur *cur, 1764 xfs_agblock_t agbno, 1765 xfs_extlen_t aglen, 1766 enum xfs_refc_adjust_op adj) 1767 { 1768 bool shape_changed; 1769 int error; 1770 1771 /* 1772 * Ensure that no rcextents cross the boundary of the adjustment range. 1773 */ 1774 error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_COW, 1775 agbno, &shape_changed); 1776 if (error) 1777 goto out_error; 1778 1779 error = xfs_refcount_split_extent(cur, XFS_REFC_DOMAIN_COW, 1780 agbno + aglen, &shape_changed); 1781 if (error) 1782 goto out_error; 1783 1784 /* 1785 * Try to merge with the left or right extents of the range. 1786 */ 1787 error = xfs_refcount_merge_extents(cur, XFS_REFC_DOMAIN_COW, &agbno, 1788 &aglen, adj, &shape_changed); 1789 if (error) 1790 goto out_error; 1791 1792 /* Now that we've taken care of the ends, adjust the middle extents */ 1793 error = xfs_refcount_adjust_cow_extents(cur, agbno, aglen, adj); 1794 if (error) 1795 goto out_error; 1796 1797 return 0; 1798 1799 out_error: 1800 trace_xfs_refcount_adjust_cow_error(cur->bc_mp, cur->bc_ag.pag->pag_agno, 1801 error, _RET_IP_); 1802 return error; 1803 } 1804 1805 /* 1806 * Record a CoW allocation in the refcount btree. 1807 */ 1808 STATIC int 1809 __xfs_refcount_cow_alloc( 1810 struct xfs_btree_cur *rcur, 1811 xfs_agblock_t agbno, 1812 xfs_extlen_t aglen) 1813 { 1814 trace_xfs_refcount_cow_increase(rcur->bc_mp, rcur->bc_ag.pag->pag_agno, 1815 agbno, aglen); 1816 1817 /* Add refcount btree reservation */ 1818 return xfs_refcount_adjust_cow(rcur, agbno, aglen, 1819 XFS_REFCOUNT_ADJUST_COW_ALLOC); 1820 } 1821 1822 /* 1823 * Remove a CoW allocation from the refcount btree. 1824 */ 1825 STATIC int 1826 __xfs_refcount_cow_free( 1827 struct xfs_btree_cur *rcur, 1828 xfs_agblock_t agbno, 1829 xfs_extlen_t aglen) 1830 { 1831 trace_xfs_refcount_cow_decrease(rcur->bc_mp, rcur->bc_ag.pag->pag_agno, 1832 agbno, aglen); 1833 1834 /* Remove refcount btree reservation */ 1835 return xfs_refcount_adjust_cow(rcur, agbno, aglen, 1836 XFS_REFCOUNT_ADJUST_COW_FREE); 1837 } 1838 1839 /* Record a CoW staging extent in the refcount btree. */ 1840 void 1841 xfs_refcount_alloc_cow_extent( 1842 struct xfs_trans *tp, 1843 xfs_fsblock_t fsb, 1844 xfs_extlen_t len) 1845 { 1846 struct xfs_mount *mp = tp->t_mountp; 1847 1848 if (!xfs_has_reflink(mp)) 1849 return; 1850 1851 __xfs_refcount_add(tp, XFS_REFCOUNT_ALLOC_COW, fsb, len); 1852 1853 /* Add rmap entry */ 1854 xfs_rmap_alloc_extent(tp, XFS_FSB_TO_AGNO(mp, fsb), 1855 XFS_FSB_TO_AGBNO(mp, fsb), len, XFS_RMAP_OWN_COW); 1856 } 1857 1858 /* Forget a CoW staging event in the refcount btree. */ 1859 void 1860 xfs_refcount_free_cow_extent( 1861 struct xfs_trans *tp, 1862 xfs_fsblock_t fsb, 1863 xfs_extlen_t len) 1864 { 1865 struct xfs_mount *mp = tp->t_mountp; 1866 1867 if (!xfs_has_reflink(mp)) 1868 return; 1869 1870 /* Remove rmap entry */ 1871 xfs_rmap_free_extent(tp, XFS_FSB_TO_AGNO(mp, fsb), 1872 XFS_FSB_TO_AGBNO(mp, fsb), len, XFS_RMAP_OWN_COW); 1873 __xfs_refcount_add(tp, XFS_REFCOUNT_FREE_COW, fsb, len); 1874 } 1875 1876 struct xfs_refcount_recovery { 1877 struct list_head rr_list; 1878 struct xfs_refcount_irec rr_rrec; 1879 }; 1880 1881 /* Stuff an extent on the recovery list. */ 1882 STATIC int 1883 xfs_refcount_recover_extent( 1884 struct xfs_btree_cur *cur, 1885 const union xfs_btree_rec *rec, 1886 void *priv) 1887 { 1888 struct list_head *debris = priv; 1889 struct xfs_refcount_recovery *rr; 1890 1891 if (XFS_IS_CORRUPT(cur->bc_mp, 1892 be32_to_cpu(rec->refc.rc_refcount) != 1)) 1893 return -EFSCORRUPTED; 1894 1895 rr = kmalloc(sizeof(struct xfs_refcount_recovery), 1896 GFP_KERNEL | __GFP_NOFAIL); 1897 INIT_LIST_HEAD(&rr->rr_list); 1898 xfs_refcount_btrec_to_irec(rec, &rr->rr_rrec); 1899 1900 if (xfs_refcount_check_irec(cur, &rr->rr_rrec) != NULL || 1901 XFS_IS_CORRUPT(cur->bc_mp, 1902 rr->rr_rrec.rc_domain != XFS_REFC_DOMAIN_COW)) { 1903 kfree(rr); 1904 return -EFSCORRUPTED; 1905 } 1906 1907 list_add_tail(&rr->rr_list, debris); 1908 return 0; 1909 } 1910 1911 /* Find and remove leftover CoW reservations. */ 1912 int 1913 xfs_refcount_recover_cow_leftovers( 1914 struct xfs_mount *mp, 1915 struct xfs_perag *pag) 1916 { 1917 struct xfs_trans *tp; 1918 struct xfs_btree_cur *cur; 1919 struct xfs_buf *agbp; 1920 struct xfs_refcount_recovery *rr, *n; 1921 struct list_head debris; 1922 union xfs_btree_irec low; 1923 union xfs_btree_irec high; 1924 xfs_fsblock_t fsb; 1925 int error; 1926 1927 /* reflink filesystems mustn't have AGs larger than 2^31-1 blocks */ 1928 BUILD_BUG_ON(XFS_MAX_CRC_AG_BLOCKS >= XFS_REFC_COWFLAG); 1929 if (mp->m_sb.sb_agblocks > XFS_MAX_CRC_AG_BLOCKS) 1930 return -EOPNOTSUPP; 1931 1932 INIT_LIST_HEAD(&debris); 1933 1934 /* 1935 * In this first part, we use an empty transaction to gather up 1936 * all the leftover CoW extents so that we can subsequently 1937 * delete them. The empty transaction is used to avoid 1938 * a buffer lock deadlock if there happens to be a loop in the 1939 * refcountbt because we're allowed to re-grab a buffer that is 1940 * already attached to our transaction. When we're done 1941 * recording the CoW debris we cancel the (empty) transaction 1942 * and everything goes away cleanly. 1943 */ 1944 error = xfs_trans_alloc_empty(mp, &tp); 1945 if (error) 1946 return error; 1947 1948 error = xfs_alloc_read_agf(pag, tp, 0, &agbp); 1949 if (error) 1950 goto out_trans; 1951 cur = xfs_refcountbt_init_cursor(mp, tp, agbp, pag); 1952 1953 /* Find all the leftover CoW staging extents. */ 1954 memset(&low, 0, sizeof(low)); 1955 memset(&high, 0, sizeof(high)); 1956 low.rc.rc_domain = high.rc.rc_domain = XFS_REFC_DOMAIN_COW; 1957 high.rc.rc_startblock = -1U; 1958 error = xfs_btree_query_range(cur, &low, &high, 1959 xfs_refcount_recover_extent, &debris); 1960 xfs_btree_del_cursor(cur, error); 1961 xfs_trans_brelse(tp, agbp); 1962 xfs_trans_cancel(tp); 1963 if (error) 1964 goto out_free; 1965 1966 /* Now iterate the list to free the leftovers */ 1967 list_for_each_entry_safe(rr, n, &debris, rr_list) { 1968 /* Set up transaction. */ 1969 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp); 1970 if (error) 1971 goto out_free; 1972 1973 trace_xfs_refcount_recover_extent(mp, pag->pag_agno, 1974 &rr->rr_rrec); 1975 1976 /* Free the orphan record */ 1977 fsb = XFS_AGB_TO_FSB(mp, pag->pag_agno, 1978 rr->rr_rrec.rc_startblock); 1979 xfs_refcount_free_cow_extent(tp, fsb, 1980 rr->rr_rrec.rc_blockcount); 1981 1982 /* Free the block. */ 1983 error = xfs_free_extent_later(tp, fsb, 1984 rr->rr_rrec.rc_blockcount, NULL); 1985 if (error) 1986 goto out_trans; 1987 1988 error = xfs_trans_commit(tp); 1989 if (error) 1990 goto out_free; 1991 1992 list_del(&rr->rr_list); 1993 kfree(rr); 1994 } 1995 1996 return error; 1997 out_trans: 1998 xfs_trans_cancel(tp); 1999 out_free: 2000 /* Free the leftover list */ 2001 list_for_each_entry_safe(rr, n, &debris, rr_list) { 2002 list_del(&rr->rr_list); 2003 kfree(rr); 2004 } 2005 return error; 2006 } 2007 2008 /* 2009 * Scan part of the keyspace of the refcount records and tell us if the area 2010 * has no records, is fully mapped by records, or is partially filled. 2011 */ 2012 int 2013 xfs_refcount_has_records( 2014 struct xfs_btree_cur *cur, 2015 enum xfs_refc_domain domain, 2016 xfs_agblock_t bno, 2017 xfs_extlen_t len, 2018 enum xbtree_recpacking *outcome) 2019 { 2020 union xfs_btree_irec low; 2021 union xfs_btree_irec high; 2022 2023 memset(&low, 0, sizeof(low)); 2024 low.rc.rc_startblock = bno; 2025 memset(&high, 0xFF, sizeof(high)); 2026 high.rc.rc_startblock = bno + len - 1; 2027 low.rc.rc_domain = high.rc.rc_domain = domain; 2028 2029 return xfs_btree_has_records(cur, &low, &high, NULL, outcome); 2030 } 2031 2032 int __init 2033 xfs_refcount_intent_init_cache(void) 2034 { 2035 xfs_refcount_intent_cache = kmem_cache_create("xfs_refc_intent", 2036 sizeof(struct xfs_refcount_intent), 2037 0, 0, NULL); 2038 2039 return xfs_refcount_intent_cache != NULL ? 0 : -ENOMEM; 2040 } 2041 2042 void 2043 xfs_refcount_intent_destroy_cache(void) 2044 { 2045 kmem_cache_destroy(xfs_refcount_intent_cache); 2046 xfs_refcount_intent_cache = NULL; 2047 } 2048