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_bit.h" 13 #include "xfs_sb.h" 14 #include "xfs_mount.h" 15 #include "xfs_defer.h" 16 #include "xfs_trans.h" 17 #include "xfs_buf_item.h" 18 #include "xfs_inode.h" 19 #include "xfs_inode_item.h" 20 #include "xfs_trace.h" 21 22 /* 23 * Deferred Operations in XFS 24 * 25 * Due to the way locking rules work in XFS, certain transactions (block 26 * mapping and unmapping, typically) have permanent reservations so that 27 * we can roll the transaction to adhere to AG locking order rules and 28 * to unlock buffers between metadata updates. Prior to rmap/reflink, 29 * the mapping code had a mechanism to perform these deferrals for 30 * extents that were going to be freed; this code makes that facility 31 * more generic. 32 * 33 * When adding the reverse mapping and reflink features, it became 34 * necessary to perform complex remapping multi-transactions to comply 35 * with AG locking order rules, and to be able to spread a single 36 * refcount update operation (an operation on an n-block extent can 37 * update as many as n records!) among multiple transactions. XFS can 38 * roll a transaction to facilitate this, but using this facility 39 * requires us to log "intent" items in case log recovery needs to 40 * redo the operation, and to log "done" items to indicate that redo 41 * is not necessary. 42 * 43 * Deferred work is tracked in xfs_defer_pending items. Each pending 44 * item tracks one type of deferred work. Incoming work items (which 45 * have not yet had an intent logged) are attached to a pending item 46 * on the dop_intake list, where they wait for the caller to finish 47 * the deferred operations. 48 * 49 * Finishing a set of deferred operations is an involved process. To 50 * start, we define "rolling a deferred-op transaction" as follows: 51 * 52 * > For each xfs_defer_pending item on the dop_intake list, 53 * - Sort the work items in AG order. XFS locking 54 * order rules require us to lock buffers in AG order. 55 * - Create a log intent item for that type. 56 * - Attach it to the pending item. 57 * - Move the pending item from the dop_intake list to the 58 * dop_pending list. 59 * > Roll the transaction. 60 * 61 * NOTE: To avoid exceeding the transaction reservation, we limit the 62 * number of items that we attach to a given xfs_defer_pending. 63 * 64 * The actual finishing process looks like this: 65 * 66 * > For each xfs_defer_pending in the dop_pending list, 67 * - Roll the deferred-op transaction as above. 68 * - Create a log done item for that type, and attach it to the 69 * log intent item. 70 * - For each work item attached to the log intent item, 71 * * Perform the described action. 72 * * Attach the work item to the log done item. 73 * * If the result of doing the work was -EAGAIN, ->finish work 74 * wants a new transaction. See the "Requesting a Fresh 75 * Transaction while Finishing Deferred Work" section below for 76 * details. 77 * 78 * The key here is that we must log an intent item for all pending 79 * work items every time we roll the transaction, and that we must log 80 * a done item as soon as the work is completed. With this mechanism 81 * we can perform complex remapping operations, chaining intent items 82 * as needed. 83 * 84 * Requesting a Fresh Transaction while Finishing Deferred Work 85 * 86 * If ->finish_item decides that it needs a fresh transaction to 87 * finish the work, it must ask its caller (xfs_defer_finish) for a 88 * continuation. The most likely cause of this circumstance are the 89 * refcount adjust functions deciding that they've logged enough items 90 * to be at risk of exceeding the transaction reservation. 91 * 92 * To get a fresh transaction, we want to log the existing log done 93 * item to prevent the log intent item from replaying, immediately log 94 * a new log intent item with the unfinished work items, roll the 95 * transaction, and re-call ->finish_item wherever it left off. The 96 * log done item and the new log intent item must be in the same 97 * transaction or atomicity cannot be guaranteed; defer_finish ensures 98 * that this happens. 99 * 100 * This requires some coordination between ->finish_item and 101 * defer_finish. Upon deciding to request a new transaction, 102 * ->finish_item should update the current work item to reflect the 103 * unfinished work. Next, it should reset the log done item's list 104 * count to the number of items finished, and return -EAGAIN. 105 * defer_finish sees the -EAGAIN, logs the new log intent item 106 * with the remaining work items, and leaves the xfs_defer_pending 107 * item at the head of the dop_work queue. Then it rolls the 108 * transaction and picks up processing where it left off. It is 109 * required that ->finish_item must be careful to leave enough 110 * transaction reservation to fit the new log intent item. 111 * 112 * This is an example of remapping the extent (E, E+B) into file X at 113 * offset A and dealing with the extent (C, C+B) already being mapped 114 * there: 115 * +-------------------------------------------------+ 116 * | Unmap file X startblock C offset A length B | t0 117 * | Intent to reduce refcount for extent (C, B) | 118 * | Intent to remove rmap (X, C, A, B) | 119 * | Intent to free extent (D, 1) (bmbt block) | 120 * | Intent to map (X, A, B) at startblock E | 121 * +-------------------------------------------------+ 122 * | Map file X startblock E offset A length B | t1 123 * | Done mapping (X, E, A, B) | 124 * | Intent to increase refcount for extent (E, B) | 125 * | Intent to add rmap (X, E, A, B) | 126 * +-------------------------------------------------+ 127 * | Reduce refcount for extent (C, B) | t2 128 * | Done reducing refcount for extent (C, 9) | 129 * | Intent to reduce refcount for extent (C+9, B-9) | 130 * | (ran out of space after 9 refcount updates) | 131 * +-------------------------------------------------+ 132 * | Reduce refcount for extent (C+9, B+9) | t3 133 * | Done reducing refcount for extent (C+9, B-9) | 134 * | Increase refcount for extent (E, B) | 135 * | Done increasing refcount for extent (E, B) | 136 * | Intent to free extent (C, B) | 137 * | Intent to free extent (F, 1) (refcountbt block) | 138 * | Intent to remove rmap (F, 1, REFC) | 139 * +-------------------------------------------------+ 140 * | Remove rmap (X, C, A, B) | t4 141 * | Done removing rmap (X, C, A, B) | 142 * | Add rmap (X, E, A, B) | 143 * | Done adding rmap (X, E, A, B) | 144 * | Remove rmap (F, 1, REFC) | 145 * | Done removing rmap (F, 1, REFC) | 146 * +-------------------------------------------------+ 147 * | Free extent (C, B) | t5 148 * | Done freeing extent (C, B) | 149 * | Free extent (D, 1) | 150 * | Done freeing extent (D, 1) | 151 * | Free extent (F, 1) | 152 * | Done freeing extent (F, 1) | 153 * +-------------------------------------------------+ 154 * 155 * If we should crash before t2 commits, log recovery replays 156 * the following intent items: 157 * 158 * - Intent to reduce refcount for extent (C, B) 159 * - Intent to remove rmap (X, C, A, B) 160 * - Intent to free extent (D, 1) (bmbt block) 161 * - Intent to increase refcount for extent (E, B) 162 * - Intent to add rmap (X, E, A, B) 163 * 164 * In the process of recovering, it should also generate and take care 165 * of these intent items: 166 * 167 * - Intent to free extent (C, B) 168 * - Intent to free extent (F, 1) (refcountbt block) 169 * - Intent to remove rmap (F, 1, REFC) 170 * 171 * Note that the continuation requested between t2 and t3 is likely to 172 * reoccur. 173 */ 174 175 static const struct xfs_defer_op_type *defer_op_types[XFS_DEFER_OPS_TYPE_MAX]; 176 177 /* 178 * For each pending item in the intake list, log its intent item and the 179 * associated extents, then add the entire intake list to the end of 180 * the pending list. 181 */ 182 STATIC void 183 xfs_defer_create_intents( 184 struct xfs_trans *tp) 185 { 186 struct list_head *li; 187 struct xfs_defer_pending *dfp; 188 189 list_for_each_entry(dfp, &tp->t_dfops, dfp_list) { 190 dfp->dfp_intent = dfp->dfp_type->create_intent(tp, 191 dfp->dfp_count); 192 trace_xfs_defer_create_intent(tp->t_mountp, dfp); 193 list_sort(tp->t_mountp, &dfp->dfp_work, 194 dfp->dfp_type->diff_items); 195 list_for_each(li, &dfp->dfp_work) 196 dfp->dfp_type->log_item(tp, dfp->dfp_intent, li); 197 } 198 } 199 200 /* Abort all the intents that were committed. */ 201 STATIC void 202 xfs_defer_trans_abort( 203 struct xfs_trans *tp, 204 struct list_head *dop_pending) 205 { 206 struct xfs_defer_pending *dfp; 207 208 trace_xfs_defer_trans_abort(tp, _RET_IP_); 209 210 /* Abort intent items that don't have a done item. */ 211 list_for_each_entry(dfp, dop_pending, dfp_list) { 212 trace_xfs_defer_pending_abort(tp->t_mountp, dfp); 213 if (dfp->dfp_intent && !dfp->dfp_done) { 214 dfp->dfp_type->abort_intent(dfp->dfp_intent); 215 dfp->dfp_intent = NULL; 216 } 217 } 218 } 219 220 /* Roll a transaction so we can do some deferred op processing. */ 221 STATIC int 222 xfs_defer_trans_roll( 223 struct xfs_trans **tpp) 224 { 225 struct xfs_trans *tp = *tpp; 226 struct xfs_buf_log_item *bli; 227 struct xfs_inode_log_item *ili; 228 struct xfs_log_item *lip; 229 struct xfs_buf *bplist[XFS_DEFER_OPS_NR_BUFS]; 230 struct xfs_inode *iplist[XFS_DEFER_OPS_NR_INODES]; 231 int bpcount = 0, ipcount = 0; 232 int i; 233 int error; 234 235 list_for_each_entry(lip, &tp->t_items, li_trans) { 236 switch (lip->li_type) { 237 case XFS_LI_BUF: 238 bli = container_of(lip, struct xfs_buf_log_item, 239 bli_item); 240 if (bli->bli_flags & XFS_BLI_HOLD) { 241 if (bpcount >= XFS_DEFER_OPS_NR_BUFS) { 242 ASSERT(0); 243 return -EFSCORRUPTED; 244 } 245 xfs_trans_dirty_buf(tp, bli->bli_buf); 246 bplist[bpcount++] = bli->bli_buf; 247 } 248 break; 249 case XFS_LI_INODE: 250 ili = container_of(lip, struct xfs_inode_log_item, 251 ili_item); 252 if (ili->ili_lock_flags == 0) { 253 if (ipcount >= XFS_DEFER_OPS_NR_INODES) { 254 ASSERT(0); 255 return -EFSCORRUPTED; 256 } 257 xfs_trans_log_inode(tp, ili->ili_inode, 258 XFS_ILOG_CORE); 259 iplist[ipcount++] = ili->ili_inode; 260 } 261 break; 262 default: 263 break; 264 } 265 } 266 267 trace_xfs_defer_trans_roll(tp, _RET_IP_); 268 269 /* Roll the transaction. */ 270 error = xfs_trans_roll(tpp); 271 tp = *tpp; 272 if (error) { 273 trace_xfs_defer_trans_roll_error(tp, error); 274 return error; 275 } 276 277 /* Rejoin the joined inodes. */ 278 for (i = 0; i < ipcount; i++) 279 xfs_trans_ijoin(tp, iplist[i], 0); 280 281 /* Rejoin the buffers and dirty them so the log moves forward. */ 282 for (i = 0; i < bpcount; i++) { 283 xfs_trans_bjoin(tp, bplist[i]); 284 xfs_trans_bhold(tp, bplist[i]); 285 } 286 287 return error; 288 } 289 290 /* 291 * Reset an already used dfops after finish. 292 */ 293 static void 294 xfs_defer_reset( 295 struct xfs_trans *tp) 296 { 297 ASSERT(list_empty(&tp->t_dfops)); 298 299 /* 300 * Low mode state transfers across transaction rolls to mirror dfops 301 * lifetime. Clear it now that dfops is reset. 302 */ 303 tp->t_flags &= ~XFS_TRANS_LOWMODE; 304 } 305 306 /* 307 * Free up any items left in the list. 308 */ 309 static void 310 xfs_defer_cancel_list( 311 struct xfs_mount *mp, 312 struct list_head *dop_list) 313 { 314 struct xfs_defer_pending *dfp; 315 struct xfs_defer_pending *pli; 316 struct list_head *pwi; 317 struct list_head *n; 318 319 /* 320 * Free the pending items. Caller should already have arranged 321 * for the intent items to be released. 322 */ 323 list_for_each_entry_safe(dfp, pli, dop_list, dfp_list) { 324 trace_xfs_defer_cancel_list(mp, dfp); 325 list_del(&dfp->dfp_list); 326 list_for_each_safe(pwi, n, &dfp->dfp_work) { 327 list_del(pwi); 328 dfp->dfp_count--; 329 dfp->dfp_type->cancel_item(pwi); 330 } 331 ASSERT(dfp->dfp_count == 0); 332 kmem_free(dfp); 333 } 334 } 335 336 /* 337 * Finish all the pending work. This involves logging intent items for 338 * any work items that wandered in since the last transaction roll (if 339 * one has even happened), rolling the transaction, and finishing the 340 * work items in the first item on the logged-and-pending list. 341 * 342 * If an inode is provided, relog it to the new transaction. 343 */ 344 int 345 xfs_defer_finish_noroll( 346 struct xfs_trans **tp) 347 { 348 struct xfs_defer_pending *dfp; 349 struct list_head *li; 350 struct list_head *n; 351 void *state; 352 int error = 0; 353 void (*cleanup_fn)(struct xfs_trans *, void *, int); 354 LIST_HEAD(dop_pending); 355 356 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES); 357 358 trace_xfs_defer_finish(*tp, _RET_IP_); 359 360 /* Until we run out of pending work to finish... */ 361 while (!list_empty(&dop_pending) || !list_empty(&(*tp)->t_dfops)) { 362 /* log intents and pull in intake items */ 363 xfs_defer_create_intents(*tp); 364 list_splice_tail_init(&(*tp)->t_dfops, &dop_pending); 365 366 /* 367 * Roll the transaction. 368 */ 369 error = xfs_defer_trans_roll(tp); 370 if (error) 371 goto out; 372 373 /* Log an intent-done item for the first pending item. */ 374 dfp = list_first_entry(&dop_pending, struct xfs_defer_pending, 375 dfp_list); 376 trace_xfs_defer_pending_finish((*tp)->t_mountp, dfp); 377 dfp->dfp_done = dfp->dfp_type->create_done(*tp, dfp->dfp_intent, 378 dfp->dfp_count); 379 cleanup_fn = dfp->dfp_type->finish_cleanup; 380 381 /* Finish the work items. */ 382 state = NULL; 383 list_for_each_safe(li, n, &dfp->dfp_work) { 384 list_del(li); 385 dfp->dfp_count--; 386 error = dfp->dfp_type->finish_item(*tp, li, 387 dfp->dfp_done, &state); 388 if (error == -EAGAIN) { 389 /* 390 * Caller wants a fresh transaction; 391 * put the work item back on the list 392 * and jump out. 393 */ 394 list_add(li, &dfp->dfp_work); 395 dfp->dfp_count++; 396 break; 397 } else if (error) { 398 /* 399 * Clean up after ourselves and jump out. 400 * xfs_defer_cancel will take care of freeing 401 * all these lists and stuff. 402 */ 403 if (cleanup_fn) 404 cleanup_fn(*tp, state, error); 405 goto out; 406 } 407 } 408 if (error == -EAGAIN) { 409 /* 410 * Caller wants a fresh transaction, so log a 411 * new log intent item to replace the old one 412 * and roll the transaction. See "Requesting 413 * a Fresh Transaction while Finishing 414 * Deferred Work" above. 415 */ 416 dfp->dfp_intent = dfp->dfp_type->create_intent(*tp, 417 dfp->dfp_count); 418 dfp->dfp_done = NULL; 419 list_for_each(li, &dfp->dfp_work) 420 dfp->dfp_type->log_item(*tp, dfp->dfp_intent, 421 li); 422 } else { 423 /* Done with the dfp, free it. */ 424 list_del(&dfp->dfp_list); 425 kmem_free(dfp); 426 } 427 428 if (cleanup_fn) 429 cleanup_fn(*tp, state, error); 430 } 431 432 out: 433 if (error) { 434 xfs_defer_trans_abort(*tp, &dop_pending); 435 xfs_force_shutdown((*tp)->t_mountp, SHUTDOWN_CORRUPT_INCORE); 436 trace_xfs_defer_finish_error(*tp, error); 437 xfs_defer_cancel_list((*tp)->t_mountp, &dop_pending); 438 xfs_defer_cancel(*tp); 439 return error; 440 } 441 442 trace_xfs_defer_finish_done(*tp, _RET_IP_); 443 return 0; 444 } 445 446 int 447 xfs_defer_finish( 448 struct xfs_trans **tp) 449 { 450 int error; 451 452 /* 453 * Finish and roll the transaction once more to avoid returning to the 454 * caller with a dirty transaction. 455 */ 456 error = xfs_defer_finish_noroll(tp); 457 if (error) 458 return error; 459 if ((*tp)->t_flags & XFS_TRANS_DIRTY) { 460 error = xfs_defer_trans_roll(tp); 461 if (error) { 462 xfs_force_shutdown((*tp)->t_mountp, 463 SHUTDOWN_CORRUPT_INCORE); 464 return error; 465 } 466 } 467 xfs_defer_reset(*tp); 468 return 0; 469 } 470 471 void 472 xfs_defer_cancel( 473 struct xfs_trans *tp) 474 { 475 struct xfs_mount *mp = tp->t_mountp; 476 477 trace_xfs_defer_cancel(tp, _RET_IP_); 478 xfs_defer_cancel_list(mp, &tp->t_dfops); 479 } 480 481 /* Add an item for later deferred processing. */ 482 void 483 xfs_defer_add( 484 struct xfs_trans *tp, 485 enum xfs_defer_ops_type type, 486 struct list_head *li) 487 { 488 struct xfs_defer_pending *dfp = NULL; 489 490 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); 491 492 /* 493 * Add the item to a pending item at the end of the intake list. 494 * If the last pending item has the same type, reuse it. Else, 495 * create a new pending item at the end of the intake list. 496 */ 497 if (!list_empty(&tp->t_dfops)) { 498 dfp = list_last_entry(&tp->t_dfops, 499 struct xfs_defer_pending, dfp_list); 500 if (dfp->dfp_type->type != type || 501 (dfp->dfp_type->max_items && 502 dfp->dfp_count >= dfp->dfp_type->max_items)) 503 dfp = NULL; 504 } 505 if (!dfp) { 506 dfp = kmem_alloc(sizeof(struct xfs_defer_pending), 507 KM_SLEEP | KM_NOFS); 508 dfp->dfp_type = defer_op_types[type]; 509 dfp->dfp_intent = NULL; 510 dfp->dfp_done = NULL; 511 dfp->dfp_count = 0; 512 INIT_LIST_HEAD(&dfp->dfp_work); 513 list_add_tail(&dfp->dfp_list, &tp->t_dfops); 514 } 515 516 list_add_tail(li, &dfp->dfp_work); 517 dfp->dfp_count++; 518 } 519 520 /* Initialize a deferred operation list. */ 521 void 522 xfs_defer_init_op_type( 523 const struct xfs_defer_op_type *type) 524 { 525 defer_op_types[type->type] = type; 526 } 527 528 /* 529 * Move deferred ops from one transaction to another and reset the source to 530 * initial state. This is primarily used to carry state forward across 531 * transaction rolls with pending dfops. 532 */ 533 void 534 xfs_defer_move( 535 struct xfs_trans *dtp, 536 struct xfs_trans *stp) 537 { 538 list_splice_init(&stp->t_dfops, &dtp->t_dfops); 539 540 /* 541 * Low free space mode was historically controlled by a dfops field. 542 * This meant that low mode state potentially carried across multiple 543 * transaction rolls. Transfer low mode on a dfops move to preserve 544 * that behavior. 545 */ 546 dtp->t_flags |= (stp->t_flags & XFS_TRANS_LOWMODE); 547 548 xfs_defer_reset(stp); 549 } 550