1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Oracle. All Rights Reserved.
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
8 #include "xfs_format.h"
9 #include "xfs_log_format.h"
10 #include "xfs_trans_resv.h"
12 #include "xfs_shared.h"
13 #include "xfs_mount.h"
14 #include "xfs_defer.h"
15 #include "xfs_inode.h"
16 #include "xfs_trans.h"
17 #include "xfs_trans_priv.h"
18 #include "xfs_bmap_item.h"
21 #include "xfs_icache.h"
22 #include "xfs_bmap_btree.h"
23 #include "xfs_trans_space.h"
26 kmem_zone_t
*xfs_bui_zone
;
27 kmem_zone_t
*xfs_bud_zone
;
29 static inline struct xfs_bui_log_item
*BUI_ITEM(struct xfs_log_item
*lip
)
31 return container_of(lip
, struct xfs_bui_log_item
, bui_item
);
36 struct xfs_bui_log_item
*buip
)
38 kmem_zone_free(xfs_bui_zone
, buip
);
42 * Freeing the BUI requires that we remove it from the AIL if it has already
43 * been placed there. However, the BUI may not yet have been placed in the AIL
44 * when called by xfs_bui_release() from BUD processing due to the ordering of
45 * committed vs unpin operations in bulk insert operations. Hence the reference
46 * count to ensure only the last caller frees the BUI.
50 struct xfs_bui_log_item
*buip
)
52 ASSERT(atomic_read(&buip
->bui_refcount
) > 0);
53 if (atomic_dec_and_test(&buip
->bui_refcount
)) {
54 xfs_trans_ail_remove(&buip
->bui_item
, SHUTDOWN_LOG_IO_ERROR
);
55 xfs_bui_item_free(buip
);
62 struct xfs_log_item
*lip
,
66 struct xfs_bui_log_item
*buip
= BUI_ITEM(lip
);
69 *nbytes
+= xfs_bui_log_format_sizeof(buip
->bui_format
.bui_nextents
);
73 * This is called to fill in the vector of log iovecs for the
74 * given bui log item. We use only 1 iovec, and we point that
75 * at the bui_log_format structure embedded in the bui item.
76 * It is at this point that we assert that all of the extent
77 * slots in the bui item have been filled.
81 struct xfs_log_item
*lip
,
82 struct xfs_log_vec
*lv
)
84 struct xfs_bui_log_item
*buip
= BUI_ITEM(lip
);
85 struct xfs_log_iovec
*vecp
= NULL
;
87 ASSERT(atomic_read(&buip
->bui_next_extent
) ==
88 buip
->bui_format
.bui_nextents
);
90 buip
->bui_format
.bui_type
= XFS_LI_BUI
;
91 buip
->bui_format
.bui_size
= 1;
93 xlog_copy_iovec(lv
, &vecp
, XLOG_REG_TYPE_BUI_FORMAT
, &buip
->bui_format
,
94 xfs_bui_log_format_sizeof(buip
->bui_format
.bui_nextents
));
98 * The unpin operation is the last place an BUI is manipulated in the log. It is
99 * either inserted in the AIL or aborted in the event of a log I/O error. In
100 * either case, the BUI transaction has been successfully committed to make it
101 * this far. Therefore, we expect whoever committed the BUI to either construct
102 * and commit the BUD or drop the BUD's reference in the event of error. Simply
103 * drop the log's BUI reference now that the log is done with it.
107 struct xfs_log_item
*lip
,
110 struct xfs_bui_log_item
*buip
= BUI_ITEM(lip
);
112 xfs_bui_release(buip
);
116 * The BUI has been either committed or aborted if the transaction has been
117 * cancelled. If the transaction was cancelled, an BUD isn't going to be
118 * constructed and thus we free the BUI here directly.
121 xfs_bui_item_release(
122 struct xfs_log_item
*lip
)
124 xfs_bui_release(BUI_ITEM(lip
));
127 static const struct xfs_item_ops xfs_bui_item_ops
= {
128 .iop_size
= xfs_bui_item_size
,
129 .iop_format
= xfs_bui_item_format
,
130 .iop_unpin
= xfs_bui_item_unpin
,
131 .iop_release
= xfs_bui_item_release
,
135 * Allocate and initialize an bui item with the given number of extents.
137 struct xfs_bui_log_item
*
139 struct xfs_mount
*mp
)
142 struct xfs_bui_log_item
*buip
;
144 buip
= kmem_zone_zalloc(xfs_bui_zone
, KM_SLEEP
);
146 xfs_log_item_init(mp
, &buip
->bui_item
, XFS_LI_BUI
, &xfs_bui_item_ops
);
147 buip
->bui_format
.bui_nextents
= XFS_BUI_MAX_FAST_EXTENTS
;
148 buip
->bui_format
.bui_id
= (uintptr_t)(void *)buip
;
149 atomic_set(&buip
->bui_next_extent
, 0);
150 atomic_set(&buip
->bui_refcount
, 2);
155 static inline struct xfs_bud_log_item
*BUD_ITEM(struct xfs_log_item
*lip
)
157 return container_of(lip
, struct xfs_bud_log_item
, bud_item
);
162 struct xfs_log_item
*lip
,
167 *nbytes
+= sizeof(struct xfs_bud_log_format
);
171 * This is called to fill in the vector of log iovecs for the
172 * given bud log item. We use only 1 iovec, and we point that
173 * at the bud_log_format structure embedded in the bud item.
174 * It is at this point that we assert that all of the extent
175 * slots in the bud item have been filled.
179 struct xfs_log_item
*lip
,
180 struct xfs_log_vec
*lv
)
182 struct xfs_bud_log_item
*budp
= BUD_ITEM(lip
);
183 struct xfs_log_iovec
*vecp
= NULL
;
185 budp
->bud_format
.bud_type
= XFS_LI_BUD
;
186 budp
->bud_format
.bud_size
= 1;
188 xlog_copy_iovec(lv
, &vecp
, XLOG_REG_TYPE_BUD_FORMAT
, &budp
->bud_format
,
189 sizeof(struct xfs_bud_log_format
));
193 * The BUD is either committed or aborted if the transaction is cancelled. If
194 * the transaction is cancelled, drop our reference to the BUI and free the
198 xfs_bud_item_release(
199 struct xfs_log_item
*lip
)
201 struct xfs_bud_log_item
*budp
= BUD_ITEM(lip
);
203 xfs_bui_release(budp
->bud_buip
);
204 kmem_zone_free(xfs_bud_zone
, budp
);
207 static const struct xfs_item_ops xfs_bud_item_ops
= {
208 .flags
= XFS_ITEM_RELEASE_WHEN_COMMITTED
,
209 .iop_size
= xfs_bud_item_size
,
210 .iop_format
= xfs_bud_item_format
,
211 .iop_release
= xfs_bud_item_release
,
214 static struct xfs_bud_log_item
*
216 struct xfs_trans
*tp
,
217 struct xfs_bui_log_item
*buip
)
219 struct xfs_bud_log_item
*budp
;
221 budp
= kmem_zone_zalloc(xfs_bud_zone
, KM_SLEEP
);
222 xfs_log_item_init(tp
->t_mountp
, &budp
->bud_item
, XFS_LI_BUD
,
224 budp
->bud_buip
= buip
;
225 budp
->bud_format
.bud_bui_id
= buip
->bui_format
.bui_id
;
227 xfs_trans_add_item(tp
, &budp
->bud_item
);
232 * Finish an bmap update and log it to the BUD. Note that the
233 * transaction is marked dirty regardless of whether the bmap update
234 * succeeds or fails to support the BUI/BUD lifecycle rules.
237 xfs_trans_log_finish_bmap_update(
238 struct xfs_trans
*tp
,
239 struct xfs_bud_log_item
*budp
,
240 enum xfs_bmap_intent_type type
,
241 struct xfs_inode
*ip
,
243 xfs_fileoff_t startoff
,
244 xfs_fsblock_t startblock
,
245 xfs_filblks_t
*blockcount
,
250 error
= xfs_bmap_finish_one(tp
, ip
, type
, whichfork
, startoff
,
251 startblock
, blockcount
, state
);
254 * Mark the transaction dirty, even on error. This ensures the
255 * transaction is aborted, which:
257 * 1.) releases the BUI and frees the BUD
258 * 2.) shuts down the filesystem
260 tp
->t_flags
|= XFS_TRANS_DIRTY
;
261 set_bit(XFS_LI_DIRTY
, &budp
->bud_item
.li_flags
);
266 /* Sort bmap intents by inode. */
268 xfs_bmap_update_diff_items(
273 struct xfs_bmap_intent
*ba
;
274 struct xfs_bmap_intent
*bb
;
276 ba
= container_of(a
, struct xfs_bmap_intent
, bi_list
);
277 bb
= container_of(b
, struct xfs_bmap_intent
, bi_list
);
278 return ba
->bi_owner
->i_ino
- bb
->bi_owner
->i_ino
;
283 xfs_bmap_update_create_intent(
284 struct xfs_trans
*tp
,
287 struct xfs_bui_log_item
*buip
;
289 ASSERT(count
== XFS_BUI_MAX_FAST_EXTENTS
);
292 buip
= xfs_bui_init(tp
->t_mountp
);
293 ASSERT(buip
!= NULL
);
296 * Get a log_item_desc to point at the new item.
298 xfs_trans_add_item(tp
, &buip
->bui_item
);
302 /* Set the map extent flags for this mapping. */
304 xfs_trans_set_bmap_flags(
305 struct xfs_map_extent
*bmap
,
306 enum xfs_bmap_intent_type type
,
314 bmap
->me_flags
= type
;
319 if (state
== XFS_EXT_UNWRITTEN
)
320 bmap
->me_flags
|= XFS_BMAP_EXTENT_UNWRITTEN
;
321 if (whichfork
== XFS_ATTR_FORK
)
322 bmap
->me_flags
|= XFS_BMAP_EXTENT_ATTR_FORK
;
325 /* Log bmap updates in the intent item. */
327 xfs_bmap_update_log_item(
328 struct xfs_trans
*tp
,
330 struct list_head
*item
)
332 struct xfs_bui_log_item
*buip
= intent
;
333 struct xfs_bmap_intent
*bmap
;
335 struct xfs_map_extent
*map
;
337 bmap
= container_of(item
, struct xfs_bmap_intent
, bi_list
);
339 tp
->t_flags
|= XFS_TRANS_DIRTY
;
340 set_bit(XFS_LI_DIRTY
, &buip
->bui_item
.li_flags
);
343 * atomic_inc_return gives us the value after the increment;
344 * we want to use it as an array index so we need to subtract 1 from
347 next_extent
= atomic_inc_return(&buip
->bui_next_extent
) - 1;
348 ASSERT(next_extent
< buip
->bui_format
.bui_nextents
);
349 map
= &buip
->bui_format
.bui_extents
[next_extent
];
350 map
->me_owner
= bmap
->bi_owner
->i_ino
;
351 map
->me_startblock
= bmap
->bi_bmap
.br_startblock
;
352 map
->me_startoff
= bmap
->bi_bmap
.br_startoff
;
353 map
->me_len
= bmap
->bi_bmap
.br_blockcount
;
354 xfs_trans_set_bmap_flags(map
, bmap
->bi_type
, bmap
->bi_whichfork
,
355 bmap
->bi_bmap
.br_state
);
358 /* Get an BUD so we can process all the deferred rmap updates. */
360 xfs_bmap_update_create_done(
361 struct xfs_trans
*tp
,
365 return xfs_trans_get_bud(tp
, intent
);
368 /* Process a deferred rmap update. */
370 xfs_bmap_update_finish_item(
371 struct xfs_trans
*tp
,
372 struct list_head
*item
,
376 struct xfs_bmap_intent
*bmap
;
380 bmap
= container_of(item
, struct xfs_bmap_intent
, bi_list
);
381 count
= bmap
->bi_bmap
.br_blockcount
;
382 error
= xfs_trans_log_finish_bmap_update(tp
, done_item
,
384 bmap
->bi_owner
, bmap
->bi_whichfork
,
385 bmap
->bi_bmap
.br_startoff
,
386 bmap
->bi_bmap
.br_startblock
,
388 bmap
->bi_bmap
.br_state
);
389 if (!error
&& count
> 0) {
390 ASSERT(bmap
->bi_type
== XFS_BMAP_UNMAP
);
391 bmap
->bi_bmap
.br_blockcount
= count
;
398 /* Abort all pending BUIs. */
400 xfs_bmap_update_abort_intent(
403 xfs_bui_release(intent
);
406 /* Cancel a deferred rmap update. */
408 xfs_bmap_update_cancel_item(
409 struct list_head
*item
)
411 struct xfs_bmap_intent
*bmap
;
413 bmap
= container_of(item
, struct xfs_bmap_intent
, bi_list
);
417 const struct xfs_defer_op_type xfs_bmap_update_defer_type
= {
418 .max_items
= XFS_BUI_MAX_FAST_EXTENTS
,
419 .diff_items
= xfs_bmap_update_diff_items
,
420 .create_intent
= xfs_bmap_update_create_intent
,
421 .abort_intent
= xfs_bmap_update_abort_intent
,
422 .log_item
= xfs_bmap_update_log_item
,
423 .create_done
= xfs_bmap_update_create_done
,
424 .finish_item
= xfs_bmap_update_finish_item
,
425 .cancel_item
= xfs_bmap_update_cancel_item
,
429 * Process a bmap update intent item that was recovered from the log.
430 * We need to update some inode's bmbt.
434 struct xfs_trans
*parent_tp
,
435 struct xfs_bui_log_item
*buip
)
438 unsigned int bui_type
;
439 struct xfs_map_extent
*bmap
;
440 xfs_fsblock_t startblock_fsb
;
441 xfs_fsblock_t inode_fsb
;
444 struct xfs_bud_log_item
*budp
;
445 enum xfs_bmap_intent_type type
;
448 struct xfs_trans
*tp
;
449 struct xfs_inode
*ip
= NULL
;
450 struct xfs_bmbt_irec irec
;
451 struct xfs_mount
*mp
= parent_tp
->t_mountp
;
453 ASSERT(!test_bit(XFS_BUI_RECOVERED
, &buip
->bui_flags
));
455 /* Only one mapping operation per BUI... */
456 if (buip
->bui_format
.bui_nextents
!= XFS_BUI_MAX_FAST_EXTENTS
) {
457 set_bit(XFS_BUI_RECOVERED
, &buip
->bui_flags
);
458 xfs_bui_release(buip
);
463 * First check the validity of the extent described by the
464 * BUI. If anything is bad, then toss the BUI.
466 bmap
= &buip
->bui_format
.bui_extents
[0];
467 startblock_fsb
= XFS_BB_TO_FSB(mp
,
468 XFS_FSB_TO_DADDR(mp
, bmap
->me_startblock
));
469 inode_fsb
= XFS_BB_TO_FSB(mp
, XFS_FSB_TO_DADDR(mp
,
470 XFS_INO_TO_FSB(mp
, bmap
->me_owner
)));
471 switch (bmap
->me_flags
& XFS_BMAP_EXTENT_TYPE_MASK
) {
480 if (!op_ok
|| startblock_fsb
== 0 ||
483 startblock_fsb
>= mp
->m_sb
.sb_dblocks
||
484 bmap
->me_len
>= mp
->m_sb
.sb_agblocks
||
485 inode_fsb
>= mp
->m_sb
.sb_dblocks
||
486 (bmap
->me_flags
& ~XFS_BMAP_EXTENT_FLAGS
)) {
488 * This will pull the BUI from the AIL and
489 * free the memory associated with it.
491 set_bit(XFS_BUI_RECOVERED
, &buip
->bui_flags
);
492 xfs_bui_release(buip
);
496 error
= xfs_trans_alloc(mp
, &M_RES(mp
)->tr_itruncate
,
497 XFS_EXTENTADD_SPACE_RES(mp
, XFS_DATA_FORK
), 0, 0, &tp
);
501 * Recovery stashes all deferred ops during intent processing and
502 * finishes them on completion. Transfer current dfops state to this
503 * transaction and transfer the result back before we return.
505 xfs_defer_move(tp
, parent_tp
);
506 budp
= xfs_trans_get_bud(tp
, buip
);
508 /* Grab the inode. */
509 error
= xfs_iget(mp
, tp
, bmap
->me_owner
, 0, XFS_ILOCK_EXCL
, &ip
);
513 if (VFS_I(ip
)->i_nlink
== 0)
514 xfs_iflags_set(ip
, XFS_IRECOVERY
);
516 /* Process deferred bmap item. */
517 state
= (bmap
->me_flags
& XFS_BMAP_EXTENT_UNWRITTEN
) ?
518 XFS_EXT_UNWRITTEN
: XFS_EXT_NORM
;
519 whichfork
= (bmap
->me_flags
& XFS_BMAP_EXTENT_ATTR_FORK
) ?
520 XFS_ATTR_FORK
: XFS_DATA_FORK
;
521 bui_type
= bmap
->me_flags
& XFS_BMAP_EXTENT_TYPE_MASK
;
528 error
= -EFSCORRUPTED
;
531 xfs_trans_ijoin(tp
, ip
, 0);
533 count
= bmap
->me_len
;
534 error
= xfs_trans_log_finish_bmap_update(tp
, budp
, type
, ip
, whichfork
,
535 bmap
->me_startoff
, bmap
->me_startblock
, &count
, state
);
540 ASSERT(type
== XFS_BMAP_UNMAP
);
541 irec
.br_startblock
= bmap
->me_startblock
;
542 irec
.br_blockcount
= count
;
543 irec
.br_startoff
= bmap
->me_startoff
;
544 irec
.br_state
= state
;
545 error
= xfs_bmap_unmap_extent(tp
, ip
, &irec
);
550 set_bit(XFS_BUI_RECOVERED
, &buip
->bui_flags
);
551 xfs_defer_move(parent_tp
, tp
);
552 error
= xfs_trans_commit(tp
);
553 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
559 xfs_defer_move(parent_tp
, tp
);
560 xfs_trans_cancel(tp
);
562 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);