blob: 641132d0e39ddd8fe2586d504cbd532b54a3c770 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6#ifndef __XFS_LOG_RECOVER_H__
7#define __XFS_LOG_RECOVER_H__
8
9/*
Darrick J. Wong86ffa472020-05-01 16:00:45 -070010 * Each log item type (XFS_LI_*) gets its own xlog_recover_item_ops to
11 * define how recovery should work for that type of log item.
12 */
13struct xlog_recover_item;
14
15/* Sorting hat for log items as they're read in. */
16enum xlog_recover_reorder {
17 XLOG_REORDER_BUFFER_LIST,
18 XLOG_REORDER_ITEM_LIST,
19 XLOG_REORDER_INODE_BUFFER_LIST,
20 XLOG_REORDER_CANCEL_LIST,
21};
22
23struct xlog_recover_item_ops {
24 uint16_t item_type; /* XFS_LI_* type code. */
25
26 /*
27 * Help sort recovered log items into the order required to replay them
28 * correctly. Log item types that always use XLOG_REORDER_ITEM_LIST do
29 * not have to supply a function here. See the comment preceding
30 * xlog_recover_reorder_trans for more details about what the return
31 * values mean.
32 */
33 enum xlog_recover_reorder (*reorder)(struct xlog_recover_item *item);
Darrick J. Wong8ea56822020-05-01 16:00:46 -070034
35 /* Start readahead for pass2, if provided. */
36 void (*ra_pass2)(struct xlog *log, struct xlog_recover_item *item);
Darrick J. Wong3304a4f2020-05-01 16:00:46 -070037
38 /* Do whatever work we need to do for pass1, if provided. */
39 int (*commit_pass1)(struct xlog *log, struct xlog_recover_item *item);
Darrick J. Wong1094d3f2020-05-01 16:00:47 -070040
41 /*
42 * This function should do whatever work is needed for pass2 of log
43 * recovery, if provided.
44 *
45 * If the recovered item is an intent item, this function should parse
46 * the recovered item to construct an in-core log intent item and
47 * insert it into the AIL. The in-core log intent item should have 1
48 * refcount so that the item is freed either (a) when we commit the
49 * recovered log item for the intent-done item; (b) replay the work and
50 * log a new intent-done item; or (c) recovery fails and we have to
51 * abort.
52 *
53 * If the recovered item is an intent-done item, this function should
54 * parse the recovered item to find the id of the corresponding intent
55 * log item. Next, it should find the in-core log intent item in the
56 * AIL and release it.
57 */
58 int (*commit_pass2)(struct xlog *log, struct list_head *buffer_list,
59 struct xlog_recover_item *item, xfs_lsn_t lsn);
Darrick J. Wong86ffa472020-05-01 16:00:45 -070060};
61
62extern const struct xlog_recover_item_ops xlog_icreate_item_ops;
63extern const struct xlog_recover_item_ops xlog_buf_item_ops;
64extern const struct xlog_recover_item_ops xlog_inode_item_ops;
65extern const struct xlog_recover_item_ops xlog_dquot_item_ops;
66extern const struct xlog_recover_item_ops xlog_quotaoff_item_ops;
67extern const struct xlog_recover_item_ops xlog_bui_item_ops;
68extern const struct xlog_recover_item_ops xlog_bud_item_ops;
69extern const struct xlog_recover_item_ops xlog_efi_item_ops;
70extern const struct xlog_recover_item_ops xlog_efd_item_ops;
71extern const struct xlog_recover_item_ops xlog_rui_item_ops;
72extern const struct xlog_recover_item_ops xlog_rud_item_ops;
73extern const struct xlog_recover_item_ops xlog_cui_item_ops;
74extern const struct xlog_recover_item_ops xlog_cud_item_ops;
75
76/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * Macros, structures, prototypes for internal log manager use.
78 */
79
80#define XLOG_RHASH_BITS 4
81#define XLOG_RHASH_SIZE 16
82#define XLOG_RHASH_SHIFT 2
83#define XLOG_RHASH(tid) \
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070084 ((((uint32_t)tid)>>XLOG_RHASH_SHIFT) & (XLOG_RHASH_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dave Chinnerc1155412010-05-07 11:05:19 +100086#define XLOG_MAX_REGIONS_IN_ITEM (XFS_MAX_BLOCKSIZE / XFS_BLF_CHUNK / 2 + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88
89/*
90 * item headers are in ri_buf[0]. Additional buffers follow.
91 */
Darrick J. Wong35f45212020-04-30 10:45:41 -070092struct xlog_recover_item {
Dave Chinnerf0a76952010-01-11 11:49:57 +000093 struct list_head ri_list;
Dave Chinnerf0a76952010-01-11 11:49:57 +000094 int ri_cnt; /* count of regions found */
95 int ri_total; /* total regions */
Darrick J. Wong86ffa472020-05-01 16:00:45 -070096 struct xfs_log_iovec *ri_buf; /* ptr to regions buffer */
97 const struct xlog_recover_item_ops *ri_ops;
Darrick J. Wong35f45212020-04-30 10:45:41 -070098};
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Eric Sandeen35dab302019-11-12 17:04:28 -0800100struct xlog_recover {
Dave Chinnerf0a76952010-01-11 11:49:57 +0000101 struct hlist_node r_list;
102 xlog_tid_t r_log_tid; /* log's transaction id */
103 xfs_trans_header_t r_theader; /* trans header for partial */
104 int r_state; /* not needed */
105 xfs_lsn_t r_lsn; /* xact lsn */
106 struct list_head r_itemq; /* q for items */
Eric Sandeen35dab302019-11-12 17:04:28 -0800107};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Darrick J. Wong755c7bf2016-11-08 11:55:48 +1100109#define ITEM_TYPE(i) (*(unsigned short *)(i)->ri_buf[0].i_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
112 * This is the number of entries in the l_buf_cancel_table used during
113 * recovery.
114 */
115#define XLOG_BC_TABLE_SIZE 64
116
Brian Foster65282502016-01-04 15:55:10 +1100117#define XLOG_RECOVER_CRCPASS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define XLOG_RECOVER_PASS1 1
119#define XLOG_RECOVER_PASS2 2
120
Darrick J. Wong8ea56822020-05-01 16:00:46 -0700121void xlog_buf_readahead(struct xlog *log, xfs_daddr_t blkno, uint len,
122 const struct xfs_buf_ops *ops);
Darrick J. Wong1094d3f2020-05-01 16:00:47 -0700123bool xlog_is_buffer_cancelled(struct xlog *log, xfs_daddr_t blkno, uint len);
Darrick J. Wong1094d3f2020-05-01 16:00:47 -0700124void xlog_recover_iodone(struct xfs_buf *bp);
Darrick J. Wong8ea56822020-05-01 16:00:46 -0700125
Darrick J. Wong154c7332020-05-01 16:00:54 -0700126void xlog_recover_release_intent(struct xlog *log, unsigned short intent_type,
127 uint64_t intent_id);
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif /* __XFS_LOG_RECOVER_H__ */