]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/error.h
d8cd19b3f63c83c73b675b54ed767607eb638cf9
[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         int _ret = !!(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         int _ret = !!(cond);                                            \
63                                                                         \
64         if (_ret)                                                       \
65                 bch2_dev_inconsistent(ca, __VA_ARGS__);                 \
66         _ret;                                                           \
67 })
68
69 /*
70  * Fsck errors: inconsistency errors we detect at mount time, and should ideally
71  * be able to repair:
72  */
73
74 enum {
75         BCH_FSCK_OK                     = 0,
76         BCH_FSCK_ERRORS_NOT_FIXED       = 1,
77         BCH_FSCK_REPAIR_UNIMPLEMENTED   = 2,
78         BCH_FSCK_REPAIR_IMPOSSIBLE      = 3,
79         BCH_FSCK_UNKNOWN_VERSION        = 4,
80 };
81
82 enum fsck_err_opts {
83         FSCK_OPT_EXIT,
84         FSCK_OPT_YES,
85         FSCK_OPT_NO,
86         FSCK_OPT_ASK,
87 };
88
89 enum fsck_err_ret {
90         FSCK_ERR_IGNORE = 0,
91         FSCK_ERR_FIX    = 1,
92         FSCK_ERR_EXIT   = 2,
93         FSCK_ERR_START_TOPOLOGY_REPAIR = 3,
94 };
95
96 struct fsck_err_state {
97         struct list_head        list;
98         const char              *fmt;
99         u64                     nr;
100         bool                    ratelimited;
101         char                    buf[512];
102 };
103
104 #define FSCK_CAN_FIX            (1 << 0)
105 #define FSCK_CAN_IGNORE         (1 << 1)
106 #define FSCK_NEED_FSCK          (1 << 2)
107
108 __printf(3, 4) __cold
109 enum fsck_err_ret bch2_fsck_err(struct bch_fs *,
110                                 unsigned, const char *, ...);
111 void bch2_flush_fsck_errs(struct bch_fs *);
112
113 #define __fsck_err(c, _flags, msg, ...)                                 \
114 ({                                                                      \
115         int _fix = bch2_fsck_err(c, _flags, msg, ##__VA_ARGS__);\
116                                                                         \
117         if (_fix == FSCK_ERR_EXIT) {                                    \
118                 bch_err(c, "Unable to continue, halting");              \
119                 ret = BCH_FSCK_ERRORS_NOT_FIXED;                        \
120                 goto fsck_err;                                          \
121         }                                                               \
122                                                                         \
123         _fix;                                                           \
124 })
125
126 /* These macros return true if error should be fixed: */
127
128 /* XXX: mark in superblock that filesystem contains errors, if we ignore: */
129
130 #define __fsck_err_on(cond, c, _flags, ...)                             \
131         ((cond) ? __fsck_err(c, _flags, ##__VA_ARGS__) : false)
132
133 #define need_fsck_err_on(cond, c, ...)                                  \
134         __fsck_err_on(cond, c, FSCK_CAN_IGNORE|FSCK_NEED_FSCK, ##__VA_ARGS__)
135
136 #define need_fsck_err(c, ...)                                           \
137         __fsck_err(c, FSCK_CAN_IGNORE|FSCK_NEED_FSCK, ##__VA_ARGS__)
138
139 #define mustfix_fsck_err(c, ...)                                        \
140         __fsck_err(c, FSCK_CAN_FIX, ##__VA_ARGS__)
141
142 #define mustfix_fsck_err_on(cond, c, ...)                               \
143         __fsck_err_on(cond, c, FSCK_CAN_FIX, ##__VA_ARGS__)
144
145 #define fsck_err(c, ...)                                                \
146         __fsck_err(c, FSCK_CAN_FIX|FSCK_CAN_IGNORE, ##__VA_ARGS__)
147
148 #define fsck_err_on(cond, c, ...)                                       \
149         __fsck_err_on(cond, c, FSCK_CAN_FIX|FSCK_CAN_IGNORE, ##__VA_ARGS__)
150
151 /*
152  * Fatal errors: these don't indicate a bug, but we can't continue running in RW
153  * mode - pretty much just due to metadata IO errors:
154  */
155
156 void bch2_fatal_error(struct bch_fs *);
157
158 #define bch2_fs_fatal_error(c, ...)                                     \
159 do {                                                                    \
160         bch_err(c, __VA_ARGS__);                                        \
161         bch2_fatal_error(c);                                            \
162 } while (0)
163
164 #define bch2_fs_fatal_err_on(cond, c, ...)                              \
165 ({                                                                      \
166         int _ret = !!(cond);                                            \
167                                                                         \
168         if (_ret)                                                       \
169                 bch2_fs_fatal_error(c, __VA_ARGS__);                    \
170         _ret;                                                           \
171 })
172
173 /*
174  * IO errors: either recoverable metadata IO (because we have replicas), or data
175  * IO - we need to log it and print out a message, but we don't (necessarily)
176  * want to shut down the fs:
177  */
178
179 void bch2_io_error_work(struct work_struct *);
180
181 /* Does the error handling without logging a message */
182 void bch2_io_error(struct bch_dev *);
183
184 /* Logs message and handles the error: */
185 #define bch2_dev_io_error(ca, fmt, ...)                                 \
186 do {                                                                    \
187         printk_ratelimited(KERN_ERR "bcachefs (%s): " fmt,              \
188                 (ca)->name, ##__VA_ARGS__);                             \
189         bch2_io_error(ca);                                              \
190 } while (0)
191
192 #define bch2_dev_inum_io_error(ca, _inum, _offset, fmt, ...)            \
193 do {                                                                    \
194         printk_ratelimited(KERN_ERR "bcachefs (%s inum %llu offset %llu): " fmt,\
195                 (ca)->name, (_inum), (_offset), ##__VA_ARGS__);         \
196         bch2_io_error(ca);                                              \
197 } while (0)
198
199 #define bch2_dev_io_err_on(cond, ca, ...)                               \
200 ({                                                                      \
201         bool _ret = (cond);                                             \
202                                                                         \
203         if (_ret)                                                       \
204                 bch2_dev_io_error(ca, __VA_ARGS__);                     \
205         _ret;                                                           \
206 })
207
208 #define bch2_dev_inum_io_err_on(cond, ca, _inum, _offset, ...)          \
209 ({                                                                      \
210         bool _ret = (cond);                                             \
211                                                                         \
212         if (_ret)                                                       \
213                 bch2_dev_inum_io_error(ca, _inum, _offset, __VA_ARGS__);\
214         _ret;                                                           \
215 })
216
217 #endif /* _BCACHEFS_ERROR_H */