]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/error.h
Update bcachefs sources to fb39031ade bcachefs: bch2_sb_maybe_downgrade(), bch2_sb_up...
[bcachefs-tools-debian] / libbcachefs / error.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_ERROR_H
3 #define _BCACHEFS_ERROR_H
4
5 #include <linux/list.h>
6 #include <linux/printk.h>
7
8 struct bch_dev;
9 struct bch_fs;
10 struct work_struct;
11
12 /*
13  * XXX: separate out errors that indicate on disk data is inconsistent, and flag
14  * superblock as such
15  */
16
17 /* Error messages: */
18
19 /*
20  * Inconsistency errors: The on disk data is inconsistent. If these occur during
21  * initial recovery, they don't indicate a bug in the running code - we walk all
22  * the metadata before modifying anything. If they occur at runtime, they
23  * indicate either a bug in the running code or (less likely) data is being
24  * silently corrupted under us.
25  *
26  * XXX: audit all inconsistent errors and make sure they're all recoverable, in
27  * BCH_ON_ERROR_CONTINUE mode
28  */
29
30 bool bch2_inconsistent_error(struct bch_fs *);
31
32 void bch2_topology_error(struct bch_fs *);
33
34 #define bch2_fs_inconsistent(c, ...)                                    \
35 ({                                                                      \
36         bch_err(c, __VA_ARGS__);                                        \
37         bch2_inconsistent_error(c);                                     \
38 })
39
40 #define bch2_fs_inconsistent_on(cond, c, ...)                           \
41 ({                                                                      \
42         bool _ret = unlikely(!!(cond));                                 \
43                                                                         \
44         if (_ret)                                                       \
45                 bch2_fs_inconsistent(c, __VA_ARGS__);                   \
46         _ret;                                                           \
47 })
48
49 /*
50  * Later we might want to mark only the particular device inconsistent, not the
51  * entire filesystem:
52  */
53
54 #define bch2_dev_inconsistent(ca, ...)                                  \
55 do {                                                                    \
56         bch_err(ca, __VA_ARGS__);                                       \
57         bch2_inconsistent_error((ca)->fs);                              \
58 } while (0)
59
60 #define bch2_dev_inconsistent_on(cond, ca, ...)                         \
61 ({                                                                      \
62         bool _ret = unlikely(!!(cond));                                 \
63                                                                         \
64         if (_ret)                                                       \
65                 bch2_dev_inconsistent(ca, __VA_ARGS__);                 \
66         _ret;                                                           \
67 })
68
69 /*
70  * When a transaction update discovers or is causing a fs inconsistency, it's
71  * helpful to also dump the pending updates:
72  */
73 #define bch2_trans_inconsistent(trans, ...)                             \
74 ({                                                                      \
75         bch_err(trans->c, __VA_ARGS__);                                 \
76         bch2_dump_trans_updates(trans);                                 \
77         bch2_inconsistent_error(trans->c);                              \
78 })
79
80 #define bch2_trans_inconsistent_on(cond, trans, ...)                    \
81 ({                                                                      \
82         bool _ret = unlikely(!!(cond));                                 \
83                                                                         \
84         if (_ret)                                                       \
85                 bch2_trans_inconsistent(trans, __VA_ARGS__);            \
86         _ret;                                                           \
87 })
88
89 /*
90  * Fsck errors: inconsistency errors we detect at mount time, and should ideally
91  * be able to repair:
92  */
93
94 enum fsck_err_opts {
95         FSCK_OPT_EXIT,
96         FSCK_OPT_YES,
97         FSCK_OPT_NO,
98         FSCK_OPT_ASK,
99 };
100
101 struct fsck_err_state {
102         struct list_head        list;
103         const char              *fmt;
104         u64                     nr;
105         bool                    ratelimited;
106         int                     ret;
107         int                     fix;
108         char                    *last_msg;
109 };
110
111 #define FSCK_CAN_FIX            (1 << 0)
112 #define FSCK_CAN_IGNORE         (1 << 1)
113 #define FSCK_NEED_FSCK          (1 << 2)
114 #define FSCK_NO_RATELIMIT       (1 << 3)
115
116 __printf(3, 4) __cold
117 int bch2_fsck_err(struct bch_fs *, unsigned, const char *, ...);
118 void bch2_flush_fsck_errs(struct bch_fs *);
119
120 #define __fsck_err(c, _flags, msg, ...)                                 \
121 ({                                                                      \
122         int _ret = bch2_fsck_err(c, _flags, msg, ##__VA_ARGS__);        \
123                                                                         \
124         if (_ret != -BCH_ERR_fsck_fix &&                                \
125             _ret != -BCH_ERR_fsck_ignore) {                             \
126                 ret = _ret;                                             \
127                 goto fsck_err;                                          \
128         }                                                               \
129                                                                         \
130         _ret == -BCH_ERR_fsck_fix;                                      \
131 })
132
133 /* These macros return true if error should be fixed: */
134
135 /* XXX: mark in superblock that filesystem contains errors, if we ignore: */
136
137 #define __fsck_err_on(cond, c, _flags, ...)                             \
138         (unlikely(cond) ? __fsck_err(c, _flags, ##__VA_ARGS__) : false)
139
140 #define need_fsck_err_on(cond, c, ...)                                  \
141         __fsck_err_on(cond, c, FSCK_CAN_IGNORE|FSCK_NEED_FSCK, ##__VA_ARGS__)
142
143 #define need_fsck_err(c, ...)                                           \
144         __fsck_err(c, FSCK_CAN_IGNORE|FSCK_NEED_FSCK, ##__VA_ARGS__)
145
146 #define mustfix_fsck_err(c, ...)                                        \
147         __fsck_err(c, FSCK_CAN_FIX, ##__VA_ARGS__)
148
149 #define mustfix_fsck_err_on(cond, c, ...)                               \
150         __fsck_err_on(cond, c, FSCK_CAN_FIX, ##__VA_ARGS__)
151
152 #define fsck_err(c, ...)                                                \
153         __fsck_err(c, FSCK_CAN_FIX|FSCK_CAN_IGNORE, ##__VA_ARGS__)
154
155 #define fsck_err_on(cond, c, ...)                                       \
156         __fsck_err_on(cond, c, FSCK_CAN_FIX|FSCK_CAN_IGNORE, ##__VA_ARGS__)
157
158 /*
159  * Fatal errors: these don't indicate a bug, but we can't continue running in RW
160  * mode - pretty much just due to metadata IO errors:
161  */
162
163 void bch2_fatal_error(struct bch_fs *);
164
165 #define bch2_fs_fatal_error(c, ...)                                     \
166 do {                                                                    \
167         bch_err(c, __VA_ARGS__);                                        \
168         bch2_fatal_error(c);                                            \
169 } while (0)
170
171 #define bch2_fs_fatal_err_on(cond, c, ...)                              \
172 ({                                                                      \
173         bool _ret = unlikely(!!(cond));                                 \
174                                                                         \
175         if (_ret)                                                       \
176                 bch2_fs_fatal_error(c, __VA_ARGS__);                    \
177         _ret;                                                           \
178 })
179
180 /*
181  * IO errors: either recoverable metadata IO (because we have replicas), or data
182  * IO - we need to log it and print out a message, but we don't (necessarily)
183  * want to shut down the fs:
184  */
185
186 void bch2_io_error_work(struct work_struct *);
187
188 /* Does the error handling without logging a message */
189 void bch2_io_error(struct bch_dev *);
190
191 #define bch2_dev_io_err_on(cond, ca, ...)                               \
192 ({                                                                      \
193         bool _ret = (cond);                                             \
194                                                                         \
195         if (_ret) {                                                     \
196                 bch_err_dev_ratelimited(ca, __VA_ARGS__);               \
197                 bch2_io_error(ca);                                      \
198         }                                                               \
199         _ret;                                                           \
200 })
201
202 #define bch2_dev_inum_io_err_on(cond, ca, ...)                          \
203 ({                                                                      \
204         bool _ret = (cond);                                             \
205                                                                         \
206         if (_ret) {                                                     \
207                 bch_err_inum_offset_ratelimited(ca, __VA_ARGS__);       \
208                 bch2_io_error(ca);                                      \
209         }                                                               \
210         _ret;                                                           \
211 })
212
213 #endif /* _BCACHEFS_ERROR_H */