]> Git Repo - linux.git/blame - fs/xfs/xfs_bmap_item.c
xfs: validate extsz hints against rt extent size when rtinherit is set
[linux.git] / fs / xfs / xfs_bmap_item.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0+
6413a014
DW
2/*
3 * Copyright (C) 2016 Oracle. All Rights Reserved.
6413a014 4 * Author: Darrick J. Wong <[email protected]>
6413a014
DW
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_format.h"
9#include "xfs_log_format.h"
10#include "xfs_trans_resv.h"
77d61fe4 11#include "xfs_bit.h"
5467b34b 12#include "xfs_shared.h"
6413a014 13#include "xfs_mount.h"
77d61fe4
DW
14#include "xfs_defer.h"
15#include "xfs_inode.h"
6413a014
DW
16#include "xfs_trans.h"
17#include "xfs_trans_priv.h"
6413a014
DW
18#include "xfs_bmap_item.h"
19#include "xfs_log.h"
77d61fe4
DW
20#include "xfs_bmap.h"
21#include "xfs_icache.h"
fe0be23e
DW
22#include "xfs_bmap_btree.h"
23#include "xfs_trans_space.h"
a5155b87 24#include "xfs_error.h"
3c6ba3cf 25#include "xfs_log_priv.h"
86ffa471 26#include "xfs_log_recover.h"
2dbf872c 27#include "xfs_quota.h"
6413a014
DW
28
29kmem_zone_t *xfs_bui_zone;
30kmem_zone_t *xfs_bud_zone;
31
9329ba89
DW
32static const struct xfs_item_ops xfs_bui_item_ops;
33
6413a014
DW
34static inline struct xfs_bui_log_item *BUI_ITEM(struct xfs_log_item *lip)
35{
36 return container_of(lip, struct xfs_bui_log_item, bui_item);
37}
38
3c6ba3cf 39STATIC void
6413a014
DW
40xfs_bui_item_free(
41 struct xfs_bui_log_item *buip)
42{
377bcd5f 43 kmem_cache_free(xfs_bui_zone, buip);
6413a014
DW
44}
45
0612d116
DC
46/*
47 * Freeing the BUI requires that we remove it from the AIL if it has already
48 * been placed there. However, the BUI may not yet have been placed in the AIL
49 * when called by xfs_bui_release() from BUD processing due to the ordering of
50 * committed vs unpin operations in bulk insert operations. Hence the reference
51 * count to ensure only the last caller frees the BUI.
52 */
9329ba89 53STATIC void
0612d116
DC
54xfs_bui_release(
55 struct xfs_bui_log_item *buip)
56{
57 ASSERT(atomic_read(&buip->bui_refcount) > 0);
58 if (atomic_dec_and_test(&buip->bui_refcount)) {
65587929 59 xfs_trans_ail_delete(&buip->bui_item, SHUTDOWN_LOG_IO_ERROR);
0612d116
DC
60 xfs_bui_item_free(buip);
61 }
62}
63
64
6413a014
DW
65STATIC void
66xfs_bui_item_size(
67 struct xfs_log_item *lip,
68 int *nvecs,
69 int *nbytes)
70{
71 struct xfs_bui_log_item *buip = BUI_ITEM(lip);
72
73 *nvecs += 1;
74 *nbytes += xfs_bui_log_format_sizeof(buip->bui_format.bui_nextents);
75}
76
77/*
78 * This is called to fill in the vector of log iovecs for the
79 * given bui log item. We use only 1 iovec, and we point that
80 * at the bui_log_format structure embedded in the bui item.
81 * It is at this point that we assert that all of the extent
82 * slots in the bui item have been filled.
83 */
84STATIC void
85xfs_bui_item_format(
86 struct xfs_log_item *lip,
87 struct xfs_log_vec *lv)
88{
89 struct xfs_bui_log_item *buip = BUI_ITEM(lip);
90 struct xfs_log_iovec *vecp = NULL;
91
92 ASSERT(atomic_read(&buip->bui_next_extent) ==
93 buip->bui_format.bui_nextents);
94
95 buip->bui_format.bui_type = XFS_LI_BUI;
96 buip->bui_format.bui_size = 1;
97
98 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_BUI_FORMAT, &buip->bui_format,
99 xfs_bui_log_format_sizeof(buip->bui_format.bui_nextents));
100}
101
6413a014
DW
102/*
103 * The unpin operation is the last place an BUI is manipulated in the log. It is
104 * either inserted in the AIL or aborted in the event of a log I/O error. In
105 * either case, the BUI transaction has been successfully committed to make it
106 * this far. Therefore, we expect whoever committed the BUI to either construct
107 * and commit the BUD or drop the BUD's reference in the event of error. Simply
108 * drop the log's BUI reference now that the log is done with it.
109 */
110STATIC void
111xfs_bui_item_unpin(
112 struct xfs_log_item *lip,
113 int remove)
114{
115 struct xfs_bui_log_item *buip = BUI_ITEM(lip);
116
117 xfs_bui_release(buip);
118}
119
6413a014
DW
120/*
121 * The BUI has been either committed or aborted if the transaction has been
122 * cancelled. If the transaction was cancelled, an BUD isn't going to be
123 * constructed and thus we free the BUI here directly.
124 */
125STATIC void
ddf92053 126xfs_bui_item_release(
6413a014
DW
127 struct xfs_log_item *lip)
128{
ddf92053 129 xfs_bui_release(BUI_ITEM(lip));
6413a014
DW
130}
131
6413a014
DW
132/*
133 * Allocate and initialize an bui item with the given number of extents.
134 */
3c6ba3cf 135STATIC struct xfs_bui_log_item *
6413a014
DW
136xfs_bui_init(
137 struct xfs_mount *mp)
138
139{
140 struct xfs_bui_log_item *buip;
141
32a2b11f 142 buip = kmem_cache_zalloc(xfs_bui_zone, GFP_KERNEL | __GFP_NOFAIL);
6413a014
DW
143
144 xfs_log_item_init(mp, &buip->bui_item, XFS_LI_BUI, &xfs_bui_item_ops);
145 buip->bui_format.bui_nextents = XFS_BUI_MAX_FAST_EXTENTS;
146 buip->bui_format.bui_id = (uintptr_t)(void *)buip;
147 atomic_set(&buip->bui_next_extent, 0);
148 atomic_set(&buip->bui_refcount, 2);
149
150 return buip;
151}
152
6413a014
DW
153static inline struct xfs_bud_log_item *BUD_ITEM(struct xfs_log_item *lip)
154{
155 return container_of(lip, struct xfs_bud_log_item, bud_item);
156}
157
158STATIC void
159xfs_bud_item_size(
160 struct xfs_log_item *lip,
161 int *nvecs,
162 int *nbytes)
163{
164 *nvecs += 1;
165 *nbytes += sizeof(struct xfs_bud_log_format);
166}
167
168/*
169 * This is called to fill in the vector of log iovecs for the
170 * given bud log item. We use only 1 iovec, and we point that
171 * at the bud_log_format structure embedded in the bud item.
172 * It is at this point that we assert that all of the extent
173 * slots in the bud item have been filled.
174 */
175STATIC void
176xfs_bud_item_format(
177 struct xfs_log_item *lip,
178 struct xfs_log_vec *lv)
179{
180 struct xfs_bud_log_item *budp = BUD_ITEM(lip);
181 struct xfs_log_iovec *vecp = NULL;
182
183 budp->bud_format.bud_type = XFS_LI_BUD;
184 budp->bud_format.bud_size = 1;
185
186 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_BUD_FORMAT, &budp->bud_format,
187 sizeof(struct xfs_bud_log_format));
188}
189
6413a014
DW
190/*
191 * The BUD is either committed or aborted if the transaction is cancelled. If
192 * the transaction is cancelled, drop our reference to the BUI and free the
193 * BUD.
194 */
195STATIC void
ddf92053 196xfs_bud_item_release(
6413a014
DW
197 struct xfs_log_item *lip)
198{
199 struct xfs_bud_log_item *budp = BUD_ITEM(lip);
200
ddf92053 201 xfs_bui_release(budp->bud_buip);
377bcd5f 202 kmem_cache_free(xfs_bud_zone, budp);
6413a014
DW
203}
204
6413a014 205static const struct xfs_item_ops xfs_bud_item_ops = {
9ce632a2 206 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED,
6413a014
DW
207 .iop_size = xfs_bud_item_size,
208 .iop_format = xfs_bud_item_format,
ddf92053 209 .iop_release = xfs_bud_item_release,
6413a014
DW
210};
211
caeaea98 212static struct xfs_bud_log_item *
73f0d236
CH
213xfs_trans_get_bud(
214 struct xfs_trans *tp,
6413a014 215 struct xfs_bui_log_item *buip)
6413a014 216{
73f0d236 217 struct xfs_bud_log_item *budp;
6413a014 218
32a2b11f 219 budp = kmem_cache_zalloc(xfs_bud_zone, GFP_KERNEL | __GFP_NOFAIL);
73f0d236
CH
220 xfs_log_item_init(tp->t_mountp, &budp->bud_item, XFS_LI_BUD,
221 &xfs_bud_item_ops);
6413a014
DW
222 budp->bud_buip = buip;
223 budp->bud_format.bud_bui_id = buip->bui_format.bui_id;
224
73f0d236 225 xfs_trans_add_item(tp, &budp->bud_item);
6413a014
DW
226 return budp;
227}
77d61fe4 228
caeaea98
CH
229/*
230 * Finish an bmap update and log it to the BUD. Note that the
231 * transaction is marked dirty regardless of whether the bmap update
232 * succeeds or fails to support the BUI/BUD lifecycle rules.
233 */
234static int
235xfs_trans_log_finish_bmap_update(
236 struct xfs_trans *tp,
237 struct xfs_bud_log_item *budp,
238 enum xfs_bmap_intent_type type,
239 struct xfs_inode *ip,
240 int whichfork,
241 xfs_fileoff_t startoff,
242 xfs_fsblock_t startblock,
243 xfs_filblks_t *blockcount,
244 xfs_exntst_t state)
245{
246 int error;
247
248 error = xfs_bmap_finish_one(tp, ip, type, whichfork, startoff,
249 startblock, blockcount, state);
250
251 /*
252 * Mark the transaction dirty, even on error. This ensures the
253 * transaction is aborted, which:
254 *
255 * 1.) releases the BUI and frees the BUD
256 * 2.) shuts down the filesystem
257 */
258 tp->t_flags |= XFS_TRANS_DIRTY;
259 set_bit(XFS_LI_DIRTY, &budp->bud_item.li_flags);
260
261 return error;
262}
263
264/* Sort bmap intents by inode. */
265static int
266xfs_bmap_update_diff_items(
267 void *priv,
4f0f586b
ST
268 const struct list_head *a,
269 const struct list_head *b)
caeaea98
CH
270{
271 struct xfs_bmap_intent *ba;
272 struct xfs_bmap_intent *bb;
273
274 ba = container_of(a, struct xfs_bmap_intent, bi_list);
275 bb = container_of(b, struct xfs_bmap_intent, bi_list);
276 return ba->bi_owner->i_ino - bb->bi_owner->i_ino;
277}
278
caeaea98
CH
279/* Set the map extent flags for this mapping. */
280static void
281xfs_trans_set_bmap_flags(
282 struct xfs_map_extent *bmap,
283 enum xfs_bmap_intent_type type,
284 int whichfork,
285 xfs_exntst_t state)
286{
287 bmap->me_flags = 0;
288 switch (type) {
289 case XFS_BMAP_MAP:
290 case XFS_BMAP_UNMAP:
291 bmap->me_flags = type;
292 break;
293 default:
294 ASSERT(0);
295 }
296 if (state == XFS_EXT_UNWRITTEN)
297 bmap->me_flags |= XFS_BMAP_EXTENT_UNWRITTEN;
298 if (whichfork == XFS_ATTR_FORK)
299 bmap->me_flags |= XFS_BMAP_EXTENT_ATTR_FORK;
300}
301
302/* Log bmap updates in the intent item. */
303STATIC void
304xfs_bmap_update_log_item(
305 struct xfs_trans *tp,
c1f09188
CH
306 struct xfs_bui_log_item *buip,
307 struct xfs_bmap_intent *bmap)
caeaea98 308{
caeaea98
CH
309 uint next_extent;
310 struct xfs_map_extent *map;
311
caeaea98
CH
312 tp->t_flags |= XFS_TRANS_DIRTY;
313 set_bit(XFS_LI_DIRTY, &buip->bui_item.li_flags);
314
315 /*
316 * atomic_inc_return gives us the value after the increment;
317 * we want to use it as an array index so we need to subtract 1 from
318 * it.
319 */
320 next_extent = atomic_inc_return(&buip->bui_next_extent) - 1;
321 ASSERT(next_extent < buip->bui_format.bui_nextents);
322 map = &buip->bui_format.bui_extents[next_extent];
323 map->me_owner = bmap->bi_owner->i_ino;
324 map->me_startblock = bmap->bi_bmap.br_startblock;
325 map->me_startoff = bmap->bi_bmap.br_startoff;
326 map->me_len = bmap->bi_bmap.br_blockcount;
327 xfs_trans_set_bmap_flags(map, bmap->bi_type, bmap->bi_whichfork,
328 bmap->bi_bmap.br_state);
329}
330
13a83333 331static struct xfs_log_item *
c1f09188
CH
332xfs_bmap_update_create_intent(
333 struct xfs_trans *tp,
334 struct list_head *items,
d367a868
CH
335 unsigned int count,
336 bool sort)
c1f09188 337{
d367a868
CH
338 struct xfs_mount *mp = tp->t_mountp;
339 struct xfs_bui_log_item *buip = xfs_bui_init(mp);
c1f09188
CH
340 struct xfs_bmap_intent *bmap;
341
342 ASSERT(count == XFS_BUI_MAX_FAST_EXTENTS);
343
344 xfs_trans_add_item(tp, &buip->bui_item);
d367a868
CH
345 if (sort)
346 list_sort(mp, items, xfs_bmap_update_diff_items);
c1f09188
CH
347 list_for_each_entry(bmap, items, bi_list)
348 xfs_bmap_update_log_item(tp, buip, bmap);
13a83333 349 return &buip->bui_item;
c1f09188
CH
350}
351
caeaea98 352/* Get an BUD so we can process all the deferred rmap updates. */
f09d167c 353static struct xfs_log_item *
caeaea98
CH
354xfs_bmap_update_create_done(
355 struct xfs_trans *tp,
13a83333 356 struct xfs_log_item *intent,
caeaea98
CH
357 unsigned int count)
358{
f09d167c 359 return &xfs_trans_get_bud(tp, BUI_ITEM(intent))->bud_item;
caeaea98
CH
360}
361
362/* Process a deferred rmap update. */
363STATIC int
364xfs_bmap_update_finish_item(
365 struct xfs_trans *tp,
f09d167c 366 struct xfs_log_item *done,
caeaea98 367 struct list_head *item,
3ec1b26c 368 struct xfs_btree_cur **state)
caeaea98
CH
369{
370 struct xfs_bmap_intent *bmap;
371 xfs_filblks_t count;
372 int error;
373
374 bmap = container_of(item, struct xfs_bmap_intent, bi_list);
375 count = bmap->bi_bmap.br_blockcount;
f09d167c 376 error = xfs_trans_log_finish_bmap_update(tp, BUD_ITEM(done),
caeaea98
CH
377 bmap->bi_type,
378 bmap->bi_owner, bmap->bi_whichfork,
379 bmap->bi_bmap.br_startoff,
380 bmap->bi_bmap.br_startblock,
381 &count,
382 bmap->bi_bmap.br_state);
383 if (!error && count > 0) {
384 ASSERT(bmap->bi_type == XFS_BMAP_UNMAP);
385 bmap->bi_bmap.br_blockcount = count;
386 return -EAGAIN;
387 }
388 kmem_free(bmap);
389 return error;
390}
391
392/* Abort all pending BUIs. */
393STATIC void
394xfs_bmap_update_abort_intent(
13a83333 395 struct xfs_log_item *intent)
caeaea98 396{
13a83333 397 xfs_bui_release(BUI_ITEM(intent));
caeaea98
CH
398}
399
400/* Cancel a deferred rmap update. */
401STATIC void
402xfs_bmap_update_cancel_item(
403 struct list_head *item)
404{
405 struct xfs_bmap_intent *bmap;
406
407 bmap = container_of(item, struct xfs_bmap_intent, bi_list);
408 kmem_free(bmap);
409}
410
411const struct xfs_defer_op_type xfs_bmap_update_defer_type = {
412 .max_items = XFS_BUI_MAX_FAST_EXTENTS,
caeaea98
CH
413 .create_intent = xfs_bmap_update_create_intent,
414 .abort_intent = xfs_bmap_update_abort_intent,
caeaea98
CH
415 .create_done = xfs_bmap_update_create_done,
416 .finish_item = xfs_bmap_update_finish_item,
417 .cancel_item = xfs_bmap_update_cancel_item,
418};
419
bc525cf4
DW
420/* Is this recovered BUI ok? */
421static inline bool
422xfs_bui_validate(
423 struct xfs_mount *mp,
424 struct xfs_bui_log_item *buip)
425{
426 struct xfs_map_extent *bmap;
bc525cf4
DW
427
428 /* Only one mapping operation per BUI... */
429 if (buip->bui_format.bui_nextents != XFS_BUI_MAX_FAST_EXTENTS)
430 return false;
431
432 bmap = &buip->bui_format.bui_extents[0];
bc525cf4
DW
433
434 if (bmap->me_flags & ~XFS_BMAP_EXTENT_FLAGS)
435 return false;
436
437 switch (bmap->me_flags & XFS_BMAP_EXTENT_TYPE_MASK) {
438 case XFS_BMAP_MAP:
439 case XFS_BMAP_UNMAP:
440 break;
441 default:
442 return false;
443 }
444
67d8679b
DW
445 if (!xfs_verify_ino(mp, bmap->me_owner))
446 return false;
447
33005fd0 448 if (!xfs_verify_fileext(mp, bmap->me_startoff, bmap->me_len))
67d8679b
DW
449 return false;
450
67457eb0 451 return xfs_verify_fsbext(mp, bmap->me_startblock, bmap->me_len);
bc525cf4
DW
452}
453
77d61fe4
DW
454/*
455 * Process a bmap update intent item that was recovered from the log.
456 * We need to update some inode's bmbt.
457 */
9329ba89 458STATIC int
96b60f82
DW
459xfs_bui_item_recover(
460 struct xfs_log_item *lip,
e6fff81e 461 struct list_head *capture_list)
77d61fe4 462{
96b60f82
DW
463 struct xfs_bmbt_irec irec;
464 struct xfs_bui_log_item *buip = BUI_ITEM(lip);
465 struct xfs_trans *tp;
466 struct xfs_inode *ip = NULL;
e6fff81e 467 struct xfs_mount *mp = lip->li_mountp;
77d61fe4 468 struct xfs_map_extent *bmap;
96b60f82 469 struct xfs_bud_log_item *budp;
e1a4e37c 470 xfs_filblks_t count;
96b60f82 471 xfs_exntst_t state;
96b60f82 472 unsigned int bui_type;
9f3afb57 473 int whichfork;
85ef08b5 474 int iext_delta;
96b60f82 475 int error = 0;
77d61fe4 476
bc525cf4
DW
477 if (!xfs_bui_validate(mp, buip)) {
478 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp,
479 &buip->bui_format, sizeof(buip->bui_format));
895e196f 480 return -EFSCORRUPTED;
bc525cf4 481 }
77d61fe4 482
77d61fe4 483 bmap = &buip->bui_format.bui_extents[0];
919522e8
DW
484 state = (bmap->me_flags & XFS_BMAP_EXTENT_UNWRITTEN) ?
485 XFS_EXT_UNWRITTEN : XFS_EXT_NORM;
486 whichfork = (bmap->me_flags & XFS_BMAP_EXTENT_ATTR_FORK) ?
487 XFS_ATTR_FORK : XFS_DATA_FORK;
488 bui_type = bmap->me_flags & XFS_BMAP_EXTENT_TYPE_MASK;
77d61fe4 489
9f3afb57 490 /* Grab the inode. */
64a3f331 491 error = xfs_iget(mp, NULL, bmap->me_owner, 0, 0, &ip);
9f3afb57 492 if (error)
64a3f331 493 return error;
9f3afb57 494
64a3f331 495 error = xfs_qm_dqattach(ip);
2dbf872c 496 if (error)
64a3f331 497 goto err_rele;
2dbf872c 498
17c12bcd
DW
499 if (VFS_I(ip)->i_nlink == 0)
500 xfs_iflags_set(ip, XFS_IRECOVERY);
9f3afb57 501
64a3f331
DW
502 /* Allocate transaction and do the work. */
503 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate,
504 XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK), 0, 0, &tp);
505 if (error)
506 goto err_rele;
507
508 budp = xfs_trans_get_bud(tp, buip);
509 xfs_ilock(ip, XFS_ILOCK_EXCL);
9f3afb57
DW
510 xfs_trans_ijoin(tp, ip, 0);
511
85ef08b5
CB
512 if (bui_type == XFS_BMAP_MAP)
513 iext_delta = XFS_IEXT_ADD_NOSPLIT_CNT;
514 else
515 iext_delta = XFS_IEXT_PUNCH_HOLE_CNT;
516
517 error = xfs_iext_count_may_overflow(ip, whichfork, iext_delta);
518 if (error)
519 goto err_cancel;
727e1acd 520
e1a4e37c 521 count = bmap->me_len;
919522e8
DW
522 error = xfs_trans_log_finish_bmap_update(tp, budp, bui_type, ip,
523 whichfork, bmap->me_startoff, bmap->me_startblock,
524 &count, state);
9f3afb57 525 if (error)
64a3f331 526 goto err_cancel;
9f3afb57 527
e1a4e37c 528 if (count > 0) {
919522e8 529 ASSERT(bui_type == XFS_BMAP_UNMAP);
e1a4e37c
DW
530 irec.br_startblock = bmap->me_startblock;
531 irec.br_blockcount = count;
532 irec.br_startoff = bmap->me_startoff;
533 irec.br_state = state;
3e08f42a 534 xfs_bmap_unmap_extent(tp, ip, &irec);
e1a4e37c
DW
535 }
536
ff4ab5e0
DW
537 /*
538 * Commit transaction, which frees the transaction and saves the inode
539 * for later replay activities.
540 */
541 error = xfs_defer_ops_capture_and_commit(tp, ip, capture_list);
64a3f331
DW
542 if (error)
543 goto err_unlock;
544
9f3afb57 545 xfs_iunlock(ip, XFS_ILOCK_EXCL);
44a8736b 546 xfs_irele(ip);
64a3f331 547 return 0;
9f3afb57 548
64a3f331 549err_cancel:
9f3afb57 550 xfs_trans_cancel(tp);
64a3f331
DW
551err_unlock:
552 xfs_iunlock(ip, XFS_ILOCK_EXCL);
553err_rele:
554 xfs_irele(ip);
77d61fe4
DW
555 return error;
556}
86ffa471 557
154c733a
DW
558STATIC bool
559xfs_bui_item_match(
560 struct xfs_log_item *lip,
561 uint64_t intent_id)
562{
563 return BUI_ITEM(lip)->bui_format.bui_id == intent_id;
564}
565
4e919af7
DW
566/* Relog an intent item to push the log tail forward. */
567static struct xfs_log_item *
568xfs_bui_item_relog(
569 struct xfs_log_item *intent,
570 struct xfs_trans *tp)
571{
572 struct xfs_bud_log_item *budp;
573 struct xfs_bui_log_item *buip;
574 struct xfs_map_extent *extp;
575 unsigned int count;
576
577 count = BUI_ITEM(intent)->bui_format.bui_nextents;
578 extp = BUI_ITEM(intent)->bui_format.bui_extents;
579
580 tp->t_flags |= XFS_TRANS_DIRTY;
581 budp = xfs_trans_get_bud(tp, BUI_ITEM(intent));
582 set_bit(XFS_LI_DIRTY, &budp->bud_item.li_flags);
583
584 buip = xfs_bui_init(tp->t_mountp);
585 memcpy(buip->bui_format.bui_extents, extp, count * sizeof(*extp));
586 atomic_set(&buip->bui_next_extent, count);
587 xfs_trans_add_item(tp, &buip->bui_item);
588 set_bit(XFS_LI_DIRTY, &buip->bui_item.li_flags);
589 return &buip->bui_item;
590}
591
9329ba89
DW
592static const struct xfs_item_ops xfs_bui_item_ops = {
593 .iop_size = xfs_bui_item_size,
594 .iop_format = xfs_bui_item_format,
595 .iop_unpin = xfs_bui_item_unpin,
596 .iop_release = xfs_bui_item_release,
597 .iop_recover = xfs_bui_item_recover,
154c733a 598 .iop_match = xfs_bui_item_match,
4e919af7 599 .iop_relog = xfs_bui_item_relog,
9329ba89
DW
600};
601
3c6ba3cf
DW
602/*
603 * Copy an BUI format buffer from the given buf, and into the destination
604 * BUI format structure. The BUI/BUD items were designed not to need any
605 * special alignment handling.
606 */
607static int
608xfs_bui_copy_format(
609 struct xfs_log_iovec *buf,
610 struct xfs_bui_log_format *dst_bui_fmt)
611{
612 struct xfs_bui_log_format *src_bui_fmt;
613 uint len;
614
615 src_bui_fmt = buf->i_addr;
616 len = xfs_bui_log_format_sizeof(src_bui_fmt->bui_nextents);
617
618 if (buf->i_len == len) {
619 memcpy(dst_bui_fmt, src_bui_fmt, len);
620 return 0;
621 }
622 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, NULL);
623 return -EFSCORRUPTED;
624}
625
626/*
627 * This routine is called to create an in-core extent bmap update
628 * item from the bui format structure which was logged on disk.
629 * It allocates an in-core bui, copies the extents from the format
630 * structure into it, and adds the bui to the AIL with the given
631 * LSN.
632 */
633STATIC int
634xlog_recover_bui_commit_pass2(
635 struct xlog *log,
636 struct list_head *buffer_list,
637 struct xlog_recover_item *item,
638 xfs_lsn_t lsn)
639{
640 int error;
641 struct xfs_mount *mp = log->l_mp;
642 struct xfs_bui_log_item *buip;
643 struct xfs_bui_log_format *bui_formatp;
644
645 bui_formatp = item->ri_buf[0].i_addr;
646
647 if (bui_formatp->bui_nextents != XFS_BUI_MAX_FAST_EXTENTS) {
648 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, log->l_mp);
649 return -EFSCORRUPTED;
650 }
651 buip = xfs_bui_init(mp);
652 error = xfs_bui_copy_format(&item->ri_buf[0], &buip->bui_format);
653 if (error) {
654 xfs_bui_item_free(buip);
655 return error;
656 }
657 atomic_set(&buip->bui_next_extent, bui_formatp->bui_nextents);
3c6ba3cf 658 /*
86a37174
DW
659 * Insert the intent into the AIL directly and drop one reference so
660 * that finishing or canceling the work will drop the other.
3c6ba3cf 661 */
86a37174 662 xfs_trans_ail_insert(log->l_ailp, &buip->bui_item, lsn);
3c6ba3cf
DW
663 xfs_bui_release(buip);
664 return 0;
665}
666
86ffa471
DW
667const struct xlog_recover_item_ops xlog_bui_item_ops = {
668 .item_type = XFS_LI_BUI,
3c6ba3cf 669 .commit_pass2 = xlog_recover_bui_commit_pass2,
86ffa471
DW
670};
671
3c6ba3cf
DW
672/*
673 * This routine is called when an BUD format structure is found in a committed
674 * transaction in the log. Its purpose is to cancel the corresponding BUI if it
675 * was still in the log. To do this it searches the AIL for the BUI with an id
676 * equal to that in the BUD format structure. If we find it we drop the BUD
677 * reference, which removes the BUI from the AIL and frees it.
678 */
679STATIC int
680xlog_recover_bud_commit_pass2(
681 struct xlog *log,
682 struct list_head *buffer_list,
683 struct xlog_recover_item *item,
684 xfs_lsn_t lsn)
685{
686 struct xfs_bud_log_format *bud_formatp;
3c6ba3cf
DW
687
688 bud_formatp = item->ri_buf[0].i_addr;
689 if (item->ri_buf[0].i_len != sizeof(struct xfs_bud_log_format)) {
690 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, log->l_mp);
691 return -EFSCORRUPTED;
692 }
3c6ba3cf 693
154c733a 694 xlog_recover_release_intent(log, XFS_LI_BUI, bud_formatp->bud_bui_id);
3c6ba3cf
DW
695 return 0;
696}
697
86ffa471
DW
698const struct xlog_recover_item_ops xlog_bud_item_ops = {
699 .item_type = XFS_LI_BUD,
3c6ba3cf 700 .commit_pass2 = xlog_recover_bud_commit_pass2,
86ffa471 701};
This page took 0.415409 seconds and 4 git commands to generate.